composer.lock 358 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828
  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": "8f9de1ae8c7761d2f2444ec2f82c98e0",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  62. },
  63. "time": "2019-12-24T22:41:47+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "1.32.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  76. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=5.5.9",
  82. "symfony/console": "^3.4 || ^4.0",
  83. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  84. "twig/twig": "^1.41 || ^2.12"
  85. },
  86. "bin": [
  87. "bin/dcg"
  88. ],
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "files": [
  97. "src/bootstrap.php"
  98. ],
  99. "psr-4": {
  100. "DrupalCodeGenerator\\": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "GPL-2.0-or-later"
  106. ],
  107. "description": "Drupal code generator",
  108. "time": "2020-04-16T06:45:06+00:00"
  109. },
  110. {
  111. "name": "composer/installers",
  112. "version": "v1.11.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/composer/installers.git",
  116. "reference": "ae03311f45dfe194412081526be2e003960df74b"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
  121. "reference": "ae03311f45dfe194412081526be2e003960df74b",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "composer-plugin-api": "^1.0 || ^2.0"
  126. },
  127. "replace": {
  128. "roundcube/plugin-installer": "*",
  129. "shama/baton": "*"
  130. },
  131. "require-dev": {
  132. "composer/composer": "1.6.* || ^2.0",
  133. "composer/semver": "^1 || ^3",
  134. "phpstan/phpstan": "^0.12.55",
  135. "phpstan/phpstan-phpunit": "^0.12.16",
  136. "symfony/phpunit-bridge": "^4.2 || ^5",
  137. "symfony/process": "^2.3"
  138. },
  139. "type": "composer-plugin",
  140. "extra": {
  141. "class": "Composer\\Installers\\Plugin",
  142. "branch-alias": {
  143. "dev-main": "1.x-dev"
  144. }
  145. },
  146. "autoload": {
  147. "psr-4": {
  148. "Composer\\Installers\\": "src/Composer/Installers"
  149. }
  150. },
  151. "notification-url": "https://packagist.org/downloads/",
  152. "license": [
  153. "MIT"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Kyle Robinson Young",
  158. "email": "kyle@dontkry.com",
  159. "homepage": "https://github.com/shama"
  160. }
  161. ],
  162. "description": "A multi-framework Composer library installer",
  163. "homepage": "https://composer.github.io/installers/",
  164. "keywords": [
  165. "Craft",
  166. "Dolibarr",
  167. "Eliasis",
  168. "Hurad",
  169. "ImageCMS",
  170. "Kanboard",
  171. "Lan Management System",
  172. "MODX Evo",
  173. "MantisBT",
  174. "Mautic",
  175. "Maya",
  176. "OXID",
  177. "Plentymarkets",
  178. "Porto",
  179. "RadPHP",
  180. "SMF",
  181. "Starbug",
  182. "Thelia",
  183. "Whmcs",
  184. "WolfCMS",
  185. "agl",
  186. "aimeos",
  187. "annotatecms",
  188. "attogram",
  189. "bitrix",
  190. "cakephp",
  191. "chef",
  192. "cockpit",
  193. "codeigniter",
  194. "concrete5",
  195. "croogo",
  196. "dokuwiki",
  197. "drupal",
  198. "eZ Platform",
  199. "elgg",
  200. "expressionengine",
  201. "fuelphp",
  202. "grav",
  203. "installer",
  204. "itop",
  205. "joomla",
  206. "known",
  207. "kohana",
  208. "laravel",
  209. "lavalite",
  210. "lithium",
  211. "magento",
  212. "majima",
  213. "mako",
  214. "mediawiki",
  215. "miaoxing",
  216. "modulework",
  217. "modx",
  218. "moodle",
  219. "osclass",
  220. "phpbb",
  221. "piwik",
  222. "ppi",
  223. "processwire",
  224. "puppet",
  225. "pxcms",
  226. "reindex",
  227. "roundcube",
  228. "shopware",
  229. "silverstripe",
  230. "sydes",
  231. "sylius",
  232. "symfony",
  233. "tastyigniter",
  234. "typo3",
  235. "wordpress",
  236. "yawik",
  237. "zend",
  238. "zikula"
  239. ],
  240. "funding": [
  241. {
  242. "url": "https://packagist.com",
  243. "type": "custom"
  244. },
  245. {
  246. "url": "https://github.com/composer",
  247. "type": "github"
  248. },
  249. {
  250. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  251. "type": "tidelift"
  252. }
  253. ],
  254. "time": "2021-04-28T06:42:17+00:00"
  255. },
  256. {
  257. "name": "composer/semver",
  258. "version": "1.5.1",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/composer/semver.git",
  262. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  267. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": "^5.3.2 || ^7.0"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^4.5 || ^5.0.5"
  275. },
  276. "type": "library",
  277. "extra": {
  278. "branch-alias": {
  279. "dev-master": "1.x-dev"
  280. }
  281. },
  282. "autoload": {
  283. "psr-4": {
  284. "Composer\\Semver\\": "src"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Nils Adermann",
  294. "email": "naderman@naderman.de",
  295. "homepage": "http://www.naderman.de"
  296. },
  297. {
  298. "name": "Jordi Boggiano",
  299. "email": "j.boggiano@seld.be",
  300. "homepage": "http://seld.be"
  301. },
  302. {
  303. "name": "Rob Bast",
  304. "email": "rob.bast@gmail.com",
  305. "homepage": "http://robbast.nl"
  306. }
  307. ],
  308. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  309. "keywords": [
  310. "semantic",
  311. "semver",
  312. "validation",
  313. "versioning"
  314. ],
  315. "support": {
  316. "irc": "irc://irc.freenode.org/composer",
  317. "issues": "https://github.com/composer/semver/issues",
  318. "source": "https://github.com/composer/semver/tree/1.5.1"
  319. },
  320. "time": "2020-01-13T12:06:48+00:00"
  321. },
  322. {
  323. "name": "consolidation/annotated-command",
  324. "version": "2.12.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/consolidation/annotated-command.git",
  328. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  333. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "consolidation/output-formatters": "^3.4",
  338. "php": ">=5.4.5",
  339. "psr/log": "^1",
  340. "symfony/console": "^2.8|^3|^4",
  341. "symfony/event-dispatcher": "^2.5|^3|^4",
  342. "symfony/finder": "^2.5|^3|^4"
  343. },
  344. "require-dev": {
  345. "g1a/composer-test-scenarios": "^3",
  346. "php-coveralls/php-coveralls": "^1",
  347. "phpunit/phpunit": "^6",
  348. "squizlabs/php_codesniffer": "^2.7"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "scenarios": {
  353. "symfony4": {
  354. "require": {
  355. "symfony/console": "^4.0"
  356. },
  357. "config": {
  358. "platform": {
  359. "php": "7.1.3"
  360. }
  361. }
  362. },
  363. "symfony2": {
  364. "require": {
  365. "symfony/console": "^2.8"
  366. },
  367. "require-dev": {
  368. "phpunit/phpunit": "^4.8.36"
  369. },
  370. "remove": [
  371. "php-coveralls/php-coveralls"
  372. ],
  373. "config": {
  374. "platform": {
  375. "php": "5.4.8"
  376. }
  377. },
  378. "scenario-options": {
  379. "create-lockfile": "false"
  380. }
  381. },
  382. "phpunit4": {
  383. "require-dev": {
  384. "phpunit/phpunit": "^4.8.36"
  385. },
  386. "remove": [
  387. "php-coveralls/php-coveralls"
  388. ],
  389. "config": {
  390. "platform": {
  391. "php": "5.4.8"
  392. }
  393. }
  394. }
  395. },
  396. "branch-alias": {
  397. "dev-master": "2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Consolidation\\AnnotatedCommand\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Greg Anderson",
  412. "email": "greg.1.anderson@greenknowe.org"
  413. }
  414. ],
  415. "description": "Initialize Symfony Console commands from annotated command class methods.",
  416. "time": "2019-03-08T16:55:03+00:00"
  417. },
  418. {
  419. "name": "consolidation/config",
  420. "version": "1.2.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/consolidation/config.git",
  424. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  429. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "dflydev/dot-access-data": "^1.1.0",
  434. "grasmash/expander": "^1",
  435. "php": ">=5.4.0"
  436. },
  437. "require-dev": {
  438. "g1a/composer-test-scenarios": "^3",
  439. "php-coveralls/php-coveralls": "^1",
  440. "phpunit/phpunit": "^5",
  441. "squizlabs/php_codesniffer": "2.*",
  442. "symfony/console": "^2.5|^3|^4",
  443. "symfony/yaml": "^2.8.11|^3|^4"
  444. },
  445. "suggest": {
  446. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "scenarios": {
  451. "symfony4": {
  452. "require-dev": {
  453. "symfony/console": "^4.0"
  454. },
  455. "config": {
  456. "platform": {
  457. "php": "7.1.3"
  458. }
  459. }
  460. },
  461. "symfony2": {
  462. "require-dev": {
  463. "symfony/console": "^2.8",
  464. "symfony/event-dispatcher": "^2.8",
  465. "phpunit/phpunit": "^4.8.36"
  466. },
  467. "remove": [
  468. "php-coveralls/php-coveralls"
  469. ],
  470. "config": {
  471. "platform": {
  472. "php": "5.4.8"
  473. }
  474. }
  475. }
  476. },
  477. "branch-alias": {
  478. "dev-master": "1.x-dev"
  479. }
  480. },
  481. "autoload": {
  482. "psr-4": {
  483. "Consolidation\\Config\\": "src"
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Greg Anderson",
  493. "email": "greg.1.anderson@greenknowe.org"
  494. }
  495. ],
  496. "description": "Provide configuration services for a commandline tool.",
  497. "time": "2019-03-03T19:37:04+00:00"
  498. },
  499. {
  500. "name": "consolidation/filter-via-dot-access-data",
  501. "version": "1.0.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  505. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  510. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "dflydev/dot-access-data": "^1.1.0",
  515. "php": ">=5.5.0"
  516. },
  517. "require-dev": {
  518. "consolidation/robo": "^1.2.3",
  519. "g1a/composer-test-scenarios": "^3",
  520. "knplabs/github-api": "^2.7",
  521. "php-coveralls/php-coveralls": "^1",
  522. "php-http/guzzle6-adapter": "^1.1",
  523. "phpunit/phpunit": "^5",
  524. "squizlabs/php_codesniffer": "^2.8",
  525. "symfony/console": "^2.8|^3|^4"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "scenarios": {
  530. "phpunit5": {
  531. "require-dev": {
  532. "phpunit/phpunit": "^5.7.27"
  533. },
  534. "remove": [
  535. "php-coveralls/php-coveralls"
  536. ],
  537. "config": {
  538. "platform": {
  539. "php": "5.6.33"
  540. }
  541. }
  542. }
  543. },
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Filter\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  564. "time": "2019-01-18T06:05:07+00:00"
  565. },
  566. {
  567. "name": "consolidation/log",
  568. "version": "1.1.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/log.git",
  572. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  577. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": ">=5.4.5",
  582. "psr/log": "^1.0",
  583. "symfony/console": "^2.8|^3|^4"
  584. },
  585. "require-dev": {
  586. "g1a/composer-test-scenarios": "^3",
  587. "php-coveralls/php-coveralls": "^1",
  588. "phpunit/phpunit": "^6",
  589. "squizlabs/php_codesniffer": "^2"
  590. },
  591. "type": "library",
  592. "extra": {
  593. "scenarios": {
  594. "symfony4": {
  595. "require": {
  596. "symfony/console": "^4.0"
  597. },
  598. "config": {
  599. "platform": {
  600. "php": "7.1.3"
  601. }
  602. }
  603. },
  604. "symfony2": {
  605. "require": {
  606. "symfony/console": "^2.8"
  607. },
  608. "require-dev": {
  609. "phpunit/phpunit": "^4.8.36"
  610. },
  611. "remove": [
  612. "php-coveralls/php-coveralls"
  613. ],
  614. "config": {
  615. "platform": {
  616. "php": "5.4.8"
  617. }
  618. }
  619. },
  620. "phpunit4": {
  621. "require-dev": {
  622. "phpunit/phpunit": "^4.8.36"
  623. },
  624. "remove": [
  625. "php-coveralls/php-coveralls"
  626. ],
  627. "config": {
  628. "platform": {
  629. "php": "5.4.8"
  630. }
  631. }
  632. }
  633. },
  634. "branch-alias": {
  635. "dev-master": "1.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Consolidation\\Log\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Greg Anderson",
  650. "email": "greg.1.anderson@greenknowe.org"
  651. }
  652. ],
  653. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  654. "time": "2019-01-01T17:30:51+00:00"
  655. },
  656. {
  657. "name": "consolidation/output-formatters",
  658. "version": "3.5.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/consolidation/output-formatters.git",
  662. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  667. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "dflydev/dot-access-data": "^1.1.0",
  672. "php": ">=5.4.0",
  673. "symfony/console": "^2.8|^3|^4",
  674. "symfony/finder": "^2.5|^3|^4"
  675. },
  676. "require-dev": {
  677. "g1a/composer-test-scenarios": "^3",
  678. "php-coveralls/php-coveralls": "^1",
  679. "phpunit/phpunit": "^5.7.27",
  680. "squizlabs/php_codesniffer": "^2.7",
  681. "symfony/var-dumper": "^2.8|^3|^4",
  682. "victorjonsson/markdowndocs": "^1.3"
  683. },
  684. "suggest": {
  685. "symfony/var-dumper": "For using the var_dump formatter"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "scenarios": {
  690. "symfony4": {
  691. "require": {
  692. "symfony/console": "^4.0"
  693. },
  694. "require-dev": {
  695. "phpunit/phpunit": "^6"
  696. },
  697. "config": {
  698. "platform": {
  699. "php": "7.1.3"
  700. }
  701. }
  702. },
  703. "symfony3": {
  704. "require": {
  705. "symfony/console": "^3.4",
  706. "symfony/finder": "^3.4",
  707. "symfony/var-dumper": "^3.4"
  708. },
  709. "config": {
  710. "platform": {
  711. "php": "5.6.32"
  712. }
  713. }
  714. },
  715. "symfony2": {
  716. "require": {
  717. "symfony/console": "^2.8"
  718. },
  719. "require-dev": {
  720. "phpunit/phpunit": "^4.8.36"
  721. },
  722. "remove": [
  723. "php-coveralls/php-coveralls"
  724. ],
  725. "config": {
  726. "platform": {
  727. "php": "5.4.8"
  728. }
  729. },
  730. "scenario-options": {
  731. "create-lockfile": "false"
  732. }
  733. }
  734. },
  735. "branch-alias": {
  736. "dev-master": "3.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Consolidation\\OutputFormatters\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Greg Anderson",
  751. "email": "greg.1.anderson@greenknowe.org"
  752. }
  753. ],
  754. "description": "Format text by applying transformations provided by plug-in formatters.",
  755. "time": "2019-05-30T23:16:01+00:00"
  756. },
  757. {
  758. "name": "consolidation/robo",
  759. "version": "1.4.12",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/Robo.git",
  763. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  768. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/annotated-command": "^2.11.0|^4.1",
  773. "consolidation/config": "^1.2.1",
  774. "consolidation/log": "^1.1.1|^2",
  775. "consolidation/output-formatters": "^3.1.13|^4.1",
  776. "consolidation/self-update": "^1.1.5",
  777. "grasmash/yaml-expander": "^1.4",
  778. "league/container": "^2.4.1",
  779. "php": ">=5.5.0",
  780. "symfony/console": "^2.8|^3|^4",
  781. "symfony/event-dispatcher": "^2.5|^3|^4",
  782. "symfony/filesystem": "^2.5|^3|^4",
  783. "symfony/finder": "^2.5|^3|^4",
  784. "symfony/process": "^2.5|^3|^4"
  785. },
  786. "replace": {
  787. "codegyre/robo": "< 1.0"
  788. },
  789. "require-dev": {
  790. "g1a/composer-test-scenarios": "^3",
  791. "natxet/cssmin": "3.0.4",
  792. "patchwork/jsqueeze": "^2",
  793. "pear/archive_tar": "^1.4.4",
  794. "php-coveralls/php-coveralls": "^1",
  795. "phpunit/phpunit": "^5.7.27",
  796. "squizlabs/php_codesniffer": "^3"
  797. },
  798. "suggest": {
  799. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  800. "natxet/CssMin": "For minifying CSS files in taskMinify",
  801. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  802. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  803. },
  804. "bin": [
  805. "robo"
  806. ],
  807. "type": "library",
  808. "extra": {
  809. "scenarios": {
  810. "symfony4": {
  811. "require": {
  812. "symfony/console": "^4"
  813. },
  814. "config": {
  815. "platform": {
  816. "php": "7.1.3"
  817. }
  818. }
  819. },
  820. "symfony2": {
  821. "require": {
  822. "symfony/console": "^2.8"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.8.36"
  826. },
  827. "remove": [
  828. "php-coveralls/php-coveralls"
  829. ],
  830. "config": {
  831. "platform": {
  832. "php": "5.5.9"
  833. }
  834. },
  835. "scenario-options": {
  836. "create-lockfile": "false"
  837. }
  838. }
  839. },
  840. "branch-alias": {
  841. "dev-master": "1.x-dev"
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "Robo\\": "src"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Davert",
  856. "email": "davert.php@resend.cc"
  857. }
  858. ],
  859. "description": "Modern task runner",
  860. "time": "2020-02-18T17:31:26+00:00"
  861. },
  862. {
  863. "name": "consolidation/self-update",
  864. "version": "1.2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/consolidation/self-update.git",
  868. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "php": ">=5.5.0",
  878. "symfony/console": "^2.8|^3|^4|^5",
  879. "symfony/filesystem": "^2.5|^3|^4|^5"
  880. },
  881. "bin": [
  882. "scripts/release"
  883. ],
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "SelfUpdate\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Alexander Menk",
  902. "email": "menk@mestrona.net"
  903. },
  904. {
  905. "name": "Greg Anderson",
  906. "email": "greg.1.anderson@greenknowe.org"
  907. }
  908. ],
  909. "description": "Provides a self:update command for Symfony Console applications.",
  910. "time": "2020-04-13T02:49:20+00:00"
  911. },
  912. {
  913. "name": "consolidation/site-alias",
  914. "version": "3.0.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/consolidation/site-alias.git",
  918. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  923. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "consolidation/config": "^1.2.1",
  928. "php": ">=5.5.0"
  929. },
  930. "require-dev": {
  931. "consolidation/robo": "^1.2.3",
  932. "g1a/composer-test-scenarios": "^3",
  933. "knplabs/github-api": "^2.7",
  934. "php-coveralls/php-coveralls": "^1",
  935. "php-http/guzzle6-adapter": "^1.1",
  936. "phpunit/phpunit": "^6",
  937. "squizlabs/php_codesniffer": "^2.8",
  938. "symfony/console": "^2.8|^3|^4",
  939. "symfony/yaml": "~2.3|^3"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "scenarios": {
  944. "phpunit5": {
  945. "require-dev": {
  946. "phpunit/phpunit": "^5.7.27"
  947. },
  948. "remove": [
  949. "php-coveralls/php-coveralls"
  950. ],
  951. "config": {
  952. "platform": {
  953. "php": "5.6.33"
  954. }
  955. }
  956. }
  957. },
  958. "branch-alias": {
  959. "dev-master": "3.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Consolidation\\SiteAlias\\": "src"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Moshe Weitzman",
  974. "email": "weitzman@tejasa.com"
  975. },
  976. {
  977. "name": "Greg Anderson",
  978. "email": "greg.1.anderson@greenknowe.org"
  979. }
  980. ],
  981. "description": "Manage alias records for local and remote sites.",
  982. "time": "2019-03-12T17:31:48+00:00"
  983. },
  984. {
  985. "name": "consolidation/site-process",
  986. "version": "2.1.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/consolidation/site-process.git",
  990. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  995. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "consolidation/config": "^1.2.1",
  1000. "consolidation/site-alias": "^3",
  1001. "php": ">=5.6.0",
  1002. "symfony/process": "^3.4"
  1003. },
  1004. "require-dev": {
  1005. "consolidation/robo": "^1.3",
  1006. "g1a/composer-test-scenarios": "^3",
  1007. "knplabs/github-api": "^2.7",
  1008. "php-coveralls/php-coveralls": "^1",
  1009. "php-http/guzzle6-adapter": "^1.1",
  1010. "phpunit/phpunit": "^6",
  1011. "squizlabs/php_codesniffer": "^2.8"
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "scenarios": {
  1016. "phpunit5": {
  1017. "require-dev": {
  1018. "phpunit/phpunit": "^5.7.27"
  1019. },
  1020. "remove": [
  1021. "php-coveralls/php-coveralls"
  1022. ],
  1023. "config": {
  1024. "platform": {
  1025. "php": "5.6.33"
  1026. }
  1027. }
  1028. }
  1029. },
  1030. "branch-alias": {
  1031. "dev-master": "0.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Consolidation\\SiteProcess\\": "src"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Greg Anderson",
  1046. "email": "greg.1.anderson@greenknowe.org"
  1047. },
  1048. {
  1049. "name": "Moshe Weitzman",
  1050. "email": "weitzman@tejasa.com"
  1051. }
  1052. ],
  1053. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1054. "time": "2019-09-10T17:56:24+00:00"
  1055. },
  1056. {
  1057. "name": "cweagans/composer-patches",
  1058. "version": "1.7.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/cweagans/composer-patches.git",
  1062. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1067. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "composer-plugin-api": "^1.0 || ^2.0",
  1072. "php": ">=5.3.0"
  1073. },
  1074. "require-dev": {
  1075. "composer/composer": "~1.0 || ~2.0",
  1076. "phpunit/phpunit": "~4.6"
  1077. },
  1078. "type": "composer-plugin",
  1079. "extra": {
  1080. "class": "cweagans\\Composer\\Patches"
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "cweagans\\Composer\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "BSD-3-Clause"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Cameron Eagans",
  1094. "email": "me@cweagans.net"
  1095. }
  1096. ],
  1097. "description": "Provides a way to patch Composer packages.",
  1098. "time": "2021-06-08T15:12:46+00:00"
  1099. },
  1100. {
  1101. "name": "dflydev/dot-access-data",
  1102. "version": "v1.1.0",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1106. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1111. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-0": {
  1125. "Dflydev\\DotAccessData": "src"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Dragonfly Development Inc.",
  1135. "email": "info@dflydev.com",
  1136. "homepage": "http://dflydev.com"
  1137. },
  1138. {
  1139. "name": "Beau Simensen",
  1140. "email": "beau@dflydev.com",
  1141. "homepage": "http://beausimensen.com"
  1142. },
  1143. {
  1144. "name": "Carlos Frutos",
  1145. "email": "carlos@kiwing.it",
  1146. "homepage": "https://github.com/cfrutos"
  1147. }
  1148. ],
  1149. "description": "Given a deep data structure, access data by dot notation.",
  1150. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1151. "keywords": [
  1152. "access",
  1153. "data",
  1154. "dot",
  1155. "notation"
  1156. ],
  1157. "time": "2017-01-20T21:14:22+00:00"
  1158. },
  1159. {
  1160. "name": "dnoegel/php-xdg-base-dir",
  1161. "version": "v0.1.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1165. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1170. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "XdgBaseDir\\": "src/"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "description": "implementation of xdg base directory specification for php",
  1190. "time": "2019-12-04T15:06:13+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/annotations",
  1194. "version": "v1.4.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/annotations.git",
  1198. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1203. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "doctrine/lexer": "1.*",
  1208. "php": "^5.6 || ^7.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/cache": "1.*",
  1212. "phpunit/phpunit": "^5.7"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "1.4.x-dev"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Benjamin Eberlei",
  1236. "email": "kontakt@beberlei.de"
  1237. },
  1238. {
  1239. "name": "Guilherme Blanco",
  1240. "email": "guilhermeblanco@gmail.com"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "Docblock Annotations Parser",
  1252. "homepage": "http://www.doctrine-project.org",
  1253. "keywords": [
  1254. "annotations",
  1255. "docblock",
  1256. "parser"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/annotations/issues",
  1260. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1261. },
  1262. "time": "2017-02-24T16:22:25+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/cache",
  1266. "version": "v1.6.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/cache.git",
  1270. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1275. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "~5.5|~7.0"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": ">2.2,<2.4"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": "~4.8|~5.0",
  1286. "predis/predis": "~1.0",
  1287. "satooshi/php-coveralls": "~0.6"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.6.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Roman Borschel",
  1307. "email": "roman@code-factory.org"
  1308. },
  1309. {
  1310. "name": "Benjamin Eberlei",
  1311. "email": "kontakt@beberlei.de"
  1312. },
  1313. {
  1314. "name": "Guilherme Blanco",
  1315. "email": "guilhermeblanco@gmail.com"
  1316. },
  1317. {
  1318. "name": "Jonathan Wage",
  1319. "email": "jonwage@gmail.com"
  1320. },
  1321. {
  1322. "name": "Johannes Schmitt",
  1323. "email": "schmittjoh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "Caching library offering an object-oriented API for many cache backends",
  1327. "homepage": "http://www.doctrine-project.org",
  1328. "keywords": [
  1329. "cache",
  1330. "caching"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/doctrine/cache/issues",
  1334. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1335. },
  1336. "time": "2017-07-22T12:49:21+00:00"
  1337. },
  1338. {
  1339. "name": "doctrine/collections",
  1340. "version": "v1.4.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/doctrine/collections.git",
  1344. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1349. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": "^5.6 || ^7.0"
  1354. },
  1355. "require-dev": {
  1356. "doctrine/coding-standard": "~0.1@dev",
  1357. "phpunit/phpunit": "^5.7"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Doctrine\\Common\\Collections\\": "lib/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Roman Borschel",
  1377. "email": "roman@code-factory.org"
  1378. },
  1379. {
  1380. "name": "Benjamin Eberlei",
  1381. "email": "kontakt@beberlei.de"
  1382. },
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Collections Abstraction library",
  1397. "homepage": "http://www.doctrine-project.org",
  1398. "keywords": [
  1399. "array",
  1400. "collections",
  1401. "iterator"
  1402. ],
  1403. "support": {
  1404. "issues": "https://github.com/doctrine/collections/issues",
  1405. "source": "https://github.com/doctrine/collections/tree/master"
  1406. },
  1407. "time": "2017-01-03T10:49:41+00:00"
  1408. },
  1409. {
  1410. "name": "doctrine/common",
  1411. "version": "v2.7.3",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/doctrine/common.git",
  1415. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1420. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1421. "shasum": ""
  1422. },
  1423. "require": {
  1424. "doctrine/annotations": "1.*",
  1425. "doctrine/cache": "1.*",
  1426. "doctrine/collections": "1.*",
  1427. "doctrine/inflector": "1.*",
  1428. "doctrine/lexer": "1.*",
  1429. "php": "~5.6|~7.0"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^5.4.6"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "2.7.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Roman Borschel",
  1452. "email": "roman@code-factory.org"
  1453. },
  1454. {
  1455. "name": "Benjamin Eberlei",
  1456. "email": "kontakt@beberlei.de"
  1457. },
  1458. {
  1459. "name": "Guilherme Blanco",
  1460. "email": "guilhermeblanco@gmail.com"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. }
  1470. ],
  1471. "description": "Common Library for Doctrine projects",
  1472. "homepage": "http://www.doctrine-project.org",
  1473. "keywords": [
  1474. "annotations",
  1475. "collections",
  1476. "eventmanager",
  1477. "persistence",
  1478. "spl"
  1479. ],
  1480. "support": {
  1481. "issues": "https://github.com/doctrine/common/issues",
  1482. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1483. },
  1484. "time": "2017-07-22T08:35:12+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "v1.2.0",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1497. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.0"
  1502. },
  1503. "require-dev": {
  1504. "phpunit/phpunit": "^6.2"
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "1.2.x-dev"
  1510. }
  1511. },
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Benjamin Eberlei",
  1528. "email": "kontakt@beberlei.de"
  1529. },
  1530. {
  1531. "name": "Guilherme Blanco",
  1532. "email": "guilhermeblanco@gmail.com"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1544. "homepage": "http://www.doctrine-project.org",
  1545. "keywords": [
  1546. "inflection",
  1547. "pluralize",
  1548. "singularize",
  1549. "string"
  1550. ],
  1551. "support": {
  1552. "source": "https://github.com/doctrine/inflector/tree/master"
  1553. },
  1554. "time": "2017-07-22T12:18:28+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/lexer",
  1558. "version": "1.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/lexer.git",
  1562. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1567. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.3.2"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "^4.5"
  1575. },
  1576. "type": "library",
  1577. "extra": {
  1578. "branch-alias": {
  1579. "dev-master": "1.0.x-dev"
  1580. }
  1581. },
  1582. "autoload": {
  1583. "psr-4": {
  1584. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Guilherme Blanco",
  1598. "email": "guilhermeblanco@gmail.com"
  1599. },
  1600. {
  1601. "name": "Johannes Schmitt",
  1602. "email": "schmittjoh@gmail.com"
  1603. }
  1604. ],
  1605. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1606. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1607. "keywords": [
  1608. "annotations",
  1609. "docblock",
  1610. "lexer",
  1611. "parser",
  1612. "php"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/doctrine/lexer/issues",
  1616. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1617. },
  1618. "time": "2019-06-08T11:03:04+00:00"
  1619. },
  1620. {
  1621. "name": "drupal/addtoany",
  1622. "version": "1.14.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.14"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.14.zip",
  1631. "reference": "8.x-1.14",
  1632. "shasum": "269ec4d1cfaf93132d5945edebf691ec7c04901a"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.14",
  1641. "datestamp": "1589571718",
  1642. "security-coverage": {
  1643. "status": "covered",
  1644. "message": "Covered by Drupal's security advisory policy"
  1645. }
  1646. }
  1647. },
  1648. "notification-url": "https://packages.drupal.org/8/downloads",
  1649. "license": [
  1650. "GPL-2.0-or-later"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "AddToAny",
  1655. "homepage": "https://www.drupal.org/user/2640913"
  1656. },
  1657. {
  1658. "name": "micropat",
  1659. "homepage": "https://www.drupal.org/user/260224"
  1660. }
  1661. ],
  1662. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Twitter, Pinterest, WhatsApp and many more.",
  1663. "homepage": "https://www.drupal.org/project/addtoany",
  1664. "keywords": [
  1665. "Drupal"
  1666. ],
  1667. "support": {
  1668. "source": "https://git.drupalcode.org/project/addtoany",
  1669. "issues": "https://www.drupal.org/project/issues/addtoany"
  1670. }
  1671. },
  1672. {
  1673. "name": "drupal/admin_toolbar",
  1674. "version": "2.3.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.3"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip",
  1683. "reference": "8.x-2.3",
  1684. "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a"
  1685. },
  1686. "require": {
  1687. "drupal/core": "^8.8.0 || ^9.0"
  1688. },
  1689. "type": "drupal-module",
  1690. "extra": {
  1691. "drupal": {
  1692. "version": "8.x-2.3",
  1693. "datestamp": "1592535714",
  1694. "security-coverage": {
  1695. "status": "covered",
  1696. "message": "Covered by Drupal's security advisory policy"
  1697. }
  1698. }
  1699. },
  1700. "notification-url": "https://packages.drupal.org/8/downloads",
  1701. "license": [
  1702. "GPL-2.0-or-later"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "Wilfrid Roze (eme)",
  1707. "homepage": "https://www.drupal.org/u/eme",
  1708. "role": "Maintainer"
  1709. },
  1710. {
  1711. "name": "Romain Jarraud (romainj)",
  1712. "homepage": "https://www.drupal.org/u/romainj",
  1713. "role": "Maintainer"
  1714. },
  1715. {
  1716. "name": "Adrian Cid Almaguer (adriancid)",
  1717. "homepage": "https://www.drupal.org/u/adriancid",
  1718. "email": "adriancid@gmail.com",
  1719. "role": "Maintainer"
  1720. },
  1721. {
  1722. "name": "Mohamed Anis Taktak (matio89)",
  1723. "homepage": "https://www.drupal.org/u/matio89",
  1724. "role": "Maintainer"
  1725. },
  1726. {
  1727. "name": "fethi.krout",
  1728. "homepage": "https://www.drupal.org/user/3206765"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "romainj",
  1736. "homepage": "https://www.drupal.org/user/370706"
  1737. }
  1738. ],
  1739. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1740. "homepage": "http://drupal.org/project/admin_toolbar",
  1741. "keywords": [
  1742. "Drupal",
  1743. "Toolbar"
  1744. ],
  1745. "support": {
  1746. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1747. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1748. }
  1749. },
  1750. {
  1751. "name": "drupal/adminimal_theme",
  1752. "version": "1.6.0",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1756. "reference": "8.x-1.6"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1761. "reference": "8.x-1.6",
  1762. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1763. },
  1764. "require": {
  1765. "drupal/core": "^8.8 || ^9"
  1766. },
  1767. "type": "drupal-theme",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "8.x-1.6",
  1771. "datestamp": "1602006937",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0+"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "ANDiTKO",
  1785. "homepage": "https://www.drupal.org/user/1428124"
  1786. },
  1787. {
  1788. "name": "andrey.troeglazov",
  1789. "homepage": "https://www.drupal.org/user/3145389"
  1790. },
  1791. {
  1792. "name": "realityloop",
  1793. "homepage": "https://www.drupal.org/user/139189"
  1794. },
  1795. {
  1796. "name": "rjjakes",
  1797. "homepage": "https://www.drupal.org/user/3457245"
  1798. }
  1799. ],
  1800. "description": "Drupal administration theme with modern minimalist design.",
  1801. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1802. "support": {
  1803. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1804. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1805. }
  1806. },
  1807. {
  1808. "name": "drupal/audiofield",
  1809. "version": "1.13.0",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://git.drupalcode.org/project/audiofield.git",
  1813. "reference": "8.x-1.13"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1818. "reference": "8.x-1.13",
  1819. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1820. },
  1821. "require": {
  1822. "drupal/core": "^8 || ^9 || ^10"
  1823. },
  1824. "type": "drupal-module",
  1825. "extra": {
  1826. "drupal": {
  1827. "version": "8.x-1.13",
  1828. "datestamp": "1681143245",
  1829. "security-coverage": {
  1830. "status": "covered",
  1831. "message": "Covered by Drupal's security advisory policy"
  1832. }
  1833. },
  1834. "drush": {
  1835. "services": {
  1836. "drush.services.yml": "^9"
  1837. }
  1838. }
  1839. },
  1840. "notification-url": "https://packages.drupal.org/8/downloads",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Daniel Moberly",
  1847. "homepage": "https://www.drupal.org/u/danielmoberly",
  1848. "role": "Maintainer"
  1849. },
  1850. {
  1851. "name": "tamerzg",
  1852. "homepage": "https://www.drupal.org/user/464564"
  1853. }
  1854. ],
  1855. "description": "AudioField Module",
  1856. "homepage": "https://www.drupal.org/project/audiofield",
  1857. "support": {
  1858. "source": "https://git.drupalcode.org/project/audiofield",
  1859. "issues": "https://www.drupal.org/project/issues/audiofield"
  1860. }
  1861. },
  1862. {
  1863. "name": "drupal/autologout",
  1864. "version": "1.3.0",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://git.drupalcode.org/project/autologout.git",
  1868. "reference": "8.x-1.3"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1873. "reference": "8.x-1.3",
  1874. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1875. },
  1876. "require": {
  1877. "drupal/core": "^8 || ^9"
  1878. },
  1879. "type": "drupal-module",
  1880. "extra": {
  1881. "drupal": {
  1882. "version": "8.x-1.3",
  1883. "datestamp": "1587193798",
  1884. "security-coverage": {
  1885. "status": "covered",
  1886. "message": "Covered by Drupal's security advisory policy"
  1887. }
  1888. },
  1889. "patches_applied": {
  1890. "AutologoutManager class incompatible with interface https://www.drupal.org/project/autologout/issues/3121214": "https://www.drupal.org/files/issues/2020-03-20/3121214-autologout_manager_incompatible_interface.patch"
  1891. }
  1892. },
  1893. "notification-url": "https://packages.drupal.org/8/downloads",
  1894. "license": [
  1895. "GPL-2.0+"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "AjK",
  1900. "homepage": "https://www.drupal.org/user/39030"
  1901. },
  1902. {
  1903. "name": "AjitS",
  1904. "homepage": "https://www.drupal.org/user/981944"
  1905. },
  1906. {
  1907. "name": "boshtian",
  1908. "homepage": "https://www.drupal.org/user/1773456"
  1909. },
  1910. {
  1911. "name": "dandrews",
  1912. "homepage": "https://www.drupal.org/user/2014490"
  1913. },
  1914. {
  1915. "name": "darksnow",
  1916. "homepage": "https://www.drupal.org/user/391915"
  1917. },
  1918. {
  1919. "name": "johnennew",
  1920. "homepage": "https://www.drupal.org/user/1150042"
  1921. },
  1922. {
  1923. "name": "jrglasgow",
  1924. "homepage": "https://www.drupal.org/user/36590"
  1925. },
  1926. {
  1927. "name": "kmasood",
  1928. "homepage": "https://www.drupal.org/user/1262860"
  1929. },
  1930. {
  1931. "name": "levelos",
  1932. "homepage": "https://www.drupal.org/user/54135"
  1933. },
  1934. {
  1935. "name": "prabeen.giri",
  1936. "homepage": "https://www.drupal.org/user/913078"
  1937. },
  1938. {
  1939. "name": "str8",
  1940. "homepage": "https://www.drupal.org/user/2865063"
  1941. }
  1942. ],
  1943. "description": "Adds automated timed logout.",
  1944. "homepage": "http://drupal.org/project/autologout",
  1945. "support": {
  1946. "source": "https://git.drupalcode.org/project/autologout"
  1947. }
  1948. },
  1949. {
  1950. "name": "drupal/basic",
  1951. "version": "2.1.0",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://git.drupalcode.org/project/basic.git",
  1955. "reference": "8.x-2.1"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1960. "reference": "8.x-2.1",
  1961. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1962. },
  1963. "require": {
  1964. "drupal/core": "^8.8 || ^9"
  1965. },
  1966. "type": "drupal-theme",
  1967. "extra": {
  1968. "drupal": {
  1969. "version": "8.x-2.1",
  1970. "datestamp": "1612916291",
  1971. "security-coverage": {
  1972. "status": "covered",
  1973. "message": "Covered by Drupal's security advisory policy"
  1974. }
  1975. }
  1976. },
  1977. "notification-url": "https://packages.drupal.org/8/downloads",
  1978. "license": [
  1979. "GPL-2.0+"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Steve Krueger",
  1984. "homepage": "http://thejibe.com",
  1985. "email": "steve@thejibe.com",
  1986. "role": "Maintainer"
  1987. },
  1988. {
  1989. "name": "Joël Pittet",
  1990. "homepage": "https://www.drupal.org/u/joelpittet",
  1991. "email": "joel@pittet.ca",
  1992. "role": "Maintainer"
  1993. },
  1994. {
  1995. "name": "Leah Wagner",
  1996. "homepage": "http://thejibe.com",
  1997. "email": "leah@thejibe.com",
  1998. "role": "Maintainer"
  1999. },
  2000. {
  2001. "name": "Catherine Winters",
  2002. "homepage": "http://www.catherinewinters.com",
  2003. "email": "catherine@catherinewinters.com",
  2004. "role": "Maintainer"
  2005. },
  2006. {
  2007. "name": "Johannes Schmidt",
  2008. "homepage": "http://2tabs.com",
  2009. "email": "mail@2tabs.com",
  2010. "role": "Maintainer"
  2011. },
  2012. {
  2013. "name": "Chuck Kosman",
  2014. "homepage": "http://thejibe.com",
  2015. "email": "chuck@thejibe.com",
  2016. "role": "Maintainer"
  2017. },
  2018. {
  2019. "name": "SteveK",
  2020. "homepage": "https://www.drupal.org/user/111656"
  2021. }
  2022. ],
  2023. "description": "HTML5, SASS, Responsive grid starter theme.",
  2024. "homepage": "http://drupal.org/project/basic",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/basic",
  2027. "issues": "https://www.drupal.org/project/issues/basic",
  2028. "irc": "irc://irc.freenode.org/drupal-contribute"
  2029. }
  2030. },
  2031. {
  2032. "name": "drupal/better_messages",
  2033. "version": "2.0.0-alpha2",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://git.drupalcode.org/project/better_messages.git",
  2037. "reference": "2.0.0-alpha2"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2042. "reference": "2.0.0-alpha2",
  2043. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2044. },
  2045. "require": {
  2046. "drupal/core": "^8 || ^9"
  2047. },
  2048. "type": "drupal-module",
  2049. "extra": {
  2050. "drupal": {
  2051. "version": "2.0.0-alpha2",
  2052. "datestamp": "1644241962",
  2053. "security-coverage": {
  2054. "status": "not-covered",
  2055. "message": "Alpha releases are not covered by Drupal security advisories."
  2056. }
  2057. }
  2058. },
  2059. "notification-url": "https://packages.drupal.org/8/downloads",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "bucefal91",
  2066. "homepage": "https://www.drupal.org/user/504128"
  2067. },
  2068. {
  2069. "name": "le72",
  2070. "homepage": "https://www.drupal.org/user/1866896"
  2071. },
  2072. {
  2073. "name": "mohammed j. razem",
  2074. "homepage": "https://www.drupal.org/user/255384"
  2075. },
  2076. {
  2077. "name": "usingsession",
  2078. "homepage": "https://www.drupal.org/user/3582050"
  2079. }
  2080. ],
  2081. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2082. "homepage": "https://www.drupal.org/project/better_messages",
  2083. "support": {
  2084. "source": "https://git.drupalcode.org/project/better_messages"
  2085. }
  2086. },
  2087. {
  2088. "name": "drupal/bulkdelete",
  2089. "version": "dev-1.x",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2093. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2094. },
  2095. "require": {
  2096. "drupal/core": "^8.7.7 || ^9"
  2097. },
  2098. "type": "drupal-module",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-1.x": "1.x-dev"
  2102. },
  2103. "drupal": {
  2104. "version": "8.x-1.x-dev",
  2105. "datestamp": "1569586386",
  2106. "security-coverage": {
  2107. "status": "not-covered",
  2108. "message": "Dev releases are not covered by Drupal security advisories."
  2109. }
  2110. }
  2111. },
  2112. "notification-url": "https://packages.drupal.org/8/downloads",
  2113. "license": [
  2114. "GPL-2.0-or-later"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Kars-T",
  2119. "homepage": "https://www.drupal.org/user/224499"
  2120. },
  2121. {
  2122. "name": "Rahul Seth",
  2123. "homepage": "https://www.drupal.org/user/2694359"
  2124. },
  2125. {
  2126. "name": "adriancid",
  2127. "homepage": "https://www.drupal.org/user/1962106"
  2128. },
  2129. {
  2130. "name": "robertDouglass",
  2131. "homepage": "https://www.drupal.org/user/5449"
  2132. }
  2133. ],
  2134. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2135. "homepage": "https://www.drupal.org/project/bulkdelete",
  2136. "support": {
  2137. "source": "https://git.drupalcode.org/project/bulkdelete"
  2138. },
  2139. "time": "2020-05-24T06:01:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/color_field",
  2143. "version": "2.4.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/color_field.git",
  2147. "reference": "8.x-2.4"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.4.zip",
  2152. "reference": "8.x-2.4",
  2153. "shasum": "11c163a409f4f70083f188d917fecc6052c53a2f"
  2154. },
  2155. "require": {
  2156. "drupal/core": "^8 || ^9"
  2157. },
  2158. "require-dev": {
  2159. "drupal/token": "~1.3",
  2160. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2161. },
  2162. "suggest": {
  2163. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2164. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2165. },
  2166. "type": "drupal-module",
  2167. "extra": {
  2168. "drupal": {
  2169. "version": "8.x-2.4",
  2170. "datestamp": "1596479692",
  2171. "security-coverage": {
  2172. "status": "covered",
  2173. "message": "Covered by Drupal's security advisory policy"
  2174. }
  2175. }
  2176. },
  2177. "notification-url": "https://packages.drupal.org/8/downloads",
  2178. "license": [
  2179. "GPL-2.0-or-later"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "targoo",
  2184. "homepage": "https://www.drupal.org/user/431910",
  2185. "role": "Maintainer"
  2186. },
  2187. {
  2188. "name": "Nick Wilde",
  2189. "homepage": "https://www.drupal.org/user/nickwilde",
  2190. "role": "Maintainer"
  2191. }
  2192. ],
  2193. "description": "Provides a color field type to store the color value and opacity",
  2194. "homepage": "https://www.drupal.org/project/color_field",
  2195. "support": {
  2196. "source": "https://git.drupalcode.org/project/color_field",
  2197. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2198. }
  2199. },
  2200. {
  2201. "name": "drupal/config_devel",
  2202. "version": "1.8.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://git.drupalcode.org/project/config_devel.git",
  2206. "reference": "8.x-1.8"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2211. "reference": "8.x-1.8",
  2212. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2213. },
  2214. "require": {
  2215. "drupal/core": "^8 || ^9"
  2216. },
  2217. "type": "drupal-module",
  2218. "extra": {
  2219. "drupal": {
  2220. "version": "8.x-1.8",
  2221. "datestamp": "1609324318",
  2222. "security-coverage": {
  2223. "status": "covered",
  2224. "message": "Covered by Drupal's security advisory policy"
  2225. }
  2226. }
  2227. },
  2228. "notification-url": "https://packages.drupal.org/8/downloads",
  2229. "license": [
  2230. "GPL-2.0+"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "alexpott",
  2235. "homepage": "https://www.drupal.org/user/157725"
  2236. },
  2237. {
  2238. "name": "benjy",
  2239. "homepage": "https://www.drupal.org/user/1852732"
  2240. },
  2241. {
  2242. "name": "chx",
  2243. "homepage": "https://www.drupal.org/user/9446"
  2244. },
  2245. {
  2246. "name": "joachim",
  2247. "homepage": "https://www.drupal.org/user/107701"
  2248. },
  2249. {
  2250. "name": "vijaycs85",
  2251. "homepage": "https://www.drupal.org/user/93488"
  2252. }
  2253. ],
  2254. "description": "Helps developers work with configuration.",
  2255. "homepage": "https://www.drupal.org/project/config_devel",
  2256. "support": {
  2257. "source": "https://git.drupalcode.org/project/config_devel"
  2258. }
  2259. },
  2260. {
  2261. "name": "drupal/config_filter",
  2262. "version": "1.12.0",
  2263. "source": {
  2264. "type": "git",
  2265. "url": "https://git.drupalcode.org/project/config_filter.git",
  2266. "reference": "8.x-1.12"
  2267. },
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2271. "reference": "8.x-1.12",
  2272. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2273. },
  2274. "require": {
  2275. "drupal/core": "^8.8 || ^9 || ^10"
  2276. },
  2277. "suggest": {
  2278. "drupal/config_split": "Split site configuration for different environments."
  2279. },
  2280. "type": "drupal-module",
  2281. "extra": {
  2282. "drupal": {
  2283. "version": "8.x-1.12",
  2284. "datestamp": "1698308496",
  2285. "security-coverage": {
  2286. "status": "covered",
  2287. "message": "Covered by Drupal's security advisory policy"
  2288. }
  2289. }
  2290. },
  2291. "notification-url": "https://packages.drupal.org/8/downloads",
  2292. "license": [
  2293. "GPL-2.0-or-later"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Fabian Bircher",
  2298. "homepage": "https://www.drupal.org/u/bircher",
  2299. "email": "opensource@fabianbircher.com",
  2300. "role": "Maintainer"
  2301. },
  2302. {
  2303. "name": "Nuvole Web",
  2304. "homepage": "http://nuvole.org",
  2305. "email": "info@nuvole.org",
  2306. "role": "Maintainer"
  2307. },
  2308. {
  2309. "name": "pescetti",
  2310. "homepage": "https://www.drupal.org/user/436244"
  2311. }
  2312. ],
  2313. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2314. "homepage": "https://www.drupal.org/project/config_filter",
  2315. "keywords": [
  2316. "Drupal",
  2317. "configuration",
  2318. "configuration management"
  2319. ],
  2320. "support": {
  2321. "source": "https://git.drupalcode.org/project/config_filter",
  2322. "issues": "https://www.drupal.org/project/issues/config_filter",
  2323. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2324. }
  2325. },
  2326. {
  2327. "name": "drupal/config_ignore",
  2328. "version": "2.4.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2332. "reference": "8.x-2.4"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2337. "reference": "8.x-2.4",
  2338. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2339. },
  2340. "require": {
  2341. "drupal/config_filter": "^1 || ^2",
  2342. "drupal/core": "^8 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "drupal": {
  2347. "version": "8.x-2.4",
  2348. "datestamp": "1676045435",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0-or-later"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. },
  2371. {
  2372. "name": "tlyngej",
  2373. "homepage": "https://www.drupal.org/user/413139"
  2374. }
  2375. ],
  2376. "description": "Ignore certain configuration during import.",
  2377. "homepage": "http://drupal.org/project/config_ignore",
  2378. "support": {
  2379. "source": "https://git.drupalcode.org/project/config_ignore",
  2380. "issues": "https://drupal.org/project/config_ignore",
  2381. "irc": "irc://irc.freenode.org/drupal-contribute"
  2382. }
  2383. },
  2384. {
  2385. "name": "drupal/config_update",
  2386. "version": "1.7.0",
  2387. "source": {
  2388. "type": "git",
  2389. "url": "https://git.drupalcode.org/project/config_update.git",
  2390. "reference": "8.x-1.7"
  2391. },
  2392. "dist": {
  2393. "type": "zip",
  2394. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2395. "reference": "8.x-1.7",
  2396. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2397. },
  2398. "require": {
  2399. "drupal/core": "^8 || ^9"
  2400. },
  2401. "type": "drupal-module",
  2402. "extra": {
  2403. "drupal": {
  2404. "version": "8.x-1.7",
  2405. "datestamp": "1586355587",
  2406. "security-coverage": {
  2407. "status": "covered",
  2408. "message": "Covered by Drupal's security advisory policy"
  2409. }
  2410. }
  2411. },
  2412. "notification-url": "https://packages.drupal.org/8/downloads",
  2413. "license": [
  2414. "GPL-2.0-or-later"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "jhodgdon",
  2419. "homepage": "https://www.drupal.org/user/155601"
  2420. },
  2421. {
  2422. "name": "nedjo",
  2423. "homepage": "https://www.drupal.org/user/4481"
  2424. }
  2425. ],
  2426. "description": "Provides basic revert and update functionality for other modules",
  2427. "homepage": "https://www.drupal.org/project/config_update",
  2428. "support": {
  2429. "source": "https://git.drupalcode.org/project/config_update"
  2430. }
  2431. },
  2432. {
  2433. "name": "drupal/context",
  2434. "version": "4.1.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://git.drupalcode.org/project/context.git",
  2438. "reference": "8.x-4.1"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2443. "reference": "8.x-4.1",
  2444. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2445. },
  2446. "require": {
  2447. "drupal/core": "^8.8 || ^9"
  2448. },
  2449. "type": "drupal-module",
  2450. "extra": {
  2451. "drupal": {
  2452. "version": "8.x-4.1",
  2453. "datestamp": "1628187190",
  2454. "security-coverage": {
  2455. "status": "covered",
  2456. "message": "Covered by Drupal's security advisory policy"
  2457. }
  2458. }
  2459. },
  2460. "notification-url": "https://packages.drupal.org/8/downloads",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Christoffer Palm",
  2467. "homepage": "http://www.oddhill.se/",
  2468. "email": "christoffer.palm@oddhill.se",
  2469. "role": "Developer"
  2470. },
  2471. {
  2472. "name": "boshtian",
  2473. "homepage": "https://www.drupal.org/user/1773456"
  2474. },
  2475. {
  2476. "name": "colan",
  2477. "homepage": "https://www.drupal.org/user/58704"
  2478. },
  2479. {
  2480. "name": "emanaton",
  2481. "homepage": "https://www.drupal.org/user/120853"
  2482. },
  2483. {
  2484. "name": "febbraro",
  2485. "homepage": "https://www.drupal.org/user/43670"
  2486. },
  2487. {
  2488. "name": "fizk",
  2489. "homepage": "https://www.drupal.org/user/473174"
  2490. },
  2491. {
  2492. "name": "hass",
  2493. "homepage": "https://www.drupal.org/user/85918"
  2494. },
  2495. {
  2496. "name": "hefox",
  2497. "homepage": "https://www.drupal.org/user/426416"
  2498. },
  2499. {
  2500. "name": "jmiccolis",
  2501. "homepage": "https://www.drupal.org/user/31731"
  2502. },
  2503. {
  2504. "name": "Kristen Pol",
  2505. "homepage": "https://www.drupal.org/user/8389"
  2506. },
  2507. {
  2508. "name": "nedjo",
  2509. "homepage": "https://www.drupal.org/user/4481"
  2510. },
  2511. {
  2512. "name": "NormySan",
  2513. "homepage": "https://www.drupal.org/user/112352"
  2514. },
  2515. {
  2516. "name": "patricksettle",
  2517. "homepage": "https://www.drupal.org/user/26618"
  2518. },
  2519. {
  2520. "name": "paulocs",
  2521. "homepage": "https://www.drupal.org/user/3640109"
  2522. },
  2523. {
  2524. "name": "Steven Jones",
  2525. "homepage": "https://www.drupal.org/user/99644"
  2526. },
  2527. {
  2528. "name": "tekante",
  2529. "homepage": "https://www.drupal.org/user/640024"
  2530. },
  2531. {
  2532. "name": "yhahn",
  2533. "homepage": "https://www.drupal.org/user/264833"
  2534. }
  2535. ],
  2536. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2537. "homepage": "https://github.com/oddhill/context",
  2538. "keywords": [
  2539. "Drupal",
  2540. "block",
  2541. "conditions",
  2542. "context",
  2543. "visibility"
  2544. ],
  2545. "support": {
  2546. "source": "https://github.com/oddhill/context",
  2547. "issues": "https://github.com/oddhill/context/issues",
  2548. "docs": "https://github.com/oddhill/context"
  2549. }
  2550. },
  2551. {
  2552. "name": "drupal/core",
  2553. "version": "8.9.20",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/drupal/core.git",
  2557. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2562. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "asm89/stack-cors": "^1.1",
  2567. "composer/semver": "^1.0",
  2568. "doctrine/annotations": "^1.4",
  2569. "doctrine/common": "^2.7",
  2570. "easyrdf/easyrdf": "^0.9",
  2571. "egulias/email-validator": "^2.0",
  2572. "ext-date": "*",
  2573. "ext-dom": "*",
  2574. "ext-filter": "*",
  2575. "ext-gd": "*",
  2576. "ext-hash": "*",
  2577. "ext-json": "*",
  2578. "ext-pcre": "*",
  2579. "ext-pdo": "*",
  2580. "ext-session": "*",
  2581. "ext-simplexml": "*",
  2582. "ext-spl": "*",
  2583. "ext-tokenizer": "*",
  2584. "ext-xml": "*",
  2585. "guzzlehttp/guzzle": "^6.3",
  2586. "laminas/laminas-diactoros": "^1.8",
  2587. "laminas/laminas-feed": "^2.12",
  2588. "masterminds/html5": "^2.1",
  2589. "pear/archive_tar": "^1.4.14",
  2590. "php": "^7.0.8",
  2591. "psr/log": "^1.0",
  2592. "stack/builder": "^1.0",
  2593. "symfony-cmf/routing": "^1.4",
  2594. "symfony/class-loader": "~3.4.0",
  2595. "symfony/console": "~3.4.0",
  2596. "symfony/dependency-injection": "~3.4.26",
  2597. "symfony/event-dispatcher": "~3.4.0",
  2598. "symfony/http-foundation": "~3.4.35",
  2599. "symfony/http-kernel": "~3.4.14",
  2600. "symfony/polyfill-iconv": "^1.0",
  2601. "symfony/process": "~3.4.0",
  2602. "symfony/psr-http-message-bridge": "^1.1.2",
  2603. "symfony/routing": "~3.4.0",
  2604. "symfony/serializer": "~3.4.0",
  2605. "symfony/translation": "~3.4.0",
  2606. "symfony/validator": "~3.4.0",
  2607. "symfony/yaml": "~3.4.5",
  2608. "twig/twig": "^1.38.2",
  2609. "typo3/phar-stream-wrapper": "^3.1.3"
  2610. },
  2611. "conflict": {
  2612. "drupal/pathauto": "<1.6",
  2613. "drush/drush": "<8.1.10"
  2614. },
  2615. "replace": {
  2616. "drupal/action": "self.version",
  2617. "drupal/aggregator": "self.version",
  2618. "drupal/automated_cron": "self.version",
  2619. "drupal/ban": "self.version",
  2620. "drupal/bartik": "self.version",
  2621. "drupal/basic_auth": "self.version",
  2622. "drupal/big_pipe": "self.version",
  2623. "drupal/block": "self.version",
  2624. "drupal/block_content": "self.version",
  2625. "drupal/block_place": "self.version",
  2626. "drupal/book": "self.version",
  2627. "drupal/breakpoint": "self.version",
  2628. "drupal/ckeditor": "self.version",
  2629. "drupal/claro": "self.version",
  2630. "drupal/classy": "self.version",
  2631. "drupal/color": "self.version",
  2632. "drupal/comment": "self.version",
  2633. "drupal/config": "self.version",
  2634. "drupal/config_translation": "self.version",
  2635. "drupal/contact": "self.version",
  2636. "drupal/content_moderation": "self.version",
  2637. "drupal/content_translation": "self.version",
  2638. "drupal/contextual": "self.version",
  2639. "drupal/core-annotation": "self.version",
  2640. "drupal/core-assertion": "self.version",
  2641. "drupal/core-bridge": "self.version",
  2642. "drupal/core-class-finder": "self.version",
  2643. "drupal/core-datetime": "self.version",
  2644. "drupal/core-dependency-injection": "self.version",
  2645. "drupal/core-diff": "self.version",
  2646. "drupal/core-discovery": "self.version",
  2647. "drupal/core-event-dispatcher": "self.version",
  2648. "drupal/core-file-cache": "self.version",
  2649. "drupal/core-file-security": "self.version",
  2650. "drupal/core-filesystem": "self.version",
  2651. "drupal/core-gettext": "self.version",
  2652. "drupal/core-graph": "self.version",
  2653. "drupal/core-http-foundation": "self.version",
  2654. "drupal/core-php-storage": "self.version",
  2655. "drupal/core-plugin": "self.version",
  2656. "drupal/core-proxy-builder": "self.version",
  2657. "drupal/core-render": "self.version",
  2658. "drupal/core-serialization": "self.version",
  2659. "drupal/core-transliteration": "self.version",
  2660. "drupal/core-utility": "self.version",
  2661. "drupal/core-uuid": "self.version",
  2662. "drupal/core-version": "self.version",
  2663. "drupal/datetime": "self.version",
  2664. "drupal/datetime_range": "self.version",
  2665. "drupal/dblog": "self.version",
  2666. "drupal/dynamic_page_cache": "self.version",
  2667. "drupal/editor": "self.version",
  2668. "drupal/entity_reference": "self.version",
  2669. "drupal/field": "self.version",
  2670. "drupal/field_layout": "self.version",
  2671. "drupal/field_ui": "self.version",
  2672. "drupal/file": "self.version",
  2673. "drupal/filter": "self.version",
  2674. "drupal/forum": "self.version",
  2675. "drupal/hal": "self.version",
  2676. "drupal/help": "self.version",
  2677. "drupal/help_topics": "self.version",
  2678. "drupal/history": "self.version",
  2679. "drupal/image": "self.version",
  2680. "drupal/inline_form_errors": "self.version",
  2681. "drupal/jsonapi": "self.version",
  2682. "drupal/language": "self.version",
  2683. "drupal/layout_builder": "self.version",
  2684. "drupal/layout_discovery": "self.version",
  2685. "drupal/link": "self.version",
  2686. "drupal/locale": "self.version",
  2687. "drupal/media": "self.version",
  2688. "drupal/media_library": "self.version",
  2689. "drupal/menu_link_content": "self.version",
  2690. "drupal/menu_ui": "self.version",
  2691. "drupal/migrate": "self.version",
  2692. "drupal/migrate_drupal": "self.version",
  2693. "drupal/migrate_drupal_multilingual": "self.version",
  2694. "drupal/migrate_drupal_ui": "self.version",
  2695. "drupal/minimal": "self.version",
  2696. "drupal/node": "self.version",
  2697. "drupal/options": "self.version",
  2698. "drupal/page_cache": "self.version",
  2699. "drupal/path": "self.version",
  2700. "drupal/path_alias": "self.version",
  2701. "drupal/quickedit": "self.version",
  2702. "drupal/rdf": "self.version",
  2703. "drupal/responsive_image": "self.version",
  2704. "drupal/rest": "self.version",
  2705. "drupal/search": "self.version",
  2706. "drupal/serialization": "self.version",
  2707. "drupal/settings_tray": "self.version",
  2708. "drupal/seven": "self.version",
  2709. "drupal/shortcut": "self.version",
  2710. "drupal/simpletest": "self.version",
  2711. "drupal/standard": "self.version",
  2712. "drupal/stark": "self.version",
  2713. "drupal/statistics": "self.version",
  2714. "drupal/syslog": "self.version",
  2715. "drupal/system": "self.version",
  2716. "drupal/taxonomy": "self.version",
  2717. "drupal/telephone": "self.version",
  2718. "drupal/text": "self.version",
  2719. "drupal/toolbar": "self.version",
  2720. "drupal/tour": "self.version",
  2721. "drupal/tracker": "self.version",
  2722. "drupal/update": "self.version",
  2723. "drupal/user": "self.version",
  2724. "drupal/views": "self.version",
  2725. "drupal/views_ui": "self.version",
  2726. "drupal/workflows": "self.version",
  2727. "drupal/workspaces": "self.version"
  2728. },
  2729. "type": "drupal-core",
  2730. "extra": {
  2731. "drupal-scaffold": {
  2732. "file-mapping": {
  2733. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2734. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2735. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2736. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2737. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2738. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2739. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2740. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2741. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2742. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2743. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2744. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2745. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2746. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2747. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2748. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2749. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2750. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2751. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2752. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2753. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2754. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2755. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2756. }
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Drupal\\Core\\": "lib/Drupal/Core",
  2762. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2763. "Drupal\\Component\\": "lib/Drupal/Component"
  2764. },
  2765. "classmap": [
  2766. "lib/Drupal.php",
  2767. "lib/Drupal/Component/Utility/Timer.php",
  2768. "lib/Drupal/Component/Utility/Unicode.php",
  2769. "lib/Drupal/Core/Database/Database.php",
  2770. "lib/Drupal/Core/DrupalKernel.php",
  2771. "lib/Drupal/Core/DrupalKernelInterface.php",
  2772. "lib/Drupal/Core/Site/Settings.php"
  2773. ]
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "GPL-2.0-or-later"
  2778. ],
  2779. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2780. "support": {
  2781. "source": "https://github.com/drupal/core/tree/8.9.20"
  2782. },
  2783. "time": "2021-11-17T21:24:28+00:00"
  2784. },
  2785. {
  2786. "name": "drupal/core-composer-scaffold",
  2787. "version": "8.9.20",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2791. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2796. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2797. "shasum": ""
  2798. },
  2799. "require": {
  2800. "composer-plugin-api": "^1 || ^2",
  2801. "php": ">=7.0.8"
  2802. },
  2803. "conflict": {
  2804. "drupal-composer/drupal-scaffold": "*"
  2805. },
  2806. "require-dev": {
  2807. "composer/composer": "^1.8@stable"
  2808. },
  2809. "type": "composer-plugin",
  2810. "extra": {
  2811. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2812. "branch-alias": {
  2813. "dev-master": "1.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2819. }
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "GPL-2.0-or-later"
  2824. ],
  2825. "description": "A flexible Composer project scaffold builder.",
  2826. "homepage": "https://www.drupal.org/project/drupal",
  2827. "keywords": [
  2828. "drupal"
  2829. ],
  2830. "support": {
  2831. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2832. },
  2833. "time": "2020-08-07T22:30:30+00:00"
  2834. },
  2835. {
  2836. "name": "drupal/core-recommended",
  2837. "version": "8.9.20",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/drupal/core-recommended.git",
  2841. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2846. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2847. "shasum": ""
  2848. },
  2849. "require": {
  2850. "asm89/stack-cors": "1.3.0",
  2851. "composer/semver": "1.5.1",
  2852. "doctrine/annotations": "v1.4.0",
  2853. "doctrine/cache": "v1.6.2",
  2854. "doctrine/collections": "v1.4.0",
  2855. "doctrine/common": "v2.7.3",
  2856. "doctrine/inflector": "v1.2.0",
  2857. "doctrine/lexer": "1.0.2",
  2858. "drupal/core": "8.9.20",
  2859. "easyrdf/easyrdf": "0.9.1",
  2860. "egulias/email-validator": "2.1.17",
  2861. "guzzlehttp/guzzle": "6.5.4",
  2862. "guzzlehttp/promises": "v1.3.1",
  2863. "guzzlehttp/psr7": "1.6.1",
  2864. "laminas/laminas-diactoros": "1.8.7p2",
  2865. "laminas/laminas-escaper": "2.6.1",
  2866. "laminas/laminas-feed": "2.12.2",
  2867. "laminas/laminas-stdlib": "3.2.1",
  2868. "laminas/laminas-zendframework-bridge": "1.0.4",
  2869. "masterminds/html5": "2.3.0",
  2870. "paragonie/random_compat": "v9.99.99",
  2871. "pear/archive_tar": "1.4.14",
  2872. "pear/console_getopt": "v1.4.3",
  2873. "pear/pear-core-minimal": "v1.10.10",
  2874. "pear/pear_exception": "v1.0.1",
  2875. "psr/container": "1.0.0",
  2876. "psr/http-message": "1.0.1",
  2877. "psr/log": "1.1.3",
  2878. "ralouphie/getallheaders": "3.0.3",
  2879. "stack/builder": "v1.0.5",
  2880. "symfony-cmf/routing": "1.4.1",
  2881. "symfony/class-loader": "v3.4.41",
  2882. "symfony/console": "v3.4.41",
  2883. "symfony/debug": "v3.4.41",
  2884. "symfony/dependency-injection": "v3.4.41",
  2885. "symfony/event-dispatcher": "v3.4.41",
  2886. "symfony/http-foundation": "v3.4.41",
  2887. "symfony/http-kernel": "v3.4.44",
  2888. "symfony/polyfill-ctype": "v1.17.0",
  2889. "symfony/polyfill-iconv": "v1.17.0",
  2890. "symfony/polyfill-intl-idn": "v1.17.0",
  2891. "symfony/polyfill-mbstring": "v1.17.0",
  2892. "symfony/polyfill-php56": "v1.17.0",
  2893. "symfony/polyfill-php70": "v1.17.0",
  2894. "symfony/polyfill-php72": "v1.17.0",
  2895. "symfony/polyfill-util": "v1.17.0",
  2896. "symfony/process": "v3.4.41",
  2897. "symfony/psr-http-message-bridge": "v1.1.2",
  2898. "symfony/routing": "v3.4.41",
  2899. "symfony/serializer": "v3.4.41",
  2900. "symfony/translation": "v3.4.41",
  2901. "symfony/validator": "v3.4.41",
  2902. "symfony/yaml": "v3.4.41",
  2903. "twig/twig": "v1.42.5",
  2904. "typo3/phar-stream-wrapper": "v3.1.4"
  2905. },
  2906. "conflict": {
  2907. "webflo/drupal-core-strict": "*"
  2908. },
  2909. "type": "metapackage",
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "GPL-2.0-or-later"
  2913. ],
  2914. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2915. "support": {
  2916. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2917. },
  2918. "time": "2021-11-17T21:24:28+00:00"
  2919. },
  2920. {
  2921. "name": "drupal/ctools",
  2922. "version": "3.4.0",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://git.drupalcode.org/project/ctools.git",
  2926. "reference": "8.x-3.4"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2931. "reference": "8.x-3.4",
  2932. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2933. },
  2934. "require": {
  2935. "drupal/core": "^8.7.7 || ^9"
  2936. },
  2937. "type": "drupal-module",
  2938. "extra": {
  2939. "drupal": {
  2940. "version": "8.x-3.4",
  2941. "datestamp": "1585763383",
  2942. "security-coverage": {
  2943. "status": "covered",
  2944. "message": "Covered by Drupal's security advisory policy"
  2945. }
  2946. }
  2947. },
  2948. "notification-url": "https://packages.drupal.org/8/downloads",
  2949. "license": [
  2950. "GPL-2.0+"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Kris Vanderwater (EclipseGc)",
  2955. "homepage": "https://www.drupal.org/u/eclipsegc",
  2956. "role": "Maintainer"
  2957. },
  2958. {
  2959. "name": "Jakob Perry (japerry)",
  2960. "homepage": "https://www.drupal.org/u/japerry",
  2961. "role": "Maintainer"
  2962. },
  2963. {
  2964. "name": "Tim Plunkett (tim.plunkett)",
  2965. "homepage": "https://www.drupal.org/u/timplunkett",
  2966. "role": "Maintainer"
  2967. },
  2968. {
  2969. "name": "James Gilliland (neclimdul)",
  2970. "homepage": "https://www.drupal.org/u/neclimdul",
  2971. "role": "Maintainer"
  2972. },
  2973. {
  2974. "name": "Daniel Wehner (dawehner)",
  2975. "homepage": "https://www.drupal.org/u/dawehner",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "joelpittet",
  2980. "homepage": "https://www.drupal.org/user/160302"
  2981. },
  2982. {
  2983. "name": "merlinofchaos",
  2984. "homepage": "https://www.drupal.org/user/26979"
  2985. },
  2986. {
  2987. "name": "neclimdul",
  2988. "homepage": "https://www.drupal.org/user/48673"
  2989. },
  2990. {
  2991. "name": "sdboyer",
  2992. "homepage": "https://www.drupal.org/user/146719"
  2993. },
  2994. {
  2995. "name": "sun",
  2996. "homepage": "https://www.drupal.org/user/54136"
  2997. },
  2998. {
  2999. "name": "tim.plunkett",
  3000. "homepage": "https://www.drupal.org/user/241634"
  3001. }
  3002. ],
  3003. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3004. "homepage": "https://www.drupal.org/project/ctools",
  3005. "support": {
  3006. "source": "https://git.drupalcode.org/project/ctools",
  3007. "issues": "https://www.drupal.org/project/issues/ctools"
  3008. }
  3009. },
  3010. {
  3011. "name": "drupal/date_range_formatter",
  3012. "version": "4.0.1",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3016. "reference": "4.0.1"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.1.zip",
  3021. "reference": "4.0.1",
  3022. "shasum": "d218f325c9a1e144ede86d34b87002330a4e8709"
  3023. },
  3024. "require": {
  3025. "drupal/core": "^8 || ^9 || ^10"
  3026. },
  3027. "type": "drupal-module",
  3028. "extra": {
  3029. "drupal": {
  3030. "version": "4.0.1",
  3031. "datestamp": "1661752209",
  3032. "security-coverage": {
  3033. "status": "covered",
  3034. "message": "Covered by Drupal's security advisory policy"
  3035. }
  3036. }
  3037. },
  3038. "notification-url": "https://packages.drupal.org/8/downloads",
  3039. "license": [
  3040. "GPL-2.0-or-later"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "maximpodorov",
  3045. "homepage": "https://www.drupal.org/user/515310"
  3046. },
  3047. {
  3048. "name": "sudishth",
  3049. "homepage": "https://www.drupal.org/user/1440562"
  3050. }
  3051. ],
  3052. "description": "Formats date ranges.",
  3053. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3054. "support": {
  3055. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3056. }
  3057. },
  3058. {
  3059. "name": "drupal/devel",
  3060. "version": "4.2.1",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://git.drupalcode.org/project/devel.git",
  3064. "reference": "4.2.1"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3069. "reference": "4.2.1",
  3070. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3071. },
  3072. "require": {
  3073. "doctrine/common": "^2.7",
  3074. "drupal/core": "^8.8 || ^9",
  3075. "symfony/var-dumper": "^4 || ^5"
  3076. },
  3077. "conflict": {
  3078. "kint-php/kint": "<3"
  3079. },
  3080. "require-dev": {
  3081. "drush/drush": "^10"
  3082. },
  3083. "suggest": {
  3084. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3085. },
  3086. "type": "drupal-module",
  3087. "extra": {
  3088. "drupal": {
  3089. "version": "4.2.1",
  3090. "datestamp": "1664317444",
  3091. "security-coverage": {
  3092. "status": "covered",
  3093. "message": "Covered by Drupal's security advisory policy"
  3094. }
  3095. },
  3096. "drush": {
  3097. "services": {
  3098. "drush.services.yml": "^9 || ^10"
  3099. }
  3100. }
  3101. },
  3102. "notification-url": "https://packages.drupal.org/8/downloads",
  3103. "license": [
  3104. "GPL-2.0-or-later"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "moshe weitzman",
  3109. "homepage": "https://www.drupal.org/user/23"
  3110. }
  3111. ],
  3112. "description": "Various blocks, pages, and functions for developers.",
  3113. "homepage": "https://www.drupal.org/project/devel",
  3114. "support": {
  3115. "source": "https://gitlab.com/drupalspoons/devel",
  3116. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3117. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3118. }
  3119. },
  3120. {
  3121. "name": "drupal/domain",
  3122. "version": "1.0.0-beta8",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://git.drupalcode.org/project/domain.git",
  3126. "reference": "8.x-1.0-beta8"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3131. "reference": "8.x-1.0-beta8",
  3132. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3133. },
  3134. "require": {
  3135. "drupal/core": "^8 || ^9"
  3136. },
  3137. "require-dev": {
  3138. "drupal/domain_access": "*",
  3139. "drupal/domain_config": "*"
  3140. },
  3141. "type": "drupal-module",
  3142. "extra": {
  3143. "drupal": {
  3144. "version": "8.x-1.0-beta8",
  3145. "datestamp": "1677511311",
  3146. "security-coverage": {
  3147. "status": "not-covered",
  3148. "message": "Beta releases are not covered by Drupal security advisories."
  3149. }
  3150. }
  3151. },
  3152. "notification-url": "https://packages.drupal.org/8/downloads",
  3153. "license": [
  3154. "GPL-2.0-or-later"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "agentrickard",
  3159. "homepage": "https://www.drupal.org/user/20975"
  3160. },
  3161. {
  3162. "name": "nonsie",
  3163. "homepage": "https://www.drupal.org/user/29899"
  3164. },
  3165. {
  3166. "name": "webflo",
  3167. "homepage": "https://www.drupal.org/user/254778"
  3168. }
  3169. ],
  3170. "description": "Creates domain records within a Drupal installation.",
  3171. "homepage": "https://www.drupal.org/project/domain",
  3172. "support": {
  3173. "source": "https://git.drupalcode.org/project/domain"
  3174. }
  3175. },
  3176. {
  3177. "name": "drupal/email_registration",
  3178. "version": "1.1.0",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://git.drupalcode.org/project/email_registration.git",
  3182. "reference": "8.x-1.1"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3187. "reference": "8.x-1.1",
  3188. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3189. },
  3190. "require": {
  3191. "drupal/core": "^8.7.7 || ^9"
  3192. },
  3193. "conflict": {
  3194. "drupal/commerce": "<2.12"
  3195. },
  3196. "require-dev": {
  3197. "drupal/commerce": "^2.0"
  3198. },
  3199. "type": "drupal-module",
  3200. "extra": {
  3201. "drupal": {
  3202. "version": "8.x-1.1",
  3203. "datestamp": "1592317072",
  3204. "security-coverage": {
  3205. "status": "covered",
  3206. "message": "Covered by Drupal's security advisory policy"
  3207. }
  3208. }
  3209. },
  3210. "notification-url": "https://packages.drupal.org/8/downloads",
  3211. "license": [
  3212. "GPL-2.0-or-later"
  3213. ],
  3214. "authors": [
  3215. {
  3216. "name": "Greg Knaddison (greggles)",
  3217. "homepage": "https://www.drupal.org/u/greggles",
  3218. "role": "Maintainer"
  3219. },
  3220. {
  3221. "name": "Andrey Postnikov (andypost)",
  3222. "homepage": "https://www.drupal.org/u/andypost",
  3223. "role": "Maintainer"
  3224. },
  3225. {
  3226. "name": "Chris Herberte",
  3227. "homepage": "https://www.drupal.org/u/chris-herberte",
  3228. "role": "Maintainer"
  3229. },
  3230. {
  3231. "name": "Moshe Weitzman (moshe weitzman)",
  3232. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3233. "role": "Maintainer"
  3234. }
  3235. ],
  3236. "description": "Allows users to register with an email address as their username.",
  3237. "homepage": "https://www.drupal.org/project/email_registration",
  3238. "support": {
  3239. "source": "https://git.drupalcode.org/project/email_registration",
  3240. "issues": "http://drupal.org/project/issues/email_registration"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/entity",
  3245. "version": "dev-1.x",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://git.drupalcode.org/project/entity.git",
  3249. "reference": "3d3a99924df1b65564a417e74802bb524691dfd8"
  3250. },
  3251. "require": {
  3252. "drupal/core": "^8.8 || ^9"
  3253. },
  3254. "type": "drupal-module",
  3255. "extra": {
  3256. "branch-alias": {
  3257. "dev-1.x": "1.x-dev"
  3258. },
  3259. "drupal": {
  3260. "version": "8.x-1.0+5-dev",
  3261. "datestamp": "1594294834",
  3262. "security-coverage": {
  3263. "status": "not-covered",
  3264. "message": "Dev releases are not covered by Drupal security advisories."
  3265. }
  3266. }
  3267. },
  3268. "notification-url": "https://packages.drupal.org/8/downloads",
  3269. "license": [
  3270. "GPL-2.0-or-later"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Berdir",
  3275. "homepage": "https://www.drupal.org/user/214652"
  3276. },
  3277. {
  3278. "name": "bojanz",
  3279. "homepage": "https://www.drupal.org/user/86106"
  3280. },
  3281. {
  3282. "name": "dawehner",
  3283. "homepage": "https://www.drupal.org/user/99340"
  3284. },
  3285. {
  3286. "name": "dixon_",
  3287. "homepage": "https://www.drupal.org/user/239911"
  3288. },
  3289. {
  3290. "name": "fago",
  3291. "homepage": "https://www.drupal.org/user/16747"
  3292. },
  3293. {
  3294. "name": "mglaman",
  3295. "homepage": "https://www.drupal.org/user/2416470"
  3296. }
  3297. ],
  3298. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3299. "homepage": "http://drupal.org/project/entity",
  3300. "support": {
  3301. "source": "https://git.drupalcode.org/project/entity"
  3302. },
  3303. "time": "2020-08-08T09:14:05+00:00"
  3304. },
  3305. {
  3306. "name": "drupal/features",
  3307. "version": "3.11.0",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://git.drupalcode.org/project/features.git",
  3311. "reference": "8.x-3.11"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3316. "reference": "8.x-3.11",
  3317. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3318. },
  3319. "require": {
  3320. "drupal/config_update": "^1.4",
  3321. "drupal/core": "^8.8 || ^9"
  3322. },
  3323. "type": "drupal-module",
  3324. "extra": {
  3325. "drupal": {
  3326. "version": "8.x-3.11",
  3327. "datestamp": "1591023154",
  3328. "security-coverage": {
  3329. "status": "covered",
  3330. "message": "Covered by Drupal's security advisory policy"
  3331. }
  3332. },
  3333. "drush": {
  3334. "services": {
  3335. "drush.services.yml": "^9"
  3336. }
  3337. }
  3338. },
  3339. "notification-url": "https://packages.drupal.org/8/downloads",
  3340. "license": [
  3341. "GPL-2.0-or-later"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "dawehner",
  3346. "homepage": "https://www.drupal.org/user/99340"
  3347. },
  3348. {
  3349. "name": "donquixote",
  3350. "homepage": "https://www.drupal.org/user/459338"
  3351. },
  3352. {
  3353. "name": "e2thex",
  3354. "homepage": "https://www.drupal.org/user/189123"
  3355. },
  3356. {
  3357. "name": "febbraro",
  3358. "homepage": "https://www.drupal.org/user/43670"
  3359. },
  3360. {
  3361. "name": "flocondetoile",
  3362. "homepage": "https://www.drupal.org/user/2006064"
  3363. },
  3364. {
  3365. "name": "jmiccolis",
  3366. "homepage": "https://www.drupal.org/user/31731"
  3367. },
  3368. {
  3369. "name": "joseph.olstad",
  3370. "homepage": "https://www.drupal.org/user/1321830"
  3371. },
  3372. {
  3373. "name": "mpotter",
  3374. "homepage": "https://www.drupal.org/user/616192"
  3375. },
  3376. {
  3377. "name": "nedjo",
  3378. "homepage": "https://www.drupal.org/user/4481"
  3379. },
  3380. {
  3381. "name": "tim.plunkett",
  3382. "homepage": "https://www.drupal.org/user/241634"
  3383. }
  3384. ],
  3385. "description": "Enables administrators to package configuration into modules",
  3386. "homepage": "https://www.drupal.org/project/features",
  3387. "support": {
  3388. "source": "https://git.drupalcode.org/project/features"
  3389. }
  3390. },
  3391. {
  3392. "name": "drupal/field_group",
  3393. "version": "3.1.0",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://git.drupalcode.org/project/field_group.git",
  3397. "reference": "8.x-3.1"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  3402. "reference": "8.x-3.1",
  3403. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  3404. },
  3405. "require": {
  3406. "drupal/core": "^8.8 || ^9"
  3407. },
  3408. "require-dev": {
  3409. "drupal/jquery_ui_accordion": "^1.0"
  3410. },
  3411. "type": "drupal-module",
  3412. "extra": {
  3413. "drupal": {
  3414. "version": "8.x-3.1",
  3415. "datestamp": "1591772567",
  3416. "security-coverage": {
  3417. "status": "covered",
  3418. "message": "Covered by Drupal's security advisory policy"
  3419. }
  3420. }
  3421. },
  3422. "notification-url": "https://packages.drupal.org/8/downloads",
  3423. "license": [
  3424. "GPL-2.0-or-later"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Hydra",
  3429. "homepage": "https://www.drupal.org/user/647364"
  3430. },
  3431. {
  3432. "name": "Stalski",
  3433. "homepage": "https://www.drupal.org/user/322618"
  3434. },
  3435. {
  3436. "name": "jyve",
  3437. "homepage": "https://www.drupal.org/user/591438"
  3438. },
  3439. {
  3440. "name": "nils.destoop",
  3441. "homepage": "https://www.drupal.org/user/361625"
  3442. },
  3443. {
  3444. "name": "swentel",
  3445. "homepage": "https://www.drupal.org/user/107403"
  3446. }
  3447. ],
  3448. "description": "Provides the field_group module.",
  3449. "homepage": "https://www.drupal.org/project/field_group",
  3450. "support": {
  3451. "source": "https://git.drupalcode.org/project/field_group",
  3452. "issues": "https://www.drupal.org/project/issues/field_group"
  3453. }
  3454. },
  3455. {
  3456. "name": "drupal/filefield_sources",
  3457. "version": "dev-1.x",
  3458. "source": {
  3459. "type": "git",
  3460. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3461. "reference": "38dfa6622a8876854887feefd3c348583ef0586f"
  3462. },
  3463. "require": {
  3464. "drupal/core": "*"
  3465. },
  3466. "require-dev": {
  3467. "drupal/imce": "*"
  3468. },
  3469. "type": "drupal-module",
  3470. "extra": {
  3471. "branch-alias": {
  3472. "dev-1.x": "1.x-dev"
  3473. },
  3474. "drupal": {
  3475. "version": "8.x-1.0-alpha2+2-dev",
  3476. "datestamp": "1579885386",
  3477. "security-coverage": {
  3478. "status": "not-covered",
  3479. "message": "Dev releases are not covered by Drupal security advisories."
  3480. }
  3481. }
  3482. },
  3483. "notification-url": "https://packages.drupal.org/8/downloads",
  3484. "license": [
  3485. "GPL-2.0-or-later"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Nate Lampton (quicksketch)",
  3490. "homepage": "https://www.drupal.org/u/quicksketch",
  3491. "role": "Maintainer"
  3492. },
  3493. {
  3494. "name": "Andrey Khromyshev (profak)",
  3495. "homepage": "https://www.drupal.org/u/profak",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "David Valdez (gnuget)",
  3500. "homepage": "https://www.drupal.org/u/gnuget",
  3501. "role": "Maintainer"
  3502. }
  3503. ],
  3504. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3505. "homepage": "https://www.drupal.org/project/filefield_sources",
  3506. "support": {
  3507. "source": "https://git.drupalcode.org/project/filefield_sources",
  3508. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3509. "irc": "irc://irc.freenode.org/drupal-contribute"
  3510. },
  3511. "time": "2020-01-30T15:32:54+00:00"
  3512. },
  3513. {
  3514. "name": "drupal/filter_perms",
  3515. "version": "dev-1.x",
  3516. "source": {
  3517. "type": "git",
  3518. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3519. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  3520. },
  3521. "require": {
  3522. "drupal/core": "*"
  3523. },
  3524. "type": "drupal-module",
  3525. "extra": {
  3526. "branch-alias": {
  3527. "dev-1.x": "1.x-dev"
  3528. },
  3529. "drupal": {
  3530. "version": "8.x-1.x-dev",
  3531. "datestamp": "1469645939",
  3532. "security-coverage": {
  3533. "status": "not-covered",
  3534. "message": "Dev releases are not covered by Drupal security advisories."
  3535. }
  3536. }
  3537. },
  3538. "notification-url": "https://packages.drupal.org/8/downloads",
  3539. "license": [
  3540. "GPL-2.0-or-later"
  3541. ],
  3542. "authors": [
  3543. {
  3544. "name": "cYu",
  3545. "homepage": "https://www.drupal.org/user/202205"
  3546. },
  3547. {
  3548. "name": "deekayen",
  3549. "homepage": "https://www.drupal.org/user/972"
  3550. },
  3551. {
  3552. "name": "willzyx",
  3553. "homepage": "https://www.drupal.org/user/1043862"
  3554. }
  3555. ],
  3556. "description": "Provides role and module filters to simplify the user permissions page.",
  3557. "homepage": "https://www.drupal.org/project/filter_perms",
  3558. "support": {
  3559. "source": "https://git.drupalcode.org/project/filter_perms"
  3560. },
  3561. "time": "2016-07-27T19:01:11+00:00"
  3562. },
  3563. {
  3564. "name": "drupal/honeypot",
  3565. "version": "2.0.2",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://git.drupalcode.org/project/honeypot.git",
  3569. "reference": "2.0.2"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3574. "reference": "2.0.2",
  3575. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3576. },
  3577. "require": {
  3578. "drupal/core": "^8.8.2 || ^9"
  3579. },
  3580. "type": "drupal-module",
  3581. "extra": {
  3582. "drupal": {
  3583. "version": "2.0.2",
  3584. "datestamp": "1651895165",
  3585. "security-coverage": {
  3586. "status": "covered",
  3587. "message": "Covered by Drupal's security advisory policy"
  3588. }
  3589. }
  3590. },
  3591. "notification-url": "https://packages.drupal.org/8/downloads",
  3592. "license": [
  3593. "GPL-2.0-or-later"
  3594. ],
  3595. "authors": [
  3596. {
  3597. "name": "Jeff Geerling",
  3598. "homepage": "https://www.drupal.org/user/389011",
  3599. "email": "geerlingguy@mac.com"
  3600. },
  3601. {
  3602. "name": "Manuel Garcia",
  3603. "homepage": "https://www.drupal.org/user/213194"
  3604. },
  3605. {
  3606. "name": "TR",
  3607. "homepage": "https://www.drupal.org/user/202830"
  3608. },
  3609. {
  3610. "name": "vijaycs85",
  3611. "homepage": "https://www.drupal.org/user/93488"
  3612. }
  3613. ],
  3614. "description": "Mitigates spam form submissions using the honeypot method.",
  3615. "homepage": "https://www.drupal.org/project/honeypot",
  3616. "keywords": [
  3617. "deterrent",
  3618. "form",
  3619. "honeypot",
  3620. "honeytrap",
  3621. "php",
  3622. "spam"
  3623. ],
  3624. "support": {
  3625. "source": "https://git.drupalcode.org/project/honeypot",
  3626. "issues": "https://www.drupal.org/project/issues/honeypot"
  3627. }
  3628. },
  3629. {
  3630. "name": "drupal/linkit",
  3631. "version": "5.0.0-beta11",
  3632. "source": {
  3633. "type": "git",
  3634. "url": "https://git.drupalcode.org/project/linkit.git",
  3635. "reference": "8.x-5.0-beta11"
  3636. },
  3637. "dist": {
  3638. "type": "zip",
  3639. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  3640. "reference": "8.x-5.0-beta11",
  3641. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  3642. },
  3643. "require": {
  3644. "drupal/core": "^8.7.7 || ^9"
  3645. },
  3646. "require-dev": {
  3647. "drupal/imce": "*"
  3648. },
  3649. "type": "drupal-module",
  3650. "extra": {
  3651. "drupal": {
  3652. "version": "8.x-5.0-beta11",
  3653. "datestamp": "1591971693",
  3654. "security-coverage": {
  3655. "status": "not-covered",
  3656. "message": "Beta releases are not covered by Drupal security advisories."
  3657. }
  3658. }
  3659. },
  3660. "notification-url": "https://packages.drupal.org/8/downloads",
  3661. "license": [
  3662. "GPL-2.0+"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "Emil Stjerneman",
  3667. "homepage": "https://stjerneman.com",
  3668. "email": "emil@stjerneman.com",
  3669. "role": "Maintainer"
  3670. }
  3671. ],
  3672. "description": "Linkit - Enriched linking experience",
  3673. "homepage": "http://drupal.org/project/linkit",
  3674. "support": {
  3675. "source": "http://cgit.drupalcode.org/linkit",
  3676. "issues": "http://drupal.org/project/linkit"
  3677. }
  3678. },
  3679. {
  3680. "name": "drupal/login_emailusername",
  3681. "version": "2.1.0",
  3682. "source": {
  3683. "type": "git",
  3684. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  3685. "reference": "2.1.0"
  3686. },
  3687. "dist": {
  3688. "type": "zip",
  3689. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  3690. "reference": "2.1.0",
  3691. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  3692. },
  3693. "require": {
  3694. "drupal/core": "^8.8 || ^9 || ^10"
  3695. },
  3696. "type": "drupal-module",
  3697. "extra": {
  3698. "drupal": {
  3699. "version": "2.1.0",
  3700. "datestamp": "1677072401",
  3701. "security-coverage": {
  3702. "status": "covered",
  3703. "message": "Covered by Drupal's security advisory policy"
  3704. }
  3705. },
  3706. "branch-alias": {
  3707. "dev-8.x-1.x": "8.1.x-dev"
  3708. }
  3709. },
  3710. "notification-url": "https://packages.drupal.org/8/downloads",
  3711. "license": [
  3712. "GPL-2.0-or-later"
  3713. ],
  3714. "authors": [
  3715. {
  3716. "name": "See contributors",
  3717. "homepage": "https://www.drupal.org/node/2820429/committers",
  3718. "role": "contributor"
  3719. },
  3720. {
  3721. "name": "rjjakes",
  3722. "homepage": "https://www.drupal.org/user/3457245"
  3723. },
  3724. {
  3725. "name": "VladimirAus",
  3726. "homepage": "https://www.drupal.org/user/673120"
  3727. }
  3728. ],
  3729. "description": "Login with the email as username.",
  3730. "homepage": "https://drupal.org/project/login_emailusername",
  3731. "support": {
  3732. "source": "https://git.drupalcode.org/project/login_emailusername",
  3733. "issues": "https://drupal.org/project/issues/login_emailusername"
  3734. }
  3735. },
  3736. {
  3737. "name": "drupal/maillog",
  3738. "version": "dev-1.x",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://git.drupalcode.org/project/maillog.git",
  3742. "reference": "3ec675bd7842c04bc01860fa8b3f424f95a17d93"
  3743. },
  3744. "require": {
  3745. "drupal/core": "*"
  3746. },
  3747. "type": "drupal-module",
  3748. "extra": {
  3749. "branch-alias": {
  3750. "dev-1.x": "1.x-dev"
  3751. },
  3752. "drupal": {
  3753. "version": "8.x-1.x-dev",
  3754. "datestamp": "1470431939",
  3755. "security-coverage": {
  3756. "status": "not-covered",
  3757. "message": "Project has not opted into security advisory coverage!"
  3758. }
  3759. }
  3760. },
  3761. "notification-url": "https://packages.drupal.org/8/downloads",
  3762. "license": [
  3763. "GPL-2.0-or-later"
  3764. ],
  3765. "authors": [
  3766. {
  3767. "name": "Berdir",
  3768. "homepage": "https://www.drupal.org/user/214652"
  3769. },
  3770. {
  3771. "name": "DamienMcKenna",
  3772. "homepage": "https://www.drupal.org/user/108450"
  3773. },
  3774. {
  3775. "name": "miro_dietiker",
  3776. "homepage": "https://www.drupal.org/user/227761"
  3777. },
  3778. {
  3779. "name": "pluess",
  3780. "homepage": "https://www.drupal.org/user/84659"
  3781. }
  3782. ],
  3783. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  3784. "homepage": "https://www.drupal.org/project/maillog",
  3785. "support": {
  3786. "source": "https://git.drupalcode.org/project/maillog"
  3787. },
  3788. "time": "2020-05-19T01:33:41+00:00"
  3789. },
  3790. {
  3791. "name": "drupal/matomo",
  3792. "version": "1.9.0",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://git.drupalcode.org/project/matomo.git",
  3796. "reference": "8.x-1.9"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  3801. "reference": "8.x-1.9",
  3802. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  3803. },
  3804. "require": {
  3805. "drupal/core": "~8.5"
  3806. },
  3807. "require-dev": {
  3808. "drupal/php": "*",
  3809. "drupal/token": "*"
  3810. },
  3811. "type": "drupal-module",
  3812. "extra": {
  3813. "branch-alias": {
  3814. "dev-1.x": "1.x-dev"
  3815. },
  3816. "drupal": {
  3817. "version": "8.x-1.9",
  3818. "datestamp": "1549615080",
  3819. "security-coverage": {
  3820. "status": "covered",
  3821. "message": "Covered by Drupal's security advisory policy"
  3822. }
  3823. }
  3824. },
  3825. "notification-url": "https://packages.drupal.org/8/downloads",
  3826. "license": [
  3827. "GPL-2.0+"
  3828. ],
  3829. "authors": [
  3830. {
  3831. "name": "hass",
  3832. "homepage": "https://www.drupal.org/u/hass"
  3833. },
  3834. {
  3835. "name": "See other contributors",
  3836. "homepage": "https://www.drupal.org/node/247808/committers"
  3837. }
  3838. ],
  3839. "description": "Adds Matomo javascript tracking code to all your site's pages",
  3840. "homepage": "https://www.drupal.org/project/matomo",
  3841. "support": {
  3842. "source": "https://git.drupal.org/project/matomo.git",
  3843. "issues": "https://www.drupal.org/project/issues/matomo"
  3844. }
  3845. },
  3846. {
  3847. "name": "drupal/menu_admin_per_menu",
  3848. "version": "1.1.0",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  3852. "reference": "8.x-1.1"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  3857. "reference": "8.x-1.1",
  3858. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  3859. },
  3860. "require": {
  3861. "drupal/core": "^8 || ^9"
  3862. },
  3863. "type": "drupal-module",
  3864. "extra": {
  3865. "drupal": {
  3866. "version": "8.x-1.1",
  3867. "datestamp": "1591098397",
  3868. "security-coverage": {
  3869. "status": "covered",
  3870. "message": "Covered by Drupal's security advisory policy"
  3871. }
  3872. }
  3873. },
  3874. "notification-url": "https://packages.drupal.org/8/downloads",
  3875. "license": [
  3876. "GPL-2.0-or-later"
  3877. ],
  3878. "authors": [
  3879. {
  3880. "name": "JeroenT",
  3881. "homepage": "https://www.drupal.org/user/2228934"
  3882. },
  3883. {
  3884. "name": "anrikun",
  3885. "homepage": "https://www.drupal.org/user/410199"
  3886. },
  3887. {
  3888. "name": "jonas139",
  3889. "homepage": "https://www.drupal.org/user/2873401"
  3890. },
  3891. {
  3892. "name": "mkdok",
  3893. "homepage": "https://www.drupal.org/user/3308753"
  3894. }
  3895. ],
  3896. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  3897. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  3898. "support": {
  3899. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  3900. }
  3901. },
  3902. {
  3903. "name": "drupal/metatag",
  3904. "version": "1.14.0",
  3905. "source": {
  3906. "type": "git",
  3907. "url": "https://git.drupalcode.org/project/metatag.git",
  3908. "reference": "8.x-1.14"
  3909. },
  3910. "dist": {
  3911. "type": "zip",
  3912. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip",
  3913. "reference": "8.x-1.14",
  3914. "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90"
  3915. },
  3916. "require": {
  3917. "drupal/core": "^8 || ^9",
  3918. "drupal/token": "^1.0"
  3919. },
  3920. "require-dev": {
  3921. "drupal/metatag_dc": "*",
  3922. "drupal/metatag_open_graph": "*",
  3923. "drupal/page_manager": "4.x-dev",
  3924. "drupal/panelizer": "4.x-dev",
  3925. "drupal/redirect": "1.x-dev"
  3926. },
  3927. "type": "drupal-module",
  3928. "extra": {
  3929. "drupal": {
  3930. "version": "8.x-1.14",
  3931. "datestamp": "1597183852",
  3932. "security-coverage": {
  3933. "status": "covered",
  3934. "message": "Covered by Drupal's security advisory policy"
  3935. }
  3936. }
  3937. },
  3938. "notification-url": "https://packages.drupal.org/8/downloads",
  3939. "license": [
  3940. "GPL-2.0-or-later"
  3941. ],
  3942. "authors": [
  3943. {
  3944. "name": "See contributors",
  3945. "homepage": "https://www.drupal.org/node/640498/committers",
  3946. "role": "Developer"
  3947. },
  3948. {
  3949. "name": "Dave Reid",
  3950. "homepage": "https://www.drupal.org/user/53892"
  3951. }
  3952. ],
  3953. "description": "Manage meta tags for all entities.",
  3954. "homepage": "https://www.drupal.org/project/metatag",
  3955. "keywords": [
  3956. "Drupal",
  3957. "seo"
  3958. ],
  3959. "support": {
  3960. "source": "https://git.drupalcode.org/project/metatag",
  3961. "issues": "https://www.drupal.org/project/issues/metatag",
  3962. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3963. }
  3964. },
  3965. {
  3966. "name": "drupal/migrate_plus",
  3967. "version": "5.0.0",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  3971. "reference": "8.x-5.0"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  3976. "reference": "8.x-5.0",
  3977. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  3978. },
  3979. "require": {
  3980. "drupal/core": "^8 || ^9"
  3981. },
  3982. "require-dev": {
  3983. "drupal/migrate_example_advanced_setup": "*",
  3984. "drupal/migrate_example_setup": "*"
  3985. },
  3986. "suggest": {
  3987. "ext-soap": "*",
  3988. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  3989. },
  3990. "type": "drupal-module",
  3991. "extra": {
  3992. "drupal": {
  3993. "version": "8.x-5.0",
  3994. "datestamp": "1586234154",
  3995. "security-coverage": {
  3996. "status": "covered",
  3997. "message": "Covered by Drupal's security advisory policy"
  3998. }
  3999. }
  4000. },
  4001. "notification-url": "https://packages.drupal.org/8/downloads",
  4002. "license": [
  4003. "GPL-2.0+"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "Mike Ryan",
  4008. "homepage": "https://www.drupal.org/u/mikeryan",
  4009. "role": "Maintainer"
  4010. },
  4011. {
  4012. "name": "Lucas Hedding",
  4013. "homepage": "https://www.drupal.org/u/heddn",
  4014. "role": "Maintainer"
  4015. }
  4016. ],
  4017. "description": "Enhancements to core migration support.",
  4018. "homepage": "https://www.drupal.org/project/migrate_plus",
  4019. "support": {
  4020. "source": "https://git.drupalcode.org/project/migrate_plus",
  4021. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4022. "slack": "#migrate"
  4023. }
  4024. },
  4025. {
  4026. "name": "drupal/migrate_tools",
  4027. "version": "4.5.0",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4031. "reference": "8.x-4.5"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4036. "reference": "8.x-4.5",
  4037. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4038. },
  4039. "require": {
  4040. "drupal/core": "^8 || ^9",
  4041. "drupal/migrate_plus": "^4 || ^5"
  4042. },
  4043. "require-dev": {
  4044. "drupal/migrate_plus": "4.x-dev",
  4045. "drupal/migrate_source_csv": "^2.2",
  4046. "drush/drush": "^10"
  4047. },
  4048. "type": "drupal-module",
  4049. "extra": {
  4050. "drupal": {
  4051. "version": "8.x-4.5",
  4052. "datestamp": "1574693285",
  4053. "security-coverage": {
  4054. "status": "covered",
  4055. "message": "Covered by Drupal's security advisory policy"
  4056. }
  4057. },
  4058. "drush": {
  4059. "services": {
  4060. "drush.services.yml": "^9 || ^10"
  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": "heddn",
  4071. "homepage": "https://www.drupal.org/user/1463982"
  4072. },
  4073. {
  4074. "name": "mikeryan",
  4075. "homepage": "https://www.drupal.org/user/4420"
  4076. },
  4077. {
  4078. "name": "moshe weitzman",
  4079. "homepage": "https://www.drupal.org/user/23"
  4080. }
  4081. ],
  4082. "description": "Tools to assist in developing and running migrations.",
  4083. "homepage": "http://drupal.org/project/migrate_tools",
  4084. "support": {
  4085. "source": "http://cgit.drupalcode.org/migrate_tools",
  4086. "issues": "http://drupal.org/project/migrate_tools",
  4087. "irc": "irc://irc.freenode.org/drupal-migrate"
  4088. }
  4089. },
  4090. {
  4091. "name": "drupal/path_alias_xt",
  4092. "version": "dev-1.x",
  4093. "source": {
  4094. "type": "git",
  4095. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4096. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4097. },
  4098. "require": {
  4099. "drupal/core": "^8.7.7 || ^9"
  4100. },
  4101. "type": "drupal-module",
  4102. "extra": {
  4103. "branch-alias": {
  4104. "dev-1.x": "1.x-dev"
  4105. },
  4106. "drupal": {
  4107. "version": "8.x-1.x-dev",
  4108. "datestamp": "1582322571",
  4109. "security-coverage": {
  4110. "status": "not-covered",
  4111. "message": "Dev releases are not covered by Drupal security advisories."
  4112. }
  4113. }
  4114. },
  4115. "notification-url": "https://packages.drupal.org/8/downloads",
  4116. "license": [
  4117. "GPL-2.0-or-later"
  4118. ],
  4119. "authors": [
  4120. {
  4121. "name": "RdeBoer",
  4122. "homepage": "https://www.drupal.org/user/404007"
  4123. },
  4124. {
  4125. "name": "adriancid",
  4126. "homepage": "https://www.drupal.org/user/1962106"
  4127. },
  4128. {
  4129. "name": "sdstyles",
  4130. "homepage": "https://www.drupal.org/user/1420228"
  4131. }
  4132. ],
  4133. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  4134. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4135. "support": {
  4136. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4137. },
  4138. "time": "2020-05-24T05:57:09+00:00"
  4139. },
  4140. {
  4141. "name": "drupal/pathauto",
  4142. "version": "1.8.0",
  4143. "source": {
  4144. "type": "git",
  4145. "url": "https://git.drupalcode.org/project/pathauto.git",
  4146. "reference": "8.x-1.8"
  4147. },
  4148. "dist": {
  4149. "type": "zip",
  4150. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4151. "reference": "8.x-1.8",
  4152. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4153. },
  4154. "require": {
  4155. "drupal/core": "^8.8 || ^9",
  4156. "drupal/ctools": "*",
  4157. "drupal/token": "*"
  4158. },
  4159. "suggest": {
  4160. "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."
  4161. },
  4162. "type": "drupal-module",
  4163. "extra": {
  4164. "drupal": {
  4165. "version": "8.x-1.8",
  4166. "datestamp": "1588103046",
  4167. "security-coverage": {
  4168. "status": "covered",
  4169. "message": "Covered by Drupal's security advisory policy"
  4170. }
  4171. },
  4172. "drush": {
  4173. "services": {
  4174. "drush.services.yml": "^9 || ^10"
  4175. }
  4176. }
  4177. },
  4178. "notification-url": "https://packages.drupal.org/8/downloads",
  4179. "license": [
  4180. "GPL-2.0-or-later"
  4181. ],
  4182. "authors": [
  4183. {
  4184. "name": "Berdir",
  4185. "homepage": "https://www.drupal.org/user/214652"
  4186. },
  4187. {
  4188. "name": "Dave Reid",
  4189. "homepage": "https://www.drupal.org/user/53892"
  4190. },
  4191. {
  4192. "name": "Freso",
  4193. "homepage": "https://www.drupal.org/user/27504"
  4194. },
  4195. {
  4196. "name": "greggles",
  4197. "homepage": "https://www.drupal.org/user/36762"
  4198. }
  4199. ],
  4200. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4201. "homepage": "https://www.drupal.org/project/pathauto",
  4202. "support": {
  4203. "source": "https://cgit.drupalcode.org/pathauto",
  4204. "issues": "https://www.drupal.org/project/issues/pathauto",
  4205. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4206. }
  4207. },
  4208. {
  4209. "name": "drupal/piwik",
  4210. "version": "1.4.0",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://git.drupalcode.org/project/piwik.git",
  4214. "reference": "8.x-1.4"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4219. "reference": "8.x-1.4",
  4220. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4221. },
  4222. "require": {
  4223. "drupal/core": "~8.0",
  4224. "drupal/matomo": "^1.0"
  4225. },
  4226. "require-dev": {
  4227. "drupal/php": "*",
  4228. "drupal/token": "*"
  4229. },
  4230. "type": "drupal-module",
  4231. "extra": {
  4232. "branch-alias": {
  4233. "dev-1.x": "1.x-dev"
  4234. },
  4235. "drupal": {
  4236. "version": "8.x-1.4",
  4237. "datestamp": "1530437786",
  4238. "security-coverage": {
  4239. "status": "covered",
  4240. "message": "Covered by Drupal's security advisory policy"
  4241. }
  4242. }
  4243. },
  4244. "notification-url": "https://packages.drupal.org/8/downloads",
  4245. "license": [
  4246. "GPL-2.0+"
  4247. ],
  4248. "authors": [
  4249. {
  4250. "name": "hass",
  4251. "homepage": "https://www.drupal.org/u/hass"
  4252. },
  4253. {
  4254. "name": "See other contributors",
  4255. "homepage": "https://www.drupal.org/node/247808/committers"
  4256. }
  4257. ],
  4258. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4259. "homepage": "https://www.drupal.org/project/piwik",
  4260. "support": {
  4261. "source": "http://git.drupal.org/project/piwik.git",
  4262. "issues": "https://www.drupal.org/project/issues/piwik"
  4263. }
  4264. },
  4265. {
  4266. "name": "drupal/profile",
  4267. "version": "1.1.0",
  4268. "source": {
  4269. "type": "git",
  4270. "url": "https://git.drupalcode.org/project/profile.git",
  4271. "reference": "8.x-1.1"
  4272. },
  4273. "dist": {
  4274. "type": "zip",
  4275. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4276. "reference": "8.x-1.1",
  4277. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4278. },
  4279. "require": {
  4280. "drupal/core": "^8.7.7 || ^9",
  4281. "drupal/entity": "^1.0-rc2"
  4282. },
  4283. "require-dev": {
  4284. "drupal/token": "^1.0"
  4285. },
  4286. "type": "drupal-module",
  4287. "extra": {
  4288. "drupal": {
  4289. "version": "8.x-1.1",
  4290. "datestamp": "1582134004",
  4291. "security-coverage": {
  4292. "status": "covered",
  4293. "message": "Covered by Drupal's security advisory policy"
  4294. }
  4295. }
  4296. },
  4297. "notification-url": "https://packages.drupal.org/8/downloads",
  4298. "license": [
  4299. "GPL-2.0+"
  4300. ],
  4301. "authors": [
  4302. {
  4303. "name": "bojanz",
  4304. "homepage": "https://www.drupal.org/user/86106"
  4305. },
  4306. {
  4307. "name": "daggerhart",
  4308. "homepage": "https://www.drupal.org/user/167806"
  4309. },
  4310. {
  4311. "name": "fago",
  4312. "homepage": "https://www.drupal.org/user/16747"
  4313. },
  4314. {
  4315. "name": "jsacksick",
  4316. "homepage": "https://www.drupal.org/user/972218"
  4317. },
  4318. {
  4319. "name": "mglaman",
  4320. "homepage": "https://www.drupal.org/user/2416470"
  4321. },
  4322. {
  4323. "name": "pcambra",
  4324. "homepage": "https://www.drupal.org/user/122101"
  4325. }
  4326. ],
  4327. "description": "Provides configurable user profiles.",
  4328. "homepage": "http://drupal.org/project/profile",
  4329. "support": {
  4330. "source": "https://git.drupalcode.org/project/profile"
  4331. }
  4332. },
  4333. {
  4334. "name": "drupal/redirect",
  4335. "version": "1.6.0",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://git.drupalcode.org/project/redirect.git",
  4339. "reference": "8.x-1.6"
  4340. },
  4341. "dist": {
  4342. "type": "zip",
  4343. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4344. "reference": "8.x-1.6",
  4345. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4346. },
  4347. "require": {
  4348. "drupal/core": "^8.8 || ^9"
  4349. },
  4350. "type": "drupal-module",
  4351. "extra": {
  4352. "drupal": {
  4353. "version": "8.x-1.6",
  4354. "datestamp": "1589312204",
  4355. "security-coverage": {
  4356. "status": "covered",
  4357. "message": "Covered by Drupal's security advisory policy"
  4358. }
  4359. }
  4360. },
  4361. "notification-url": "https://packages.drupal.org/8/downloads",
  4362. "license": [
  4363. "GPL-2.0-or-later"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Berdir",
  4368. "homepage": "https://www.drupal.org/user/214652"
  4369. },
  4370. {
  4371. "name": "Dave Reid",
  4372. "homepage": "https://www.drupal.org/user/53892"
  4373. },
  4374. {
  4375. "name": "pifagor",
  4376. "homepage": "https://www.drupal.org/user/2375692"
  4377. }
  4378. ],
  4379. "description": "Allows users to redirect from old URLs to new URLs.",
  4380. "homepage": "https://www.drupal.org/project/redirect",
  4381. "support": {
  4382. "source": "https://git.drupalcode.org/project/redirect"
  4383. }
  4384. },
  4385. {
  4386. "name": "drupal/redis",
  4387. "version": "1.4.0",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://git.drupalcode.org/project/redis.git",
  4391. "reference": "8.x-1.4"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4396. "reference": "8.x-1.4",
  4397. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4398. },
  4399. "require": {
  4400. "drupal/core": "^8.8 || ^9"
  4401. },
  4402. "suggest": {
  4403. "predis/predis": "^1.1.1"
  4404. },
  4405. "type": "drupal-module",
  4406. "extra": {
  4407. "branch-alias": {
  4408. "dev-1.x": "1.x-dev"
  4409. },
  4410. "drupal": {
  4411. "version": "8.x-1.4",
  4412. "datestamp": "1581504947",
  4413. "security-coverage": {
  4414. "status": "covered",
  4415. "message": "Covered by Drupal's security advisory policy"
  4416. }
  4417. }
  4418. },
  4419. "autoload": {
  4420. "psr-4": {
  4421. "Drupal\\redis\\": "src"
  4422. }
  4423. },
  4424. "notification-url": "https://packages.drupal.org/8/downloads",
  4425. "license": [
  4426. "GPL-2.0"
  4427. ],
  4428. "authors": [
  4429. {
  4430. "name": "Berdir",
  4431. "homepage": "https://www.drupal.org/user/214652"
  4432. },
  4433. {
  4434. "name": "pounard",
  4435. "homepage": "https://www.drupal.org/user/240164"
  4436. }
  4437. ],
  4438. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  4439. "homepage": "https://www.drupal.org/project/redis",
  4440. "support": {
  4441. "source": "https://git.drupalcode.org/project/redis"
  4442. }
  4443. },
  4444. {
  4445. "name": "drupal/restui",
  4446. "version": "1.18.0",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://git.drupalcode.org/project/restui.git",
  4450. "reference": "8.x-1.18"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  4455. "reference": "8.x-1.18",
  4456. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  4457. },
  4458. "require": {
  4459. "drupal/core": "^8.7.7 || ^9"
  4460. },
  4461. "type": "drupal-module",
  4462. "extra": {
  4463. "drupal": {
  4464. "version": "8.x-1.18",
  4465. "datestamp": "1586170645",
  4466. "security-coverage": {
  4467. "status": "covered",
  4468. "message": "Covered by Drupal's security advisory policy"
  4469. }
  4470. }
  4471. },
  4472. "notification-url": "https://packages.drupal.org/8/downloads",
  4473. "license": [
  4474. "GPL-2.0-or-later"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "-enzo-",
  4479. "homepage": "https://www.drupal.org/user/294937"
  4480. },
  4481. {
  4482. "name": "clemens.tolboom",
  4483. "homepage": "https://www.drupal.org/user/125814"
  4484. },
  4485. {
  4486. "name": "juampynr",
  4487. "homepage": "https://www.drupal.org/user/682736"
  4488. },
  4489. {
  4490. "name": "klausi",
  4491. "homepage": "https://www.drupal.org/user/262198"
  4492. }
  4493. ],
  4494. "description": "Provides a user interface to manage REST resources.",
  4495. "homepage": "https://www.drupal.org/project/restui",
  4496. "support": {
  4497. "source": "https://git.drupalcode.org/project/restui"
  4498. }
  4499. },
  4500. {
  4501. "name": "drupal/search_api",
  4502. "version": "1.17.0",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://git.drupalcode.org/project/search_api.git",
  4506. "reference": "8.x-1.17"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip",
  4511. "reference": "8.x-1.17",
  4512. "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56"
  4513. },
  4514. "require": {
  4515. "drupal/core": "^8.8 || ^9"
  4516. },
  4517. "conflict": {
  4518. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4519. },
  4520. "require-dev": {
  4521. "drupal/language_fallback_fix": "@dev",
  4522. "drupal/search_api_autocomplete": "@dev",
  4523. "drupal/search_api_db": "*"
  4524. },
  4525. "suggest": {
  4526. "drupal/facets": "Adds the ability to create faceted searches.",
  4527. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4528. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4529. },
  4530. "type": "drupal-module",
  4531. "extra": {
  4532. "drupal": {
  4533. "version": "8.x-1.17",
  4534. "datestamp": "1594482952",
  4535. "security-coverage": {
  4536. "status": "covered",
  4537. "message": "Covered by Drupal's security advisory policy"
  4538. }
  4539. },
  4540. "drush": {
  4541. "services": {
  4542. "drush.services.yml": "^9"
  4543. }
  4544. }
  4545. },
  4546. "notification-url": "https://packages.drupal.org/8/downloads",
  4547. "license": [
  4548. "GPL-2.0+"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "Thomas Seidl",
  4553. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4554. },
  4555. {
  4556. "name": "Nick Veenhof",
  4557. "homepage": "https://www.drupal.org/u/nick_vh"
  4558. },
  4559. {
  4560. "name": "See other contributors",
  4561. "homepage": "https://www.drupal.org/node/790418/committers"
  4562. }
  4563. ],
  4564. "description": "Provides a generic framework for modules offering search capabilities.",
  4565. "homepage": "https://www.drupal.org/project/search_api",
  4566. "support": {
  4567. "source": "https://git.drupalcode.org/project/search_api",
  4568. "issues": "https://www.drupal.org/project/issues/search_api",
  4569. "irc": "irc://irc.freenode.org/drupal-search-api"
  4570. }
  4571. },
  4572. {
  4573. "name": "drupal/simple_sitemap",
  4574. "version": "3.7.0",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4578. "reference": "8.x-3.7"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.7.zip",
  4583. "reference": "8.x-3.7",
  4584. "shasum": "7b23930cc71d37f332c1e836bc18c29ed2ae8cde"
  4585. },
  4586. "require": {
  4587. "drupal/core": "^8 || ^9",
  4588. "ext-xmlwriter": "*"
  4589. },
  4590. "type": "drupal-module",
  4591. "extra": {
  4592. "drupal": {
  4593. "version": "8.x-3.7",
  4594. "datestamp": "1592298918",
  4595. "security-coverage": {
  4596. "status": "covered",
  4597. "message": "Covered by Drupal's security advisory policy"
  4598. }
  4599. },
  4600. "drush": {
  4601. "services": {
  4602. "drush.services.yml": "^9 || ^10"
  4603. }
  4604. }
  4605. },
  4606. "notification-url": "https://packages.drupal.org/8/downloads",
  4607. "license": [
  4608. "GPL-2.0-or-later"
  4609. ],
  4610. "authors": [
  4611. {
  4612. "name": "Pawel Ginalski (gbyte.co)",
  4613. "homepage": "https://www.drupal.org/u/gbyte.co",
  4614. "email": "contact@gbyte.co",
  4615. "role": "Maintainer"
  4616. }
  4617. ],
  4618. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4619. "homepage": "https://drupal.org/project/simple_sitemap",
  4620. "support": {
  4621. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4622. "issues": "https://drupal.org/project/issues/simple_sitemap",
  4623. "irc": "irc://irc.freenode.org/drupal-contribute"
  4624. }
  4625. },
  4626. {
  4627. "name": "drupal/synonyms",
  4628. "version": "dev-1.x",
  4629. "source": {
  4630. "type": "git",
  4631. "url": "https://git.drupalcode.org/project/synonyms.git",
  4632. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  4633. },
  4634. "require": {
  4635. "drupal/core": "^8.2"
  4636. },
  4637. "type": "drupal-module",
  4638. "extra": {
  4639. "branch-alias": {
  4640. "dev-1.x": "1.x-dev"
  4641. },
  4642. "drupal": {
  4643. "version": "8.x-1.0-alpha1+5-dev",
  4644. "datestamp": "1540141681",
  4645. "security-coverage": {
  4646. "status": "not-covered",
  4647. "message": "Dev releases are not covered by Drupal security advisories."
  4648. }
  4649. }
  4650. },
  4651. "notification-url": "https://packages.drupal.org/8/downloads",
  4652. "license": [
  4653. "GPL-2.0-or-later"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "Zen",
  4658. "homepage": "https://www.drupal.org/user/21209"
  4659. },
  4660. {
  4661. "name": "bojanz",
  4662. "homepage": "https://www.drupal.org/user/86106"
  4663. },
  4664. {
  4665. "name": "bucefal91",
  4666. "homepage": "https://www.drupal.org/user/504128"
  4667. }
  4668. ],
  4669. "description": "Provides synonyms feature for content entities.",
  4670. "homepage": "https://www.drupal.org/project/synonyms",
  4671. "support": {
  4672. "source": "https://git.drupalcode.org/project/synonyms"
  4673. },
  4674. "time": "2018-10-21T17:05:25+00:00"
  4675. },
  4676. {
  4677. "name": "drupal/token",
  4678. "version": "1.7.0",
  4679. "source": {
  4680. "type": "git",
  4681. "url": "https://git.drupalcode.org/project/token.git",
  4682. "reference": "8.x-1.7"
  4683. },
  4684. "dist": {
  4685. "type": "zip",
  4686. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  4687. "reference": "8.x-1.7",
  4688. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  4689. },
  4690. "require": {
  4691. "drupal/core": "^8.8 || ^9"
  4692. },
  4693. "type": "drupal-module",
  4694. "extra": {
  4695. "drupal": {
  4696. "version": "8.x-1.7",
  4697. "datestamp": "1589314266",
  4698. "security-coverage": {
  4699. "status": "covered",
  4700. "message": "Covered by Drupal's security advisory policy"
  4701. }
  4702. },
  4703. "drush": {
  4704. "services": {
  4705. "drush.services.yml": "^9 || ^10"
  4706. }
  4707. }
  4708. },
  4709. "notification-url": "https://packages.drupal.org/8/downloads",
  4710. "license": [
  4711. "GPL-2.0+"
  4712. ],
  4713. "authors": [
  4714. {
  4715. "name": "Berdir",
  4716. "homepage": "https://www.drupal.org/user/214652"
  4717. },
  4718. {
  4719. "name": "Dave Reid",
  4720. "homepage": "https://www.drupal.org/user/53892"
  4721. },
  4722. {
  4723. "name": "eaton",
  4724. "homepage": "https://www.drupal.org/user/16496"
  4725. },
  4726. {
  4727. "name": "fago",
  4728. "homepage": "https://www.drupal.org/user/16747"
  4729. },
  4730. {
  4731. "name": "greggles",
  4732. "homepage": "https://www.drupal.org/user/36762"
  4733. },
  4734. {
  4735. "name": "mikeryan",
  4736. "homepage": "https://www.drupal.org/user/4420"
  4737. }
  4738. ],
  4739. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4740. "homepage": "https://www.drupal.org/project/token",
  4741. "support": {
  4742. "source": "https://git.drupalcode.org/project/token"
  4743. }
  4744. },
  4745. {
  4746. "name": "drupal/toolbar_themes",
  4747. "version": "dev-1.x",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  4751. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  4752. },
  4753. "require": {
  4754. "drupal/core": "*"
  4755. },
  4756. "type": "drupal-module",
  4757. "extra": {
  4758. "branch-alias": {
  4759. "dev-1.x": "1.x-dev"
  4760. },
  4761. "drupal": {
  4762. "version": "8.x-1.0-alpha4+10-dev",
  4763. "datestamp": "1510689485",
  4764. "security-coverage": {
  4765. "status": "not-covered",
  4766. "message": "Project has not opted into security advisory coverage!"
  4767. }
  4768. }
  4769. },
  4770. "notification-url": "https://packages.drupal.org/8/downloads",
  4771. "license": [
  4772. "GPL-2.0-or-later"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "Jeff Burnz",
  4777. "homepage": "https://www.drupal.org/user/61393"
  4778. }
  4779. ],
  4780. "description": "Apply themes to the toolbar.",
  4781. "homepage": "https://www.drupal.org/project/toolbar_themes",
  4782. "support": {
  4783. "source": "https://git.drupalcode.org/project/toolbar_themes"
  4784. },
  4785. "time": "2017-11-14T19:57:02+00:00"
  4786. },
  4787. {
  4788. "name": "drupal/translation_views",
  4789. "version": "1.0.0-alpha10",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://git.drupalcode.org/project/translation_views.git",
  4793. "reference": "8.x-1.0-alpha10"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  4798. "reference": "8.x-1.0-alpha10",
  4799. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  4800. },
  4801. "require": {
  4802. "drupal/core": "^8.8 || ^9"
  4803. },
  4804. "require-dev": {
  4805. "drupal/translators": "*",
  4806. "drupal/translators_content": "*"
  4807. },
  4808. "type": "drupal-module",
  4809. "extra": {
  4810. "drupal": {
  4811. "version": "8.x-1.0-alpha10",
  4812. "datestamp": "1584303687",
  4813. "security-coverage": {
  4814. "status": "not-covered",
  4815. "message": "Project has not opted into security advisory coverage!"
  4816. }
  4817. }
  4818. },
  4819. "notification-url": "https://packages.drupal.org/8/downloads",
  4820. "license": [
  4821. "GPL-2.0-or-later"
  4822. ],
  4823. "authors": [
  4824. {
  4825. "name": "matsbla",
  4826. "homepage": "https://www.drupal.org/user/2325394"
  4827. },
  4828. {
  4829. "name": "vlad.dancer",
  4830. "homepage": "https://www.drupal.org/user/903844"
  4831. }
  4832. ],
  4833. "description": "Create customized lists and queries of translations from your database.",
  4834. "homepage": "https://www.drupal.org/project/translation_views",
  4835. "support": {
  4836. "source": "https://git.drupalcode.org/project/translation_views"
  4837. }
  4838. },
  4839. {
  4840. "name": "drupal/upgrade_status",
  4841. "version": "3.19.0",
  4842. "source": {
  4843. "type": "git",
  4844. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  4845. "reference": "8.x-3.19"
  4846. },
  4847. "dist": {
  4848. "type": "zip",
  4849. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  4850. "reference": "8.x-3.19",
  4851. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  4852. },
  4853. "require": {
  4854. "drupal/core": "^8 || ^9",
  4855. "mathieuviossat/arraytotexttable": "~1.0.0",
  4856. "mglaman/phpstan-drupal": "^1.0.0",
  4857. "nikic/php-parser": "^4.0.0",
  4858. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  4859. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  4860. "webflo/drupal-finder": "^1.2"
  4861. },
  4862. "type": "drupal-module",
  4863. "extra": {
  4864. "drupal": {
  4865. "version": "8.x-3.19",
  4866. "datestamp": "1678815320",
  4867. "security-coverage": {
  4868. "status": "covered",
  4869. "message": "Covered by Drupal's security advisory policy"
  4870. }
  4871. },
  4872. "drush": {
  4873. "services": {
  4874. "drush.services.yml": "^9 || ^10"
  4875. }
  4876. }
  4877. },
  4878. "notification-url": "https://packages.drupal.org/8/downloads",
  4879. "license": [
  4880. "GPL-2.0-or-later"
  4881. ],
  4882. "authors": [
  4883. {
  4884. "name": "Gábor Hojtsy",
  4885. "homepage": "https://www.drupal.org/user/4166"
  4886. }
  4887. ],
  4888. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  4889. "homepage": "http://drupal.org/project/upgrade_status",
  4890. "support": {
  4891. "source": "https://git.drupalcode.org/project/upgrade_status"
  4892. }
  4893. },
  4894. {
  4895. "name": "drupal/url_to_video_filter",
  4896. "version": "2.0.0",
  4897. "source": {
  4898. "type": "git",
  4899. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  4900. "reference": "2.0.0"
  4901. },
  4902. "dist": {
  4903. "type": "zip",
  4904. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  4905. "reference": "2.0.0",
  4906. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  4907. },
  4908. "require": {
  4909. "drupal/core": "^8 || ^9"
  4910. },
  4911. "type": "drupal-module",
  4912. "extra": {
  4913. "drupal": {
  4914. "version": "2.0.0",
  4915. "datestamp": "1607298389",
  4916. "security-coverage": {
  4917. "status": "covered",
  4918. "message": "Covered by Drupal's security advisory policy"
  4919. }
  4920. }
  4921. },
  4922. "notification-url": "https://packages.drupal.org/8/downloads",
  4923. "license": [
  4924. "GPL-2.0-or-later"
  4925. ],
  4926. "authors": [
  4927. {
  4928. "name": "Jaypan",
  4929. "homepage": "https://www.drupal.org/user/324696"
  4930. }
  4931. ],
  4932. "description": "Text filter to convert URLs to embedded videos",
  4933. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  4934. "support": {
  4935. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  4936. }
  4937. },
  4938. {
  4939. "name": "drupal/views_bulk_edit",
  4940. "version": "2.7.0",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  4944. "reference": "8.x-2.7"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  4949. "reference": "8.x-2.7",
  4950. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  4951. },
  4952. "require": {
  4953. "drupal/core": "^8 || ^9"
  4954. },
  4955. "require-dev": {
  4956. "drupal/views_bulk_operations": "~3.0"
  4957. },
  4958. "suggest": {
  4959. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  4960. },
  4961. "type": "drupal-module",
  4962. "extra": {
  4963. "drupal": {
  4964. "version": "8.x-2.7",
  4965. "datestamp": "1664355764",
  4966. "security-coverage": {
  4967. "status": "covered",
  4968. "message": "Covered by Drupal's security advisory policy"
  4969. }
  4970. }
  4971. },
  4972. "notification-url": "https://packages.drupal.org/8/downloads",
  4973. "license": [
  4974. "GPL-2.0+"
  4975. ],
  4976. "authors": [
  4977. {
  4978. "name": "Marcin Grabias",
  4979. "homepage": "https://www.drupal.org/u/graber"
  4980. },
  4981. {
  4982. "name": "benjy",
  4983. "homepage": "https://www.drupal.org/user/1852732"
  4984. },
  4985. {
  4986. "name": "graber",
  4987. "homepage": "https://www.drupal.org/user/1599440"
  4988. },
  4989. {
  4990. "name": "grevil",
  4991. "homepage": "https://www.drupal.org/user/3668491"
  4992. },
  4993. {
  4994. "name": "joseph.olstad",
  4995. "homepage": "https://www.drupal.org/user/1321830"
  4996. }
  4997. ],
  4998. "description": "Allows bulk edition of entity field values.",
  4999. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5000. "support": {
  5001. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5002. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5003. }
  5004. },
  5005. {
  5006. "name": "drupal/views_bulk_operations",
  5007. "version": "3.9.0",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5011. "reference": "8.x-3.9"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5016. "reference": "8.x-3.9",
  5017. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5018. },
  5019. "require": {
  5020. "drupal/core": "^8.8 || ^9"
  5021. },
  5022. "require-dev": {
  5023. "drush/drush": "^10"
  5024. },
  5025. "suggest": {
  5026. "drush/drush": "^9 || ^10"
  5027. },
  5028. "type": "drupal-module",
  5029. "extra": {
  5030. "drupal": {
  5031. "version": "8.x-3.9",
  5032. "datestamp": "1597319021",
  5033. "security-coverage": {
  5034. "status": "covered",
  5035. "message": "Covered by Drupal's security advisory policy"
  5036. }
  5037. },
  5038. "drush": {
  5039. "services": {
  5040. "drush.services.yml": "^9 || ^10"
  5041. }
  5042. }
  5043. },
  5044. "notification-url": "https://packages.drupal.org/8/downloads",
  5045. "license": [
  5046. "GPL-2.0-or-later"
  5047. ],
  5048. "authors": [
  5049. {
  5050. "name": "Marcin Grabias",
  5051. "homepage": "https://www.drupal.org/u/graber"
  5052. },
  5053. {
  5054. "name": "Jon Pugh",
  5055. "homepage": "https://www.drupal.org/user/17028"
  5056. },
  5057. {
  5058. "name": "bojanz",
  5059. "homepage": "https://www.drupal.org/user/86106"
  5060. },
  5061. {
  5062. "name": "infojunkie",
  5063. "homepage": "https://www.drupal.org/user/48424"
  5064. },
  5065. {
  5066. "name": "joelpittet",
  5067. "homepage": "https://www.drupal.org/user/160302"
  5068. }
  5069. ],
  5070. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5071. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5072. "support": {
  5073. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5074. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5075. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5076. }
  5077. },
  5078. {
  5079. "name": "drupal/workflow",
  5080. "version": "dev-1.x",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://git.drupalcode.org/project/workflow.git",
  5084. "reference": "d75c801c73cec1f73c6a4273abce42686734503c"
  5085. },
  5086. "require": {
  5087. "drupal/core": "^8 || ^9"
  5088. },
  5089. "type": "drupal-module",
  5090. "extra": {
  5091. "branch-alias": {
  5092. "dev-1.x": "1.x-dev"
  5093. },
  5094. "drupal": {
  5095. "version": "8.x-1.1+59-dev",
  5096. "datestamp": "1590561418",
  5097. "security-coverage": {
  5098. "status": "not-covered",
  5099. "message": "Dev releases are not covered by Drupal security advisories."
  5100. }
  5101. }
  5102. },
  5103. "notification-url": "https://packages.drupal.org/8/downloads",
  5104. "license": [
  5105. "GPL-2.0-or-later"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Bastlynn",
  5110. "homepage": "https://www.drupal.org/user/275249"
  5111. },
  5112. {
  5113. "name": "Heine",
  5114. "homepage": "https://www.drupal.org/user/17943"
  5115. },
  5116. {
  5117. "name": "JacobSingh",
  5118. "homepage": "https://www.drupal.org/user/68912"
  5119. },
  5120. {
  5121. "name": "NancyDru",
  5122. "homepage": "https://www.drupal.org/user/101412"
  5123. },
  5124. {
  5125. "name": "eaton",
  5126. "homepage": "https://www.drupal.org/user/16496"
  5127. },
  5128. {
  5129. "name": "johnv",
  5130. "homepage": "https://www.drupal.org/user/591042"
  5131. },
  5132. {
  5133. "name": "jvandyk",
  5134. "homepage": "https://www.drupal.org/user/2375"
  5135. },
  5136. {
  5137. "name": "mfredrickson",
  5138. "homepage": "https://www.drupal.org/user/31994"
  5139. },
  5140. {
  5141. "name": "q0rban",
  5142. "homepage": "https://www.drupal.org/user/31022"
  5143. }
  5144. ],
  5145. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5146. "homepage": "https://www.drupal.org/project/workflow",
  5147. "support": {
  5148. "source": "https://git.drupalcode.org/project/workflow"
  5149. },
  5150. "time": "2020-05-27T07:25:14+00:00"
  5151. },
  5152. {
  5153. "name": "drush/drush",
  5154. "version": "9.7.3",
  5155. "source": {
  5156. "type": "git",
  5157. "url": "https://github.com/drush-ops/drush.git",
  5158. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5159. },
  5160. "dist": {
  5161. "type": "zip",
  5162. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5163. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5164. "shasum": ""
  5165. },
  5166. "require": {
  5167. "chi-teck/drupal-code-generator": "^1.28.1",
  5168. "composer/semver": "^1.4",
  5169. "consolidation/annotated-command": "^2.12",
  5170. "consolidation/config": "^1.2",
  5171. "consolidation/filter-via-dot-access-data": "^1",
  5172. "consolidation/output-formatters": "^3.3.1",
  5173. "consolidation/robo": "^1.4.6",
  5174. "consolidation/site-alias": "^3.0.0@stable",
  5175. "consolidation/site-process": "^2.0.3",
  5176. "ext-dom": "*",
  5177. "grasmash/yaml-expander": "^1.1.1",
  5178. "league/container": "~2",
  5179. "php": ">=5.6.0",
  5180. "psr/log": "~1.0",
  5181. "psy/psysh": "~0.6",
  5182. "symfony/console": "^3.4",
  5183. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5184. "symfony/finder": "^3.4 || ^4.0",
  5185. "symfony/process": "^3.4",
  5186. "symfony/var-dumper": "^3.4 || ^4.0",
  5187. "symfony/yaml": "^3.4",
  5188. "webflo/drupal-finder": "^1.1",
  5189. "webmozart/path-util": "^2.1.0"
  5190. },
  5191. "require-dev": {
  5192. "composer/installers": "^1.2",
  5193. "cweagans/composer-patches": "~1.0",
  5194. "drupal/alinks": "1.0.0",
  5195. "drupal/core-recommended": "^8.9",
  5196. "drupal/devel": "^2",
  5197. "drupal/empty_theme": "1.0",
  5198. "g1a/composer-test-scenarios": "^3",
  5199. "lox/xhprof": "dev-master",
  5200. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5201. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5202. "vlucas/phpdotenv": "^2.4"
  5203. },
  5204. "bin": [
  5205. "drush"
  5206. ],
  5207. "type": "library",
  5208. "extra": {
  5209. "installer-paths": {
  5210. "sut/core": [
  5211. "type:drupal-core"
  5212. ],
  5213. "sut/libraries/{$name}": [
  5214. "type:drupal-library"
  5215. ],
  5216. "sut/modules/unish/{$name}": [
  5217. "drupal/devel"
  5218. ],
  5219. "sut/themes/unish/{$name}": [
  5220. "drupal/empty_theme"
  5221. ],
  5222. "sut/modules/contrib/{$name}": [
  5223. "type:drupal-module"
  5224. ],
  5225. "sut/profiles/contrib/{$name}": [
  5226. "type:drupal-profile"
  5227. ],
  5228. "sut/themes/contrib/{$name}": [
  5229. "type:drupal-theme"
  5230. ],
  5231. "sut/drush/contrib/{$name}": [
  5232. "type:drupal-drush"
  5233. ]
  5234. },
  5235. "scenarios": {
  5236. "php5": {
  5237. "config": {
  5238. "platform": {
  5239. "php": "5.6.38"
  5240. }
  5241. },
  5242. "require-dev": {
  5243. "drupal/core-recommended": "~8.6.0"
  5244. }
  5245. }
  5246. },
  5247. "branch-alias": {
  5248. "dev-master": "9.x-dev"
  5249. }
  5250. },
  5251. "autoload": {
  5252. "psr-4": {
  5253. "Drush\\": "src/",
  5254. "Drush\\Internal\\": "src/internal-forks"
  5255. }
  5256. },
  5257. "notification-url": "https://packagist.org/downloads/",
  5258. "license": [
  5259. "GPL-2.0-or-later"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Moshe Weitzman",
  5264. "email": "weitzman@tejasa.com"
  5265. },
  5266. {
  5267. "name": "Owen Barton",
  5268. "email": "drupal@owenbarton.com"
  5269. },
  5270. {
  5271. "name": "Greg Anderson",
  5272. "email": "greg.1.anderson@greenknowe.org"
  5273. },
  5274. {
  5275. "name": "Jonathan Araña Cruz",
  5276. "email": "jonhattan@faita.net"
  5277. },
  5278. {
  5279. "name": "Jonathan Hedstrom",
  5280. "email": "jhedstrom@gmail.com"
  5281. },
  5282. {
  5283. "name": "Christopher Gervais",
  5284. "email": "chris@ergonlogic.com"
  5285. },
  5286. {
  5287. "name": "Dave Reid",
  5288. "email": "dave@davereid.net"
  5289. },
  5290. {
  5291. "name": "Damian Lee",
  5292. "email": "damiankloip@googlemail.com"
  5293. }
  5294. ],
  5295. "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.",
  5296. "homepage": "http://www.drush.org",
  5297. "support": {
  5298. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5299. "irc": "irc://irc.freenode.org/drush",
  5300. "issues": "https://github.com/drush-ops/drush/issues",
  5301. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5302. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5303. },
  5304. "funding": [
  5305. {
  5306. "url": "https://github.com/weitzman",
  5307. "type": "github"
  5308. }
  5309. ],
  5310. "time": "2021-03-22T17:00:48+00:00"
  5311. },
  5312. {
  5313. "name": "easyrdf/easyrdf",
  5314. "version": "0.9.1",
  5315. "source": {
  5316. "type": "git",
  5317. "url": "https://github.com/easyrdf/easyrdf.git",
  5318. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5319. },
  5320. "dist": {
  5321. "type": "zip",
  5322. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5323. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5324. "shasum": ""
  5325. },
  5326. "require": {
  5327. "ext-mbstring": "*",
  5328. "ext-pcre": "*",
  5329. "php": ">=5.2.8"
  5330. },
  5331. "require-dev": {
  5332. "phpunit/phpunit": "~3.5",
  5333. "sami/sami": "~1.4",
  5334. "squizlabs/php_codesniffer": "~1.4.3"
  5335. },
  5336. "suggest": {
  5337. "ml/json-ld": "~1.0"
  5338. },
  5339. "type": "library",
  5340. "autoload": {
  5341. "psr-0": {
  5342. "EasyRdf_": "lib/"
  5343. }
  5344. },
  5345. "notification-url": "https://packagist.org/downloads/",
  5346. "license": [
  5347. "BSD-3-Clause"
  5348. ],
  5349. "authors": [
  5350. {
  5351. "name": "Nicholas Humfrey",
  5352. "email": "njh@aelius.com",
  5353. "homepage": "http://www.aelius.com/njh/",
  5354. "role": "Developer"
  5355. },
  5356. {
  5357. "name": "Alexey Zakhlestin",
  5358. "email": "indeyets@gmail.com",
  5359. "role": "Developer"
  5360. }
  5361. ],
  5362. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5363. "homepage": "http://www.easyrdf.org/",
  5364. "keywords": [
  5365. "Linked Data",
  5366. "RDF",
  5367. "Semantic Web",
  5368. "Turtle",
  5369. "rdfa",
  5370. "sparql"
  5371. ],
  5372. "support": {
  5373. "forum": "http://groups.google.com/group/easyrdf/",
  5374. "irc": "irc://chat.freenode.net/easyrdf",
  5375. "issues": "http://github.com/njh/easyrdf/issues",
  5376. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5377. },
  5378. "time": "2015-02-27T09:45:49+00:00"
  5379. },
  5380. {
  5381. "name": "egulias/email-validator",
  5382. "version": "2.1.17",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/egulias/EmailValidator.git",
  5386. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5391. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5392. "shasum": ""
  5393. },
  5394. "require": {
  5395. "doctrine/lexer": "^1.0.1",
  5396. "php": ">=5.5",
  5397. "symfony/polyfill-intl-idn": "^1.10"
  5398. },
  5399. "require-dev": {
  5400. "dominicsayers/isemail": "^3.0.7",
  5401. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5402. "satooshi/php-coveralls": "^1.0.1"
  5403. },
  5404. "suggest": {
  5405. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5406. },
  5407. "type": "library",
  5408. "extra": {
  5409. "branch-alias": {
  5410. "dev-master": "2.1.x-dev"
  5411. }
  5412. },
  5413. "autoload": {
  5414. "psr-4": {
  5415. "Egulias\\EmailValidator\\": "EmailValidator"
  5416. }
  5417. },
  5418. "notification-url": "https://packagist.org/downloads/",
  5419. "license": [
  5420. "MIT"
  5421. ],
  5422. "authors": [
  5423. {
  5424. "name": "Eduardo Gulias Davis"
  5425. }
  5426. ],
  5427. "description": "A library for validating emails against several RFCs",
  5428. "homepage": "https://github.com/egulias/EmailValidator",
  5429. "keywords": [
  5430. "email",
  5431. "emailvalidation",
  5432. "emailvalidator",
  5433. "validation",
  5434. "validator"
  5435. ],
  5436. "support": {
  5437. "issues": "https://github.com/egulias/EmailValidator/issues",
  5438. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5439. },
  5440. "time": "2020-02-13T22:36:52+00:00"
  5441. },
  5442. {
  5443. "name": "grasmash/expander",
  5444. "version": "1.0.0",
  5445. "source": {
  5446. "type": "git",
  5447. "url": "https://github.com/grasmash/expander.git",
  5448. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5449. },
  5450. "dist": {
  5451. "type": "zip",
  5452. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5453. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5454. "shasum": ""
  5455. },
  5456. "require": {
  5457. "dflydev/dot-access-data": "^1.1.0",
  5458. "php": ">=5.4"
  5459. },
  5460. "require-dev": {
  5461. "greg-1-anderson/composer-test-scenarios": "^1",
  5462. "phpunit/phpunit": "^4|^5.5.4",
  5463. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5464. "squizlabs/php_codesniffer": "^2.7"
  5465. },
  5466. "type": "library",
  5467. "extra": {
  5468. "branch-alias": {
  5469. "dev-master": "1.x-dev"
  5470. }
  5471. },
  5472. "autoload": {
  5473. "psr-4": {
  5474. "Grasmash\\Expander\\": "src/"
  5475. }
  5476. },
  5477. "notification-url": "https://packagist.org/downloads/",
  5478. "license": [
  5479. "MIT"
  5480. ],
  5481. "authors": [
  5482. {
  5483. "name": "Matthew Grasmick"
  5484. }
  5485. ],
  5486. "description": "Expands internal property references in PHP arrays file.",
  5487. "time": "2017-12-21T22:14:55+00:00"
  5488. },
  5489. {
  5490. "name": "grasmash/yaml-expander",
  5491. "version": "1.4.0",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://github.com/grasmash/yaml-expander.git",
  5495. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5500. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5501. "shasum": ""
  5502. },
  5503. "require": {
  5504. "dflydev/dot-access-data": "^1.1.0",
  5505. "php": ">=5.4",
  5506. "symfony/yaml": "^2.8.11|^3|^4"
  5507. },
  5508. "require-dev": {
  5509. "greg-1-anderson/composer-test-scenarios": "^1",
  5510. "phpunit/phpunit": "^4.8|^5.5.4",
  5511. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5512. "squizlabs/php_codesniffer": "^2.7"
  5513. },
  5514. "type": "library",
  5515. "extra": {
  5516. "branch-alias": {
  5517. "dev-master": "1.x-dev"
  5518. }
  5519. },
  5520. "autoload": {
  5521. "psr-4": {
  5522. "Grasmash\\YamlExpander\\": "src/"
  5523. }
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "MIT"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "Matthew Grasmick"
  5532. }
  5533. ],
  5534. "description": "Expands internal property references in a yaml file.",
  5535. "time": "2017-12-16T16:06:03+00:00"
  5536. },
  5537. {
  5538. "name": "guzzlehttp/guzzle",
  5539. "version": "6.5.4",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/guzzle/guzzle.git",
  5543. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5548. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5549. "shasum": ""
  5550. },
  5551. "require": {
  5552. "ext-json": "*",
  5553. "guzzlehttp/promises": "^1.0",
  5554. "guzzlehttp/psr7": "^1.6.1",
  5555. "php": ">=5.5",
  5556. "symfony/polyfill-intl-idn": "1.17.0"
  5557. },
  5558. "require-dev": {
  5559. "ext-curl": "*",
  5560. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5561. "psr/log": "^1.1"
  5562. },
  5563. "suggest": {
  5564. "psr/log": "Required for using the Log middleware"
  5565. },
  5566. "type": "library",
  5567. "extra": {
  5568. "branch-alias": {
  5569. "dev-master": "6.5-dev"
  5570. }
  5571. },
  5572. "autoload": {
  5573. "files": [
  5574. "src/functions_include.php"
  5575. ],
  5576. "psr-4": {
  5577. "GuzzleHttp\\": "src/"
  5578. }
  5579. },
  5580. "notification-url": "https://packagist.org/downloads/",
  5581. "license": [
  5582. "MIT"
  5583. ],
  5584. "authors": [
  5585. {
  5586. "name": "Michael Dowling",
  5587. "email": "mtdowling@gmail.com",
  5588. "homepage": "https://github.com/mtdowling"
  5589. }
  5590. ],
  5591. "description": "Guzzle is a PHP HTTP client library",
  5592. "homepage": "http://guzzlephp.org/",
  5593. "keywords": [
  5594. "client",
  5595. "curl",
  5596. "framework",
  5597. "http",
  5598. "http client",
  5599. "rest",
  5600. "web service"
  5601. ],
  5602. "support": {
  5603. "issues": "https://github.com/guzzle/guzzle/issues",
  5604. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5605. },
  5606. "time": "2020-05-25T19:35:05+00:00"
  5607. },
  5608. {
  5609. "name": "guzzlehttp/promises",
  5610. "version": "v1.3.1",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://github.com/guzzle/promises.git",
  5614. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5619. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5620. "shasum": ""
  5621. },
  5622. "require": {
  5623. "php": ">=5.5.0"
  5624. },
  5625. "require-dev": {
  5626. "phpunit/phpunit": "^4.0"
  5627. },
  5628. "type": "library",
  5629. "extra": {
  5630. "branch-alias": {
  5631. "dev-master": "1.4-dev"
  5632. }
  5633. },
  5634. "autoload": {
  5635. "files": [
  5636. "src/functions_include.php"
  5637. ],
  5638. "psr-4": {
  5639. "GuzzleHttp\\Promise\\": "src/"
  5640. }
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "license": [
  5644. "MIT"
  5645. ],
  5646. "authors": [
  5647. {
  5648. "name": "Michael Dowling",
  5649. "email": "mtdowling@gmail.com",
  5650. "homepage": "https://github.com/mtdowling"
  5651. }
  5652. ],
  5653. "description": "Guzzle promises library",
  5654. "keywords": [
  5655. "promise"
  5656. ],
  5657. "support": {
  5658. "issues": "https://github.com/guzzle/promises/issues",
  5659. "source": "https://github.com/guzzle/promises/tree/master"
  5660. },
  5661. "time": "2016-12-20T10:07:11+00:00"
  5662. },
  5663. {
  5664. "name": "guzzlehttp/psr7",
  5665. "version": "1.6.1",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/guzzle/psr7.git",
  5669. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5674. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5675. "shasum": ""
  5676. },
  5677. "require": {
  5678. "php": ">=5.4.0",
  5679. "psr/http-message": "~1.0",
  5680. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5681. },
  5682. "provide": {
  5683. "psr/http-message-implementation": "1.0"
  5684. },
  5685. "require-dev": {
  5686. "ext-zlib": "*",
  5687. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5688. },
  5689. "suggest": {
  5690. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5691. },
  5692. "type": "library",
  5693. "extra": {
  5694. "branch-alias": {
  5695. "dev-master": "1.6-dev"
  5696. }
  5697. },
  5698. "autoload": {
  5699. "files": [
  5700. "src/functions_include.php"
  5701. ],
  5702. "psr-4": {
  5703. "GuzzleHttp\\Psr7\\": "src/"
  5704. }
  5705. },
  5706. "notification-url": "https://packagist.org/downloads/",
  5707. "license": [
  5708. "MIT"
  5709. ],
  5710. "authors": [
  5711. {
  5712. "name": "Michael Dowling",
  5713. "email": "mtdowling@gmail.com",
  5714. "homepage": "https://github.com/mtdowling"
  5715. },
  5716. {
  5717. "name": "Tobias Schultze",
  5718. "homepage": "https://github.com/Tobion"
  5719. }
  5720. ],
  5721. "description": "PSR-7 message implementation that also provides common utility methods",
  5722. "keywords": [
  5723. "http",
  5724. "message",
  5725. "psr-7",
  5726. "request",
  5727. "response",
  5728. "stream",
  5729. "uri",
  5730. "url"
  5731. ],
  5732. "support": {
  5733. "issues": "https://github.com/guzzle/psr7/issues",
  5734. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  5735. },
  5736. "time": "2019-07-01T23:21:34+00:00"
  5737. },
  5738. {
  5739. "name": "kint-php/kint",
  5740. "version": "5.1.1",
  5741. "source": {
  5742. "type": "git",
  5743. "url": "https://github.com/kint-php/kint.git",
  5744. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5745. },
  5746. "dist": {
  5747. "type": "zip",
  5748. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5749. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5750. "shasum": ""
  5751. },
  5752. "require": {
  5753. "php": ">=7.1"
  5754. },
  5755. "require-dev": {
  5756. "friendsofphp/php-cs-fixer": "^3",
  5757. "phpspec/prophecy-phpunit": "^2",
  5758. "phpunit/phpunit": "^9",
  5759. "seld/phar-utils": "^1",
  5760. "symfony/finder": ">=4.0",
  5761. "vimeo/psalm": "^5"
  5762. },
  5763. "suggest": {
  5764. "kint-php/kint-helpers": "Provides extra helper functions",
  5765. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  5766. },
  5767. "type": "library",
  5768. "autoload": {
  5769. "files": [
  5770. "init.php"
  5771. ],
  5772. "psr-4": {
  5773. "Kint\\": "src/"
  5774. }
  5775. },
  5776. "notification-url": "https://packagist.org/downloads/",
  5777. "license": [
  5778. "MIT"
  5779. ],
  5780. "authors": [
  5781. {
  5782. "name": "Jonathan Vollebregt",
  5783. "homepage": "https://github.com/jnvsor"
  5784. },
  5785. {
  5786. "name": "Contributors",
  5787. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  5788. }
  5789. ],
  5790. "description": "Kint - debugging tool for PHP developers",
  5791. "homepage": "https://kint-php.github.io/kint/",
  5792. "keywords": [
  5793. "debug",
  5794. "kint",
  5795. "php"
  5796. ],
  5797. "support": {
  5798. "issues": "https://github.com/kint-php/kint/issues",
  5799. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  5800. },
  5801. "time": "2024-04-26T14:20:09+00:00"
  5802. },
  5803. {
  5804. "name": "laminas/laminas-diactoros",
  5805. "version": "1.8.7p2",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/laminas/laminas-diactoros.git",
  5809. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5814. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  5815. "shasum": ""
  5816. },
  5817. "require": {
  5818. "laminas/laminas-zendframework-bridge": "^1.0",
  5819. "php": "^5.6 || ^7.0",
  5820. "psr/http-message": "^1.0"
  5821. },
  5822. "provide": {
  5823. "psr/http-message-implementation": "1.0"
  5824. },
  5825. "replace": {
  5826. "zendframework/zend-diactoros": "~1.8.7.0"
  5827. },
  5828. "require-dev": {
  5829. "ext-dom": "*",
  5830. "ext-libxml": "*",
  5831. "laminas/laminas-coding-standard": "~1.0",
  5832. "php-http/psr7-integration-tests": "dev-master",
  5833. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  5834. },
  5835. "type": "library",
  5836. "extra": {
  5837. "branch-alias": {
  5838. "dev-release-1.8": "1.8.x-dev"
  5839. }
  5840. },
  5841. "autoload": {
  5842. "files": [
  5843. "src/functions/create_uploaded_file.php",
  5844. "src/functions/marshal_headers_from_sapi.php",
  5845. "src/functions/marshal_method_from_sapi.php",
  5846. "src/functions/marshal_protocol_version_from_sapi.php",
  5847. "src/functions/marshal_uri_from_sapi.php",
  5848. "src/functions/normalize_server.php",
  5849. "src/functions/normalize_uploaded_files.php",
  5850. "src/functions/parse_cookie_header.php",
  5851. "src/functions/create_uploaded_file.legacy.php",
  5852. "src/functions/marshal_headers_from_sapi.legacy.php",
  5853. "src/functions/marshal_method_from_sapi.legacy.php",
  5854. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  5855. "src/functions/marshal_uri_from_sapi.legacy.php",
  5856. "src/functions/normalize_server.legacy.php",
  5857. "src/functions/normalize_uploaded_files.legacy.php",
  5858. "src/functions/parse_cookie_header.legacy.php"
  5859. ],
  5860. "psr-4": {
  5861. "Laminas\\Diactoros\\": "src/"
  5862. }
  5863. },
  5864. "notification-url": "https://packagist.org/downloads/",
  5865. "license": [
  5866. "BSD-3-Clause"
  5867. ],
  5868. "description": "PSR HTTP Message implementations",
  5869. "homepage": "https://laminas.dev",
  5870. "keywords": [
  5871. "http",
  5872. "laminas",
  5873. "psr",
  5874. "psr-7"
  5875. ],
  5876. "support": {
  5877. "chat": "https://laminas.dev/chat",
  5878. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  5879. "forum": "https://discourse.laminas.dev",
  5880. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  5881. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  5882. "source": "https://github.com/laminas/laminas-diactoros"
  5883. },
  5884. "time": "2020-03-23T15:28:28+00:00"
  5885. },
  5886. {
  5887. "name": "laminas/laminas-escaper",
  5888. "version": "2.6.1",
  5889. "source": {
  5890. "type": "git",
  5891. "url": "https://github.com/laminas/laminas-escaper.git",
  5892. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  5893. },
  5894. "dist": {
  5895. "type": "zip",
  5896. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  5897. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  5898. "shasum": ""
  5899. },
  5900. "require": {
  5901. "laminas/laminas-zendframework-bridge": "^1.0",
  5902. "php": "^5.6 || ^7.0"
  5903. },
  5904. "replace": {
  5905. "zendframework/zend-escaper": "self.version"
  5906. },
  5907. "require-dev": {
  5908. "laminas/laminas-coding-standard": "~1.0.0",
  5909. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  5910. },
  5911. "type": "library",
  5912. "extra": {
  5913. "branch-alias": {
  5914. "dev-master": "2.6.x-dev",
  5915. "dev-develop": "2.7.x-dev"
  5916. }
  5917. },
  5918. "autoload": {
  5919. "psr-4": {
  5920. "Laminas\\Escaper\\": "src/"
  5921. }
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "BSD-3-Clause"
  5926. ],
  5927. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  5928. "homepage": "https://laminas.dev",
  5929. "keywords": [
  5930. "escaper",
  5931. "laminas"
  5932. ],
  5933. "support": {
  5934. "chat": "https://laminas.dev/chat",
  5935. "docs": "https://docs.laminas.dev/laminas-escaper/",
  5936. "forum": "https://discourse.laminas.dev",
  5937. "issues": "https://github.com/laminas/laminas-escaper/issues",
  5938. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  5939. "source": "https://github.com/laminas/laminas-escaper"
  5940. },
  5941. "time": "2019-12-31T16:43:30+00:00"
  5942. },
  5943. {
  5944. "name": "laminas/laminas-feed",
  5945. "version": "2.12.2",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/laminas/laminas-feed.git",
  5949. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5954. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  5955. "shasum": ""
  5956. },
  5957. "require": {
  5958. "ext-dom": "*",
  5959. "ext-libxml": "*",
  5960. "laminas/laminas-escaper": "^2.5.2",
  5961. "laminas/laminas-stdlib": "^3.2.1",
  5962. "laminas/laminas-zendframework-bridge": "^1.0",
  5963. "php": "^5.6 || ^7.0"
  5964. },
  5965. "replace": {
  5966. "zendframework/zend-feed": "^2.12.0"
  5967. },
  5968. "require-dev": {
  5969. "laminas/laminas-cache": "^2.7.2",
  5970. "laminas/laminas-coding-standard": "~1.0.0",
  5971. "laminas/laminas-db": "^2.8.2",
  5972. "laminas/laminas-http": "^2.7",
  5973. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  5974. "laminas/laminas-validator": "^2.10.1",
  5975. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  5976. "psr/http-message": "^1.0.1"
  5977. },
  5978. "suggest": {
  5979. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  5980. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  5981. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  5982. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  5983. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  5984. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  5985. },
  5986. "type": "library",
  5987. "extra": {
  5988. "branch-alias": {
  5989. "dev-master": "2.12.x-dev",
  5990. "dev-develop": "2.13.x-dev"
  5991. }
  5992. },
  5993. "autoload": {
  5994. "psr-4": {
  5995. "Laminas\\Feed\\": "src/"
  5996. }
  5997. },
  5998. "notification-url": "https://packagist.org/downloads/",
  5999. "license": [
  6000. "BSD-3-Clause"
  6001. ],
  6002. "description": "provides functionality for consuming RSS and Atom feeds",
  6003. "homepage": "https://laminas.dev",
  6004. "keywords": [
  6005. "feed",
  6006. "laminas"
  6007. ],
  6008. "support": {
  6009. "chat": "https://laminas.dev/chat",
  6010. "docs": "https://docs.laminas.dev/laminas-feed/",
  6011. "forum": "https://discourse.laminas.dev",
  6012. "issues": "https://github.com/laminas/laminas-feed/issues",
  6013. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6014. "source": "https://github.com/laminas/laminas-feed"
  6015. },
  6016. "time": "2020-03-29T12:36:29+00:00"
  6017. },
  6018. {
  6019. "name": "laminas/laminas-servicemanager",
  6020. "version": "3.17.0",
  6021. "source": {
  6022. "type": "git",
  6023. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6024. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6025. },
  6026. "dist": {
  6027. "type": "zip",
  6028. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6029. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6030. "shasum": ""
  6031. },
  6032. "require": {
  6033. "laminas/laminas-stdlib": "^3.2.1",
  6034. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6035. "psr/container": "^1.0"
  6036. },
  6037. "conflict": {
  6038. "ext-psr": "*",
  6039. "laminas/laminas-code": "<3.3.1",
  6040. "zendframework/zend-code": "<3.3.1",
  6041. "zendframework/zend-servicemanager": "*"
  6042. },
  6043. "provide": {
  6044. "psr/container-implementation": "^1.0"
  6045. },
  6046. "replace": {
  6047. "container-interop/container-interop": "^1.2.0"
  6048. },
  6049. "require-dev": {
  6050. "composer/package-versions-deprecated": "^1.0",
  6051. "laminas/laminas-coding-standard": "~2.4.0",
  6052. "laminas/laminas-container-config-test": "^0.7",
  6053. "laminas/laminas-dependency-plugin": "^2.1.2",
  6054. "mikey179/vfsstream": "^1.6.10@alpha",
  6055. "ocramius/proxy-manager": "^2.11",
  6056. "phpbench/phpbench": "^1.1",
  6057. "phpspec/prophecy-phpunit": "^2.0",
  6058. "phpunit/phpunit": "^9.5.5",
  6059. "psalm/plugin-phpunit": "^0.17.0",
  6060. "vimeo/psalm": "^4.8"
  6061. },
  6062. "suggest": {
  6063. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6064. },
  6065. "bin": [
  6066. "bin/generate-deps-for-config-factory",
  6067. "bin/generate-factory-for-class"
  6068. ],
  6069. "type": "library",
  6070. "autoload": {
  6071. "files": [
  6072. "src/autoload.php"
  6073. ],
  6074. "psr-4": {
  6075. "Laminas\\ServiceManager\\": "src/"
  6076. }
  6077. },
  6078. "notification-url": "https://packagist.org/downloads/",
  6079. "license": [
  6080. "BSD-3-Clause"
  6081. ],
  6082. "description": "Factory-Driven Dependency Injection Container",
  6083. "homepage": "https://laminas.dev",
  6084. "keywords": [
  6085. "PSR-11",
  6086. "dependency-injection",
  6087. "di",
  6088. "dic",
  6089. "laminas",
  6090. "service-manager",
  6091. "servicemanager"
  6092. ],
  6093. "support": {
  6094. "chat": "https://laminas.dev/chat",
  6095. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6096. "forum": "https://discourse.laminas.dev",
  6097. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6098. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6099. "source": "https://github.com/laminas/laminas-servicemanager"
  6100. },
  6101. "funding": [
  6102. {
  6103. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6104. "type": "community_bridge"
  6105. }
  6106. ],
  6107. "time": "2022-09-22T11:33:46+00:00"
  6108. },
  6109. {
  6110. "name": "laminas/laminas-stdlib",
  6111. "version": "3.2.1",
  6112. "source": {
  6113. "type": "git",
  6114. "url": "https://github.com/laminas/laminas-stdlib.git",
  6115. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6116. },
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6120. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6121. "shasum": ""
  6122. },
  6123. "require": {
  6124. "laminas/laminas-zendframework-bridge": "^1.0",
  6125. "php": "^5.6 || ^7.0"
  6126. },
  6127. "replace": {
  6128. "zendframework/zend-stdlib": "self.version"
  6129. },
  6130. "require-dev": {
  6131. "laminas/laminas-coding-standard": "~1.0.0",
  6132. "phpbench/phpbench": "^0.13",
  6133. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6134. },
  6135. "type": "library",
  6136. "extra": {
  6137. "branch-alias": {
  6138. "dev-master": "3.2.x-dev",
  6139. "dev-develop": "3.3.x-dev"
  6140. }
  6141. },
  6142. "autoload": {
  6143. "psr-4": {
  6144. "Laminas\\Stdlib\\": "src/"
  6145. }
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "BSD-3-Clause"
  6150. ],
  6151. "description": "SPL extensions, array utilities, error handlers, and more",
  6152. "homepage": "https://laminas.dev",
  6153. "keywords": [
  6154. "laminas",
  6155. "stdlib"
  6156. ],
  6157. "support": {
  6158. "chat": "https://laminas.dev/chat",
  6159. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6160. "forum": "https://discourse.laminas.dev",
  6161. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6162. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6163. "source": "https://github.com/laminas/laminas-stdlib"
  6164. },
  6165. "time": "2019-12-31T17:51:15+00:00"
  6166. },
  6167. {
  6168. "name": "laminas/laminas-text",
  6169. "version": "2.8.1",
  6170. "source": {
  6171. "type": "git",
  6172. "url": "https://github.com/laminas/laminas-text.git",
  6173. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6174. },
  6175. "dist": {
  6176. "type": "zip",
  6177. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6178. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6179. "shasum": ""
  6180. },
  6181. "require": {
  6182. "laminas/laminas-servicemanager": "^3.4",
  6183. "laminas/laminas-stdlib": "^3.1",
  6184. "laminas/laminas-zendframework-bridge": "^1.0",
  6185. "php": "^7.3 || ~8.0.0"
  6186. },
  6187. "replace": {
  6188. "zendframework/zend-text": "^2.7.1"
  6189. },
  6190. "require-dev": {
  6191. "laminas/laminas-coding-standard": "~1.0.0",
  6192. "laminas/laminas-config": "^3.4",
  6193. "phpunit/phpunit": "^9.3"
  6194. },
  6195. "type": "library",
  6196. "autoload": {
  6197. "psr-4": {
  6198. "Laminas\\Text\\": "src/"
  6199. }
  6200. },
  6201. "notification-url": "https://packagist.org/downloads/",
  6202. "license": [
  6203. "BSD-3-Clause"
  6204. ],
  6205. "description": "Create FIGlets and text-based tables",
  6206. "homepage": "https://laminas.dev",
  6207. "keywords": [
  6208. "laminas",
  6209. "text"
  6210. ],
  6211. "support": {
  6212. "chat": "https://laminas.dev/chat",
  6213. "docs": "https://docs.laminas.dev/laminas-text/",
  6214. "forum": "https://discourse.laminas.dev",
  6215. "issues": "https://github.com/laminas/laminas-text/issues",
  6216. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6217. "source": "https://github.com/laminas/laminas-text"
  6218. },
  6219. "funding": [
  6220. {
  6221. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6222. "type": "community_bridge"
  6223. }
  6224. ],
  6225. "time": "2021-02-17T21:24:58+00:00"
  6226. },
  6227. {
  6228. "name": "laminas/laminas-zendframework-bridge",
  6229. "version": "1.0.4",
  6230. "source": {
  6231. "type": "git",
  6232. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6233. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6234. },
  6235. "dist": {
  6236. "type": "zip",
  6237. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6238. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6239. "shasum": ""
  6240. },
  6241. "require": {
  6242. "php": "^5.6 || ^7.0"
  6243. },
  6244. "require-dev": {
  6245. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6246. "squizlabs/php_codesniffer": "^3.5"
  6247. },
  6248. "type": "library",
  6249. "extra": {
  6250. "branch-alias": {
  6251. "dev-master": "1.0.x-dev",
  6252. "dev-develop": "1.1.x-dev"
  6253. },
  6254. "laminas": {
  6255. "module": "Laminas\\ZendFrameworkBridge"
  6256. }
  6257. },
  6258. "autoload": {
  6259. "files": [
  6260. "src/autoload.php"
  6261. ],
  6262. "psr-4": {
  6263. "Laminas\\ZendFrameworkBridge\\": "src//"
  6264. }
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "BSD-3-Clause"
  6269. ],
  6270. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6271. "keywords": [
  6272. "ZendFramework",
  6273. "autoloading",
  6274. "laminas",
  6275. "zf"
  6276. ],
  6277. "support": {
  6278. "forum": "https://discourse.laminas.dev/",
  6279. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6280. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6281. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6282. },
  6283. "funding": [
  6284. {
  6285. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6286. "type": "community_bridge"
  6287. }
  6288. ],
  6289. "abandoned": true,
  6290. "time": "2020-05-20T16:45:56+00:00"
  6291. },
  6292. {
  6293. "name": "league/container",
  6294. "version": "2.4.1",
  6295. "source": {
  6296. "type": "git",
  6297. "url": "https://github.com/thephpleague/container.git",
  6298. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6299. },
  6300. "dist": {
  6301. "type": "zip",
  6302. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6303. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6304. "shasum": ""
  6305. },
  6306. "require": {
  6307. "container-interop/container-interop": "^1.2",
  6308. "php": "^5.4.0 || ^7.0"
  6309. },
  6310. "provide": {
  6311. "container-interop/container-interop-implementation": "^1.2",
  6312. "psr/container-implementation": "^1.0"
  6313. },
  6314. "replace": {
  6315. "orno/di": "~2.0"
  6316. },
  6317. "require-dev": {
  6318. "phpunit/phpunit": "4.*"
  6319. },
  6320. "type": "library",
  6321. "extra": {
  6322. "branch-alias": {
  6323. "dev-2.x": "2.x-dev",
  6324. "dev-1.x": "1.x-dev"
  6325. }
  6326. },
  6327. "autoload": {
  6328. "psr-4": {
  6329. "League\\Container\\": "src"
  6330. }
  6331. },
  6332. "notification-url": "https://packagist.org/downloads/",
  6333. "license": [
  6334. "MIT"
  6335. ],
  6336. "authors": [
  6337. {
  6338. "name": "Phil Bennett",
  6339. "email": "philipobenito@gmail.com",
  6340. "homepage": "http://www.philipobenito.com",
  6341. "role": "Developer"
  6342. }
  6343. ],
  6344. "description": "A fast and intuitive dependency injection container.",
  6345. "homepage": "https://github.com/thephpleague/container",
  6346. "keywords": [
  6347. "container",
  6348. "dependency",
  6349. "di",
  6350. "injection",
  6351. "league",
  6352. "provider",
  6353. "service"
  6354. ],
  6355. "time": "2017-05-10T09:20:27+00:00"
  6356. },
  6357. {
  6358. "name": "masterminds/html5",
  6359. "version": "2.3.0",
  6360. "source": {
  6361. "type": "git",
  6362. "url": "https://github.com/Masterminds/html5-php.git",
  6363. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6364. },
  6365. "dist": {
  6366. "type": "zip",
  6367. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6368. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6369. "shasum": ""
  6370. },
  6371. "require": {
  6372. "ext-libxml": "*",
  6373. "php": ">=5.3.0"
  6374. },
  6375. "require-dev": {
  6376. "phpunit/phpunit": "4.*",
  6377. "sami/sami": "~2.0",
  6378. "satooshi/php-coveralls": "1.0.*"
  6379. },
  6380. "type": "library",
  6381. "extra": {
  6382. "branch-alias": {
  6383. "dev-master": "2.2-dev"
  6384. }
  6385. },
  6386. "autoload": {
  6387. "psr-4": {
  6388. "Masterminds\\": "src"
  6389. }
  6390. },
  6391. "notification-url": "https://packagist.org/downloads/",
  6392. "license": [
  6393. "MIT"
  6394. ],
  6395. "authors": [
  6396. {
  6397. "name": "Matt Butcher",
  6398. "email": "technosophos@gmail.com"
  6399. },
  6400. {
  6401. "name": "Asmir Mustafic",
  6402. "email": "goetas@gmail.com"
  6403. },
  6404. {
  6405. "name": "Matt Farina",
  6406. "email": "matt@mattfarina.com"
  6407. }
  6408. ],
  6409. "description": "An HTML5 parser and serializer.",
  6410. "homepage": "http://masterminds.github.io/html5-php",
  6411. "keywords": [
  6412. "HTML5",
  6413. "dom",
  6414. "html",
  6415. "parser",
  6416. "querypath",
  6417. "serializer",
  6418. "xml"
  6419. ],
  6420. "support": {
  6421. "issues": "https://github.com/Masterminds/html5-php/issues",
  6422. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6423. },
  6424. "time": "2017-09-04T12:26:28+00:00"
  6425. },
  6426. {
  6427. "name": "mathieuviossat/arraytotexttable",
  6428. "version": "v1.0.8",
  6429. "source": {
  6430. "type": "git",
  6431. "url": "https://github.com/viossat/arraytotexttable.git",
  6432. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6433. },
  6434. "dist": {
  6435. "type": "zip",
  6436. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6437. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6438. "shasum": ""
  6439. },
  6440. "require": {
  6441. "laminas/laminas-text": "^2.7",
  6442. "php": ">=5.3.0"
  6443. },
  6444. "type": "library",
  6445. "autoload": {
  6446. "psr-4": {
  6447. "MathieuViossat\\Util\\": "src/"
  6448. }
  6449. },
  6450. "notification-url": "https://packagist.org/downloads/",
  6451. "license": [
  6452. "MIT"
  6453. ],
  6454. "authors": [
  6455. {
  6456. "name": "Mathieu Viossat",
  6457. "email": "mathieu@viossat.fr",
  6458. "homepage": "https://viossat.fr"
  6459. }
  6460. ],
  6461. "description": "Display arrays in terminal",
  6462. "homepage": "https://github.com/viossat/arraytotexttable",
  6463. "keywords": [
  6464. "array",
  6465. "ascii",
  6466. "table",
  6467. "terminal",
  6468. "text",
  6469. "unicode"
  6470. ],
  6471. "support": {
  6472. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6473. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6474. },
  6475. "time": "2020-06-23T17:14:22+00:00"
  6476. },
  6477. {
  6478. "name": "mglaman/phpstan-drupal",
  6479. "version": "1.2.1",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6483. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6488. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6489. "shasum": ""
  6490. },
  6491. "require": {
  6492. "php": "^7.4 || ^8.0",
  6493. "phpstan/phpstan": "^1.10.1",
  6494. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6495. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6496. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6497. "webflo/drupal-finder": "^1.2"
  6498. },
  6499. "require-dev": {
  6500. "behat/mink": "^1.8",
  6501. "composer/installers": "^1.9",
  6502. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6503. "drush/drush": "^9.6 || ^10.0 || ^11",
  6504. "phpstan/extension-installer": "^1.1",
  6505. "phpstan/phpstan-strict-rules": "^1.0",
  6506. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6507. "slevomat/coding-standard": "^7.1",
  6508. "squizlabs/php_codesniffer": "^3.3",
  6509. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6510. },
  6511. "suggest": {
  6512. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6513. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6514. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6515. },
  6516. "type": "phpstan-extension",
  6517. "extra": {
  6518. "branch-alias": {
  6519. "dev-main": "1.0-dev"
  6520. },
  6521. "installer-paths": {
  6522. "tests/fixtures/drupal/core": [
  6523. "type:drupal-core"
  6524. ],
  6525. "tests/fixtures/drupal/libraries/{$name}": [
  6526. "type:drupal-library"
  6527. ],
  6528. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6529. "type:drupal-module"
  6530. ],
  6531. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6532. "type:drupal-profile"
  6533. ],
  6534. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6535. "type:drupal-theme"
  6536. ]
  6537. },
  6538. "phpstan": {
  6539. "includes": [
  6540. "extension.neon",
  6541. "rules.neon"
  6542. ]
  6543. }
  6544. },
  6545. "autoload": {
  6546. "psr-4": {
  6547. "mglaman\\PHPStanDrupal\\": "src/"
  6548. }
  6549. },
  6550. "notification-url": "https://packagist.org/downloads/",
  6551. "license": [
  6552. "MIT"
  6553. ],
  6554. "authors": [
  6555. {
  6556. "name": "Matt Glaman",
  6557. "email": "nmd.matt@gmail.com"
  6558. }
  6559. ],
  6560. "description": "Drupal extension and rules for PHPStan",
  6561. "support": {
  6562. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6563. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  6564. },
  6565. "funding": [
  6566. {
  6567. "url": "https://github.com/mglaman",
  6568. "type": "github"
  6569. },
  6570. {
  6571. "url": "https://opencollective.com/phpstan-drupal",
  6572. "type": "open_collective"
  6573. },
  6574. {
  6575. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6576. "type": "tidelift"
  6577. }
  6578. ],
  6579. "time": "2023-11-03T13:17:28+00:00"
  6580. },
  6581. {
  6582. "name": "nikic/php-parser",
  6583. "version": "v4.4.0",
  6584. "source": {
  6585. "type": "git",
  6586. "url": "https://github.com/nikic/PHP-Parser.git",
  6587. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6588. },
  6589. "dist": {
  6590. "type": "zip",
  6591. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6592. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6593. "shasum": ""
  6594. },
  6595. "require": {
  6596. "ext-tokenizer": "*",
  6597. "php": ">=7.0"
  6598. },
  6599. "require-dev": {
  6600. "ircmaxell/php-yacc": "0.0.5",
  6601. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6602. },
  6603. "bin": [
  6604. "bin/php-parse"
  6605. ],
  6606. "type": "library",
  6607. "extra": {
  6608. "branch-alias": {
  6609. "dev-master": "4.3-dev"
  6610. }
  6611. },
  6612. "autoload": {
  6613. "psr-4": {
  6614. "PhpParser\\": "lib/PhpParser"
  6615. }
  6616. },
  6617. "notification-url": "https://packagist.org/downloads/",
  6618. "license": [
  6619. "BSD-3-Clause"
  6620. ],
  6621. "authors": [
  6622. {
  6623. "name": "Nikita Popov"
  6624. }
  6625. ],
  6626. "description": "A PHP parser written in PHP",
  6627. "keywords": [
  6628. "parser",
  6629. "php"
  6630. ],
  6631. "time": "2020-04-10T16:34:50+00:00"
  6632. },
  6633. {
  6634. "name": "paragonie/random_compat",
  6635. "version": "v9.99.99",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/paragonie/random_compat.git",
  6639. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6644. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": "^7"
  6649. },
  6650. "require-dev": {
  6651. "phpunit/phpunit": "4.*|5.*",
  6652. "vimeo/psalm": "^1"
  6653. },
  6654. "suggest": {
  6655. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6656. },
  6657. "type": "library",
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "MIT"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "Paragon Initiative Enterprises",
  6665. "email": "security@paragonie.com",
  6666. "homepage": "https://paragonie.com"
  6667. }
  6668. ],
  6669. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6670. "keywords": [
  6671. "csprng",
  6672. "polyfill",
  6673. "pseudorandom",
  6674. "random"
  6675. ],
  6676. "support": {
  6677. "email": "info@paragonie.com",
  6678. "issues": "https://github.com/paragonie/random_compat/issues",
  6679. "source": "https://github.com/paragonie/random_compat"
  6680. },
  6681. "time": "2018-07-02T15:55:56+00:00"
  6682. },
  6683. {
  6684. "name": "pear/archive_tar",
  6685. "version": "1.4.14",
  6686. "source": {
  6687. "type": "git",
  6688. "url": "https://github.com/pear/Archive_Tar.git",
  6689. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6690. },
  6691. "dist": {
  6692. "type": "zip",
  6693. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6694. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6695. "shasum": ""
  6696. },
  6697. "require": {
  6698. "pear/pear-core-minimal": "^1.10.0alpha2",
  6699. "php": ">=5.2.0"
  6700. },
  6701. "require-dev": {
  6702. "phpunit/phpunit": "*"
  6703. },
  6704. "suggest": {
  6705. "ext-bz2": "Bz2 compression support.",
  6706. "ext-xz": "Lzma2 compression support.",
  6707. "ext-zlib": "Gzip compression support."
  6708. },
  6709. "type": "library",
  6710. "extra": {
  6711. "branch-alias": {
  6712. "dev-master": "1.4.x-dev"
  6713. }
  6714. },
  6715. "autoload": {
  6716. "psr-0": {
  6717. "Archive_Tar": ""
  6718. }
  6719. },
  6720. "notification-url": "https://packagist.org/downloads/",
  6721. "include-path": [
  6722. "./"
  6723. ],
  6724. "license": [
  6725. "BSD-3-Clause"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Vincent Blavet",
  6730. "email": "vincent@phpconcept.net"
  6731. },
  6732. {
  6733. "name": "Greg Beaver",
  6734. "email": "greg@chiaraquartet.net"
  6735. },
  6736. {
  6737. "name": "Michiel Rook",
  6738. "email": "mrook@php.net"
  6739. }
  6740. ],
  6741. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6742. "homepage": "https://github.com/pear/Archive_Tar",
  6743. "keywords": [
  6744. "archive",
  6745. "tar"
  6746. ],
  6747. "support": {
  6748. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6749. "source": "https://github.com/pear/Archive_Tar"
  6750. },
  6751. "funding": [
  6752. {
  6753. "url": "https://github.com/mrook",
  6754. "type": "github"
  6755. },
  6756. {
  6757. "url": "https://www.patreon.com/michielrook",
  6758. "type": "patreon"
  6759. }
  6760. ],
  6761. "time": "2021-07-20T13:53:39+00:00"
  6762. },
  6763. {
  6764. "name": "pear/console_getopt",
  6765. "version": "v1.4.3",
  6766. "source": {
  6767. "type": "git",
  6768. "url": "https://github.com/pear/Console_Getopt.git",
  6769. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6770. },
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6774. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6775. "shasum": ""
  6776. },
  6777. "type": "library",
  6778. "autoload": {
  6779. "psr-0": {
  6780. "Console": "./"
  6781. }
  6782. },
  6783. "notification-url": "https://packagist.org/downloads/",
  6784. "include-path": [
  6785. "./"
  6786. ],
  6787. "license": [
  6788. "BSD-2-Clause"
  6789. ],
  6790. "authors": [
  6791. {
  6792. "name": "Andrei Zmievski",
  6793. "email": "andrei@php.net",
  6794. "role": "Lead"
  6795. },
  6796. {
  6797. "name": "Stig Bakken",
  6798. "email": "stig@php.net",
  6799. "role": "Developer"
  6800. },
  6801. {
  6802. "name": "Greg Beaver",
  6803. "email": "cellog@php.net",
  6804. "role": "Helper"
  6805. }
  6806. ],
  6807. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6808. "support": {
  6809. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6810. "source": "https://github.com/pear/Console_Getopt"
  6811. },
  6812. "time": "2019-11-20T18:27:48+00:00"
  6813. },
  6814. {
  6815. "name": "pear/pear-core-minimal",
  6816. "version": "v1.10.10",
  6817. "source": {
  6818. "type": "git",
  6819. "url": "https://github.com/pear/pear-core-minimal.git",
  6820. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  6821. },
  6822. "dist": {
  6823. "type": "zip",
  6824. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  6825. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  6826. "shasum": ""
  6827. },
  6828. "require": {
  6829. "pear/console_getopt": "~1.4",
  6830. "pear/pear_exception": "~1.0"
  6831. },
  6832. "replace": {
  6833. "rsky/pear-core-min": "self.version"
  6834. },
  6835. "type": "library",
  6836. "autoload": {
  6837. "psr-0": {
  6838. "": "src/"
  6839. }
  6840. },
  6841. "notification-url": "https://packagist.org/downloads/",
  6842. "include-path": [
  6843. "src/"
  6844. ],
  6845. "license": [
  6846. "BSD-3-Clause"
  6847. ],
  6848. "authors": [
  6849. {
  6850. "name": "Christian Weiske",
  6851. "email": "cweiske@php.net",
  6852. "role": "Lead"
  6853. }
  6854. ],
  6855. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6856. "support": {
  6857. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6858. "source": "https://github.com/pear/pear-core-minimal"
  6859. },
  6860. "time": "2019-11-19T19:00:24+00:00"
  6861. },
  6862. {
  6863. "name": "pear/pear_exception",
  6864. "version": "v1.0.1",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://github.com/pear/PEAR_Exception.git",
  6868. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6873. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  6874. "shasum": ""
  6875. },
  6876. "require": {
  6877. "php": ">=4.4.0"
  6878. },
  6879. "require-dev": {
  6880. "phpunit/phpunit": "*"
  6881. },
  6882. "type": "class",
  6883. "extra": {
  6884. "branch-alias": {
  6885. "dev-master": "1.0.x-dev"
  6886. }
  6887. },
  6888. "autoload": {
  6889. "classmap": [
  6890. "PEAR/"
  6891. ]
  6892. },
  6893. "notification-url": "https://packagist.org/downloads/",
  6894. "include-path": [
  6895. "."
  6896. ],
  6897. "license": [
  6898. "BSD-2-Clause"
  6899. ],
  6900. "authors": [
  6901. {
  6902. "name": "Helgi Thormar",
  6903. "email": "dufuz@php.net"
  6904. },
  6905. {
  6906. "name": "Greg Beaver",
  6907. "email": "cellog@php.net"
  6908. }
  6909. ],
  6910. "description": "The PEAR Exception base class.",
  6911. "homepage": "https://github.com/pear/PEAR_Exception",
  6912. "keywords": [
  6913. "exception"
  6914. ],
  6915. "support": {
  6916. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6917. "source": "https://github.com/pear/PEAR_Exception"
  6918. },
  6919. "time": "2019-12-10T10:24:42+00:00"
  6920. },
  6921. {
  6922. "name": "phpstan/phpstan",
  6923. "version": "1.12.3",
  6924. "source": {
  6925. "type": "git",
  6926. "url": "https://github.com/phpstan/phpstan.git",
  6927. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  6928. },
  6929. "dist": {
  6930. "type": "zip",
  6931. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6932. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  6933. "shasum": ""
  6934. },
  6935. "require": {
  6936. "php": "^7.2|^8.0"
  6937. },
  6938. "conflict": {
  6939. "phpstan/phpstan-shim": "*"
  6940. },
  6941. "bin": [
  6942. "phpstan",
  6943. "phpstan.phar"
  6944. ],
  6945. "type": "library",
  6946. "autoload": {
  6947. "files": [
  6948. "bootstrap.php"
  6949. ]
  6950. },
  6951. "notification-url": "https://packagist.org/downloads/",
  6952. "license": [
  6953. "MIT"
  6954. ],
  6955. "description": "PHPStan - PHP Static Analysis Tool",
  6956. "keywords": [
  6957. "dev",
  6958. "static analysis"
  6959. ],
  6960. "support": {
  6961. "docs": "https://phpstan.org/user-guide/getting-started",
  6962. "forum": "https://github.com/phpstan/phpstan/discussions",
  6963. "issues": "https://github.com/phpstan/phpstan/issues",
  6964. "security": "https://github.com/phpstan/phpstan/security/policy",
  6965. "source": "https://github.com/phpstan/phpstan-src"
  6966. },
  6967. "funding": [
  6968. {
  6969. "url": "https://github.com/ondrejmirtes",
  6970. "type": "github"
  6971. },
  6972. {
  6973. "url": "https://github.com/phpstan",
  6974. "type": "github"
  6975. }
  6976. ],
  6977. "time": "2024-09-09T08:10:35+00:00"
  6978. },
  6979. {
  6980. "name": "phpstan/phpstan-deprecation-rules",
  6981. "version": "1.2.1",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6985. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6990. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  6991. "shasum": ""
  6992. },
  6993. "require": {
  6994. "php": "^7.2 || ^8.0",
  6995. "phpstan/phpstan": "^1.12"
  6996. },
  6997. "require-dev": {
  6998. "php-parallel-lint/php-parallel-lint": "^1.2",
  6999. "phpstan/phpstan-phpunit": "^1.0",
  7000. "phpunit/phpunit": "^9.5"
  7001. },
  7002. "type": "phpstan-extension",
  7003. "extra": {
  7004. "phpstan": {
  7005. "includes": [
  7006. "rules.neon"
  7007. ]
  7008. }
  7009. },
  7010. "autoload": {
  7011. "psr-4": {
  7012. "PHPStan\\": "src/"
  7013. }
  7014. },
  7015. "notification-url": "https://packagist.org/downloads/",
  7016. "license": [
  7017. "MIT"
  7018. ],
  7019. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7020. "support": {
  7021. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7022. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7023. },
  7024. "time": "2024-09-11T15:52:35+00:00"
  7025. },
  7026. {
  7027. "name": "psr/container",
  7028. "version": "1.0.0",
  7029. "source": {
  7030. "type": "git",
  7031. "url": "https://github.com/php-fig/container.git",
  7032. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7033. },
  7034. "dist": {
  7035. "type": "zip",
  7036. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7037. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7038. "shasum": ""
  7039. },
  7040. "require": {
  7041. "php": ">=5.3.0"
  7042. },
  7043. "type": "library",
  7044. "extra": {
  7045. "branch-alias": {
  7046. "dev-master": "1.0.x-dev"
  7047. }
  7048. },
  7049. "autoload": {
  7050. "psr-4": {
  7051. "Psr\\Container\\": "src/"
  7052. }
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "MIT"
  7057. ],
  7058. "authors": [
  7059. {
  7060. "name": "PHP-FIG",
  7061. "homepage": "http://www.php-fig.org/"
  7062. }
  7063. ],
  7064. "description": "Common Container Interface (PHP FIG PSR-11)",
  7065. "homepage": "https://github.com/php-fig/container",
  7066. "keywords": [
  7067. "PSR-11",
  7068. "container",
  7069. "container-interface",
  7070. "container-interop",
  7071. "psr"
  7072. ],
  7073. "support": {
  7074. "issues": "https://github.com/php-fig/container/issues",
  7075. "source": "https://github.com/php-fig/container/tree/master"
  7076. },
  7077. "time": "2017-02-14T16:28:37+00:00"
  7078. },
  7079. {
  7080. "name": "psr/http-message",
  7081. "version": "1.0.1",
  7082. "source": {
  7083. "type": "git",
  7084. "url": "https://github.com/php-fig/http-message.git",
  7085. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7086. },
  7087. "dist": {
  7088. "type": "zip",
  7089. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7090. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7091. "shasum": ""
  7092. },
  7093. "require": {
  7094. "php": ">=5.3.0"
  7095. },
  7096. "type": "library",
  7097. "extra": {
  7098. "branch-alias": {
  7099. "dev-master": "1.0.x-dev"
  7100. }
  7101. },
  7102. "autoload": {
  7103. "psr-4": {
  7104. "Psr\\Http\\Message\\": "src/"
  7105. }
  7106. },
  7107. "notification-url": "https://packagist.org/downloads/",
  7108. "license": [
  7109. "MIT"
  7110. ],
  7111. "authors": [
  7112. {
  7113. "name": "PHP-FIG",
  7114. "homepage": "http://www.php-fig.org/"
  7115. }
  7116. ],
  7117. "description": "Common interface for HTTP messages",
  7118. "homepage": "https://github.com/php-fig/http-message",
  7119. "keywords": [
  7120. "http",
  7121. "http-message",
  7122. "psr",
  7123. "psr-7",
  7124. "request",
  7125. "response"
  7126. ],
  7127. "support": {
  7128. "source": "https://github.com/php-fig/http-message/tree/master"
  7129. },
  7130. "time": "2016-08-06T14:39:51+00:00"
  7131. },
  7132. {
  7133. "name": "psr/log",
  7134. "version": "1.1.3",
  7135. "source": {
  7136. "type": "git",
  7137. "url": "https://github.com/php-fig/log.git",
  7138. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7139. },
  7140. "dist": {
  7141. "type": "zip",
  7142. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7143. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7144. "shasum": ""
  7145. },
  7146. "require": {
  7147. "php": ">=5.3.0"
  7148. },
  7149. "type": "library",
  7150. "extra": {
  7151. "branch-alias": {
  7152. "dev-master": "1.1.x-dev"
  7153. }
  7154. },
  7155. "autoload": {
  7156. "psr-4": {
  7157. "Psr\\Log\\": "Psr/Log/"
  7158. }
  7159. },
  7160. "notification-url": "https://packagist.org/downloads/",
  7161. "license": [
  7162. "MIT"
  7163. ],
  7164. "authors": [
  7165. {
  7166. "name": "PHP-FIG",
  7167. "homepage": "http://www.php-fig.org/"
  7168. }
  7169. ],
  7170. "description": "Common interface for logging libraries",
  7171. "homepage": "https://github.com/php-fig/log",
  7172. "keywords": [
  7173. "log",
  7174. "psr",
  7175. "psr-3"
  7176. ],
  7177. "support": {
  7178. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7179. },
  7180. "time": "2020-03-23T09:12:05+00:00"
  7181. },
  7182. {
  7183. "name": "psy/psysh",
  7184. "version": "v0.10.4",
  7185. "source": {
  7186. "type": "git",
  7187. "url": "https://github.com/bobthecow/psysh.git",
  7188. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7189. },
  7190. "dist": {
  7191. "type": "zip",
  7192. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7193. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7194. "shasum": ""
  7195. },
  7196. "require": {
  7197. "dnoegel/php-xdg-base-dir": "0.1.*",
  7198. "ext-json": "*",
  7199. "ext-tokenizer": "*",
  7200. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7201. "php": "^8.0 || ^7.0 || ^5.5.9",
  7202. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7203. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7204. },
  7205. "require-dev": {
  7206. "bamarni/composer-bin-plugin": "^1.2",
  7207. "hoa/console": "3.17.*"
  7208. },
  7209. "suggest": {
  7210. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7211. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7212. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7213. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7214. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7215. },
  7216. "bin": [
  7217. "bin/psysh"
  7218. ],
  7219. "type": "library",
  7220. "extra": {
  7221. "branch-alias": {
  7222. "dev-master": "0.10.x-dev"
  7223. }
  7224. },
  7225. "autoload": {
  7226. "files": [
  7227. "src/functions.php"
  7228. ],
  7229. "psr-4": {
  7230. "Psy\\": "src/"
  7231. }
  7232. },
  7233. "notification-url": "https://packagist.org/downloads/",
  7234. "license": [
  7235. "MIT"
  7236. ],
  7237. "authors": [
  7238. {
  7239. "name": "Justin Hileman",
  7240. "email": "justin@justinhileman.info",
  7241. "homepage": "http://justinhileman.com"
  7242. }
  7243. ],
  7244. "description": "An interactive shell for modern PHP.",
  7245. "homepage": "http://psysh.org",
  7246. "keywords": [
  7247. "REPL",
  7248. "console",
  7249. "interactive",
  7250. "shell"
  7251. ],
  7252. "time": "2020-05-03T19:32:03+00:00"
  7253. },
  7254. {
  7255. "name": "ralouphie/getallheaders",
  7256. "version": "3.0.3",
  7257. "source": {
  7258. "type": "git",
  7259. "url": "https://github.com/ralouphie/getallheaders.git",
  7260. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7261. },
  7262. "dist": {
  7263. "type": "zip",
  7264. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7265. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7266. "shasum": ""
  7267. },
  7268. "require": {
  7269. "php": ">=5.6"
  7270. },
  7271. "require-dev": {
  7272. "php-coveralls/php-coveralls": "^2.1",
  7273. "phpunit/phpunit": "^5 || ^6.5"
  7274. },
  7275. "type": "library",
  7276. "autoload": {
  7277. "files": [
  7278. "src/getallheaders.php"
  7279. ]
  7280. },
  7281. "notification-url": "https://packagist.org/downloads/",
  7282. "license": [
  7283. "MIT"
  7284. ],
  7285. "authors": [
  7286. {
  7287. "name": "Ralph Khattar",
  7288. "email": "ralph.khattar@gmail.com"
  7289. }
  7290. ],
  7291. "description": "A polyfill for getallheaders.",
  7292. "support": {
  7293. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7294. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7295. },
  7296. "time": "2019-03-08T08:55:37+00:00"
  7297. },
  7298. {
  7299. "name": "stack/builder",
  7300. "version": "v1.0.5",
  7301. "source": {
  7302. "type": "git",
  7303. "url": "https://github.com/stackphp/builder.git",
  7304. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7305. },
  7306. "dist": {
  7307. "type": "zip",
  7308. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7309. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7310. "shasum": ""
  7311. },
  7312. "require": {
  7313. "php": ">=5.3.0",
  7314. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7315. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7316. },
  7317. "require-dev": {
  7318. "silex/silex": "~1.0"
  7319. },
  7320. "type": "library",
  7321. "extra": {
  7322. "branch-alias": {
  7323. "dev-master": "1.0-dev"
  7324. }
  7325. },
  7326. "autoload": {
  7327. "psr-0": {
  7328. "Stack": "src"
  7329. }
  7330. },
  7331. "notification-url": "https://packagist.org/downloads/",
  7332. "license": [
  7333. "MIT"
  7334. ],
  7335. "authors": [
  7336. {
  7337. "name": "Igor Wiedler",
  7338. "email": "igor@wiedler.ch"
  7339. }
  7340. ],
  7341. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7342. "keywords": [
  7343. "stack"
  7344. ],
  7345. "support": {
  7346. "issues": "https://github.com/stackphp/builder/issues",
  7347. "source": "https://github.com/stackphp/builder/tree/master"
  7348. },
  7349. "abandoned": true,
  7350. "time": "2017-11-18T14:57:29+00:00"
  7351. },
  7352. {
  7353. "name": "symfony-cmf/routing",
  7354. "version": "1.4.1",
  7355. "source": {
  7356. "type": "git",
  7357. "url": "https://github.com/symfony-cmf/routing.git",
  7358. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7359. },
  7360. "dist": {
  7361. "type": "zip",
  7362. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7363. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7364. "shasum": ""
  7365. },
  7366. "require": {
  7367. "php": "^5.3.9|^7.0",
  7368. "psr/log": "1.*",
  7369. "symfony/http-kernel": "^2.2|3.*",
  7370. "symfony/routing": "^2.2|3.*"
  7371. },
  7372. "require-dev": {
  7373. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7374. "symfony-cmf/testing": "^1.3",
  7375. "symfony/config": "^2.2|3.*",
  7376. "symfony/dependency-injection": "^2.0.5|3.*",
  7377. "symfony/event-dispatcher": "^2.1|3.*"
  7378. },
  7379. "suggest": {
  7380. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7381. },
  7382. "type": "library",
  7383. "extra": {
  7384. "branch-alias": {
  7385. "dev-master": "1.4-dev"
  7386. }
  7387. },
  7388. "autoload": {
  7389. "psr-4": {
  7390. "Symfony\\Cmf\\Component\\Routing\\": ""
  7391. }
  7392. },
  7393. "notification-url": "https://packagist.org/downloads/",
  7394. "license": [
  7395. "MIT"
  7396. ],
  7397. "authors": [
  7398. {
  7399. "name": "Symfony CMF Community",
  7400. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7401. }
  7402. ],
  7403. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7404. "homepage": "http://cmf.symfony.com",
  7405. "keywords": [
  7406. "database",
  7407. "routing"
  7408. ],
  7409. "support": {
  7410. "issues": "https://github.com/symfony-cmf/routing/issues",
  7411. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7412. },
  7413. "time": "2017-05-09T08:10:41+00:00"
  7414. },
  7415. {
  7416. "name": "symfony/class-loader",
  7417. "version": "v3.4.41",
  7418. "source": {
  7419. "type": "git",
  7420. "url": "https://github.com/symfony/class-loader.git",
  7421. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7422. },
  7423. "dist": {
  7424. "type": "zip",
  7425. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7426. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7427. "shasum": ""
  7428. },
  7429. "require": {
  7430. "php": "^5.5.9|>=7.0.8"
  7431. },
  7432. "require-dev": {
  7433. "symfony/finder": "~2.8|~3.0|~4.0",
  7434. "symfony/polyfill-apcu": "~1.1"
  7435. },
  7436. "suggest": {
  7437. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7438. },
  7439. "type": "library",
  7440. "extra": {
  7441. "branch-alias": {
  7442. "dev-master": "3.4-dev"
  7443. }
  7444. },
  7445. "autoload": {
  7446. "psr-4": {
  7447. "Symfony\\Component\\ClassLoader\\": ""
  7448. },
  7449. "exclude-from-classmap": [
  7450. "/Tests/"
  7451. ]
  7452. },
  7453. "notification-url": "https://packagist.org/downloads/",
  7454. "license": [
  7455. "MIT"
  7456. ],
  7457. "authors": [
  7458. {
  7459. "name": "Fabien Potencier",
  7460. "email": "fabien@symfony.com"
  7461. },
  7462. {
  7463. "name": "Symfony Community",
  7464. "homepage": "https://symfony.com/contributors"
  7465. }
  7466. ],
  7467. "description": "Symfony ClassLoader Component",
  7468. "homepage": "https://symfony.com",
  7469. "support": {
  7470. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7471. },
  7472. "funding": [
  7473. {
  7474. "url": "https://symfony.com/sponsor",
  7475. "type": "custom"
  7476. },
  7477. {
  7478. "url": "https://github.com/fabpot",
  7479. "type": "github"
  7480. },
  7481. {
  7482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7483. "type": "tidelift"
  7484. }
  7485. ],
  7486. "abandoned": true,
  7487. "time": "2020-03-15T09:38:08+00:00"
  7488. },
  7489. {
  7490. "name": "symfony/console",
  7491. "version": "v3.4.41",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://github.com/symfony/console.git",
  7495. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7500. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7501. "shasum": ""
  7502. },
  7503. "require": {
  7504. "php": "^5.5.9|>=7.0.8",
  7505. "symfony/debug": "~2.8|~3.0|~4.0",
  7506. "symfony/polyfill-mbstring": "~1.0"
  7507. },
  7508. "conflict": {
  7509. "symfony/dependency-injection": "<3.4",
  7510. "symfony/process": "<3.3"
  7511. },
  7512. "provide": {
  7513. "psr/log-implementation": "1.0"
  7514. },
  7515. "require-dev": {
  7516. "psr/log": "~1.0",
  7517. "symfony/config": "~3.3|~4.0",
  7518. "symfony/dependency-injection": "~3.4|~4.0",
  7519. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7520. "symfony/lock": "~3.4|~4.0",
  7521. "symfony/process": "~3.3|~4.0"
  7522. },
  7523. "suggest": {
  7524. "psr/log": "For using the console logger",
  7525. "symfony/event-dispatcher": "",
  7526. "symfony/lock": "",
  7527. "symfony/process": ""
  7528. },
  7529. "type": "library",
  7530. "extra": {
  7531. "branch-alias": {
  7532. "dev-master": "3.4-dev"
  7533. }
  7534. },
  7535. "autoload": {
  7536. "psr-4": {
  7537. "Symfony\\Component\\Console\\": ""
  7538. },
  7539. "exclude-from-classmap": [
  7540. "/Tests/"
  7541. ]
  7542. },
  7543. "notification-url": "https://packagist.org/downloads/",
  7544. "license": [
  7545. "MIT"
  7546. ],
  7547. "authors": [
  7548. {
  7549. "name": "Fabien Potencier",
  7550. "email": "fabien@symfony.com"
  7551. },
  7552. {
  7553. "name": "Symfony Community",
  7554. "homepage": "https://symfony.com/contributors"
  7555. }
  7556. ],
  7557. "description": "Symfony Console Component",
  7558. "homepage": "https://symfony.com",
  7559. "support": {
  7560. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7561. },
  7562. "funding": [
  7563. {
  7564. "url": "https://symfony.com/sponsor",
  7565. "type": "custom"
  7566. },
  7567. {
  7568. "url": "https://github.com/fabpot",
  7569. "type": "github"
  7570. },
  7571. {
  7572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7573. "type": "tidelift"
  7574. }
  7575. ],
  7576. "time": "2020-05-30T18:58:05+00:00"
  7577. },
  7578. {
  7579. "name": "symfony/debug",
  7580. "version": "v3.4.41",
  7581. "source": {
  7582. "type": "git",
  7583. "url": "https://github.com/symfony/debug.git",
  7584. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7585. },
  7586. "dist": {
  7587. "type": "zip",
  7588. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7589. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7590. "shasum": ""
  7591. },
  7592. "require": {
  7593. "php": "^5.5.9|>=7.0.8",
  7594. "psr/log": "~1.0"
  7595. },
  7596. "conflict": {
  7597. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7598. },
  7599. "require-dev": {
  7600. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7601. },
  7602. "type": "library",
  7603. "extra": {
  7604. "branch-alias": {
  7605. "dev-master": "3.4-dev"
  7606. }
  7607. },
  7608. "autoload": {
  7609. "psr-4": {
  7610. "Symfony\\Component\\Debug\\": ""
  7611. },
  7612. "exclude-from-classmap": [
  7613. "/Tests/"
  7614. ]
  7615. },
  7616. "notification-url": "https://packagist.org/downloads/",
  7617. "license": [
  7618. "MIT"
  7619. ],
  7620. "authors": [
  7621. {
  7622. "name": "Fabien Potencier",
  7623. "email": "fabien@symfony.com"
  7624. },
  7625. {
  7626. "name": "Symfony Community",
  7627. "homepage": "https://symfony.com/contributors"
  7628. }
  7629. ],
  7630. "description": "Symfony Debug Component",
  7631. "homepage": "https://symfony.com",
  7632. "support": {
  7633. "source": "https://github.com/symfony/debug/tree/3.4"
  7634. },
  7635. "funding": [
  7636. {
  7637. "url": "https://symfony.com/sponsor",
  7638. "type": "custom"
  7639. },
  7640. {
  7641. "url": "https://github.com/fabpot",
  7642. "type": "github"
  7643. },
  7644. {
  7645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7646. "type": "tidelift"
  7647. }
  7648. ],
  7649. "abandoned": "symfony/error-handler",
  7650. "time": "2020-05-22T18:25:20+00:00"
  7651. },
  7652. {
  7653. "name": "symfony/dependency-injection",
  7654. "version": "v3.4.41",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/symfony/dependency-injection.git",
  7658. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7663. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7664. "shasum": ""
  7665. },
  7666. "require": {
  7667. "php": "^5.5.9|>=7.0.8",
  7668. "psr/container": "^1.0"
  7669. },
  7670. "conflict": {
  7671. "symfony/config": "<3.3.7",
  7672. "symfony/finder": "<3.3",
  7673. "symfony/proxy-manager-bridge": "<3.4",
  7674. "symfony/yaml": "<3.4"
  7675. },
  7676. "provide": {
  7677. "psr/container-implementation": "1.0"
  7678. },
  7679. "require-dev": {
  7680. "symfony/config": "~3.3|~4.0",
  7681. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7682. "symfony/yaml": "~3.4|~4.0"
  7683. },
  7684. "suggest": {
  7685. "symfony/config": "",
  7686. "symfony/expression-language": "For using expressions in service container configuration",
  7687. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7688. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7689. "symfony/yaml": ""
  7690. },
  7691. "type": "library",
  7692. "extra": {
  7693. "branch-alias": {
  7694. "dev-master": "3.4-dev"
  7695. }
  7696. },
  7697. "autoload": {
  7698. "psr-4": {
  7699. "Symfony\\Component\\DependencyInjection\\": ""
  7700. },
  7701. "exclude-from-classmap": [
  7702. "/Tests/"
  7703. ]
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "MIT"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Fabien Potencier",
  7712. "email": "fabien@symfony.com"
  7713. },
  7714. {
  7715. "name": "Symfony Community",
  7716. "homepage": "https://symfony.com/contributors"
  7717. }
  7718. ],
  7719. "description": "Symfony DependencyInjection Component",
  7720. "homepage": "https://symfony.com",
  7721. "support": {
  7722. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  7723. },
  7724. "funding": [
  7725. {
  7726. "url": "https://symfony.com/sponsor",
  7727. "type": "custom"
  7728. },
  7729. {
  7730. "url": "https://github.com/fabpot",
  7731. "type": "github"
  7732. },
  7733. {
  7734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7735. "type": "tidelift"
  7736. }
  7737. ],
  7738. "time": "2020-05-30T21:06:01+00:00"
  7739. },
  7740. {
  7741. "name": "symfony/event-dispatcher",
  7742. "version": "v3.4.41",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/symfony/event-dispatcher.git",
  7746. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7751. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7752. "shasum": ""
  7753. },
  7754. "require": {
  7755. "php": "^5.5.9|>=7.0.8"
  7756. },
  7757. "conflict": {
  7758. "symfony/dependency-injection": "<3.3"
  7759. },
  7760. "require-dev": {
  7761. "psr/log": "~1.0",
  7762. "symfony/config": "~2.8|~3.0|~4.0",
  7763. "symfony/dependency-injection": "~3.3|~4.0",
  7764. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7765. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7766. },
  7767. "suggest": {
  7768. "symfony/dependency-injection": "",
  7769. "symfony/http-kernel": ""
  7770. },
  7771. "type": "library",
  7772. "extra": {
  7773. "branch-alias": {
  7774. "dev-master": "3.4-dev"
  7775. }
  7776. },
  7777. "autoload": {
  7778. "psr-4": {
  7779. "Symfony\\Component\\EventDispatcher\\": ""
  7780. },
  7781. "exclude-from-classmap": [
  7782. "/Tests/"
  7783. ]
  7784. },
  7785. "notification-url": "https://packagist.org/downloads/",
  7786. "license": [
  7787. "MIT"
  7788. ],
  7789. "authors": [
  7790. {
  7791. "name": "Fabien Potencier",
  7792. "email": "fabien@symfony.com"
  7793. },
  7794. {
  7795. "name": "Symfony Community",
  7796. "homepage": "https://symfony.com/contributors"
  7797. }
  7798. ],
  7799. "description": "Symfony EventDispatcher Component",
  7800. "homepage": "https://symfony.com",
  7801. "support": {
  7802. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  7803. },
  7804. "funding": [
  7805. {
  7806. "url": "https://symfony.com/sponsor",
  7807. "type": "custom"
  7808. },
  7809. {
  7810. "url": "https://github.com/fabpot",
  7811. "type": "github"
  7812. },
  7813. {
  7814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7815. "type": "tidelift"
  7816. }
  7817. ],
  7818. "time": "2020-05-05T15:06:23+00:00"
  7819. },
  7820. {
  7821. "name": "symfony/filesystem",
  7822. "version": "v4.4.42",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/symfony/filesystem.git",
  7826. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  7831. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  7832. "shasum": ""
  7833. },
  7834. "require": {
  7835. "php": ">=7.1.3",
  7836. "symfony/polyfill-ctype": "~1.8",
  7837. "symfony/polyfill-php80": "^1.16"
  7838. },
  7839. "type": "library",
  7840. "autoload": {
  7841. "psr-4": {
  7842. "Symfony\\Component\\Filesystem\\": ""
  7843. },
  7844. "exclude-from-classmap": [
  7845. "/Tests/"
  7846. ]
  7847. },
  7848. "notification-url": "https://packagist.org/downloads/",
  7849. "license": [
  7850. "MIT"
  7851. ],
  7852. "authors": [
  7853. {
  7854. "name": "Fabien Potencier",
  7855. "email": "fabien@symfony.com"
  7856. },
  7857. {
  7858. "name": "Symfony Community",
  7859. "homepage": "https://symfony.com/contributors"
  7860. }
  7861. ],
  7862. "description": "Provides basic utilities for the filesystem",
  7863. "homepage": "https://symfony.com",
  7864. "support": {
  7865. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  7866. },
  7867. "funding": [
  7868. {
  7869. "url": "https://symfony.com/sponsor",
  7870. "type": "custom"
  7871. },
  7872. {
  7873. "url": "https://github.com/fabpot",
  7874. "type": "github"
  7875. },
  7876. {
  7877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7878. "type": "tidelift"
  7879. }
  7880. ],
  7881. "time": "2022-05-20T08:49:14+00:00"
  7882. },
  7883. {
  7884. "name": "symfony/finder",
  7885. "version": "v4.4.44",
  7886. "source": {
  7887. "type": "git",
  7888. "url": "https://github.com/symfony/finder.git",
  7889. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  7890. },
  7891. "dist": {
  7892. "type": "zip",
  7893. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  7894. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  7895. "shasum": ""
  7896. },
  7897. "require": {
  7898. "php": ">=7.1.3",
  7899. "symfony/polyfill-php80": "^1.16"
  7900. },
  7901. "type": "library",
  7902. "autoload": {
  7903. "psr-4": {
  7904. "Symfony\\Component\\Finder\\": ""
  7905. },
  7906. "exclude-from-classmap": [
  7907. "/Tests/"
  7908. ]
  7909. },
  7910. "notification-url": "https://packagist.org/downloads/",
  7911. "license": [
  7912. "MIT"
  7913. ],
  7914. "authors": [
  7915. {
  7916. "name": "Fabien Potencier",
  7917. "email": "fabien@symfony.com"
  7918. },
  7919. {
  7920. "name": "Symfony Community",
  7921. "homepage": "https://symfony.com/contributors"
  7922. }
  7923. ],
  7924. "description": "Finds files and directories via an intuitive fluent interface",
  7925. "homepage": "https://symfony.com",
  7926. "support": {
  7927. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://symfony.com/sponsor",
  7932. "type": "custom"
  7933. },
  7934. {
  7935. "url": "https://github.com/fabpot",
  7936. "type": "github"
  7937. },
  7938. {
  7939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7940. "type": "tidelift"
  7941. }
  7942. ],
  7943. "time": "2022-07-29T07:35:46+00:00"
  7944. },
  7945. {
  7946. "name": "symfony/http-foundation",
  7947. "version": "v3.4.41",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/symfony/http-foundation.git",
  7951. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7956. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  7957. "shasum": ""
  7958. },
  7959. "require": {
  7960. "php": "^5.5.9|>=7.0.8",
  7961. "symfony/polyfill-mbstring": "~1.1",
  7962. "symfony/polyfill-php70": "~1.6"
  7963. },
  7964. "require-dev": {
  7965. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7966. },
  7967. "type": "library",
  7968. "extra": {
  7969. "branch-alias": {
  7970. "dev-master": "3.4-dev"
  7971. }
  7972. },
  7973. "autoload": {
  7974. "psr-4": {
  7975. "Symfony\\Component\\HttpFoundation\\": ""
  7976. },
  7977. "exclude-from-classmap": [
  7978. "/Tests/"
  7979. ]
  7980. },
  7981. "notification-url": "https://packagist.org/downloads/",
  7982. "license": [
  7983. "MIT"
  7984. ],
  7985. "authors": [
  7986. {
  7987. "name": "Fabien Potencier",
  7988. "email": "fabien@symfony.com"
  7989. },
  7990. {
  7991. "name": "Symfony Community",
  7992. "homepage": "https://symfony.com/contributors"
  7993. }
  7994. ],
  7995. "description": "Symfony HttpFoundation Component",
  7996. "homepage": "https://symfony.com",
  7997. "support": {
  7998. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  7999. },
  8000. "funding": [
  8001. {
  8002. "url": "https://symfony.com/sponsor",
  8003. "type": "custom"
  8004. },
  8005. {
  8006. "url": "https://github.com/fabpot",
  8007. "type": "github"
  8008. },
  8009. {
  8010. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8011. "type": "tidelift"
  8012. }
  8013. ],
  8014. "time": "2020-05-16T13:15:54+00:00"
  8015. },
  8016. {
  8017. "name": "symfony/http-kernel",
  8018. "version": "v3.4.44",
  8019. "source": {
  8020. "type": "git",
  8021. "url": "https://github.com/symfony/http-kernel.git",
  8022. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8023. },
  8024. "dist": {
  8025. "type": "zip",
  8026. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8027. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8028. "shasum": ""
  8029. },
  8030. "require": {
  8031. "php": "^5.5.9|>=7.0.8",
  8032. "psr/log": "~1.0",
  8033. "symfony/debug": "^3.3.3|~4.0",
  8034. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8035. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8036. "symfony/polyfill-ctype": "~1.8",
  8037. "symfony/polyfill-php56": "~1.8"
  8038. },
  8039. "conflict": {
  8040. "symfony/config": "<2.8",
  8041. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8042. "symfony/var-dumper": "<3.3",
  8043. "twig/twig": "<1.34|<2.4,>=2"
  8044. },
  8045. "provide": {
  8046. "psr/log-implementation": "1.0"
  8047. },
  8048. "require-dev": {
  8049. "psr/cache": "~1.0",
  8050. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8051. "symfony/class-loader": "~2.8|~3.0",
  8052. "symfony/config": "~2.8|~3.0|~4.0",
  8053. "symfony/console": "~2.8|~3.0|~4.0",
  8054. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8055. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8056. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8057. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8058. "symfony/finder": "~2.8|~3.0|~4.0",
  8059. "symfony/process": "~2.8|~3.0|~4.0",
  8060. "symfony/routing": "~3.4|~4.0",
  8061. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8062. "symfony/templating": "~2.8|~3.0|~4.0",
  8063. "symfony/translation": "~2.8|~3.0|~4.0",
  8064. "symfony/var-dumper": "~3.3|~4.0"
  8065. },
  8066. "suggest": {
  8067. "symfony/browser-kit": "",
  8068. "symfony/config": "",
  8069. "symfony/console": "",
  8070. "symfony/dependency-injection": "",
  8071. "symfony/finder": "",
  8072. "symfony/var-dumper": ""
  8073. },
  8074. "type": "library",
  8075. "extra": {
  8076. "branch-alias": {
  8077. "dev-master": "3.4-dev"
  8078. }
  8079. },
  8080. "autoload": {
  8081. "psr-4": {
  8082. "Symfony\\Component\\HttpKernel\\": ""
  8083. },
  8084. "exclude-from-classmap": [
  8085. "/Tests/"
  8086. ]
  8087. },
  8088. "notification-url": "https://packagist.org/downloads/",
  8089. "license": [
  8090. "MIT"
  8091. ],
  8092. "authors": [
  8093. {
  8094. "name": "Fabien Potencier",
  8095. "email": "fabien@symfony.com"
  8096. },
  8097. {
  8098. "name": "Symfony Community",
  8099. "homepage": "https://symfony.com/contributors"
  8100. }
  8101. ],
  8102. "description": "Symfony HttpKernel Component",
  8103. "homepage": "https://symfony.com",
  8104. "support": {
  8105. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8106. },
  8107. "funding": [
  8108. {
  8109. "url": "https://symfony.com/sponsor",
  8110. "type": "custom"
  8111. },
  8112. {
  8113. "url": "https://github.com/fabpot",
  8114. "type": "github"
  8115. },
  8116. {
  8117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8118. "type": "tidelift"
  8119. }
  8120. ],
  8121. "time": "2020-08-31T05:53:42+00:00"
  8122. },
  8123. {
  8124. "name": "symfony/polyfill-ctype",
  8125. "version": "v1.17.0",
  8126. "source": {
  8127. "type": "git",
  8128. "url": "https://github.com/symfony/polyfill-ctype.git",
  8129. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8130. },
  8131. "dist": {
  8132. "type": "zip",
  8133. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8134. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8135. "shasum": ""
  8136. },
  8137. "require": {
  8138. "php": ">=5.3.3"
  8139. },
  8140. "suggest": {
  8141. "ext-ctype": "For best performance"
  8142. },
  8143. "type": "library",
  8144. "extra": {
  8145. "branch-alias": {
  8146. "dev-master": "1.17-dev"
  8147. }
  8148. },
  8149. "autoload": {
  8150. "files": [
  8151. "bootstrap.php"
  8152. ],
  8153. "psr-4": {
  8154. "Symfony\\Polyfill\\Ctype\\": ""
  8155. }
  8156. },
  8157. "notification-url": "https://packagist.org/downloads/",
  8158. "license": [
  8159. "MIT"
  8160. ],
  8161. "authors": [
  8162. {
  8163. "name": "Gert de Pagter",
  8164. "email": "BackEndTea@gmail.com"
  8165. },
  8166. {
  8167. "name": "Symfony Community",
  8168. "homepage": "https://symfony.com/contributors"
  8169. }
  8170. ],
  8171. "description": "Symfony polyfill for ctype functions",
  8172. "homepage": "https://symfony.com",
  8173. "keywords": [
  8174. "compatibility",
  8175. "ctype",
  8176. "polyfill",
  8177. "portable"
  8178. ],
  8179. "support": {
  8180. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8181. },
  8182. "funding": [
  8183. {
  8184. "url": "https://symfony.com/sponsor",
  8185. "type": "custom"
  8186. },
  8187. {
  8188. "url": "https://github.com/fabpot",
  8189. "type": "github"
  8190. },
  8191. {
  8192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8193. "type": "tidelift"
  8194. }
  8195. ],
  8196. "time": "2020-05-12T16:14:59+00:00"
  8197. },
  8198. {
  8199. "name": "symfony/polyfill-iconv",
  8200. "version": "v1.17.0",
  8201. "source": {
  8202. "type": "git",
  8203. "url": "https://github.com/symfony/polyfill-iconv.git",
  8204. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8205. },
  8206. "dist": {
  8207. "type": "zip",
  8208. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8209. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8210. "shasum": ""
  8211. },
  8212. "require": {
  8213. "php": ">=5.3.3"
  8214. },
  8215. "suggest": {
  8216. "ext-iconv": "For best performance"
  8217. },
  8218. "type": "library",
  8219. "extra": {
  8220. "branch-alias": {
  8221. "dev-master": "1.17-dev"
  8222. }
  8223. },
  8224. "autoload": {
  8225. "files": [
  8226. "bootstrap.php"
  8227. ],
  8228. "psr-4": {
  8229. "Symfony\\Polyfill\\Iconv\\": ""
  8230. }
  8231. },
  8232. "notification-url": "https://packagist.org/downloads/",
  8233. "license": [
  8234. "MIT"
  8235. ],
  8236. "authors": [
  8237. {
  8238. "name": "Nicolas Grekas",
  8239. "email": "p@tchwork.com"
  8240. },
  8241. {
  8242. "name": "Symfony Community",
  8243. "homepage": "https://symfony.com/contributors"
  8244. }
  8245. ],
  8246. "description": "Symfony polyfill for the Iconv extension",
  8247. "homepage": "https://symfony.com",
  8248. "keywords": [
  8249. "compatibility",
  8250. "iconv",
  8251. "polyfill",
  8252. "portable",
  8253. "shim"
  8254. ],
  8255. "support": {
  8256. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8257. },
  8258. "funding": [
  8259. {
  8260. "url": "https://symfony.com/sponsor",
  8261. "type": "custom"
  8262. },
  8263. {
  8264. "url": "https://github.com/fabpot",
  8265. "type": "github"
  8266. },
  8267. {
  8268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8269. "type": "tidelift"
  8270. }
  8271. ],
  8272. "time": "2020-05-12T16:47:27+00:00"
  8273. },
  8274. {
  8275. "name": "symfony/polyfill-intl-idn",
  8276. "version": "v1.17.0",
  8277. "source": {
  8278. "type": "git",
  8279. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8280. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8281. },
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8285. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8286. "shasum": ""
  8287. },
  8288. "require": {
  8289. "php": ">=5.3.3",
  8290. "symfony/polyfill-mbstring": "^1.3",
  8291. "symfony/polyfill-php72": "^1.10"
  8292. },
  8293. "suggest": {
  8294. "ext-intl": "For best performance"
  8295. },
  8296. "type": "library",
  8297. "extra": {
  8298. "branch-alias": {
  8299. "dev-master": "1.17-dev"
  8300. }
  8301. },
  8302. "autoload": {
  8303. "files": [
  8304. "bootstrap.php"
  8305. ],
  8306. "psr-4": {
  8307. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8308. }
  8309. },
  8310. "notification-url": "https://packagist.org/downloads/",
  8311. "license": [
  8312. "MIT"
  8313. ],
  8314. "authors": [
  8315. {
  8316. "name": "Laurent Bassin",
  8317. "email": "laurent@bassin.info"
  8318. },
  8319. {
  8320. "name": "Symfony Community",
  8321. "homepage": "https://symfony.com/contributors"
  8322. }
  8323. ],
  8324. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8325. "homepage": "https://symfony.com",
  8326. "keywords": [
  8327. "compatibility",
  8328. "idn",
  8329. "intl",
  8330. "polyfill",
  8331. "portable",
  8332. "shim"
  8333. ],
  8334. "support": {
  8335. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8336. },
  8337. "funding": [
  8338. {
  8339. "url": "https://symfony.com/sponsor",
  8340. "type": "custom"
  8341. },
  8342. {
  8343. "url": "https://github.com/fabpot",
  8344. "type": "github"
  8345. },
  8346. {
  8347. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8348. "type": "tidelift"
  8349. }
  8350. ],
  8351. "time": "2020-05-12T16:47:27+00:00"
  8352. },
  8353. {
  8354. "name": "symfony/polyfill-mbstring",
  8355. "version": "v1.17.0",
  8356. "source": {
  8357. "type": "git",
  8358. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8359. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8360. },
  8361. "dist": {
  8362. "type": "zip",
  8363. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8364. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8365. "shasum": ""
  8366. },
  8367. "require": {
  8368. "php": ">=5.3.3"
  8369. },
  8370. "suggest": {
  8371. "ext-mbstring": "For best performance"
  8372. },
  8373. "type": "library",
  8374. "extra": {
  8375. "branch-alias": {
  8376. "dev-master": "1.17-dev"
  8377. }
  8378. },
  8379. "autoload": {
  8380. "files": [
  8381. "bootstrap.php"
  8382. ],
  8383. "psr-4": {
  8384. "Symfony\\Polyfill\\Mbstring\\": ""
  8385. }
  8386. },
  8387. "notification-url": "https://packagist.org/downloads/",
  8388. "license": [
  8389. "MIT"
  8390. ],
  8391. "authors": [
  8392. {
  8393. "name": "Nicolas Grekas",
  8394. "email": "p@tchwork.com"
  8395. },
  8396. {
  8397. "name": "Symfony Community",
  8398. "homepage": "https://symfony.com/contributors"
  8399. }
  8400. ],
  8401. "description": "Symfony polyfill for the Mbstring extension",
  8402. "homepage": "https://symfony.com",
  8403. "keywords": [
  8404. "compatibility",
  8405. "mbstring",
  8406. "polyfill",
  8407. "portable",
  8408. "shim"
  8409. ],
  8410. "support": {
  8411. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://symfony.com/sponsor",
  8416. "type": "custom"
  8417. },
  8418. {
  8419. "url": "https://github.com/fabpot",
  8420. "type": "github"
  8421. },
  8422. {
  8423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8424. "type": "tidelift"
  8425. }
  8426. ],
  8427. "time": "2020-05-12T16:47:27+00:00"
  8428. },
  8429. {
  8430. "name": "symfony/polyfill-php56",
  8431. "version": "v1.17.0",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/symfony/polyfill-php56.git",
  8435. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8440. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "php": ">=5.3.3",
  8445. "symfony/polyfill-util": "~1.0"
  8446. },
  8447. "type": "library",
  8448. "extra": {
  8449. "branch-alias": {
  8450. "dev-master": "1.17-dev"
  8451. }
  8452. },
  8453. "autoload": {
  8454. "files": [
  8455. "bootstrap.php"
  8456. ],
  8457. "psr-4": {
  8458. "Symfony\\Polyfill\\Php56\\": ""
  8459. }
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "Nicolas Grekas",
  8468. "email": "p@tchwork.com"
  8469. },
  8470. {
  8471. "name": "Symfony Community",
  8472. "homepage": "https://symfony.com/contributors"
  8473. }
  8474. ],
  8475. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8476. "homepage": "https://symfony.com",
  8477. "keywords": [
  8478. "compatibility",
  8479. "polyfill",
  8480. "portable",
  8481. "shim"
  8482. ],
  8483. "support": {
  8484. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8485. },
  8486. "funding": [
  8487. {
  8488. "url": "https://symfony.com/sponsor",
  8489. "type": "custom"
  8490. },
  8491. {
  8492. "url": "https://github.com/fabpot",
  8493. "type": "github"
  8494. },
  8495. {
  8496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8497. "type": "tidelift"
  8498. }
  8499. ],
  8500. "time": "2020-05-12T16:47:27+00:00"
  8501. },
  8502. {
  8503. "name": "symfony/polyfill-php70",
  8504. "version": "v1.17.0",
  8505. "source": {
  8506. "type": "git",
  8507. "url": "https://github.com/symfony/polyfill-php70.git",
  8508. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8509. },
  8510. "dist": {
  8511. "type": "zip",
  8512. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8513. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8514. "shasum": ""
  8515. },
  8516. "require": {
  8517. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8518. "php": ">=5.3.3"
  8519. },
  8520. "type": "library",
  8521. "extra": {
  8522. "branch-alias": {
  8523. "dev-master": "1.17-dev"
  8524. }
  8525. },
  8526. "autoload": {
  8527. "files": [
  8528. "bootstrap.php"
  8529. ],
  8530. "psr-4": {
  8531. "Symfony\\Polyfill\\Php70\\": ""
  8532. },
  8533. "classmap": [
  8534. "Resources/stubs"
  8535. ]
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "MIT"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Nicolas Grekas",
  8544. "email": "p@tchwork.com"
  8545. },
  8546. {
  8547. "name": "Symfony Community",
  8548. "homepage": "https://symfony.com/contributors"
  8549. }
  8550. ],
  8551. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8552. "homepage": "https://symfony.com",
  8553. "keywords": [
  8554. "compatibility",
  8555. "polyfill",
  8556. "portable",
  8557. "shim"
  8558. ],
  8559. "support": {
  8560. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8561. },
  8562. "funding": [
  8563. {
  8564. "url": "https://symfony.com/sponsor",
  8565. "type": "custom"
  8566. },
  8567. {
  8568. "url": "https://github.com/fabpot",
  8569. "type": "github"
  8570. },
  8571. {
  8572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8573. "type": "tidelift"
  8574. }
  8575. ],
  8576. "time": "2020-05-12T16:47:27+00:00"
  8577. },
  8578. {
  8579. "name": "symfony/polyfill-php72",
  8580. "version": "v1.17.0",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/symfony/polyfill-php72.git",
  8584. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8589. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8590. "shasum": ""
  8591. },
  8592. "require": {
  8593. "php": ">=5.3.3"
  8594. },
  8595. "type": "library",
  8596. "extra": {
  8597. "branch-alias": {
  8598. "dev-master": "1.17-dev"
  8599. }
  8600. },
  8601. "autoload": {
  8602. "files": [
  8603. "bootstrap.php"
  8604. ],
  8605. "psr-4": {
  8606. "Symfony\\Polyfill\\Php72\\": ""
  8607. }
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "MIT"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Nicolas Grekas",
  8616. "email": "p@tchwork.com"
  8617. },
  8618. {
  8619. "name": "Symfony Community",
  8620. "homepage": "https://symfony.com/contributors"
  8621. }
  8622. ],
  8623. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8624. "homepage": "https://symfony.com",
  8625. "keywords": [
  8626. "compatibility",
  8627. "polyfill",
  8628. "portable",
  8629. "shim"
  8630. ],
  8631. "support": {
  8632. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  8633. },
  8634. "funding": [
  8635. {
  8636. "url": "https://symfony.com/sponsor",
  8637. "type": "custom"
  8638. },
  8639. {
  8640. "url": "https://github.com/fabpot",
  8641. "type": "github"
  8642. },
  8643. {
  8644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8645. "type": "tidelift"
  8646. }
  8647. ],
  8648. "time": "2020-05-12T16:47:27+00:00"
  8649. },
  8650. {
  8651. "name": "symfony/polyfill-php80",
  8652. "version": "v1.31.0",
  8653. "source": {
  8654. "type": "git",
  8655. "url": "https://github.com/symfony/polyfill-php80.git",
  8656. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8657. },
  8658. "dist": {
  8659. "type": "zip",
  8660. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8661. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8662. "shasum": ""
  8663. },
  8664. "require": {
  8665. "php": ">=7.2"
  8666. },
  8667. "type": "library",
  8668. "extra": {
  8669. "thanks": {
  8670. "name": "symfony/polyfill",
  8671. "url": "https://github.com/symfony/polyfill"
  8672. }
  8673. },
  8674. "autoload": {
  8675. "files": [
  8676. "bootstrap.php"
  8677. ],
  8678. "psr-4": {
  8679. "Symfony\\Polyfill\\Php80\\": ""
  8680. },
  8681. "classmap": [
  8682. "Resources/stubs"
  8683. ]
  8684. },
  8685. "notification-url": "https://packagist.org/downloads/",
  8686. "license": [
  8687. "MIT"
  8688. ],
  8689. "authors": [
  8690. {
  8691. "name": "Ion Bazan",
  8692. "email": "ion.bazan@gmail.com"
  8693. },
  8694. {
  8695. "name": "Nicolas Grekas",
  8696. "email": "p@tchwork.com"
  8697. },
  8698. {
  8699. "name": "Symfony Community",
  8700. "homepage": "https://symfony.com/contributors"
  8701. }
  8702. ],
  8703. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8704. "homepage": "https://symfony.com",
  8705. "keywords": [
  8706. "compatibility",
  8707. "polyfill",
  8708. "portable",
  8709. "shim"
  8710. ],
  8711. "support": {
  8712. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8713. },
  8714. "funding": [
  8715. {
  8716. "url": "https://symfony.com/sponsor",
  8717. "type": "custom"
  8718. },
  8719. {
  8720. "url": "https://github.com/fabpot",
  8721. "type": "github"
  8722. },
  8723. {
  8724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8725. "type": "tidelift"
  8726. }
  8727. ],
  8728. "time": "2024-09-09T11:45:10+00:00"
  8729. },
  8730. {
  8731. "name": "symfony/polyfill-util",
  8732. "version": "v1.17.0",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/symfony/polyfill-util.git",
  8736. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8741. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": ">=5.3.3"
  8746. },
  8747. "type": "library",
  8748. "extra": {
  8749. "branch-alias": {
  8750. "dev-master": "1.17-dev"
  8751. }
  8752. },
  8753. "autoload": {
  8754. "psr-4": {
  8755. "Symfony\\Polyfill\\Util\\": ""
  8756. }
  8757. },
  8758. "notification-url": "https://packagist.org/downloads/",
  8759. "license": [
  8760. "MIT"
  8761. ],
  8762. "authors": [
  8763. {
  8764. "name": "Nicolas Grekas",
  8765. "email": "p@tchwork.com"
  8766. },
  8767. {
  8768. "name": "Symfony Community",
  8769. "homepage": "https://symfony.com/contributors"
  8770. }
  8771. ],
  8772. "description": "Symfony utilities for portability of PHP codes",
  8773. "homepage": "https://symfony.com",
  8774. "keywords": [
  8775. "compat",
  8776. "compatibility",
  8777. "polyfill",
  8778. "shim"
  8779. ],
  8780. "support": {
  8781. "source": "https://github.com/symfony/polyfill-util/tree/master"
  8782. },
  8783. "funding": [
  8784. {
  8785. "url": "https://symfony.com/sponsor",
  8786. "type": "custom"
  8787. },
  8788. {
  8789. "url": "https://github.com/fabpot",
  8790. "type": "github"
  8791. },
  8792. {
  8793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8794. "type": "tidelift"
  8795. }
  8796. ],
  8797. "time": "2020-05-12T16:14:59+00:00"
  8798. },
  8799. {
  8800. "name": "symfony/process",
  8801. "version": "v3.4.41",
  8802. "source": {
  8803. "type": "git",
  8804. "url": "https://github.com/symfony/process.git",
  8805. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  8806. },
  8807. "dist": {
  8808. "type": "zip",
  8809. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8810. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  8811. "shasum": ""
  8812. },
  8813. "require": {
  8814. "php": "^5.5.9|>=7.0.8"
  8815. },
  8816. "type": "library",
  8817. "extra": {
  8818. "branch-alias": {
  8819. "dev-master": "3.4-dev"
  8820. }
  8821. },
  8822. "autoload": {
  8823. "psr-4": {
  8824. "Symfony\\Component\\Process\\": ""
  8825. },
  8826. "exclude-from-classmap": [
  8827. "/Tests/"
  8828. ]
  8829. },
  8830. "notification-url": "https://packagist.org/downloads/",
  8831. "license": [
  8832. "MIT"
  8833. ],
  8834. "authors": [
  8835. {
  8836. "name": "Fabien Potencier",
  8837. "email": "fabien@symfony.com"
  8838. },
  8839. {
  8840. "name": "Symfony Community",
  8841. "homepage": "https://symfony.com/contributors"
  8842. }
  8843. ],
  8844. "description": "Symfony Process Component",
  8845. "homepage": "https://symfony.com",
  8846. "support": {
  8847. "source": "https://github.com/symfony/process/tree/v3.4.41"
  8848. },
  8849. "funding": [
  8850. {
  8851. "url": "https://symfony.com/sponsor",
  8852. "type": "custom"
  8853. },
  8854. {
  8855. "url": "https://github.com/fabpot",
  8856. "type": "github"
  8857. },
  8858. {
  8859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8860. "type": "tidelift"
  8861. }
  8862. ],
  8863. "time": "2020-05-23T17:05:51+00:00"
  8864. },
  8865. {
  8866. "name": "symfony/psr-http-message-bridge",
  8867. "version": "v1.1.2",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8871. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8876. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8877. "shasum": ""
  8878. },
  8879. "require": {
  8880. "php": "^5.3.3 || ^7.0",
  8881. "psr/http-message": "^1.0",
  8882. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8883. },
  8884. "require-dev": {
  8885. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8886. },
  8887. "suggest": {
  8888. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8889. },
  8890. "type": "symfony-bridge",
  8891. "extra": {
  8892. "branch-alias": {
  8893. "dev-master": "1.1-dev"
  8894. }
  8895. },
  8896. "autoload": {
  8897. "psr-4": {
  8898. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8899. },
  8900. "exclude-from-classmap": [
  8901. "/Tests/"
  8902. ]
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "MIT"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Symfony Community",
  8911. "homepage": "http://symfony.com/contributors"
  8912. },
  8913. {
  8914. "name": "Fabien Potencier",
  8915. "email": "fabien@symfony.com"
  8916. }
  8917. ],
  8918. "description": "PSR HTTP message bridge",
  8919. "homepage": "http://symfony.com",
  8920. "keywords": [
  8921. "http",
  8922. "http-message",
  8923. "psr-17",
  8924. "psr-7"
  8925. ],
  8926. "support": {
  8927. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  8928. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  8929. },
  8930. "time": "2019-04-03T17:09:40+00:00"
  8931. },
  8932. {
  8933. "name": "symfony/routing",
  8934. "version": "v3.4.41",
  8935. "source": {
  8936. "type": "git",
  8937. "url": "https://github.com/symfony/routing.git",
  8938. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  8939. },
  8940. "dist": {
  8941. "type": "zip",
  8942. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8943. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  8944. "shasum": ""
  8945. },
  8946. "require": {
  8947. "php": "^5.5.9|>=7.0.8"
  8948. },
  8949. "conflict": {
  8950. "symfony/config": "<3.3.1",
  8951. "symfony/dependency-injection": "<3.3",
  8952. "symfony/yaml": "<3.4"
  8953. },
  8954. "require-dev": {
  8955. "doctrine/annotations": "~1.0",
  8956. "psr/log": "~1.0",
  8957. "symfony/config": "^3.3.1|~4.0",
  8958. "symfony/dependency-injection": "~3.3|~4.0",
  8959. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8960. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8961. "symfony/yaml": "~3.4|~4.0"
  8962. },
  8963. "suggest": {
  8964. "doctrine/annotations": "For using the annotation loader",
  8965. "symfony/config": "For using the all-in-one router or any loader",
  8966. "symfony/expression-language": "For using expression matching",
  8967. "symfony/http-foundation": "For using a Symfony Request object",
  8968. "symfony/yaml": "For using the YAML loader"
  8969. },
  8970. "type": "library",
  8971. "extra": {
  8972. "branch-alias": {
  8973. "dev-master": "3.4-dev"
  8974. }
  8975. },
  8976. "autoload": {
  8977. "psr-4": {
  8978. "Symfony\\Component\\Routing\\": ""
  8979. },
  8980. "exclude-from-classmap": [
  8981. "/Tests/"
  8982. ]
  8983. },
  8984. "notification-url": "https://packagist.org/downloads/",
  8985. "license": [
  8986. "MIT"
  8987. ],
  8988. "authors": [
  8989. {
  8990. "name": "Fabien Potencier",
  8991. "email": "fabien@symfony.com"
  8992. },
  8993. {
  8994. "name": "Symfony Community",
  8995. "homepage": "https://symfony.com/contributors"
  8996. }
  8997. ],
  8998. "description": "Symfony Routing Component",
  8999. "homepage": "https://symfony.com",
  9000. "keywords": [
  9001. "router",
  9002. "routing",
  9003. "uri",
  9004. "url"
  9005. ],
  9006. "support": {
  9007. "source": "https://github.com/symfony/routing/tree/3.4"
  9008. },
  9009. "funding": [
  9010. {
  9011. "url": "https://symfony.com/sponsor",
  9012. "type": "custom"
  9013. },
  9014. {
  9015. "url": "https://github.com/fabpot",
  9016. "type": "github"
  9017. },
  9018. {
  9019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9020. "type": "tidelift"
  9021. }
  9022. ],
  9023. "time": "2020-05-30T19:50:06+00:00"
  9024. },
  9025. {
  9026. "name": "symfony/serializer",
  9027. "version": "v3.4.41",
  9028. "source": {
  9029. "type": "git",
  9030. "url": "https://github.com/symfony/serializer.git",
  9031. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9032. },
  9033. "dist": {
  9034. "type": "zip",
  9035. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9036. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9037. "shasum": ""
  9038. },
  9039. "require": {
  9040. "php": "^5.5.9|>=7.0.8",
  9041. "symfony/polyfill-ctype": "~1.8"
  9042. },
  9043. "conflict": {
  9044. "phpdocumentor/type-resolver": "<0.2.1",
  9045. "symfony/dependency-injection": "<3.2",
  9046. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9047. "symfony/property-info": "<3.1",
  9048. "symfony/yaml": "<3.4"
  9049. },
  9050. "require-dev": {
  9051. "doctrine/annotations": "~1.0",
  9052. "doctrine/cache": "~1.0",
  9053. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9054. "symfony/cache": "~3.1|~4.0",
  9055. "symfony/config": "~2.8|~3.0|~4.0",
  9056. "symfony/dependency-injection": "~3.2|~4.0",
  9057. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9058. "symfony/property-access": "~2.8|~3.0|~4.0",
  9059. "symfony/property-info": "^3.4.13|~4.0",
  9060. "symfony/yaml": "~3.4|~4.0"
  9061. },
  9062. "suggest": {
  9063. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9064. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9065. "psr/cache-implementation": "For using the metadata cache.",
  9066. "symfony/config": "For using the XML mapping loader.",
  9067. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9068. "symfony/property-access": "For using the ObjectNormalizer.",
  9069. "symfony/property-info": "To deserialize relations.",
  9070. "symfony/yaml": "For using the default YAML mapping loader."
  9071. },
  9072. "type": "library",
  9073. "extra": {
  9074. "branch-alias": {
  9075. "dev-master": "3.4-dev"
  9076. }
  9077. },
  9078. "autoload": {
  9079. "psr-4": {
  9080. "Symfony\\Component\\Serializer\\": ""
  9081. },
  9082. "exclude-from-classmap": [
  9083. "/Tests/"
  9084. ]
  9085. },
  9086. "notification-url": "https://packagist.org/downloads/",
  9087. "license": [
  9088. "MIT"
  9089. ],
  9090. "authors": [
  9091. {
  9092. "name": "Fabien Potencier",
  9093. "email": "fabien@symfony.com"
  9094. },
  9095. {
  9096. "name": "Symfony Community",
  9097. "homepage": "https://symfony.com/contributors"
  9098. }
  9099. ],
  9100. "description": "Symfony Serializer Component",
  9101. "homepage": "https://symfony.com",
  9102. "support": {
  9103. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9104. },
  9105. "funding": [
  9106. {
  9107. "url": "https://symfony.com/sponsor",
  9108. "type": "custom"
  9109. },
  9110. {
  9111. "url": "https://github.com/fabpot",
  9112. "type": "github"
  9113. },
  9114. {
  9115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9116. "type": "tidelift"
  9117. }
  9118. ],
  9119. "time": "2020-05-30T18:58:05+00:00"
  9120. },
  9121. {
  9122. "name": "symfony/translation",
  9123. "version": "v3.4.41",
  9124. "source": {
  9125. "type": "git",
  9126. "url": "https://github.com/symfony/translation.git",
  9127. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9128. },
  9129. "dist": {
  9130. "type": "zip",
  9131. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9132. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9133. "shasum": ""
  9134. },
  9135. "require": {
  9136. "php": "^5.5.9|>=7.0.8",
  9137. "symfony/polyfill-mbstring": "~1.0"
  9138. },
  9139. "conflict": {
  9140. "symfony/config": "<2.8",
  9141. "symfony/dependency-injection": "<3.4",
  9142. "symfony/yaml": "<3.4"
  9143. },
  9144. "require-dev": {
  9145. "psr/log": "~1.0",
  9146. "symfony/config": "~2.8|~3.0|~4.0",
  9147. "symfony/dependency-injection": "~3.4|~4.0",
  9148. "symfony/finder": "~2.8|~3.0|~4.0",
  9149. "symfony/http-kernel": "~3.4|~4.0",
  9150. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9151. "symfony/var-dumper": "~3.4|~4.0",
  9152. "symfony/yaml": "~3.4|~4.0"
  9153. },
  9154. "suggest": {
  9155. "psr/log-implementation": "To use logging capability in translator",
  9156. "symfony/config": "",
  9157. "symfony/yaml": ""
  9158. },
  9159. "type": "library",
  9160. "extra": {
  9161. "branch-alias": {
  9162. "dev-master": "3.4-dev"
  9163. }
  9164. },
  9165. "autoload": {
  9166. "psr-4": {
  9167. "Symfony\\Component\\Translation\\": ""
  9168. },
  9169. "exclude-from-classmap": [
  9170. "/Tests/"
  9171. ]
  9172. },
  9173. "notification-url": "https://packagist.org/downloads/",
  9174. "license": [
  9175. "MIT"
  9176. ],
  9177. "authors": [
  9178. {
  9179. "name": "Fabien Potencier",
  9180. "email": "fabien@symfony.com"
  9181. },
  9182. {
  9183. "name": "Symfony Community",
  9184. "homepage": "https://symfony.com/contributors"
  9185. }
  9186. ],
  9187. "description": "Symfony Translation Component",
  9188. "homepage": "https://symfony.com",
  9189. "support": {
  9190. "source": "https://github.com/symfony/translation/tree/3.4"
  9191. },
  9192. "funding": [
  9193. {
  9194. "url": "https://symfony.com/sponsor",
  9195. "type": "custom"
  9196. },
  9197. {
  9198. "url": "https://github.com/fabpot",
  9199. "type": "github"
  9200. },
  9201. {
  9202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9203. "type": "tidelift"
  9204. }
  9205. ],
  9206. "time": "2020-05-30T18:58:05+00:00"
  9207. },
  9208. {
  9209. "name": "symfony/validator",
  9210. "version": "v3.4.41",
  9211. "source": {
  9212. "type": "git",
  9213. "url": "https://github.com/symfony/validator.git",
  9214. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9215. },
  9216. "dist": {
  9217. "type": "zip",
  9218. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9219. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9220. "shasum": ""
  9221. },
  9222. "require": {
  9223. "php": "^5.5.9|>=7.0.8",
  9224. "symfony/polyfill-ctype": "~1.8",
  9225. "symfony/polyfill-mbstring": "~1.0",
  9226. "symfony/translation": "~2.8|~3.0|~4.0"
  9227. },
  9228. "conflict": {
  9229. "doctrine/lexer": "<1.0.2",
  9230. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9231. "symfony/dependency-injection": "<3.3",
  9232. "symfony/http-kernel": "<3.3.5",
  9233. "symfony/yaml": "<3.4"
  9234. },
  9235. "require-dev": {
  9236. "doctrine/annotations": "~1.7",
  9237. "doctrine/cache": "~1.0",
  9238. "egulias/email-validator": "^2.1.10",
  9239. "symfony/cache": "~3.1|~4.0",
  9240. "symfony/config": "~2.8|~3.0|~4.0",
  9241. "symfony/dependency-injection": "~3.3|~4.0",
  9242. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9243. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9244. "symfony/http-kernel": "^3.3.5|~4.0",
  9245. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9246. "symfony/property-access": "~2.8|~3.0|~4.0",
  9247. "symfony/var-dumper": "~3.3|~4.0",
  9248. "symfony/yaml": "~3.4|~4.0"
  9249. },
  9250. "suggest": {
  9251. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9252. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9253. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9254. "psr/cache-implementation": "For using the metadata cache.",
  9255. "symfony/config": "",
  9256. "symfony/expression-language": "For using the Expression validator",
  9257. "symfony/http-foundation": "",
  9258. "symfony/intl": "",
  9259. "symfony/property-access": "For accessing properties within comparison constraints",
  9260. "symfony/yaml": ""
  9261. },
  9262. "type": "library",
  9263. "extra": {
  9264. "branch-alias": {
  9265. "dev-master": "3.4-dev"
  9266. }
  9267. },
  9268. "autoload": {
  9269. "psr-4": {
  9270. "Symfony\\Component\\Validator\\": ""
  9271. },
  9272. "exclude-from-classmap": [
  9273. "/Tests/"
  9274. ]
  9275. },
  9276. "notification-url": "https://packagist.org/downloads/",
  9277. "license": [
  9278. "MIT"
  9279. ],
  9280. "authors": [
  9281. {
  9282. "name": "Fabien Potencier",
  9283. "email": "fabien@symfony.com"
  9284. },
  9285. {
  9286. "name": "Symfony Community",
  9287. "homepage": "https://symfony.com/contributors"
  9288. }
  9289. ],
  9290. "description": "Symfony Validator Component",
  9291. "homepage": "https://symfony.com",
  9292. "support": {
  9293. "source": "https://github.com/symfony/validator/tree/3.4"
  9294. },
  9295. "funding": [
  9296. {
  9297. "url": "https://symfony.com/sponsor",
  9298. "type": "custom"
  9299. },
  9300. {
  9301. "url": "https://github.com/fabpot",
  9302. "type": "github"
  9303. },
  9304. {
  9305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9306. "type": "tidelift"
  9307. }
  9308. ],
  9309. "time": "2020-05-30T18:43:38+00:00"
  9310. },
  9311. {
  9312. "name": "symfony/var-dumper",
  9313. "version": "v4.4.47",
  9314. "source": {
  9315. "type": "git",
  9316. "url": "https://github.com/symfony/var-dumper.git",
  9317. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9318. },
  9319. "dist": {
  9320. "type": "zip",
  9321. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9322. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9323. "shasum": ""
  9324. },
  9325. "require": {
  9326. "php": ">=7.1.3",
  9327. "symfony/polyfill-mbstring": "~1.0",
  9328. "symfony/polyfill-php72": "~1.5",
  9329. "symfony/polyfill-php80": "^1.16"
  9330. },
  9331. "conflict": {
  9332. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9333. "symfony/console": "<3.4"
  9334. },
  9335. "require-dev": {
  9336. "ext-iconv": "*",
  9337. "symfony/console": "^3.4|^4.0|^5.0",
  9338. "symfony/process": "^4.4|^5.0",
  9339. "twig/twig": "^1.43|^2.13|^3.0.4"
  9340. },
  9341. "suggest": {
  9342. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9343. "ext-intl": "To show region name in time zone dump",
  9344. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9345. },
  9346. "bin": [
  9347. "Resources/bin/var-dump-server"
  9348. ],
  9349. "type": "library",
  9350. "autoload": {
  9351. "files": [
  9352. "Resources/functions/dump.php"
  9353. ],
  9354. "psr-4": {
  9355. "Symfony\\Component\\VarDumper\\": ""
  9356. },
  9357. "exclude-from-classmap": [
  9358. "/Tests/"
  9359. ]
  9360. },
  9361. "notification-url": "https://packagist.org/downloads/",
  9362. "license": [
  9363. "MIT"
  9364. ],
  9365. "authors": [
  9366. {
  9367. "name": "Nicolas Grekas",
  9368. "email": "p@tchwork.com"
  9369. },
  9370. {
  9371. "name": "Symfony Community",
  9372. "homepage": "https://symfony.com/contributors"
  9373. }
  9374. ],
  9375. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9376. "homepage": "https://symfony.com",
  9377. "keywords": [
  9378. "debug",
  9379. "dump"
  9380. ],
  9381. "support": {
  9382. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9383. },
  9384. "funding": [
  9385. {
  9386. "url": "https://symfony.com/sponsor",
  9387. "type": "custom"
  9388. },
  9389. {
  9390. "url": "https://github.com/fabpot",
  9391. "type": "github"
  9392. },
  9393. {
  9394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9395. "type": "tidelift"
  9396. }
  9397. ],
  9398. "time": "2022-10-03T15:15:11+00:00"
  9399. },
  9400. {
  9401. "name": "symfony/yaml",
  9402. "version": "v3.4.41",
  9403. "source": {
  9404. "type": "git",
  9405. "url": "https://github.com/symfony/yaml.git",
  9406. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9407. },
  9408. "dist": {
  9409. "type": "zip",
  9410. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9411. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9412. "shasum": ""
  9413. },
  9414. "require": {
  9415. "php": "^5.5.9|>=7.0.8",
  9416. "symfony/polyfill-ctype": "~1.8"
  9417. },
  9418. "conflict": {
  9419. "symfony/console": "<3.4"
  9420. },
  9421. "require-dev": {
  9422. "symfony/console": "~3.4|~4.0"
  9423. },
  9424. "suggest": {
  9425. "symfony/console": "For validating YAML files using the lint command"
  9426. },
  9427. "type": "library",
  9428. "extra": {
  9429. "branch-alias": {
  9430. "dev-master": "3.4-dev"
  9431. }
  9432. },
  9433. "autoload": {
  9434. "psr-4": {
  9435. "Symfony\\Component\\Yaml\\": ""
  9436. },
  9437. "exclude-from-classmap": [
  9438. "/Tests/"
  9439. ]
  9440. },
  9441. "notification-url": "https://packagist.org/downloads/",
  9442. "license": [
  9443. "MIT"
  9444. ],
  9445. "authors": [
  9446. {
  9447. "name": "Fabien Potencier",
  9448. "email": "fabien@symfony.com"
  9449. },
  9450. {
  9451. "name": "Symfony Community",
  9452. "homepage": "https://symfony.com/contributors"
  9453. }
  9454. ],
  9455. "description": "Symfony Yaml Component",
  9456. "homepage": "https://symfony.com",
  9457. "support": {
  9458. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9459. },
  9460. "funding": [
  9461. {
  9462. "url": "https://symfony.com/sponsor",
  9463. "type": "custom"
  9464. },
  9465. {
  9466. "url": "https://github.com/fabpot",
  9467. "type": "github"
  9468. },
  9469. {
  9470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9471. "type": "tidelift"
  9472. }
  9473. ],
  9474. "time": "2020-05-11T07:51:54+00:00"
  9475. },
  9476. {
  9477. "name": "twig/twig",
  9478. "version": "v1.42.5",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/twigphp/Twig.git",
  9482. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9487. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9488. "shasum": ""
  9489. },
  9490. "require": {
  9491. "php": ">=5.5.0",
  9492. "symfony/polyfill-ctype": "^1.8"
  9493. },
  9494. "require-dev": {
  9495. "psr/container": "^1.0",
  9496. "symfony/phpunit-bridge": "^4.4|^5.0"
  9497. },
  9498. "type": "library",
  9499. "extra": {
  9500. "branch-alias": {
  9501. "dev-master": "1.42-dev"
  9502. }
  9503. },
  9504. "autoload": {
  9505. "psr-0": {
  9506. "Twig_": "lib/"
  9507. },
  9508. "psr-4": {
  9509. "Twig\\": "src/"
  9510. }
  9511. },
  9512. "notification-url": "https://packagist.org/downloads/",
  9513. "license": [
  9514. "BSD-3-Clause"
  9515. ],
  9516. "authors": [
  9517. {
  9518. "name": "Fabien Potencier",
  9519. "email": "fabien@symfony.com",
  9520. "homepage": "http://fabien.potencier.org",
  9521. "role": "Lead Developer"
  9522. },
  9523. {
  9524. "name": "Twig Team",
  9525. "role": "Contributors"
  9526. },
  9527. {
  9528. "name": "Armin Ronacher",
  9529. "email": "armin.ronacher@active-4.com",
  9530. "role": "Project Founder"
  9531. }
  9532. ],
  9533. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9534. "homepage": "https://twig.symfony.com",
  9535. "keywords": [
  9536. "templating"
  9537. ],
  9538. "support": {
  9539. "issues": "https://github.com/twigphp/Twig/issues",
  9540. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9541. },
  9542. "time": "2020-02-11T05:59:23+00:00"
  9543. },
  9544. {
  9545. "name": "typo3/phar-stream-wrapper",
  9546. "version": "v3.1.4",
  9547. "source": {
  9548. "type": "git",
  9549. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9550. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9551. },
  9552. "dist": {
  9553. "type": "zip",
  9554. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9555. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9556. "shasum": ""
  9557. },
  9558. "require": {
  9559. "ext-json": "*",
  9560. "php": "^7.0"
  9561. },
  9562. "require-dev": {
  9563. "ext-xdebug": "*",
  9564. "phpunit/phpunit": "^6.5"
  9565. },
  9566. "suggest": {
  9567. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9568. },
  9569. "type": "library",
  9570. "extra": {
  9571. "branch-alias": {
  9572. "dev-master": "v3.x-dev"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "psr-4": {
  9577. "TYPO3\\PharStreamWrapper\\": "src/"
  9578. }
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "MIT"
  9583. ],
  9584. "description": "Interceptors for PHP's native phar:// stream handling",
  9585. "homepage": "https://typo3.org/",
  9586. "keywords": [
  9587. "phar",
  9588. "php",
  9589. "security",
  9590. "stream-wrapper"
  9591. ],
  9592. "support": {
  9593. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  9594. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  9595. },
  9596. "time": "2019-12-10T11:53:27+00:00"
  9597. },
  9598. {
  9599. "name": "vlucas/phpdotenv",
  9600. "version": "v2.6.4",
  9601. "source": {
  9602. "type": "git",
  9603. "url": "https://github.com/vlucas/phpdotenv.git",
  9604. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  9605. },
  9606. "dist": {
  9607. "type": "zip",
  9608. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  9609. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  9610. "shasum": ""
  9611. },
  9612. "require": {
  9613. "php": "^5.3.9 || ^7.0 || ^8.0",
  9614. "symfony/polyfill-ctype": "^1.9"
  9615. },
  9616. "require-dev": {
  9617. "ext-filter": "*",
  9618. "ext-pcre": "*",
  9619. "phpunit/phpunit": "^4.8.35 || ^5.0"
  9620. },
  9621. "suggest": {
  9622. "ext-filter": "Required to use the boolean validator.",
  9623. "ext-pcre": "Required to use most of the library."
  9624. },
  9625. "type": "library",
  9626. "extra": {
  9627. "branch-alias": {
  9628. "dev-master": "2.6-dev"
  9629. }
  9630. },
  9631. "autoload": {
  9632. "psr-4": {
  9633. "Dotenv\\": "src/"
  9634. }
  9635. },
  9636. "notification-url": "https://packagist.org/downloads/",
  9637. "license": [
  9638. "BSD-3-Clause"
  9639. ],
  9640. "authors": [
  9641. {
  9642. "name": "Graham Campbell",
  9643. "email": "graham@alt-three.com",
  9644. "homepage": "https://gjcampbell.co.uk/"
  9645. },
  9646. {
  9647. "name": "Vance Lucas",
  9648. "email": "vance@vancelucas.com",
  9649. "homepage": "https://vancelucas.com/"
  9650. }
  9651. ],
  9652. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9653. "keywords": [
  9654. "dotenv",
  9655. "env",
  9656. "environment"
  9657. ],
  9658. "time": "2020-05-02T13:38:00+00:00"
  9659. },
  9660. {
  9661. "name": "webflo/drupal-finder",
  9662. "version": "1.2.0",
  9663. "source": {
  9664. "type": "git",
  9665. "url": "https://github.com/webflo/drupal-finder.git",
  9666. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  9667. },
  9668. "dist": {
  9669. "type": "zip",
  9670. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9671. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  9672. "shasum": ""
  9673. },
  9674. "require": {
  9675. "ext-json": "*"
  9676. },
  9677. "require-dev": {
  9678. "mikey179/vfsstream": "^1.6",
  9679. "phpunit/phpunit": "^4.8"
  9680. },
  9681. "type": "library",
  9682. "autoload": {
  9683. "classmap": [
  9684. "src/DrupalFinder.php"
  9685. ]
  9686. },
  9687. "notification-url": "https://packagist.org/downloads/",
  9688. "license": [
  9689. "GPL-2.0+"
  9690. ],
  9691. "authors": [
  9692. {
  9693. "name": "Florian Weber",
  9694. "email": "florian@webflo.org"
  9695. }
  9696. ],
  9697. "description": "Helper class to locate a Drupal installation from a given path.",
  9698. "time": "2019-08-02T08:06:18+00:00"
  9699. },
  9700. {
  9701. "name": "webmozart/assert",
  9702. "version": "1.11.0",
  9703. "source": {
  9704. "type": "git",
  9705. "url": "https://github.com/webmozarts/assert.git",
  9706. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9707. },
  9708. "dist": {
  9709. "type": "zip",
  9710. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9711. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9712. "shasum": ""
  9713. },
  9714. "require": {
  9715. "ext-ctype": "*",
  9716. "php": "^7.2 || ^8.0"
  9717. },
  9718. "conflict": {
  9719. "phpstan/phpstan": "<0.12.20",
  9720. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9721. },
  9722. "require-dev": {
  9723. "phpunit/phpunit": "^8.5.13"
  9724. },
  9725. "type": "library",
  9726. "extra": {
  9727. "branch-alias": {
  9728. "dev-master": "1.10-dev"
  9729. }
  9730. },
  9731. "autoload": {
  9732. "psr-4": {
  9733. "Webmozart\\Assert\\": "src/"
  9734. }
  9735. },
  9736. "notification-url": "https://packagist.org/downloads/",
  9737. "license": [
  9738. "MIT"
  9739. ],
  9740. "authors": [
  9741. {
  9742. "name": "Bernhard Schussek",
  9743. "email": "bschussek@gmail.com"
  9744. }
  9745. ],
  9746. "description": "Assertions to validate method input/output with nice error messages.",
  9747. "keywords": [
  9748. "assert",
  9749. "check",
  9750. "validate"
  9751. ],
  9752. "support": {
  9753. "issues": "https://github.com/webmozarts/assert/issues",
  9754. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9755. },
  9756. "time": "2022-06-03T18:03:27+00:00"
  9757. },
  9758. {
  9759. "name": "webmozart/path-util",
  9760. "version": "2.3.0",
  9761. "source": {
  9762. "type": "git",
  9763. "url": "https://github.com/webmozart/path-util.git",
  9764. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9765. },
  9766. "dist": {
  9767. "type": "zip",
  9768. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9769. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9770. "shasum": ""
  9771. },
  9772. "require": {
  9773. "php": ">=5.3.3",
  9774. "webmozart/assert": "~1.0"
  9775. },
  9776. "require-dev": {
  9777. "phpunit/phpunit": "^4.6",
  9778. "sebastian/version": "^1.0.1"
  9779. },
  9780. "type": "library",
  9781. "extra": {
  9782. "branch-alias": {
  9783. "dev-master": "2.3-dev"
  9784. }
  9785. },
  9786. "autoload": {
  9787. "psr-4": {
  9788. "Webmozart\\PathUtil\\": "src/"
  9789. }
  9790. },
  9791. "notification-url": "https://packagist.org/downloads/",
  9792. "license": [
  9793. "MIT"
  9794. ],
  9795. "authors": [
  9796. {
  9797. "name": "Bernhard Schussek",
  9798. "email": "bschussek@gmail.com"
  9799. }
  9800. ],
  9801. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9802. "time": "2015-12-17T08:42:14+00:00"
  9803. }
  9804. ],
  9805. "packages-dev": [],
  9806. "aliases": [],
  9807. "minimum-stability": "dev",
  9808. "stability-flags": {
  9809. "drupal/better_messages": 15,
  9810. "drupal/bulkdelete": 20,
  9811. "drupal/domain": 15,
  9812. "drupal/entity": 20,
  9813. "drupal/filefield_sources": 20,
  9814. "drupal/filter_perms": 20,
  9815. "drupal/maillog": 20,
  9816. "drupal/path_alias_xt": 20,
  9817. "drupal/synonyms": 20,
  9818. "drupal/toolbar_themes": 20,
  9819. "drupal/workflow": 20
  9820. },
  9821. "prefer-stable": true,
  9822. "prefer-lowest": false,
  9823. "platform": {
  9824. "php": ">=5.6"
  9825. },
  9826. "platform-dev": [],
  9827. "plugin-api-version": "2.6.0"
  9828. }