composer.lock 373 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218
  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": "8e50c9ba31552d50c07a86f8ace4f806",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  62. },
  63. "time": "2019-12-24T22:41:47+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "1.32.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  76. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=5.5.9",
  82. "symfony/console": "^3.4 || ^4.0",
  83. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  84. "twig/twig": "^1.41 || ^2.12"
  85. },
  86. "bin": [
  87. "bin/dcg"
  88. ],
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "files": [
  97. "src/bootstrap.php"
  98. ],
  99. "psr-4": {
  100. "DrupalCodeGenerator\\": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "GPL-2.0-or-later"
  106. ],
  107. "description": "Drupal code generator",
  108. "time": "2020-04-16T06:45:06+00:00"
  109. },
  110. {
  111. "name": "composer/installers",
  112. "version": "v1.11.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/composer/installers.git",
  116. "reference": "ae03311f45dfe194412081526be2e003960df74b"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
  121. "reference": "ae03311f45dfe194412081526be2e003960df74b",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "composer-plugin-api": "^1.0 || ^2.0"
  126. },
  127. "replace": {
  128. "roundcube/plugin-installer": "*",
  129. "shama/baton": "*"
  130. },
  131. "require-dev": {
  132. "composer/composer": "1.6.* || ^2.0",
  133. "composer/semver": "^1 || ^3",
  134. "phpstan/phpstan": "^0.12.55",
  135. "phpstan/phpstan-phpunit": "^0.12.16",
  136. "symfony/phpunit-bridge": "^4.2 || ^5",
  137. "symfony/process": "^2.3"
  138. },
  139. "type": "composer-plugin",
  140. "extra": {
  141. "class": "Composer\\Installers\\Plugin",
  142. "branch-alias": {
  143. "dev-main": "1.x-dev"
  144. }
  145. },
  146. "autoload": {
  147. "psr-4": {
  148. "Composer\\Installers\\": "src/Composer/Installers"
  149. }
  150. },
  151. "notification-url": "https://packagist.org/downloads/",
  152. "license": [
  153. "MIT"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Kyle Robinson Young",
  158. "email": "kyle@dontkry.com",
  159. "homepage": "https://github.com/shama"
  160. }
  161. ],
  162. "description": "A multi-framework Composer library installer",
  163. "homepage": "https://composer.github.io/installers/",
  164. "keywords": [
  165. "Craft",
  166. "Dolibarr",
  167. "Eliasis",
  168. "Hurad",
  169. "ImageCMS",
  170. "Kanboard",
  171. "Lan Management System",
  172. "MODX Evo",
  173. "MantisBT",
  174. "Mautic",
  175. "Maya",
  176. "OXID",
  177. "Plentymarkets",
  178. "Porto",
  179. "RadPHP",
  180. "SMF",
  181. "Starbug",
  182. "Thelia",
  183. "Whmcs",
  184. "WolfCMS",
  185. "agl",
  186. "aimeos",
  187. "annotatecms",
  188. "attogram",
  189. "bitrix",
  190. "cakephp",
  191. "chef",
  192. "cockpit",
  193. "codeigniter",
  194. "concrete5",
  195. "croogo",
  196. "dokuwiki",
  197. "drupal",
  198. "eZ Platform",
  199. "elgg",
  200. "expressionengine",
  201. "fuelphp",
  202. "grav",
  203. "installer",
  204. "itop",
  205. "joomla",
  206. "known",
  207. "kohana",
  208. "laravel",
  209. "lavalite",
  210. "lithium",
  211. "magento",
  212. "majima",
  213. "mako",
  214. "mediawiki",
  215. "miaoxing",
  216. "modulework",
  217. "modx",
  218. "moodle",
  219. "osclass",
  220. "phpbb",
  221. "piwik",
  222. "ppi",
  223. "processwire",
  224. "puppet",
  225. "pxcms",
  226. "reindex",
  227. "roundcube",
  228. "shopware",
  229. "silverstripe",
  230. "sydes",
  231. "sylius",
  232. "symfony",
  233. "tastyigniter",
  234. "typo3",
  235. "wordpress",
  236. "yawik",
  237. "zend",
  238. "zikula"
  239. ],
  240. "funding": [
  241. {
  242. "url": "https://packagist.com",
  243. "type": "custom"
  244. },
  245. {
  246. "url": "https://github.com/composer",
  247. "type": "github"
  248. },
  249. {
  250. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  251. "type": "tidelift"
  252. }
  253. ],
  254. "time": "2021-04-28T06:42:17+00:00"
  255. },
  256. {
  257. "name": "composer/semver",
  258. "version": "1.5.1",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/composer/semver.git",
  262. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  267. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": "^5.3.2 || ^7.0"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^4.5 || ^5.0.5"
  275. },
  276. "type": "library",
  277. "extra": {
  278. "branch-alias": {
  279. "dev-master": "1.x-dev"
  280. }
  281. },
  282. "autoload": {
  283. "psr-4": {
  284. "Composer\\Semver\\": "src"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Nils Adermann",
  294. "email": "naderman@naderman.de",
  295. "homepage": "http://www.naderman.de"
  296. },
  297. {
  298. "name": "Jordi Boggiano",
  299. "email": "j.boggiano@seld.be",
  300. "homepage": "http://seld.be"
  301. },
  302. {
  303. "name": "Rob Bast",
  304. "email": "rob.bast@gmail.com",
  305. "homepage": "http://robbast.nl"
  306. }
  307. ],
  308. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  309. "keywords": [
  310. "semantic",
  311. "semver",
  312. "validation",
  313. "versioning"
  314. ],
  315. "support": {
  316. "irc": "irc://irc.freenode.org/composer",
  317. "issues": "https://github.com/composer/semver/issues",
  318. "source": "https://github.com/composer/semver/tree/1.5.1"
  319. },
  320. "time": "2020-01-13T12:06:48+00:00"
  321. },
  322. {
  323. "name": "consolidation/annotated-command",
  324. "version": "2.12.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/consolidation/annotated-command.git",
  328. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  333. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "consolidation/output-formatters": "^3.4",
  338. "php": ">=5.4.5",
  339. "psr/log": "^1",
  340. "symfony/console": "^2.8|^3|^4",
  341. "symfony/event-dispatcher": "^2.5|^3|^4",
  342. "symfony/finder": "^2.5|^3|^4"
  343. },
  344. "require-dev": {
  345. "g1a/composer-test-scenarios": "^3",
  346. "php-coveralls/php-coveralls": "^1",
  347. "phpunit/phpunit": "^6",
  348. "squizlabs/php_codesniffer": "^2.7"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "scenarios": {
  353. "symfony4": {
  354. "require": {
  355. "symfony/console": "^4.0"
  356. },
  357. "config": {
  358. "platform": {
  359. "php": "7.1.3"
  360. }
  361. }
  362. },
  363. "symfony2": {
  364. "require": {
  365. "symfony/console": "^2.8"
  366. },
  367. "require-dev": {
  368. "phpunit/phpunit": "^4.8.36"
  369. },
  370. "remove": [
  371. "php-coveralls/php-coveralls"
  372. ],
  373. "config": {
  374. "platform": {
  375. "php": "5.4.8"
  376. }
  377. },
  378. "scenario-options": {
  379. "create-lockfile": "false"
  380. }
  381. },
  382. "phpunit4": {
  383. "require-dev": {
  384. "phpunit/phpunit": "^4.8.36"
  385. },
  386. "remove": [
  387. "php-coveralls/php-coveralls"
  388. ],
  389. "config": {
  390. "platform": {
  391. "php": "5.4.8"
  392. }
  393. }
  394. }
  395. },
  396. "branch-alias": {
  397. "dev-master": "2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Consolidation\\AnnotatedCommand\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Greg Anderson",
  412. "email": "greg.1.anderson@greenknowe.org"
  413. }
  414. ],
  415. "description": "Initialize Symfony Console commands from annotated command class methods.",
  416. "time": "2019-03-08T16:55:03+00:00"
  417. },
  418. {
  419. "name": "consolidation/config",
  420. "version": "1.2.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/consolidation/config.git",
  424. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  429. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "dflydev/dot-access-data": "^1.1.0",
  434. "grasmash/expander": "^1",
  435. "php": ">=5.4.0"
  436. },
  437. "require-dev": {
  438. "g1a/composer-test-scenarios": "^3",
  439. "php-coveralls/php-coveralls": "^1",
  440. "phpunit/phpunit": "^5",
  441. "squizlabs/php_codesniffer": "2.*",
  442. "symfony/console": "^2.5|^3|^4",
  443. "symfony/yaml": "^2.8.11|^3|^4"
  444. },
  445. "suggest": {
  446. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "scenarios": {
  451. "symfony4": {
  452. "require-dev": {
  453. "symfony/console": "^4.0"
  454. },
  455. "config": {
  456. "platform": {
  457. "php": "7.1.3"
  458. }
  459. }
  460. },
  461. "symfony2": {
  462. "require-dev": {
  463. "symfony/console": "^2.8",
  464. "symfony/event-dispatcher": "^2.8",
  465. "phpunit/phpunit": "^4.8.36"
  466. },
  467. "remove": [
  468. "php-coveralls/php-coveralls"
  469. ],
  470. "config": {
  471. "platform": {
  472. "php": "5.4.8"
  473. }
  474. }
  475. }
  476. },
  477. "branch-alias": {
  478. "dev-master": "1.x-dev"
  479. }
  480. },
  481. "autoload": {
  482. "psr-4": {
  483. "Consolidation\\Config\\": "src"
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Greg Anderson",
  493. "email": "greg.1.anderson@greenknowe.org"
  494. }
  495. ],
  496. "description": "Provide configuration services for a commandline tool.",
  497. "time": "2019-03-03T19:37:04+00:00"
  498. },
  499. {
  500. "name": "consolidation/filter-via-dot-access-data",
  501. "version": "1.0.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  505. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  510. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "dflydev/dot-access-data": "^1.1.0",
  515. "php": ">=5.5.0"
  516. },
  517. "require-dev": {
  518. "consolidation/robo": "^1.2.3",
  519. "g1a/composer-test-scenarios": "^3",
  520. "knplabs/github-api": "^2.7",
  521. "php-coveralls/php-coveralls": "^1",
  522. "php-http/guzzle6-adapter": "^1.1",
  523. "phpunit/phpunit": "^5",
  524. "squizlabs/php_codesniffer": "^2.8",
  525. "symfony/console": "^2.8|^3|^4"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "scenarios": {
  530. "phpunit5": {
  531. "require-dev": {
  532. "phpunit/phpunit": "^5.7.27"
  533. },
  534. "remove": [
  535. "php-coveralls/php-coveralls"
  536. ],
  537. "config": {
  538. "platform": {
  539. "php": "5.6.33"
  540. }
  541. }
  542. }
  543. },
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Filter\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  564. "time": "2019-01-18T06:05:07+00:00"
  565. },
  566. {
  567. "name": "consolidation/log",
  568. "version": "1.1.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/log.git",
  572. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  577. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": ">=5.4.5",
  582. "psr/log": "^1.0",
  583. "symfony/console": "^2.8|^3|^4"
  584. },
  585. "require-dev": {
  586. "g1a/composer-test-scenarios": "^3",
  587. "php-coveralls/php-coveralls": "^1",
  588. "phpunit/phpunit": "^6",
  589. "squizlabs/php_codesniffer": "^2"
  590. },
  591. "type": "library",
  592. "extra": {
  593. "scenarios": {
  594. "symfony4": {
  595. "require": {
  596. "symfony/console": "^4.0"
  597. },
  598. "config": {
  599. "platform": {
  600. "php": "7.1.3"
  601. }
  602. }
  603. },
  604. "symfony2": {
  605. "require": {
  606. "symfony/console": "^2.8"
  607. },
  608. "require-dev": {
  609. "phpunit/phpunit": "^4.8.36"
  610. },
  611. "remove": [
  612. "php-coveralls/php-coveralls"
  613. ],
  614. "config": {
  615. "platform": {
  616. "php": "5.4.8"
  617. }
  618. }
  619. },
  620. "phpunit4": {
  621. "require-dev": {
  622. "phpunit/phpunit": "^4.8.36"
  623. },
  624. "remove": [
  625. "php-coveralls/php-coveralls"
  626. ],
  627. "config": {
  628. "platform": {
  629. "php": "5.4.8"
  630. }
  631. }
  632. }
  633. },
  634. "branch-alias": {
  635. "dev-master": "1.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Consolidation\\Log\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Greg Anderson",
  650. "email": "greg.1.anderson@greenknowe.org"
  651. }
  652. ],
  653. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  654. "time": "2019-01-01T17:30:51+00:00"
  655. },
  656. {
  657. "name": "consolidation/output-formatters",
  658. "version": "3.5.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/consolidation/output-formatters.git",
  662. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  667. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "dflydev/dot-access-data": "^1.1.0",
  672. "php": ">=5.4.0",
  673. "symfony/console": "^2.8|^3|^4",
  674. "symfony/finder": "^2.5|^3|^4"
  675. },
  676. "require-dev": {
  677. "g1a/composer-test-scenarios": "^3",
  678. "php-coveralls/php-coveralls": "^1",
  679. "phpunit/phpunit": "^5.7.27",
  680. "squizlabs/php_codesniffer": "^2.7",
  681. "symfony/var-dumper": "^2.8|^3|^4",
  682. "victorjonsson/markdowndocs": "^1.3"
  683. },
  684. "suggest": {
  685. "symfony/var-dumper": "For using the var_dump formatter"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "scenarios": {
  690. "symfony4": {
  691. "require": {
  692. "symfony/console": "^4.0"
  693. },
  694. "require-dev": {
  695. "phpunit/phpunit": "^6"
  696. },
  697. "config": {
  698. "platform": {
  699. "php": "7.1.3"
  700. }
  701. }
  702. },
  703. "symfony3": {
  704. "require": {
  705. "symfony/console": "^3.4",
  706. "symfony/finder": "^3.4",
  707. "symfony/var-dumper": "^3.4"
  708. },
  709. "config": {
  710. "platform": {
  711. "php": "5.6.32"
  712. }
  713. }
  714. },
  715. "symfony2": {
  716. "require": {
  717. "symfony/console": "^2.8"
  718. },
  719. "require-dev": {
  720. "phpunit/phpunit": "^4.8.36"
  721. },
  722. "remove": [
  723. "php-coveralls/php-coveralls"
  724. ],
  725. "config": {
  726. "platform": {
  727. "php": "5.4.8"
  728. }
  729. },
  730. "scenario-options": {
  731. "create-lockfile": "false"
  732. }
  733. }
  734. },
  735. "branch-alias": {
  736. "dev-master": "3.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Consolidation\\OutputFormatters\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Greg Anderson",
  751. "email": "greg.1.anderson@greenknowe.org"
  752. }
  753. ],
  754. "description": "Format text by applying transformations provided by plug-in formatters.",
  755. "time": "2019-05-30T23:16:01+00:00"
  756. },
  757. {
  758. "name": "consolidation/robo",
  759. "version": "1.4.12",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/Robo.git",
  763. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  768. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/annotated-command": "^2.11.0|^4.1",
  773. "consolidation/config": "^1.2.1",
  774. "consolidation/log": "^1.1.1|^2",
  775. "consolidation/output-formatters": "^3.1.13|^4.1",
  776. "consolidation/self-update": "^1.1.5",
  777. "grasmash/yaml-expander": "^1.4",
  778. "league/container": "^2.4.1",
  779. "php": ">=5.5.0",
  780. "symfony/console": "^2.8|^3|^4",
  781. "symfony/event-dispatcher": "^2.5|^3|^4",
  782. "symfony/filesystem": "^2.5|^3|^4",
  783. "symfony/finder": "^2.5|^3|^4",
  784. "symfony/process": "^2.5|^3|^4"
  785. },
  786. "replace": {
  787. "codegyre/robo": "< 1.0"
  788. },
  789. "require-dev": {
  790. "g1a/composer-test-scenarios": "^3",
  791. "natxet/cssmin": "3.0.4",
  792. "patchwork/jsqueeze": "^2",
  793. "pear/archive_tar": "^1.4.4",
  794. "php-coveralls/php-coveralls": "^1",
  795. "phpunit/phpunit": "^5.7.27",
  796. "squizlabs/php_codesniffer": "^3"
  797. },
  798. "suggest": {
  799. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  800. "natxet/CssMin": "For minifying CSS files in taskMinify",
  801. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  802. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  803. },
  804. "bin": [
  805. "robo"
  806. ],
  807. "type": "library",
  808. "extra": {
  809. "scenarios": {
  810. "symfony4": {
  811. "require": {
  812. "symfony/console": "^4"
  813. },
  814. "config": {
  815. "platform": {
  816. "php": "7.1.3"
  817. }
  818. }
  819. },
  820. "symfony2": {
  821. "require": {
  822. "symfony/console": "^2.8"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.8.36"
  826. },
  827. "remove": [
  828. "php-coveralls/php-coveralls"
  829. ],
  830. "config": {
  831. "platform": {
  832. "php": "5.5.9"
  833. }
  834. },
  835. "scenario-options": {
  836. "create-lockfile": "false"
  837. }
  838. }
  839. },
  840. "branch-alias": {
  841. "dev-master": "1.x-dev"
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "Robo\\": "src"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Davert",
  856. "email": "davert.php@resend.cc"
  857. }
  858. ],
  859. "description": "Modern task runner",
  860. "time": "2020-02-18T17:31:26+00:00"
  861. },
  862. {
  863. "name": "consolidation/self-update",
  864. "version": "1.2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/consolidation/self-update.git",
  868. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "php": ">=5.5.0",
  878. "symfony/console": "^2.8|^3|^4|^5",
  879. "symfony/filesystem": "^2.5|^3|^4|^5"
  880. },
  881. "bin": [
  882. "scripts/release"
  883. ],
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "SelfUpdate\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Alexander Menk",
  902. "email": "menk@mestrona.net"
  903. },
  904. {
  905. "name": "Greg Anderson",
  906. "email": "greg.1.anderson@greenknowe.org"
  907. }
  908. ],
  909. "description": "Provides a self:update command for Symfony Console applications.",
  910. "time": "2020-04-13T02:49:20+00:00"
  911. },
  912. {
  913. "name": "consolidation/site-alias",
  914. "version": "3.0.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/consolidation/site-alias.git",
  918. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  923. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "consolidation/config": "^1.2.1",
  928. "php": ">=5.5.0"
  929. },
  930. "require-dev": {
  931. "consolidation/robo": "^1.2.3",
  932. "g1a/composer-test-scenarios": "^3",
  933. "knplabs/github-api": "^2.7",
  934. "php-coveralls/php-coveralls": "^1",
  935. "php-http/guzzle6-adapter": "^1.1",
  936. "phpunit/phpunit": "^6",
  937. "squizlabs/php_codesniffer": "^2.8",
  938. "symfony/console": "^2.8|^3|^4",
  939. "symfony/yaml": "~2.3|^3"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "scenarios": {
  944. "phpunit5": {
  945. "require-dev": {
  946. "phpunit/phpunit": "^5.7.27"
  947. },
  948. "remove": [
  949. "php-coveralls/php-coveralls"
  950. ],
  951. "config": {
  952. "platform": {
  953. "php": "5.6.33"
  954. }
  955. }
  956. }
  957. },
  958. "branch-alias": {
  959. "dev-master": "3.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Consolidation\\SiteAlias\\": "src"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Moshe Weitzman",
  974. "email": "weitzman@tejasa.com"
  975. },
  976. {
  977. "name": "Greg Anderson",
  978. "email": "greg.1.anderson@greenknowe.org"
  979. }
  980. ],
  981. "description": "Manage alias records for local and remote sites.",
  982. "time": "2019-03-12T17:31:48+00:00"
  983. },
  984. {
  985. "name": "consolidation/site-process",
  986. "version": "2.1.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/consolidation/site-process.git",
  990. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  995. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "consolidation/config": "^1.2.1",
  1000. "consolidation/site-alias": "^3",
  1001. "php": ">=5.6.0",
  1002. "symfony/process": "^3.4"
  1003. },
  1004. "require-dev": {
  1005. "consolidation/robo": "^1.3",
  1006. "g1a/composer-test-scenarios": "^3",
  1007. "knplabs/github-api": "^2.7",
  1008. "php-coveralls/php-coveralls": "^1",
  1009. "php-http/guzzle6-adapter": "^1.1",
  1010. "phpunit/phpunit": "^6",
  1011. "squizlabs/php_codesniffer": "^2.8"
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "scenarios": {
  1016. "phpunit5": {
  1017. "require-dev": {
  1018. "phpunit/phpunit": "^5.7.27"
  1019. },
  1020. "remove": [
  1021. "php-coveralls/php-coveralls"
  1022. ],
  1023. "config": {
  1024. "platform": {
  1025. "php": "5.6.33"
  1026. }
  1027. }
  1028. }
  1029. },
  1030. "branch-alias": {
  1031. "dev-master": "0.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Consolidation\\SiteProcess\\": "src"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Greg Anderson",
  1046. "email": "greg.1.anderson@greenknowe.org"
  1047. },
  1048. {
  1049. "name": "Moshe Weitzman",
  1050. "email": "weitzman@tejasa.com"
  1051. }
  1052. ],
  1053. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1054. "time": "2019-09-10T17:56:24+00:00"
  1055. },
  1056. {
  1057. "name": "cweagans/composer-patches",
  1058. "version": "1.7.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/cweagans/composer-patches.git",
  1062. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1067. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "composer-plugin-api": "^1.0 || ^2.0",
  1072. "php": ">=5.3.0"
  1073. },
  1074. "require-dev": {
  1075. "composer/composer": "~1.0 || ~2.0",
  1076. "phpunit/phpunit": "~4.6"
  1077. },
  1078. "type": "composer-plugin",
  1079. "extra": {
  1080. "class": "cweagans\\Composer\\Patches"
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "cweagans\\Composer\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "BSD-3-Clause"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Cameron Eagans",
  1094. "email": "me@cweagans.net"
  1095. }
  1096. ],
  1097. "description": "Provides a way to patch Composer packages.",
  1098. "time": "2021-06-08T15:12:46+00:00"
  1099. },
  1100. {
  1101. "name": "dflydev/dot-access-data",
  1102. "version": "v1.1.0",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1106. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1111. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-0": {
  1125. "Dflydev\\DotAccessData": "src"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Dragonfly Development Inc.",
  1135. "email": "info@dflydev.com",
  1136. "homepage": "http://dflydev.com"
  1137. },
  1138. {
  1139. "name": "Beau Simensen",
  1140. "email": "beau@dflydev.com",
  1141. "homepage": "http://beausimensen.com"
  1142. },
  1143. {
  1144. "name": "Carlos Frutos",
  1145. "email": "carlos@kiwing.it",
  1146. "homepage": "https://github.com/cfrutos"
  1147. }
  1148. ],
  1149. "description": "Given a deep data structure, access data by dot notation.",
  1150. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1151. "keywords": [
  1152. "access",
  1153. "data",
  1154. "dot",
  1155. "notation"
  1156. ],
  1157. "time": "2017-01-20T21:14:22+00:00"
  1158. },
  1159. {
  1160. "name": "dnoegel/php-xdg-base-dir",
  1161. "version": "v0.1.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1165. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1170. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "XdgBaseDir\\": "src/"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "description": "implementation of xdg base directory specification for php",
  1190. "time": "2019-12-04T15:06:13+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/annotations",
  1194. "version": "v1.4.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/annotations.git",
  1198. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1203. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "doctrine/lexer": "1.*",
  1208. "php": "^5.6 || ^7.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/cache": "1.*",
  1212. "phpunit/phpunit": "^5.7"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "1.4.x-dev"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Benjamin Eberlei",
  1236. "email": "kontakt@beberlei.de"
  1237. },
  1238. {
  1239. "name": "Guilherme Blanco",
  1240. "email": "guilhermeblanco@gmail.com"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "Docblock Annotations Parser",
  1252. "homepage": "http://www.doctrine-project.org",
  1253. "keywords": [
  1254. "annotations",
  1255. "docblock",
  1256. "parser"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/annotations/issues",
  1260. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1261. },
  1262. "time": "2017-02-24T16:22:25+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/cache",
  1266. "version": "v1.6.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/cache.git",
  1270. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1275. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "~5.5|~7.0"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": ">2.2,<2.4"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": "~4.8|~5.0",
  1286. "predis/predis": "~1.0",
  1287. "satooshi/php-coveralls": "~0.6"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.6.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Roman Borschel",
  1307. "email": "roman@code-factory.org"
  1308. },
  1309. {
  1310. "name": "Benjamin Eberlei",
  1311. "email": "kontakt@beberlei.de"
  1312. },
  1313. {
  1314. "name": "Guilherme Blanco",
  1315. "email": "guilhermeblanco@gmail.com"
  1316. },
  1317. {
  1318. "name": "Jonathan Wage",
  1319. "email": "jonwage@gmail.com"
  1320. },
  1321. {
  1322. "name": "Johannes Schmitt",
  1323. "email": "schmittjoh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "Caching library offering an object-oriented API for many cache backends",
  1327. "homepage": "http://www.doctrine-project.org",
  1328. "keywords": [
  1329. "cache",
  1330. "caching"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/doctrine/cache/issues",
  1334. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1335. },
  1336. "time": "2017-07-22T12:49:21+00:00"
  1337. },
  1338. {
  1339. "name": "doctrine/collections",
  1340. "version": "v1.4.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/doctrine/collections.git",
  1344. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1349. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": "^5.6 || ^7.0"
  1354. },
  1355. "require-dev": {
  1356. "doctrine/coding-standard": "~0.1@dev",
  1357. "phpunit/phpunit": "^5.7"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Doctrine\\Common\\Collections\\": "lib/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Roman Borschel",
  1377. "email": "roman@code-factory.org"
  1378. },
  1379. {
  1380. "name": "Benjamin Eberlei",
  1381. "email": "kontakt@beberlei.de"
  1382. },
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Collections Abstraction library",
  1397. "homepage": "http://www.doctrine-project.org",
  1398. "keywords": [
  1399. "array",
  1400. "collections",
  1401. "iterator"
  1402. ],
  1403. "support": {
  1404. "issues": "https://github.com/doctrine/collections/issues",
  1405. "source": "https://github.com/doctrine/collections/tree/master"
  1406. },
  1407. "time": "2017-01-03T10:49:41+00:00"
  1408. },
  1409. {
  1410. "name": "doctrine/common",
  1411. "version": "v2.7.3",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/doctrine/common.git",
  1415. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1420. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1421. "shasum": ""
  1422. },
  1423. "require": {
  1424. "doctrine/annotations": "1.*",
  1425. "doctrine/cache": "1.*",
  1426. "doctrine/collections": "1.*",
  1427. "doctrine/inflector": "1.*",
  1428. "doctrine/lexer": "1.*",
  1429. "php": "~5.6|~7.0"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^5.4.6"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "2.7.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Roman Borschel",
  1452. "email": "roman@code-factory.org"
  1453. },
  1454. {
  1455. "name": "Benjamin Eberlei",
  1456. "email": "kontakt@beberlei.de"
  1457. },
  1458. {
  1459. "name": "Guilherme Blanco",
  1460. "email": "guilhermeblanco@gmail.com"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. }
  1470. ],
  1471. "description": "Common Library for Doctrine projects",
  1472. "homepage": "http://www.doctrine-project.org",
  1473. "keywords": [
  1474. "annotations",
  1475. "collections",
  1476. "eventmanager",
  1477. "persistence",
  1478. "spl"
  1479. ],
  1480. "support": {
  1481. "issues": "https://github.com/doctrine/common/issues",
  1482. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1483. },
  1484. "time": "2017-07-22T08:35:12+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "v1.2.0",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1497. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.0"
  1502. },
  1503. "require-dev": {
  1504. "phpunit/phpunit": "^6.2"
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "1.2.x-dev"
  1510. }
  1511. },
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Benjamin Eberlei",
  1528. "email": "kontakt@beberlei.de"
  1529. },
  1530. {
  1531. "name": "Guilherme Blanco",
  1532. "email": "guilhermeblanco@gmail.com"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1544. "homepage": "http://www.doctrine-project.org",
  1545. "keywords": [
  1546. "inflection",
  1547. "pluralize",
  1548. "singularize",
  1549. "string"
  1550. ],
  1551. "support": {
  1552. "source": "https://github.com/doctrine/inflector/tree/master"
  1553. },
  1554. "time": "2017-07-22T12:18:28+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/lexer",
  1558. "version": "1.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/lexer.git",
  1562. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1567. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.3.2"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "^4.5"
  1575. },
  1576. "type": "library",
  1577. "extra": {
  1578. "branch-alias": {
  1579. "dev-master": "1.0.x-dev"
  1580. }
  1581. },
  1582. "autoload": {
  1583. "psr-4": {
  1584. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Guilherme Blanco",
  1598. "email": "guilhermeblanco@gmail.com"
  1599. },
  1600. {
  1601. "name": "Johannes Schmitt",
  1602. "email": "schmittjoh@gmail.com"
  1603. }
  1604. ],
  1605. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1606. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1607. "keywords": [
  1608. "annotations",
  1609. "docblock",
  1610. "lexer",
  1611. "parser",
  1612. "php"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/doctrine/lexer/issues",
  1616. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1617. },
  1618. "time": "2019-06-08T11:03:04+00:00"
  1619. },
  1620. {
  1621. "name": "drupal/addtoany",
  1622. "version": "1.22.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.22"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.22.zip",
  1631. "reference": "8.x-1.22",
  1632. "shasum": "350bfc33c163d11d137005cb56e6a1f0eaa35f04"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.22",
  1641. "datestamp": "1698826527",
  1642. "security-coverage": {
  1643. "status": "covered",
  1644. "message": "Covered by Drupal's security advisory policy"
  1645. }
  1646. }
  1647. },
  1648. "notification-url": "https://packages.drupal.org/8/downloads",
  1649. "license": [
  1650. "GPL-2.0-or-later"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "AddToAny",
  1655. "homepage": "https://www.drupal.org/user/2640913"
  1656. },
  1657. {
  1658. "name": "micropat",
  1659. "homepage": "https://www.drupal.org/user/260224"
  1660. }
  1661. ],
  1662. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1663. "homepage": "https://www.drupal.org/project/addtoany",
  1664. "keywords": [
  1665. "Drupal"
  1666. ],
  1667. "support": {
  1668. "source": "https://git.drupalcode.org/project/addtoany",
  1669. "issues": "https://www.drupal.org/project/issues/addtoany"
  1670. }
  1671. },
  1672. {
  1673. "name": "drupal/admin_toolbar",
  1674. "version": "2.5.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.5"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  1683. "reference": "8.x-2.5",
  1684. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  1685. },
  1686. "require": {
  1687. "drupal/core": "^8.8.0 || ^9.0"
  1688. },
  1689. "type": "drupal-module",
  1690. "extra": {
  1691. "drupal": {
  1692. "version": "8.x-2.5",
  1693. "datestamp": "1629907119",
  1694. "security-coverage": {
  1695. "status": "covered",
  1696. "message": "Covered by Drupal's security advisory policy"
  1697. }
  1698. }
  1699. },
  1700. "notification-url": "https://packages.drupal.org/8/downloads",
  1701. "license": [
  1702. "GPL-2.0-or-later"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "Wilfrid Roze (eme)",
  1707. "homepage": "https://www.drupal.org/u/eme",
  1708. "role": "Maintainer"
  1709. },
  1710. {
  1711. "name": "Romain Jarraud (romainj)",
  1712. "homepage": "https://www.drupal.org/u/romainj",
  1713. "role": "Maintainer"
  1714. },
  1715. {
  1716. "name": "Adrian Cid Almaguer (adriancid)",
  1717. "homepage": "https://www.drupal.org/u/adriancid",
  1718. "email": "adriancid@gmail.com",
  1719. "role": "Maintainer"
  1720. },
  1721. {
  1722. "name": "Mohamed Anis Taktak (matio89)",
  1723. "homepage": "https://www.drupal.org/u/matio89",
  1724. "role": "Maintainer"
  1725. },
  1726. {
  1727. "name": "japerry",
  1728. "homepage": "https://www.drupal.org/user/45640"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "musa.thomas",
  1736. "homepage": "https://www.drupal.org/user/1213824"
  1737. },
  1738. {
  1739. "name": "romainj",
  1740. "homepage": "https://www.drupal.org/user/370706"
  1741. }
  1742. ],
  1743. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1744. "homepage": "http://drupal.org/project/admin_toolbar",
  1745. "keywords": [
  1746. "Drupal",
  1747. "Toolbar"
  1748. ],
  1749. "support": {
  1750. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1751. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1752. }
  1753. },
  1754. {
  1755. "name": "drupal/adminimal_theme",
  1756. "version": "1.6.0",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1760. "reference": "8.x-1.6"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1765. "reference": "8.x-1.6",
  1766. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1767. },
  1768. "require": {
  1769. "drupal/core": "^8.8 || ^9"
  1770. },
  1771. "type": "drupal-theme",
  1772. "extra": {
  1773. "drupal": {
  1774. "version": "8.x-1.6",
  1775. "datestamp": "1602006937",
  1776. "security-coverage": {
  1777. "status": "covered",
  1778. "message": "Covered by Drupal's security advisory policy"
  1779. }
  1780. }
  1781. },
  1782. "notification-url": "https://packages.drupal.org/8/downloads",
  1783. "license": [
  1784. "GPL-2.0+"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "ANDiTKO",
  1789. "homepage": "https://www.drupal.org/user/1428124"
  1790. },
  1791. {
  1792. "name": "andrey.troeglazov",
  1793. "homepage": "https://www.drupal.org/user/3145389"
  1794. },
  1795. {
  1796. "name": "realityloop",
  1797. "homepage": "https://www.drupal.org/user/139189"
  1798. },
  1799. {
  1800. "name": "rjjakes",
  1801. "homepage": "https://www.drupal.org/user/3457245"
  1802. }
  1803. ],
  1804. "description": "Drupal administration theme with modern minimalist design.",
  1805. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1806. "support": {
  1807. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1808. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1809. }
  1810. },
  1811. {
  1812. "name": "drupal/audiofield",
  1813. "version": "1.13.0",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://git.drupalcode.org/project/audiofield.git",
  1817. "reference": "8.x-1.13"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1822. "reference": "8.x-1.13",
  1823. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1824. },
  1825. "require": {
  1826. "drupal/core": "^8 || ^9 || ^10"
  1827. },
  1828. "type": "drupal-module",
  1829. "extra": {
  1830. "drupal": {
  1831. "version": "8.x-1.13",
  1832. "datestamp": "1681143245",
  1833. "security-coverage": {
  1834. "status": "covered",
  1835. "message": "Covered by Drupal's security advisory policy"
  1836. }
  1837. },
  1838. "drush": {
  1839. "services": {
  1840. "drush.services.yml": "^9"
  1841. }
  1842. }
  1843. },
  1844. "notification-url": "https://packages.drupal.org/8/downloads",
  1845. "license": [
  1846. "GPL-2.0-or-later"
  1847. ],
  1848. "authors": [
  1849. {
  1850. "name": "Daniel Moberly",
  1851. "homepage": "https://www.drupal.org/u/danielmoberly",
  1852. "role": "Maintainer"
  1853. },
  1854. {
  1855. "name": "tamerzg",
  1856. "homepage": "https://www.drupal.org/user/464564"
  1857. }
  1858. ],
  1859. "description": "AudioField Module",
  1860. "homepage": "https://www.drupal.org/project/audiofield",
  1861. "support": {
  1862. "source": "https://git.drupalcode.org/project/audiofield",
  1863. "issues": "https://www.drupal.org/project/issues/audiofield"
  1864. }
  1865. },
  1866. {
  1867. "name": "drupal/autologout",
  1868. "version": "1.3.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://git.drupalcode.org/project/autologout.git",
  1872. "reference": "8.x-1.3"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1877. "reference": "8.x-1.3",
  1878. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1879. },
  1880. "require": {
  1881. "drupal/core": "^8 || ^9"
  1882. },
  1883. "type": "drupal-module",
  1884. "extra": {
  1885. "drupal": {
  1886. "version": "8.x-1.3",
  1887. "datestamp": "1587193798",
  1888. "security-coverage": {
  1889. "status": "covered",
  1890. "message": "Covered by Drupal's security advisory policy"
  1891. }
  1892. }
  1893. },
  1894. "notification-url": "https://packages.drupal.org/8/downloads",
  1895. "license": [
  1896. "GPL-2.0+"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "ajits",
  1901. "homepage": "https://www.drupal.org/user/981944"
  1902. },
  1903. {
  1904. "name": "AjK",
  1905. "homepage": "https://www.drupal.org/user/39030"
  1906. },
  1907. {
  1908. "name": "boshtian",
  1909. "homepage": "https://www.drupal.org/user/1773456"
  1910. },
  1911. {
  1912. "name": "dandrews",
  1913. "homepage": "https://www.drupal.org/user/2014490"
  1914. },
  1915. {
  1916. "name": "darksnow",
  1917. "homepage": "https://www.drupal.org/user/391915"
  1918. },
  1919. {
  1920. "name": "japerry",
  1921. "homepage": "https://www.drupal.org/user/45640"
  1922. },
  1923. {
  1924. "name": "johnennew",
  1925. "homepage": "https://www.drupal.org/user/1150042"
  1926. },
  1927. {
  1928. "name": "jrglasgow",
  1929. "homepage": "https://www.drupal.org/user/36590"
  1930. },
  1931. {
  1932. "name": "kmasood",
  1933. "homepage": "https://www.drupal.org/user/1262860"
  1934. },
  1935. {
  1936. "name": "levelos",
  1937. "homepage": "https://www.drupal.org/user/54135"
  1938. },
  1939. {
  1940. "name": "prabeen.giri",
  1941. "homepage": "https://www.drupal.org/user/913078"
  1942. },
  1943. {
  1944. "name": "scott_earnest",
  1945. "homepage": "https://www.drupal.org/user/416158"
  1946. },
  1947. {
  1948. "name": "str8",
  1949. "homepage": "https://www.drupal.org/user/2865063"
  1950. }
  1951. ],
  1952. "description": "Adds automated timed logout.",
  1953. "homepage": "http://drupal.org/project/autologout",
  1954. "support": {
  1955. "source": "https://git.drupalcode.org/project/autologout"
  1956. }
  1957. },
  1958. {
  1959. "name": "drupal/basic",
  1960. "version": "2.1.0",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://git.drupalcode.org/project/basic.git",
  1964. "reference": "8.x-2.1"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1969. "reference": "8.x-2.1",
  1970. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1971. },
  1972. "require": {
  1973. "drupal/core": "^8.8 || ^9"
  1974. },
  1975. "type": "drupal-theme",
  1976. "extra": {
  1977. "drupal": {
  1978. "version": "8.x-2.1",
  1979. "datestamp": "1612916291",
  1980. "security-coverage": {
  1981. "status": "covered",
  1982. "message": "Covered by Drupal's security advisory policy"
  1983. }
  1984. }
  1985. },
  1986. "notification-url": "https://packages.drupal.org/8/downloads",
  1987. "license": [
  1988. "GPL-2.0+"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "Steve Krueger",
  1993. "homepage": "http://thejibe.com",
  1994. "email": "steve@thejibe.com",
  1995. "role": "Maintainer"
  1996. },
  1997. {
  1998. "name": "Joël Pittet",
  1999. "homepage": "https://www.drupal.org/u/joelpittet",
  2000. "email": "joel@pittet.ca",
  2001. "role": "Maintainer"
  2002. },
  2003. {
  2004. "name": "Leah Wagner",
  2005. "homepage": "http://thejibe.com",
  2006. "email": "leah@thejibe.com",
  2007. "role": "Maintainer"
  2008. },
  2009. {
  2010. "name": "Catherine Winters",
  2011. "homepage": "http://www.catherinewinters.com",
  2012. "email": "catherine@catherinewinters.com",
  2013. "role": "Maintainer"
  2014. },
  2015. {
  2016. "name": "Johannes Schmidt",
  2017. "homepage": "http://2tabs.com",
  2018. "email": "mail@2tabs.com",
  2019. "role": "Maintainer"
  2020. },
  2021. {
  2022. "name": "Chuck Kosman",
  2023. "homepage": "http://thejibe.com",
  2024. "email": "chuck@thejibe.com",
  2025. "role": "Maintainer"
  2026. },
  2027. {
  2028. "name": "SteveK",
  2029. "homepage": "https://www.drupal.org/user/111656"
  2030. }
  2031. ],
  2032. "description": "HTML5, SASS, Responsive grid starter theme.",
  2033. "homepage": "http://drupal.org/project/basic",
  2034. "support": {
  2035. "source": "http://cgit.drupalcode.org/basic",
  2036. "issues": "https://www.drupal.org/project/issues/basic",
  2037. "irc": "irc://irc.freenode.org/drupal-contribute"
  2038. }
  2039. },
  2040. {
  2041. "name": "drupal/better_messages",
  2042. "version": "2.0.0-alpha2",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://git.drupalcode.org/project/better_messages.git",
  2046. "reference": "2.0.0-alpha2"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2051. "reference": "2.0.0-alpha2",
  2052. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2053. },
  2054. "require": {
  2055. "drupal/core": "^8 || ^9"
  2056. },
  2057. "type": "drupal-module",
  2058. "extra": {
  2059. "drupal": {
  2060. "version": "2.0.0-alpha2",
  2061. "datestamp": "1644241962",
  2062. "security-coverage": {
  2063. "status": "not-covered",
  2064. "message": "Alpha releases are not covered by Drupal security advisories."
  2065. }
  2066. }
  2067. },
  2068. "notification-url": "https://packages.drupal.org/8/downloads",
  2069. "license": [
  2070. "GPL-2.0-or-later"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "bucefal91",
  2075. "homepage": "https://www.drupal.org/user/504128"
  2076. },
  2077. {
  2078. "name": "le72",
  2079. "homepage": "https://www.drupal.org/user/1866896"
  2080. },
  2081. {
  2082. "name": "mohammed j. razem",
  2083. "homepage": "https://www.drupal.org/user/255384"
  2084. },
  2085. {
  2086. "name": "usingsession",
  2087. "homepage": "https://www.drupal.org/user/3582050"
  2088. }
  2089. ],
  2090. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2091. "homepage": "https://www.drupal.org/project/better_messages",
  2092. "support": {
  2093. "source": "https://git.drupalcode.org/project/better_messages"
  2094. }
  2095. },
  2096. {
  2097. "name": "drupal/bulkdelete",
  2098. "version": "dev-1.x",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2102. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2103. },
  2104. "require": {
  2105. "drupal/core": "^8.7.7 || ^9"
  2106. },
  2107. "type": "drupal-module",
  2108. "extra": {
  2109. "branch-alias": {
  2110. "dev-1.x": "1.x-dev"
  2111. },
  2112. "drupal": {
  2113. "version": "8.x-1.x-dev",
  2114. "datestamp": "1569586386",
  2115. "security-coverage": {
  2116. "status": "not-covered",
  2117. "message": "Dev releases are not covered by Drupal security advisories."
  2118. }
  2119. }
  2120. },
  2121. "notification-url": "https://packages.drupal.org/8/downloads",
  2122. "license": [
  2123. "GPL-2.0-or-later"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Kars-T",
  2128. "homepage": "https://www.drupal.org/user/224499"
  2129. },
  2130. {
  2131. "name": "Rahul Seth",
  2132. "homepage": "https://www.drupal.org/user/2694359"
  2133. },
  2134. {
  2135. "name": "adriancid",
  2136. "homepage": "https://www.drupal.org/user/1962106"
  2137. },
  2138. {
  2139. "name": "robertDouglass",
  2140. "homepage": "https://www.drupal.org/user/5449"
  2141. }
  2142. ],
  2143. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2144. "homepage": "https://www.drupal.org/project/bulkdelete",
  2145. "support": {
  2146. "source": "https://git.drupalcode.org/project/bulkdelete"
  2147. },
  2148. "time": "2020-05-24T06:01:38+00:00"
  2149. },
  2150. {
  2151. "name": "drupal/color_field",
  2152. "version": "2.5.0",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://git.drupalcode.org/project/color_field.git",
  2156. "reference": "8.x-2.5"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.5.zip",
  2161. "reference": "8.x-2.5",
  2162. "shasum": "9b0d299cb24d3cb21c7fb6a6a08d32ae5aed8652"
  2163. },
  2164. "require": {
  2165. "drupal/core": "^8 || ^9"
  2166. },
  2167. "require-dev": {
  2168. "drupal/core-recommended": "*",
  2169. "drupal/token": "~1.3"
  2170. },
  2171. "suggest": {
  2172. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2173. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2174. },
  2175. "type": "drupal-module",
  2176. "extra": {
  2177. "drupal": {
  2178. "version": "8.x-2.5",
  2179. "datestamp": "1632938098",
  2180. "security-coverage": {
  2181. "status": "covered",
  2182. "message": "Covered by Drupal's security advisory policy"
  2183. }
  2184. }
  2185. },
  2186. "notification-url": "https://packages.drupal.org/8/downloads",
  2187. "license": [
  2188. "GPL-2.0-or-later"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "targoo",
  2193. "homepage": "https://www.drupal.org/user/431910",
  2194. "role": "Maintainer"
  2195. },
  2196. {
  2197. "name": "Nick Wilde",
  2198. "homepage": "https://www.drupal.org/user/nickwilde",
  2199. "role": "Maintainer"
  2200. },
  2201. {
  2202. "name": "targoo",
  2203. "homepage": "https://www.drupal.org/user/431910"
  2204. }
  2205. ],
  2206. "description": "Provides a color field type to store the color value and opacity",
  2207. "homepage": "https://www.drupal.org/project/color_field",
  2208. "support": {
  2209. "source": "https://git.drupalcode.org/project/color_field",
  2210. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2211. }
  2212. },
  2213. {
  2214. "name": "drupal/config_devel",
  2215. "version": "1.8.0",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://git.drupalcode.org/project/config_devel.git",
  2219. "reference": "8.x-1.8"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2224. "reference": "8.x-1.8",
  2225. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2226. },
  2227. "require": {
  2228. "drupal/core": "^8 || ^9"
  2229. },
  2230. "type": "drupal-module",
  2231. "extra": {
  2232. "drupal": {
  2233. "version": "8.x-1.8",
  2234. "datestamp": "1609324318",
  2235. "security-coverage": {
  2236. "status": "covered",
  2237. "message": "Covered by Drupal's security advisory policy"
  2238. }
  2239. }
  2240. },
  2241. "notification-url": "https://packages.drupal.org/8/downloads",
  2242. "license": [
  2243. "GPL-2.0+"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "alexpott",
  2248. "homepage": "https://www.drupal.org/user/157725"
  2249. },
  2250. {
  2251. "name": "benjy",
  2252. "homepage": "https://www.drupal.org/user/1852732"
  2253. },
  2254. {
  2255. "name": "chx",
  2256. "homepage": "https://www.drupal.org/user/9446"
  2257. },
  2258. {
  2259. "name": "joachim",
  2260. "homepage": "https://www.drupal.org/user/107701"
  2261. },
  2262. {
  2263. "name": "vijaycs85",
  2264. "homepage": "https://www.drupal.org/user/93488"
  2265. }
  2266. ],
  2267. "description": "Helps developers work with configuration.",
  2268. "homepage": "https://www.drupal.org/project/config_devel",
  2269. "support": {
  2270. "source": "https://git.drupalcode.org/project/config_devel"
  2271. }
  2272. },
  2273. {
  2274. "name": "drupal/config_filter",
  2275. "version": "1.12.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://git.drupalcode.org/project/config_filter.git",
  2279. "reference": "8.x-1.12"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2284. "reference": "8.x-1.12",
  2285. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2286. },
  2287. "require": {
  2288. "drupal/core": "^8.8 || ^9 || ^10"
  2289. },
  2290. "suggest": {
  2291. "drupal/config_split": "Split site configuration for different environments."
  2292. },
  2293. "type": "drupal-module",
  2294. "extra": {
  2295. "drupal": {
  2296. "version": "8.x-1.12",
  2297. "datestamp": "1698308496",
  2298. "security-coverage": {
  2299. "status": "covered",
  2300. "message": "Covered by Drupal's security advisory policy"
  2301. }
  2302. }
  2303. },
  2304. "notification-url": "https://packages.drupal.org/8/downloads",
  2305. "license": [
  2306. "GPL-2.0-or-later"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "Fabian Bircher",
  2311. "homepage": "https://www.drupal.org/u/bircher",
  2312. "email": "opensource@fabianbircher.com",
  2313. "role": "Maintainer"
  2314. },
  2315. {
  2316. "name": "Nuvole Web",
  2317. "homepage": "http://nuvole.org",
  2318. "email": "info@nuvole.org",
  2319. "role": "Maintainer"
  2320. },
  2321. {
  2322. "name": "pescetti",
  2323. "homepage": "https://www.drupal.org/user/436244"
  2324. }
  2325. ],
  2326. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2327. "homepage": "https://www.drupal.org/project/config_filter",
  2328. "keywords": [
  2329. "Drupal",
  2330. "configuration",
  2331. "configuration management"
  2332. ],
  2333. "support": {
  2334. "source": "https://git.drupalcode.org/project/config_filter",
  2335. "issues": "https://www.drupal.org/project/issues/config_filter",
  2336. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2337. }
  2338. },
  2339. {
  2340. "name": "drupal/config_ignore",
  2341. "version": "3.3.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2345. "reference": "8.x-3.3"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2350. "reference": "8.x-3.3",
  2351. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2352. },
  2353. "require": {
  2354. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2355. },
  2356. "require-dev": {
  2357. "drupal/config_filter": "^1.8||^2.2",
  2358. "drush/drush": "^10 || ^11 || ^12"
  2359. },
  2360. "type": "drupal-module",
  2361. "extra": {
  2362. "drupal": {
  2363. "version": "8.x-3.3",
  2364. "datestamp": "1713299496",
  2365. "security-coverage": {
  2366. "status": "covered",
  2367. "message": "Covered by Drupal's security advisory policy"
  2368. }
  2369. }
  2370. },
  2371. "notification-url": "https://packages.drupal.org/8/downloads",
  2372. "license": [
  2373. "GPL-2.0-or-later"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Tommy Lynge Jørgensen",
  2378. "homepage": "https://www.drupal.org/u/tlyngej",
  2379. "email": "tlyngej@gmail.com",
  2380. "role": "Maintainer"
  2381. },
  2382. {
  2383. "name": "Fabian Bircher",
  2384. "homepage": "https://www.drupal.org/u/bircher",
  2385. "role": "Maintainer"
  2386. },
  2387. {
  2388. "name": "tlyngej",
  2389. "homepage": "https://www.drupal.org/user/413139"
  2390. }
  2391. ],
  2392. "description": "Ignore certain configuration during import and export.",
  2393. "homepage": "http://drupal.org/project/config_ignore",
  2394. "support": {
  2395. "source": "https://git.drupalcode.org/project/config_ignore",
  2396. "issues": "http://drupal.org/project/config_ignore"
  2397. }
  2398. },
  2399. {
  2400. "name": "drupal/config_update",
  2401. "version": "1.7.0",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://git.drupalcode.org/project/config_update.git",
  2405. "reference": "8.x-1.7"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2410. "reference": "8.x-1.7",
  2411. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2412. },
  2413. "require": {
  2414. "drupal/core": "^8 || ^9"
  2415. },
  2416. "type": "drupal-module",
  2417. "extra": {
  2418. "drupal": {
  2419. "version": "8.x-1.7",
  2420. "datestamp": "1586355587",
  2421. "security-coverage": {
  2422. "status": "covered",
  2423. "message": "Covered by Drupal's security advisory policy"
  2424. }
  2425. }
  2426. },
  2427. "notification-url": "https://packages.drupal.org/8/downloads",
  2428. "license": [
  2429. "GPL-2.0-or-later"
  2430. ],
  2431. "authors": [
  2432. {
  2433. "name": "codebymikey",
  2434. "homepage": "https://www.drupal.org/user/3573206"
  2435. },
  2436. {
  2437. "name": "pasqualle",
  2438. "homepage": "https://www.drupal.org/user/80733"
  2439. },
  2440. {
  2441. "name": "vishalkhode",
  2442. "homepage": "https://www.drupal.org/user/2439156"
  2443. }
  2444. ],
  2445. "description": "Provides basic revert and update functionality for other modules",
  2446. "homepage": "https://www.drupal.org/project/config_update",
  2447. "support": {
  2448. "source": "https://git.drupalcode.org/project/config_update"
  2449. }
  2450. },
  2451. {
  2452. "name": "drupal/context",
  2453. "version": "4.1.0",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://git.drupalcode.org/project/context.git",
  2457. "reference": "8.x-4.1"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2462. "reference": "8.x-4.1",
  2463. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2464. },
  2465. "require": {
  2466. "drupal/core": "^8.8 || ^9"
  2467. },
  2468. "type": "drupal-module",
  2469. "extra": {
  2470. "drupal": {
  2471. "version": "8.x-4.1",
  2472. "datestamp": "1628187190",
  2473. "security-coverage": {
  2474. "status": "covered",
  2475. "message": "Covered by Drupal's security advisory policy"
  2476. }
  2477. }
  2478. },
  2479. "notification-url": "https://packages.drupal.org/8/downloads",
  2480. "license": [
  2481. "MIT"
  2482. ],
  2483. "authors": [
  2484. {
  2485. "name": "Christoffer Palm",
  2486. "homepage": "http://www.oddhill.se/",
  2487. "email": "christoffer.palm@oddhill.se",
  2488. "role": "Developer"
  2489. },
  2490. {
  2491. "name": "boshtian",
  2492. "homepage": "https://www.drupal.org/user/1773456"
  2493. },
  2494. {
  2495. "name": "colan",
  2496. "homepage": "https://www.drupal.org/user/58704"
  2497. },
  2498. {
  2499. "name": "emanaton",
  2500. "homepage": "https://www.drupal.org/user/120853"
  2501. },
  2502. {
  2503. "name": "febbraro",
  2504. "homepage": "https://www.drupal.org/user/43670"
  2505. },
  2506. {
  2507. "name": "fizk",
  2508. "homepage": "https://www.drupal.org/user/473174"
  2509. },
  2510. {
  2511. "name": "hass",
  2512. "homepage": "https://www.drupal.org/user/85918"
  2513. },
  2514. {
  2515. "name": "hefox",
  2516. "homepage": "https://www.drupal.org/user/426416"
  2517. },
  2518. {
  2519. "name": "jmiccolis",
  2520. "homepage": "https://www.drupal.org/user/31731"
  2521. },
  2522. {
  2523. "name": "Kristen Pol",
  2524. "homepage": "https://www.drupal.org/user/8389"
  2525. },
  2526. {
  2527. "name": "nedjo",
  2528. "homepage": "https://www.drupal.org/user/4481"
  2529. },
  2530. {
  2531. "name": "NormySan",
  2532. "homepage": "https://www.drupal.org/user/112352"
  2533. },
  2534. {
  2535. "name": "patricksettle",
  2536. "homepage": "https://www.drupal.org/user/26618"
  2537. },
  2538. {
  2539. "name": "paulocs",
  2540. "homepage": "https://www.drupal.org/user/3640109"
  2541. },
  2542. {
  2543. "name": "Steven Jones",
  2544. "homepage": "https://www.drupal.org/user/99644"
  2545. },
  2546. {
  2547. "name": "tekante",
  2548. "homepage": "https://www.drupal.org/user/640024"
  2549. },
  2550. {
  2551. "name": "yhahn",
  2552. "homepage": "https://www.drupal.org/user/264833"
  2553. }
  2554. ],
  2555. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2556. "homepage": "https://github.com/oddhill/context",
  2557. "keywords": [
  2558. "Drupal",
  2559. "block",
  2560. "conditions",
  2561. "context",
  2562. "visibility"
  2563. ],
  2564. "support": {
  2565. "source": "https://github.com/oddhill/context",
  2566. "issues": "https://github.com/oddhill/context/issues",
  2567. "docs": "https://github.com/oddhill/context"
  2568. }
  2569. },
  2570. {
  2571. "name": "drupal/core",
  2572. "version": "8.9.20",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/drupal/core.git",
  2576. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2581. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "asm89/stack-cors": "^1.1",
  2586. "composer/semver": "^1.0",
  2587. "doctrine/annotations": "^1.4",
  2588. "doctrine/common": "^2.7",
  2589. "easyrdf/easyrdf": "^0.9",
  2590. "egulias/email-validator": "^2.0",
  2591. "ext-date": "*",
  2592. "ext-dom": "*",
  2593. "ext-filter": "*",
  2594. "ext-gd": "*",
  2595. "ext-hash": "*",
  2596. "ext-json": "*",
  2597. "ext-pcre": "*",
  2598. "ext-pdo": "*",
  2599. "ext-session": "*",
  2600. "ext-simplexml": "*",
  2601. "ext-spl": "*",
  2602. "ext-tokenizer": "*",
  2603. "ext-xml": "*",
  2604. "guzzlehttp/guzzle": "^6.3",
  2605. "laminas/laminas-diactoros": "^1.8",
  2606. "laminas/laminas-feed": "^2.12",
  2607. "masterminds/html5": "^2.1",
  2608. "pear/archive_tar": "^1.4.14",
  2609. "php": "^7.0.8",
  2610. "psr/log": "^1.0",
  2611. "stack/builder": "^1.0",
  2612. "symfony-cmf/routing": "^1.4",
  2613. "symfony/class-loader": "~3.4.0",
  2614. "symfony/console": "~3.4.0",
  2615. "symfony/dependency-injection": "~3.4.26",
  2616. "symfony/event-dispatcher": "~3.4.0",
  2617. "symfony/http-foundation": "~3.4.35",
  2618. "symfony/http-kernel": "~3.4.14",
  2619. "symfony/polyfill-iconv": "^1.0",
  2620. "symfony/process": "~3.4.0",
  2621. "symfony/psr-http-message-bridge": "^1.1.2",
  2622. "symfony/routing": "~3.4.0",
  2623. "symfony/serializer": "~3.4.0",
  2624. "symfony/translation": "~3.4.0",
  2625. "symfony/validator": "~3.4.0",
  2626. "symfony/yaml": "~3.4.5",
  2627. "twig/twig": "^1.38.2",
  2628. "typo3/phar-stream-wrapper": "^3.1.3"
  2629. },
  2630. "conflict": {
  2631. "drupal/pathauto": "<1.6",
  2632. "drush/drush": "<8.1.10"
  2633. },
  2634. "replace": {
  2635. "drupal/action": "self.version",
  2636. "drupal/aggregator": "self.version",
  2637. "drupal/automated_cron": "self.version",
  2638. "drupal/ban": "self.version",
  2639. "drupal/bartik": "self.version",
  2640. "drupal/basic_auth": "self.version",
  2641. "drupal/big_pipe": "self.version",
  2642. "drupal/block": "self.version",
  2643. "drupal/block_content": "self.version",
  2644. "drupal/block_place": "self.version",
  2645. "drupal/book": "self.version",
  2646. "drupal/breakpoint": "self.version",
  2647. "drupal/ckeditor": "self.version",
  2648. "drupal/claro": "self.version",
  2649. "drupal/classy": "self.version",
  2650. "drupal/color": "self.version",
  2651. "drupal/comment": "self.version",
  2652. "drupal/config": "self.version",
  2653. "drupal/config_translation": "self.version",
  2654. "drupal/contact": "self.version",
  2655. "drupal/content_moderation": "self.version",
  2656. "drupal/content_translation": "self.version",
  2657. "drupal/contextual": "self.version",
  2658. "drupal/core-annotation": "self.version",
  2659. "drupal/core-assertion": "self.version",
  2660. "drupal/core-bridge": "self.version",
  2661. "drupal/core-class-finder": "self.version",
  2662. "drupal/core-datetime": "self.version",
  2663. "drupal/core-dependency-injection": "self.version",
  2664. "drupal/core-diff": "self.version",
  2665. "drupal/core-discovery": "self.version",
  2666. "drupal/core-event-dispatcher": "self.version",
  2667. "drupal/core-file-cache": "self.version",
  2668. "drupal/core-file-security": "self.version",
  2669. "drupal/core-filesystem": "self.version",
  2670. "drupal/core-gettext": "self.version",
  2671. "drupal/core-graph": "self.version",
  2672. "drupal/core-http-foundation": "self.version",
  2673. "drupal/core-php-storage": "self.version",
  2674. "drupal/core-plugin": "self.version",
  2675. "drupal/core-proxy-builder": "self.version",
  2676. "drupal/core-render": "self.version",
  2677. "drupal/core-serialization": "self.version",
  2678. "drupal/core-transliteration": "self.version",
  2679. "drupal/core-utility": "self.version",
  2680. "drupal/core-uuid": "self.version",
  2681. "drupal/core-version": "self.version",
  2682. "drupal/datetime": "self.version",
  2683. "drupal/datetime_range": "self.version",
  2684. "drupal/dblog": "self.version",
  2685. "drupal/dynamic_page_cache": "self.version",
  2686. "drupal/editor": "self.version",
  2687. "drupal/entity_reference": "self.version",
  2688. "drupal/field": "self.version",
  2689. "drupal/field_layout": "self.version",
  2690. "drupal/field_ui": "self.version",
  2691. "drupal/file": "self.version",
  2692. "drupal/filter": "self.version",
  2693. "drupal/forum": "self.version",
  2694. "drupal/hal": "self.version",
  2695. "drupal/help": "self.version",
  2696. "drupal/help_topics": "self.version",
  2697. "drupal/history": "self.version",
  2698. "drupal/image": "self.version",
  2699. "drupal/inline_form_errors": "self.version",
  2700. "drupal/jsonapi": "self.version",
  2701. "drupal/language": "self.version",
  2702. "drupal/layout_builder": "self.version",
  2703. "drupal/layout_discovery": "self.version",
  2704. "drupal/link": "self.version",
  2705. "drupal/locale": "self.version",
  2706. "drupal/media": "self.version",
  2707. "drupal/media_library": "self.version",
  2708. "drupal/menu_link_content": "self.version",
  2709. "drupal/menu_ui": "self.version",
  2710. "drupal/migrate": "self.version",
  2711. "drupal/migrate_drupal": "self.version",
  2712. "drupal/migrate_drupal_multilingual": "self.version",
  2713. "drupal/migrate_drupal_ui": "self.version",
  2714. "drupal/minimal": "self.version",
  2715. "drupal/node": "self.version",
  2716. "drupal/options": "self.version",
  2717. "drupal/page_cache": "self.version",
  2718. "drupal/path": "self.version",
  2719. "drupal/path_alias": "self.version",
  2720. "drupal/quickedit": "self.version",
  2721. "drupal/rdf": "self.version",
  2722. "drupal/responsive_image": "self.version",
  2723. "drupal/rest": "self.version",
  2724. "drupal/search": "self.version",
  2725. "drupal/serialization": "self.version",
  2726. "drupal/settings_tray": "self.version",
  2727. "drupal/seven": "self.version",
  2728. "drupal/shortcut": "self.version",
  2729. "drupal/simpletest": "self.version",
  2730. "drupal/standard": "self.version",
  2731. "drupal/stark": "self.version",
  2732. "drupal/statistics": "self.version",
  2733. "drupal/syslog": "self.version",
  2734. "drupal/system": "self.version",
  2735. "drupal/taxonomy": "self.version",
  2736. "drupal/telephone": "self.version",
  2737. "drupal/text": "self.version",
  2738. "drupal/toolbar": "self.version",
  2739. "drupal/tour": "self.version",
  2740. "drupal/tracker": "self.version",
  2741. "drupal/update": "self.version",
  2742. "drupal/user": "self.version",
  2743. "drupal/views": "self.version",
  2744. "drupal/views_ui": "self.version",
  2745. "drupal/workflows": "self.version",
  2746. "drupal/workspaces": "self.version"
  2747. },
  2748. "type": "drupal-core",
  2749. "extra": {
  2750. "drupal-scaffold": {
  2751. "file-mapping": {
  2752. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2753. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2754. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2755. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2756. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2757. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2758. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2759. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2760. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2761. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2762. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2763. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2764. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2765. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2766. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2767. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2768. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2769. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2770. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2771. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2772. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2773. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2774. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2775. }
  2776. }
  2777. },
  2778. "autoload": {
  2779. "psr-4": {
  2780. "Drupal\\Core\\": "lib/Drupal/Core",
  2781. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2782. "Drupal\\Component\\": "lib/Drupal/Component"
  2783. },
  2784. "classmap": [
  2785. "lib/Drupal.php",
  2786. "lib/Drupal/Component/Utility/Timer.php",
  2787. "lib/Drupal/Component/Utility/Unicode.php",
  2788. "lib/Drupal/Core/Database/Database.php",
  2789. "lib/Drupal/Core/DrupalKernel.php",
  2790. "lib/Drupal/Core/DrupalKernelInterface.php",
  2791. "lib/Drupal/Core/Site/Settings.php"
  2792. ]
  2793. },
  2794. "notification-url": "https://packagist.org/downloads/",
  2795. "license": [
  2796. "GPL-2.0-or-later"
  2797. ],
  2798. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2799. "support": {
  2800. "source": "https://github.com/drupal/core/tree/8.9.20"
  2801. },
  2802. "time": "2021-11-17T21:24:28+00:00"
  2803. },
  2804. {
  2805. "name": "drupal/core-composer-scaffold",
  2806. "version": "8.9.20",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2810. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2815. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "composer-plugin-api": "^1 || ^2",
  2820. "php": ">=7.0.8"
  2821. },
  2822. "conflict": {
  2823. "drupal-composer/drupal-scaffold": "*"
  2824. },
  2825. "require-dev": {
  2826. "composer/composer": "^1.8@stable"
  2827. },
  2828. "type": "composer-plugin",
  2829. "extra": {
  2830. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2831. "branch-alias": {
  2832. "dev-master": "1.0.x-dev"
  2833. }
  2834. },
  2835. "autoload": {
  2836. "psr-4": {
  2837. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2838. }
  2839. },
  2840. "notification-url": "https://packagist.org/downloads/",
  2841. "license": [
  2842. "GPL-2.0-or-later"
  2843. ],
  2844. "description": "A flexible Composer project scaffold builder.",
  2845. "homepage": "https://www.drupal.org/project/drupal",
  2846. "keywords": [
  2847. "drupal"
  2848. ],
  2849. "support": {
  2850. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2851. },
  2852. "time": "2020-08-07T22:30:30+00:00"
  2853. },
  2854. {
  2855. "name": "drupal/core-project-message",
  2856. "version": "8.9.20",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://github.com/drupal/core-project-message.git",
  2860. "reference": "3f8fa28128f1fef68ee0e6647011a543ef92be5b"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/3f8fa28128f1fef68ee0e6647011a543ef92be5b",
  2865. "reference": "3f8fa28128f1fef68ee0e6647011a543ef92be5b",
  2866. "shasum": ""
  2867. },
  2868. "require": {
  2869. "composer-plugin-api": "^1.1 || ^2",
  2870. "php": ">=7.0.8"
  2871. },
  2872. "type": "composer-plugin",
  2873. "extra": {
  2874. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2875. },
  2876. "autoload": {
  2877. "psr-4": {
  2878. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "GPL-2.0-or-later"
  2884. ],
  2885. "description": "Adds a message after Composer installation.",
  2886. "homepage": "https://www.drupal.org/project/drupal",
  2887. "keywords": [
  2888. "drupal"
  2889. ],
  2890. "support": {
  2891. "source": "https://github.com/drupal/core-project-message/tree/8.9.4"
  2892. },
  2893. "time": "2020-08-02T22:04:49+00:00"
  2894. },
  2895. {
  2896. "name": "drupal/core-recommended",
  2897. "version": "8.9.20",
  2898. "source": {
  2899. "type": "git",
  2900. "url": "https://github.com/drupal/core-recommended.git",
  2901. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2902. },
  2903. "dist": {
  2904. "type": "zip",
  2905. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2906. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2907. "shasum": ""
  2908. },
  2909. "require": {
  2910. "asm89/stack-cors": "1.3.0",
  2911. "composer/semver": "1.5.1",
  2912. "doctrine/annotations": "v1.4.0",
  2913. "doctrine/cache": "v1.6.2",
  2914. "doctrine/collections": "v1.4.0",
  2915. "doctrine/common": "v2.7.3",
  2916. "doctrine/inflector": "v1.2.0",
  2917. "doctrine/lexer": "1.0.2",
  2918. "drupal/core": "8.9.20",
  2919. "easyrdf/easyrdf": "0.9.1",
  2920. "egulias/email-validator": "2.1.17",
  2921. "guzzlehttp/guzzle": "6.5.4",
  2922. "guzzlehttp/promises": "v1.3.1",
  2923. "guzzlehttp/psr7": "1.6.1",
  2924. "laminas/laminas-diactoros": "1.8.7p2",
  2925. "laminas/laminas-escaper": "2.6.1",
  2926. "laminas/laminas-feed": "2.12.2",
  2927. "laminas/laminas-stdlib": "3.2.1",
  2928. "laminas/laminas-zendframework-bridge": "1.0.4",
  2929. "masterminds/html5": "2.3.0",
  2930. "paragonie/random_compat": "v9.99.99",
  2931. "pear/archive_tar": "1.4.14",
  2932. "pear/console_getopt": "v1.4.3",
  2933. "pear/pear-core-minimal": "v1.10.10",
  2934. "pear/pear_exception": "v1.0.1",
  2935. "psr/container": "1.0.0",
  2936. "psr/http-message": "1.0.1",
  2937. "psr/log": "1.1.3",
  2938. "ralouphie/getallheaders": "3.0.3",
  2939. "stack/builder": "v1.0.5",
  2940. "symfony-cmf/routing": "1.4.1",
  2941. "symfony/class-loader": "v3.4.41",
  2942. "symfony/console": "v3.4.41",
  2943. "symfony/debug": "v3.4.41",
  2944. "symfony/dependency-injection": "v3.4.41",
  2945. "symfony/event-dispatcher": "v3.4.41",
  2946. "symfony/http-foundation": "v3.4.41",
  2947. "symfony/http-kernel": "v3.4.44",
  2948. "symfony/polyfill-ctype": "v1.17.0",
  2949. "symfony/polyfill-iconv": "v1.17.0",
  2950. "symfony/polyfill-intl-idn": "v1.17.0",
  2951. "symfony/polyfill-mbstring": "v1.17.0",
  2952. "symfony/polyfill-php56": "v1.17.0",
  2953. "symfony/polyfill-php70": "v1.17.0",
  2954. "symfony/polyfill-php72": "v1.17.0",
  2955. "symfony/polyfill-util": "v1.17.0",
  2956. "symfony/process": "v3.4.41",
  2957. "symfony/psr-http-message-bridge": "v1.1.2",
  2958. "symfony/routing": "v3.4.41",
  2959. "symfony/serializer": "v3.4.41",
  2960. "symfony/translation": "v3.4.41",
  2961. "symfony/validator": "v3.4.41",
  2962. "symfony/yaml": "v3.4.41",
  2963. "twig/twig": "v1.42.5",
  2964. "typo3/phar-stream-wrapper": "v3.1.4"
  2965. },
  2966. "conflict": {
  2967. "webflo/drupal-core-strict": "*"
  2968. },
  2969. "type": "metapackage",
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "GPL-2.0-or-later"
  2973. ],
  2974. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2975. "support": {
  2976. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2977. },
  2978. "time": "2021-11-17T21:24:28+00:00"
  2979. },
  2980. {
  2981. "name": "drupal/ctools",
  2982. "version": "3.9.0",
  2983. "source": {
  2984. "type": "git",
  2985. "url": "https://git.drupalcode.org/project/ctools.git",
  2986. "reference": "8.x-3.9"
  2987. },
  2988. "dist": {
  2989. "type": "zip",
  2990. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  2991. "reference": "8.x-3.9",
  2992. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  2993. },
  2994. "require": {
  2995. "drupal/core": "^8.8 || ^9"
  2996. },
  2997. "type": "drupal-module",
  2998. "extra": {
  2999. "drupal": {
  3000. "version": "8.x-3.9",
  3001. "datestamp": "1658864511",
  3002. "security-coverage": {
  3003. "status": "covered",
  3004. "message": "Covered by Drupal's security advisory policy"
  3005. }
  3006. },
  3007. "branch-alias": {
  3008. "dev-8.x-3.x": "3.x-dev"
  3009. }
  3010. },
  3011. "notification-url": "https://packages.drupal.org/8/downloads",
  3012. "license": [
  3013. "GPL-2.0-or-later"
  3014. ],
  3015. "authors": [
  3016. {
  3017. "name": "Kris Vanderwater (EclipseGc)",
  3018. "homepage": "https://www.drupal.org/u/eclipsegc",
  3019. "role": "Maintainer"
  3020. },
  3021. {
  3022. "name": "Jakob Perry (japerry)",
  3023. "homepage": "https://www.drupal.org/u/japerry",
  3024. "role": "Maintainer"
  3025. },
  3026. {
  3027. "name": "Tim Plunkett (tim.plunkett)",
  3028. "homepage": "https://www.drupal.org/u/timplunkett",
  3029. "role": "Maintainer"
  3030. },
  3031. {
  3032. "name": "James Gilliland (neclimdul)",
  3033. "homepage": "https://www.drupal.org/u/neclimdul",
  3034. "role": "Maintainer"
  3035. },
  3036. {
  3037. "name": "Daniel Wehner (dawehner)",
  3038. "homepage": "https://www.drupal.org/u/dawehner",
  3039. "role": "Maintainer"
  3040. },
  3041. {
  3042. "name": "joelpittet",
  3043. "homepage": "https://www.drupal.org/user/160302"
  3044. },
  3045. {
  3046. "name": "merlinofchaos",
  3047. "homepage": "https://www.drupal.org/user/26979"
  3048. },
  3049. {
  3050. "name": "neclimdul",
  3051. "homepage": "https://www.drupal.org/user/48673"
  3052. },
  3053. {
  3054. "name": "sdboyer",
  3055. "homepage": "https://www.drupal.org/user/146719"
  3056. },
  3057. {
  3058. "name": "sun",
  3059. "homepage": "https://www.drupal.org/user/54136"
  3060. },
  3061. {
  3062. "name": "tim.plunkett",
  3063. "homepage": "https://www.drupal.org/user/241634"
  3064. }
  3065. ],
  3066. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3067. "homepage": "https://www.drupal.org/project/ctools",
  3068. "support": {
  3069. "source": "https://git.drupalcode.org/project/ctools",
  3070. "issues": "https://www.drupal.org/project/issues/ctools"
  3071. }
  3072. },
  3073. {
  3074. "name": "drupal/date_range_formatter",
  3075. "version": "4.0.2",
  3076. "source": {
  3077. "type": "git",
  3078. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3079. "reference": "4.0.2"
  3080. },
  3081. "dist": {
  3082. "type": "zip",
  3083. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3084. "reference": "4.0.2",
  3085. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3086. },
  3087. "require": {
  3088. "drupal/core": "^8 || ^9 || ^10"
  3089. },
  3090. "type": "drupal-module",
  3091. "extra": {
  3092. "drupal": {
  3093. "version": "4.0.2",
  3094. "datestamp": "1703156621",
  3095. "security-coverage": {
  3096. "status": "covered",
  3097. "message": "Covered by Drupal's security advisory policy"
  3098. }
  3099. }
  3100. },
  3101. "notification-url": "https://packages.drupal.org/8/downloads",
  3102. "license": [
  3103. "GPL-2.0-or-later"
  3104. ],
  3105. "authors": [
  3106. {
  3107. "name": "maximpodorov",
  3108. "homepage": "https://www.drupal.org/user/515310"
  3109. },
  3110. {
  3111. "name": "sudishth",
  3112. "homepage": "https://www.drupal.org/user/1440562"
  3113. }
  3114. ],
  3115. "description": "Formats date ranges.",
  3116. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3117. "support": {
  3118. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3119. }
  3120. },
  3121. {
  3122. "name": "drupal/devel",
  3123. "version": "4.2.1",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://git.drupalcode.org/project/devel.git",
  3127. "reference": "4.2.1"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3132. "reference": "4.2.1",
  3133. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3134. },
  3135. "require": {
  3136. "doctrine/common": "^2.7",
  3137. "drupal/core": "^8.8 || ^9",
  3138. "symfony/var-dumper": "^4 || ^5"
  3139. },
  3140. "conflict": {
  3141. "kint-php/kint": "<3"
  3142. },
  3143. "require-dev": {
  3144. "drush/drush": "^10"
  3145. },
  3146. "suggest": {
  3147. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3148. },
  3149. "type": "drupal-module",
  3150. "extra": {
  3151. "drupal": {
  3152. "version": "4.2.1",
  3153. "datestamp": "1664317444",
  3154. "security-coverage": {
  3155. "status": "covered",
  3156. "message": "Covered by Drupal's security advisory policy"
  3157. }
  3158. },
  3159. "drush": {
  3160. "services": {
  3161. "drush.services.yml": "^9 || ^10"
  3162. }
  3163. }
  3164. },
  3165. "notification-url": "https://packages.drupal.org/8/downloads",
  3166. "license": [
  3167. "GPL-2.0-or-later"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "moshe weitzman",
  3172. "homepage": "https://www.drupal.org/user/23"
  3173. }
  3174. ],
  3175. "description": "Various blocks, pages, and functions for developers.",
  3176. "homepage": "https://www.drupal.org/project/devel",
  3177. "support": {
  3178. "source": "https://gitlab.com/drupalspoons/devel",
  3179. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3180. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3181. }
  3182. },
  3183. {
  3184. "name": "drupal/domain",
  3185. "version": "1.0.0-beta8",
  3186. "source": {
  3187. "type": "git",
  3188. "url": "https://git.drupalcode.org/project/domain.git",
  3189. "reference": "8.x-1.0-beta8"
  3190. },
  3191. "dist": {
  3192. "type": "zip",
  3193. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3194. "reference": "8.x-1.0-beta8",
  3195. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3196. },
  3197. "require": {
  3198. "drupal/core": "^8 || ^9"
  3199. },
  3200. "require-dev": {
  3201. "drupal/domain_access": "*",
  3202. "drupal/domain_config": "*"
  3203. },
  3204. "type": "drupal-module",
  3205. "extra": {
  3206. "drupal": {
  3207. "version": "8.x-1.0-beta8",
  3208. "datestamp": "1677511311",
  3209. "security-coverage": {
  3210. "status": "not-covered",
  3211. "message": "Beta releases are not covered by Drupal security advisories."
  3212. }
  3213. }
  3214. },
  3215. "notification-url": "https://packages.drupal.org/8/downloads",
  3216. "license": [
  3217. "GPL-2.0-or-later"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "agentrickard",
  3222. "homepage": "https://www.drupal.org/user/20975"
  3223. },
  3224. {
  3225. "name": "nonsie",
  3226. "homepage": "https://www.drupal.org/user/29899"
  3227. },
  3228. {
  3229. "name": "webflo",
  3230. "homepage": "https://www.drupal.org/user/254778"
  3231. }
  3232. ],
  3233. "description": "Creates domain records within a Drupal installation.",
  3234. "homepage": "https://www.drupal.org/project/domain",
  3235. "support": {
  3236. "source": "https://git.drupalcode.org/project/domain"
  3237. }
  3238. },
  3239. {
  3240. "name": "drupal/domain_access",
  3241. "version": "1.0.0-beta8",
  3242. "require": {
  3243. "drupal/core": "^8 || ^9",
  3244. "drupal/domain": "*"
  3245. },
  3246. "type": "metapackage",
  3247. "extra": {
  3248. "drupal": {
  3249. "version": "8.x-1.0-beta8",
  3250. "datestamp": "1677511311",
  3251. "security-coverage": {
  3252. "status": "not-covered",
  3253. "message": "Beta releases are not covered by Drupal security advisories."
  3254. }
  3255. }
  3256. },
  3257. "notification-url": "https://packages.drupal.org/8/downloads",
  3258. "license": [
  3259. "GPL-2.0-or-later"
  3260. ],
  3261. "authors": [
  3262. {
  3263. "name": "agentrickard",
  3264. "homepage": "https://www.drupal.org/user/20975"
  3265. },
  3266. {
  3267. "name": "nonsie",
  3268. "homepage": "https://www.drupal.org/user/29899"
  3269. },
  3270. {
  3271. "name": "webflo",
  3272. "homepage": "https://www.drupal.org/user/254778"
  3273. }
  3274. ],
  3275. "description": "Domain-based access control for content.",
  3276. "homepage": "https://www.drupal.org/project/domain",
  3277. "support": {
  3278. "source": "https://git.drupalcode.org/project/domain"
  3279. }
  3280. },
  3281. {
  3282. "name": "drupal/domain_config",
  3283. "version": "1.0.0-beta8",
  3284. "require": {
  3285. "drupal/core": "^8 || ^9",
  3286. "drupal/domain": "*"
  3287. },
  3288. "type": "metapackage",
  3289. "extra": {
  3290. "drupal": {
  3291. "version": "8.x-1.0-beta8",
  3292. "datestamp": "1677511311",
  3293. "security-coverage": {
  3294. "status": "not-covered",
  3295. "message": "Beta releases are not covered by Drupal security advisories."
  3296. }
  3297. }
  3298. },
  3299. "notification-url": "https://packages.drupal.org/8/downloads",
  3300. "license": [
  3301. "GPL-2.0-or-later"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "agentrickard",
  3306. "homepage": "https://www.drupal.org/user/20975"
  3307. },
  3308. {
  3309. "name": "nonsie",
  3310. "homepage": "https://www.drupal.org/user/29899"
  3311. },
  3312. {
  3313. "name": "webflo",
  3314. "homepage": "https://www.drupal.org/user/254778"
  3315. }
  3316. ],
  3317. "description": "Allows domain specific configuration.",
  3318. "homepage": "https://www.drupal.org/project/domain",
  3319. "support": {
  3320. "source": "https://git.drupalcode.org/project/domain"
  3321. }
  3322. },
  3323. {
  3324. "name": "drupal/domain_menu_access",
  3325. "version": "1.0.0-alpha2",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3329. "reference": "8.x-1.0-alpha2"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-8.x-1.0-alpha2.zip",
  3334. "reference": "8.x-1.0-alpha2",
  3335. "shasum": "9382513e0cd172844923686a0bb9f2324ba11709"
  3336. },
  3337. "require": {
  3338. "drupal/core": "~8.0",
  3339. "drupal/domain": "*",
  3340. "drupal/domain_access": "*"
  3341. },
  3342. "type": "drupal-module",
  3343. "extra": {
  3344. "drupal": {
  3345. "version": "8.x-1.0-alpha2",
  3346. "datestamp": "1519214884",
  3347. "security-coverage": {
  3348. "status": "not-covered",
  3349. "message": "Alpha releases are not covered by Drupal security advisories."
  3350. }
  3351. }
  3352. },
  3353. "notification-url": "https://packages.drupal.org/8/downloads",
  3354. "license": [
  3355. "GPL-2.0-or-later"
  3356. ],
  3357. "authors": [
  3358. {
  3359. "name": "maciej.zgadzaj",
  3360. "homepage": "https://www.drupal.org/user/271491"
  3361. },
  3362. {
  3363. "name": "pifagor",
  3364. "homepage": "https://www.drupal.org/user/2375692"
  3365. },
  3366. {
  3367. "name": "Sebastien M.",
  3368. "homepage": "https://www.drupal.org/user/380104"
  3369. },
  3370. {
  3371. "name": "tim-diels",
  3372. "homepage": "https://www.drupal.org/user/2915097"
  3373. }
  3374. ],
  3375. "description": "Domain-based access control for menu link.",
  3376. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3377. "support": {
  3378. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3379. }
  3380. },
  3381. {
  3382. "name": "drupal/domain_site_settings",
  3383. "version": "1.6.0",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3387. "reference": "8.x-1.6"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3392. "reference": "8.x-1.6",
  3393. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3394. },
  3395. "require": {
  3396. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3397. "drupal/domain": "^1.0 || ^2.0",
  3398. "drupal/domain_config": "*"
  3399. },
  3400. "type": "drupal-module",
  3401. "extra": {
  3402. "drupal": {
  3403. "version": "8.x-1.6",
  3404. "datestamp": "1726238712",
  3405. "security-coverage": {
  3406. "status": "covered",
  3407. "message": "Covered by Drupal's security advisory policy"
  3408. }
  3409. }
  3410. },
  3411. "notification-url": "https://packages.drupal.org/8/downloads",
  3412. "license": [
  3413. "GPL-2.0+"
  3414. ],
  3415. "authors": [
  3416. {
  3417. "name": "aloknarwaria",
  3418. "homepage": "https://www.drupal.org/user/906640"
  3419. },
  3420. {
  3421. "name": "jeroent",
  3422. "homepage": "https://www.drupal.org/user/2228934"
  3423. },
  3424. {
  3425. "name": "malaynayak",
  3426. "homepage": "https://www.drupal.org/user/3529755"
  3427. }
  3428. ],
  3429. "description": "Basic Site Setting for Domains.",
  3430. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3431. "keywords": [
  3432. "Drupal"
  3433. ],
  3434. "support": {
  3435. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3436. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3437. }
  3438. },
  3439. {
  3440. "name": "drupal/email_registration",
  3441. "version": "1.1.0",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://git.drupalcode.org/project/email_registration.git",
  3445. "reference": "8.x-1.1"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3450. "reference": "8.x-1.1",
  3451. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3452. },
  3453. "require": {
  3454. "drupal/core": "^8.7.7 || ^9"
  3455. },
  3456. "conflict": {
  3457. "drupal/commerce": "<2.12"
  3458. },
  3459. "require-dev": {
  3460. "drupal/commerce": "^2.0"
  3461. },
  3462. "type": "drupal-module",
  3463. "extra": {
  3464. "drupal": {
  3465. "version": "8.x-1.1",
  3466. "datestamp": "1592317072",
  3467. "security-coverage": {
  3468. "status": "covered",
  3469. "message": "Covered by Drupal's security advisory policy"
  3470. }
  3471. }
  3472. },
  3473. "notification-url": "https://packages.drupal.org/8/downloads",
  3474. "license": [
  3475. "GPL-2.0-or-later"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Greg Knaddison (greggles)",
  3480. "homepage": "https://www.drupal.org/u/greggles",
  3481. "role": "Maintainer"
  3482. },
  3483. {
  3484. "name": "Andrey Postnikov (andypost)",
  3485. "homepage": "https://www.drupal.org/u/andypost",
  3486. "role": "Maintainer"
  3487. },
  3488. {
  3489. "name": "Chris Herberte",
  3490. "homepage": "https://www.drupal.org/u/chris-herberte",
  3491. "role": "Maintainer"
  3492. },
  3493. {
  3494. "name": "Moshe Weitzman (moshe weitzman)",
  3495. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "Grevil",
  3500. "homepage": "https://www.drupal.org/user/3668491"
  3501. },
  3502. {
  3503. "name": "moshe weitzman",
  3504. "homepage": "https://www.drupal.org/user/23"
  3505. }
  3506. ],
  3507. "description": "Allows users to register with an email address as their username.",
  3508. "homepage": "https://www.drupal.org/project/email_registration",
  3509. "support": {
  3510. "source": "https://git.drupalcode.org/project/email_registration",
  3511. "issues": "http://drupal.org/project/issues/email_registration"
  3512. }
  3513. },
  3514. {
  3515. "name": "drupal/entity",
  3516. "version": "1.3.0",
  3517. "source": {
  3518. "type": "git",
  3519. "url": "https://git.drupalcode.org/project/entity.git",
  3520. "reference": "8.x-1.3"
  3521. },
  3522. "dist": {
  3523. "type": "zip",
  3524. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3525. "reference": "8.x-1.3",
  3526. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3527. },
  3528. "require": {
  3529. "drupal/core": "^8.8.2 || ^9"
  3530. },
  3531. "type": "drupal-module",
  3532. "extra": {
  3533. "drupal": {
  3534. "version": "8.x-1.3",
  3535. "datestamp": "1646324539",
  3536. "security-coverage": {
  3537. "status": "covered",
  3538. "message": "Covered by Drupal's security advisory policy"
  3539. }
  3540. }
  3541. },
  3542. "notification-url": "https://packages.drupal.org/8/downloads",
  3543. "license": [
  3544. "GPL-2.0-or-later"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "berdir",
  3549. "homepage": "https://www.drupal.org/user/214652"
  3550. },
  3551. {
  3552. "name": "bojanz",
  3553. "homepage": "https://www.drupal.org/user/86106"
  3554. },
  3555. {
  3556. "name": "dawehner",
  3557. "homepage": "https://www.drupal.org/user/99340"
  3558. },
  3559. {
  3560. "name": "dixon_",
  3561. "homepage": "https://www.drupal.org/user/239911"
  3562. },
  3563. {
  3564. "name": "fago",
  3565. "homepage": "https://www.drupal.org/user/16747"
  3566. },
  3567. {
  3568. "name": "mglaman",
  3569. "homepage": "https://www.drupal.org/user/2416470"
  3570. },
  3571. {
  3572. "name": "TR",
  3573. "homepage": "https://www.drupal.org/user/202830"
  3574. }
  3575. ],
  3576. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3577. "homepage": "https://www.drupal.org/project/entity",
  3578. "support": {
  3579. "source": "https://git.drupalcode.org/project/entity",
  3580. "issues": "https://www.drupal.org/project/issues/entity"
  3581. }
  3582. },
  3583. {
  3584. "name": "drupal/features",
  3585. "version": "3.11.0",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://git.drupalcode.org/project/features.git",
  3589. "reference": "8.x-3.11"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3594. "reference": "8.x-3.11",
  3595. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3596. },
  3597. "require": {
  3598. "drupal/config_update": "^1.4",
  3599. "drupal/core": "^8.8 || ^9"
  3600. },
  3601. "type": "drupal-module",
  3602. "extra": {
  3603. "drupal": {
  3604. "version": "8.x-3.11",
  3605. "datestamp": "1591023154",
  3606. "security-coverage": {
  3607. "status": "covered",
  3608. "message": "Covered by Drupal's security advisory policy"
  3609. }
  3610. },
  3611. "drush": {
  3612. "services": {
  3613. "drush.services.yml": "^9"
  3614. }
  3615. }
  3616. },
  3617. "notification-url": "https://packages.drupal.org/8/downloads",
  3618. "license": [
  3619. "GPL-2.0-or-later"
  3620. ],
  3621. "authors": [
  3622. {
  3623. "name": "dawehner",
  3624. "homepage": "https://www.drupal.org/user/99340"
  3625. },
  3626. {
  3627. "name": "donquixote",
  3628. "homepage": "https://www.drupal.org/user/459338"
  3629. },
  3630. {
  3631. "name": "e2thex",
  3632. "homepage": "https://www.drupal.org/user/189123"
  3633. },
  3634. {
  3635. "name": "febbraro",
  3636. "homepage": "https://www.drupal.org/user/43670"
  3637. },
  3638. {
  3639. "name": "flocondetoile",
  3640. "homepage": "https://www.drupal.org/user/2006064"
  3641. },
  3642. {
  3643. "name": "jmiccolis",
  3644. "homepage": "https://www.drupal.org/user/31731"
  3645. },
  3646. {
  3647. "name": "joseph.olstad",
  3648. "homepage": "https://www.drupal.org/user/1321830"
  3649. },
  3650. {
  3651. "name": "mpotter",
  3652. "homepage": "https://www.drupal.org/user/616192"
  3653. },
  3654. {
  3655. "name": "nedjo",
  3656. "homepage": "https://www.drupal.org/user/4481"
  3657. },
  3658. {
  3659. "name": "tim.plunkett",
  3660. "homepage": "https://www.drupal.org/user/241634"
  3661. }
  3662. ],
  3663. "description": "Enables administrators to package configuration into modules",
  3664. "homepage": "https://www.drupal.org/project/features",
  3665. "support": {
  3666. "source": "https://git.drupalcode.org/project/features"
  3667. }
  3668. },
  3669. {
  3670. "name": "drupal/field_group",
  3671. "version": "3.3.0",
  3672. "source": {
  3673. "type": "git",
  3674. "url": "https://git.drupalcode.org/project/field_group.git",
  3675. "reference": "8.x-3.3"
  3676. },
  3677. "dist": {
  3678. "type": "zip",
  3679. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  3680. "reference": "8.x-3.3",
  3681. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  3682. },
  3683. "require": {
  3684. "drupal/core": "^8.8 || ^9"
  3685. },
  3686. "require-dev": {
  3687. "drupal/jquery_ui_accordion": "^1.0"
  3688. },
  3689. "type": "drupal-module",
  3690. "extra": {
  3691. "drupal": {
  3692. "version": "8.x-3.3",
  3693. "datestamp": "1663516404",
  3694. "security-coverage": {
  3695. "status": "covered",
  3696. "message": "Covered by Drupal's security advisory policy"
  3697. }
  3698. }
  3699. },
  3700. "notification-url": "https://packages.drupal.org/8/downloads",
  3701. "license": [
  3702. "GPL-2.0-or-later"
  3703. ],
  3704. "authors": [
  3705. {
  3706. "name": "anybody",
  3707. "homepage": "https://www.drupal.org/user/291091"
  3708. },
  3709. {
  3710. "name": "grevil",
  3711. "homepage": "https://www.drupal.org/user/3668491"
  3712. },
  3713. {
  3714. "name": "hydra",
  3715. "homepage": "https://www.drupal.org/user/647364"
  3716. },
  3717. {
  3718. "name": "joevagyok",
  3719. "homepage": "https://www.drupal.org/user/2876343"
  3720. },
  3721. {
  3722. "name": "jyve",
  3723. "homepage": "https://www.drupal.org/user/591438"
  3724. },
  3725. {
  3726. "name": "nils.destoop",
  3727. "homepage": "https://www.drupal.org/user/361625"
  3728. },
  3729. {
  3730. "name": "Stalski",
  3731. "homepage": "https://www.drupal.org/user/322618"
  3732. },
  3733. {
  3734. "name": "swentel",
  3735. "homepage": "https://www.drupal.org/user/107403"
  3736. }
  3737. ],
  3738. "description": "Provides the field_group module.",
  3739. "homepage": "https://www.drupal.org/project/field_group",
  3740. "support": {
  3741. "source": "https://git.drupalcode.org/project/field_group",
  3742. "issues": "https://www.drupal.org/project/issues/field_group"
  3743. }
  3744. },
  3745. {
  3746. "name": "drupal/filefield_sources",
  3747. "version": "1.0.0-alpha5",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3751. "reference": "8.x-1.0-alpha5"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3756. "reference": "8.x-1.0-alpha5",
  3757. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3758. },
  3759. "require": {
  3760. "drupal/core": "^8 || ^9"
  3761. },
  3762. "require-dev": {
  3763. "drupal/imce": "^2.3"
  3764. },
  3765. "type": "drupal-module",
  3766. "extra": {
  3767. "drupal": {
  3768. "version": "8.x-1.0-alpha5",
  3769. "datestamp": "1642555269",
  3770. "security-coverage": {
  3771. "status": "not-covered",
  3772. "message": "Alpha releases are not covered by Drupal security advisories."
  3773. }
  3774. }
  3775. },
  3776. "notification-url": "https://packages.drupal.org/8/downloads",
  3777. "license": [
  3778. "GPL-2.0-or-later"
  3779. ],
  3780. "authors": [
  3781. {
  3782. "name": "Nate Lampton (quicksketch)",
  3783. "homepage": "https://www.drupal.org/u/quicksketch",
  3784. "role": "Maintainer"
  3785. },
  3786. {
  3787. "name": "Andrey Khromyshev (profak)",
  3788. "homepage": "https://www.drupal.org/u/profak",
  3789. "role": "Maintainer"
  3790. },
  3791. {
  3792. "name": "David Valdez (gnuget)",
  3793. "homepage": "https://www.drupal.org/u/gnuget",
  3794. "role": "Maintainer"
  3795. },
  3796. {
  3797. "name": "quicksketch",
  3798. "homepage": "https://www.drupal.org/user/35821"
  3799. }
  3800. ],
  3801. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3802. "homepage": "https://www.drupal.org/project/filefield_sources",
  3803. "support": {
  3804. "source": "https://git.drupalcode.org/project/filefield_sources",
  3805. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3806. "irc": "irc://irc.freenode.org/drupal-contribute"
  3807. }
  3808. },
  3809. {
  3810. "name": "drupal/filter_perms",
  3811. "version": "1.0.0-alpha1",
  3812. "source": {
  3813. "type": "git",
  3814. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3815. "reference": "8.x-1.0-alpha1"
  3816. },
  3817. "dist": {
  3818. "type": "zip",
  3819. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3820. "reference": "8.x-1.0-alpha1",
  3821. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3822. },
  3823. "require": {
  3824. "drupal/core": "^8 || ^9"
  3825. },
  3826. "type": "drupal-module",
  3827. "extra": {
  3828. "drupal": {
  3829. "version": "8.x-1.0-alpha1",
  3830. "datestamp": "1595202904",
  3831. "security-coverage": {
  3832. "status": "not-covered",
  3833. "message": "Alpha releases are not covered by Drupal security advisories."
  3834. }
  3835. }
  3836. },
  3837. "notification-url": "https://packages.drupal.org/8/downloads",
  3838. "license": [
  3839. "GPL-2.0-or-later"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "cYu",
  3844. "homepage": "https://www.drupal.org/user/202205"
  3845. },
  3846. {
  3847. "name": "deekayen",
  3848. "homepage": "https://www.drupal.org/user/972"
  3849. },
  3850. {
  3851. "name": "ivavictoria",
  3852. "homepage": "https://www.drupal.org/user/3061533"
  3853. },
  3854. {
  3855. "name": "justcaldwell",
  3856. "homepage": "https://www.drupal.org/user/290069"
  3857. },
  3858. {
  3859. "name": "mgbellaire",
  3860. "homepage": "https://www.drupal.org/user/1831932"
  3861. },
  3862. {
  3863. "name": "willzyx",
  3864. "homepage": "https://www.drupal.org/user/1043862"
  3865. }
  3866. ],
  3867. "description": "Provides role and module filters to simplify the user permissions page.",
  3868. "homepage": "https://www.drupal.org/project/filter_perms",
  3869. "support": {
  3870. "source": "https://git.drupalcode.org/project/filter_perms"
  3871. }
  3872. },
  3873. {
  3874. "name": "drupal/honeypot",
  3875. "version": "2.0.2",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://git.drupalcode.org/project/honeypot.git",
  3879. "reference": "2.0.2"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3884. "reference": "2.0.2",
  3885. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3886. },
  3887. "require": {
  3888. "drupal/core": "^8.8.2 || ^9"
  3889. },
  3890. "type": "drupal-module",
  3891. "extra": {
  3892. "drupal": {
  3893. "version": "2.0.2",
  3894. "datestamp": "1651895165",
  3895. "security-coverage": {
  3896. "status": "covered",
  3897. "message": "Covered by Drupal's security advisory policy"
  3898. }
  3899. }
  3900. },
  3901. "notification-url": "https://packages.drupal.org/8/downloads",
  3902. "license": [
  3903. "GPL-2.0-or-later"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "Jeff Geerling",
  3908. "homepage": "https://www.drupal.org/user/389011",
  3909. "email": "geerlingguy@mac.com"
  3910. },
  3911. {
  3912. "name": "Manuel Garcia",
  3913. "homepage": "https://www.drupal.org/user/213194"
  3914. },
  3915. {
  3916. "name": "TR",
  3917. "homepage": "https://www.drupal.org/user/202830"
  3918. },
  3919. {
  3920. "name": "vijaycs85",
  3921. "homepage": "https://www.drupal.org/user/93488"
  3922. }
  3923. ],
  3924. "description": "Mitigates spam form submissions using the honeypot method.",
  3925. "homepage": "https://www.drupal.org/project/honeypot",
  3926. "keywords": [
  3927. "deterrent",
  3928. "form",
  3929. "honeypot",
  3930. "honeytrap",
  3931. "php",
  3932. "spam"
  3933. ],
  3934. "support": {
  3935. "source": "https://git.drupalcode.org/project/honeypot",
  3936. "issues": "https://www.drupal.org/project/issues/honeypot"
  3937. }
  3938. },
  3939. {
  3940. "name": "drupal/jquery_ui",
  3941. "version": "1.4.0",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3945. "reference": "8.x-1.4"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3950. "reference": "8.x-1.4",
  3951. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3952. },
  3953. "require": {
  3954. "drupal/core": "^8 || ^9"
  3955. },
  3956. "type": "drupal-module",
  3957. "extra": {
  3958. "drupal": {
  3959. "version": "8.x-1.4",
  3960. "datestamp": "1582149957",
  3961. "security-coverage": {
  3962. "status": "covered",
  3963. "message": "Covered by Drupal's security advisory policy"
  3964. }
  3965. }
  3966. },
  3967. "notification-url": "https://packages.drupal.org/8/downloads",
  3968. "license": [
  3969. "GPL-2.0-or-later"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "bnjmnm",
  3974. "homepage": "https://www.drupal.org/user/2369194"
  3975. },
  3976. {
  3977. "name": "jjeff",
  3978. "homepage": "https://www.drupal.org/user/17190"
  3979. },
  3980. {
  3981. "name": "lauriii",
  3982. "homepage": "https://www.drupal.org/user/1078742"
  3983. },
  3984. {
  3985. "name": "litwol",
  3986. "homepage": "https://www.drupal.org/user/78134"
  3987. },
  3988. {
  3989. "name": "mfb",
  3990. "homepage": "https://www.drupal.org/user/12302"
  3991. },
  3992. {
  3993. "name": "mfer",
  3994. "homepage": "https://www.drupal.org/user/25701"
  3995. },
  3996. {
  3997. "name": "mikelutz",
  3998. "homepage": "https://www.drupal.org/user/2972409"
  3999. },
  4000. {
  4001. "name": "nod_",
  4002. "homepage": "https://www.drupal.org/user/598310"
  4003. },
  4004. {
  4005. "name": "phenaproxima",
  4006. "homepage": "https://www.drupal.org/user/205645"
  4007. },
  4008. {
  4009. "name": "RobLoach",
  4010. "homepage": "https://www.drupal.org/user/61114"
  4011. },
  4012. {
  4013. "name": "sun",
  4014. "homepage": "https://www.drupal.org/user/54136"
  4015. },
  4016. {
  4017. "name": "webchick",
  4018. "homepage": "https://www.drupal.org/user/24967"
  4019. },
  4020. {
  4021. "name": "Wim Leers",
  4022. "homepage": "https://www.drupal.org/user/99777"
  4023. },
  4024. {
  4025. "name": "zrpnr",
  4026. "homepage": "https://www.drupal.org/user/1448368"
  4027. }
  4028. ],
  4029. "description": "Provides jQuery UI library.",
  4030. "homepage": "https://www.drupal.org/project/jquery_ui",
  4031. "support": {
  4032. "source": "https://git.drupalcode.org/project/jquery_ui"
  4033. }
  4034. },
  4035. {
  4036. "name": "drupal/jquery_ui_draggable",
  4037. "version": "1.2.0",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4041. "reference": "8.x-1.2"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  4046. "reference": "8.x-1.2",
  4047. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  4048. },
  4049. "require": {
  4050. "drupal/core": "^8 || ^9",
  4051. "drupal/jquery_ui": "*"
  4052. },
  4053. "type": "drupal-module",
  4054. "extra": {
  4055. "drupal": {
  4056. "version": "8.x-1.2",
  4057. "datestamp": "1582150027",
  4058. "security-coverage": {
  4059. "status": "covered",
  4060. "message": "Covered by Drupal's security advisory policy"
  4061. }
  4062. }
  4063. },
  4064. "notification-url": "https://packages.drupal.org/8/downloads",
  4065. "license": [
  4066. "GPL-2.0-or-later"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "bnjmnm",
  4071. "homepage": "https://www.drupal.org/user/2369194"
  4072. },
  4073. {
  4074. "name": "lauriii",
  4075. "homepage": "https://www.drupal.org/user/1078742"
  4076. },
  4077. {
  4078. "name": "zrpnr",
  4079. "homepage": "https://www.drupal.org/user/1448368"
  4080. }
  4081. ],
  4082. "description": "Provides jQuery UI Draggable library.",
  4083. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4084. "support": {
  4085. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4086. }
  4087. },
  4088. {
  4089. "name": "drupal/jquery_ui_droppable",
  4090. "version": "1.2.0",
  4091. "source": {
  4092. "type": "git",
  4093. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4094. "reference": "8.x-1.2"
  4095. },
  4096. "dist": {
  4097. "type": "zip",
  4098. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4099. "reference": "8.x-1.2",
  4100. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4101. },
  4102. "require": {
  4103. "drupal/core": "^8 || ^9",
  4104. "drupal/jquery_ui": "*",
  4105. "drupal/jquery_ui_draggable": "*"
  4106. },
  4107. "type": "drupal-module",
  4108. "extra": {
  4109. "drupal": {
  4110. "version": "8.x-1.2",
  4111. "datestamp": "1582150071",
  4112. "security-coverage": {
  4113. "status": "covered",
  4114. "message": "Covered by Drupal's security advisory policy"
  4115. }
  4116. }
  4117. },
  4118. "notification-url": "https://packages.drupal.org/8/downloads",
  4119. "license": [
  4120. "GPL-2.0-or-later"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "bnjmnm",
  4125. "homepage": "https://www.drupal.org/user/2369194"
  4126. },
  4127. {
  4128. "name": "lauriii",
  4129. "homepage": "https://www.drupal.org/user/1078742"
  4130. },
  4131. {
  4132. "name": "zrpnr",
  4133. "homepage": "https://www.drupal.org/user/1448368"
  4134. }
  4135. ],
  4136. "description": "Provides jQuery UI Droppable library.",
  4137. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4138. "support": {
  4139. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4140. }
  4141. },
  4142. {
  4143. "name": "drupal/jquery_ui_sortable",
  4144. "version": "1.1.0",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4148. "reference": "8.x-1.1"
  4149. },
  4150. "dist": {
  4151. "type": "zip",
  4152. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4153. "reference": "8.x-1.1",
  4154. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4155. },
  4156. "require": {
  4157. "drupal/core": "^8 || ^9",
  4158. "drupal/jquery_ui": "*"
  4159. },
  4160. "type": "drupal-module",
  4161. "extra": {
  4162. "drupal": {
  4163. "version": "8.x-1.1",
  4164. "datestamp": "1583174744",
  4165. "security-coverage": {
  4166. "status": "covered",
  4167. "message": "Covered by Drupal's security advisory policy"
  4168. }
  4169. }
  4170. },
  4171. "notification-url": "https://packages.drupal.org/8/downloads",
  4172. "license": [
  4173. "GPL-2.0-or-later"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "bnjmnm",
  4178. "homepage": "https://www.drupal.org/user/2369194"
  4179. },
  4180. {
  4181. "name": "lauriii",
  4182. "homepage": "https://www.drupal.org/user/1078742"
  4183. },
  4184. {
  4185. "name": "zrpnr",
  4186. "homepage": "https://www.drupal.org/user/1448368"
  4187. }
  4188. ],
  4189. "description": "Provides jQuery UI Sortable library.",
  4190. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4191. "support": {
  4192. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4193. }
  4194. },
  4195. {
  4196. "name": "drupal/linkit",
  4197. "version": "6.0.0-beta3",
  4198. "source": {
  4199. "type": "git",
  4200. "url": "https://git.drupalcode.org/project/linkit.git",
  4201. "reference": "6.0.0-beta3"
  4202. },
  4203. "dist": {
  4204. "type": "zip",
  4205. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  4206. "reference": "6.0.0-beta3",
  4207. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  4208. },
  4209. "require": {
  4210. "drupal/core": "^8.7.7 || ^9"
  4211. },
  4212. "require-dev": {
  4213. "drupal/imce": "*"
  4214. },
  4215. "type": "drupal-module",
  4216. "extra": {
  4217. "drupal": {
  4218. "version": "6.0.0-beta3",
  4219. "datestamp": "1632946984",
  4220. "security-coverage": {
  4221. "status": "not-covered",
  4222. "message": "Beta releases are not covered by Drupal security advisories."
  4223. }
  4224. }
  4225. },
  4226. "notification-url": "https://packages.drupal.org/8/downloads",
  4227. "license": [
  4228. "GPL-2.0-or-later"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Emil Stjerneman",
  4233. "homepage": "https://stjerneman.com",
  4234. "email": "emil@stjerneman.com",
  4235. "role": "Maintainer"
  4236. },
  4237. {
  4238. "name": "johnwebdev",
  4239. "homepage": "https://www.drupal.org/user/3331569"
  4240. },
  4241. {
  4242. "name": "mark_fullmer",
  4243. "homepage": "https://www.drupal.org/user/2612816"
  4244. }
  4245. ],
  4246. "description": "Linkit - Enriched linking experience",
  4247. "homepage": "http://drupal.org/project/linkit",
  4248. "support": {
  4249. "source": "http://cgit.drupalcode.org/linkit",
  4250. "issues": "http://drupal.org/project/linkit"
  4251. }
  4252. },
  4253. {
  4254. "name": "drupal/login_emailusername",
  4255. "version": "2.1.0",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4259. "reference": "2.1.0"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4264. "reference": "2.1.0",
  4265. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4266. },
  4267. "require": {
  4268. "drupal/core": "^8.8 || ^9 || ^10"
  4269. },
  4270. "type": "drupal-module",
  4271. "extra": {
  4272. "drupal": {
  4273. "version": "2.1.0",
  4274. "datestamp": "1677072401",
  4275. "security-coverage": {
  4276. "status": "covered",
  4277. "message": "Covered by Drupal's security advisory policy"
  4278. }
  4279. },
  4280. "branch-alias": {
  4281. "dev-8.x-1.x": "8.1.x-dev"
  4282. }
  4283. },
  4284. "notification-url": "https://packages.drupal.org/8/downloads",
  4285. "license": [
  4286. "GPL-2.0-or-later"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "See contributors",
  4291. "homepage": "https://www.drupal.org/node/2820429/committers",
  4292. "role": "contributor"
  4293. },
  4294. {
  4295. "name": "rjjakes",
  4296. "homepage": "https://www.drupal.org/user/3457245"
  4297. },
  4298. {
  4299. "name": "VladimirAus",
  4300. "homepage": "https://www.drupal.org/user/673120"
  4301. }
  4302. ],
  4303. "description": "Login with the email as username.",
  4304. "homepage": "https://drupal.org/project/login_emailusername",
  4305. "support": {
  4306. "source": "https://git.drupalcode.org/project/login_emailusername",
  4307. "issues": "https://drupal.org/project/issues/login_emailusername"
  4308. }
  4309. },
  4310. {
  4311. "name": "drupal/maillog",
  4312. "version": "1.0.0-beta1",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://git.drupalcode.org/project/maillog.git",
  4316. "reference": "8.x-1.0-beta1"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4321. "reference": "8.x-1.0-beta1",
  4322. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4323. },
  4324. "require": {
  4325. "drupal/core": "^8 || ^9"
  4326. },
  4327. "type": "drupal-module",
  4328. "extra": {
  4329. "drupal": {
  4330. "version": "8.x-1.0-beta1",
  4331. "datestamp": "1600800168",
  4332. "security-coverage": {
  4333. "status": "not-covered",
  4334. "message": "Beta releases are not covered by Drupal security advisories."
  4335. }
  4336. }
  4337. },
  4338. "notification-url": "https://packages.drupal.org/8/downloads",
  4339. "license": [
  4340. "GPL-2.0-or-later"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "berdir",
  4345. "homepage": "https://www.drupal.org/user/214652"
  4346. },
  4347. {
  4348. "name": "damienmckenna",
  4349. "homepage": "https://www.drupal.org/user/108450"
  4350. },
  4351. {
  4352. "name": "miro_dietiker",
  4353. "homepage": "https://www.drupal.org/user/227761"
  4354. },
  4355. {
  4356. "name": "pluess",
  4357. "homepage": "https://www.drupal.org/user/84659"
  4358. }
  4359. ],
  4360. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4361. "homepage": "https://www.drupal.org/project/maillog",
  4362. "support": {
  4363. "source": "https://git.drupalcode.org/project/maillog"
  4364. }
  4365. },
  4366. {
  4367. "name": "drupal/menu_admin_per_menu",
  4368. "version": "1.1.0",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4372. "reference": "8.x-1.1"
  4373. },
  4374. "dist": {
  4375. "type": "zip",
  4376. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4377. "reference": "8.x-1.1",
  4378. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4379. },
  4380. "require": {
  4381. "drupal/core": "^8 || ^9"
  4382. },
  4383. "type": "drupal-module",
  4384. "extra": {
  4385. "drupal": {
  4386. "version": "8.x-1.1",
  4387. "datestamp": "1591098397",
  4388. "security-coverage": {
  4389. "status": "covered",
  4390. "message": "Covered by Drupal's security advisory policy"
  4391. }
  4392. }
  4393. },
  4394. "notification-url": "https://packages.drupal.org/8/downloads",
  4395. "license": [
  4396. "GPL-2.0-or-later"
  4397. ],
  4398. "authors": [
  4399. {
  4400. "name": "anrikun",
  4401. "homepage": "https://www.drupal.org/user/410199"
  4402. },
  4403. {
  4404. "name": "jeroent",
  4405. "homepage": "https://www.drupal.org/user/2228934"
  4406. },
  4407. {
  4408. "name": "jonas139",
  4409. "homepage": "https://www.drupal.org/user/2873401"
  4410. },
  4411. {
  4412. "name": "mkdok",
  4413. "homepage": "https://www.drupal.org/user/3308753"
  4414. }
  4415. ],
  4416. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4417. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4418. "support": {
  4419. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4420. }
  4421. },
  4422. {
  4423. "name": "drupal/metatag",
  4424. "version": "1.16.0",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://git.drupalcode.org/project/metatag.git",
  4428. "reference": "8.x-1.16"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  4433. "reference": "8.x-1.16",
  4434. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  4435. },
  4436. "require": {
  4437. "drupal/core": "^8 || ^9",
  4438. "drupal/token": "^1.0"
  4439. },
  4440. "require-dev": {
  4441. "drupal/devel": "^4.0",
  4442. "drupal/metatag_dc": "*",
  4443. "drupal/metatag_open_graph": "*",
  4444. "drupal/page_manager": "4.x-dev",
  4445. "drupal/panelizer": "4.x-dev",
  4446. "drupal/redirect": "1.x-dev"
  4447. },
  4448. "type": "drupal-module",
  4449. "extra": {
  4450. "drupal": {
  4451. "version": "8.x-1.16",
  4452. "datestamp": "1615820867",
  4453. "security-coverage": {
  4454. "status": "covered",
  4455. "message": "Covered by Drupal's security advisory policy"
  4456. }
  4457. }
  4458. },
  4459. "notification-url": "https://packages.drupal.org/8/downloads",
  4460. "license": [
  4461. "GPL-2.0-or-later"
  4462. ],
  4463. "authors": [
  4464. {
  4465. "name": "See contributors",
  4466. "homepage": "https://www.drupal.org/node/640498/committers",
  4467. "role": "Developer"
  4468. },
  4469. {
  4470. "name": "dave reid",
  4471. "homepage": "https://www.drupal.org/user/53892"
  4472. }
  4473. ],
  4474. "description": "Manage meta tags for all entities.",
  4475. "homepage": "https://www.drupal.org/project/metatag",
  4476. "keywords": [
  4477. "Drupal",
  4478. "seo"
  4479. ],
  4480. "support": {
  4481. "source": "https://git.drupalcode.org/project/metatag",
  4482. "issues": "https://www.drupal.org/project/issues/metatag",
  4483. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4484. }
  4485. },
  4486. {
  4487. "name": "drupal/migrate_plus",
  4488. "version": "5.0.0",
  4489. "source": {
  4490. "type": "git",
  4491. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4492. "reference": "8.x-5.0"
  4493. },
  4494. "dist": {
  4495. "type": "zip",
  4496. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4497. "reference": "8.x-5.0",
  4498. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4499. },
  4500. "require": {
  4501. "drupal/core": "^8 || ^9"
  4502. },
  4503. "require-dev": {
  4504. "drupal/migrate_example_advanced_setup": "*",
  4505. "drupal/migrate_example_setup": "*"
  4506. },
  4507. "suggest": {
  4508. "ext-soap": "*",
  4509. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4510. },
  4511. "type": "drupal-module",
  4512. "extra": {
  4513. "drupal": {
  4514. "version": "8.x-5.0",
  4515. "datestamp": "1586234154",
  4516. "security-coverage": {
  4517. "status": "covered",
  4518. "message": "Covered by Drupal's security advisory policy"
  4519. }
  4520. }
  4521. },
  4522. "notification-url": "https://packages.drupal.org/8/downloads",
  4523. "license": [
  4524. "GPL-2.0+"
  4525. ],
  4526. "authors": [
  4527. {
  4528. "name": "Mike Ryan",
  4529. "homepage": "https://www.drupal.org/u/mikeryan",
  4530. "role": "Maintainer"
  4531. },
  4532. {
  4533. "name": "Lucas Hedding",
  4534. "homepage": "https://www.drupal.org/u/heddn",
  4535. "role": "Maintainer"
  4536. }
  4537. ],
  4538. "description": "Enhancements to core migration support.",
  4539. "homepage": "https://www.drupal.org/project/migrate_plus",
  4540. "support": {
  4541. "source": "https://git.drupalcode.org/project/migrate_plus",
  4542. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4543. "slack": "#migrate"
  4544. }
  4545. },
  4546. {
  4547. "name": "drupal/migrate_tools",
  4548. "version": "4.5.0",
  4549. "source": {
  4550. "type": "git",
  4551. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4552. "reference": "8.x-4.5"
  4553. },
  4554. "dist": {
  4555. "type": "zip",
  4556. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4557. "reference": "8.x-4.5",
  4558. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4559. },
  4560. "require": {
  4561. "drupal/core": "^8 || ^9",
  4562. "drupal/migrate_plus": "^4 || ^5"
  4563. },
  4564. "require-dev": {
  4565. "drupal/migrate_plus": "4.x-dev",
  4566. "drupal/migrate_source_csv": "^2.2",
  4567. "drush/drush": "^10"
  4568. },
  4569. "type": "drupal-module",
  4570. "extra": {
  4571. "drupal": {
  4572. "version": "8.x-4.5",
  4573. "datestamp": "1574693285",
  4574. "security-coverage": {
  4575. "status": "covered",
  4576. "message": "Covered by Drupal's security advisory policy"
  4577. }
  4578. },
  4579. "drush": {
  4580. "services": {
  4581. "drush.services.yml": "^9 || ^10"
  4582. }
  4583. }
  4584. },
  4585. "notification-url": "https://packages.drupal.org/8/downloads",
  4586. "license": [
  4587. "GPL-2.0-or-later"
  4588. ],
  4589. "authors": [
  4590. {
  4591. "name": "heddn",
  4592. "homepage": "https://www.drupal.org/user/1463982"
  4593. },
  4594. {
  4595. "name": "mikeryan",
  4596. "homepage": "https://www.drupal.org/user/4420"
  4597. },
  4598. {
  4599. "name": "moshe weitzman",
  4600. "homepage": "https://www.drupal.org/user/23"
  4601. }
  4602. ],
  4603. "description": "Tools to assist in developing and running migrations.",
  4604. "homepage": "http://drupal.org/project/migrate_tools",
  4605. "support": {
  4606. "source": "http://cgit.drupalcode.org/migrate_tools",
  4607. "issues": "http://drupal.org/project/migrate_tools",
  4608. "irc": "irc://irc.freenode.org/drupal-migrate"
  4609. }
  4610. },
  4611. {
  4612. "name": "drupal/pathauto",
  4613. "version": "1.10.0",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://git.drupalcode.org/project/pathauto.git",
  4617. "reference": "8.x-1.10"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4622. "reference": "8.x-1.10",
  4623. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4624. },
  4625. "require": {
  4626. "drupal/core": "^8.8 || ^9",
  4627. "drupal/ctools": "*",
  4628. "drupal/token": "*"
  4629. },
  4630. "suggest": {
  4631. "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."
  4632. },
  4633. "type": "drupal-module",
  4634. "extra": {
  4635. "drupal": {
  4636. "version": "8.x-1.10",
  4637. "datestamp": "1650806739",
  4638. "security-coverage": {
  4639. "status": "covered",
  4640. "message": "Covered by Drupal's security advisory policy"
  4641. }
  4642. },
  4643. "drush": {
  4644. "services": {
  4645. "drush.services.yml": "^9 || ^10"
  4646. }
  4647. }
  4648. },
  4649. "notification-url": "https://packages.drupal.org/8/downloads",
  4650. "license": [
  4651. "GPL-2.0-or-later"
  4652. ],
  4653. "authors": [
  4654. {
  4655. "name": "Berdir",
  4656. "homepage": "https://www.drupal.org/user/214652"
  4657. },
  4658. {
  4659. "name": "Dave Reid",
  4660. "homepage": "https://www.drupal.org/user/53892"
  4661. },
  4662. {
  4663. "name": "Freso",
  4664. "homepage": "https://www.drupal.org/user/27504"
  4665. },
  4666. {
  4667. "name": "greggles",
  4668. "homepage": "https://www.drupal.org/user/36762"
  4669. }
  4670. ],
  4671. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4672. "homepage": "https://www.drupal.org/project/pathauto",
  4673. "support": {
  4674. "source": "https://cgit.drupalcode.org/pathauto",
  4675. "issues": "https://www.drupal.org/project/issues/pathauto",
  4676. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4677. }
  4678. },
  4679. {
  4680. "name": "drupal/profile",
  4681. "version": "1.4.0",
  4682. "source": {
  4683. "type": "git",
  4684. "url": "https://git.drupalcode.org/project/profile.git",
  4685. "reference": "8.x-1.4"
  4686. },
  4687. "dist": {
  4688. "type": "zip",
  4689. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4690. "reference": "8.x-1.4",
  4691. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4692. },
  4693. "require": {
  4694. "drupal/core": "^8.9 || ^9 || ^10",
  4695. "drupal/entity": "^1.0-rc2"
  4696. },
  4697. "require-dev": {
  4698. "drupal/token": "^1.7"
  4699. },
  4700. "type": "drupal-module",
  4701. "extra": {
  4702. "drupal": {
  4703. "version": "8.x-1.4",
  4704. "datestamp": "1652430373",
  4705. "security-coverage": {
  4706. "status": "covered",
  4707. "message": "Covered by Drupal's security advisory policy"
  4708. }
  4709. }
  4710. },
  4711. "notification-url": "https://packages.drupal.org/8/downloads",
  4712. "license": [
  4713. "GPL-2.0-or-later"
  4714. ],
  4715. "authors": [
  4716. {
  4717. "name": "bojanz",
  4718. "homepage": "https://www.drupal.org/user/86106"
  4719. },
  4720. {
  4721. "name": "daggerhart",
  4722. "homepage": "https://www.drupal.org/user/167806"
  4723. },
  4724. {
  4725. "name": "fago",
  4726. "homepage": "https://www.drupal.org/user/16747"
  4727. },
  4728. {
  4729. "name": "jsacksick",
  4730. "homepage": "https://www.drupal.org/user/972218"
  4731. },
  4732. {
  4733. "name": "mglaman",
  4734. "homepage": "https://www.drupal.org/user/2416470"
  4735. },
  4736. {
  4737. "name": "pcambra",
  4738. "homepage": "https://www.drupal.org/user/122101"
  4739. }
  4740. ],
  4741. "description": "Provides configurable user profiles.",
  4742. "homepage": "http://drupal.org/project/profile",
  4743. "support": {
  4744. "source": "https://git.drupalcode.org/project/profile"
  4745. }
  4746. },
  4747. {
  4748. "name": "drupal/redirect",
  4749. "version": "1.6.0",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://git.drupalcode.org/project/redirect.git",
  4753. "reference": "8.x-1.6"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4758. "reference": "8.x-1.6",
  4759. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4760. },
  4761. "require": {
  4762. "drupal/core": "^8.8 || ^9"
  4763. },
  4764. "type": "drupal-module",
  4765. "extra": {
  4766. "drupal": {
  4767. "version": "8.x-1.6",
  4768. "datestamp": "1589312204",
  4769. "security-coverage": {
  4770. "status": "covered",
  4771. "message": "Covered by Drupal's security advisory policy"
  4772. }
  4773. }
  4774. },
  4775. "notification-url": "https://packages.drupal.org/8/downloads",
  4776. "license": [
  4777. "GPL-2.0-or-later"
  4778. ],
  4779. "authors": [
  4780. {
  4781. "name": "Berdir",
  4782. "homepage": "https://www.drupal.org/user/214652"
  4783. },
  4784. {
  4785. "name": "Dave Reid",
  4786. "homepage": "https://www.drupal.org/user/53892"
  4787. },
  4788. {
  4789. "name": "pifagor",
  4790. "homepage": "https://www.drupal.org/user/2375692"
  4791. }
  4792. ],
  4793. "description": "Allows users to redirect from old URLs to new URLs.",
  4794. "homepage": "https://www.drupal.org/project/redirect",
  4795. "support": {
  4796. "source": "https://git.drupalcode.org/project/redirect"
  4797. }
  4798. },
  4799. {
  4800. "name": "drupal/redis",
  4801. "version": "1.5.0",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://git.drupalcode.org/project/redis.git",
  4805. "reference": "8.x-1.5"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4810. "reference": "8.x-1.5",
  4811. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4812. },
  4813. "require": {
  4814. "drupal/core": "^8.8 || ^9"
  4815. },
  4816. "suggest": {
  4817. "predis/predis": "^1.1.1"
  4818. },
  4819. "type": "drupal-module",
  4820. "extra": {
  4821. "drupal": {
  4822. "version": "8.x-1.5",
  4823. "datestamp": "1609972488",
  4824. "security-coverage": {
  4825. "status": "covered",
  4826. "message": "Covered by Drupal's security advisory policy"
  4827. }
  4828. }
  4829. },
  4830. "autoload": {
  4831. "psr-4": {
  4832. "Drupal\\redis\\": "src"
  4833. }
  4834. },
  4835. "notification-url": "https://packages.drupal.org/8/downloads",
  4836. "license": [
  4837. "GPL-2.0-or-later"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "berdir",
  4842. "homepage": "https://www.drupal.org/user/214652"
  4843. },
  4844. {
  4845. "name": "greg.1.anderson",
  4846. "homepage": "https://www.drupal.org/user/438598"
  4847. },
  4848. {
  4849. "name": "kporras07",
  4850. "homepage": "https://www.drupal.org/user/1349780"
  4851. },
  4852. {
  4853. "name": "pounard",
  4854. "homepage": "https://www.drupal.org/user/240164"
  4855. }
  4856. ],
  4857. "description": "Integration of Drupal with the Redis key-value store.",
  4858. "homepage": "https://www.drupal.org/project/redis",
  4859. "support": {
  4860. "source": "https://git.drupalcode.org/project/redis"
  4861. }
  4862. },
  4863. {
  4864. "name": "drupal/restui",
  4865. "version": "1.21.0",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://git.drupalcode.org/project/restui.git",
  4869. "reference": "8.x-1.21"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4874. "reference": "8.x-1.21",
  4875. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4876. },
  4877. "require": {
  4878. "drupal/core": "^8.7.7 || ^9 || ^10"
  4879. },
  4880. "type": "drupal-module",
  4881. "extra": {
  4882. "drupal": {
  4883. "version": "8.x-1.21",
  4884. "datestamp": "1659086914",
  4885. "security-coverage": {
  4886. "status": "covered",
  4887. "message": "Covered by Drupal's security advisory policy"
  4888. }
  4889. }
  4890. },
  4891. "notification-url": "https://packages.drupal.org/8/downloads",
  4892. "license": [
  4893. "GPL-2.0-or-later"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "-enzo-",
  4898. "homepage": "https://www.drupal.org/user/294937"
  4899. },
  4900. {
  4901. "name": "clemens.tolboom",
  4902. "homepage": "https://www.drupal.org/user/125814"
  4903. },
  4904. {
  4905. "name": "juampynr",
  4906. "homepage": "https://www.drupal.org/user/682736"
  4907. },
  4908. {
  4909. "name": "kamkejj",
  4910. "homepage": "https://www.drupal.org/user/81043"
  4911. },
  4912. {
  4913. "name": "vipin.mittal18",
  4914. "homepage": "https://www.drupal.org/user/319716"
  4915. }
  4916. ],
  4917. "description": "Provides a user interface to manage REST resources.",
  4918. "homepage": "https://www.drupal.org/project/restui",
  4919. "support": {
  4920. "source": "https://git.drupalcode.org/project/restui"
  4921. }
  4922. },
  4923. {
  4924. "name": "drupal/search_api",
  4925. "version": "1.23.0",
  4926. "source": {
  4927. "type": "git",
  4928. "url": "https://git.drupalcode.org/project/search_api.git",
  4929. "reference": "8.x-1.23"
  4930. },
  4931. "dist": {
  4932. "type": "zip",
  4933. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  4934. "reference": "8.x-1.23",
  4935. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  4936. },
  4937. "require": {
  4938. "drupal/core": "^8.8 || ^9"
  4939. },
  4940. "conflict": {
  4941. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4942. },
  4943. "require-dev": {
  4944. "drupal/language_fallback_fix": "@dev",
  4945. "drupal/search_api_autocomplete": "@dev",
  4946. "drupal/search_api_db": "*"
  4947. },
  4948. "suggest": {
  4949. "drupal/facets": "Adds the ability to create faceted searches.",
  4950. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4951. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4952. },
  4953. "type": "drupal-module",
  4954. "extra": {
  4955. "drupal": {
  4956. "version": "8.x-1.23",
  4957. "datestamp": "1642935837",
  4958. "security-coverage": {
  4959. "status": "covered",
  4960. "message": "Covered by Drupal's security advisory policy"
  4961. }
  4962. },
  4963. "drush": {
  4964. "services": {
  4965. "drush.services.yml": "^9 || ^10"
  4966. }
  4967. }
  4968. },
  4969. "notification-url": "https://packages.drupal.org/8/downloads",
  4970. "license": [
  4971. "GPL-2.0-or-later"
  4972. ],
  4973. "authors": [
  4974. {
  4975. "name": "Thomas Seidl",
  4976. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4977. },
  4978. {
  4979. "name": "Nick Veenhof",
  4980. "homepage": "https://www.drupal.org/u/nick_vh"
  4981. },
  4982. {
  4983. "name": "See other contributors",
  4984. "homepage": "https://www.drupal.org/node/790418/committers"
  4985. }
  4986. ],
  4987. "description": "Provides a generic framework for modules offering search capabilities.",
  4988. "homepage": "https://www.drupal.org/project/search_api",
  4989. "support": {
  4990. "source": "https://git.drupalcode.org/project/search_api",
  4991. "issues": "https://www.drupal.org/project/issues/search_api",
  4992. "irc": "irc://irc.freenode.org/drupal-search-api"
  4993. }
  4994. },
  4995. {
  4996. "name": "drupal/simple_sitemap",
  4997. "version": "3.11.0",
  4998. "source": {
  4999. "type": "git",
  5000. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5001. "reference": "8.x-3.11"
  5002. },
  5003. "dist": {
  5004. "type": "zip",
  5005. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  5006. "reference": "8.x-3.11",
  5007. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  5008. },
  5009. "require": {
  5010. "drupal/core": "^8 || ^9",
  5011. "ext-xmlwriter": "*"
  5012. },
  5013. "type": "drupal-module",
  5014. "extra": {
  5015. "drupal": {
  5016. "version": "8.x-3.11",
  5017. "datestamp": "1658781789",
  5018. "security-coverage": {
  5019. "status": "covered",
  5020. "message": "Covered by Drupal's security advisory policy"
  5021. }
  5022. },
  5023. "drush": {
  5024. "services": {
  5025. "drush.services.yml": "^9 || ^10"
  5026. }
  5027. }
  5028. },
  5029. "notification-url": "https://packages.drupal.org/8/downloads",
  5030. "license": [
  5031. "GPL-2.0-or-later"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "Pawel Ginalski (gbyte)",
  5036. "homepage": "https://www.drupal.org/u/gbyte",
  5037. "email": "contact@gbyte.dev",
  5038. "role": "Maintainer"
  5039. },
  5040. {
  5041. "name": "walkingdexter",
  5042. "homepage": "https://www.drupal.org/user/3251330"
  5043. }
  5044. ],
  5045. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5046. "homepage": "https://drupal.org/project/simple_sitemap",
  5047. "support": {
  5048. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5049. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5050. "irc": "irc://irc.freenode.org/drupal-contribute"
  5051. }
  5052. },
  5053. {
  5054. "name": "drupal/synonyms",
  5055. "version": "1.0.0-alpha3",
  5056. "source": {
  5057. "type": "git",
  5058. "url": "https://git.drupalcode.org/project/synonyms.git",
  5059. "reference": "8.x-1.0-alpha3"
  5060. },
  5061. "dist": {
  5062. "type": "zip",
  5063. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5064. "reference": "8.x-1.0-alpha3",
  5065. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5066. },
  5067. "require": {
  5068. "drupal/core": "^8 || ^9"
  5069. },
  5070. "type": "drupal-module",
  5071. "extra": {
  5072. "drupal": {
  5073. "version": "8.x-1.0-alpha3",
  5074. "datestamp": "1609623594",
  5075. "security-coverage": {
  5076. "status": "not-covered",
  5077. "message": "Alpha releases are not covered by Drupal security advisories."
  5078. }
  5079. }
  5080. },
  5081. "notification-url": "https://packages.drupal.org/8/downloads",
  5082. "license": [
  5083. "GPL-2.0-or-later"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "bojanz",
  5088. "homepage": "https://www.drupal.org/user/86106"
  5089. },
  5090. {
  5091. "name": "bucefal91",
  5092. "homepage": "https://www.drupal.org/user/504128"
  5093. },
  5094. {
  5095. "name": "devad",
  5096. "homepage": "https://www.drupal.org/user/2268520"
  5097. },
  5098. {
  5099. "name": "Zen",
  5100. "homepage": "https://www.drupal.org/user/21209"
  5101. }
  5102. ],
  5103. "description": "Provides synonyms feature for content entities.",
  5104. "homepage": "https://www.drupal.org/project/synonyms",
  5105. "support": {
  5106. "source": "https://git.drupalcode.org/project/synonyms"
  5107. }
  5108. },
  5109. {
  5110. "name": "drupal/token",
  5111. "version": "1.10.0",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://git.drupalcode.org/project/token.git",
  5115. "reference": "8.x-1.10"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  5120. "reference": "8.x-1.10",
  5121. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  5122. },
  5123. "require": {
  5124. "drupal/core": "^8.8 || ^9"
  5125. },
  5126. "type": "drupal-module",
  5127. "extra": {
  5128. "drupal": {
  5129. "version": "8.x-1.10",
  5130. "datestamp": "1638619775",
  5131. "security-coverage": {
  5132. "status": "covered",
  5133. "message": "Covered by Drupal's security advisory policy"
  5134. }
  5135. },
  5136. "drush": {
  5137. "services": {
  5138. "drush.services.yml": "^9 || ^10"
  5139. }
  5140. }
  5141. },
  5142. "notification-url": "https://packages.drupal.org/8/downloads",
  5143. "license": [
  5144. "GPL-2.0-or-later"
  5145. ],
  5146. "authors": [
  5147. {
  5148. "name": "Berdir",
  5149. "homepage": "https://www.drupal.org/user/214652"
  5150. },
  5151. {
  5152. "name": "Dave Reid",
  5153. "homepage": "https://www.drupal.org/user/53892"
  5154. },
  5155. {
  5156. "name": "eaton",
  5157. "homepage": "https://www.drupal.org/user/16496"
  5158. },
  5159. {
  5160. "name": "fago",
  5161. "homepage": "https://www.drupal.org/user/16747"
  5162. },
  5163. {
  5164. "name": "greggles",
  5165. "homepage": "https://www.drupal.org/user/36762"
  5166. },
  5167. {
  5168. "name": "mikeryan",
  5169. "homepage": "https://www.drupal.org/user/4420"
  5170. }
  5171. ],
  5172. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5173. "homepage": "https://www.drupal.org/project/token",
  5174. "support": {
  5175. "source": "https://git.drupalcode.org/project/token"
  5176. }
  5177. },
  5178. {
  5179. "name": "drupal/translation_views",
  5180. "version": "1.0.0-alpha11",
  5181. "source": {
  5182. "type": "git",
  5183. "url": "https://git.drupalcode.org/project/translation_views.git",
  5184. "reference": "8.x-1.0-alpha11"
  5185. },
  5186. "dist": {
  5187. "type": "zip",
  5188. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5189. "reference": "8.x-1.0-alpha11",
  5190. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5191. },
  5192. "require": {
  5193. "drupal/core": "^8.8 || ^9 || ^10"
  5194. },
  5195. "require-dev": {
  5196. "drupal/translators_content": "^1.0@alpha"
  5197. },
  5198. "type": "drupal-module",
  5199. "extra": {
  5200. "drupal": {
  5201. "version": "8.x-1.0-alpha11",
  5202. "datestamp": "1679660668",
  5203. "security-coverage": {
  5204. "status": "not-covered",
  5205. "message": "Project has not opted into security advisory coverage!"
  5206. }
  5207. }
  5208. },
  5209. "notification-url": "https://packages.drupal.org/8/downloads",
  5210. "license": [
  5211. "GPL-2.0-or-later"
  5212. ],
  5213. "authors": [
  5214. {
  5215. "name": "matsbla",
  5216. "homepage": "https://www.drupal.org/user/2325394"
  5217. },
  5218. {
  5219. "name": "vlad.dancer",
  5220. "homepage": "https://www.drupal.org/user/903844"
  5221. }
  5222. ],
  5223. "description": "Create customized lists and queries of translations from your database.",
  5224. "homepage": "https://www.drupal.org/project/translation_views",
  5225. "support": {
  5226. "source": "https://git.drupalcode.org/project/translation_views"
  5227. }
  5228. },
  5229. {
  5230. "name": "drupal/upgrade_status",
  5231. "version": "3.19.0",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5235. "reference": "8.x-3.19"
  5236. },
  5237. "dist": {
  5238. "type": "zip",
  5239. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5240. "reference": "8.x-3.19",
  5241. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5242. },
  5243. "require": {
  5244. "drupal/core": "^8 || ^9",
  5245. "mathieuviossat/arraytotexttable": "~1.0.0",
  5246. "mglaman/phpstan-drupal": "^1.0.0",
  5247. "nikic/php-parser": "^4.0.0",
  5248. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5249. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5250. "webflo/drupal-finder": "^1.2"
  5251. },
  5252. "type": "drupal-module",
  5253. "extra": {
  5254. "drupal": {
  5255. "version": "8.x-3.19",
  5256. "datestamp": "1678815320",
  5257. "security-coverage": {
  5258. "status": "covered",
  5259. "message": "Covered by Drupal's security advisory policy"
  5260. }
  5261. },
  5262. "drush": {
  5263. "services": {
  5264. "drush.services.yml": "^9 || ^10"
  5265. }
  5266. }
  5267. },
  5268. "notification-url": "https://packages.drupal.org/8/downloads",
  5269. "license": [
  5270. "GPL-2.0-or-later"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Gábor Hojtsy",
  5275. "homepage": "https://www.drupal.org/user/4166"
  5276. }
  5277. ],
  5278. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5279. "homepage": "http://drupal.org/project/upgrade_status",
  5280. "support": {
  5281. "source": "https://git.drupalcode.org/project/upgrade_status"
  5282. }
  5283. },
  5284. {
  5285. "name": "drupal/url_to_video_filter",
  5286. "version": "2.0.0",
  5287. "source": {
  5288. "type": "git",
  5289. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5290. "reference": "2.0.0"
  5291. },
  5292. "dist": {
  5293. "type": "zip",
  5294. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5295. "reference": "2.0.0",
  5296. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5297. },
  5298. "require": {
  5299. "drupal/core": "^8 || ^9"
  5300. },
  5301. "type": "drupal-module",
  5302. "extra": {
  5303. "drupal": {
  5304. "version": "2.0.0",
  5305. "datestamp": "1607298389",
  5306. "security-coverage": {
  5307. "status": "covered",
  5308. "message": "Covered by Drupal's security advisory policy"
  5309. }
  5310. }
  5311. },
  5312. "notification-url": "https://packages.drupal.org/8/downloads",
  5313. "license": [
  5314. "GPL-2.0-or-later"
  5315. ],
  5316. "authors": [
  5317. {
  5318. "name": "Jaypan",
  5319. "homepage": "https://www.drupal.org/user/324696"
  5320. }
  5321. ],
  5322. "description": "Text filter to convert URLs to embedded videos",
  5323. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5324. "support": {
  5325. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5326. }
  5327. },
  5328. {
  5329. "name": "drupal/views_bulk_edit",
  5330. "version": "2.7.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5334. "reference": "8.x-2.7"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5339. "reference": "8.x-2.7",
  5340. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5341. },
  5342. "require": {
  5343. "drupal/core": "^8 || ^9"
  5344. },
  5345. "require-dev": {
  5346. "drupal/views_bulk_operations": "~3.0"
  5347. },
  5348. "suggest": {
  5349. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5350. },
  5351. "type": "drupal-module",
  5352. "extra": {
  5353. "drupal": {
  5354. "version": "8.x-2.7",
  5355. "datestamp": "1664355764",
  5356. "security-coverage": {
  5357. "status": "covered",
  5358. "message": "Covered by Drupal's security advisory policy"
  5359. }
  5360. }
  5361. },
  5362. "notification-url": "https://packages.drupal.org/8/downloads",
  5363. "license": [
  5364. "GPL-2.0+"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "Marcin Grabias",
  5369. "homepage": "https://www.drupal.org/u/graber"
  5370. },
  5371. {
  5372. "name": "benjy",
  5373. "homepage": "https://www.drupal.org/user/1852732"
  5374. },
  5375. {
  5376. "name": "graber",
  5377. "homepage": "https://www.drupal.org/user/1599440"
  5378. },
  5379. {
  5380. "name": "grevil",
  5381. "homepage": "https://www.drupal.org/user/3668491"
  5382. },
  5383. {
  5384. "name": "joseph.olstad",
  5385. "homepage": "https://www.drupal.org/user/1321830"
  5386. }
  5387. ],
  5388. "description": "Allows bulk edition of entity field values.",
  5389. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5390. "support": {
  5391. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5392. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5393. }
  5394. },
  5395. {
  5396. "name": "drupal/views_bulk_operations",
  5397. "version": "3.9.0",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5401. "reference": "8.x-3.9"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5406. "reference": "8.x-3.9",
  5407. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5408. },
  5409. "require": {
  5410. "drupal/core": "^8.8 || ^9"
  5411. },
  5412. "require-dev": {
  5413. "drush/drush": "^10"
  5414. },
  5415. "suggest": {
  5416. "drush/drush": "^9 || ^10"
  5417. },
  5418. "type": "drupal-module",
  5419. "extra": {
  5420. "drupal": {
  5421. "version": "8.x-3.9",
  5422. "datestamp": "1597319021",
  5423. "security-coverage": {
  5424. "status": "covered",
  5425. "message": "Covered by Drupal's security advisory policy"
  5426. }
  5427. },
  5428. "drush": {
  5429. "services": {
  5430. "drush.services.yml": "^9 || ^10"
  5431. }
  5432. }
  5433. },
  5434. "notification-url": "https://packages.drupal.org/8/downloads",
  5435. "license": [
  5436. "GPL-2.0-or-later"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Marcin Grabias",
  5441. "homepage": "https://www.drupal.org/u/graber"
  5442. },
  5443. {
  5444. "name": "Jon Pugh",
  5445. "homepage": "https://www.drupal.org/user/17028"
  5446. },
  5447. {
  5448. "name": "bojanz",
  5449. "homepage": "https://www.drupal.org/user/86106"
  5450. },
  5451. {
  5452. "name": "infojunkie",
  5453. "homepage": "https://www.drupal.org/user/48424"
  5454. },
  5455. {
  5456. "name": "joelpittet",
  5457. "homepage": "https://www.drupal.org/user/160302"
  5458. }
  5459. ],
  5460. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5461. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5462. "support": {
  5463. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5464. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5465. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5466. }
  5467. },
  5468. {
  5469. "name": "drupal/workflow",
  5470. "version": "1.3.0",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://git.drupalcode.org/project/workflow.git",
  5474. "reference": "8.x-1.3"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5479. "reference": "8.x-1.3",
  5480. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5481. },
  5482. "require": {
  5483. "drupal/core": "^8 || ^9"
  5484. },
  5485. "type": "drupal-module",
  5486. "extra": {
  5487. "drupal": {
  5488. "version": "8.x-1.3",
  5489. "datestamp": "1590740623",
  5490. "security-coverage": {
  5491. "status": "covered",
  5492. "message": "Covered by Drupal's security advisory policy"
  5493. }
  5494. }
  5495. },
  5496. "notification-url": "https://packages.drupal.org/8/downloads",
  5497. "license": [
  5498. "GPL-2.0-or-later"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Bastlynn",
  5503. "homepage": "https://www.drupal.org/user/275249"
  5504. },
  5505. {
  5506. "name": "eaton",
  5507. "homepage": "https://www.drupal.org/user/16496"
  5508. },
  5509. {
  5510. "name": "Heine",
  5511. "homepage": "https://www.drupal.org/user/17943"
  5512. },
  5513. {
  5514. "name": "JacobSingh",
  5515. "homepage": "https://www.drupal.org/user/68912"
  5516. },
  5517. {
  5518. "name": "johnv",
  5519. "homepage": "https://www.drupal.org/user/591042"
  5520. },
  5521. {
  5522. "name": "jvandyk",
  5523. "homepage": "https://www.drupal.org/user/2375"
  5524. },
  5525. {
  5526. "name": "mfredrickson",
  5527. "homepage": "https://www.drupal.org/user/31994"
  5528. },
  5529. {
  5530. "name": "NancyDru",
  5531. "homepage": "https://www.drupal.org/user/101412"
  5532. },
  5533. {
  5534. "name": "q0rban",
  5535. "homepage": "https://www.drupal.org/user/31022"
  5536. }
  5537. ],
  5538. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5539. "homepage": "https://www.drupal.org/project/workflow",
  5540. "support": {
  5541. "source": "https://git.drupalcode.org/project/workflow"
  5542. }
  5543. },
  5544. {
  5545. "name": "drush/drush",
  5546. "version": "9.7.3",
  5547. "source": {
  5548. "type": "git",
  5549. "url": "https://github.com/drush-ops/drush.git",
  5550. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5551. },
  5552. "dist": {
  5553. "type": "zip",
  5554. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5555. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5556. "shasum": ""
  5557. },
  5558. "require": {
  5559. "chi-teck/drupal-code-generator": "^1.28.1",
  5560. "composer/semver": "^1.4",
  5561. "consolidation/annotated-command": "^2.12",
  5562. "consolidation/config": "^1.2",
  5563. "consolidation/filter-via-dot-access-data": "^1",
  5564. "consolidation/output-formatters": "^3.3.1",
  5565. "consolidation/robo": "^1.4.6",
  5566. "consolidation/site-alias": "^3.0.0@stable",
  5567. "consolidation/site-process": "^2.0.3",
  5568. "ext-dom": "*",
  5569. "grasmash/yaml-expander": "^1.1.1",
  5570. "league/container": "~2",
  5571. "php": ">=5.6.0",
  5572. "psr/log": "~1.0",
  5573. "psy/psysh": "~0.6",
  5574. "symfony/console": "^3.4",
  5575. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5576. "symfony/finder": "^3.4 || ^4.0",
  5577. "symfony/process": "^3.4",
  5578. "symfony/var-dumper": "^3.4 || ^4.0",
  5579. "symfony/yaml": "^3.4",
  5580. "webflo/drupal-finder": "^1.1",
  5581. "webmozart/path-util": "^2.1.0"
  5582. },
  5583. "require-dev": {
  5584. "composer/installers": "^1.2",
  5585. "cweagans/composer-patches": "~1.0",
  5586. "drupal/alinks": "1.0.0",
  5587. "drupal/core-recommended": "^8.9",
  5588. "drupal/devel": "^2",
  5589. "drupal/empty_theme": "1.0",
  5590. "g1a/composer-test-scenarios": "^3",
  5591. "lox/xhprof": "dev-master",
  5592. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5593. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5594. "vlucas/phpdotenv": "^2.4"
  5595. },
  5596. "bin": [
  5597. "drush"
  5598. ],
  5599. "type": "library",
  5600. "extra": {
  5601. "installer-paths": {
  5602. "sut/core": [
  5603. "type:drupal-core"
  5604. ],
  5605. "sut/libraries/{$name}": [
  5606. "type:drupal-library"
  5607. ],
  5608. "sut/modules/unish/{$name}": [
  5609. "drupal/devel"
  5610. ],
  5611. "sut/themes/unish/{$name}": [
  5612. "drupal/empty_theme"
  5613. ],
  5614. "sut/modules/contrib/{$name}": [
  5615. "type:drupal-module"
  5616. ],
  5617. "sut/profiles/contrib/{$name}": [
  5618. "type:drupal-profile"
  5619. ],
  5620. "sut/themes/contrib/{$name}": [
  5621. "type:drupal-theme"
  5622. ],
  5623. "sut/drush/contrib/{$name}": [
  5624. "type:drupal-drush"
  5625. ]
  5626. },
  5627. "scenarios": {
  5628. "php5": {
  5629. "config": {
  5630. "platform": {
  5631. "php": "5.6.38"
  5632. }
  5633. },
  5634. "require-dev": {
  5635. "drupal/core-recommended": "~8.6.0"
  5636. }
  5637. }
  5638. },
  5639. "branch-alias": {
  5640. "dev-master": "9.x-dev"
  5641. }
  5642. },
  5643. "autoload": {
  5644. "psr-4": {
  5645. "Drush\\": "src/",
  5646. "Drush\\Internal\\": "src/internal-forks"
  5647. }
  5648. },
  5649. "notification-url": "https://packagist.org/downloads/",
  5650. "license": [
  5651. "GPL-2.0-or-later"
  5652. ],
  5653. "authors": [
  5654. {
  5655. "name": "Moshe Weitzman",
  5656. "email": "weitzman@tejasa.com"
  5657. },
  5658. {
  5659. "name": "Owen Barton",
  5660. "email": "drupal@owenbarton.com"
  5661. },
  5662. {
  5663. "name": "Greg Anderson",
  5664. "email": "greg.1.anderson@greenknowe.org"
  5665. },
  5666. {
  5667. "name": "Jonathan Araña Cruz",
  5668. "email": "jonhattan@faita.net"
  5669. },
  5670. {
  5671. "name": "Jonathan Hedstrom",
  5672. "email": "jhedstrom@gmail.com"
  5673. },
  5674. {
  5675. "name": "Christopher Gervais",
  5676. "email": "chris@ergonlogic.com"
  5677. },
  5678. {
  5679. "name": "Dave Reid",
  5680. "email": "dave@davereid.net"
  5681. },
  5682. {
  5683. "name": "Damian Lee",
  5684. "email": "damiankloip@googlemail.com"
  5685. }
  5686. ],
  5687. "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.",
  5688. "homepage": "http://www.drush.org",
  5689. "support": {
  5690. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5691. "irc": "irc://irc.freenode.org/drush",
  5692. "issues": "https://github.com/drush-ops/drush/issues",
  5693. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5694. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5695. },
  5696. "funding": [
  5697. {
  5698. "url": "https://github.com/weitzman",
  5699. "type": "github"
  5700. }
  5701. ],
  5702. "time": "2021-03-22T17:00:48+00:00"
  5703. },
  5704. {
  5705. "name": "easyrdf/easyrdf",
  5706. "version": "0.9.1",
  5707. "source": {
  5708. "type": "git",
  5709. "url": "https://github.com/easyrdf/easyrdf.git",
  5710. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5711. },
  5712. "dist": {
  5713. "type": "zip",
  5714. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5715. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5716. "shasum": ""
  5717. },
  5718. "require": {
  5719. "ext-mbstring": "*",
  5720. "ext-pcre": "*",
  5721. "php": ">=5.2.8"
  5722. },
  5723. "require-dev": {
  5724. "phpunit/phpunit": "~3.5",
  5725. "sami/sami": "~1.4",
  5726. "squizlabs/php_codesniffer": "~1.4.3"
  5727. },
  5728. "suggest": {
  5729. "ml/json-ld": "~1.0"
  5730. },
  5731. "type": "library",
  5732. "autoload": {
  5733. "psr-0": {
  5734. "EasyRdf_": "lib/"
  5735. }
  5736. },
  5737. "notification-url": "https://packagist.org/downloads/",
  5738. "license": [
  5739. "BSD-3-Clause"
  5740. ],
  5741. "authors": [
  5742. {
  5743. "name": "Nicholas Humfrey",
  5744. "email": "njh@aelius.com",
  5745. "homepage": "http://www.aelius.com/njh/",
  5746. "role": "Developer"
  5747. },
  5748. {
  5749. "name": "Alexey Zakhlestin",
  5750. "email": "indeyets@gmail.com",
  5751. "role": "Developer"
  5752. }
  5753. ],
  5754. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5755. "homepage": "http://www.easyrdf.org/",
  5756. "keywords": [
  5757. "Linked Data",
  5758. "RDF",
  5759. "Semantic Web",
  5760. "Turtle",
  5761. "rdfa",
  5762. "sparql"
  5763. ],
  5764. "support": {
  5765. "forum": "http://groups.google.com/group/easyrdf/",
  5766. "irc": "irc://chat.freenode.net/easyrdf",
  5767. "issues": "http://github.com/njh/easyrdf/issues",
  5768. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5769. },
  5770. "time": "2015-02-27T09:45:49+00:00"
  5771. },
  5772. {
  5773. "name": "egulias/email-validator",
  5774. "version": "2.1.17",
  5775. "source": {
  5776. "type": "git",
  5777. "url": "https://github.com/egulias/EmailValidator.git",
  5778. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5779. },
  5780. "dist": {
  5781. "type": "zip",
  5782. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5783. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5784. "shasum": ""
  5785. },
  5786. "require": {
  5787. "doctrine/lexer": "^1.0.1",
  5788. "php": ">=5.5",
  5789. "symfony/polyfill-intl-idn": "^1.10"
  5790. },
  5791. "require-dev": {
  5792. "dominicsayers/isemail": "^3.0.7",
  5793. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5794. "satooshi/php-coveralls": "^1.0.1"
  5795. },
  5796. "suggest": {
  5797. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5798. },
  5799. "type": "library",
  5800. "extra": {
  5801. "branch-alias": {
  5802. "dev-master": "2.1.x-dev"
  5803. }
  5804. },
  5805. "autoload": {
  5806. "psr-4": {
  5807. "Egulias\\EmailValidator\\": "EmailValidator"
  5808. }
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "MIT"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "Eduardo Gulias Davis"
  5817. }
  5818. ],
  5819. "description": "A library for validating emails against several RFCs",
  5820. "homepage": "https://github.com/egulias/EmailValidator",
  5821. "keywords": [
  5822. "email",
  5823. "emailvalidation",
  5824. "emailvalidator",
  5825. "validation",
  5826. "validator"
  5827. ],
  5828. "support": {
  5829. "issues": "https://github.com/egulias/EmailValidator/issues",
  5830. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5831. },
  5832. "time": "2020-02-13T22:36:52+00:00"
  5833. },
  5834. {
  5835. "name": "grasmash/expander",
  5836. "version": "1.0.0",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/grasmash/expander.git",
  5840. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5845. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5846. "shasum": ""
  5847. },
  5848. "require": {
  5849. "dflydev/dot-access-data": "^1.1.0",
  5850. "php": ">=5.4"
  5851. },
  5852. "require-dev": {
  5853. "greg-1-anderson/composer-test-scenarios": "^1",
  5854. "phpunit/phpunit": "^4|^5.5.4",
  5855. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5856. "squizlabs/php_codesniffer": "^2.7"
  5857. },
  5858. "type": "library",
  5859. "extra": {
  5860. "branch-alias": {
  5861. "dev-master": "1.x-dev"
  5862. }
  5863. },
  5864. "autoload": {
  5865. "psr-4": {
  5866. "Grasmash\\Expander\\": "src/"
  5867. }
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "MIT"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Matthew Grasmick"
  5876. }
  5877. ],
  5878. "description": "Expands internal property references in PHP arrays file.",
  5879. "time": "2017-12-21T22:14:55+00:00"
  5880. },
  5881. {
  5882. "name": "grasmash/yaml-expander",
  5883. "version": "1.4.0",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://github.com/grasmash/yaml-expander.git",
  5887. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5888. },
  5889. "dist": {
  5890. "type": "zip",
  5891. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5892. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5893. "shasum": ""
  5894. },
  5895. "require": {
  5896. "dflydev/dot-access-data": "^1.1.0",
  5897. "php": ">=5.4",
  5898. "symfony/yaml": "^2.8.11|^3|^4"
  5899. },
  5900. "require-dev": {
  5901. "greg-1-anderson/composer-test-scenarios": "^1",
  5902. "phpunit/phpunit": "^4.8|^5.5.4",
  5903. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5904. "squizlabs/php_codesniffer": "^2.7"
  5905. },
  5906. "type": "library",
  5907. "extra": {
  5908. "branch-alias": {
  5909. "dev-master": "1.x-dev"
  5910. }
  5911. },
  5912. "autoload": {
  5913. "psr-4": {
  5914. "Grasmash\\YamlExpander\\": "src/"
  5915. }
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "MIT"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "Matthew Grasmick"
  5924. }
  5925. ],
  5926. "description": "Expands internal property references in a yaml file.",
  5927. "time": "2017-12-16T16:06:03+00:00"
  5928. },
  5929. {
  5930. "name": "guzzlehttp/guzzle",
  5931. "version": "6.5.4",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/guzzle/guzzle.git",
  5935. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5940. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5941. "shasum": ""
  5942. },
  5943. "require": {
  5944. "ext-json": "*",
  5945. "guzzlehttp/promises": "^1.0",
  5946. "guzzlehttp/psr7": "^1.6.1",
  5947. "php": ">=5.5",
  5948. "symfony/polyfill-intl-idn": "1.17.0"
  5949. },
  5950. "require-dev": {
  5951. "ext-curl": "*",
  5952. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5953. "psr/log": "^1.1"
  5954. },
  5955. "suggest": {
  5956. "psr/log": "Required for using the Log middleware"
  5957. },
  5958. "type": "library",
  5959. "extra": {
  5960. "branch-alias": {
  5961. "dev-master": "6.5-dev"
  5962. }
  5963. },
  5964. "autoload": {
  5965. "files": [
  5966. "src/functions_include.php"
  5967. ],
  5968. "psr-4": {
  5969. "GuzzleHttp\\": "src/"
  5970. }
  5971. },
  5972. "notification-url": "https://packagist.org/downloads/",
  5973. "license": [
  5974. "MIT"
  5975. ],
  5976. "authors": [
  5977. {
  5978. "name": "Michael Dowling",
  5979. "email": "mtdowling@gmail.com",
  5980. "homepage": "https://github.com/mtdowling"
  5981. }
  5982. ],
  5983. "description": "Guzzle is a PHP HTTP client library",
  5984. "homepage": "http://guzzlephp.org/",
  5985. "keywords": [
  5986. "client",
  5987. "curl",
  5988. "framework",
  5989. "http",
  5990. "http client",
  5991. "rest",
  5992. "web service"
  5993. ],
  5994. "support": {
  5995. "issues": "https://github.com/guzzle/guzzle/issues",
  5996. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5997. },
  5998. "time": "2020-05-25T19:35:05+00:00"
  5999. },
  6000. {
  6001. "name": "guzzlehttp/promises",
  6002. "version": "v1.3.1",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/guzzle/promises.git",
  6006. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6011. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "php": ">=5.5.0"
  6016. },
  6017. "require-dev": {
  6018. "phpunit/phpunit": "^4.0"
  6019. },
  6020. "type": "library",
  6021. "extra": {
  6022. "branch-alias": {
  6023. "dev-master": "1.4-dev"
  6024. }
  6025. },
  6026. "autoload": {
  6027. "files": [
  6028. "src/functions_include.php"
  6029. ],
  6030. "psr-4": {
  6031. "GuzzleHttp\\Promise\\": "src/"
  6032. }
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "Michael Dowling",
  6041. "email": "mtdowling@gmail.com",
  6042. "homepage": "https://github.com/mtdowling"
  6043. }
  6044. ],
  6045. "description": "Guzzle promises library",
  6046. "keywords": [
  6047. "promise"
  6048. ],
  6049. "support": {
  6050. "issues": "https://github.com/guzzle/promises/issues",
  6051. "source": "https://github.com/guzzle/promises/tree/master"
  6052. },
  6053. "time": "2016-12-20T10:07:11+00:00"
  6054. },
  6055. {
  6056. "name": "guzzlehttp/psr7",
  6057. "version": "1.6.1",
  6058. "source": {
  6059. "type": "git",
  6060. "url": "https://github.com/guzzle/psr7.git",
  6061. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6062. },
  6063. "dist": {
  6064. "type": "zip",
  6065. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6066. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6067. "shasum": ""
  6068. },
  6069. "require": {
  6070. "php": ">=5.4.0",
  6071. "psr/http-message": "~1.0",
  6072. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6073. },
  6074. "provide": {
  6075. "psr/http-message-implementation": "1.0"
  6076. },
  6077. "require-dev": {
  6078. "ext-zlib": "*",
  6079. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6080. },
  6081. "suggest": {
  6082. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6083. },
  6084. "type": "library",
  6085. "extra": {
  6086. "branch-alias": {
  6087. "dev-master": "1.6-dev"
  6088. }
  6089. },
  6090. "autoload": {
  6091. "files": [
  6092. "src/functions_include.php"
  6093. ],
  6094. "psr-4": {
  6095. "GuzzleHttp\\Psr7\\": "src/"
  6096. }
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Michael Dowling",
  6105. "email": "mtdowling@gmail.com",
  6106. "homepage": "https://github.com/mtdowling"
  6107. },
  6108. {
  6109. "name": "Tobias Schultze",
  6110. "homepage": "https://github.com/Tobion"
  6111. }
  6112. ],
  6113. "description": "PSR-7 message implementation that also provides common utility methods",
  6114. "keywords": [
  6115. "http",
  6116. "message",
  6117. "psr-7",
  6118. "request",
  6119. "response",
  6120. "stream",
  6121. "uri",
  6122. "url"
  6123. ],
  6124. "support": {
  6125. "issues": "https://github.com/guzzle/psr7/issues",
  6126. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6127. },
  6128. "time": "2019-07-01T23:21:34+00:00"
  6129. },
  6130. {
  6131. "name": "kint-php/kint",
  6132. "version": "5.1.1",
  6133. "source": {
  6134. "type": "git",
  6135. "url": "https://github.com/kint-php/kint.git",
  6136. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6137. },
  6138. "dist": {
  6139. "type": "zip",
  6140. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6141. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6142. "shasum": ""
  6143. },
  6144. "require": {
  6145. "php": ">=7.1"
  6146. },
  6147. "require-dev": {
  6148. "friendsofphp/php-cs-fixer": "^3",
  6149. "phpspec/prophecy-phpunit": "^2",
  6150. "phpunit/phpunit": "^9",
  6151. "seld/phar-utils": "^1",
  6152. "symfony/finder": ">=4.0",
  6153. "vimeo/psalm": "^5"
  6154. },
  6155. "suggest": {
  6156. "kint-php/kint-helpers": "Provides extra helper functions",
  6157. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6158. },
  6159. "type": "library",
  6160. "autoload": {
  6161. "files": [
  6162. "init.php"
  6163. ],
  6164. "psr-4": {
  6165. "Kint\\": "src/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "MIT"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "Jonathan Vollebregt",
  6175. "homepage": "https://github.com/jnvsor"
  6176. },
  6177. {
  6178. "name": "Contributors",
  6179. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6180. }
  6181. ],
  6182. "description": "Kint - debugging tool for PHP developers",
  6183. "homepage": "https://kint-php.github.io/kint/",
  6184. "keywords": [
  6185. "debug",
  6186. "kint",
  6187. "php"
  6188. ],
  6189. "support": {
  6190. "issues": "https://github.com/kint-php/kint/issues",
  6191. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6192. },
  6193. "time": "2024-04-26T14:20:09+00:00"
  6194. },
  6195. {
  6196. "name": "laminas/laminas-diactoros",
  6197. "version": "1.8.7p2",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/laminas/laminas-diactoros.git",
  6201. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6206. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "laminas/laminas-zendframework-bridge": "^1.0",
  6211. "php": "^5.6 || ^7.0",
  6212. "psr/http-message": "^1.0"
  6213. },
  6214. "provide": {
  6215. "psr/http-message-implementation": "1.0"
  6216. },
  6217. "replace": {
  6218. "zendframework/zend-diactoros": "~1.8.7.0"
  6219. },
  6220. "require-dev": {
  6221. "ext-dom": "*",
  6222. "ext-libxml": "*",
  6223. "laminas/laminas-coding-standard": "~1.0",
  6224. "php-http/psr7-integration-tests": "dev-master",
  6225. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6226. },
  6227. "type": "library",
  6228. "extra": {
  6229. "branch-alias": {
  6230. "dev-release-1.8": "1.8.x-dev"
  6231. }
  6232. },
  6233. "autoload": {
  6234. "files": [
  6235. "src/functions/create_uploaded_file.php",
  6236. "src/functions/marshal_headers_from_sapi.php",
  6237. "src/functions/marshal_method_from_sapi.php",
  6238. "src/functions/marshal_protocol_version_from_sapi.php",
  6239. "src/functions/marshal_uri_from_sapi.php",
  6240. "src/functions/normalize_server.php",
  6241. "src/functions/normalize_uploaded_files.php",
  6242. "src/functions/parse_cookie_header.php",
  6243. "src/functions/create_uploaded_file.legacy.php",
  6244. "src/functions/marshal_headers_from_sapi.legacy.php",
  6245. "src/functions/marshal_method_from_sapi.legacy.php",
  6246. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6247. "src/functions/marshal_uri_from_sapi.legacy.php",
  6248. "src/functions/normalize_server.legacy.php",
  6249. "src/functions/normalize_uploaded_files.legacy.php",
  6250. "src/functions/parse_cookie_header.legacy.php"
  6251. ],
  6252. "psr-4": {
  6253. "Laminas\\Diactoros\\": "src/"
  6254. }
  6255. },
  6256. "notification-url": "https://packagist.org/downloads/",
  6257. "license": [
  6258. "BSD-3-Clause"
  6259. ],
  6260. "description": "PSR HTTP Message implementations",
  6261. "homepage": "https://laminas.dev",
  6262. "keywords": [
  6263. "http",
  6264. "laminas",
  6265. "psr",
  6266. "psr-7"
  6267. ],
  6268. "support": {
  6269. "chat": "https://laminas.dev/chat",
  6270. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6271. "forum": "https://discourse.laminas.dev",
  6272. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6273. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6274. "source": "https://github.com/laminas/laminas-diactoros"
  6275. },
  6276. "time": "2020-03-23T15:28:28+00:00"
  6277. },
  6278. {
  6279. "name": "laminas/laminas-escaper",
  6280. "version": "2.6.1",
  6281. "source": {
  6282. "type": "git",
  6283. "url": "https://github.com/laminas/laminas-escaper.git",
  6284. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6285. },
  6286. "dist": {
  6287. "type": "zip",
  6288. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6289. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6290. "shasum": ""
  6291. },
  6292. "require": {
  6293. "laminas/laminas-zendframework-bridge": "^1.0",
  6294. "php": "^5.6 || ^7.0"
  6295. },
  6296. "replace": {
  6297. "zendframework/zend-escaper": "self.version"
  6298. },
  6299. "require-dev": {
  6300. "laminas/laminas-coding-standard": "~1.0.0",
  6301. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6302. },
  6303. "type": "library",
  6304. "extra": {
  6305. "branch-alias": {
  6306. "dev-master": "2.6.x-dev",
  6307. "dev-develop": "2.7.x-dev"
  6308. }
  6309. },
  6310. "autoload": {
  6311. "psr-4": {
  6312. "Laminas\\Escaper\\": "src/"
  6313. }
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "BSD-3-Clause"
  6318. ],
  6319. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6320. "homepage": "https://laminas.dev",
  6321. "keywords": [
  6322. "escaper",
  6323. "laminas"
  6324. ],
  6325. "support": {
  6326. "chat": "https://laminas.dev/chat",
  6327. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6328. "forum": "https://discourse.laminas.dev",
  6329. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6330. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6331. "source": "https://github.com/laminas/laminas-escaper"
  6332. },
  6333. "time": "2019-12-31T16:43:30+00:00"
  6334. },
  6335. {
  6336. "name": "laminas/laminas-feed",
  6337. "version": "2.12.2",
  6338. "source": {
  6339. "type": "git",
  6340. "url": "https://github.com/laminas/laminas-feed.git",
  6341. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6342. },
  6343. "dist": {
  6344. "type": "zip",
  6345. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6346. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6347. "shasum": ""
  6348. },
  6349. "require": {
  6350. "ext-dom": "*",
  6351. "ext-libxml": "*",
  6352. "laminas/laminas-escaper": "^2.5.2",
  6353. "laminas/laminas-stdlib": "^3.2.1",
  6354. "laminas/laminas-zendframework-bridge": "^1.0",
  6355. "php": "^5.6 || ^7.0"
  6356. },
  6357. "replace": {
  6358. "zendframework/zend-feed": "^2.12.0"
  6359. },
  6360. "require-dev": {
  6361. "laminas/laminas-cache": "^2.7.2",
  6362. "laminas/laminas-coding-standard": "~1.0.0",
  6363. "laminas/laminas-db": "^2.8.2",
  6364. "laminas/laminas-http": "^2.7",
  6365. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6366. "laminas/laminas-validator": "^2.10.1",
  6367. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6368. "psr/http-message": "^1.0.1"
  6369. },
  6370. "suggest": {
  6371. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6372. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6373. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6374. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6375. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6376. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6377. },
  6378. "type": "library",
  6379. "extra": {
  6380. "branch-alias": {
  6381. "dev-master": "2.12.x-dev",
  6382. "dev-develop": "2.13.x-dev"
  6383. }
  6384. },
  6385. "autoload": {
  6386. "psr-4": {
  6387. "Laminas\\Feed\\": "src/"
  6388. }
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "BSD-3-Clause"
  6393. ],
  6394. "description": "provides functionality for consuming RSS and Atom feeds",
  6395. "homepage": "https://laminas.dev",
  6396. "keywords": [
  6397. "feed",
  6398. "laminas"
  6399. ],
  6400. "support": {
  6401. "chat": "https://laminas.dev/chat",
  6402. "docs": "https://docs.laminas.dev/laminas-feed/",
  6403. "forum": "https://discourse.laminas.dev",
  6404. "issues": "https://github.com/laminas/laminas-feed/issues",
  6405. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6406. "source": "https://github.com/laminas/laminas-feed"
  6407. },
  6408. "time": "2020-03-29T12:36:29+00:00"
  6409. },
  6410. {
  6411. "name": "laminas/laminas-servicemanager",
  6412. "version": "3.17.0",
  6413. "source": {
  6414. "type": "git",
  6415. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6416. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6417. },
  6418. "dist": {
  6419. "type": "zip",
  6420. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6421. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6422. "shasum": ""
  6423. },
  6424. "require": {
  6425. "laminas/laminas-stdlib": "^3.2.1",
  6426. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6427. "psr/container": "^1.0"
  6428. },
  6429. "conflict": {
  6430. "ext-psr": "*",
  6431. "laminas/laminas-code": "<3.3.1",
  6432. "zendframework/zend-code": "<3.3.1",
  6433. "zendframework/zend-servicemanager": "*"
  6434. },
  6435. "provide": {
  6436. "psr/container-implementation": "^1.0"
  6437. },
  6438. "replace": {
  6439. "container-interop/container-interop": "^1.2.0"
  6440. },
  6441. "require-dev": {
  6442. "composer/package-versions-deprecated": "^1.0",
  6443. "laminas/laminas-coding-standard": "~2.4.0",
  6444. "laminas/laminas-container-config-test": "^0.7",
  6445. "laminas/laminas-dependency-plugin": "^2.1.2",
  6446. "mikey179/vfsstream": "^1.6.10@alpha",
  6447. "ocramius/proxy-manager": "^2.11",
  6448. "phpbench/phpbench": "^1.1",
  6449. "phpspec/prophecy-phpunit": "^2.0",
  6450. "phpunit/phpunit": "^9.5.5",
  6451. "psalm/plugin-phpunit": "^0.17.0",
  6452. "vimeo/psalm": "^4.8"
  6453. },
  6454. "suggest": {
  6455. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6456. },
  6457. "bin": [
  6458. "bin/generate-deps-for-config-factory",
  6459. "bin/generate-factory-for-class"
  6460. ],
  6461. "type": "library",
  6462. "autoload": {
  6463. "files": [
  6464. "src/autoload.php"
  6465. ],
  6466. "psr-4": {
  6467. "Laminas\\ServiceManager\\": "src/"
  6468. }
  6469. },
  6470. "notification-url": "https://packagist.org/downloads/",
  6471. "license": [
  6472. "BSD-3-Clause"
  6473. ],
  6474. "description": "Factory-Driven Dependency Injection Container",
  6475. "homepage": "https://laminas.dev",
  6476. "keywords": [
  6477. "PSR-11",
  6478. "dependency-injection",
  6479. "di",
  6480. "dic",
  6481. "laminas",
  6482. "service-manager",
  6483. "servicemanager"
  6484. ],
  6485. "support": {
  6486. "chat": "https://laminas.dev/chat",
  6487. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6488. "forum": "https://discourse.laminas.dev",
  6489. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6490. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6491. "source": "https://github.com/laminas/laminas-servicemanager"
  6492. },
  6493. "funding": [
  6494. {
  6495. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6496. "type": "community_bridge"
  6497. }
  6498. ],
  6499. "time": "2022-09-22T11:33:46+00:00"
  6500. },
  6501. {
  6502. "name": "laminas/laminas-stdlib",
  6503. "version": "3.2.1",
  6504. "source": {
  6505. "type": "git",
  6506. "url": "https://github.com/laminas/laminas-stdlib.git",
  6507. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6508. },
  6509. "dist": {
  6510. "type": "zip",
  6511. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6512. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6513. "shasum": ""
  6514. },
  6515. "require": {
  6516. "laminas/laminas-zendframework-bridge": "^1.0",
  6517. "php": "^5.6 || ^7.0"
  6518. },
  6519. "replace": {
  6520. "zendframework/zend-stdlib": "self.version"
  6521. },
  6522. "require-dev": {
  6523. "laminas/laminas-coding-standard": "~1.0.0",
  6524. "phpbench/phpbench": "^0.13",
  6525. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6526. },
  6527. "type": "library",
  6528. "extra": {
  6529. "branch-alias": {
  6530. "dev-master": "3.2.x-dev",
  6531. "dev-develop": "3.3.x-dev"
  6532. }
  6533. },
  6534. "autoload": {
  6535. "psr-4": {
  6536. "Laminas\\Stdlib\\": "src/"
  6537. }
  6538. },
  6539. "notification-url": "https://packagist.org/downloads/",
  6540. "license": [
  6541. "BSD-3-Clause"
  6542. ],
  6543. "description": "SPL extensions, array utilities, error handlers, and more",
  6544. "homepage": "https://laminas.dev",
  6545. "keywords": [
  6546. "laminas",
  6547. "stdlib"
  6548. ],
  6549. "support": {
  6550. "chat": "https://laminas.dev/chat",
  6551. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6552. "forum": "https://discourse.laminas.dev",
  6553. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6554. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6555. "source": "https://github.com/laminas/laminas-stdlib"
  6556. },
  6557. "time": "2019-12-31T17:51:15+00:00"
  6558. },
  6559. {
  6560. "name": "laminas/laminas-text",
  6561. "version": "2.8.1",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/laminas/laminas-text.git",
  6565. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6570. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6571. "shasum": ""
  6572. },
  6573. "require": {
  6574. "laminas/laminas-servicemanager": "^3.4",
  6575. "laminas/laminas-stdlib": "^3.1",
  6576. "laminas/laminas-zendframework-bridge": "^1.0",
  6577. "php": "^7.3 || ~8.0.0"
  6578. },
  6579. "replace": {
  6580. "zendframework/zend-text": "^2.7.1"
  6581. },
  6582. "require-dev": {
  6583. "laminas/laminas-coding-standard": "~1.0.0",
  6584. "laminas/laminas-config": "^3.4",
  6585. "phpunit/phpunit": "^9.3"
  6586. },
  6587. "type": "library",
  6588. "autoload": {
  6589. "psr-4": {
  6590. "Laminas\\Text\\": "src/"
  6591. }
  6592. },
  6593. "notification-url": "https://packagist.org/downloads/",
  6594. "license": [
  6595. "BSD-3-Clause"
  6596. ],
  6597. "description": "Create FIGlets and text-based tables",
  6598. "homepage": "https://laminas.dev",
  6599. "keywords": [
  6600. "laminas",
  6601. "text"
  6602. ],
  6603. "support": {
  6604. "chat": "https://laminas.dev/chat",
  6605. "docs": "https://docs.laminas.dev/laminas-text/",
  6606. "forum": "https://discourse.laminas.dev",
  6607. "issues": "https://github.com/laminas/laminas-text/issues",
  6608. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6609. "source": "https://github.com/laminas/laminas-text"
  6610. },
  6611. "funding": [
  6612. {
  6613. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6614. "type": "community_bridge"
  6615. }
  6616. ],
  6617. "time": "2021-02-17T21:24:58+00:00"
  6618. },
  6619. {
  6620. "name": "laminas/laminas-zendframework-bridge",
  6621. "version": "1.0.4",
  6622. "source": {
  6623. "type": "git",
  6624. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6625. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6626. },
  6627. "dist": {
  6628. "type": "zip",
  6629. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6630. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6631. "shasum": ""
  6632. },
  6633. "require": {
  6634. "php": "^5.6 || ^7.0"
  6635. },
  6636. "require-dev": {
  6637. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6638. "squizlabs/php_codesniffer": "^3.5"
  6639. },
  6640. "type": "library",
  6641. "extra": {
  6642. "branch-alias": {
  6643. "dev-master": "1.0.x-dev",
  6644. "dev-develop": "1.1.x-dev"
  6645. },
  6646. "laminas": {
  6647. "module": "Laminas\\ZendFrameworkBridge"
  6648. }
  6649. },
  6650. "autoload": {
  6651. "files": [
  6652. "src/autoload.php"
  6653. ],
  6654. "psr-4": {
  6655. "Laminas\\ZendFrameworkBridge\\": "src//"
  6656. }
  6657. },
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "BSD-3-Clause"
  6661. ],
  6662. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6663. "keywords": [
  6664. "ZendFramework",
  6665. "autoloading",
  6666. "laminas",
  6667. "zf"
  6668. ],
  6669. "support": {
  6670. "forum": "https://discourse.laminas.dev/",
  6671. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6672. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6673. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6674. },
  6675. "funding": [
  6676. {
  6677. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6678. "type": "community_bridge"
  6679. }
  6680. ],
  6681. "abandoned": true,
  6682. "time": "2020-05-20T16:45:56+00:00"
  6683. },
  6684. {
  6685. "name": "league/container",
  6686. "version": "2.4.1",
  6687. "source": {
  6688. "type": "git",
  6689. "url": "https://github.com/thephpleague/container.git",
  6690. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6691. },
  6692. "dist": {
  6693. "type": "zip",
  6694. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6695. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6696. "shasum": ""
  6697. },
  6698. "require": {
  6699. "container-interop/container-interop": "^1.2",
  6700. "php": "^5.4.0 || ^7.0"
  6701. },
  6702. "provide": {
  6703. "container-interop/container-interop-implementation": "^1.2",
  6704. "psr/container-implementation": "^1.0"
  6705. },
  6706. "replace": {
  6707. "orno/di": "~2.0"
  6708. },
  6709. "require-dev": {
  6710. "phpunit/phpunit": "4.*"
  6711. },
  6712. "type": "library",
  6713. "extra": {
  6714. "branch-alias": {
  6715. "dev-2.x": "2.x-dev",
  6716. "dev-1.x": "1.x-dev"
  6717. }
  6718. },
  6719. "autoload": {
  6720. "psr-4": {
  6721. "League\\Container\\": "src"
  6722. }
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "MIT"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "Phil Bennett",
  6731. "email": "philipobenito@gmail.com",
  6732. "homepage": "http://www.philipobenito.com",
  6733. "role": "Developer"
  6734. }
  6735. ],
  6736. "description": "A fast and intuitive dependency injection container.",
  6737. "homepage": "https://github.com/thephpleague/container",
  6738. "keywords": [
  6739. "container",
  6740. "dependency",
  6741. "di",
  6742. "injection",
  6743. "league",
  6744. "provider",
  6745. "service"
  6746. ],
  6747. "time": "2017-05-10T09:20:27+00:00"
  6748. },
  6749. {
  6750. "name": "masterminds/html5",
  6751. "version": "2.3.0",
  6752. "source": {
  6753. "type": "git",
  6754. "url": "https://github.com/Masterminds/html5-php.git",
  6755. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6756. },
  6757. "dist": {
  6758. "type": "zip",
  6759. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6760. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6761. "shasum": ""
  6762. },
  6763. "require": {
  6764. "ext-libxml": "*",
  6765. "php": ">=5.3.0"
  6766. },
  6767. "require-dev": {
  6768. "phpunit/phpunit": "4.*",
  6769. "sami/sami": "~2.0",
  6770. "satooshi/php-coveralls": "1.0.*"
  6771. },
  6772. "type": "library",
  6773. "extra": {
  6774. "branch-alias": {
  6775. "dev-master": "2.2-dev"
  6776. }
  6777. },
  6778. "autoload": {
  6779. "psr-4": {
  6780. "Masterminds\\": "src"
  6781. }
  6782. },
  6783. "notification-url": "https://packagist.org/downloads/",
  6784. "license": [
  6785. "MIT"
  6786. ],
  6787. "authors": [
  6788. {
  6789. "name": "Matt Butcher",
  6790. "email": "technosophos@gmail.com"
  6791. },
  6792. {
  6793. "name": "Asmir Mustafic",
  6794. "email": "goetas@gmail.com"
  6795. },
  6796. {
  6797. "name": "Matt Farina",
  6798. "email": "matt@mattfarina.com"
  6799. }
  6800. ],
  6801. "description": "An HTML5 parser and serializer.",
  6802. "homepage": "http://masterminds.github.io/html5-php",
  6803. "keywords": [
  6804. "HTML5",
  6805. "dom",
  6806. "html",
  6807. "parser",
  6808. "querypath",
  6809. "serializer",
  6810. "xml"
  6811. ],
  6812. "support": {
  6813. "issues": "https://github.com/Masterminds/html5-php/issues",
  6814. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6815. },
  6816. "time": "2017-09-04T12:26:28+00:00"
  6817. },
  6818. {
  6819. "name": "mathieuviossat/arraytotexttable",
  6820. "version": "v1.0.8",
  6821. "source": {
  6822. "type": "git",
  6823. "url": "https://github.com/viossat/arraytotexttable.git",
  6824. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6825. },
  6826. "dist": {
  6827. "type": "zip",
  6828. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6829. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6830. "shasum": ""
  6831. },
  6832. "require": {
  6833. "laminas/laminas-text": "^2.7",
  6834. "php": ">=5.3.0"
  6835. },
  6836. "type": "library",
  6837. "autoload": {
  6838. "psr-4": {
  6839. "MathieuViossat\\Util\\": "src/"
  6840. }
  6841. },
  6842. "notification-url": "https://packagist.org/downloads/",
  6843. "license": [
  6844. "MIT"
  6845. ],
  6846. "authors": [
  6847. {
  6848. "name": "Mathieu Viossat",
  6849. "email": "mathieu@viossat.fr",
  6850. "homepage": "https://viossat.fr"
  6851. }
  6852. ],
  6853. "description": "Display arrays in terminal",
  6854. "homepage": "https://github.com/viossat/arraytotexttable",
  6855. "keywords": [
  6856. "array",
  6857. "ascii",
  6858. "table",
  6859. "terminal",
  6860. "text",
  6861. "unicode"
  6862. ],
  6863. "support": {
  6864. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6865. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6866. },
  6867. "time": "2020-06-23T17:14:22+00:00"
  6868. },
  6869. {
  6870. "name": "mglaman/phpstan-drupal",
  6871. "version": "1.2.1",
  6872. "source": {
  6873. "type": "git",
  6874. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6875. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6876. },
  6877. "dist": {
  6878. "type": "zip",
  6879. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6880. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6881. "shasum": ""
  6882. },
  6883. "require": {
  6884. "php": "^7.4 || ^8.0",
  6885. "phpstan/phpstan": "^1.10.1",
  6886. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6887. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6888. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6889. "webflo/drupal-finder": "^1.2"
  6890. },
  6891. "require-dev": {
  6892. "behat/mink": "^1.8",
  6893. "composer/installers": "^1.9",
  6894. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6895. "drush/drush": "^9.6 || ^10.0 || ^11",
  6896. "phpstan/extension-installer": "^1.1",
  6897. "phpstan/phpstan-strict-rules": "^1.0",
  6898. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6899. "slevomat/coding-standard": "^7.1",
  6900. "squizlabs/php_codesniffer": "^3.3",
  6901. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6902. },
  6903. "suggest": {
  6904. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6905. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6906. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6907. },
  6908. "type": "phpstan-extension",
  6909. "extra": {
  6910. "branch-alias": {
  6911. "dev-main": "1.0-dev"
  6912. },
  6913. "installer-paths": {
  6914. "tests/fixtures/drupal/core": [
  6915. "type:drupal-core"
  6916. ],
  6917. "tests/fixtures/drupal/libraries/{$name}": [
  6918. "type:drupal-library"
  6919. ],
  6920. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6921. "type:drupal-module"
  6922. ],
  6923. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6924. "type:drupal-profile"
  6925. ],
  6926. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6927. "type:drupal-theme"
  6928. ]
  6929. },
  6930. "phpstan": {
  6931. "includes": [
  6932. "extension.neon",
  6933. "rules.neon"
  6934. ]
  6935. }
  6936. },
  6937. "autoload": {
  6938. "psr-4": {
  6939. "mglaman\\PHPStanDrupal\\": "src/"
  6940. }
  6941. },
  6942. "notification-url": "https://packagist.org/downloads/",
  6943. "license": [
  6944. "MIT"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Matt Glaman",
  6949. "email": "nmd.matt@gmail.com"
  6950. }
  6951. ],
  6952. "description": "Drupal extension and rules for PHPStan",
  6953. "support": {
  6954. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6955. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  6956. },
  6957. "funding": [
  6958. {
  6959. "url": "https://github.com/mglaman",
  6960. "type": "github"
  6961. },
  6962. {
  6963. "url": "https://opencollective.com/phpstan-drupal",
  6964. "type": "open_collective"
  6965. },
  6966. {
  6967. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6968. "type": "tidelift"
  6969. }
  6970. ],
  6971. "time": "2023-11-03T13:17:28+00:00"
  6972. },
  6973. {
  6974. "name": "nikic/php-parser",
  6975. "version": "v4.4.0",
  6976. "source": {
  6977. "type": "git",
  6978. "url": "https://github.com/nikic/PHP-Parser.git",
  6979. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6980. },
  6981. "dist": {
  6982. "type": "zip",
  6983. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6984. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6985. "shasum": ""
  6986. },
  6987. "require": {
  6988. "ext-tokenizer": "*",
  6989. "php": ">=7.0"
  6990. },
  6991. "require-dev": {
  6992. "ircmaxell/php-yacc": "0.0.5",
  6993. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6994. },
  6995. "bin": [
  6996. "bin/php-parse"
  6997. ],
  6998. "type": "library",
  6999. "extra": {
  7000. "branch-alias": {
  7001. "dev-master": "4.3-dev"
  7002. }
  7003. },
  7004. "autoload": {
  7005. "psr-4": {
  7006. "PhpParser\\": "lib/PhpParser"
  7007. }
  7008. },
  7009. "notification-url": "https://packagist.org/downloads/",
  7010. "license": [
  7011. "BSD-3-Clause"
  7012. ],
  7013. "authors": [
  7014. {
  7015. "name": "Nikita Popov"
  7016. }
  7017. ],
  7018. "description": "A PHP parser written in PHP",
  7019. "keywords": [
  7020. "parser",
  7021. "php"
  7022. ],
  7023. "time": "2020-04-10T16:34:50+00:00"
  7024. },
  7025. {
  7026. "name": "paragonie/random_compat",
  7027. "version": "v9.99.99",
  7028. "source": {
  7029. "type": "git",
  7030. "url": "https://github.com/paragonie/random_compat.git",
  7031. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7032. },
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7036. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7037. "shasum": ""
  7038. },
  7039. "require": {
  7040. "php": "^7"
  7041. },
  7042. "require-dev": {
  7043. "phpunit/phpunit": "4.*|5.*",
  7044. "vimeo/psalm": "^1"
  7045. },
  7046. "suggest": {
  7047. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7048. },
  7049. "type": "library",
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "authors": [
  7055. {
  7056. "name": "Paragon Initiative Enterprises",
  7057. "email": "security@paragonie.com",
  7058. "homepage": "https://paragonie.com"
  7059. }
  7060. ],
  7061. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7062. "keywords": [
  7063. "csprng",
  7064. "polyfill",
  7065. "pseudorandom",
  7066. "random"
  7067. ],
  7068. "support": {
  7069. "email": "info@paragonie.com",
  7070. "issues": "https://github.com/paragonie/random_compat/issues",
  7071. "source": "https://github.com/paragonie/random_compat"
  7072. },
  7073. "time": "2018-07-02T15:55:56+00:00"
  7074. },
  7075. {
  7076. "name": "pear/archive_tar",
  7077. "version": "1.4.14",
  7078. "source": {
  7079. "type": "git",
  7080. "url": "https://github.com/pear/Archive_Tar.git",
  7081. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7082. },
  7083. "dist": {
  7084. "type": "zip",
  7085. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7086. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7087. "shasum": ""
  7088. },
  7089. "require": {
  7090. "pear/pear-core-minimal": "^1.10.0alpha2",
  7091. "php": ">=5.2.0"
  7092. },
  7093. "require-dev": {
  7094. "phpunit/phpunit": "*"
  7095. },
  7096. "suggest": {
  7097. "ext-bz2": "Bz2 compression support.",
  7098. "ext-xz": "Lzma2 compression support.",
  7099. "ext-zlib": "Gzip compression support."
  7100. },
  7101. "type": "library",
  7102. "extra": {
  7103. "branch-alias": {
  7104. "dev-master": "1.4.x-dev"
  7105. }
  7106. },
  7107. "autoload": {
  7108. "psr-0": {
  7109. "Archive_Tar": ""
  7110. }
  7111. },
  7112. "notification-url": "https://packagist.org/downloads/",
  7113. "include-path": [
  7114. "./"
  7115. ],
  7116. "license": [
  7117. "BSD-3-Clause"
  7118. ],
  7119. "authors": [
  7120. {
  7121. "name": "Vincent Blavet",
  7122. "email": "vincent@phpconcept.net"
  7123. },
  7124. {
  7125. "name": "Greg Beaver",
  7126. "email": "greg@chiaraquartet.net"
  7127. },
  7128. {
  7129. "name": "Michiel Rook",
  7130. "email": "mrook@php.net"
  7131. }
  7132. ],
  7133. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7134. "homepage": "https://github.com/pear/Archive_Tar",
  7135. "keywords": [
  7136. "archive",
  7137. "tar"
  7138. ],
  7139. "support": {
  7140. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7141. "source": "https://github.com/pear/Archive_Tar"
  7142. },
  7143. "funding": [
  7144. {
  7145. "url": "https://github.com/mrook",
  7146. "type": "github"
  7147. },
  7148. {
  7149. "url": "https://www.patreon.com/michielrook",
  7150. "type": "patreon"
  7151. }
  7152. ],
  7153. "time": "2021-07-20T13:53:39+00:00"
  7154. },
  7155. {
  7156. "name": "pear/console_getopt",
  7157. "version": "v1.4.3",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/pear/Console_Getopt.git",
  7161. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7166. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7167. "shasum": ""
  7168. },
  7169. "type": "library",
  7170. "autoload": {
  7171. "psr-0": {
  7172. "Console": "./"
  7173. }
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "include-path": [
  7177. "./"
  7178. ],
  7179. "license": [
  7180. "BSD-2-Clause"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Andrei Zmievski",
  7185. "email": "andrei@php.net",
  7186. "role": "Lead"
  7187. },
  7188. {
  7189. "name": "Stig Bakken",
  7190. "email": "stig@php.net",
  7191. "role": "Developer"
  7192. },
  7193. {
  7194. "name": "Greg Beaver",
  7195. "email": "cellog@php.net",
  7196. "role": "Helper"
  7197. }
  7198. ],
  7199. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7200. "support": {
  7201. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7202. "source": "https://github.com/pear/Console_Getopt"
  7203. },
  7204. "time": "2019-11-20T18:27:48+00:00"
  7205. },
  7206. {
  7207. "name": "pear/pear-core-minimal",
  7208. "version": "v1.10.10",
  7209. "source": {
  7210. "type": "git",
  7211. "url": "https://github.com/pear/pear-core-minimal.git",
  7212. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7213. },
  7214. "dist": {
  7215. "type": "zip",
  7216. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7217. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7218. "shasum": ""
  7219. },
  7220. "require": {
  7221. "pear/console_getopt": "~1.4",
  7222. "pear/pear_exception": "~1.0"
  7223. },
  7224. "replace": {
  7225. "rsky/pear-core-min": "self.version"
  7226. },
  7227. "type": "library",
  7228. "autoload": {
  7229. "psr-0": {
  7230. "": "src/"
  7231. }
  7232. },
  7233. "notification-url": "https://packagist.org/downloads/",
  7234. "include-path": [
  7235. "src/"
  7236. ],
  7237. "license": [
  7238. "BSD-3-Clause"
  7239. ],
  7240. "authors": [
  7241. {
  7242. "name": "Christian Weiske",
  7243. "email": "cweiske@php.net",
  7244. "role": "Lead"
  7245. }
  7246. ],
  7247. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7248. "support": {
  7249. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7250. "source": "https://github.com/pear/pear-core-minimal"
  7251. },
  7252. "time": "2019-11-19T19:00:24+00:00"
  7253. },
  7254. {
  7255. "name": "pear/pear_exception",
  7256. "version": "v1.0.1",
  7257. "source": {
  7258. "type": "git",
  7259. "url": "https://github.com/pear/PEAR_Exception.git",
  7260. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7261. },
  7262. "dist": {
  7263. "type": "zip",
  7264. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7265. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7266. "shasum": ""
  7267. },
  7268. "require": {
  7269. "php": ">=4.4.0"
  7270. },
  7271. "require-dev": {
  7272. "phpunit/phpunit": "*"
  7273. },
  7274. "type": "class",
  7275. "extra": {
  7276. "branch-alias": {
  7277. "dev-master": "1.0.x-dev"
  7278. }
  7279. },
  7280. "autoload": {
  7281. "classmap": [
  7282. "PEAR/"
  7283. ]
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "include-path": [
  7287. "."
  7288. ],
  7289. "license": [
  7290. "BSD-2-Clause"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Helgi Thormar",
  7295. "email": "dufuz@php.net"
  7296. },
  7297. {
  7298. "name": "Greg Beaver",
  7299. "email": "cellog@php.net"
  7300. }
  7301. ],
  7302. "description": "The PEAR Exception base class.",
  7303. "homepage": "https://github.com/pear/PEAR_Exception",
  7304. "keywords": [
  7305. "exception"
  7306. ],
  7307. "support": {
  7308. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7309. "source": "https://github.com/pear/PEAR_Exception"
  7310. },
  7311. "time": "2019-12-10T10:24:42+00:00"
  7312. },
  7313. {
  7314. "name": "phpstan/phpstan",
  7315. "version": "1.12.3",
  7316. "source": {
  7317. "type": "git",
  7318. "url": "https://github.com/phpstan/phpstan.git",
  7319. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7320. },
  7321. "dist": {
  7322. "type": "zip",
  7323. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7324. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7325. "shasum": ""
  7326. },
  7327. "require": {
  7328. "php": "^7.2|^8.0"
  7329. },
  7330. "conflict": {
  7331. "phpstan/phpstan-shim": "*"
  7332. },
  7333. "bin": [
  7334. "phpstan",
  7335. "phpstan.phar"
  7336. ],
  7337. "type": "library",
  7338. "autoload": {
  7339. "files": [
  7340. "bootstrap.php"
  7341. ]
  7342. },
  7343. "notification-url": "https://packagist.org/downloads/",
  7344. "license": [
  7345. "MIT"
  7346. ],
  7347. "description": "PHPStan - PHP Static Analysis Tool",
  7348. "keywords": [
  7349. "dev",
  7350. "static analysis"
  7351. ],
  7352. "support": {
  7353. "docs": "https://phpstan.org/user-guide/getting-started",
  7354. "forum": "https://github.com/phpstan/phpstan/discussions",
  7355. "issues": "https://github.com/phpstan/phpstan/issues",
  7356. "security": "https://github.com/phpstan/phpstan/security/policy",
  7357. "source": "https://github.com/phpstan/phpstan-src"
  7358. },
  7359. "funding": [
  7360. {
  7361. "url": "https://github.com/ondrejmirtes",
  7362. "type": "github"
  7363. },
  7364. {
  7365. "url": "https://github.com/phpstan",
  7366. "type": "github"
  7367. }
  7368. ],
  7369. "time": "2024-09-09T08:10:35+00:00"
  7370. },
  7371. {
  7372. "name": "phpstan/phpstan-deprecation-rules",
  7373. "version": "1.2.1",
  7374. "source": {
  7375. "type": "git",
  7376. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7377. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7378. },
  7379. "dist": {
  7380. "type": "zip",
  7381. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7382. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7383. "shasum": ""
  7384. },
  7385. "require": {
  7386. "php": "^7.2 || ^8.0",
  7387. "phpstan/phpstan": "^1.12"
  7388. },
  7389. "require-dev": {
  7390. "php-parallel-lint/php-parallel-lint": "^1.2",
  7391. "phpstan/phpstan-phpunit": "^1.0",
  7392. "phpunit/phpunit": "^9.5"
  7393. },
  7394. "type": "phpstan-extension",
  7395. "extra": {
  7396. "phpstan": {
  7397. "includes": [
  7398. "rules.neon"
  7399. ]
  7400. }
  7401. },
  7402. "autoload": {
  7403. "psr-4": {
  7404. "PHPStan\\": "src/"
  7405. }
  7406. },
  7407. "notification-url": "https://packagist.org/downloads/",
  7408. "license": [
  7409. "MIT"
  7410. ],
  7411. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7412. "support": {
  7413. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7414. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7415. },
  7416. "time": "2024-09-11T15:52:35+00:00"
  7417. },
  7418. {
  7419. "name": "psr/container",
  7420. "version": "1.0.0",
  7421. "source": {
  7422. "type": "git",
  7423. "url": "https://github.com/php-fig/container.git",
  7424. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7425. },
  7426. "dist": {
  7427. "type": "zip",
  7428. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7429. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7430. "shasum": ""
  7431. },
  7432. "require": {
  7433. "php": ">=5.3.0"
  7434. },
  7435. "type": "library",
  7436. "extra": {
  7437. "branch-alias": {
  7438. "dev-master": "1.0.x-dev"
  7439. }
  7440. },
  7441. "autoload": {
  7442. "psr-4": {
  7443. "Psr\\Container\\": "src/"
  7444. }
  7445. },
  7446. "notification-url": "https://packagist.org/downloads/",
  7447. "license": [
  7448. "MIT"
  7449. ],
  7450. "authors": [
  7451. {
  7452. "name": "PHP-FIG",
  7453. "homepage": "http://www.php-fig.org/"
  7454. }
  7455. ],
  7456. "description": "Common Container Interface (PHP FIG PSR-11)",
  7457. "homepage": "https://github.com/php-fig/container",
  7458. "keywords": [
  7459. "PSR-11",
  7460. "container",
  7461. "container-interface",
  7462. "container-interop",
  7463. "psr"
  7464. ],
  7465. "support": {
  7466. "issues": "https://github.com/php-fig/container/issues",
  7467. "source": "https://github.com/php-fig/container/tree/master"
  7468. },
  7469. "time": "2017-02-14T16:28:37+00:00"
  7470. },
  7471. {
  7472. "name": "psr/http-message",
  7473. "version": "1.0.1",
  7474. "source": {
  7475. "type": "git",
  7476. "url": "https://github.com/php-fig/http-message.git",
  7477. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7478. },
  7479. "dist": {
  7480. "type": "zip",
  7481. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7482. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7483. "shasum": ""
  7484. },
  7485. "require": {
  7486. "php": ">=5.3.0"
  7487. },
  7488. "type": "library",
  7489. "extra": {
  7490. "branch-alias": {
  7491. "dev-master": "1.0.x-dev"
  7492. }
  7493. },
  7494. "autoload": {
  7495. "psr-4": {
  7496. "Psr\\Http\\Message\\": "src/"
  7497. }
  7498. },
  7499. "notification-url": "https://packagist.org/downloads/",
  7500. "license": [
  7501. "MIT"
  7502. ],
  7503. "authors": [
  7504. {
  7505. "name": "PHP-FIG",
  7506. "homepage": "http://www.php-fig.org/"
  7507. }
  7508. ],
  7509. "description": "Common interface for HTTP messages",
  7510. "homepage": "https://github.com/php-fig/http-message",
  7511. "keywords": [
  7512. "http",
  7513. "http-message",
  7514. "psr",
  7515. "psr-7",
  7516. "request",
  7517. "response"
  7518. ],
  7519. "support": {
  7520. "source": "https://github.com/php-fig/http-message/tree/master"
  7521. },
  7522. "time": "2016-08-06T14:39:51+00:00"
  7523. },
  7524. {
  7525. "name": "psr/log",
  7526. "version": "1.1.3",
  7527. "source": {
  7528. "type": "git",
  7529. "url": "https://github.com/php-fig/log.git",
  7530. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7531. },
  7532. "dist": {
  7533. "type": "zip",
  7534. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7535. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7536. "shasum": ""
  7537. },
  7538. "require": {
  7539. "php": ">=5.3.0"
  7540. },
  7541. "type": "library",
  7542. "extra": {
  7543. "branch-alias": {
  7544. "dev-master": "1.1.x-dev"
  7545. }
  7546. },
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Psr\\Log\\": "Psr/Log/"
  7550. }
  7551. },
  7552. "notification-url": "https://packagist.org/downloads/",
  7553. "license": [
  7554. "MIT"
  7555. ],
  7556. "authors": [
  7557. {
  7558. "name": "PHP-FIG",
  7559. "homepage": "http://www.php-fig.org/"
  7560. }
  7561. ],
  7562. "description": "Common interface for logging libraries",
  7563. "homepage": "https://github.com/php-fig/log",
  7564. "keywords": [
  7565. "log",
  7566. "psr",
  7567. "psr-3"
  7568. ],
  7569. "support": {
  7570. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7571. },
  7572. "time": "2020-03-23T09:12:05+00:00"
  7573. },
  7574. {
  7575. "name": "psy/psysh",
  7576. "version": "v0.10.4",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/bobthecow/psysh.git",
  7580. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7585. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7586. "shasum": ""
  7587. },
  7588. "require": {
  7589. "dnoegel/php-xdg-base-dir": "0.1.*",
  7590. "ext-json": "*",
  7591. "ext-tokenizer": "*",
  7592. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7593. "php": "^8.0 || ^7.0 || ^5.5.9",
  7594. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7595. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7596. },
  7597. "require-dev": {
  7598. "bamarni/composer-bin-plugin": "^1.2",
  7599. "hoa/console": "3.17.*"
  7600. },
  7601. "suggest": {
  7602. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7603. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7604. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7605. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7606. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7607. },
  7608. "bin": [
  7609. "bin/psysh"
  7610. ],
  7611. "type": "library",
  7612. "extra": {
  7613. "branch-alias": {
  7614. "dev-master": "0.10.x-dev"
  7615. }
  7616. },
  7617. "autoload": {
  7618. "files": [
  7619. "src/functions.php"
  7620. ],
  7621. "psr-4": {
  7622. "Psy\\": "src/"
  7623. }
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "MIT"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Justin Hileman",
  7632. "email": "justin@justinhileman.info",
  7633. "homepage": "http://justinhileman.com"
  7634. }
  7635. ],
  7636. "description": "An interactive shell for modern PHP.",
  7637. "homepage": "http://psysh.org",
  7638. "keywords": [
  7639. "REPL",
  7640. "console",
  7641. "interactive",
  7642. "shell"
  7643. ],
  7644. "time": "2020-05-03T19:32:03+00:00"
  7645. },
  7646. {
  7647. "name": "ralouphie/getallheaders",
  7648. "version": "3.0.3",
  7649. "source": {
  7650. "type": "git",
  7651. "url": "https://github.com/ralouphie/getallheaders.git",
  7652. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7653. },
  7654. "dist": {
  7655. "type": "zip",
  7656. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7657. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7658. "shasum": ""
  7659. },
  7660. "require": {
  7661. "php": ">=5.6"
  7662. },
  7663. "require-dev": {
  7664. "php-coveralls/php-coveralls": "^2.1",
  7665. "phpunit/phpunit": "^5 || ^6.5"
  7666. },
  7667. "type": "library",
  7668. "autoload": {
  7669. "files": [
  7670. "src/getallheaders.php"
  7671. ]
  7672. },
  7673. "notification-url": "https://packagist.org/downloads/",
  7674. "license": [
  7675. "MIT"
  7676. ],
  7677. "authors": [
  7678. {
  7679. "name": "Ralph Khattar",
  7680. "email": "ralph.khattar@gmail.com"
  7681. }
  7682. ],
  7683. "description": "A polyfill for getallheaders.",
  7684. "support": {
  7685. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7686. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7687. },
  7688. "time": "2019-03-08T08:55:37+00:00"
  7689. },
  7690. {
  7691. "name": "stack/builder",
  7692. "version": "v1.0.5",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/stackphp/builder.git",
  7696. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7701. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7702. "shasum": ""
  7703. },
  7704. "require": {
  7705. "php": ">=5.3.0",
  7706. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7707. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7708. },
  7709. "require-dev": {
  7710. "silex/silex": "~1.0"
  7711. },
  7712. "type": "library",
  7713. "extra": {
  7714. "branch-alias": {
  7715. "dev-master": "1.0-dev"
  7716. }
  7717. },
  7718. "autoload": {
  7719. "psr-0": {
  7720. "Stack": "src"
  7721. }
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "MIT"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Igor Wiedler",
  7730. "email": "igor@wiedler.ch"
  7731. }
  7732. ],
  7733. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7734. "keywords": [
  7735. "stack"
  7736. ],
  7737. "support": {
  7738. "issues": "https://github.com/stackphp/builder/issues",
  7739. "source": "https://github.com/stackphp/builder/tree/master"
  7740. },
  7741. "abandoned": true,
  7742. "time": "2017-11-18T14:57:29+00:00"
  7743. },
  7744. {
  7745. "name": "symfony-cmf/routing",
  7746. "version": "1.4.1",
  7747. "source": {
  7748. "type": "git",
  7749. "url": "https://github.com/symfony-cmf/routing.git",
  7750. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7751. },
  7752. "dist": {
  7753. "type": "zip",
  7754. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7755. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7756. "shasum": ""
  7757. },
  7758. "require": {
  7759. "php": "^5.3.9|^7.0",
  7760. "psr/log": "1.*",
  7761. "symfony/http-kernel": "^2.2|3.*",
  7762. "symfony/routing": "^2.2|3.*"
  7763. },
  7764. "require-dev": {
  7765. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7766. "symfony-cmf/testing": "^1.3",
  7767. "symfony/config": "^2.2|3.*",
  7768. "symfony/dependency-injection": "^2.0.5|3.*",
  7769. "symfony/event-dispatcher": "^2.1|3.*"
  7770. },
  7771. "suggest": {
  7772. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7773. },
  7774. "type": "library",
  7775. "extra": {
  7776. "branch-alias": {
  7777. "dev-master": "1.4-dev"
  7778. }
  7779. },
  7780. "autoload": {
  7781. "psr-4": {
  7782. "Symfony\\Cmf\\Component\\Routing\\": ""
  7783. }
  7784. },
  7785. "notification-url": "https://packagist.org/downloads/",
  7786. "license": [
  7787. "MIT"
  7788. ],
  7789. "authors": [
  7790. {
  7791. "name": "Symfony CMF Community",
  7792. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7793. }
  7794. ],
  7795. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7796. "homepage": "http://cmf.symfony.com",
  7797. "keywords": [
  7798. "database",
  7799. "routing"
  7800. ],
  7801. "support": {
  7802. "issues": "https://github.com/symfony-cmf/routing/issues",
  7803. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7804. },
  7805. "time": "2017-05-09T08:10:41+00:00"
  7806. },
  7807. {
  7808. "name": "symfony/class-loader",
  7809. "version": "v3.4.41",
  7810. "source": {
  7811. "type": "git",
  7812. "url": "https://github.com/symfony/class-loader.git",
  7813. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7814. },
  7815. "dist": {
  7816. "type": "zip",
  7817. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7818. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7819. "shasum": ""
  7820. },
  7821. "require": {
  7822. "php": "^5.5.9|>=7.0.8"
  7823. },
  7824. "require-dev": {
  7825. "symfony/finder": "~2.8|~3.0|~4.0",
  7826. "symfony/polyfill-apcu": "~1.1"
  7827. },
  7828. "suggest": {
  7829. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7830. },
  7831. "type": "library",
  7832. "extra": {
  7833. "branch-alias": {
  7834. "dev-master": "3.4-dev"
  7835. }
  7836. },
  7837. "autoload": {
  7838. "psr-4": {
  7839. "Symfony\\Component\\ClassLoader\\": ""
  7840. },
  7841. "exclude-from-classmap": [
  7842. "/Tests/"
  7843. ]
  7844. },
  7845. "notification-url": "https://packagist.org/downloads/",
  7846. "license": [
  7847. "MIT"
  7848. ],
  7849. "authors": [
  7850. {
  7851. "name": "Fabien Potencier",
  7852. "email": "fabien@symfony.com"
  7853. },
  7854. {
  7855. "name": "Symfony Community",
  7856. "homepage": "https://symfony.com/contributors"
  7857. }
  7858. ],
  7859. "description": "Symfony ClassLoader Component",
  7860. "homepage": "https://symfony.com",
  7861. "support": {
  7862. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7863. },
  7864. "funding": [
  7865. {
  7866. "url": "https://symfony.com/sponsor",
  7867. "type": "custom"
  7868. },
  7869. {
  7870. "url": "https://github.com/fabpot",
  7871. "type": "github"
  7872. },
  7873. {
  7874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7875. "type": "tidelift"
  7876. }
  7877. ],
  7878. "abandoned": true,
  7879. "time": "2020-03-15T09:38:08+00:00"
  7880. },
  7881. {
  7882. "name": "symfony/console",
  7883. "version": "v3.4.41",
  7884. "source": {
  7885. "type": "git",
  7886. "url": "https://github.com/symfony/console.git",
  7887. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7888. },
  7889. "dist": {
  7890. "type": "zip",
  7891. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7892. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7893. "shasum": ""
  7894. },
  7895. "require": {
  7896. "php": "^5.5.9|>=7.0.8",
  7897. "symfony/debug": "~2.8|~3.0|~4.0",
  7898. "symfony/polyfill-mbstring": "~1.0"
  7899. },
  7900. "conflict": {
  7901. "symfony/dependency-injection": "<3.4",
  7902. "symfony/process": "<3.3"
  7903. },
  7904. "provide": {
  7905. "psr/log-implementation": "1.0"
  7906. },
  7907. "require-dev": {
  7908. "psr/log": "~1.0",
  7909. "symfony/config": "~3.3|~4.0",
  7910. "symfony/dependency-injection": "~3.4|~4.0",
  7911. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7912. "symfony/lock": "~3.4|~4.0",
  7913. "symfony/process": "~3.3|~4.0"
  7914. },
  7915. "suggest": {
  7916. "psr/log": "For using the console logger",
  7917. "symfony/event-dispatcher": "",
  7918. "symfony/lock": "",
  7919. "symfony/process": ""
  7920. },
  7921. "type": "library",
  7922. "extra": {
  7923. "branch-alias": {
  7924. "dev-master": "3.4-dev"
  7925. }
  7926. },
  7927. "autoload": {
  7928. "psr-4": {
  7929. "Symfony\\Component\\Console\\": ""
  7930. },
  7931. "exclude-from-classmap": [
  7932. "/Tests/"
  7933. ]
  7934. },
  7935. "notification-url": "https://packagist.org/downloads/",
  7936. "license": [
  7937. "MIT"
  7938. ],
  7939. "authors": [
  7940. {
  7941. "name": "Fabien Potencier",
  7942. "email": "fabien@symfony.com"
  7943. },
  7944. {
  7945. "name": "Symfony Community",
  7946. "homepage": "https://symfony.com/contributors"
  7947. }
  7948. ],
  7949. "description": "Symfony Console Component",
  7950. "homepage": "https://symfony.com",
  7951. "support": {
  7952. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7953. },
  7954. "funding": [
  7955. {
  7956. "url": "https://symfony.com/sponsor",
  7957. "type": "custom"
  7958. },
  7959. {
  7960. "url": "https://github.com/fabpot",
  7961. "type": "github"
  7962. },
  7963. {
  7964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7965. "type": "tidelift"
  7966. }
  7967. ],
  7968. "time": "2020-05-30T18:58:05+00:00"
  7969. },
  7970. {
  7971. "name": "symfony/debug",
  7972. "version": "v3.4.41",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/symfony/debug.git",
  7976. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7981. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7982. "shasum": ""
  7983. },
  7984. "require": {
  7985. "php": "^5.5.9|>=7.0.8",
  7986. "psr/log": "~1.0"
  7987. },
  7988. "conflict": {
  7989. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7990. },
  7991. "require-dev": {
  7992. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7993. },
  7994. "type": "library",
  7995. "extra": {
  7996. "branch-alias": {
  7997. "dev-master": "3.4-dev"
  7998. }
  7999. },
  8000. "autoload": {
  8001. "psr-4": {
  8002. "Symfony\\Component\\Debug\\": ""
  8003. },
  8004. "exclude-from-classmap": [
  8005. "/Tests/"
  8006. ]
  8007. },
  8008. "notification-url": "https://packagist.org/downloads/",
  8009. "license": [
  8010. "MIT"
  8011. ],
  8012. "authors": [
  8013. {
  8014. "name": "Fabien Potencier",
  8015. "email": "fabien@symfony.com"
  8016. },
  8017. {
  8018. "name": "Symfony Community",
  8019. "homepage": "https://symfony.com/contributors"
  8020. }
  8021. ],
  8022. "description": "Symfony Debug Component",
  8023. "homepage": "https://symfony.com",
  8024. "support": {
  8025. "source": "https://github.com/symfony/debug/tree/3.4"
  8026. },
  8027. "funding": [
  8028. {
  8029. "url": "https://symfony.com/sponsor",
  8030. "type": "custom"
  8031. },
  8032. {
  8033. "url": "https://github.com/fabpot",
  8034. "type": "github"
  8035. },
  8036. {
  8037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8038. "type": "tidelift"
  8039. }
  8040. ],
  8041. "abandoned": "symfony/error-handler",
  8042. "time": "2020-05-22T18:25:20+00:00"
  8043. },
  8044. {
  8045. "name": "symfony/dependency-injection",
  8046. "version": "v3.4.41",
  8047. "source": {
  8048. "type": "git",
  8049. "url": "https://github.com/symfony/dependency-injection.git",
  8050. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  8051. },
  8052. "dist": {
  8053. "type": "zip",
  8054. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  8055. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  8056. "shasum": ""
  8057. },
  8058. "require": {
  8059. "php": "^5.5.9|>=7.0.8",
  8060. "psr/container": "^1.0"
  8061. },
  8062. "conflict": {
  8063. "symfony/config": "<3.3.7",
  8064. "symfony/finder": "<3.3",
  8065. "symfony/proxy-manager-bridge": "<3.4",
  8066. "symfony/yaml": "<3.4"
  8067. },
  8068. "provide": {
  8069. "psr/container-implementation": "1.0"
  8070. },
  8071. "require-dev": {
  8072. "symfony/config": "~3.3|~4.0",
  8073. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8074. "symfony/yaml": "~3.4|~4.0"
  8075. },
  8076. "suggest": {
  8077. "symfony/config": "",
  8078. "symfony/expression-language": "For using expressions in service container configuration",
  8079. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8080. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8081. "symfony/yaml": ""
  8082. },
  8083. "type": "library",
  8084. "extra": {
  8085. "branch-alias": {
  8086. "dev-master": "3.4-dev"
  8087. }
  8088. },
  8089. "autoload": {
  8090. "psr-4": {
  8091. "Symfony\\Component\\DependencyInjection\\": ""
  8092. },
  8093. "exclude-from-classmap": [
  8094. "/Tests/"
  8095. ]
  8096. },
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "MIT"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Fabien Potencier",
  8104. "email": "fabien@symfony.com"
  8105. },
  8106. {
  8107. "name": "Symfony Community",
  8108. "homepage": "https://symfony.com/contributors"
  8109. }
  8110. ],
  8111. "description": "Symfony DependencyInjection Component",
  8112. "homepage": "https://symfony.com",
  8113. "support": {
  8114. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8115. },
  8116. "funding": [
  8117. {
  8118. "url": "https://symfony.com/sponsor",
  8119. "type": "custom"
  8120. },
  8121. {
  8122. "url": "https://github.com/fabpot",
  8123. "type": "github"
  8124. },
  8125. {
  8126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8127. "type": "tidelift"
  8128. }
  8129. ],
  8130. "time": "2020-05-30T21:06:01+00:00"
  8131. },
  8132. {
  8133. "name": "symfony/event-dispatcher",
  8134. "version": "v3.4.41",
  8135. "source": {
  8136. "type": "git",
  8137. "url": "https://github.com/symfony/event-dispatcher.git",
  8138. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8139. },
  8140. "dist": {
  8141. "type": "zip",
  8142. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8143. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8144. "shasum": ""
  8145. },
  8146. "require": {
  8147. "php": "^5.5.9|>=7.0.8"
  8148. },
  8149. "conflict": {
  8150. "symfony/dependency-injection": "<3.3"
  8151. },
  8152. "require-dev": {
  8153. "psr/log": "~1.0",
  8154. "symfony/config": "~2.8|~3.0|~4.0",
  8155. "symfony/dependency-injection": "~3.3|~4.0",
  8156. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8157. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8158. },
  8159. "suggest": {
  8160. "symfony/dependency-injection": "",
  8161. "symfony/http-kernel": ""
  8162. },
  8163. "type": "library",
  8164. "extra": {
  8165. "branch-alias": {
  8166. "dev-master": "3.4-dev"
  8167. }
  8168. },
  8169. "autoload": {
  8170. "psr-4": {
  8171. "Symfony\\Component\\EventDispatcher\\": ""
  8172. },
  8173. "exclude-from-classmap": [
  8174. "/Tests/"
  8175. ]
  8176. },
  8177. "notification-url": "https://packagist.org/downloads/",
  8178. "license": [
  8179. "MIT"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Fabien Potencier",
  8184. "email": "fabien@symfony.com"
  8185. },
  8186. {
  8187. "name": "Symfony Community",
  8188. "homepage": "https://symfony.com/contributors"
  8189. }
  8190. ],
  8191. "description": "Symfony EventDispatcher Component",
  8192. "homepage": "https://symfony.com",
  8193. "support": {
  8194. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8195. },
  8196. "funding": [
  8197. {
  8198. "url": "https://symfony.com/sponsor",
  8199. "type": "custom"
  8200. },
  8201. {
  8202. "url": "https://github.com/fabpot",
  8203. "type": "github"
  8204. },
  8205. {
  8206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8207. "type": "tidelift"
  8208. }
  8209. ],
  8210. "time": "2020-05-05T15:06:23+00:00"
  8211. },
  8212. {
  8213. "name": "symfony/filesystem",
  8214. "version": "v4.4.42",
  8215. "source": {
  8216. "type": "git",
  8217. "url": "https://github.com/symfony/filesystem.git",
  8218. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8219. },
  8220. "dist": {
  8221. "type": "zip",
  8222. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8223. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8224. "shasum": ""
  8225. },
  8226. "require": {
  8227. "php": ">=7.1.3",
  8228. "symfony/polyfill-ctype": "~1.8",
  8229. "symfony/polyfill-php80": "^1.16"
  8230. },
  8231. "type": "library",
  8232. "autoload": {
  8233. "psr-4": {
  8234. "Symfony\\Component\\Filesystem\\": ""
  8235. },
  8236. "exclude-from-classmap": [
  8237. "/Tests/"
  8238. ]
  8239. },
  8240. "notification-url": "https://packagist.org/downloads/",
  8241. "license": [
  8242. "MIT"
  8243. ],
  8244. "authors": [
  8245. {
  8246. "name": "Fabien Potencier",
  8247. "email": "fabien@symfony.com"
  8248. },
  8249. {
  8250. "name": "Symfony Community",
  8251. "homepage": "https://symfony.com/contributors"
  8252. }
  8253. ],
  8254. "description": "Provides basic utilities for the filesystem",
  8255. "homepage": "https://symfony.com",
  8256. "support": {
  8257. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8258. },
  8259. "funding": [
  8260. {
  8261. "url": "https://symfony.com/sponsor",
  8262. "type": "custom"
  8263. },
  8264. {
  8265. "url": "https://github.com/fabpot",
  8266. "type": "github"
  8267. },
  8268. {
  8269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8270. "type": "tidelift"
  8271. }
  8272. ],
  8273. "time": "2022-05-20T08:49:14+00:00"
  8274. },
  8275. {
  8276. "name": "symfony/finder",
  8277. "version": "v4.4.44",
  8278. "source": {
  8279. "type": "git",
  8280. "url": "https://github.com/symfony/finder.git",
  8281. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8282. },
  8283. "dist": {
  8284. "type": "zip",
  8285. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8286. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8287. "shasum": ""
  8288. },
  8289. "require": {
  8290. "php": ">=7.1.3",
  8291. "symfony/polyfill-php80": "^1.16"
  8292. },
  8293. "type": "library",
  8294. "autoload": {
  8295. "psr-4": {
  8296. "Symfony\\Component\\Finder\\": ""
  8297. },
  8298. "exclude-from-classmap": [
  8299. "/Tests/"
  8300. ]
  8301. },
  8302. "notification-url": "https://packagist.org/downloads/",
  8303. "license": [
  8304. "MIT"
  8305. ],
  8306. "authors": [
  8307. {
  8308. "name": "Fabien Potencier",
  8309. "email": "fabien@symfony.com"
  8310. },
  8311. {
  8312. "name": "Symfony Community",
  8313. "homepage": "https://symfony.com/contributors"
  8314. }
  8315. ],
  8316. "description": "Finds files and directories via an intuitive fluent interface",
  8317. "homepage": "https://symfony.com",
  8318. "support": {
  8319. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8320. },
  8321. "funding": [
  8322. {
  8323. "url": "https://symfony.com/sponsor",
  8324. "type": "custom"
  8325. },
  8326. {
  8327. "url": "https://github.com/fabpot",
  8328. "type": "github"
  8329. },
  8330. {
  8331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8332. "type": "tidelift"
  8333. }
  8334. ],
  8335. "time": "2022-07-29T07:35:46+00:00"
  8336. },
  8337. {
  8338. "name": "symfony/http-foundation",
  8339. "version": "v3.4.41",
  8340. "source": {
  8341. "type": "git",
  8342. "url": "https://github.com/symfony/http-foundation.git",
  8343. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8344. },
  8345. "dist": {
  8346. "type": "zip",
  8347. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8348. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8349. "shasum": ""
  8350. },
  8351. "require": {
  8352. "php": "^5.5.9|>=7.0.8",
  8353. "symfony/polyfill-mbstring": "~1.1",
  8354. "symfony/polyfill-php70": "~1.6"
  8355. },
  8356. "require-dev": {
  8357. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8358. },
  8359. "type": "library",
  8360. "extra": {
  8361. "branch-alias": {
  8362. "dev-master": "3.4-dev"
  8363. }
  8364. },
  8365. "autoload": {
  8366. "psr-4": {
  8367. "Symfony\\Component\\HttpFoundation\\": ""
  8368. },
  8369. "exclude-from-classmap": [
  8370. "/Tests/"
  8371. ]
  8372. },
  8373. "notification-url": "https://packagist.org/downloads/",
  8374. "license": [
  8375. "MIT"
  8376. ],
  8377. "authors": [
  8378. {
  8379. "name": "Fabien Potencier",
  8380. "email": "fabien@symfony.com"
  8381. },
  8382. {
  8383. "name": "Symfony Community",
  8384. "homepage": "https://symfony.com/contributors"
  8385. }
  8386. ],
  8387. "description": "Symfony HttpFoundation Component",
  8388. "homepage": "https://symfony.com",
  8389. "support": {
  8390. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8391. },
  8392. "funding": [
  8393. {
  8394. "url": "https://symfony.com/sponsor",
  8395. "type": "custom"
  8396. },
  8397. {
  8398. "url": "https://github.com/fabpot",
  8399. "type": "github"
  8400. },
  8401. {
  8402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8403. "type": "tidelift"
  8404. }
  8405. ],
  8406. "time": "2020-05-16T13:15:54+00:00"
  8407. },
  8408. {
  8409. "name": "symfony/http-kernel",
  8410. "version": "v3.4.44",
  8411. "source": {
  8412. "type": "git",
  8413. "url": "https://github.com/symfony/http-kernel.git",
  8414. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8415. },
  8416. "dist": {
  8417. "type": "zip",
  8418. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8419. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8420. "shasum": ""
  8421. },
  8422. "require": {
  8423. "php": "^5.5.9|>=7.0.8",
  8424. "psr/log": "~1.0",
  8425. "symfony/debug": "^3.3.3|~4.0",
  8426. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8427. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8428. "symfony/polyfill-ctype": "~1.8",
  8429. "symfony/polyfill-php56": "~1.8"
  8430. },
  8431. "conflict": {
  8432. "symfony/config": "<2.8",
  8433. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8434. "symfony/var-dumper": "<3.3",
  8435. "twig/twig": "<1.34|<2.4,>=2"
  8436. },
  8437. "provide": {
  8438. "psr/log-implementation": "1.0"
  8439. },
  8440. "require-dev": {
  8441. "psr/cache": "~1.0",
  8442. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8443. "symfony/class-loader": "~2.8|~3.0",
  8444. "symfony/config": "~2.8|~3.0|~4.0",
  8445. "symfony/console": "~2.8|~3.0|~4.0",
  8446. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8447. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8448. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8449. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8450. "symfony/finder": "~2.8|~3.0|~4.0",
  8451. "symfony/process": "~2.8|~3.0|~4.0",
  8452. "symfony/routing": "~3.4|~4.0",
  8453. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8454. "symfony/templating": "~2.8|~3.0|~4.0",
  8455. "symfony/translation": "~2.8|~3.0|~4.0",
  8456. "symfony/var-dumper": "~3.3|~4.0"
  8457. },
  8458. "suggest": {
  8459. "symfony/browser-kit": "",
  8460. "symfony/config": "",
  8461. "symfony/console": "",
  8462. "symfony/dependency-injection": "",
  8463. "symfony/finder": "",
  8464. "symfony/var-dumper": ""
  8465. },
  8466. "type": "library",
  8467. "extra": {
  8468. "branch-alias": {
  8469. "dev-master": "3.4-dev"
  8470. }
  8471. },
  8472. "autoload": {
  8473. "psr-4": {
  8474. "Symfony\\Component\\HttpKernel\\": ""
  8475. },
  8476. "exclude-from-classmap": [
  8477. "/Tests/"
  8478. ]
  8479. },
  8480. "notification-url": "https://packagist.org/downloads/",
  8481. "license": [
  8482. "MIT"
  8483. ],
  8484. "authors": [
  8485. {
  8486. "name": "Fabien Potencier",
  8487. "email": "fabien@symfony.com"
  8488. },
  8489. {
  8490. "name": "Symfony Community",
  8491. "homepage": "https://symfony.com/contributors"
  8492. }
  8493. ],
  8494. "description": "Symfony HttpKernel Component",
  8495. "homepage": "https://symfony.com",
  8496. "support": {
  8497. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8498. },
  8499. "funding": [
  8500. {
  8501. "url": "https://symfony.com/sponsor",
  8502. "type": "custom"
  8503. },
  8504. {
  8505. "url": "https://github.com/fabpot",
  8506. "type": "github"
  8507. },
  8508. {
  8509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8510. "type": "tidelift"
  8511. }
  8512. ],
  8513. "time": "2020-08-31T05:53:42+00:00"
  8514. },
  8515. {
  8516. "name": "symfony/polyfill-ctype",
  8517. "version": "v1.17.0",
  8518. "source": {
  8519. "type": "git",
  8520. "url": "https://github.com/symfony/polyfill-ctype.git",
  8521. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8522. },
  8523. "dist": {
  8524. "type": "zip",
  8525. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8526. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8527. "shasum": ""
  8528. },
  8529. "require": {
  8530. "php": ">=5.3.3"
  8531. },
  8532. "suggest": {
  8533. "ext-ctype": "For best performance"
  8534. },
  8535. "type": "library",
  8536. "extra": {
  8537. "branch-alias": {
  8538. "dev-master": "1.17-dev"
  8539. }
  8540. },
  8541. "autoload": {
  8542. "files": [
  8543. "bootstrap.php"
  8544. ],
  8545. "psr-4": {
  8546. "Symfony\\Polyfill\\Ctype\\": ""
  8547. }
  8548. },
  8549. "notification-url": "https://packagist.org/downloads/",
  8550. "license": [
  8551. "MIT"
  8552. ],
  8553. "authors": [
  8554. {
  8555. "name": "Gert de Pagter",
  8556. "email": "BackEndTea@gmail.com"
  8557. },
  8558. {
  8559. "name": "Symfony Community",
  8560. "homepage": "https://symfony.com/contributors"
  8561. }
  8562. ],
  8563. "description": "Symfony polyfill for ctype functions",
  8564. "homepage": "https://symfony.com",
  8565. "keywords": [
  8566. "compatibility",
  8567. "ctype",
  8568. "polyfill",
  8569. "portable"
  8570. ],
  8571. "support": {
  8572. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8573. },
  8574. "funding": [
  8575. {
  8576. "url": "https://symfony.com/sponsor",
  8577. "type": "custom"
  8578. },
  8579. {
  8580. "url": "https://github.com/fabpot",
  8581. "type": "github"
  8582. },
  8583. {
  8584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8585. "type": "tidelift"
  8586. }
  8587. ],
  8588. "time": "2020-05-12T16:14:59+00:00"
  8589. },
  8590. {
  8591. "name": "symfony/polyfill-iconv",
  8592. "version": "v1.17.0",
  8593. "source": {
  8594. "type": "git",
  8595. "url": "https://github.com/symfony/polyfill-iconv.git",
  8596. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8597. },
  8598. "dist": {
  8599. "type": "zip",
  8600. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8601. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8602. "shasum": ""
  8603. },
  8604. "require": {
  8605. "php": ">=5.3.3"
  8606. },
  8607. "suggest": {
  8608. "ext-iconv": "For best performance"
  8609. },
  8610. "type": "library",
  8611. "extra": {
  8612. "branch-alias": {
  8613. "dev-master": "1.17-dev"
  8614. }
  8615. },
  8616. "autoload": {
  8617. "files": [
  8618. "bootstrap.php"
  8619. ],
  8620. "psr-4": {
  8621. "Symfony\\Polyfill\\Iconv\\": ""
  8622. }
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "MIT"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Nicolas Grekas",
  8631. "email": "p@tchwork.com"
  8632. },
  8633. {
  8634. "name": "Symfony Community",
  8635. "homepage": "https://symfony.com/contributors"
  8636. }
  8637. ],
  8638. "description": "Symfony polyfill for the Iconv extension",
  8639. "homepage": "https://symfony.com",
  8640. "keywords": [
  8641. "compatibility",
  8642. "iconv",
  8643. "polyfill",
  8644. "portable",
  8645. "shim"
  8646. ],
  8647. "support": {
  8648. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8649. },
  8650. "funding": [
  8651. {
  8652. "url": "https://symfony.com/sponsor",
  8653. "type": "custom"
  8654. },
  8655. {
  8656. "url": "https://github.com/fabpot",
  8657. "type": "github"
  8658. },
  8659. {
  8660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8661. "type": "tidelift"
  8662. }
  8663. ],
  8664. "time": "2020-05-12T16:47:27+00:00"
  8665. },
  8666. {
  8667. "name": "symfony/polyfill-intl-idn",
  8668. "version": "v1.17.0",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8672. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8677. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": ">=5.3.3",
  8682. "symfony/polyfill-mbstring": "^1.3",
  8683. "symfony/polyfill-php72": "^1.10"
  8684. },
  8685. "suggest": {
  8686. "ext-intl": "For best performance"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "branch-alias": {
  8691. "dev-master": "1.17-dev"
  8692. }
  8693. },
  8694. "autoload": {
  8695. "files": [
  8696. "bootstrap.php"
  8697. ],
  8698. "psr-4": {
  8699. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8700. }
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "MIT"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Laurent Bassin",
  8709. "email": "laurent@bassin.info"
  8710. },
  8711. {
  8712. "name": "Symfony Community",
  8713. "homepage": "https://symfony.com/contributors"
  8714. }
  8715. ],
  8716. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8717. "homepage": "https://symfony.com",
  8718. "keywords": [
  8719. "compatibility",
  8720. "idn",
  8721. "intl",
  8722. "polyfill",
  8723. "portable",
  8724. "shim"
  8725. ],
  8726. "support": {
  8727. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8728. },
  8729. "funding": [
  8730. {
  8731. "url": "https://symfony.com/sponsor",
  8732. "type": "custom"
  8733. },
  8734. {
  8735. "url": "https://github.com/fabpot",
  8736. "type": "github"
  8737. },
  8738. {
  8739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8740. "type": "tidelift"
  8741. }
  8742. ],
  8743. "time": "2020-05-12T16:47:27+00:00"
  8744. },
  8745. {
  8746. "name": "symfony/polyfill-mbstring",
  8747. "version": "v1.17.0",
  8748. "source": {
  8749. "type": "git",
  8750. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8751. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8752. },
  8753. "dist": {
  8754. "type": "zip",
  8755. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8756. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8757. "shasum": ""
  8758. },
  8759. "require": {
  8760. "php": ">=5.3.3"
  8761. },
  8762. "suggest": {
  8763. "ext-mbstring": "For best performance"
  8764. },
  8765. "type": "library",
  8766. "extra": {
  8767. "branch-alias": {
  8768. "dev-master": "1.17-dev"
  8769. }
  8770. },
  8771. "autoload": {
  8772. "files": [
  8773. "bootstrap.php"
  8774. ],
  8775. "psr-4": {
  8776. "Symfony\\Polyfill\\Mbstring\\": ""
  8777. }
  8778. },
  8779. "notification-url": "https://packagist.org/downloads/",
  8780. "license": [
  8781. "MIT"
  8782. ],
  8783. "authors": [
  8784. {
  8785. "name": "Nicolas Grekas",
  8786. "email": "p@tchwork.com"
  8787. },
  8788. {
  8789. "name": "Symfony Community",
  8790. "homepage": "https://symfony.com/contributors"
  8791. }
  8792. ],
  8793. "description": "Symfony polyfill for the Mbstring extension",
  8794. "homepage": "https://symfony.com",
  8795. "keywords": [
  8796. "compatibility",
  8797. "mbstring",
  8798. "polyfill",
  8799. "portable",
  8800. "shim"
  8801. ],
  8802. "support": {
  8803. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8804. },
  8805. "funding": [
  8806. {
  8807. "url": "https://symfony.com/sponsor",
  8808. "type": "custom"
  8809. },
  8810. {
  8811. "url": "https://github.com/fabpot",
  8812. "type": "github"
  8813. },
  8814. {
  8815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8816. "type": "tidelift"
  8817. }
  8818. ],
  8819. "time": "2020-05-12T16:47:27+00:00"
  8820. },
  8821. {
  8822. "name": "symfony/polyfill-php56",
  8823. "version": "v1.17.0",
  8824. "source": {
  8825. "type": "git",
  8826. "url": "https://github.com/symfony/polyfill-php56.git",
  8827. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8828. },
  8829. "dist": {
  8830. "type": "zip",
  8831. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8832. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8833. "shasum": ""
  8834. },
  8835. "require": {
  8836. "php": ">=5.3.3",
  8837. "symfony/polyfill-util": "~1.0"
  8838. },
  8839. "type": "library",
  8840. "extra": {
  8841. "branch-alias": {
  8842. "dev-master": "1.17-dev"
  8843. }
  8844. },
  8845. "autoload": {
  8846. "files": [
  8847. "bootstrap.php"
  8848. ],
  8849. "psr-4": {
  8850. "Symfony\\Polyfill\\Php56\\": ""
  8851. }
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Nicolas Grekas",
  8860. "email": "p@tchwork.com"
  8861. },
  8862. {
  8863. "name": "Symfony Community",
  8864. "homepage": "https://symfony.com/contributors"
  8865. }
  8866. ],
  8867. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8868. "homepage": "https://symfony.com",
  8869. "keywords": [
  8870. "compatibility",
  8871. "polyfill",
  8872. "portable",
  8873. "shim"
  8874. ],
  8875. "support": {
  8876. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8877. },
  8878. "funding": [
  8879. {
  8880. "url": "https://symfony.com/sponsor",
  8881. "type": "custom"
  8882. },
  8883. {
  8884. "url": "https://github.com/fabpot",
  8885. "type": "github"
  8886. },
  8887. {
  8888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8889. "type": "tidelift"
  8890. }
  8891. ],
  8892. "time": "2020-05-12T16:47:27+00:00"
  8893. },
  8894. {
  8895. "name": "symfony/polyfill-php70",
  8896. "version": "v1.17.0",
  8897. "source": {
  8898. "type": "git",
  8899. "url": "https://github.com/symfony/polyfill-php70.git",
  8900. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8901. },
  8902. "dist": {
  8903. "type": "zip",
  8904. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8905. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8906. "shasum": ""
  8907. },
  8908. "require": {
  8909. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8910. "php": ">=5.3.3"
  8911. },
  8912. "type": "library",
  8913. "extra": {
  8914. "branch-alias": {
  8915. "dev-master": "1.17-dev"
  8916. }
  8917. },
  8918. "autoload": {
  8919. "files": [
  8920. "bootstrap.php"
  8921. ],
  8922. "psr-4": {
  8923. "Symfony\\Polyfill\\Php70\\": ""
  8924. },
  8925. "classmap": [
  8926. "Resources/stubs"
  8927. ]
  8928. },
  8929. "notification-url": "https://packagist.org/downloads/",
  8930. "license": [
  8931. "MIT"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Nicolas Grekas",
  8936. "email": "p@tchwork.com"
  8937. },
  8938. {
  8939. "name": "Symfony Community",
  8940. "homepage": "https://symfony.com/contributors"
  8941. }
  8942. ],
  8943. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8944. "homepage": "https://symfony.com",
  8945. "keywords": [
  8946. "compatibility",
  8947. "polyfill",
  8948. "portable",
  8949. "shim"
  8950. ],
  8951. "support": {
  8952. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8953. },
  8954. "funding": [
  8955. {
  8956. "url": "https://symfony.com/sponsor",
  8957. "type": "custom"
  8958. },
  8959. {
  8960. "url": "https://github.com/fabpot",
  8961. "type": "github"
  8962. },
  8963. {
  8964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8965. "type": "tidelift"
  8966. }
  8967. ],
  8968. "time": "2020-05-12T16:47:27+00:00"
  8969. },
  8970. {
  8971. "name": "symfony/polyfill-php72",
  8972. "version": "v1.17.0",
  8973. "source": {
  8974. "type": "git",
  8975. "url": "https://github.com/symfony/polyfill-php72.git",
  8976. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8977. },
  8978. "dist": {
  8979. "type": "zip",
  8980. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8981. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8982. "shasum": ""
  8983. },
  8984. "require": {
  8985. "php": ">=5.3.3"
  8986. },
  8987. "type": "library",
  8988. "extra": {
  8989. "branch-alias": {
  8990. "dev-master": "1.17-dev"
  8991. }
  8992. },
  8993. "autoload": {
  8994. "files": [
  8995. "bootstrap.php"
  8996. ],
  8997. "psr-4": {
  8998. "Symfony\\Polyfill\\Php72\\": ""
  8999. }
  9000. },
  9001. "notification-url": "https://packagist.org/downloads/",
  9002. "license": [
  9003. "MIT"
  9004. ],
  9005. "authors": [
  9006. {
  9007. "name": "Nicolas Grekas",
  9008. "email": "p@tchwork.com"
  9009. },
  9010. {
  9011. "name": "Symfony Community",
  9012. "homepage": "https://symfony.com/contributors"
  9013. }
  9014. ],
  9015. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9016. "homepage": "https://symfony.com",
  9017. "keywords": [
  9018. "compatibility",
  9019. "polyfill",
  9020. "portable",
  9021. "shim"
  9022. ],
  9023. "support": {
  9024. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  9025. },
  9026. "funding": [
  9027. {
  9028. "url": "https://symfony.com/sponsor",
  9029. "type": "custom"
  9030. },
  9031. {
  9032. "url": "https://github.com/fabpot",
  9033. "type": "github"
  9034. },
  9035. {
  9036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9037. "type": "tidelift"
  9038. }
  9039. ],
  9040. "time": "2020-05-12T16:47:27+00:00"
  9041. },
  9042. {
  9043. "name": "symfony/polyfill-php80",
  9044. "version": "v1.31.0",
  9045. "source": {
  9046. "type": "git",
  9047. "url": "https://github.com/symfony/polyfill-php80.git",
  9048. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9049. },
  9050. "dist": {
  9051. "type": "zip",
  9052. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9053. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9054. "shasum": ""
  9055. },
  9056. "require": {
  9057. "php": ">=7.2"
  9058. },
  9059. "type": "library",
  9060. "extra": {
  9061. "thanks": {
  9062. "name": "symfony/polyfill",
  9063. "url": "https://github.com/symfony/polyfill"
  9064. }
  9065. },
  9066. "autoload": {
  9067. "files": [
  9068. "bootstrap.php"
  9069. ],
  9070. "psr-4": {
  9071. "Symfony\\Polyfill\\Php80\\": ""
  9072. },
  9073. "classmap": [
  9074. "Resources/stubs"
  9075. ]
  9076. },
  9077. "notification-url": "https://packagist.org/downloads/",
  9078. "license": [
  9079. "MIT"
  9080. ],
  9081. "authors": [
  9082. {
  9083. "name": "Ion Bazan",
  9084. "email": "ion.bazan@gmail.com"
  9085. },
  9086. {
  9087. "name": "Nicolas Grekas",
  9088. "email": "p@tchwork.com"
  9089. },
  9090. {
  9091. "name": "Symfony Community",
  9092. "homepage": "https://symfony.com/contributors"
  9093. }
  9094. ],
  9095. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9096. "homepage": "https://symfony.com",
  9097. "keywords": [
  9098. "compatibility",
  9099. "polyfill",
  9100. "portable",
  9101. "shim"
  9102. ],
  9103. "support": {
  9104. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9105. },
  9106. "funding": [
  9107. {
  9108. "url": "https://symfony.com/sponsor",
  9109. "type": "custom"
  9110. },
  9111. {
  9112. "url": "https://github.com/fabpot",
  9113. "type": "github"
  9114. },
  9115. {
  9116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9117. "type": "tidelift"
  9118. }
  9119. ],
  9120. "time": "2024-09-09T11:45:10+00:00"
  9121. },
  9122. {
  9123. "name": "symfony/polyfill-util",
  9124. "version": "v1.17.0",
  9125. "source": {
  9126. "type": "git",
  9127. "url": "https://github.com/symfony/polyfill-util.git",
  9128. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9129. },
  9130. "dist": {
  9131. "type": "zip",
  9132. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9133. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9134. "shasum": ""
  9135. },
  9136. "require": {
  9137. "php": ">=5.3.3"
  9138. },
  9139. "type": "library",
  9140. "extra": {
  9141. "branch-alias": {
  9142. "dev-master": "1.17-dev"
  9143. }
  9144. },
  9145. "autoload": {
  9146. "psr-4": {
  9147. "Symfony\\Polyfill\\Util\\": ""
  9148. }
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "MIT"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Nicolas Grekas",
  9157. "email": "p@tchwork.com"
  9158. },
  9159. {
  9160. "name": "Symfony Community",
  9161. "homepage": "https://symfony.com/contributors"
  9162. }
  9163. ],
  9164. "description": "Symfony utilities for portability of PHP codes",
  9165. "homepage": "https://symfony.com",
  9166. "keywords": [
  9167. "compat",
  9168. "compatibility",
  9169. "polyfill",
  9170. "shim"
  9171. ],
  9172. "support": {
  9173. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9174. },
  9175. "funding": [
  9176. {
  9177. "url": "https://symfony.com/sponsor",
  9178. "type": "custom"
  9179. },
  9180. {
  9181. "url": "https://github.com/fabpot",
  9182. "type": "github"
  9183. },
  9184. {
  9185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9186. "type": "tidelift"
  9187. }
  9188. ],
  9189. "time": "2020-05-12T16:14:59+00:00"
  9190. },
  9191. {
  9192. "name": "symfony/process",
  9193. "version": "v3.4.41",
  9194. "source": {
  9195. "type": "git",
  9196. "url": "https://github.com/symfony/process.git",
  9197. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9198. },
  9199. "dist": {
  9200. "type": "zip",
  9201. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9202. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9203. "shasum": ""
  9204. },
  9205. "require": {
  9206. "php": "^5.5.9|>=7.0.8"
  9207. },
  9208. "type": "library",
  9209. "extra": {
  9210. "branch-alias": {
  9211. "dev-master": "3.4-dev"
  9212. }
  9213. },
  9214. "autoload": {
  9215. "psr-4": {
  9216. "Symfony\\Component\\Process\\": ""
  9217. },
  9218. "exclude-from-classmap": [
  9219. "/Tests/"
  9220. ]
  9221. },
  9222. "notification-url": "https://packagist.org/downloads/",
  9223. "license": [
  9224. "MIT"
  9225. ],
  9226. "authors": [
  9227. {
  9228. "name": "Fabien Potencier",
  9229. "email": "fabien@symfony.com"
  9230. },
  9231. {
  9232. "name": "Symfony Community",
  9233. "homepage": "https://symfony.com/contributors"
  9234. }
  9235. ],
  9236. "description": "Symfony Process Component",
  9237. "homepage": "https://symfony.com",
  9238. "support": {
  9239. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://symfony.com/sponsor",
  9244. "type": "custom"
  9245. },
  9246. {
  9247. "url": "https://github.com/fabpot",
  9248. "type": "github"
  9249. },
  9250. {
  9251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9252. "type": "tidelift"
  9253. }
  9254. ],
  9255. "time": "2020-05-23T17:05:51+00:00"
  9256. },
  9257. {
  9258. "name": "symfony/psr-http-message-bridge",
  9259. "version": "v1.1.2",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9263. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9268. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9269. "shasum": ""
  9270. },
  9271. "require": {
  9272. "php": "^5.3.3 || ^7.0",
  9273. "psr/http-message": "^1.0",
  9274. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9275. },
  9276. "require-dev": {
  9277. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9278. },
  9279. "suggest": {
  9280. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9281. },
  9282. "type": "symfony-bridge",
  9283. "extra": {
  9284. "branch-alias": {
  9285. "dev-master": "1.1-dev"
  9286. }
  9287. },
  9288. "autoload": {
  9289. "psr-4": {
  9290. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9291. },
  9292. "exclude-from-classmap": [
  9293. "/Tests/"
  9294. ]
  9295. },
  9296. "notification-url": "https://packagist.org/downloads/",
  9297. "license": [
  9298. "MIT"
  9299. ],
  9300. "authors": [
  9301. {
  9302. "name": "Symfony Community",
  9303. "homepage": "http://symfony.com/contributors"
  9304. },
  9305. {
  9306. "name": "Fabien Potencier",
  9307. "email": "fabien@symfony.com"
  9308. }
  9309. ],
  9310. "description": "PSR HTTP message bridge",
  9311. "homepage": "http://symfony.com",
  9312. "keywords": [
  9313. "http",
  9314. "http-message",
  9315. "psr-17",
  9316. "psr-7"
  9317. ],
  9318. "support": {
  9319. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9320. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9321. },
  9322. "time": "2019-04-03T17:09:40+00:00"
  9323. },
  9324. {
  9325. "name": "symfony/routing",
  9326. "version": "v3.4.41",
  9327. "source": {
  9328. "type": "git",
  9329. "url": "https://github.com/symfony/routing.git",
  9330. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9331. },
  9332. "dist": {
  9333. "type": "zip",
  9334. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9335. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9336. "shasum": ""
  9337. },
  9338. "require": {
  9339. "php": "^5.5.9|>=7.0.8"
  9340. },
  9341. "conflict": {
  9342. "symfony/config": "<3.3.1",
  9343. "symfony/dependency-injection": "<3.3",
  9344. "symfony/yaml": "<3.4"
  9345. },
  9346. "require-dev": {
  9347. "doctrine/annotations": "~1.0",
  9348. "psr/log": "~1.0",
  9349. "symfony/config": "^3.3.1|~4.0",
  9350. "symfony/dependency-injection": "~3.3|~4.0",
  9351. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9352. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9353. "symfony/yaml": "~3.4|~4.0"
  9354. },
  9355. "suggest": {
  9356. "doctrine/annotations": "For using the annotation loader",
  9357. "symfony/config": "For using the all-in-one router or any loader",
  9358. "symfony/expression-language": "For using expression matching",
  9359. "symfony/http-foundation": "For using a Symfony Request object",
  9360. "symfony/yaml": "For using the YAML loader"
  9361. },
  9362. "type": "library",
  9363. "extra": {
  9364. "branch-alias": {
  9365. "dev-master": "3.4-dev"
  9366. }
  9367. },
  9368. "autoload": {
  9369. "psr-4": {
  9370. "Symfony\\Component\\Routing\\": ""
  9371. },
  9372. "exclude-from-classmap": [
  9373. "/Tests/"
  9374. ]
  9375. },
  9376. "notification-url": "https://packagist.org/downloads/",
  9377. "license": [
  9378. "MIT"
  9379. ],
  9380. "authors": [
  9381. {
  9382. "name": "Fabien Potencier",
  9383. "email": "fabien@symfony.com"
  9384. },
  9385. {
  9386. "name": "Symfony Community",
  9387. "homepage": "https://symfony.com/contributors"
  9388. }
  9389. ],
  9390. "description": "Symfony Routing Component",
  9391. "homepage": "https://symfony.com",
  9392. "keywords": [
  9393. "router",
  9394. "routing",
  9395. "uri",
  9396. "url"
  9397. ],
  9398. "support": {
  9399. "source": "https://github.com/symfony/routing/tree/3.4"
  9400. },
  9401. "funding": [
  9402. {
  9403. "url": "https://symfony.com/sponsor",
  9404. "type": "custom"
  9405. },
  9406. {
  9407. "url": "https://github.com/fabpot",
  9408. "type": "github"
  9409. },
  9410. {
  9411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9412. "type": "tidelift"
  9413. }
  9414. ],
  9415. "time": "2020-05-30T19:50:06+00:00"
  9416. },
  9417. {
  9418. "name": "symfony/serializer",
  9419. "version": "v3.4.41",
  9420. "source": {
  9421. "type": "git",
  9422. "url": "https://github.com/symfony/serializer.git",
  9423. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9424. },
  9425. "dist": {
  9426. "type": "zip",
  9427. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9428. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9429. "shasum": ""
  9430. },
  9431. "require": {
  9432. "php": "^5.5.9|>=7.0.8",
  9433. "symfony/polyfill-ctype": "~1.8"
  9434. },
  9435. "conflict": {
  9436. "phpdocumentor/type-resolver": "<0.2.1",
  9437. "symfony/dependency-injection": "<3.2",
  9438. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9439. "symfony/property-info": "<3.1",
  9440. "symfony/yaml": "<3.4"
  9441. },
  9442. "require-dev": {
  9443. "doctrine/annotations": "~1.0",
  9444. "doctrine/cache": "~1.0",
  9445. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9446. "symfony/cache": "~3.1|~4.0",
  9447. "symfony/config": "~2.8|~3.0|~4.0",
  9448. "symfony/dependency-injection": "~3.2|~4.0",
  9449. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9450. "symfony/property-access": "~2.8|~3.0|~4.0",
  9451. "symfony/property-info": "^3.4.13|~4.0",
  9452. "symfony/yaml": "~3.4|~4.0"
  9453. },
  9454. "suggest": {
  9455. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9456. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9457. "psr/cache-implementation": "For using the metadata cache.",
  9458. "symfony/config": "For using the XML mapping loader.",
  9459. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9460. "symfony/property-access": "For using the ObjectNormalizer.",
  9461. "symfony/property-info": "To deserialize relations.",
  9462. "symfony/yaml": "For using the default YAML mapping loader."
  9463. },
  9464. "type": "library",
  9465. "extra": {
  9466. "branch-alias": {
  9467. "dev-master": "3.4-dev"
  9468. }
  9469. },
  9470. "autoload": {
  9471. "psr-4": {
  9472. "Symfony\\Component\\Serializer\\": ""
  9473. },
  9474. "exclude-from-classmap": [
  9475. "/Tests/"
  9476. ]
  9477. },
  9478. "notification-url": "https://packagist.org/downloads/",
  9479. "license": [
  9480. "MIT"
  9481. ],
  9482. "authors": [
  9483. {
  9484. "name": "Fabien Potencier",
  9485. "email": "fabien@symfony.com"
  9486. },
  9487. {
  9488. "name": "Symfony Community",
  9489. "homepage": "https://symfony.com/contributors"
  9490. }
  9491. ],
  9492. "description": "Symfony Serializer Component",
  9493. "homepage": "https://symfony.com",
  9494. "support": {
  9495. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9496. },
  9497. "funding": [
  9498. {
  9499. "url": "https://symfony.com/sponsor",
  9500. "type": "custom"
  9501. },
  9502. {
  9503. "url": "https://github.com/fabpot",
  9504. "type": "github"
  9505. },
  9506. {
  9507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9508. "type": "tidelift"
  9509. }
  9510. ],
  9511. "time": "2020-05-30T18:58:05+00:00"
  9512. },
  9513. {
  9514. "name": "symfony/translation",
  9515. "version": "v3.4.41",
  9516. "source": {
  9517. "type": "git",
  9518. "url": "https://github.com/symfony/translation.git",
  9519. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9520. },
  9521. "dist": {
  9522. "type": "zip",
  9523. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9524. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9525. "shasum": ""
  9526. },
  9527. "require": {
  9528. "php": "^5.5.9|>=7.0.8",
  9529. "symfony/polyfill-mbstring": "~1.0"
  9530. },
  9531. "conflict": {
  9532. "symfony/config": "<2.8",
  9533. "symfony/dependency-injection": "<3.4",
  9534. "symfony/yaml": "<3.4"
  9535. },
  9536. "require-dev": {
  9537. "psr/log": "~1.0",
  9538. "symfony/config": "~2.8|~3.0|~4.0",
  9539. "symfony/dependency-injection": "~3.4|~4.0",
  9540. "symfony/finder": "~2.8|~3.0|~4.0",
  9541. "symfony/http-kernel": "~3.4|~4.0",
  9542. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9543. "symfony/var-dumper": "~3.4|~4.0",
  9544. "symfony/yaml": "~3.4|~4.0"
  9545. },
  9546. "suggest": {
  9547. "psr/log-implementation": "To use logging capability in translator",
  9548. "symfony/config": "",
  9549. "symfony/yaml": ""
  9550. },
  9551. "type": "library",
  9552. "extra": {
  9553. "branch-alias": {
  9554. "dev-master": "3.4-dev"
  9555. }
  9556. },
  9557. "autoload": {
  9558. "psr-4": {
  9559. "Symfony\\Component\\Translation\\": ""
  9560. },
  9561. "exclude-from-classmap": [
  9562. "/Tests/"
  9563. ]
  9564. },
  9565. "notification-url": "https://packagist.org/downloads/",
  9566. "license": [
  9567. "MIT"
  9568. ],
  9569. "authors": [
  9570. {
  9571. "name": "Fabien Potencier",
  9572. "email": "fabien@symfony.com"
  9573. },
  9574. {
  9575. "name": "Symfony Community",
  9576. "homepage": "https://symfony.com/contributors"
  9577. }
  9578. ],
  9579. "description": "Symfony Translation Component",
  9580. "homepage": "https://symfony.com",
  9581. "support": {
  9582. "source": "https://github.com/symfony/translation/tree/3.4"
  9583. },
  9584. "funding": [
  9585. {
  9586. "url": "https://symfony.com/sponsor",
  9587. "type": "custom"
  9588. },
  9589. {
  9590. "url": "https://github.com/fabpot",
  9591. "type": "github"
  9592. },
  9593. {
  9594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9595. "type": "tidelift"
  9596. }
  9597. ],
  9598. "time": "2020-05-30T18:58:05+00:00"
  9599. },
  9600. {
  9601. "name": "symfony/validator",
  9602. "version": "v3.4.41",
  9603. "source": {
  9604. "type": "git",
  9605. "url": "https://github.com/symfony/validator.git",
  9606. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9607. },
  9608. "dist": {
  9609. "type": "zip",
  9610. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9611. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9612. "shasum": ""
  9613. },
  9614. "require": {
  9615. "php": "^5.5.9|>=7.0.8",
  9616. "symfony/polyfill-ctype": "~1.8",
  9617. "symfony/polyfill-mbstring": "~1.0",
  9618. "symfony/translation": "~2.8|~3.0|~4.0"
  9619. },
  9620. "conflict": {
  9621. "doctrine/lexer": "<1.0.2",
  9622. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9623. "symfony/dependency-injection": "<3.3",
  9624. "symfony/http-kernel": "<3.3.5",
  9625. "symfony/yaml": "<3.4"
  9626. },
  9627. "require-dev": {
  9628. "doctrine/annotations": "~1.7",
  9629. "doctrine/cache": "~1.0",
  9630. "egulias/email-validator": "^2.1.10",
  9631. "symfony/cache": "~3.1|~4.0",
  9632. "symfony/config": "~2.8|~3.0|~4.0",
  9633. "symfony/dependency-injection": "~3.3|~4.0",
  9634. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9635. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9636. "symfony/http-kernel": "^3.3.5|~4.0",
  9637. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9638. "symfony/property-access": "~2.8|~3.0|~4.0",
  9639. "symfony/var-dumper": "~3.3|~4.0",
  9640. "symfony/yaml": "~3.4|~4.0"
  9641. },
  9642. "suggest": {
  9643. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9644. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9645. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9646. "psr/cache-implementation": "For using the metadata cache.",
  9647. "symfony/config": "",
  9648. "symfony/expression-language": "For using the Expression validator",
  9649. "symfony/http-foundation": "",
  9650. "symfony/intl": "",
  9651. "symfony/property-access": "For accessing properties within comparison constraints",
  9652. "symfony/yaml": ""
  9653. },
  9654. "type": "library",
  9655. "extra": {
  9656. "branch-alias": {
  9657. "dev-master": "3.4-dev"
  9658. }
  9659. },
  9660. "autoload": {
  9661. "psr-4": {
  9662. "Symfony\\Component\\Validator\\": ""
  9663. },
  9664. "exclude-from-classmap": [
  9665. "/Tests/"
  9666. ]
  9667. },
  9668. "notification-url": "https://packagist.org/downloads/",
  9669. "license": [
  9670. "MIT"
  9671. ],
  9672. "authors": [
  9673. {
  9674. "name": "Fabien Potencier",
  9675. "email": "fabien@symfony.com"
  9676. },
  9677. {
  9678. "name": "Symfony Community",
  9679. "homepage": "https://symfony.com/contributors"
  9680. }
  9681. ],
  9682. "description": "Symfony Validator Component",
  9683. "homepage": "https://symfony.com",
  9684. "support": {
  9685. "source": "https://github.com/symfony/validator/tree/3.4"
  9686. },
  9687. "funding": [
  9688. {
  9689. "url": "https://symfony.com/sponsor",
  9690. "type": "custom"
  9691. },
  9692. {
  9693. "url": "https://github.com/fabpot",
  9694. "type": "github"
  9695. },
  9696. {
  9697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9698. "type": "tidelift"
  9699. }
  9700. ],
  9701. "time": "2020-05-30T18:43:38+00:00"
  9702. },
  9703. {
  9704. "name": "symfony/var-dumper",
  9705. "version": "v4.4.47",
  9706. "source": {
  9707. "type": "git",
  9708. "url": "https://github.com/symfony/var-dumper.git",
  9709. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9710. },
  9711. "dist": {
  9712. "type": "zip",
  9713. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9714. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9715. "shasum": ""
  9716. },
  9717. "require": {
  9718. "php": ">=7.1.3",
  9719. "symfony/polyfill-mbstring": "~1.0",
  9720. "symfony/polyfill-php72": "~1.5",
  9721. "symfony/polyfill-php80": "^1.16"
  9722. },
  9723. "conflict": {
  9724. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9725. "symfony/console": "<3.4"
  9726. },
  9727. "require-dev": {
  9728. "ext-iconv": "*",
  9729. "symfony/console": "^3.4|^4.0|^5.0",
  9730. "symfony/process": "^4.4|^5.0",
  9731. "twig/twig": "^1.43|^2.13|^3.0.4"
  9732. },
  9733. "suggest": {
  9734. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9735. "ext-intl": "To show region name in time zone dump",
  9736. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9737. },
  9738. "bin": [
  9739. "Resources/bin/var-dump-server"
  9740. ],
  9741. "type": "library",
  9742. "autoload": {
  9743. "files": [
  9744. "Resources/functions/dump.php"
  9745. ],
  9746. "psr-4": {
  9747. "Symfony\\Component\\VarDumper\\": ""
  9748. },
  9749. "exclude-from-classmap": [
  9750. "/Tests/"
  9751. ]
  9752. },
  9753. "notification-url": "https://packagist.org/downloads/",
  9754. "license": [
  9755. "MIT"
  9756. ],
  9757. "authors": [
  9758. {
  9759. "name": "Nicolas Grekas",
  9760. "email": "p@tchwork.com"
  9761. },
  9762. {
  9763. "name": "Symfony Community",
  9764. "homepage": "https://symfony.com/contributors"
  9765. }
  9766. ],
  9767. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9768. "homepage": "https://symfony.com",
  9769. "keywords": [
  9770. "debug",
  9771. "dump"
  9772. ],
  9773. "support": {
  9774. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9775. },
  9776. "funding": [
  9777. {
  9778. "url": "https://symfony.com/sponsor",
  9779. "type": "custom"
  9780. },
  9781. {
  9782. "url": "https://github.com/fabpot",
  9783. "type": "github"
  9784. },
  9785. {
  9786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9787. "type": "tidelift"
  9788. }
  9789. ],
  9790. "time": "2022-10-03T15:15:11+00:00"
  9791. },
  9792. {
  9793. "name": "symfony/yaml",
  9794. "version": "v3.4.41",
  9795. "source": {
  9796. "type": "git",
  9797. "url": "https://github.com/symfony/yaml.git",
  9798. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9799. },
  9800. "dist": {
  9801. "type": "zip",
  9802. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9803. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9804. "shasum": ""
  9805. },
  9806. "require": {
  9807. "php": "^5.5.9|>=7.0.8",
  9808. "symfony/polyfill-ctype": "~1.8"
  9809. },
  9810. "conflict": {
  9811. "symfony/console": "<3.4"
  9812. },
  9813. "require-dev": {
  9814. "symfony/console": "~3.4|~4.0"
  9815. },
  9816. "suggest": {
  9817. "symfony/console": "For validating YAML files using the lint command"
  9818. },
  9819. "type": "library",
  9820. "extra": {
  9821. "branch-alias": {
  9822. "dev-master": "3.4-dev"
  9823. }
  9824. },
  9825. "autoload": {
  9826. "psr-4": {
  9827. "Symfony\\Component\\Yaml\\": ""
  9828. },
  9829. "exclude-from-classmap": [
  9830. "/Tests/"
  9831. ]
  9832. },
  9833. "notification-url": "https://packagist.org/downloads/",
  9834. "license": [
  9835. "MIT"
  9836. ],
  9837. "authors": [
  9838. {
  9839. "name": "Fabien Potencier",
  9840. "email": "fabien@symfony.com"
  9841. },
  9842. {
  9843. "name": "Symfony Community",
  9844. "homepage": "https://symfony.com/contributors"
  9845. }
  9846. ],
  9847. "description": "Symfony Yaml Component",
  9848. "homepage": "https://symfony.com",
  9849. "support": {
  9850. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9851. },
  9852. "funding": [
  9853. {
  9854. "url": "https://symfony.com/sponsor",
  9855. "type": "custom"
  9856. },
  9857. {
  9858. "url": "https://github.com/fabpot",
  9859. "type": "github"
  9860. },
  9861. {
  9862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9863. "type": "tidelift"
  9864. }
  9865. ],
  9866. "time": "2020-05-11T07:51:54+00:00"
  9867. },
  9868. {
  9869. "name": "twig/twig",
  9870. "version": "v1.42.5",
  9871. "source": {
  9872. "type": "git",
  9873. "url": "https://github.com/twigphp/Twig.git",
  9874. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9875. },
  9876. "dist": {
  9877. "type": "zip",
  9878. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9879. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9880. "shasum": ""
  9881. },
  9882. "require": {
  9883. "php": ">=5.5.0",
  9884. "symfony/polyfill-ctype": "^1.8"
  9885. },
  9886. "require-dev": {
  9887. "psr/container": "^1.0",
  9888. "symfony/phpunit-bridge": "^4.4|^5.0"
  9889. },
  9890. "type": "library",
  9891. "extra": {
  9892. "branch-alias": {
  9893. "dev-master": "1.42-dev"
  9894. }
  9895. },
  9896. "autoload": {
  9897. "psr-0": {
  9898. "Twig_": "lib/"
  9899. },
  9900. "psr-4": {
  9901. "Twig\\": "src/"
  9902. }
  9903. },
  9904. "notification-url": "https://packagist.org/downloads/",
  9905. "license": [
  9906. "BSD-3-Clause"
  9907. ],
  9908. "authors": [
  9909. {
  9910. "name": "Fabien Potencier",
  9911. "email": "fabien@symfony.com",
  9912. "homepage": "http://fabien.potencier.org",
  9913. "role": "Lead Developer"
  9914. },
  9915. {
  9916. "name": "Twig Team",
  9917. "role": "Contributors"
  9918. },
  9919. {
  9920. "name": "Armin Ronacher",
  9921. "email": "armin.ronacher@active-4.com",
  9922. "role": "Project Founder"
  9923. }
  9924. ],
  9925. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9926. "homepage": "https://twig.symfony.com",
  9927. "keywords": [
  9928. "templating"
  9929. ],
  9930. "support": {
  9931. "issues": "https://github.com/twigphp/Twig/issues",
  9932. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9933. },
  9934. "time": "2020-02-11T05:59:23+00:00"
  9935. },
  9936. {
  9937. "name": "typo3/phar-stream-wrapper",
  9938. "version": "v3.1.4",
  9939. "source": {
  9940. "type": "git",
  9941. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9942. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9943. },
  9944. "dist": {
  9945. "type": "zip",
  9946. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9947. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9948. "shasum": ""
  9949. },
  9950. "require": {
  9951. "ext-json": "*",
  9952. "php": "^7.0"
  9953. },
  9954. "require-dev": {
  9955. "ext-xdebug": "*",
  9956. "phpunit/phpunit": "^6.5"
  9957. },
  9958. "suggest": {
  9959. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9960. },
  9961. "type": "library",
  9962. "extra": {
  9963. "branch-alias": {
  9964. "dev-master": "v3.x-dev"
  9965. }
  9966. },
  9967. "autoload": {
  9968. "psr-4": {
  9969. "TYPO3\\PharStreamWrapper\\": "src/"
  9970. }
  9971. },
  9972. "notification-url": "https://packagist.org/downloads/",
  9973. "license": [
  9974. "MIT"
  9975. ],
  9976. "description": "Interceptors for PHP's native phar:// stream handling",
  9977. "homepage": "https://typo3.org/",
  9978. "keywords": [
  9979. "phar",
  9980. "php",
  9981. "security",
  9982. "stream-wrapper"
  9983. ],
  9984. "support": {
  9985. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  9986. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  9987. },
  9988. "time": "2019-12-10T11:53:27+00:00"
  9989. },
  9990. {
  9991. "name": "vlucas/phpdotenv",
  9992. "version": "v2.6.4",
  9993. "source": {
  9994. "type": "git",
  9995. "url": "https://github.com/vlucas/phpdotenv.git",
  9996. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  9997. },
  9998. "dist": {
  9999. "type": "zip",
  10000. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  10001. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  10002. "shasum": ""
  10003. },
  10004. "require": {
  10005. "php": "^5.3.9 || ^7.0 || ^8.0",
  10006. "symfony/polyfill-ctype": "^1.9"
  10007. },
  10008. "require-dev": {
  10009. "ext-filter": "*",
  10010. "ext-pcre": "*",
  10011. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10012. },
  10013. "suggest": {
  10014. "ext-filter": "Required to use the boolean validator.",
  10015. "ext-pcre": "Required to use most of the library."
  10016. },
  10017. "type": "library",
  10018. "extra": {
  10019. "branch-alias": {
  10020. "dev-master": "2.6-dev"
  10021. }
  10022. },
  10023. "autoload": {
  10024. "psr-4": {
  10025. "Dotenv\\": "src/"
  10026. }
  10027. },
  10028. "notification-url": "https://packagist.org/downloads/",
  10029. "license": [
  10030. "BSD-3-Clause"
  10031. ],
  10032. "authors": [
  10033. {
  10034. "name": "Graham Campbell",
  10035. "email": "graham@alt-three.com",
  10036. "homepage": "https://gjcampbell.co.uk/"
  10037. },
  10038. {
  10039. "name": "Vance Lucas",
  10040. "email": "vance@vancelucas.com",
  10041. "homepage": "https://vancelucas.com/"
  10042. }
  10043. ],
  10044. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10045. "keywords": [
  10046. "dotenv",
  10047. "env",
  10048. "environment"
  10049. ],
  10050. "time": "2020-05-02T13:38:00+00:00"
  10051. },
  10052. {
  10053. "name": "webflo/drupal-finder",
  10054. "version": "1.2.0",
  10055. "source": {
  10056. "type": "git",
  10057. "url": "https://github.com/webflo/drupal-finder.git",
  10058. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  10059. },
  10060. "dist": {
  10061. "type": "zip",
  10062. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10063. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10064. "shasum": ""
  10065. },
  10066. "require": {
  10067. "ext-json": "*"
  10068. },
  10069. "require-dev": {
  10070. "mikey179/vfsstream": "^1.6",
  10071. "phpunit/phpunit": "^4.8"
  10072. },
  10073. "type": "library",
  10074. "autoload": {
  10075. "classmap": [
  10076. "src/DrupalFinder.php"
  10077. ]
  10078. },
  10079. "notification-url": "https://packagist.org/downloads/",
  10080. "license": [
  10081. "GPL-2.0+"
  10082. ],
  10083. "authors": [
  10084. {
  10085. "name": "Florian Weber",
  10086. "email": "florian@webflo.org"
  10087. }
  10088. ],
  10089. "description": "Helper class to locate a Drupal installation from a given path.",
  10090. "time": "2019-08-02T08:06:18+00:00"
  10091. },
  10092. {
  10093. "name": "webmozart/assert",
  10094. "version": "1.11.0",
  10095. "source": {
  10096. "type": "git",
  10097. "url": "https://github.com/webmozarts/assert.git",
  10098. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10099. },
  10100. "dist": {
  10101. "type": "zip",
  10102. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10103. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10104. "shasum": ""
  10105. },
  10106. "require": {
  10107. "ext-ctype": "*",
  10108. "php": "^7.2 || ^8.0"
  10109. },
  10110. "conflict": {
  10111. "phpstan/phpstan": "<0.12.20",
  10112. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10113. },
  10114. "require-dev": {
  10115. "phpunit/phpunit": "^8.5.13"
  10116. },
  10117. "type": "library",
  10118. "extra": {
  10119. "branch-alias": {
  10120. "dev-master": "1.10-dev"
  10121. }
  10122. },
  10123. "autoload": {
  10124. "psr-4": {
  10125. "Webmozart\\Assert\\": "src/"
  10126. }
  10127. },
  10128. "notification-url": "https://packagist.org/downloads/",
  10129. "license": [
  10130. "MIT"
  10131. ],
  10132. "authors": [
  10133. {
  10134. "name": "Bernhard Schussek",
  10135. "email": "bschussek@gmail.com"
  10136. }
  10137. ],
  10138. "description": "Assertions to validate method input/output with nice error messages.",
  10139. "keywords": [
  10140. "assert",
  10141. "check",
  10142. "validate"
  10143. ],
  10144. "support": {
  10145. "issues": "https://github.com/webmozarts/assert/issues",
  10146. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10147. },
  10148. "time": "2022-06-03T18:03:27+00:00"
  10149. },
  10150. {
  10151. "name": "webmozart/path-util",
  10152. "version": "2.3.0",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/webmozart/path-util.git",
  10156. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10161. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "php": ">=5.3.3",
  10166. "webmozart/assert": "~1.0"
  10167. },
  10168. "require-dev": {
  10169. "phpunit/phpunit": "^4.6",
  10170. "sebastian/version": "^1.0.1"
  10171. },
  10172. "type": "library",
  10173. "extra": {
  10174. "branch-alias": {
  10175. "dev-master": "2.3-dev"
  10176. }
  10177. },
  10178. "autoload": {
  10179. "psr-4": {
  10180. "Webmozart\\PathUtil\\": "src/"
  10181. }
  10182. },
  10183. "notification-url": "https://packagist.org/downloads/",
  10184. "license": [
  10185. "MIT"
  10186. ],
  10187. "authors": [
  10188. {
  10189. "name": "Bernhard Schussek",
  10190. "email": "bschussek@gmail.com"
  10191. }
  10192. ],
  10193. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10194. "time": "2015-12-17T08:42:14+00:00"
  10195. }
  10196. ],
  10197. "packages-dev": [],
  10198. "aliases": [],
  10199. "minimum-stability": "dev",
  10200. "stability-flags": {
  10201. "drupal/better_messages": 15,
  10202. "drupal/bulkdelete": 20,
  10203. "drupal/domain": 15,
  10204. "drupal/domain_menu_access": 15,
  10205. "drupal/filefield_sources": 15,
  10206. "drupal/filter_perms": 15,
  10207. "drupal/linkit": 10,
  10208. "drupal/maillog": 10,
  10209. "drupal/synonyms": 15
  10210. },
  10211. "prefer-stable": true,
  10212. "prefer-lowest": false,
  10213. "platform": {
  10214. "php": ">=5.6"
  10215. },
  10216. "platform-dev": [],
  10217. "plugin-api-version": "2.6.0"
  10218. }