composer.lock 374 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215
  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": "597b683b4bf8fa850b3cf48723041582",
  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.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749",
  76. "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749",
  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. "support": {
  109. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  110. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.32.1"
  111. },
  112. "time": "2020-07-15T06:08:04+00:00"
  113. },
  114. {
  115. "name": "composer/installers",
  116. "version": "v1.12.0",
  117. "source": {
  118. "type": "git",
  119. "url": "https://github.com/composer/installers.git",
  120. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  121. },
  122. "dist": {
  123. "type": "zip",
  124. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  125. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  126. "shasum": ""
  127. },
  128. "require": {
  129. "composer-plugin-api": "^1.0 || ^2.0"
  130. },
  131. "replace": {
  132. "roundcube/plugin-installer": "*",
  133. "shama/baton": "*"
  134. },
  135. "require-dev": {
  136. "composer/composer": "1.6.* || ^2.0",
  137. "composer/semver": "^1 || ^3",
  138. "phpstan/phpstan": "^0.12.55",
  139. "phpstan/phpstan-phpunit": "^0.12.16",
  140. "symfony/phpunit-bridge": "^4.2 || ^5",
  141. "symfony/process": "^2.3"
  142. },
  143. "type": "composer-plugin",
  144. "extra": {
  145. "class": "Composer\\Installers\\Plugin",
  146. "branch-alias": {
  147. "dev-main": "1.x-dev"
  148. }
  149. },
  150. "autoload": {
  151. "psr-4": {
  152. "Composer\\Installers\\": "src/Composer/Installers"
  153. }
  154. },
  155. "notification-url": "https://packagist.org/downloads/",
  156. "license": [
  157. "MIT"
  158. ],
  159. "authors": [
  160. {
  161. "name": "Kyle Robinson Young",
  162. "email": "kyle@dontkry.com",
  163. "homepage": "https://github.com/shama"
  164. }
  165. ],
  166. "description": "A multi-framework Composer library installer",
  167. "homepage": "https://composer.github.io/installers/",
  168. "keywords": [
  169. "Craft",
  170. "Dolibarr",
  171. "Eliasis",
  172. "Hurad",
  173. "ImageCMS",
  174. "Kanboard",
  175. "Lan Management System",
  176. "MODX Evo",
  177. "MantisBT",
  178. "Mautic",
  179. "Maya",
  180. "OXID",
  181. "Plentymarkets",
  182. "Porto",
  183. "RadPHP",
  184. "SMF",
  185. "Starbug",
  186. "Thelia",
  187. "Whmcs",
  188. "WolfCMS",
  189. "agl",
  190. "aimeos",
  191. "annotatecms",
  192. "attogram",
  193. "bitrix",
  194. "cakephp",
  195. "chef",
  196. "cockpit",
  197. "codeigniter",
  198. "concrete5",
  199. "croogo",
  200. "dokuwiki",
  201. "drupal",
  202. "eZ Platform",
  203. "elgg",
  204. "expressionengine",
  205. "fuelphp",
  206. "grav",
  207. "installer",
  208. "itop",
  209. "joomla",
  210. "known",
  211. "kohana",
  212. "laravel",
  213. "lavalite",
  214. "lithium",
  215. "magento",
  216. "majima",
  217. "mako",
  218. "mediawiki",
  219. "miaoxing",
  220. "modulework",
  221. "modx",
  222. "moodle",
  223. "osclass",
  224. "pantheon",
  225. "phpbb",
  226. "piwik",
  227. "ppi",
  228. "processwire",
  229. "puppet",
  230. "pxcms",
  231. "reindex",
  232. "roundcube",
  233. "shopware",
  234. "silverstripe",
  235. "sydes",
  236. "sylius",
  237. "symfony",
  238. "tastyigniter",
  239. "typo3",
  240. "wordpress",
  241. "yawik",
  242. "zend",
  243. "zikula"
  244. ],
  245. "support": {
  246. "issues": "https://github.com/composer/installers/issues",
  247. "source": "https://github.com/composer/installers/tree/v1.12.0"
  248. },
  249. "funding": [
  250. {
  251. "url": "https://packagist.com",
  252. "type": "custom"
  253. },
  254. {
  255. "url": "https://github.com/composer",
  256. "type": "github"
  257. },
  258. {
  259. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  260. "type": "tidelift"
  261. }
  262. ],
  263. "time": "2021-09-13T08:19:44+00:00"
  264. },
  265. {
  266. "name": "composer/semver",
  267. "version": "1.5.1",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/composer/semver.git",
  271. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  276. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  277. "shasum": ""
  278. },
  279. "require": {
  280. "php": "^5.3.2 || ^7.0"
  281. },
  282. "require-dev": {
  283. "phpunit/phpunit": "^4.5 || ^5.0.5"
  284. },
  285. "type": "library",
  286. "extra": {
  287. "branch-alias": {
  288. "dev-master": "1.x-dev"
  289. }
  290. },
  291. "autoload": {
  292. "psr-4": {
  293. "Composer\\Semver\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "MIT"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Nils Adermann",
  303. "email": "naderman@naderman.de",
  304. "homepage": "http://www.naderman.de"
  305. },
  306. {
  307. "name": "Jordi Boggiano",
  308. "email": "j.boggiano@seld.be",
  309. "homepage": "http://seld.be"
  310. },
  311. {
  312. "name": "Rob Bast",
  313. "email": "rob.bast@gmail.com",
  314. "homepage": "http://robbast.nl"
  315. }
  316. ],
  317. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  318. "keywords": [
  319. "semantic",
  320. "semver",
  321. "validation",
  322. "versioning"
  323. ],
  324. "support": {
  325. "irc": "irc://irc.freenode.org/composer",
  326. "issues": "https://github.com/composer/semver/issues",
  327. "source": "https://github.com/composer/semver/tree/1.5.1"
  328. },
  329. "time": "2020-01-13T12:06:48+00:00"
  330. },
  331. {
  332. "name": "consolidation/annotated-command",
  333. "version": "2.12.2",
  334. "source": {
  335. "type": "git",
  336. "url": "https://github.com/consolidation/annotated-command.git",
  337. "reference": "2472a23610cba1d86dcb783a81a21259473b059e"
  338. },
  339. "dist": {
  340. "type": "zip",
  341. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e",
  342. "reference": "2472a23610cba1d86dcb783a81a21259473b059e",
  343. "shasum": ""
  344. },
  345. "require": {
  346. "consolidation/output-formatters": "^3.5.1",
  347. "php": ">=5.4.5",
  348. "psr/log": "^1",
  349. "symfony/console": "^2.8|^3|^4",
  350. "symfony/event-dispatcher": "^2.5|^3|^4",
  351. "symfony/finder": "^2.5|^3|^4|^5"
  352. },
  353. "require-dev": {
  354. "g1a/composer-test-scenarios": "^3",
  355. "php-coveralls/php-coveralls": "^1",
  356. "phpunit/phpunit": "^6",
  357. "squizlabs/php_codesniffer": "^2.7"
  358. },
  359. "type": "library",
  360. "extra": {
  361. "scenarios": {
  362. "finder5": {
  363. "require": {
  364. "symfony/finder": "^5"
  365. },
  366. "config": {
  367. "platform": {
  368. "php": "7.2.5"
  369. }
  370. }
  371. },
  372. "symfony4": {
  373. "require": {
  374. "symfony/console": "^4.0"
  375. },
  376. "config": {
  377. "platform": {
  378. "php": "7.1.3"
  379. }
  380. }
  381. },
  382. "symfony2": {
  383. "require": {
  384. "symfony/console": "^2.8"
  385. },
  386. "require-dev": {
  387. "phpunit/phpunit": "^4.8.36"
  388. },
  389. "remove": [
  390. "php-coveralls/php-coveralls"
  391. ],
  392. "config": {
  393. "platform": {
  394. "php": "5.4.8"
  395. }
  396. },
  397. "scenario-options": {
  398. "create-lockfile": "false"
  399. }
  400. },
  401. "phpunit4": {
  402. "require-dev": {
  403. "phpunit/phpunit": "^4.8.36"
  404. },
  405. "remove": [
  406. "php-coveralls/php-coveralls"
  407. ],
  408. "config": {
  409. "platform": {
  410. "php": "5.4.8"
  411. }
  412. }
  413. }
  414. },
  415. "branch-alias": {
  416. "dev-master": "2.x-dev"
  417. }
  418. },
  419. "autoload": {
  420. "psr-4": {
  421. "Consolidation\\AnnotatedCommand\\": "src"
  422. }
  423. },
  424. "notification-url": "https://packagist.org/downloads/",
  425. "license": [
  426. "MIT"
  427. ],
  428. "authors": [
  429. {
  430. "name": "Greg Anderson",
  431. "email": "greg.1.anderson@greenknowe.org"
  432. }
  433. ],
  434. "description": "Initialize Symfony Console commands from annotated command class methods.",
  435. "support": {
  436. "issues": "https://github.com/consolidation/annotated-command/issues",
  437. "source": "https://github.com/consolidation/annotated-command/tree/2.12.2"
  438. },
  439. "time": "2022-01-03T00:23:44+00:00"
  440. },
  441. {
  442. "name": "consolidation/config",
  443. "version": "1.2.1",
  444. "source": {
  445. "type": "git",
  446. "url": "https://github.com/consolidation/config.git",
  447. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  448. },
  449. "dist": {
  450. "type": "zip",
  451. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  452. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  453. "shasum": ""
  454. },
  455. "require": {
  456. "dflydev/dot-access-data": "^1.1.0",
  457. "grasmash/expander": "^1",
  458. "php": ">=5.4.0"
  459. },
  460. "require-dev": {
  461. "g1a/composer-test-scenarios": "^3",
  462. "php-coveralls/php-coveralls": "^1",
  463. "phpunit/phpunit": "^5",
  464. "squizlabs/php_codesniffer": "2.*",
  465. "symfony/console": "^2.5|^3|^4",
  466. "symfony/yaml": "^2.8.11|^3|^4"
  467. },
  468. "suggest": {
  469. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  470. },
  471. "type": "library",
  472. "extra": {
  473. "scenarios": {
  474. "symfony4": {
  475. "require-dev": {
  476. "symfony/console": "^4.0"
  477. },
  478. "config": {
  479. "platform": {
  480. "php": "7.1.3"
  481. }
  482. }
  483. },
  484. "symfony2": {
  485. "require-dev": {
  486. "symfony/console": "^2.8",
  487. "symfony/event-dispatcher": "^2.8",
  488. "phpunit/phpunit": "^4.8.36"
  489. },
  490. "remove": [
  491. "php-coveralls/php-coveralls"
  492. ],
  493. "config": {
  494. "platform": {
  495. "php": "5.4.8"
  496. }
  497. }
  498. }
  499. },
  500. "branch-alias": {
  501. "dev-master": "1.x-dev"
  502. }
  503. },
  504. "autoload": {
  505. "psr-4": {
  506. "Consolidation\\Config\\": "src"
  507. }
  508. },
  509. "notification-url": "https://packagist.org/downloads/",
  510. "license": [
  511. "MIT"
  512. ],
  513. "authors": [
  514. {
  515. "name": "Greg Anderson",
  516. "email": "greg.1.anderson@greenknowe.org"
  517. }
  518. ],
  519. "description": "Provide configuration services for a commandline tool.",
  520. "support": {
  521. "issues": "https://github.com/consolidation/config/issues",
  522. "source": "https://github.com/consolidation/config/tree/master"
  523. },
  524. "time": "2019-03-03T19:37:04+00:00"
  525. },
  526. {
  527. "name": "consolidation/filter-via-dot-access-data",
  528. "version": "1.0.0",
  529. "source": {
  530. "type": "git",
  531. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  532. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  533. },
  534. "dist": {
  535. "type": "zip",
  536. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  537. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  538. "shasum": ""
  539. },
  540. "require": {
  541. "dflydev/dot-access-data": "^1.1.0",
  542. "php": ">=5.5.0"
  543. },
  544. "require-dev": {
  545. "consolidation/robo": "^1.2.3",
  546. "g1a/composer-test-scenarios": "^3",
  547. "knplabs/github-api": "^2.7",
  548. "php-coveralls/php-coveralls": "^1",
  549. "php-http/guzzle6-adapter": "^1.1",
  550. "phpunit/phpunit": "^5",
  551. "squizlabs/php_codesniffer": "^2.8",
  552. "symfony/console": "^2.8|^3|^4"
  553. },
  554. "type": "library",
  555. "extra": {
  556. "scenarios": {
  557. "phpunit5": {
  558. "require-dev": {
  559. "phpunit/phpunit": "^5.7.27"
  560. },
  561. "remove": [
  562. "php-coveralls/php-coveralls"
  563. ],
  564. "config": {
  565. "platform": {
  566. "php": "5.6.33"
  567. }
  568. }
  569. }
  570. },
  571. "branch-alias": {
  572. "dev-master": "1.x-dev"
  573. }
  574. },
  575. "autoload": {
  576. "psr-4": {
  577. "Consolidation\\Filter\\": "src"
  578. }
  579. },
  580. "notification-url": "https://packagist.org/downloads/",
  581. "license": [
  582. "MIT"
  583. ],
  584. "authors": [
  585. {
  586. "name": "Greg Anderson",
  587. "email": "greg.1.anderson@greenknowe.org"
  588. }
  589. ],
  590. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  591. "support": {
  592. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  593. },
  594. "time": "2019-01-18T06:05:07+00:00"
  595. },
  596. {
  597. "name": "consolidation/log",
  598. "version": "1.1.1",
  599. "source": {
  600. "type": "git",
  601. "url": "https://github.com/consolidation/log.git",
  602. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  603. },
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  607. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  608. "shasum": ""
  609. },
  610. "require": {
  611. "php": ">=5.4.5",
  612. "psr/log": "^1.0",
  613. "symfony/console": "^2.8|^3|^4"
  614. },
  615. "require-dev": {
  616. "g1a/composer-test-scenarios": "^3",
  617. "php-coveralls/php-coveralls": "^1",
  618. "phpunit/phpunit": "^6",
  619. "squizlabs/php_codesniffer": "^2"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "scenarios": {
  624. "symfony4": {
  625. "require": {
  626. "symfony/console": "^4.0"
  627. },
  628. "config": {
  629. "platform": {
  630. "php": "7.1.3"
  631. }
  632. }
  633. },
  634. "symfony2": {
  635. "require": {
  636. "symfony/console": "^2.8"
  637. },
  638. "require-dev": {
  639. "phpunit/phpunit": "^4.8.36"
  640. },
  641. "remove": [
  642. "php-coveralls/php-coveralls"
  643. ],
  644. "config": {
  645. "platform": {
  646. "php": "5.4.8"
  647. }
  648. }
  649. },
  650. "phpunit4": {
  651. "require-dev": {
  652. "phpunit/phpunit": "^4.8.36"
  653. },
  654. "remove": [
  655. "php-coveralls/php-coveralls"
  656. ],
  657. "config": {
  658. "platform": {
  659. "php": "5.4.8"
  660. }
  661. }
  662. }
  663. },
  664. "branch-alias": {
  665. "dev-master": "1.x-dev"
  666. }
  667. },
  668. "autoload": {
  669. "psr-4": {
  670. "Consolidation\\Log\\": "src"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "Greg Anderson",
  680. "email": "greg.1.anderson@greenknowe.org"
  681. }
  682. ],
  683. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  684. "support": {
  685. "issues": "https://github.com/consolidation/log/issues",
  686. "source": "https://github.com/consolidation/log/tree/master"
  687. },
  688. "time": "2019-01-01T17:30:51+00:00"
  689. },
  690. {
  691. "name": "consolidation/output-formatters",
  692. "version": "3.5.1",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/consolidation/output-formatters.git",
  696. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  701. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  702. "shasum": ""
  703. },
  704. "require": {
  705. "dflydev/dot-access-data": "^1.1.0",
  706. "php": ">=5.4.0",
  707. "symfony/console": "^2.8|^3|^4",
  708. "symfony/finder": "^2.5|^3|^4|^5"
  709. },
  710. "require-dev": {
  711. "g1a/composer-test-scenarios": "^3",
  712. "php-coveralls/php-coveralls": "^1",
  713. "phpunit/phpunit": "^5.7.27",
  714. "squizlabs/php_codesniffer": "^2.7",
  715. "symfony/var-dumper": "^2.8|^3|^4",
  716. "victorjonsson/markdowndocs": "^1.3"
  717. },
  718. "suggest": {
  719. "symfony/var-dumper": "For using the var_dump formatter"
  720. },
  721. "type": "library",
  722. "extra": {
  723. "scenarios": {
  724. "finder5": {
  725. "require": {
  726. "symfony/finder": "^5"
  727. },
  728. "config": {
  729. "platform": {
  730. "php": "7.2.5"
  731. }
  732. }
  733. },
  734. "symfony4": {
  735. "require": {
  736. "symfony/console": "^4.0"
  737. },
  738. "require-dev": {
  739. "phpunit/phpunit": "^6"
  740. },
  741. "config": {
  742. "platform": {
  743. "php": "7.1.3"
  744. }
  745. }
  746. },
  747. "symfony3": {
  748. "require": {
  749. "symfony/console": "^3.4",
  750. "symfony/finder": "^3.4",
  751. "symfony/var-dumper": "^3.4"
  752. },
  753. "config": {
  754. "platform": {
  755. "php": "5.6.32"
  756. }
  757. }
  758. },
  759. "symfony2": {
  760. "require": {
  761. "symfony/console": "^2.8"
  762. },
  763. "require-dev": {
  764. "phpunit/phpunit": "^4.8.36"
  765. },
  766. "remove": [
  767. "php-coveralls/php-coveralls"
  768. ],
  769. "config": {
  770. "platform": {
  771. "php": "5.4.8"
  772. }
  773. },
  774. "scenario-options": {
  775. "create-lockfile": "false"
  776. }
  777. }
  778. },
  779. "branch-alias": {
  780. "dev-master": "3.x-dev"
  781. }
  782. },
  783. "autoload": {
  784. "psr-4": {
  785. "Consolidation\\OutputFormatters\\": "src"
  786. }
  787. },
  788. "notification-url": "https://packagist.org/downloads/",
  789. "license": [
  790. "MIT"
  791. ],
  792. "authors": [
  793. {
  794. "name": "Greg Anderson",
  795. "email": "greg.1.anderson@greenknowe.org"
  796. }
  797. ],
  798. "description": "Format text by applying transformations provided by plug-in formatters.",
  799. "support": {
  800. "issues": "https://github.com/consolidation/output-formatters/issues",
  801. "source": "https://github.com/consolidation/output-formatters/tree/3.5.1"
  802. },
  803. "time": "2020-10-11T04:15:32+00:00"
  804. },
  805. {
  806. "name": "consolidation/robo",
  807. "version": "1.5.0",
  808. "source": {
  809. "type": "git",
  810. "url": "https://github.com/consolidation/Robo.git",
  811. "reference": "12bf6b608057604a283e9e597edfed36ba071631"
  812. },
  813. "dist": {
  814. "type": "zip",
  815. "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631",
  816. "reference": "12bf6b608057604a283e9e597edfed36ba071631",
  817. "shasum": ""
  818. },
  819. "require": {
  820. "consolidation/annotated-command": "^2.12.1 || ^4.1",
  821. "consolidation/config": "^1.2.1",
  822. "consolidation/log": "^1.1.1 || ^2",
  823. "consolidation/output-formatters": "^3.5.1 || ^4.1",
  824. "consolidation/self-update": "^1.1.5 || ^2",
  825. "grasmash/yaml-expander": "^1.4",
  826. "league/container": "^2.4.1",
  827. "php": ">=5.5.0",
  828. "symfony/console": "^2.8 || ^3 || ^4",
  829. "symfony/event-dispatcher": "^2.5 || ^3 || ^4",
  830. "symfony/filesystem": "^2.5 || ^3 || ^4",
  831. "symfony/finder": "^2.5 || ^3 || ^4 || ^5",
  832. "symfony/process": "^2.5 || ^3 || ^4"
  833. },
  834. "replace": {
  835. "codegyre/robo": "< 1.0"
  836. },
  837. "require-dev": {
  838. "g1a/composer-test-scenarios": "^3",
  839. "natxet/cssmin": "3.0.4",
  840. "patchwork/jsqueeze": "^2",
  841. "pear/archive_tar": "^1.4.4",
  842. "php-coveralls/php-coveralls": "^1",
  843. "phpunit/phpunit": "^5.7.27",
  844. "squizlabs/php_codesniffer": "^3"
  845. },
  846. "suggest": {
  847. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  848. "natxet/CssMin": "For minifying CSS files in taskMinify",
  849. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  850. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  851. },
  852. "bin": [
  853. "robo"
  854. ],
  855. "type": "library",
  856. "extra": {
  857. "scenarios": {
  858. "finder5": {
  859. "require": {
  860. "symfony/finder": "^5"
  861. },
  862. "config": {
  863. "platform": {
  864. "php": "7.2.5"
  865. }
  866. }
  867. },
  868. "symfony4": {
  869. "require": {
  870. "symfony/console": "^4"
  871. },
  872. "config": {
  873. "platform": {
  874. "php": "7.1.3"
  875. }
  876. }
  877. },
  878. "symfony2": {
  879. "require": {
  880. "symfony/console": "^2.8"
  881. },
  882. "require-dev": {
  883. "phpunit/phpunit": "^4.8.36"
  884. },
  885. "remove": [
  886. "php-coveralls/php-coveralls"
  887. ],
  888. "config": {
  889. "platform": {
  890. "php": "5.5.9"
  891. }
  892. },
  893. "scenario-options": {
  894. "create-lockfile": "false"
  895. }
  896. }
  897. },
  898. "branch-alias": {
  899. "dev-master": "1.x-dev"
  900. }
  901. },
  902. "autoload": {
  903. "psr-4": {
  904. "Robo\\": "src"
  905. }
  906. },
  907. "notification-url": "https://packagist.org/downloads/",
  908. "license": [
  909. "MIT"
  910. ],
  911. "authors": [
  912. {
  913. "name": "Davert",
  914. "email": "davert.php@resend.cc"
  915. }
  916. ],
  917. "description": "Modern task runner",
  918. "support": {
  919. "issues": "https://github.com/consolidation/Robo/issues",
  920. "source": "https://github.com/consolidation/Robo/tree/1.5.0"
  921. },
  922. "time": "2021-10-08T03:51:31+00:00"
  923. },
  924. {
  925. "name": "consolidation/self-update",
  926. "version": "1.2.0",
  927. "source": {
  928. "type": "git",
  929. "url": "https://github.com/consolidation/self-update.git",
  930. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  931. },
  932. "dist": {
  933. "type": "zip",
  934. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  935. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  936. "shasum": ""
  937. },
  938. "require": {
  939. "php": ">=5.5.0",
  940. "symfony/console": "^2.8|^3|^4|^5",
  941. "symfony/filesystem": "^2.5|^3|^4|^5"
  942. },
  943. "bin": [
  944. "scripts/release"
  945. ],
  946. "type": "library",
  947. "extra": {
  948. "branch-alias": {
  949. "dev-master": "1.x-dev"
  950. }
  951. },
  952. "autoload": {
  953. "psr-4": {
  954. "SelfUpdate\\": "src"
  955. }
  956. },
  957. "notification-url": "https://packagist.org/downloads/",
  958. "license": [
  959. "MIT"
  960. ],
  961. "authors": [
  962. {
  963. "name": "Alexander Menk",
  964. "email": "menk@mestrona.net"
  965. },
  966. {
  967. "name": "Greg Anderson",
  968. "email": "greg.1.anderson@greenknowe.org"
  969. }
  970. ],
  971. "description": "Provides a self:update command for Symfony Console applications.",
  972. "support": {
  973. "issues": "https://github.com/consolidation/self-update/issues",
  974. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  975. },
  976. "time": "2020-04-13T02:49:20+00:00"
  977. },
  978. {
  979. "name": "consolidation/site-alias",
  980. "version": "3.1.7",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/consolidation/site-alias.git",
  984. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7",
  989. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "consolidation/config": "^1.2.1 || ^2",
  994. "php": ">=5.5.0",
  995. "symfony/filesystem": "^4.4 || ^5.4 || ^6",
  996. "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6",
  997. "webmozart/path-util": "^2.3"
  998. },
  999. "require-dev": {
  1000. "php-coveralls/php-coveralls": "^2.4.2",
  1001. "phpunit/phpunit": ">=7",
  1002. "squizlabs/php_codesniffer": "^3",
  1003. "symfony/var-dumper": "^4",
  1004. "yoast/phpunit-polyfills": "^0.2.0"
  1005. },
  1006. "type": "library",
  1007. "extra": {
  1008. "branch-alias": {
  1009. "dev-main": "3.x-dev"
  1010. }
  1011. },
  1012. "autoload": {
  1013. "psr-4": {
  1014. "Consolidation\\SiteAlias\\": "src"
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "Greg Anderson",
  1024. "email": "greg.1.anderson@greenknowe.org"
  1025. },
  1026. {
  1027. "name": "Moshe Weitzman",
  1028. "email": "weitzman@tejasa.com"
  1029. }
  1030. ],
  1031. "description": "Manage alias records for local and remote sites.",
  1032. "support": {
  1033. "issues": "https://github.com/consolidation/site-alias/issues",
  1034. "source": "https://github.com/consolidation/site-alias/tree/3.1.7"
  1035. },
  1036. "time": "2022-10-15T01:21:09+00:00"
  1037. },
  1038. {
  1039. "name": "consolidation/site-process",
  1040. "version": "2.1.0",
  1041. "source": {
  1042. "type": "git",
  1043. "url": "https://github.com/consolidation/site-process.git",
  1044. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1045. },
  1046. "dist": {
  1047. "type": "zip",
  1048. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1049. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1050. "shasum": ""
  1051. },
  1052. "require": {
  1053. "consolidation/config": "^1.2.1",
  1054. "consolidation/site-alias": "^3",
  1055. "php": ">=5.6.0",
  1056. "symfony/process": "^3.4"
  1057. },
  1058. "require-dev": {
  1059. "consolidation/robo": "^1.3",
  1060. "g1a/composer-test-scenarios": "^3",
  1061. "knplabs/github-api": "^2.7",
  1062. "php-coveralls/php-coveralls": "^1",
  1063. "php-http/guzzle6-adapter": "^1.1",
  1064. "phpunit/phpunit": "^6",
  1065. "squizlabs/php_codesniffer": "^2.8"
  1066. },
  1067. "type": "library",
  1068. "extra": {
  1069. "scenarios": {
  1070. "phpunit5": {
  1071. "require-dev": {
  1072. "phpunit/phpunit": "^5.7.27"
  1073. },
  1074. "remove": [
  1075. "php-coveralls/php-coveralls"
  1076. ],
  1077. "config": {
  1078. "platform": {
  1079. "php": "5.6.33"
  1080. }
  1081. }
  1082. }
  1083. },
  1084. "branch-alias": {
  1085. "dev-master": "0.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "Consolidation\\SiteProcess\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "Greg Anderson",
  1100. "email": "greg.1.anderson@greenknowe.org"
  1101. },
  1102. {
  1103. "name": "Moshe Weitzman",
  1104. "email": "weitzman@tejasa.com"
  1105. }
  1106. ],
  1107. "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.",
  1108. "support": {
  1109. "issues": "https://github.com/consolidation/site-process/issues",
  1110. "source": "https://github.com/consolidation/site-process/tree/2.1.0"
  1111. },
  1112. "time": "2019-09-10T17:56:24+00:00"
  1113. },
  1114. {
  1115. "name": "container-interop/container-interop",
  1116. "version": "1.2.0",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/container-interop/container-interop.git",
  1120. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1125. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "psr/container": "^1.0"
  1130. },
  1131. "type": "library",
  1132. "autoload": {
  1133. "psr-4": {
  1134. "Interop\\Container\\": "src/Interop/Container/"
  1135. }
  1136. },
  1137. "notification-url": "https://packagist.org/downloads/",
  1138. "license": [
  1139. "MIT"
  1140. ],
  1141. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1142. "homepage": "https://github.com/container-interop/container-interop",
  1143. "support": {
  1144. "issues": "https://github.com/container-interop/container-interop/issues",
  1145. "source": "https://github.com/container-interop/container-interop/tree/master"
  1146. },
  1147. "abandoned": "psr/container",
  1148. "time": "2017-02-14T19:40:03+00:00"
  1149. },
  1150. {
  1151. "name": "cweagans/composer-patches",
  1152. "version": "1.7.3",
  1153. "source": {
  1154. "type": "git",
  1155. "url": "https://github.com/cweagans/composer-patches.git",
  1156. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1157. },
  1158. "dist": {
  1159. "type": "zip",
  1160. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1161. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1162. "shasum": ""
  1163. },
  1164. "require": {
  1165. "composer-plugin-api": "^1.0 || ^2.0",
  1166. "php": ">=5.3.0"
  1167. },
  1168. "require-dev": {
  1169. "composer/composer": "~1.0 || ~2.0",
  1170. "phpunit/phpunit": "~4.6"
  1171. },
  1172. "type": "composer-plugin",
  1173. "extra": {
  1174. "class": "cweagans\\Composer\\Patches"
  1175. },
  1176. "autoload": {
  1177. "psr-4": {
  1178. "cweagans\\Composer\\": "src"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "BSD-3-Clause"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Cameron Eagans",
  1188. "email": "me@cweagans.net"
  1189. }
  1190. ],
  1191. "description": "Provides a way to patch Composer packages.",
  1192. "support": {
  1193. "issues": "https://github.com/cweagans/composer-patches/issues",
  1194. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1195. },
  1196. "time": "2022-12-20T22:53:13+00:00"
  1197. },
  1198. {
  1199. "name": "dflydev/dot-access-data",
  1200. "version": "v1.1.0",
  1201. "source": {
  1202. "type": "git",
  1203. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1204. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1205. },
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1209. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1210. "shasum": ""
  1211. },
  1212. "require": {
  1213. "php": ">=5.3.2"
  1214. },
  1215. "type": "library",
  1216. "extra": {
  1217. "branch-alias": {
  1218. "dev-master": "1.0-dev"
  1219. }
  1220. },
  1221. "autoload": {
  1222. "psr-0": {
  1223. "Dflydev\\DotAccessData": "src"
  1224. }
  1225. },
  1226. "notification-url": "https://packagist.org/downloads/",
  1227. "license": [
  1228. "MIT"
  1229. ],
  1230. "authors": [
  1231. {
  1232. "name": "Dragonfly Development Inc.",
  1233. "email": "info@dflydev.com",
  1234. "homepage": "http://dflydev.com"
  1235. },
  1236. {
  1237. "name": "Beau Simensen",
  1238. "email": "beau@dflydev.com",
  1239. "homepage": "http://beausimensen.com"
  1240. },
  1241. {
  1242. "name": "Carlos Frutos",
  1243. "email": "carlos@kiwing.it",
  1244. "homepage": "https://github.com/cfrutos"
  1245. }
  1246. ],
  1247. "description": "Given a deep data structure, access data by dot notation.",
  1248. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1249. "keywords": [
  1250. "access",
  1251. "data",
  1252. "dot",
  1253. "notation"
  1254. ],
  1255. "support": {
  1256. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1257. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1258. },
  1259. "time": "2017-01-20T21:14:22+00:00"
  1260. },
  1261. {
  1262. "name": "doctrine/annotations",
  1263. "version": "v1.4.0",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/doctrine/annotations.git",
  1267. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1272. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "doctrine/lexer": "1.*",
  1277. "php": "^5.6 || ^7.0"
  1278. },
  1279. "require-dev": {
  1280. "doctrine/cache": "1.*",
  1281. "phpunit/phpunit": "^5.7"
  1282. },
  1283. "type": "library",
  1284. "extra": {
  1285. "branch-alias": {
  1286. "dev-master": "1.4.x-dev"
  1287. }
  1288. },
  1289. "autoload": {
  1290. "psr-4": {
  1291. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "MIT"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Roman Borschel",
  1301. "email": "roman@code-factory.org"
  1302. },
  1303. {
  1304. "name": "Benjamin Eberlei",
  1305. "email": "kontakt@beberlei.de"
  1306. },
  1307. {
  1308. "name": "Guilherme Blanco",
  1309. "email": "guilhermeblanco@gmail.com"
  1310. },
  1311. {
  1312. "name": "Jonathan Wage",
  1313. "email": "jonwage@gmail.com"
  1314. },
  1315. {
  1316. "name": "Johannes Schmitt",
  1317. "email": "schmittjoh@gmail.com"
  1318. }
  1319. ],
  1320. "description": "Docblock Annotations Parser",
  1321. "homepage": "http://www.doctrine-project.org",
  1322. "keywords": [
  1323. "annotations",
  1324. "docblock",
  1325. "parser"
  1326. ],
  1327. "support": {
  1328. "issues": "https://github.com/doctrine/annotations/issues",
  1329. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1330. },
  1331. "time": "2017-02-24T16:22:25+00:00"
  1332. },
  1333. {
  1334. "name": "doctrine/cache",
  1335. "version": "v1.6.2",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/doctrine/cache.git",
  1339. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1344. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1345. "shasum": ""
  1346. },
  1347. "require": {
  1348. "php": "~5.5|~7.0"
  1349. },
  1350. "conflict": {
  1351. "doctrine/common": ">2.2,<2.4"
  1352. },
  1353. "require-dev": {
  1354. "phpunit/phpunit": "~4.8|~5.0",
  1355. "predis/predis": "~1.0",
  1356. "satooshi/php-coveralls": "~0.6"
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "branch-alias": {
  1361. "dev-master": "1.6.x-dev"
  1362. }
  1363. },
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "Roman Borschel",
  1376. "email": "roman@code-factory.org"
  1377. },
  1378. {
  1379. "name": "Benjamin Eberlei",
  1380. "email": "kontakt@beberlei.de"
  1381. },
  1382. {
  1383. "name": "Guilherme Blanco",
  1384. "email": "guilhermeblanco@gmail.com"
  1385. },
  1386. {
  1387. "name": "Jonathan Wage",
  1388. "email": "jonwage@gmail.com"
  1389. },
  1390. {
  1391. "name": "Johannes Schmitt",
  1392. "email": "schmittjoh@gmail.com"
  1393. }
  1394. ],
  1395. "description": "Caching library offering an object-oriented API for many cache backends",
  1396. "homepage": "http://www.doctrine-project.org",
  1397. "keywords": [
  1398. "cache",
  1399. "caching"
  1400. ],
  1401. "support": {
  1402. "issues": "https://github.com/doctrine/cache/issues",
  1403. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1404. },
  1405. "time": "2017-07-22T12:49:21+00:00"
  1406. },
  1407. {
  1408. "name": "doctrine/collections",
  1409. "version": "v1.4.0",
  1410. "source": {
  1411. "type": "git",
  1412. "url": "https://github.com/doctrine/collections.git",
  1413. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1414. },
  1415. "dist": {
  1416. "type": "zip",
  1417. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1418. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1419. "shasum": ""
  1420. },
  1421. "require": {
  1422. "php": "^5.6 || ^7.0"
  1423. },
  1424. "require-dev": {
  1425. "doctrine/coding-standard": "~0.1@dev",
  1426. "phpunit/phpunit": "^5.7"
  1427. },
  1428. "type": "library",
  1429. "extra": {
  1430. "branch-alias": {
  1431. "dev-master": "1.3.x-dev"
  1432. }
  1433. },
  1434. "autoload": {
  1435. "psr-0": {
  1436. "Doctrine\\Common\\Collections\\": "lib/"
  1437. }
  1438. },
  1439. "notification-url": "https://packagist.org/downloads/",
  1440. "license": [
  1441. "MIT"
  1442. ],
  1443. "authors": [
  1444. {
  1445. "name": "Roman Borschel",
  1446. "email": "roman@code-factory.org"
  1447. },
  1448. {
  1449. "name": "Benjamin Eberlei",
  1450. "email": "kontakt@beberlei.de"
  1451. },
  1452. {
  1453. "name": "Guilherme Blanco",
  1454. "email": "guilhermeblanco@gmail.com"
  1455. },
  1456. {
  1457. "name": "Jonathan Wage",
  1458. "email": "jonwage@gmail.com"
  1459. },
  1460. {
  1461. "name": "Johannes Schmitt",
  1462. "email": "schmittjoh@gmail.com"
  1463. }
  1464. ],
  1465. "description": "Collections Abstraction library",
  1466. "homepage": "http://www.doctrine-project.org",
  1467. "keywords": [
  1468. "array",
  1469. "collections",
  1470. "iterator"
  1471. ],
  1472. "support": {
  1473. "issues": "https://github.com/doctrine/collections/issues",
  1474. "source": "https://github.com/doctrine/collections/tree/master"
  1475. },
  1476. "time": "2017-01-03T10:49:41+00:00"
  1477. },
  1478. {
  1479. "name": "doctrine/common",
  1480. "version": "v2.7.3",
  1481. "source": {
  1482. "type": "git",
  1483. "url": "https://github.com/doctrine/common.git",
  1484. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1485. },
  1486. "dist": {
  1487. "type": "zip",
  1488. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1489. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1490. "shasum": ""
  1491. },
  1492. "require": {
  1493. "doctrine/annotations": "1.*",
  1494. "doctrine/cache": "1.*",
  1495. "doctrine/collections": "1.*",
  1496. "doctrine/inflector": "1.*",
  1497. "doctrine/lexer": "1.*",
  1498. "php": "~5.6|~7.0"
  1499. },
  1500. "require-dev": {
  1501. "phpunit/phpunit": "^5.4.6"
  1502. },
  1503. "type": "library",
  1504. "extra": {
  1505. "branch-alias": {
  1506. "dev-master": "2.7.x-dev"
  1507. }
  1508. },
  1509. "autoload": {
  1510. "psr-4": {
  1511. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Roman Borschel",
  1521. "email": "roman@code-factory.org"
  1522. },
  1523. {
  1524. "name": "Benjamin Eberlei",
  1525. "email": "kontakt@beberlei.de"
  1526. },
  1527. {
  1528. "name": "Guilherme Blanco",
  1529. "email": "guilhermeblanco@gmail.com"
  1530. },
  1531. {
  1532. "name": "Jonathan Wage",
  1533. "email": "jonwage@gmail.com"
  1534. },
  1535. {
  1536. "name": "Johannes Schmitt",
  1537. "email": "schmittjoh@gmail.com"
  1538. }
  1539. ],
  1540. "description": "Common Library for Doctrine projects",
  1541. "homepage": "http://www.doctrine-project.org",
  1542. "keywords": [
  1543. "annotations",
  1544. "collections",
  1545. "eventmanager",
  1546. "persistence",
  1547. "spl"
  1548. ],
  1549. "support": {
  1550. "issues": "https://github.com/doctrine/common/issues",
  1551. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1552. },
  1553. "time": "2017-07-22T08:35:12+00:00"
  1554. },
  1555. {
  1556. "name": "doctrine/inflector",
  1557. "version": "v1.2.0",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://github.com/doctrine/inflector.git",
  1561. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1562. },
  1563. "dist": {
  1564. "type": "zip",
  1565. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1566. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1567. "shasum": ""
  1568. },
  1569. "require": {
  1570. "php": "^7.0"
  1571. },
  1572. "require-dev": {
  1573. "phpunit/phpunit": "^6.2"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "branch-alias": {
  1578. "dev-master": "1.2.x-dev"
  1579. }
  1580. },
  1581. "autoload": {
  1582. "psr-4": {
  1583. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1584. }
  1585. },
  1586. "notification-url": "https://packagist.org/downloads/",
  1587. "license": [
  1588. "MIT"
  1589. ],
  1590. "authors": [
  1591. {
  1592. "name": "Roman Borschel",
  1593. "email": "roman@code-factory.org"
  1594. },
  1595. {
  1596. "name": "Benjamin Eberlei",
  1597. "email": "kontakt@beberlei.de"
  1598. },
  1599. {
  1600. "name": "Guilherme Blanco",
  1601. "email": "guilhermeblanco@gmail.com"
  1602. },
  1603. {
  1604. "name": "Jonathan Wage",
  1605. "email": "jonwage@gmail.com"
  1606. },
  1607. {
  1608. "name": "Johannes Schmitt",
  1609. "email": "schmittjoh@gmail.com"
  1610. }
  1611. ],
  1612. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1613. "homepage": "http://www.doctrine-project.org",
  1614. "keywords": [
  1615. "inflection",
  1616. "pluralize",
  1617. "singularize",
  1618. "string"
  1619. ],
  1620. "support": {
  1621. "source": "https://github.com/doctrine/inflector/tree/master"
  1622. },
  1623. "time": "2017-07-22T12:18:28+00:00"
  1624. },
  1625. {
  1626. "name": "doctrine/lexer",
  1627. "version": "1.0.2",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://github.com/doctrine/lexer.git",
  1631. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1636. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1637. "shasum": ""
  1638. },
  1639. "require": {
  1640. "php": ">=5.3.2"
  1641. },
  1642. "require-dev": {
  1643. "phpunit/phpunit": "^4.5"
  1644. },
  1645. "type": "library",
  1646. "extra": {
  1647. "branch-alias": {
  1648. "dev-master": "1.0.x-dev"
  1649. }
  1650. },
  1651. "autoload": {
  1652. "psr-4": {
  1653. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1654. }
  1655. },
  1656. "notification-url": "https://packagist.org/downloads/",
  1657. "license": [
  1658. "MIT"
  1659. ],
  1660. "authors": [
  1661. {
  1662. "name": "Roman Borschel",
  1663. "email": "roman@code-factory.org"
  1664. },
  1665. {
  1666. "name": "Guilherme Blanco",
  1667. "email": "guilhermeblanco@gmail.com"
  1668. },
  1669. {
  1670. "name": "Johannes Schmitt",
  1671. "email": "schmittjoh@gmail.com"
  1672. }
  1673. ],
  1674. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1675. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1676. "keywords": [
  1677. "annotations",
  1678. "docblock",
  1679. "lexer",
  1680. "parser",
  1681. "php"
  1682. ],
  1683. "support": {
  1684. "issues": "https://github.com/doctrine/lexer/issues",
  1685. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1686. },
  1687. "time": "2019-06-08T11:03:04+00:00"
  1688. },
  1689. {
  1690. "name": "drupal/addtoany",
  1691. "version": "1.22.0",
  1692. "source": {
  1693. "type": "git",
  1694. "url": "https://git.drupalcode.org/project/addtoany.git",
  1695. "reference": "8.x-1.22"
  1696. },
  1697. "dist": {
  1698. "type": "zip",
  1699. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.22.zip",
  1700. "reference": "8.x-1.22",
  1701. "shasum": "350bfc33c163d11d137005cb56e6a1f0eaa35f04"
  1702. },
  1703. "require": {
  1704. "drupal/core": "^8 || ^9"
  1705. },
  1706. "type": "drupal-module",
  1707. "extra": {
  1708. "drupal": {
  1709. "version": "8.x-1.22",
  1710. "datestamp": "1698826527",
  1711. "security-coverage": {
  1712. "status": "covered",
  1713. "message": "Covered by Drupal's security advisory policy"
  1714. }
  1715. }
  1716. },
  1717. "notification-url": "https://packages.drupal.org/8/downloads",
  1718. "license": [
  1719. "GPL-2.0-or-later"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "AddToAny",
  1724. "homepage": "https://www.drupal.org/user/2640913"
  1725. },
  1726. {
  1727. "name": "micropat",
  1728. "homepage": "https://www.drupal.org/user/260224"
  1729. }
  1730. ],
  1731. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1732. "homepage": "https://www.drupal.org/project/addtoany",
  1733. "keywords": [
  1734. "Drupal"
  1735. ],
  1736. "support": {
  1737. "source": "https://git.drupalcode.org/project/addtoany",
  1738. "issues": "https://www.drupal.org/project/issues/addtoany"
  1739. }
  1740. },
  1741. {
  1742. "name": "drupal/admin_toolbar",
  1743. "version": "2.5.0",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1747. "reference": "8.x-2.5"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  1752. "reference": "8.x-2.5",
  1753. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  1754. },
  1755. "require": {
  1756. "drupal/core": "^8.8.0 || ^9.0"
  1757. },
  1758. "type": "drupal-module",
  1759. "extra": {
  1760. "drupal": {
  1761. "version": "8.x-2.5",
  1762. "datestamp": "1629907119",
  1763. "security-coverage": {
  1764. "status": "covered",
  1765. "message": "Covered by Drupal's security advisory policy"
  1766. }
  1767. }
  1768. },
  1769. "notification-url": "https://packages.drupal.org/8/downloads",
  1770. "license": [
  1771. "GPL-2.0-or-later"
  1772. ],
  1773. "authors": [
  1774. {
  1775. "name": "Wilfrid Roze (eme)",
  1776. "homepage": "https://www.drupal.org/u/eme",
  1777. "role": "Maintainer"
  1778. },
  1779. {
  1780. "name": "Romain Jarraud (romainj)",
  1781. "homepage": "https://www.drupal.org/u/romainj",
  1782. "role": "Maintainer"
  1783. },
  1784. {
  1785. "name": "Adrian Cid Almaguer (adriancid)",
  1786. "homepage": "https://www.drupal.org/u/adriancid",
  1787. "email": "adriancid@gmail.com",
  1788. "role": "Maintainer"
  1789. },
  1790. {
  1791. "name": "Mohamed Anis Taktak (matio89)",
  1792. "homepage": "https://www.drupal.org/u/matio89",
  1793. "role": "Maintainer"
  1794. },
  1795. {
  1796. "name": "japerry",
  1797. "homepage": "https://www.drupal.org/user/45640"
  1798. },
  1799. {
  1800. "name": "matio89",
  1801. "homepage": "https://www.drupal.org/user/2320090"
  1802. },
  1803. {
  1804. "name": "musa.thomas",
  1805. "homepage": "https://www.drupal.org/user/1213824"
  1806. },
  1807. {
  1808. "name": "romainj",
  1809. "homepage": "https://www.drupal.org/user/370706"
  1810. }
  1811. ],
  1812. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1813. "homepage": "http://drupal.org/project/admin_toolbar",
  1814. "keywords": [
  1815. "Drupal",
  1816. "Toolbar"
  1817. ],
  1818. "support": {
  1819. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1820. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1821. }
  1822. },
  1823. {
  1824. "name": "drupal/adminimal_theme",
  1825. "version": "1.6.0",
  1826. "source": {
  1827. "type": "git",
  1828. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1829. "reference": "8.x-1.6"
  1830. },
  1831. "dist": {
  1832. "type": "zip",
  1833. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1834. "reference": "8.x-1.6",
  1835. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1836. },
  1837. "require": {
  1838. "drupal/core": "^8.8 || ^9"
  1839. },
  1840. "type": "drupal-theme",
  1841. "extra": {
  1842. "drupal": {
  1843. "version": "8.x-1.6",
  1844. "datestamp": "1602006937",
  1845. "security-coverage": {
  1846. "status": "covered",
  1847. "message": "Covered by Drupal's security advisory policy"
  1848. }
  1849. }
  1850. },
  1851. "notification-url": "https://packages.drupal.org/8/downloads",
  1852. "license": [
  1853. "GPL-2.0+"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "ANDiTKO",
  1858. "homepage": "https://www.drupal.org/user/1428124"
  1859. },
  1860. {
  1861. "name": "andrey.troeglazov",
  1862. "homepage": "https://www.drupal.org/user/3145389"
  1863. },
  1864. {
  1865. "name": "realityloop",
  1866. "homepage": "https://www.drupal.org/user/139189"
  1867. },
  1868. {
  1869. "name": "rjjakes",
  1870. "homepage": "https://www.drupal.org/user/3457245"
  1871. }
  1872. ],
  1873. "description": "Drupal administration theme with modern minimalist design.",
  1874. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1875. "support": {
  1876. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1877. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1878. }
  1879. },
  1880. {
  1881. "name": "drupal/audiofield",
  1882. "version": "1.13.0",
  1883. "source": {
  1884. "type": "git",
  1885. "url": "https://git.drupalcode.org/project/audiofield.git",
  1886. "reference": "8.x-1.13"
  1887. },
  1888. "dist": {
  1889. "type": "zip",
  1890. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1891. "reference": "8.x-1.13",
  1892. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1893. },
  1894. "require": {
  1895. "drupal/core": "^8 || ^9 || ^10"
  1896. },
  1897. "type": "drupal-module",
  1898. "extra": {
  1899. "drupal": {
  1900. "version": "8.x-1.13",
  1901. "datestamp": "1681143245",
  1902. "security-coverage": {
  1903. "status": "covered",
  1904. "message": "Covered by Drupal's security advisory policy"
  1905. }
  1906. },
  1907. "drush": {
  1908. "services": {
  1909. "drush.services.yml": "^9"
  1910. }
  1911. }
  1912. },
  1913. "notification-url": "https://packages.drupal.org/8/downloads",
  1914. "license": [
  1915. "GPL-2.0-or-later"
  1916. ],
  1917. "authors": [
  1918. {
  1919. "name": "Daniel Moberly",
  1920. "homepage": "https://www.drupal.org/u/danielmoberly",
  1921. "role": "Maintainer"
  1922. },
  1923. {
  1924. "name": "tamerzg",
  1925. "homepage": "https://www.drupal.org/user/464564"
  1926. }
  1927. ],
  1928. "description": "AudioField Module",
  1929. "homepage": "https://www.drupal.org/project/audiofield",
  1930. "support": {
  1931. "source": "https://git.drupalcode.org/project/audiofield",
  1932. "issues": "https://www.drupal.org/project/issues/audiofield"
  1933. }
  1934. },
  1935. {
  1936. "name": "drupal/autologout",
  1937. "version": "1.3.0",
  1938. "source": {
  1939. "type": "git",
  1940. "url": "https://git.drupalcode.org/project/autologout.git",
  1941. "reference": "8.x-1.3"
  1942. },
  1943. "dist": {
  1944. "type": "zip",
  1945. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1946. "reference": "8.x-1.3",
  1947. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1948. },
  1949. "require": {
  1950. "drupal/core": "^8 || ^9"
  1951. },
  1952. "type": "drupal-module",
  1953. "extra": {
  1954. "drupal": {
  1955. "version": "8.x-1.3",
  1956. "datestamp": "1587193798",
  1957. "security-coverage": {
  1958. "status": "covered",
  1959. "message": "Covered by Drupal's security advisory policy"
  1960. }
  1961. }
  1962. },
  1963. "notification-url": "https://packages.drupal.org/8/downloads",
  1964. "license": [
  1965. "GPL-2.0+"
  1966. ],
  1967. "authors": [
  1968. {
  1969. "name": "ajits",
  1970. "homepage": "https://www.drupal.org/user/981944"
  1971. },
  1972. {
  1973. "name": "AjK",
  1974. "homepage": "https://www.drupal.org/user/39030"
  1975. },
  1976. {
  1977. "name": "boshtian",
  1978. "homepage": "https://www.drupal.org/user/1773456"
  1979. },
  1980. {
  1981. "name": "dandrews",
  1982. "homepage": "https://www.drupal.org/user/2014490"
  1983. },
  1984. {
  1985. "name": "darksnow",
  1986. "homepage": "https://www.drupal.org/user/391915"
  1987. },
  1988. {
  1989. "name": "japerry",
  1990. "homepage": "https://www.drupal.org/user/45640"
  1991. },
  1992. {
  1993. "name": "johnennew",
  1994. "homepage": "https://www.drupal.org/user/1150042"
  1995. },
  1996. {
  1997. "name": "jrglasgow",
  1998. "homepage": "https://www.drupal.org/user/36590"
  1999. },
  2000. {
  2001. "name": "kmasood",
  2002. "homepage": "https://www.drupal.org/user/1262860"
  2003. },
  2004. {
  2005. "name": "levelos",
  2006. "homepage": "https://www.drupal.org/user/54135"
  2007. },
  2008. {
  2009. "name": "prabeen.giri",
  2010. "homepage": "https://www.drupal.org/user/913078"
  2011. },
  2012. {
  2013. "name": "scott_earnest",
  2014. "homepage": "https://www.drupal.org/user/416158"
  2015. },
  2016. {
  2017. "name": "str8",
  2018. "homepage": "https://www.drupal.org/user/2865063"
  2019. }
  2020. ],
  2021. "description": "Adds automated timed logout.",
  2022. "homepage": "http://drupal.org/project/autologout",
  2023. "support": {
  2024. "source": "https://git.drupalcode.org/project/autologout"
  2025. }
  2026. },
  2027. {
  2028. "name": "drupal/basic",
  2029. "version": "2.1.0",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://git.drupalcode.org/project/basic.git",
  2033. "reference": "8.x-2.1"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  2038. "reference": "8.x-2.1",
  2039. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  2040. },
  2041. "require": {
  2042. "drupal/core": "^8.8 || ^9"
  2043. },
  2044. "type": "drupal-theme",
  2045. "extra": {
  2046. "drupal": {
  2047. "version": "8.x-2.1",
  2048. "datestamp": "1612916291",
  2049. "security-coverage": {
  2050. "status": "covered",
  2051. "message": "Covered by Drupal's security advisory policy"
  2052. }
  2053. }
  2054. },
  2055. "notification-url": "https://packages.drupal.org/8/downloads",
  2056. "license": [
  2057. "GPL-2.0+"
  2058. ],
  2059. "authors": [
  2060. {
  2061. "name": "Steve Krueger",
  2062. "homepage": "http://thejibe.com",
  2063. "email": "steve@thejibe.com",
  2064. "role": "Maintainer"
  2065. },
  2066. {
  2067. "name": "Joël Pittet",
  2068. "homepage": "https://www.drupal.org/u/joelpittet",
  2069. "email": "joel@pittet.ca",
  2070. "role": "Maintainer"
  2071. },
  2072. {
  2073. "name": "Leah Wagner",
  2074. "homepage": "http://thejibe.com",
  2075. "email": "leah@thejibe.com",
  2076. "role": "Maintainer"
  2077. },
  2078. {
  2079. "name": "Catherine Winters",
  2080. "homepage": "http://www.catherinewinters.com",
  2081. "email": "catherine@catherinewinters.com",
  2082. "role": "Maintainer"
  2083. },
  2084. {
  2085. "name": "Johannes Schmidt",
  2086. "homepage": "http://2tabs.com",
  2087. "email": "mail@2tabs.com",
  2088. "role": "Maintainer"
  2089. },
  2090. {
  2091. "name": "Chuck Kosman",
  2092. "homepage": "http://thejibe.com",
  2093. "email": "chuck@thejibe.com",
  2094. "role": "Maintainer"
  2095. },
  2096. {
  2097. "name": "SteveK",
  2098. "homepage": "https://www.drupal.org/user/111656"
  2099. }
  2100. ],
  2101. "description": "HTML5, SASS, Responsive grid starter theme.",
  2102. "homepage": "http://drupal.org/project/basic",
  2103. "support": {
  2104. "source": "http://cgit.drupalcode.org/basic",
  2105. "issues": "https://www.drupal.org/project/issues/basic",
  2106. "irc": "irc://irc.freenode.org/drupal-contribute"
  2107. }
  2108. },
  2109. {
  2110. "name": "drupal/better_messages",
  2111. "version": "2.0.0-alpha2",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://git.drupalcode.org/project/better_messages.git",
  2115. "reference": "2.0.0-alpha2"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2120. "reference": "2.0.0-alpha2",
  2121. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2122. },
  2123. "require": {
  2124. "drupal/core": "^8 || ^9"
  2125. },
  2126. "type": "drupal-module",
  2127. "extra": {
  2128. "drupal": {
  2129. "version": "2.0.0-alpha2",
  2130. "datestamp": "1644241962",
  2131. "security-coverage": {
  2132. "status": "not-covered",
  2133. "message": "Alpha releases are not covered by Drupal security advisories."
  2134. }
  2135. }
  2136. },
  2137. "notification-url": "https://packages.drupal.org/8/downloads",
  2138. "license": [
  2139. "GPL-2.0-or-later"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "bucefal91",
  2144. "homepage": "https://www.drupal.org/user/504128"
  2145. },
  2146. {
  2147. "name": "le72",
  2148. "homepage": "https://www.drupal.org/user/1866896"
  2149. },
  2150. {
  2151. "name": "mohammed j. razem",
  2152. "homepage": "https://www.drupal.org/user/255384"
  2153. },
  2154. {
  2155. "name": "usingsession",
  2156. "homepage": "https://www.drupal.org/user/3582050"
  2157. }
  2158. ],
  2159. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2160. "homepage": "https://www.drupal.org/project/better_messages",
  2161. "support": {
  2162. "source": "https://git.drupalcode.org/project/better_messages"
  2163. }
  2164. },
  2165. {
  2166. "name": "drupal/bulkdelete",
  2167. "version": "dev-1.x",
  2168. "source": {
  2169. "type": "git",
  2170. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2171. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2172. },
  2173. "require": {
  2174. "drupal/core": "^8.7.7 || ^9 || ^10"
  2175. },
  2176. "type": "drupal-module",
  2177. "extra": {
  2178. "branch-alias": {
  2179. "dev-1.x": "1.x-dev"
  2180. },
  2181. "drupal": {
  2182. "version": "8.x-1.x-dev",
  2183. "datestamp": "1655322426",
  2184. "security-coverage": {
  2185. "status": "not-covered",
  2186. "message": "Dev releases are not covered by Drupal security advisories."
  2187. }
  2188. }
  2189. },
  2190. "notification-url": "https://packages.drupal.org/8/downloads",
  2191. "license": [
  2192. "GPL-2.0-or-later"
  2193. ],
  2194. "authors": [
  2195. {
  2196. "name": "Kars-T",
  2197. "homepage": "https://www.drupal.org/user/224499"
  2198. },
  2199. {
  2200. "name": "Rahul Seth",
  2201. "homepage": "https://www.drupal.org/user/2694359"
  2202. },
  2203. {
  2204. "name": "adriancid",
  2205. "homepage": "https://www.drupal.org/user/1962106"
  2206. },
  2207. {
  2208. "name": "robertDouglass",
  2209. "homepage": "https://www.drupal.org/user/5449"
  2210. }
  2211. ],
  2212. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2213. "homepage": "https://www.drupal.org/project/bulkdelete",
  2214. "support": {
  2215. "source": "https://git.drupalcode.org/project/bulkdelete"
  2216. }
  2217. },
  2218. {
  2219. "name": "drupal/color_field",
  2220. "version": "2.5.0",
  2221. "source": {
  2222. "type": "git",
  2223. "url": "https://git.drupalcode.org/project/color_field.git",
  2224. "reference": "8.x-2.5"
  2225. },
  2226. "dist": {
  2227. "type": "zip",
  2228. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.5.zip",
  2229. "reference": "8.x-2.5",
  2230. "shasum": "9b0d299cb24d3cb21c7fb6a6a08d32ae5aed8652"
  2231. },
  2232. "require": {
  2233. "drupal/core": "^8 || ^9"
  2234. },
  2235. "require-dev": {
  2236. "drupal/core-recommended": "*",
  2237. "drupal/token": "~1.3"
  2238. },
  2239. "suggest": {
  2240. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2241. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2242. },
  2243. "type": "drupal-module",
  2244. "extra": {
  2245. "drupal": {
  2246. "version": "8.x-2.5",
  2247. "datestamp": "1632938098",
  2248. "security-coverage": {
  2249. "status": "covered",
  2250. "message": "Covered by Drupal's security advisory policy"
  2251. }
  2252. }
  2253. },
  2254. "notification-url": "https://packages.drupal.org/8/downloads",
  2255. "license": [
  2256. "GPL-2.0-or-later"
  2257. ],
  2258. "authors": [
  2259. {
  2260. "name": "targoo",
  2261. "homepage": "https://www.drupal.org/user/431910",
  2262. "role": "Maintainer"
  2263. },
  2264. {
  2265. "name": "Nick Wilde",
  2266. "homepage": "https://www.drupal.org/user/nickwilde",
  2267. "role": "Maintainer"
  2268. },
  2269. {
  2270. "name": "targoo",
  2271. "homepage": "https://www.drupal.org/user/431910"
  2272. }
  2273. ],
  2274. "description": "Provides a color field type to store the color value and opacity",
  2275. "homepage": "https://www.drupal.org/project/color_field",
  2276. "support": {
  2277. "source": "https://git.drupalcode.org/project/color_field",
  2278. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2279. }
  2280. },
  2281. {
  2282. "name": "drupal/config_devel",
  2283. "version": "1.8.0",
  2284. "source": {
  2285. "type": "git",
  2286. "url": "https://git.drupalcode.org/project/config_devel.git",
  2287. "reference": "8.x-1.8"
  2288. },
  2289. "dist": {
  2290. "type": "zip",
  2291. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2292. "reference": "8.x-1.8",
  2293. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2294. },
  2295. "require": {
  2296. "drupal/core": "^8 || ^9"
  2297. },
  2298. "type": "drupal-module",
  2299. "extra": {
  2300. "drupal": {
  2301. "version": "8.x-1.8",
  2302. "datestamp": "1609324318",
  2303. "security-coverage": {
  2304. "status": "covered",
  2305. "message": "Covered by Drupal's security advisory policy"
  2306. }
  2307. }
  2308. },
  2309. "notification-url": "https://packages.drupal.org/8/downloads",
  2310. "license": [
  2311. "GPL-2.0+"
  2312. ],
  2313. "authors": [
  2314. {
  2315. "name": "alexpott",
  2316. "homepage": "https://www.drupal.org/user/157725"
  2317. },
  2318. {
  2319. "name": "benjy",
  2320. "homepage": "https://www.drupal.org/user/1852732"
  2321. },
  2322. {
  2323. "name": "chx",
  2324. "homepage": "https://www.drupal.org/user/9446"
  2325. },
  2326. {
  2327. "name": "joachim",
  2328. "homepage": "https://www.drupal.org/user/107701"
  2329. },
  2330. {
  2331. "name": "vijaycs85",
  2332. "homepage": "https://www.drupal.org/user/93488"
  2333. }
  2334. ],
  2335. "description": "Helps developers work with configuration.",
  2336. "homepage": "https://www.drupal.org/project/config_devel",
  2337. "support": {
  2338. "source": "https://git.drupalcode.org/project/config_devel"
  2339. }
  2340. },
  2341. {
  2342. "name": "drupal/config_filter",
  2343. "version": "1.12.0",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://git.drupalcode.org/project/config_filter.git",
  2347. "reference": "8.x-1.12"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2352. "reference": "8.x-1.12",
  2353. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2354. },
  2355. "require": {
  2356. "drupal/core": "^8.8 || ^9 || ^10"
  2357. },
  2358. "suggest": {
  2359. "drupal/config_split": "Split site configuration for different environments."
  2360. },
  2361. "type": "drupal-module",
  2362. "extra": {
  2363. "drupal": {
  2364. "version": "8.x-1.12",
  2365. "datestamp": "1698308496",
  2366. "security-coverage": {
  2367. "status": "covered",
  2368. "message": "Covered by Drupal's security advisory policy"
  2369. }
  2370. }
  2371. },
  2372. "notification-url": "https://packages.drupal.org/8/downloads",
  2373. "license": [
  2374. "GPL-2.0-or-later"
  2375. ],
  2376. "authors": [
  2377. {
  2378. "name": "Fabian Bircher",
  2379. "homepage": "https://www.drupal.org/u/bircher",
  2380. "email": "opensource@fabianbircher.com",
  2381. "role": "Maintainer"
  2382. },
  2383. {
  2384. "name": "Nuvole Web",
  2385. "homepage": "http://nuvole.org",
  2386. "email": "info@nuvole.org",
  2387. "role": "Maintainer"
  2388. },
  2389. {
  2390. "name": "pescetti",
  2391. "homepage": "https://www.drupal.org/user/436244"
  2392. }
  2393. ],
  2394. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2395. "homepage": "https://www.drupal.org/project/config_filter",
  2396. "keywords": [
  2397. "Drupal",
  2398. "configuration",
  2399. "configuration management"
  2400. ],
  2401. "support": {
  2402. "source": "https://git.drupalcode.org/project/config_filter",
  2403. "issues": "https://www.drupal.org/project/issues/config_filter",
  2404. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2405. }
  2406. },
  2407. {
  2408. "name": "drupal/config_ignore",
  2409. "version": "3.3.0",
  2410. "source": {
  2411. "type": "git",
  2412. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2413. "reference": "8.x-3.3"
  2414. },
  2415. "dist": {
  2416. "type": "zip",
  2417. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2418. "reference": "8.x-3.3",
  2419. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2420. },
  2421. "require": {
  2422. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2423. },
  2424. "require-dev": {
  2425. "drupal/config_filter": "^1.8||^2.2",
  2426. "drush/drush": "^10 || ^11 || ^12"
  2427. },
  2428. "type": "drupal-module",
  2429. "extra": {
  2430. "drupal": {
  2431. "version": "8.x-3.3",
  2432. "datestamp": "1713299496",
  2433. "security-coverage": {
  2434. "status": "covered",
  2435. "message": "Covered by Drupal's security advisory policy"
  2436. }
  2437. }
  2438. },
  2439. "notification-url": "https://packages.drupal.org/8/downloads",
  2440. "license": [
  2441. "GPL-2.0-or-later"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "Tommy Lynge Jørgensen",
  2446. "homepage": "https://www.drupal.org/u/tlyngej",
  2447. "email": "tlyngej@gmail.com",
  2448. "role": "Maintainer"
  2449. },
  2450. {
  2451. "name": "Fabian Bircher",
  2452. "homepage": "https://www.drupal.org/u/bircher",
  2453. "role": "Maintainer"
  2454. },
  2455. {
  2456. "name": "tlyngej",
  2457. "homepage": "https://www.drupal.org/user/413139"
  2458. }
  2459. ],
  2460. "description": "Ignore certain configuration during import and export.",
  2461. "homepage": "http://drupal.org/project/config_ignore",
  2462. "support": {
  2463. "source": "https://git.drupalcode.org/project/config_ignore",
  2464. "issues": "http://drupal.org/project/config_ignore"
  2465. }
  2466. },
  2467. {
  2468. "name": "drupal/config_update",
  2469. "version": "1.7.0",
  2470. "source": {
  2471. "type": "git",
  2472. "url": "https://git.drupalcode.org/project/config_update.git",
  2473. "reference": "8.x-1.7"
  2474. },
  2475. "dist": {
  2476. "type": "zip",
  2477. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2478. "reference": "8.x-1.7",
  2479. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2480. },
  2481. "require": {
  2482. "drupal/core": "^8 || ^9"
  2483. },
  2484. "type": "drupal-module",
  2485. "extra": {
  2486. "drupal": {
  2487. "version": "8.x-1.7",
  2488. "datestamp": "1586355587",
  2489. "security-coverage": {
  2490. "status": "covered",
  2491. "message": "Covered by Drupal's security advisory policy"
  2492. }
  2493. }
  2494. },
  2495. "notification-url": "https://packages.drupal.org/8/downloads",
  2496. "license": [
  2497. "GPL-2.0-or-later"
  2498. ],
  2499. "authors": [
  2500. {
  2501. "name": "codebymikey",
  2502. "homepage": "https://www.drupal.org/user/3573206"
  2503. },
  2504. {
  2505. "name": "pasqualle",
  2506. "homepage": "https://www.drupal.org/user/80733"
  2507. },
  2508. {
  2509. "name": "vishalkhode",
  2510. "homepage": "https://www.drupal.org/user/2439156"
  2511. }
  2512. ],
  2513. "description": "Provides basic revert and update functionality for other modules",
  2514. "homepage": "https://www.drupal.org/project/config_update",
  2515. "support": {
  2516. "source": "https://git.drupalcode.org/project/config_update"
  2517. }
  2518. },
  2519. {
  2520. "name": "drupal/context",
  2521. "version": "4.1.0",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://git.drupalcode.org/project/context.git",
  2525. "reference": "8.x-4.1"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2530. "reference": "8.x-4.1",
  2531. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2532. },
  2533. "require": {
  2534. "drupal/core": "^8.8 || ^9"
  2535. },
  2536. "type": "drupal-module",
  2537. "extra": {
  2538. "drupal": {
  2539. "version": "8.x-4.1",
  2540. "datestamp": "1628187190",
  2541. "security-coverage": {
  2542. "status": "covered",
  2543. "message": "Covered by Drupal's security advisory policy"
  2544. }
  2545. }
  2546. },
  2547. "notification-url": "https://packages.drupal.org/8/downloads",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "Christoffer Palm",
  2554. "homepage": "http://www.oddhill.se/",
  2555. "email": "christoffer.palm@oddhill.se",
  2556. "role": "Developer"
  2557. },
  2558. {
  2559. "name": "boshtian",
  2560. "homepage": "https://www.drupal.org/user/1773456"
  2561. },
  2562. {
  2563. "name": "colan",
  2564. "homepage": "https://www.drupal.org/user/58704"
  2565. },
  2566. {
  2567. "name": "emanaton",
  2568. "homepage": "https://www.drupal.org/user/120853"
  2569. },
  2570. {
  2571. "name": "febbraro",
  2572. "homepage": "https://www.drupal.org/user/43670"
  2573. },
  2574. {
  2575. "name": "fizk",
  2576. "homepage": "https://www.drupal.org/user/473174"
  2577. },
  2578. {
  2579. "name": "hass",
  2580. "homepage": "https://www.drupal.org/user/85918"
  2581. },
  2582. {
  2583. "name": "hefox",
  2584. "homepage": "https://www.drupal.org/user/426416"
  2585. },
  2586. {
  2587. "name": "jmiccolis",
  2588. "homepage": "https://www.drupal.org/user/31731"
  2589. },
  2590. {
  2591. "name": "Kristen Pol",
  2592. "homepage": "https://www.drupal.org/user/8389"
  2593. },
  2594. {
  2595. "name": "nedjo",
  2596. "homepage": "https://www.drupal.org/user/4481"
  2597. },
  2598. {
  2599. "name": "NormySan",
  2600. "homepage": "https://www.drupal.org/user/112352"
  2601. },
  2602. {
  2603. "name": "patricksettle",
  2604. "homepage": "https://www.drupal.org/user/26618"
  2605. },
  2606. {
  2607. "name": "paulocs",
  2608. "homepage": "https://www.drupal.org/user/3640109"
  2609. },
  2610. {
  2611. "name": "Steven Jones",
  2612. "homepage": "https://www.drupal.org/user/99644"
  2613. },
  2614. {
  2615. "name": "tekante",
  2616. "homepage": "https://www.drupal.org/user/640024"
  2617. },
  2618. {
  2619. "name": "yhahn",
  2620. "homepage": "https://www.drupal.org/user/264833"
  2621. }
  2622. ],
  2623. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2624. "homepage": "https://github.com/oddhill/context",
  2625. "keywords": [
  2626. "Drupal",
  2627. "block",
  2628. "conditions",
  2629. "context",
  2630. "visibility"
  2631. ],
  2632. "support": {
  2633. "source": "https://github.com/oddhill/context",
  2634. "issues": "https://github.com/oddhill/context/issues",
  2635. "docs": "https://github.com/oddhill/context"
  2636. }
  2637. },
  2638. {
  2639. "name": "drupal/core",
  2640. "version": "8.9.20",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/drupal/core.git",
  2644. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2649. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2650. "shasum": ""
  2651. },
  2652. "require": {
  2653. "asm89/stack-cors": "^1.1",
  2654. "composer/semver": "^1.0",
  2655. "doctrine/annotations": "^1.4",
  2656. "doctrine/common": "^2.7",
  2657. "easyrdf/easyrdf": "^0.9",
  2658. "egulias/email-validator": "^2.0",
  2659. "ext-date": "*",
  2660. "ext-dom": "*",
  2661. "ext-filter": "*",
  2662. "ext-gd": "*",
  2663. "ext-hash": "*",
  2664. "ext-json": "*",
  2665. "ext-pcre": "*",
  2666. "ext-pdo": "*",
  2667. "ext-session": "*",
  2668. "ext-simplexml": "*",
  2669. "ext-spl": "*",
  2670. "ext-tokenizer": "*",
  2671. "ext-xml": "*",
  2672. "guzzlehttp/guzzle": "^6.3",
  2673. "laminas/laminas-diactoros": "^1.8",
  2674. "laminas/laminas-feed": "^2.12",
  2675. "masterminds/html5": "^2.1",
  2676. "pear/archive_tar": "^1.4.14",
  2677. "php": "^7.0.8",
  2678. "psr/log": "^1.0",
  2679. "stack/builder": "^1.0",
  2680. "symfony-cmf/routing": "^1.4",
  2681. "symfony/class-loader": "~3.4.0",
  2682. "symfony/console": "~3.4.0",
  2683. "symfony/dependency-injection": "~3.4.26",
  2684. "symfony/event-dispatcher": "~3.4.0",
  2685. "symfony/http-foundation": "~3.4.35",
  2686. "symfony/http-kernel": "~3.4.14",
  2687. "symfony/polyfill-iconv": "^1.0",
  2688. "symfony/process": "~3.4.0",
  2689. "symfony/psr-http-message-bridge": "^1.1.2",
  2690. "symfony/routing": "~3.4.0",
  2691. "symfony/serializer": "~3.4.0",
  2692. "symfony/translation": "~3.4.0",
  2693. "symfony/validator": "~3.4.0",
  2694. "symfony/yaml": "~3.4.5",
  2695. "twig/twig": "^1.38.2",
  2696. "typo3/phar-stream-wrapper": "^3.1.3"
  2697. },
  2698. "conflict": {
  2699. "drupal/pathauto": "<1.6",
  2700. "drush/drush": "<8.1.10"
  2701. },
  2702. "replace": {
  2703. "drupal/action": "self.version",
  2704. "drupal/aggregator": "self.version",
  2705. "drupal/automated_cron": "self.version",
  2706. "drupal/ban": "self.version",
  2707. "drupal/bartik": "self.version",
  2708. "drupal/basic_auth": "self.version",
  2709. "drupal/big_pipe": "self.version",
  2710. "drupal/block": "self.version",
  2711. "drupal/block_content": "self.version",
  2712. "drupal/block_place": "self.version",
  2713. "drupal/book": "self.version",
  2714. "drupal/breakpoint": "self.version",
  2715. "drupal/ckeditor": "self.version",
  2716. "drupal/claro": "self.version",
  2717. "drupal/classy": "self.version",
  2718. "drupal/color": "self.version",
  2719. "drupal/comment": "self.version",
  2720. "drupal/config": "self.version",
  2721. "drupal/config_translation": "self.version",
  2722. "drupal/contact": "self.version",
  2723. "drupal/content_moderation": "self.version",
  2724. "drupal/content_translation": "self.version",
  2725. "drupal/contextual": "self.version",
  2726. "drupal/core-annotation": "self.version",
  2727. "drupal/core-assertion": "self.version",
  2728. "drupal/core-bridge": "self.version",
  2729. "drupal/core-class-finder": "self.version",
  2730. "drupal/core-datetime": "self.version",
  2731. "drupal/core-dependency-injection": "self.version",
  2732. "drupal/core-diff": "self.version",
  2733. "drupal/core-discovery": "self.version",
  2734. "drupal/core-event-dispatcher": "self.version",
  2735. "drupal/core-file-cache": "self.version",
  2736. "drupal/core-file-security": "self.version",
  2737. "drupal/core-filesystem": "self.version",
  2738. "drupal/core-gettext": "self.version",
  2739. "drupal/core-graph": "self.version",
  2740. "drupal/core-http-foundation": "self.version",
  2741. "drupal/core-php-storage": "self.version",
  2742. "drupal/core-plugin": "self.version",
  2743. "drupal/core-proxy-builder": "self.version",
  2744. "drupal/core-render": "self.version",
  2745. "drupal/core-serialization": "self.version",
  2746. "drupal/core-transliteration": "self.version",
  2747. "drupal/core-utility": "self.version",
  2748. "drupal/core-uuid": "self.version",
  2749. "drupal/core-version": "self.version",
  2750. "drupal/datetime": "self.version",
  2751. "drupal/datetime_range": "self.version",
  2752. "drupal/dblog": "self.version",
  2753. "drupal/dynamic_page_cache": "self.version",
  2754. "drupal/editor": "self.version",
  2755. "drupal/entity_reference": "self.version",
  2756. "drupal/field": "self.version",
  2757. "drupal/field_layout": "self.version",
  2758. "drupal/field_ui": "self.version",
  2759. "drupal/file": "self.version",
  2760. "drupal/filter": "self.version",
  2761. "drupal/forum": "self.version",
  2762. "drupal/hal": "self.version",
  2763. "drupal/help": "self.version",
  2764. "drupal/help_topics": "self.version",
  2765. "drupal/history": "self.version",
  2766. "drupal/image": "self.version",
  2767. "drupal/inline_form_errors": "self.version",
  2768. "drupal/jsonapi": "self.version",
  2769. "drupal/language": "self.version",
  2770. "drupal/layout_builder": "self.version",
  2771. "drupal/layout_discovery": "self.version",
  2772. "drupal/link": "self.version",
  2773. "drupal/locale": "self.version",
  2774. "drupal/media": "self.version",
  2775. "drupal/media_library": "self.version",
  2776. "drupal/menu_link_content": "self.version",
  2777. "drupal/menu_ui": "self.version",
  2778. "drupal/migrate": "self.version",
  2779. "drupal/migrate_drupal": "self.version",
  2780. "drupal/migrate_drupal_multilingual": "self.version",
  2781. "drupal/migrate_drupal_ui": "self.version",
  2782. "drupal/minimal": "self.version",
  2783. "drupal/node": "self.version",
  2784. "drupal/options": "self.version",
  2785. "drupal/page_cache": "self.version",
  2786. "drupal/path": "self.version",
  2787. "drupal/path_alias": "self.version",
  2788. "drupal/quickedit": "self.version",
  2789. "drupal/rdf": "self.version",
  2790. "drupal/responsive_image": "self.version",
  2791. "drupal/rest": "self.version",
  2792. "drupal/search": "self.version",
  2793. "drupal/serialization": "self.version",
  2794. "drupal/settings_tray": "self.version",
  2795. "drupal/seven": "self.version",
  2796. "drupal/shortcut": "self.version",
  2797. "drupal/simpletest": "self.version",
  2798. "drupal/standard": "self.version",
  2799. "drupal/stark": "self.version",
  2800. "drupal/statistics": "self.version",
  2801. "drupal/syslog": "self.version",
  2802. "drupal/system": "self.version",
  2803. "drupal/taxonomy": "self.version",
  2804. "drupal/telephone": "self.version",
  2805. "drupal/text": "self.version",
  2806. "drupal/toolbar": "self.version",
  2807. "drupal/tour": "self.version",
  2808. "drupal/tracker": "self.version",
  2809. "drupal/update": "self.version",
  2810. "drupal/user": "self.version",
  2811. "drupal/views": "self.version",
  2812. "drupal/views_ui": "self.version",
  2813. "drupal/workflows": "self.version",
  2814. "drupal/workspaces": "self.version"
  2815. },
  2816. "type": "drupal-core",
  2817. "extra": {
  2818. "drupal-scaffold": {
  2819. "file-mapping": {
  2820. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2821. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2822. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2823. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2824. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2825. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2826. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2827. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2828. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2829. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2830. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2831. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2832. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2833. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2834. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2835. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2836. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2837. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2838. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2839. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2840. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2841. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2842. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2843. }
  2844. }
  2845. },
  2846. "autoload": {
  2847. "psr-4": {
  2848. "Drupal\\Core\\": "lib/Drupal/Core",
  2849. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2850. "Drupal\\Component\\": "lib/Drupal/Component"
  2851. },
  2852. "classmap": [
  2853. "lib/Drupal.php",
  2854. "lib/Drupal/Component/Utility/Timer.php",
  2855. "lib/Drupal/Component/Utility/Unicode.php",
  2856. "lib/Drupal/Core/Database/Database.php",
  2857. "lib/Drupal/Core/DrupalKernel.php",
  2858. "lib/Drupal/Core/DrupalKernelInterface.php",
  2859. "lib/Drupal/Core/Site/Settings.php"
  2860. ]
  2861. },
  2862. "notification-url": "https://packagist.org/downloads/",
  2863. "license": [
  2864. "GPL-2.0-or-later"
  2865. ],
  2866. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2867. "support": {
  2868. "source": "https://github.com/drupal/core/tree/8.9.20"
  2869. },
  2870. "time": "2021-11-17T21:24:28+00:00"
  2871. },
  2872. {
  2873. "name": "drupal/core-composer-scaffold",
  2874. "version": "8.9.20",
  2875. "source": {
  2876. "type": "git",
  2877. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2878. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2879. },
  2880. "dist": {
  2881. "type": "zip",
  2882. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2883. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2884. "shasum": ""
  2885. },
  2886. "require": {
  2887. "composer-plugin-api": "^1 || ^2",
  2888. "php": ">=7.0.8"
  2889. },
  2890. "conflict": {
  2891. "drupal-composer/drupal-scaffold": "*"
  2892. },
  2893. "require-dev": {
  2894. "composer/composer": "^1.8@stable"
  2895. },
  2896. "type": "composer-plugin",
  2897. "extra": {
  2898. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2899. "branch-alias": {
  2900. "dev-master": "1.0.x-dev"
  2901. }
  2902. },
  2903. "autoload": {
  2904. "psr-4": {
  2905. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2906. }
  2907. },
  2908. "notification-url": "https://packagist.org/downloads/",
  2909. "license": [
  2910. "GPL-2.0-or-later"
  2911. ],
  2912. "description": "A flexible Composer project scaffold builder.",
  2913. "homepage": "https://www.drupal.org/project/drupal",
  2914. "keywords": [
  2915. "drupal"
  2916. ],
  2917. "support": {
  2918. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2919. },
  2920. "time": "2020-08-07T22:30:30+00:00"
  2921. },
  2922. {
  2923. "name": "drupal/core-project-message",
  2924. "version": "8.9.20",
  2925. "source": {
  2926. "type": "git",
  2927. "url": "https://github.com/drupal/core-project-message.git",
  2928. "reference": "3f8fa28128f1fef68ee0e6647011a543ef92be5b"
  2929. },
  2930. "dist": {
  2931. "type": "zip",
  2932. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/3f8fa28128f1fef68ee0e6647011a543ef92be5b",
  2933. "reference": "3f8fa28128f1fef68ee0e6647011a543ef92be5b",
  2934. "shasum": ""
  2935. },
  2936. "require": {
  2937. "composer-plugin-api": "^1.1 || ^2",
  2938. "php": ">=7.0.8"
  2939. },
  2940. "type": "composer-plugin",
  2941. "extra": {
  2942. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2943. },
  2944. "autoload": {
  2945. "psr-4": {
  2946. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2947. }
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "GPL-2.0-or-later"
  2952. ],
  2953. "description": "Adds a message after Composer installation.",
  2954. "homepage": "https://www.drupal.org/project/drupal",
  2955. "keywords": [
  2956. "drupal"
  2957. ],
  2958. "support": {
  2959. "source": "https://github.com/drupal/core-project-message/tree/8.9.4"
  2960. },
  2961. "time": "2020-08-02T22:04:49+00:00"
  2962. },
  2963. {
  2964. "name": "drupal/core-recommended",
  2965. "version": "8.9.20",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/drupal/core-recommended.git",
  2969. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2974. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2975. "shasum": ""
  2976. },
  2977. "require": {
  2978. "asm89/stack-cors": "1.3.0",
  2979. "composer/semver": "1.5.1",
  2980. "doctrine/annotations": "v1.4.0",
  2981. "doctrine/cache": "v1.6.2",
  2982. "doctrine/collections": "v1.4.0",
  2983. "doctrine/common": "v2.7.3",
  2984. "doctrine/inflector": "v1.2.0",
  2985. "doctrine/lexer": "1.0.2",
  2986. "drupal/core": "8.9.20",
  2987. "easyrdf/easyrdf": "0.9.1",
  2988. "egulias/email-validator": "2.1.17",
  2989. "guzzlehttp/guzzle": "6.5.4",
  2990. "guzzlehttp/promises": "v1.3.1",
  2991. "guzzlehttp/psr7": "1.6.1",
  2992. "laminas/laminas-diactoros": "1.8.7p2",
  2993. "laminas/laminas-escaper": "2.6.1",
  2994. "laminas/laminas-feed": "2.12.2",
  2995. "laminas/laminas-stdlib": "3.2.1",
  2996. "laminas/laminas-zendframework-bridge": "1.0.4",
  2997. "masterminds/html5": "2.3.0",
  2998. "paragonie/random_compat": "v9.99.99",
  2999. "pear/archive_tar": "1.4.14",
  3000. "pear/console_getopt": "v1.4.3",
  3001. "pear/pear-core-minimal": "v1.10.10",
  3002. "pear/pear_exception": "v1.0.1",
  3003. "psr/container": "1.0.0",
  3004. "psr/http-message": "1.0.1",
  3005. "psr/log": "1.1.3",
  3006. "ralouphie/getallheaders": "3.0.3",
  3007. "stack/builder": "v1.0.5",
  3008. "symfony-cmf/routing": "1.4.1",
  3009. "symfony/class-loader": "v3.4.41",
  3010. "symfony/console": "v3.4.41",
  3011. "symfony/debug": "v3.4.41",
  3012. "symfony/dependency-injection": "v3.4.41",
  3013. "symfony/event-dispatcher": "v3.4.41",
  3014. "symfony/http-foundation": "v3.4.41",
  3015. "symfony/http-kernel": "v3.4.44",
  3016. "symfony/polyfill-ctype": "v1.17.0",
  3017. "symfony/polyfill-iconv": "v1.17.0",
  3018. "symfony/polyfill-intl-idn": "v1.17.0",
  3019. "symfony/polyfill-mbstring": "v1.17.0",
  3020. "symfony/polyfill-php56": "v1.17.0",
  3021. "symfony/polyfill-php70": "v1.17.0",
  3022. "symfony/polyfill-php72": "v1.17.0",
  3023. "symfony/polyfill-util": "v1.17.0",
  3024. "symfony/process": "v3.4.41",
  3025. "symfony/psr-http-message-bridge": "v1.1.2",
  3026. "symfony/routing": "v3.4.41",
  3027. "symfony/serializer": "v3.4.41",
  3028. "symfony/translation": "v3.4.41",
  3029. "symfony/validator": "v3.4.41",
  3030. "symfony/yaml": "v3.4.41",
  3031. "twig/twig": "v1.42.5",
  3032. "typo3/phar-stream-wrapper": "v3.1.4"
  3033. },
  3034. "conflict": {
  3035. "webflo/drupal-core-strict": "*"
  3036. },
  3037. "type": "metapackage",
  3038. "notification-url": "https://packagist.org/downloads/",
  3039. "license": [
  3040. "GPL-2.0-or-later"
  3041. ],
  3042. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3043. "support": {
  3044. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  3045. },
  3046. "time": "2021-11-17T21:24:28+00:00"
  3047. },
  3048. {
  3049. "name": "drupal/ctools",
  3050. "version": "3.9.0",
  3051. "source": {
  3052. "type": "git",
  3053. "url": "https://git.drupalcode.org/project/ctools.git",
  3054. "reference": "8.x-3.9"
  3055. },
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  3059. "reference": "8.x-3.9",
  3060. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  3061. },
  3062. "require": {
  3063. "drupal/core": "^8.8 || ^9"
  3064. },
  3065. "type": "drupal-module",
  3066. "extra": {
  3067. "drupal": {
  3068. "version": "8.x-3.9",
  3069. "datestamp": "1658864511",
  3070. "security-coverage": {
  3071. "status": "covered",
  3072. "message": "Covered by Drupal's security advisory policy"
  3073. }
  3074. },
  3075. "branch-alias": {
  3076. "dev-8.x-3.x": "3.x-dev"
  3077. }
  3078. },
  3079. "notification-url": "https://packages.drupal.org/8/downloads",
  3080. "license": [
  3081. "GPL-2.0-or-later"
  3082. ],
  3083. "authors": [
  3084. {
  3085. "name": "Kris Vanderwater (EclipseGc)",
  3086. "homepage": "https://www.drupal.org/u/eclipsegc",
  3087. "role": "Maintainer"
  3088. },
  3089. {
  3090. "name": "Jakob Perry (japerry)",
  3091. "homepage": "https://www.drupal.org/u/japerry",
  3092. "role": "Maintainer"
  3093. },
  3094. {
  3095. "name": "Tim Plunkett (tim.plunkett)",
  3096. "homepage": "https://www.drupal.org/u/timplunkett",
  3097. "role": "Maintainer"
  3098. },
  3099. {
  3100. "name": "James Gilliland (neclimdul)",
  3101. "homepage": "https://www.drupal.org/u/neclimdul",
  3102. "role": "Maintainer"
  3103. },
  3104. {
  3105. "name": "Daniel Wehner (dawehner)",
  3106. "homepage": "https://www.drupal.org/u/dawehner",
  3107. "role": "Maintainer"
  3108. },
  3109. {
  3110. "name": "joelpittet",
  3111. "homepage": "https://www.drupal.org/user/160302"
  3112. },
  3113. {
  3114. "name": "merlinofchaos",
  3115. "homepage": "https://www.drupal.org/user/26979"
  3116. },
  3117. {
  3118. "name": "neclimdul",
  3119. "homepage": "https://www.drupal.org/user/48673"
  3120. },
  3121. {
  3122. "name": "sdboyer",
  3123. "homepage": "https://www.drupal.org/user/146719"
  3124. },
  3125. {
  3126. "name": "sun",
  3127. "homepage": "https://www.drupal.org/user/54136"
  3128. },
  3129. {
  3130. "name": "tim.plunkett",
  3131. "homepage": "https://www.drupal.org/user/241634"
  3132. }
  3133. ],
  3134. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3135. "homepage": "https://www.drupal.org/project/ctools",
  3136. "support": {
  3137. "source": "https://git.drupalcode.org/project/ctools",
  3138. "issues": "https://www.drupal.org/project/issues/ctools"
  3139. }
  3140. },
  3141. {
  3142. "name": "drupal/date_range_formatter",
  3143. "version": "4.0.2",
  3144. "source": {
  3145. "type": "git",
  3146. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3147. "reference": "4.0.2"
  3148. },
  3149. "dist": {
  3150. "type": "zip",
  3151. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3152. "reference": "4.0.2",
  3153. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3154. },
  3155. "require": {
  3156. "drupal/core": "^8 || ^9 || ^10"
  3157. },
  3158. "type": "drupal-module",
  3159. "extra": {
  3160. "drupal": {
  3161. "version": "4.0.2",
  3162. "datestamp": "1703156621",
  3163. "security-coverage": {
  3164. "status": "covered",
  3165. "message": "Covered by Drupal's security advisory policy"
  3166. }
  3167. }
  3168. },
  3169. "notification-url": "https://packages.drupal.org/8/downloads",
  3170. "license": [
  3171. "GPL-2.0-or-later"
  3172. ],
  3173. "authors": [
  3174. {
  3175. "name": "maximpodorov",
  3176. "homepage": "https://www.drupal.org/user/515310"
  3177. },
  3178. {
  3179. "name": "sudishth",
  3180. "homepage": "https://www.drupal.org/user/1440562"
  3181. }
  3182. ],
  3183. "description": "Formats date ranges.",
  3184. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3185. "support": {
  3186. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3187. }
  3188. },
  3189. {
  3190. "name": "drupal/devel",
  3191. "version": "4.2.1",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://git.drupalcode.org/project/devel.git",
  3195. "reference": "4.2.1"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3200. "reference": "4.2.1",
  3201. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3202. },
  3203. "require": {
  3204. "doctrine/common": "^2.7",
  3205. "drupal/core": "^8.8 || ^9",
  3206. "symfony/var-dumper": "^4 || ^5"
  3207. },
  3208. "conflict": {
  3209. "kint-php/kint": "<3"
  3210. },
  3211. "require-dev": {
  3212. "drush/drush": "^10"
  3213. },
  3214. "suggest": {
  3215. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3216. },
  3217. "type": "drupal-module",
  3218. "extra": {
  3219. "drupal": {
  3220. "version": "4.2.1",
  3221. "datestamp": "1664317444",
  3222. "security-coverage": {
  3223. "status": "covered",
  3224. "message": "Covered by Drupal's security advisory policy"
  3225. }
  3226. },
  3227. "drush": {
  3228. "services": {
  3229. "drush.services.yml": "^9 || ^10"
  3230. }
  3231. }
  3232. },
  3233. "notification-url": "https://packages.drupal.org/8/downloads",
  3234. "license": [
  3235. "GPL-2.0-or-later"
  3236. ],
  3237. "authors": [
  3238. {
  3239. "name": "moshe weitzman",
  3240. "homepage": "https://www.drupal.org/user/23"
  3241. }
  3242. ],
  3243. "description": "Various blocks, pages, and functions for developers.",
  3244. "homepage": "https://www.drupal.org/project/devel",
  3245. "support": {
  3246. "source": "https://gitlab.com/drupalspoons/devel",
  3247. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3248. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3249. }
  3250. },
  3251. {
  3252. "name": "drupal/domain",
  3253. "version": "1.0.0-beta8",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://git.drupalcode.org/project/domain.git",
  3257. "reference": "8.x-1.0-beta8"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3262. "reference": "8.x-1.0-beta8",
  3263. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3264. },
  3265. "require": {
  3266. "drupal/core": "^8 || ^9"
  3267. },
  3268. "require-dev": {
  3269. "drupal/domain_access": "*",
  3270. "drupal/domain_config": "*"
  3271. },
  3272. "type": "drupal-module",
  3273. "extra": {
  3274. "drupal": {
  3275. "version": "8.x-1.0-beta8",
  3276. "datestamp": "1677511311",
  3277. "security-coverage": {
  3278. "status": "not-covered",
  3279. "message": "Beta releases are not covered by Drupal security advisories."
  3280. }
  3281. }
  3282. },
  3283. "notification-url": "https://packages.drupal.org/8/downloads",
  3284. "license": [
  3285. "GPL-2.0-or-later"
  3286. ],
  3287. "authors": [
  3288. {
  3289. "name": "agentrickard",
  3290. "homepage": "https://www.drupal.org/user/20975"
  3291. },
  3292. {
  3293. "name": "nonsie",
  3294. "homepage": "https://www.drupal.org/user/29899"
  3295. },
  3296. {
  3297. "name": "webflo",
  3298. "homepage": "https://www.drupal.org/user/254778"
  3299. }
  3300. ],
  3301. "description": "Creates domain records within a Drupal installation.",
  3302. "homepage": "https://www.drupal.org/project/domain",
  3303. "support": {
  3304. "source": "https://git.drupalcode.org/project/domain"
  3305. }
  3306. },
  3307. {
  3308. "name": "drupal/domain_config",
  3309. "version": "1.0.0-beta8",
  3310. "require": {
  3311. "drupal/core": "^8 || ^9",
  3312. "drupal/domain": "*"
  3313. },
  3314. "type": "metapackage",
  3315. "extra": {
  3316. "drupal": {
  3317. "version": "8.x-1.0-beta8",
  3318. "datestamp": "1677511311",
  3319. "security-coverage": {
  3320. "status": "not-covered",
  3321. "message": "Beta releases are not covered by Drupal security advisories."
  3322. }
  3323. }
  3324. },
  3325. "notification-url": "https://packages.drupal.org/8/downloads",
  3326. "license": [
  3327. "GPL-2.0-or-later"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "agentrickard",
  3332. "homepage": "https://www.drupal.org/user/20975"
  3333. },
  3334. {
  3335. "name": "nonsie",
  3336. "homepage": "https://www.drupal.org/user/29899"
  3337. },
  3338. {
  3339. "name": "webflo",
  3340. "homepage": "https://www.drupal.org/user/254778"
  3341. }
  3342. ],
  3343. "description": "Allows domain specific configuration.",
  3344. "homepage": "https://www.drupal.org/project/domain",
  3345. "support": {
  3346. "source": "https://git.drupalcode.org/project/domain"
  3347. }
  3348. },
  3349. {
  3350. "name": "drupal/domain_site_settings",
  3351. "version": "1.6.0",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3355. "reference": "8.x-1.6"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3360. "reference": "8.x-1.6",
  3361. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3362. },
  3363. "require": {
  3364. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3365. "drupal/domain": "^1.0 || ^2.0",
  3366. "drupal/domain_config": "*"
  3367. },
  3368. "type": "drupal-module",
  3369. "extra": {
  3370. "drupal": {
  3371. "version": "8.x-1.6",
  3372. "datestamp": "1726238712",
  3373. "security-coverage": {
  3374. "status": "covered",
  3375. "message": "Covered by Drupal's security advisory policy"
  3376. }
  3377. }
  3378. },
  3379. "notification-url": "https://packages.drupal.org/8/downloads",
  3380. "license": [
  3381. "GPL-2.0+"
  3382. ],
  3383. "authors": [
  3384. {
  3385. "name": "aloknarwaria",
  3386. "homepage": "https://www.drupal.org/user/906640"
  3387. },
  3388. {
  3389. "name": "jeroent",
  3390. "homepage": "https://www.drupal.org/user/2228934"
  3391. },
  3392. {
  3393. "name": "malaynayak",
  3394. "homepage": "https://www.drupal.org/user/3529755"
  3395. }
  3396. ],
  3397. "description": "Basic Site Setting for Domains.",
  3398. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3399. "keywords": [
  3400. "Drupal"
  3401. ],
  3402. "support": {
  3403. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3404. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3405. }
  3406. },
  3407. {
  3408. "name": "drupal/email_registration",
  3409. "version": "1.1.0",
  3410. "source": {
  3411. "type": "git",
  3412. "url": "https://git.drupalcode.org/project/email_registration.git",
  3413. "reference": "8.x-1.1"
  3414. },
  3415. "dist": {
  3416. "type": "zip",
  3417. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3418. "reference": "8.x-1.1",
  3419. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3420. },
  3421. "require": {
  3422. "drupal/core": "^8.7.7 || ^9"
  3423. },
  3424. "conflict": {
  3425. "drupal/commerce": "<2.12"
  3426. },
  3427. "require-dev": {
  3428. "drupal/commerce": "^2.0"
  3429. },
  3430. "type": "drupal-module",
  3431. "extra": {
  3432. "drupal": {
  3433. "version": "8.x-1.1",
  3434. "datestamp": "1592317072",
  3435. "security-coverage": {
  3436. "status": "covered",
  3437. "message": "Covered by Drupal's security advisory policy"
  3438. }
  3439. }
  3440. },
  3441. "notification-url": "https://packages.drupal.org/8/downloads",
  3442. "license": [
  3443. "GPL-2.0-or-later"
  3444. ],
  3445. "authors": [
  3446. {
  3447. "name": "Greg Knaddison (greggles)",
  3448. "homepage": "https://www.drupal.org/u/greggles",
  3449. "role": "Maintainer"
  3450. },
  3451. {
  3452. "name": "Andrey Postnikov (andypost)",
  3453. "homepage": "https://www.drupal.org/u/andypost",
  3454. "role": "Maintainer"
  3455. },
  3456. {
  3457. "name": "Chris Herberte",
  3458. "homepage": "https://www.drupal.org/u/chris-herberte",
  3459. "role": "Maintainer"
  3460. },
  3461. {
  3462. "name": "Moshe Weitzman (moshe weitzman)",
  3463. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3464. "role": "Maintainer"
  3465. },
  3466. {
  3467. "name": "Grevil",
  3468. "homepage": "https://www.drupal.org/user/3668491"
  3469. },
  3470. {
  3471. "name": "moshe weitzman",
  3472. "homepage": "https://www.drupal.org/user/23"
  3473. }
  3474. ],
  3475. "description": "Allows users to register with an email address as their username.",
  3476. "homepage": "https://www.drupal.org/project/email_registration",
  3477. "support": {
  3478. "source": "https://git.drupalcode.org/project/email_registration",
  3479. "issues": "http://drupal.org/project/issues/email_registration"
  3480. }
  3481. },
  3482. {
  3483. "name": "drupal/entity",
  3484. "version": "1.3.0",
  3485. "source": {
  3486. "type": "git",
  3487. "url": "https://git.drupalcode.org/project/entity.git",
  3488. "reference": "8.x-1.3"
  3489. },
  3490. "dist": {
  3491. "type": "zip",
  3492. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3493. "reference": "8.x-1.3",
  3494. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3495. },
  3496. "require": {
  3497. "drupal/core": "^8.8.2 || ^9"
  3498. },
  3499. "type": "drupal-module",
  3500. "extra": {
  3501. "drupal": {
  3502. "version": "8.x-1.3",
  3503. "datestamp": "1646324539",
  3504. "security-coverage": {
  3505. "status": "covered",
  3506. "message": "Covered by Drupal's security advisory policy"
  3507. }
  3508. }
  3509. },
  3510. "notification-url": "https://packages.drupal.org/8/downloads",
  3511. "license": [
  3512. "GPL-2.0-or-later"
  3513. ],
  3514. "authors": [
  3515. {
  3516. "name": "berdir",
  3517. "homepage": "https://www.drupal.org/user/214652"
  3518. },
  3519. {
  3520. "name": "bojanz",
  3521. "homepage": "https://www.drupal.org/user/86106"
  3522. },
  3523. {
  3524. "name": "dawehner",
  3525. "homepage": "https://www.drupal.org/user/99340"
  3526. },
  3527. {
  3528. "name": "dixon_",
  3529. "homepage": "https://www.drupal.org/user/239911"
  3530. },
  3531. {
  3532. "name": "fago",
  3533. "homepage": "https://www.drupal.org/user/16747"
  3534. },
  3535. {
  3536. "name": "mglaman",
  3537. "homepage": "https://www.drupal.org/user/2416470"
  3538. },
  3539. {
  3540. "name": "TR",
  3541. "homepage": "https://www.drupal.org/user/202830"
  3542. }
  3543. ],
  3544. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3545. "homepage": "https://www.drupal.org/project/entity",
  3546. "support": {
  3547. "source": "https://git.drupalcode.org/project/entity",
  3548. "issues": "https://www.drupal.org/project/issues/entity"
  3549. }
  3550. },
  3551. {
  3552. "name": "drupal/features",
  3553. "version": "3.12.0",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://git.drupalcode.org/project/features.git",
  3557. "reference": "8.x-3.12"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.12.zip",
  3562. "reference": "8.x-3.12",
  3563. "shasum": "f28d6e7d3340e32666a3e8ae515ed746dbe86b98"
  3564. },
  3565. "require": {
  3566. "drupal/config_update": "^1.4",
  3567. "drupal/core": "^8.8 || ^9"
  3568. },
  3569. "type": "drupal-module",
  3570. "extra": {
  3571. "drupal": {
  3572. "version": "8.x-3.12",
  3573. "datestamp": "1612830531",
  3574. "security-coverage": {
  3575. "status": "covered",
  3576. "message": "Covered by Drupal's security advisory policy"
  3577. }
  3578. },
  3579. "drush": {
  3580. "services": {
  3581. "drush.services.yml": "^9 || ^10"
  3582. }
  3583. }
  3584. },
  3585. "notification-url": "https://packages.drupal.org/8/downloads",
  3586. "license": [
  3587. "GPL-2.0-or-later"
  3588. ],
  3589. "authors": [
  3590. {
  3591. "name": "Dave Reid",
  3592. "homepage": "https://www.drupal.org/user/53892"
  3593. },
  3594. {
  3595. "name": "dawehner",
  3596. "homepage": "https://www.drupal.org/user/99340"
  3597. },
  3598. {
  3599. "name": "donquixote",
  3600. "homepage": "https://www.drupal.org/user/459338"
  3601. },
  3602. {
  3603. "name": "e2thex",
  3604. "homepage": "https://www.drupal.org/user/189123"
  3605. },
  3606. {
  3607. "name": "febbraro",
  3608. "homepage": "https://www.drupal.org/user/43670"
  3609. },
  3610. {
  3611. "name": "flocondetoile",
  3612. "homepage": "https://www.drupal.org/user/2006064"
  3613. },
  3614. {
  3615. "name": "jmiccolis",
  3616. "homepage": "https://www.drupal.org/user/31731"
  3617. },
  3618. {
  3619. "name": "joseph.olstad",
  3620. "homepage": "https://www.drupal.org/user/1321830"
  3621. },
  3622. {
  3623. "name": "matthand",
  3624. "homepage": "https://www.drupal.org/user/171527"
  3625. },
  3626. {
  3627. "name": "mpotter",
  3628. "homepage": "https://www.drupal.org/user/616192"
  3629. }
  3630. ],
  3631. "description": "Enables administrators to package configuration into modules",
  3632. "homepage": "https://www.drupal.org/project/features",
  3633. "support": {
  3634. "source": "https://git.drupalcode.org/project/features"
  3635. }
  3636. },
  3637. {
  3638. "name": "drupal/field_group",
  3639. "version": "3.3.0",
  3640. "source": {
  3641. "type": "git",
  3642. "url": "https://git.drupalcode.org/project/field_group.git",
  3643. "reference": "8.x-3.3"
  3644. },
  3645. "dist": {
  3646. "type": "zip",
  3647. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  3648. "reference": "8.x-3.3",
  3649. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  3650. },
  3651. "require": {
  3652. "drupal/core": "^8.8 || ^9"
  3653. },
  3654. "require-dev": {
  3655. "drupal/jquery_ui_accordion": "^1.0"
  3656. },
  3657. "type": "drupal-module",
  3658. "extra": {
  3659. "drupal": {
  3660. "version": "8.x-3.3",
  3661. "datestamp": "1663516404",
  3662. "security-coverage": {
  3663. "status": "covered",
  3664. "message": "Covered by Drupal's security advisory policy"
  3665. }
  3666. }
  3667. },
  3668. "notification-url": "https://packages.drupal.org/8/downloads",
  3669. "license": [
  3670. "GPL-2.0-or-later"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "anybody",
  3675. "homepage": "https://www.drupal.org/user/291091"
  3676. },
  3677. {
  3678. "name": "grevil",
  3679. "homepage": "https://www.drupal.org/user/3668491"
  3680. },
  3681. {
  3682. "name": "hydra",
  3683. "homepage": "https://www.drupal.org/user/647364"
  3684. },
  3685. {
  3686. "name": "joevagyok",
  3687. "homepage": "https://www.drupal.org/user/2876343"
  3688. },
  3689. {
  3690. "name": "jyve",
  3691. "homepage": "https://www.drupal.org/user/591438"
  3692. },
  3693. {
  3694. "name": "nils.destoop",
  3695. "homepage": "https://www.drupal.org/user/361625"
  3696. },
  3697. {
  3698. "name": "Stalski",
  3699. "homepage": "https://www.drupal.org/user/322618"
  3700. },
  3701. {
  3702. "name": "swentel",
  3703. "homepage": "https://www.drupal.org/user/107403"
  3704. }
  3705. ],
  3706. "description": "Provides the field_group module.",
  3707. "homepage": "https://www.drupal.org/project/field_group",
  3708. "support": {
  3709. "source": "https://git.drupalcode.org/project/field_group",
  3710. "issues": "https://www.drupal.org/project/issues/field_group"
  3711. }
  3712. },
  3713. {
  3714. "name": "drupal/filefield_sources",
  3715. "version": "1.0.0-alpha5",
  3716. "source": {
  3717. "type": "git",
  3718. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3719. "reference": "8.x-1.0-alpha5"
  3720. },
  3721. "dist": {
  3722. "type": "zip",
  3723. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3724. "reference": "8.x-1.0-alpha5",
  3725. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3726. },
  3727. "require": {
  3728. "drupal/core": "^8 || ^9"
  3729. },
  3730. "require-dev": {
  3731. "drupal/imce": "^2.3"
  3732. },
  3733. "type": "drupal-module",
  3734. "extra": {
  3735. "drupal": {
  3736. "version": "8.x-1.0-alpha5",
  3737. "datestamp": "1642555269",
  3738. "security-coverage": {
  3739. "status": "not-covered",
  3740. "message": "Alpha releases are not covered by Drupal security advisories."
  3741. }
  3742. }
  3743. },
  3744. "notification-url": "https://packages.drupal.org/8/downloads",
  3745. "license": [
  3746. "GPL-2.0-or-later"
  3747. ],
  3748. "authors": [
  3749. {
  3750. "name": "Nate Lampton (quicksketch)",
  3751. "homepage": "https://www.drupal.org/u/quicksketch",
  3752. "role": "Maintainer"
  3753. },
  3754. {
  3755. "name": "Andrey Khromyshev (profak)",
  3756. "homepage": "https://www.drupal.org/u/profak",
  3757. "role": "Maintainer"
  3758. },
  3759. {
  3760. "name": "David Valdez (gnuget)",
  3761. "homepage": "https://www.drupal.org/u/gnuget",
  3762. "role": "Maintainer"
  3763. },
  3764. {
  3765. "name": "quicksketch",
  3766. "homepage": "https://www.drupal.org/user/35821"
  3767. }
  3768. ],
  3769. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3770. "homepage": "https://www.drupal.org/project/filefield_sources",
  3771. "support": {
  3772. "source": "https://git.drupalcode.org/project/filefield_sources",
  3773. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3774. "irc": "irc://irc.freenode.org/drupal-contribute"
  3775. }
  3776. },
  3777. {
  3778. "name": "drupal/filter_perms",
  3779. "version": "1.0.0-alpha1",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3783. "reference": "8.x-1.0-alpha1"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3788. "reference": "8.x-1.0-alpha1",
  3789. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3790. },
  3791. "require": {
  3792. "drupal/core": "^8 || ^9"
  3793. },
  3794. "type": "drupal-module",
  3795. "extra": {
  3796. "drupal": {
  3797. "version": "8.x-1.0-alpha1",
  3798. "datestamp": "1595202904",
  3799. "security-coverage": {
  3800. "status": "not-covered",
  3801. "message": "Alpha releases are not covered by Drupal security advisories."
  3802. }
  3803. }
  3804. },
  3805. "notification-url": "https://packages.drupal.org/8/downloads",
  3806. "license": [
  3807. "GPL-2.0-or-later"
  3808. ],
  3809. "authors": [
  3810. {
  3811. "name": "cYu",
  3812. "homepage": "https://www.drupal.org/user/202205"
  3813. },
  3814. {
  3815. "name": "deekayen",
  3816. "homepage": "https://www.drupal.org/user/972"
  3817. },
  3818. {
  3819. "name": "ivavictoria",
  3820. "homepage": "https://www.drupal.org/user/3061533"
  3821. },
  3822. {
  3823. "name": "justcaldwell",
  3824. "homepage": "https://www.drupal.org/user/290069"
  3825. },
  3826. {
  3827. "name": "mgbellaire",
  3828. "homepage": "https://www.drupal.org/user/1831932"
  3829. },
  3830. {
  3831. "name": "willzyx",
  3832. "homepage": "https://www.drupal.org/user/1043862"
  3833. }
  3834. ],
  3835. "description": "Provides role and module filters to simplify the user permissions page.",
  3836. "homepage": "https://www.drupal.org/project/filter_perms",
  3837. "support": {
  3838. "source": "https://git.drupalcode.org/project/filter_perms"
  3839. }
  3840. },
  3841. {
  3842. "name": "drupal/honeypot",
  3843. "version": "2.0.2",
  3844. "source": {
  3845. "type": "git",
  3846. "url": "https://git.drupalcode.org/project/honeypot.git",
  3847. "reference": "2.0.2"
  3848. },
  3849. "dist": {
  3850. "type": "zip",
  3851. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3852. "reference": "2.0.2",
  3853. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3854. },
  3855. "require": {
  3856. "drupal/core": "^8.8.2 || ^9"
  3857. },
  3858. "type": "drupal-module",
  3859. "extra": {
  3860. "drupal": {
  3861. "version": "2.0.2",
  3862. "datestamp": "1651895165",
  3863. "security-coverage": {
  3864. "status": "covered",
  3865. "message": "Covered by Drupal's security advisory policy"
  3866. }
  3867. }
  3868. },
  3869. "notification-url": "https://packages.drupal.org/8/downloads",
  3870. "license": [
  3871. "GPL-2.0-or-later"
  3872. ],
  3873. "authors": [
  3874. {
  3875. "name": "Jeff Geerling",
  3876. "homepage": "https://www.drupal.org/user/389011",
  3877. "email": "geerlingguy@mac.com"
  3878. },
  3879. {
  3880. "name": "Manuel Garcia",
  3881. "homepage": "https://www.drupal.org/user/213194"
  3882. },
  3883. {
  3884. "name": "tr",
  3885. "homepage": "https://www.drupal.org/user/202830"
  3886. },
  3887. {
  3888. "name": "vijaycs85",
  3889. "homepage": "https://www.drupal.org/user/93488"
  3890. }
  3891. ],
  3892. "description": "Mitigates spam form submissions using the honeypot method.",
  3893. "homepage": "https://www.drupal.org/project/honeypot",
  3894. "keywords": [
  3895. "deterrent",
  3896. "form",
  3897. "honeypot",
  3898. "honeytrap",
  3899. "php",
  3900. "spam"
  3901. ],
  3902. "support": {
  3903. "source": "https://git.drupalcode.org/project/honeypot",
  3904. "issues": "https://www.drupal.org/project/issues/honeypot"
  3905. }
  3906. },
  3907. {
  3908. "name": "drupal/jquery_ui",
  3909. "version": "1.4.0",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3913. "reference": "8.x-1.4"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3918. "reference": "8.x-1.4",
  3919. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3920. },
  3921. "require": {
  3922. "drupal/core": "^8 || ^9"
  3923. },
  3924. "type": "drupal-module",
  3925. "extra": {
  3926. "drupal": {
  3927. "version": "8.x-1.4",
  3928. "datestamp": "1582149957",
  3929. "security-coverage": {
  3930. "status": "covered",
  3931. "message": "Covered by Drupal's security advisory policy"
  3932. }
  3933. }
  3934. },
  3935. "notification-url": "https://packages.drupal.org/8/downloads",
  3936. "license": [
  3937. "GPL-2.0-or-later"
  3938. ],
  3939. "authors": [
  3940. {
  3941. "name": "bnjmnm",
  3942. "homepage": "https://www.drupal.org/user/2369194"
  3943. },
  3944. {
  3945. "name": "jjeff",
  3946. "homepage": "https://www.drupal.org/user/17190"
  3947. },
  3948. {
  3949. "name": "lauriii",
  3950. "homepage": "https://www.drupal.org/user/1078742"
  3951. },
  3952. {
  3953. "name": "litwol",
  3954. "homepage": "https://www.drupal.org/user/78134"
  3955. },
  3956. {
  3957. "name": "mfb",
  3958. "homepage": "https://www.drupal.org/user/12302"
  3959. },
  3960. {
  3961. "name": "mfer",
  3962. "homepage": "https://www.drupal.org/user/25701"
  3963. },
  3964. {
  3965. "name": "mikelutz",
  3966. "homepage": "https://www.drupal.org/user/2972409"
  3967. },
  3968. {
  3969. "name": "nod_",
  3970. "homepage": "https://www.drupal.org/user/598310"
  3971. },
  3972. {
  3973. "name": "phenaproxima",
  3974. "homepage": "https://www.drupal.org/user/205645"
  3975. },
  3976. {
  3977. "name": "RobLoach",
  3978. "homepage": "https://www.drupal.org/user/61114"
  3979. },
  3980. {
  3981. "name": "sun",
  3982. "homepage": "https://www.drupal.org/user/54136"
  3983. },
  3984. {
  3985. "name": "webchick",
  3986. "homepage": "https://www.drupal.org/user/24967"
  3987. },
  3988. {
  3989. "name": "Wim Leers",
  3990. "homepage": "https://www.drupal.org/user/99777"
  3991. },
  3992. {
  3993. "name": "zrpnr",
  3994. "homepage": "https://www.drupal.org/user/1448368"
  3995. }
  3996. ],
  3997. "description": "Provides jQuery UI library.",
  3998. "homepage": "https://www.drupal.org/project/jquery_ui",
  3999. "support": {
  4000. "source": "https://git.drupalcode.org/project/jquery_ui"
  4001. }
  4002. },
  4003. {
  4004. "name": "drupal/jquery_ui_draggable",
  4005. "version": "1.2.0",
  4006. "source": {
  4007. "type": "git",
  4008. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4009. "reference": "8.x-1.2"
  4010. },
  4011. "dist": {
  4012. "type": "zip",
  4013. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  4014. "reference": "8.x-1.2",
  4015. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  4016. },
  4017. "require": {
  4018. "drupal/core": "^8 || ^9",
  4019. "drupal/jquery_ui": "*"
  4020. },
  4021. "type": "drupal-module",
  4022. "extra": {
  4023. "drupal": {
  4024. "version": "8.x-1.2",
  4025. "datestamp": "1582150027",
  4026. "security-coverage": {
  4027. "status": "covered",
  4028. "message": "Covered by Drupal's security advisory policy"
  4029. }
  4030. }
  4031. },
  4032. "notification-url": "https://packages.drupal.org/8/downloads",
  4033. "license": [
  4034. "GPL-2.0-or-later"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "bnjmnm",
  4039. "homepage": "https://www.drupal.org/user/2369194"
  4040. },
  4041. {
  4042. "name": "lauriii",
  4043. "homepage": "https://www.drupal.org/user/1078742"
  4044. },
  4045. {
  4046. "name": "zrpnr",
  4047. "homepage": "https://www.drupal.org/user/1448368"
  4048. }
  4049. ],
  4050. "description": "Provides jQuery UI Draggable library.",
  4051. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4052. "support": {
  4053. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4054. }
  4055. },
  4056. {
  4057. "name": "drupal/jquery_ui_droppable",
  4058. "version": "1.2.0",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4062. "reference": "8.x-1.2"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4067. "reference": "8.x-1.2",
  4068. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4069. },
  4070. "require": {
  4071. "drupal/core": "^8 || ^9",
  4072. "drupal/jquery_ui": "*",
  4073. "drupal/jquery_ui_draggable": "*"
  4074. },
  4075. "type": "drupal-module",
  4076. "extra": {
  4077. "drupal": {
  4078. "version": "8.x-1.2",
  4079. "datestamp": "1582150071",
  4080. "security-coverage": {
  4081. "status": "covered",
  4082. "message": "Covered by Drupal's security advisory policy"
  4083. }
  4084. }
  4085. },
  4086. "notification-url": "https://packages.drupal.org/8/downloads",
  4087. "license": [
  4088. "GPL-2.0-or-later"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "bnjmnm",
  4093. "homepage": "https://www.drupal.org/user/2369194"
  4094. },
  4095. {
  4096. "name": "lauriii",
  4097. "homepage": "https://www.drupal.org/user/1078742"
  4098. },
  4099. {
  4100. "name": "zrpnr",
  4101. "homepage": "https://www.drupal.org/user/1448368"
  4102. }
  4103. ],
  4104. "description": "Provides jQuery UI Droppable library.",
  4105. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4106. "support": {
  4107. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4108. }
  4109. },
  4110. {
  4111. "name": "drupal/jquery_ui_sortable",
  4112. "version": "1.1.0",
  4113. "source": {
  4114. "type": "git",
  4115. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4116. "reference": "8.x-1.1"
  4117. },
  4118. "dist": {
  4119. "type": "zip",
  4120. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4121. "reference": "8.x-1.1",
  4122. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4123. },
  4124. "require": {
  4125. "drupal/core": "^8 || ^9",
  4126. "drupal/jquery_ui": "*"
  4127. },
  4128. "type": "drupal-module",
  4129. "extra": {
  4130. "drupal": {
  4131. "version": "8.x-1.1",
  4132. "datestamp": "1583174744",
  4133. "security-coverage": {
  4134. "status": "covered",
  4135. "message": "Covered by Drupal's security advisory policy"
  4136. }
  4137. }
  4138. },
  4139. "notification-url": "https://packages.drupal.org/8/downloads",
  4140. "license": [
  4141. "GPL-2.0-or-later"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "bnjmnm",
  4146. "homepage": "https://www.drupal.org/user/2369194"
  4147. },
  4148. {
  4149. "name": "lauriii",
  4150. "homepage": "https://www.drupal.org/user/1078742"
  4151. },
  4152. {
  4153. "name": "zrpnr",
  4154. "homepage": "https://www.drupal.org/user/1448368"
  4155. }
  4156. ],
  4157. "description": "Provides jQuery UI Sortable library.",
  4158. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4159. "support": {
  4160. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4161. }
  4162. },
  4163. {
  4164. "name": "drupal/linkit",
  4165. "version": "6.0.0-beta3",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://git.drupalcode.org/project/linkit.git",
  4169. "reference": "6.0.0-beta3"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  4174. "reference": "6.0.0-beta3",
  4175. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  4176. },
  4177. "require": {
  4178. "drupal/core": "^8.7.7 || ^9"
  4179. },
  4180. "require-dev": {
  4181. "drupal/imce": "*"
  4182. },
  4183. "type": "drupal-module",
  4184. "extra": {
  4185. "drupal": {
  4186. "version": "6.0.0-beta3",
  4187. "datestamp": "1632946984",
  4188. "security-coverage": {
  4189. "status": "not-covered",
  4190. "message": "Beta releases are not covered by Drupal security advisories."
  4191. }
  4192. }
  4193. },
  4194. "notification-url": "https://packages.drupal.org/8/downloads",
  4195. "license": [
  4196. "GPL-2.0-or-later"
  4197. ],
  4198. "authors": [
  4199. {
  4200. "name": "Emil Stjerneman",
  4201. "homepage": "https://stjerneman.com",
  4202. "email": "emil@stjerneman.com",
  4203. "role": "Maintainer"
  4204. },
  4205. {
  4206. "name": "johnwebdev",
  4207. "homepage": "https://www.drupal.org/user/3331569"
  4208. },
  4209. {
  4210. "name": "mark_fullmer",
  4211. "homepage": "https://www.drupal.org/user/2612816"
  4212. }
  4213. ],
  4214. "description": "Linkit - Enriched linking experience",
  4215. "homepage": "http://drupal.org/project/linkit",
  4216. "support": {
  4217. "source": "http://cgit.drupalcode.org/linkit",
  4218. "issues": "http://drupal.org/project/linkit"
  4219. }
  4220. },
  4221. {
  4222. "name": "drupal/login_emailusername",
  4223. "version": "2.1.0",
  4224. "source": {
  4225. "type": "git",
  4226. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4227. "reference": "2.1.0"
  4228. },
  4229. "dist": {
  4230. "type": "zip",
  4231. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4232. "reference": "2.1.0",
  4233. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4234. },
  4235. "require": {
  4236. "drupal/core": "^8.8 || ^9 || ^10"
  4237. },
  4238. "type": "drupal-module",
  4239. "extra": {
  4240. "drupal": {
  4241. "version": "2.1.0",
  4242. "datestamp": "1677072401",
  4243. "security-coverage": {
  4244. "status": "covered",
  4245. "message": "Covered by Drupal's security advisory policy"
  4246. }
  4247. },
  4248. "branch-alias": {
  4249. "dev-8.x-1.x": "8.1.x-dev"
  4250. }
  4251. },
  4252. "notification-url": "https://packages.drupal.org/8/downloads",
  4253. "license": [
  4254. "GPL-2.0-or-later"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "See contributors",
  4259. "homepage": "https://www.drupal.org/node/2820429/committers",
  4260. "role": "contributor"
  4261. },
  4262. {
  4263. "name": "rjjakes",
  4264. "homepage": "https://www.drupal.org/user/3457245"
  4265. },
  4266. {
  4267. "name": "VladimirAus",
  4268. "homepage": "https://www.drupal.org/user/673120"
  4269. }
  4270. ],
  4271. "description": "Login with the email as username.",
  4272. "homepage": "https://drupal.org/project/login_emailusername",
  4273. "support": {
  4274. "source": "https://git.drupalcode.org/project/login_emailusername",
  4275. "issues": "https://drupal.org/project/issues/login_emailusername"
  4276. }
  4277. },
  4278. {
  4279. "name": "drupal/maillog",
  4280. "version": "1.0.0-beta1",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://git.drupalcode.org/project/maillog.git",
  4284. "reference": "8.x-1.0-beta1"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4289. "reference": "8.x-1.0-beta1",
  4290. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4291. },
  4292. "require": {
  4293. "drupal/core": "^8 || ^9"
  4294. },
  4295. "type": "drupal-module",
  4296. "extra": {
  4297. "drupal": {
  4298. "version": "8.x-1.0-beta1",
  4299. "datestamp": "1600800168",
  4300. "security-coverage": {
  4301. "status": "not-covered",
  4302. "message": "Beta releases are not covered by Drupal security advisories."
  4303. }
  4304. }
  4305. },
  4306. "notification-url": "https://packages.drupal.org/8/downloads",
  4307. "license": [
  4308. "GPL-2.0-or-later"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "berdir",
  4313. "homepage": "https://www.drupal.org/user/214652"
  4314. },
  4315. {
  4316. "name": "damienmckenna",
  4317. "homepage": "https://www.drupal.org/user/108450"
  4318. },
  4319. {
  4320. "name": "miro_dietiker",
  4321. "homepage": "https://www.drupal.org/user/227761"
  4322. },
  4323. {
  4324. "name": "pluess",
  4325. "homepage": "https://www.drupal.org/user/84659"
  4326. }
  4327. ],
  4328. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4329. "homepage": "https://www.drupal.org/project/maillog",
  4330. "support": {
  4331. "source": "https://git.drupalcode.org/project/maillog"
  4332. }
  4333. },
  4334. {
  4335. "name": "drupal/menu_admin_per_menu",
  4336. "version": "1.1.0",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4340. "reference": "8.x-1.1"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4345. "reference": "8.x-1.1",
  4346. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4347. },
  4348. "require": {
  4349. "drupal/core": "^8 || ^9"
  4350. },
  4351. "type": "drupal-module",
  4352. "extra": {
  4353. "drupal": {
  4354. "version": "8.x-1.1",
  4355. "datestamp": "1591098397",
  4356. "security-coverage": {
  4357. "status": "covered",
  4358. "message": "Covered by Drupal's security advisory policy"
  4359. }
  4360. }
  4361. },
  4362. "notification-url": "https://packages.drupal.org/8/downloads",
  4363. "license": [
  4364. "GPL-2.0-or-later"
  4365. ],
  4366. "authors": [
  4367. {
  4368. "name": "anrikun",
  4369. "homepage": "https://www.drupal.org/user/410199"
  4370. },
  4371. {
  4372. "name": "jeroent",
  4373. "homepage": "https://www.drupal.org/user/2228934"
  4374. },
  4375. {
  4376. "name": "jonas139",
  4377. "homepage": "https://www.drupal.org/user/2873401"
  4378. },
  4379. {
  4380. "name": "mkdok",
  4381. "homepage": "https://www.drupal.org/user/3308753"
  4382. }
  4383. ],
  4384. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4385. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4386. "support": {
  4387. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4388. }
  4389. },
  4390. {
  4391. "name": "drupal/metatag",
  4392. "version": "1.16.0",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://git.drupalcode.org/project/metatag.git",
  4396. "reference": "8.x-1.16"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  4401. "reference": "8.x-1.16",
  4402. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  4403. },
  4404. "require": {
  4405. "drupal/core": "^8 || ^9",
  4406. "drupal/token": "^1.0"
  4407. },
  4408. "require-dev": {
  4409. "drupal/devel": "^4.0",
  4410. "drupal/metatag_dc": "*",
  4411. "drupal/metatag_open_graph": "*",
  4412. "drupal/page_manager": "4.x-dev",
  4413. "drupal/panelizer": "4.x-dev",
  4414. "drupal/redirect": "1.x-dev"
  4415. },
  4416. "type": "drupal-module",
  4417. "extra": {
  4418. "drupal": {
  4419. "version": "8.x-1.16",
  4420. "datestamp": "1615820867",
  4421. "security-coverage": {
  4422. "status": "covered",
  4423. "message": "Covered by Drupal's security advisory policy"
  4424. }
  4425. }
  4426. },
  4427. "notification-url": "https://packages.drupal.org/8/downloads",
  4428. "license": [
  4429. "GPL-2.0-or-later"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "See contributors",
  4434. "homepage": "https://www.drupal.org/node/640498/committers",
  4435. "role": "Developer"
  4436. },
  4437. {
  4438. "name": "dave reid",
  4439. "homepage": "https://www.drupal.org/user/53892"
  4440. }
  4441. ],
  4442. "description": "Manage meta tags for all entities.",
  4443. "homepage": "https://www.drupal.org/project/metatag",
  4444. "keywords": [
  4445. "Drupal",
  4446. "seo"
  4447. ],
  4448. "support": {
  4449. "source": "https://git.drupalcode.org/project/metatag",
  4450. "issues": "https://www.drupal.org/project/issues/metatag",
  4451. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4452. }
  4453. },
  4454. {
  4455. "name": "drupal/migrate_plus",
  4456. "version": "5.1.0",
  4457. "source": {
  4458. "type": "git",
  4459. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4460. "reference": "8.x-5.1"
  4461. },
  4462. "dist": {
  4463. "type": "zip",
  4464. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.1.zip",
  4465. "reference": "8.x-5.1",
  4466. "shasum": "1257427ab0c64459c3c1e42bb2a98d3114b77163"
  4467. },
  4468. "require": {
  4469. "drupal/core": "^8.8 || ^9",
  4470. "php": ">=7.1"
  4471. },
  4472. "require-dev": {
  4473. "drupal/migrate_example_advanced_setup": "*",
  4474. "drupal/migrate_example_setup": "*"
  4475. },
  4476. "suggest": {
  4477. "ext-soap": "*",
  4478. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4479. },
  4480. "type": "drupal-module",
  4481. "extra": {
  4482. "drupal": {
  4483. "version": "8.x-5.1",
  4484. "datestamp": "1588261060",
  4485. "security-coverage": {
  4486. "status": "covered",
  4487. "message": "Covered by Drupal's security advisory policy"
  4488. }
  4489. }
  4490. },
  4491. "notification-url": "https://packages.drupal.org/8/downloads",
  4492. "license": [
  4493. "GPL-2.0-or-later"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "Mike Ryan",
  4498. "homepage": "https://www.drupal.org/u/mikeryan",
  4499. "role": "Maintainer"
  4500. },
  4501. {
  4502. "name": "Lucas Hedding",
  4503. "homepage": "https://www.drupal.org/u/heddn",
  4504. "role": "Maintainer"
  4505. },
  4506. {
  4507. "name": "mikeryan",
  4508. "homepage": "https://www.drupal.org/user/4420"
  4509. }
  4510. ],
  4511. "description": "Enhancements to core migration support.",
  4512. "homepage": "https://www.drupal.org/project/migrate_plus",
  4513. "support": {
  4514. "source": "https://git.drupalcode.org/project/migrate_plus",
  4515. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4516. "slack": "#migrate"
  4517. }
  4518. },
  4519. {
  4520. "name": "drupal/migrate_tools",
  4521. "version": "4.5.0",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4525. "reference": "8.x-4.5"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4530. "reference": "8.x-4.5",
  4531. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4532. },
  4533. "require": {
  4534. "drupal/core": "^8 || ^9",
  4535. "drupal/migrate_plus": "^4 || ^5"
  4536. },
  4537. "require-dev": {
  4538. "drupal/migrate_plus": "4.x-dev",
  4539. "drupal/migrate_source_csv": "^2.2",
  4540. "drush/drush": "^10"
  4541. },
  4542. "type": "drupal-module",
  4543. "extra": {
  4544. "drupal": {
  4545. "version": "8.x-4.5",
  4546. "datestamp": "1574693285",
  4547. "security-coverage": {
  4548. "status": "covered",
  4549. "message": "Covered by Drupal's security advisory policy"
  4550. }
  4551. },
  4552. "drush": {
  4553. "services": {
  4554. "drush.services.yml": "^9 || ^10"
  4555. }
  4556. }
  4557. },
  4558. "notification-url": "https://packages.drupal.org/8/downloads",
  4559. "license": [
  4560. "GPL-2.0-or-later"
  4561. ],
  4562. "authors": [
  4563. {
  4564. "name": "drupalspoons",
  4565. "homepage": "https://www.drupal.org/user/3647684"
  4566. },
  4567. {
  4568. "name": "heddn",
  4569. "homepage": "https://www.drupal.org/user/1463982"
  4570. },
  4571. {
  4572. "name": "mikeryan",
  4573. "homepage": "https://www.drupal.org/user/4420"
  4574. }
  4575. ],
  4576. "description": "Tools to assist in developing and running migrations.",
  4577. "homepage": "http://drupal.org/project/migrate_tools",
  4578. "support": {
  4579. "source": "http://cgit.drupalcode.org/migrate_tools",
  4580. "issues": "http://drupal.org/project/migrate_tools",
  4581. "irc": "irc://irc.freenode.org/drupal-migrate"
  4582. }
  4583. },
  4584. {
  4585. "name": "drupal/pathauto",
  4586. "version": "1.10.0",
  4587. "source": {
  4588. "type": "git",
  4589. "url": "https://git.drupalcode.org/project/pathauto.git",
  4590. "reference": "8.x-1.10"
  4591. },
  4592. "dist": {
  4593. "type": "zip",
  4594. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4595. "reference": "8.x-1.10",
  4596. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4597. },
  4598. "require": {
  4599. "drupal/core": "^8.8 || ^9",
  4600. "drupal/ctools": "*",
  4601. "drupal/token": "*"
  4602. },
  4603. "suggest": {
  4604. "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."
  4605. },
  4606. "type": "drupal-module",
  4607. "extra": {
  4608. "drupal": {
  4609. "version": "8.x-1.10",
  4610. "datestamp": "1650806739",
  4611. "security-coverage": {
  4612. "status": "covered",
  4613. "message": "Covered by Drupal's security advisory policy"
  4614. }
  4615. },
  4616. "drush": {
  4617. "services": {
  4618. "drush.services.yml": "^9 || ^10"
  4619. }
  4620. }
  4621. },
  4622. "notification-url": "https://packages.drupal.org/8/downloads",
  4623. "license": [
  4624. "GPL-2.0-or-later"
  4625. ],
  4626. "authors": [
  4627. {
  4628. "name": "Berdir",
  4629. "homepage": "https://www.drupal.org/user/214652"
  4630. },
  4631. {
  4632. "name": "Dave Reid",
  4633. "homepage": "https://www.drupal.org/user/53892"
  4634. },
  4635. {
  4636. "name": "Freso",
  4637. "homepage": "https://www.drupal.org/user/27504"
  4638. },
  4639. {
  4640. "name": "greggles",
  4641. "homepage": "https://www.drupal.org/user/36762"
  4642. }
  4643. ],
  4644. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4645. "homepage": "https://www.drupal.org/project/pathauto",
  4646. "support": {
  4647. "source": "https://cgit.drupalcode.org/pathauto",
  4648. "issues": "https://www.drupal.org/project/issues/pathauto",
  4649. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4650. }
  4651. },
  4652. {
  4653. "name": "drupal/profile",
  4654. "version": "1.4.0",
  4655. "source": {
  4656. "type": "git",
  4657. "url": "https://git.drupalcode.org/project/profile.git",
  4658. "reference": "8.x-1.4"
  4659. },
  4660. "dist": {
  4661. "type": "zip",
  4662. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4663. "reference": "8.x-1.4",
  4664. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4665. },
  4666. "require": {
  4667. "drupal/core": "^8.9 || ^9 || ^10",
  4668. "drupal/entity": "^1.0-rc2"
  4669. },
  4670. "require-dev": {
  4671. "drupal/token": "^1.7"
  4672. },
  4673. "type": "drupal-module",
  4674. "extra": {
  4675. "drupal": {
  4676. "version": "8.x-1.4",
  4677. "datestamp": "1652430373",
  4678. "security-coverage": {
  4679. "status": "covered",
  4680. "message": "Covered by Drupal's security advisory policy"
  4681. }
  4682. }
  4683. },
  4684. "notification-url": "https://packages.drupal.org/8/downloads",
  4685. "license": [
  4686. "GPL-2.0-or-later"
  4687. ],
  4688. "authors": [
  4689. {
  4690. "name": "bojanz",
  4691. "homepage": "https://www.drupal.org/user/86106"
  4692. },
  4693. {
  4694. "name": "daggerhart",
  4695. "homepage": "https://www.drupal.org/user/167806"
  4696. },
  4697. {
  4698. "name": "fago",
  4699. "homepage": "https://www.drupal.org/user/16747"
  4700. },
  4701. {
  4702. "name": "jsacksick",
  4703. "homepage": "https://www.drupal.org/user/972218"
  4704. },
  4705. {
  4706. "name": "mglaman",
  4707. "homepage": "https://www.drupal.org/user/2416470"
  4708. },
  4709. {
  4710. "name": "pcambra",
  4711. "homepage": "https://www.drupal.org/user/122101"
  4712. }
  4713. ],
  4714. "description": "Provides configurable user profiles.",
  4715. "homepage": "http://drupal.org/project/profile",
  4716. "support": {
  4717. "source": "https://git.drupalcode.org/project/profile"
  4718. }
  4719. },
  4720. {
  4721. "name": "drupal/redirect",
  4722. "version": "1.7.0",
  4723. "source": {
  4724. "type": "git",
  4725. "url": "https://git.drupalcode.org/project/redirect.git",
  4726. "reference": "8.x-1.7"
  4727. },
  4728. "dist": {
  4729. "type": "zip",
  4730. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip",
  4731. "reference": "8.x-1.7",
  4732. "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877"
  4733. },
  4734. "require": {
  4735. "drupal/core": "^8.8 || ^9"
  4736. },
  4737. "type": "drupal-module",
  4738. "extra": {
  4739. "drupal": {
  4740. "version": "8.x-1.7",
  4741. "datestamp": "1639380488",
  4742. "security-coverage": {
  4743. "status": "covered",
  4744. "message": "Covered by Drupal's security advisory policy"
  4745. }
  4746. }
  4747. },
  4748. "notification-url": "https://packages.drupal.org/8/downloads",
  4749. "license": [
  4750. "GPL-2.0-or-later"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "Berdir",
  4755. "homepage": "https://www.drupal.org/user/214652"
  4756. },
  4757. {
  4758. "name": "dave reid",
  4759. "homepage": "https://www.drupal.org/user/53892"
  4760. },
  4761. {
  4762. "name": "Kristen Pol",
  4763. "homepage": "https://www.drupal.org/user/8389"
  4764. },
  4765. {
  4766. "name": "pifagor",
  4767. "homepage": "https://www.drupal.org/user/2375692"
  4768. }
  4769. ],
  4770. "description": "Allows users to redirect from old URLs to new URLs.",
  4771. "homepage": "https://www.drupal.org/project/redirect",
  4772. "support": {
  4773. "source": "https://git.drupalcode.org/project/redirect"
  4774. }
  4775. },
  4776. {
  4777. "name": "drupal/redis",
  4778. "version": "1.5.0",
  4779. "source": {
  4780. "type": "git",
  4781. "url": "https://git.drupalcode.org/project/redis.git",
  4782. "reference": "8.x-1.5"
  4783. },
  4784. "dist": {
  4785. "type": "zip",
  4786. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4787. "reference": "8.x-1.5",
  4788. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4789. },
  4790. "require": {
  4791. "drupal/core": "^8.8 || ^9"
  4792. },
  4793. "suggest": {
  4794. "predis/predis": "^1.1.1"
  4795. },
  4796. "type": "drupal-module",
  4797. "extra": {
  4798. "drupal": {
  4799. "version": "8.x-1.5",
  4800. "datestamp": "1609972488",
  4801. "security-coverage": {
  4802. "status": "covered",
  4803. "message": "Covered by Drupal's security advisory policy"
  4804. }
  4805. }
  4806. },
  4807. "autoload": {
  4808. "psr-4": {
  4809. "Drupal\\redis\\": "src"
  4810. }
  4811. },
  4812. "notification-url": "https://packages.drupal.org/8/downloads",
  4813. "license": [
  4814. "GPL-2.0-or-later"
  4815. ],
  4816. "authors": [
  4817. {
  4818. "name": "berdir",
  4819. "homepage": "https://www.drupal.org/user/214652"
  4820. },
  4821. {
  4822. "name": "greg.1.anderson",
  4823. "homepage": "https://www.drupal.org/user/438598"
  4824. },
  4825. {
  4826. "name": "kporras07",
  4827. "homepage": "https://www.drupal.org/user/1349780"
  4828. },
  4829. {
  4830. "name": "pounard",
  4831. "homepage": "https://www.drupal.org/user/240164"
  4832. }
  4833. ],
  4834. "description": "Integration of Drupal with the Redis key-value store.",
  4835. "homepage": "https://www.drupal.org/project/redis",
  4836. "support": {
  4837. "source": "https://git.drupalcode.org/project/redis"
  4838. }
  4839. },
  4840. {
  4841. "name": "drupal/restui",
  4842. "version": "1.21.0",
  4843. "source": {
  4844. "type": "git",
  4845. "url": "https://git.drupalcode.org/project/restui.git",
  4846. "reference": "8.x-1.21"
  4847. },
  4848. "dist": {
  4849. "type": "zip",
  4850. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4851. "reference": "8.x-1.21",
  4852. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4853. },
  4854. "require": {
  4855. "drupal/core": "^8.7.7 || ^9 || ^10"
  4856. },
  4857. "type": "drupal-module",
  4858. "extra": {
  4859. "drupal": {
  4860. "version": "8.x-1.21",
  4861. "datestamp": "1659086914",
  4862. "security-coverage": {
  4863. "status": "covered",
  4864. "message": "Covered by Drupal's security advisory policy"
  4865. }
  4866. }
  4867. },
  4868. "notification-url": "https://packages.drupal.org/8/downloads",
  4869. "license": [
  4870. "GPL-2.0-or-later"
  4871. ],
  4872. "authors": [
  4873. {
  4874. "name": "-enzo-",
  4875. "homepage": "https://www.drupal.org/user/294937"
  4876. },
  4877. {
  4878. "name": "clemens.tolboom",
  4879. "homepage": "https://www.drupal.org/user/125814"
  4880. },
  4881. {
  4882. "name": "juampynr",
  4883. "homepage": "https://www.drupal.org/user/682736"
  4884. },
  4885. {
  4886. "name": "kamkejj",
  4887. "homepage": "https://www.drupal.org/user/81043"
  4888. },
  4889. {
  4890. "name": "vipin.mittal18",
  4891. "homepage": "https://www.drupal.org/user/319716"
  4892. }
  4893. ],
  4894. "description": "Provides a user interface to manage REST resources.",
  4895. "homepage": "https://www.drupal.org/project/restui",
  4896. "support": {
  4897. "source": "https://git.drupalcode.org/project/restui"
  4898. }
  4899. },
  4900. {
  4901. "name": "drupal/search_api",
  4902. "version": "1.23.0",
  4903. "source": {
  4904. "type": "git",
  4905. "url": "https://git.drupalcode.org/project/search_api.git",
  4906. "reference": "8.x-1.23"
  4907. },
  4908. "dist": {
  4909. "type": "zip",
  4910. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  4911. "reference": "8.x-1.23",
  4912. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  4913. },
  4914. "require": {
  4915. "drupal/core": "^8.8 || ^9"
  4916. },
  4917. "conflict": {
  4918. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4919. },
  4920. "require-dev": {
  4921. "drupal/language_fallback_fix": "@dev",
  4922. "drupal/search_api_autocomplete": "@dev",
  4923. "drupal/search_api_db": "*"
  4924. },
  4925. "suggest": {
  4926. "drupal/facets": "Adds the ability to create faceted searches.",
  4927. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4928. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4929. },
  4930. "type": "drupal-module",
  4931. "extra": {
  4932. "drupal": {
  4933. "version": "8.x-1.23",
  4934. "datestamp": "1642935837",
  4935. "security-coverage": {
  4936. "status": "covered",
  4937. "message": "Covered by Drupal's security advisory policy"
  4938. }
  4939. },
  4940. "drush": {
  4941. "services": {
  4942. "drush.services.yml": "^9 || ^10"
  4943. }
  4944. }
  4945. },
  4946. "notification-url": "https://packages.drupal.org/8/downloads",
  4947. "license": [
  4948. "GPL-2.0-or-later"
  4949. ],
  4950. "authors": [
  4951. {
  4952. "name": "Thomas Seidl",
  4953. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4954. },
  4955. {
  4956. "name": "Nick Veenhof",
  4957. "homepage": "https://www.drupal.org/u/nick_vh"
  4958. },
  4959. {
  4960. "name": "See other contributors",
  4961. "homepage": "https://www.drupal.org/node/790418/committers"
  4962. }
  4963. ],
  4964. "description": "Provides a generic framework for modules offering search capabilities.",
  4965. "homepage": "https://www.drupal.org/project/search_api",
  4966. "support": {
  4967. "source": "https://git.drupalcode.org/project/search_api",
  4968. "issues": "https://www.drupal.org/project/issues/search_api",
  4969. "irc": "irc://irc.freenode.org/drupal-search-api"
  4970. }
  4971. },
  4972. {
  4973. "name": "drupal/simple_sitemap",
  4974. "version": "3.11.0",
  4975. "source": {
  4976. "type": "git",
  4977. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4978. "reference": "8.x-3.11"
  4979. },
  4980. "dist": {
  4981. "type": "zip",
  4982. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  4983. "reference": "8.x-3.11",
  4984. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  4985. },
  4986. "require": {
  4987. "drupal/core": "^8 || ^9",
  4988. "ext-xmlwriter": "*"
  4989. },
  4990. "type": "drupal-module",
  4991. "extra": {
  4992. "drupal": {
  4993. "version": "8.x-3.11",
  4994. "datestamp": "1658781789",
  4995. "security-coverage": {
  4996. "status": "covered",
  4997. "message": "Covered by Drupal's security advisory policy"
  4998. }
  4999. },
  5000. "drush": {
  5001. "services": {
  5002. "drush.services.yml": "^9 || ^10"
  5003. }
  5004. }
  5005. },
  5006. "notification-url": "https://packages.drupal.org/8/downloads",
  5007. "license": [
  5008. "GPL-2.0-or-later"
  5009. ],
  5010. "authors": [
  5011. {
  5012. "name": "Pawel Ginalski (gbyte)",
  5013. "homepage": "https://www.drupal.org/u/gbyte",
  5014. "email": "contact@gbyte.dev",
  5015. "role": "Maintainer"
  5016. },
  5017. {
  5018. "name": "walkingdexter",
  5019. "homepage": "https://www.drupal.org/user/3251330"
  5020. }
  5021. ],
  5022. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5023. "homepage": "https://drupal.org/project/simple_sitemap",
  5024. "support": {
  5025. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5026. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5027. "irc": "irc://irc.freenode.org/drupal-contribute"
  5028. }
  5029. },
  5030. {
  5031. "name": "drupal/synonyms",
  5032. "version": "1.0.0-alpha3",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://git.drupalcode.org/project/synonyms.git",
  5036. "reference": "8.x-1.0-alpha3"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5041. "reference": "8.x-1.0-alpha3",
  5042. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5043. },
  5044. "require": {
  5045. "drupal/core": "^8 || ^9"
  5046. },
  5047. "type": "drupal-module",
  5048. "extra": {
  5049. "drupal": {
  5050. "version": "8.x-1.0-alpha3",
  5051. "datestamp": "1609623594",
  5052. "security-coverage": {
  5053. "status": "not-covered",
  5054. "message": "Alpha releases are not covered by Drupal security advisories."
  5055. }
  5056. }
  5057. },
  5058. "notification-url": "https://packages.drupal.org/8/downloads",
  5059. "license": [
  5060. "GPL-2.0-or-later"
  5061. ],
  5062. "authors": [
  5063. {
  5064. "name": "bojanz",
  5065. "homepage": "https://www.drupal.org/user/86106"
  5066. },
  5067. {
  5068. "name": "bucefal91",
  5069. "homepage": "https://www.drupal.org/user/504128"
  5070. },
  5071. {
  5072. "name": "devad",
  5073. "homepage": "https://www.drupal.org/user/2268520"
  5074. },
  5075. {
  5076. "name": "Zen",
  5077. "homepage": "https://www.drupal.org/user/21209"
  5078. }
  5079. ],
  5080. "description": "Provides synonyms feature for content entities.",
  5081. "homepage": "https://www.drupal.org/project/synonyms",
  5082. "support": {
  5083. "source": "https://git.drupalcode.org/project/synonyms"
  5084. }
  5085. },
  5086. {
  5087. "name": "drupal/token",
  5088. "version": "1.10.0",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://git.drupalcode.org/project/token.git",
  5092. "reference": "8.x-1.10"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  5097. "reference": "8.x-1.10",
  5098. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  5099. },
  5100. "require": {
  5101. "drupal/core": "^8.8 || ^9"
  5102. },
  5103. "type": "drupal-module",
  5104. "extra": {
  5105. "drupal": {
  5106. "version": "8.x-1.10",
  5107. "datestamp": "1638619775",
  5108. "security-coverage": {
  5109. "status": "covered",
  5110. "message": "Covered by Drupal's security advisory policy"
  5111. }
  5112. },
  5113. "drush": {
  5114. "services": {
  5115. "drush.services.yml": "^9 || ^10"
  5116. }
  5117. }
  5118. },
  5119. "notification-url": "https://packages.drupal.org/8/downloads",
  5120. "license": [
  5121. "GPL-2.0-or-later"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Berdir",
  5126. "homepage": "https://www.drupal.org/user/214652"
  5127. },
  5128. {
  5129. "name": "Dave Reid",
  5130. "homepage": "https://www.drupal.org/user/53892"
  5131. },
  5132. {
  5133. "name": "eaton",
  5134. "homepage": "https://www.drupal.org/user/16496"
  5135. },
  5136. {
  5137. "name": "fago",
  5138. "homepage": "https://www.drupal.org/user/16747"
  5139. },
  5140. {
  5141. "name": "greggles",
  5142. "homepage": "https://www.drupal.org/user/36762"
  5143. },
  5144. {
  5145. "name": "mikeryan",
  5146. "homepage": "https://www.drupal.org/user/4420"
  5147. }
  5148. ],
  5149. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5150. "homepage": "https://www.drupal.org/project/token",
  5151. "support": {
  5152. "source": "https://git.drupalcode.org/project/token"
  5153. }
  5154. },
  5155. {
  5156. "name": "drupal/translation_views",
  5157. "version": "1.0.0-alpha11",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://git.drupalcode.org/project/translation_views.git",
  5161. "reference": "8.x-1.0-alpha11"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5166. "reference": "8.x-1.0-alpha11",
  5167. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5168. },
  5169. "require": {
  5170. "drupal/core": "^8.8 || ^9 || ^10"
  5171. },
  5172. "require-dev": {
  5173. "drupal/translators_content": "^1.0@alpha"
  5174. },
  5175. "type": "drupal-module",
  5176. "extra": {
  5177. "drupal": {
  5178. "version": "8.x-1.0-alpha11",
  5179. "datestamp": "1679660668",
  5180. "security-coverage": {
  5181. "status": "not-covered",
  5182. "message": "Project has not opted into security advisory coverage!"
  5183. }
  5184. }
  5185. },
  5186. "notification-url": "https://packages.drupal.org/8/downloads",
  5187. "license": [
  5188. "GPL-2.0-or-later"
  5189. ],
  5190. "authors": [
  5191. {
  5192. "name": "matsbla",
  5193. "homepage": "https://www.drupal.org/user/2325394"
  5194. },
  5195. {
  5196. "name": "vlad.dancer",
  5197. "homepage": "https://www.drupal.org/user/903844"
  5198. }
  5199. ],
  5200. "description": "Create customized lists and queries of translations from your database.",
  5201. "homepage": "https://www.drupal.org/project/translation_views",
  5202. "support": {
  5203. "source": "https://git.drupalcode.org/project/translation_views"
  5204. }
  5205. },
  5206. {
  5207. "name": "drupal/upgrade_status",
  5208. "version": "3.19.0",
  5209. "source": {
  5210. "type": "git",
  5211. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5212. "reference": "8.x-3.19"
  5213. },
  5214. "dist": {
  5215. "type": "zip",
  5216. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5217. "reference": "8.x-3.19",
  5218. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5219. },
  5220. "require": {
  5221. "drupal/core": "^8 || ^9",
  5222. "mathieuviossat/arraytotexttable": "~1.0.0",
  5223. "mglaman/phpstan-drupal": "^1.0.0",
  5224. "nikic/php-parser": "^4.0.0",
  5225. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5226. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5227. "webflo/drupal-finder": "^1.2"
  5228. },
  5229. "type": "drupal-module",
  5230. "extra": {
  5231. "drupal": {
  5232. "version": "8.x-3.19",
  5233. "datestamp": "1678815320",
  5234. "security-coverage": {
  5235. "status": "covered",
  5236. "message": "Covered by Drupal's security advisory policy"
  5237. }
  5238. },
  5239. "drush": {
  5240. "services": {
  5241. "drush.services.yml": "^9 || ^10"
  5242. }
  5243. }
  5244. },
  5245. "notification-url": "https://packages.drupal.org/8/downloads",
  5246. "license": [
  5247. "GPL-2.0-or-later"
  5248. ],
  5249. "authors": [
  5250. {
  5251. "name": "Gábor Hojtsy",
  5252. "homepage": "https://www.drupal.org/user/4166"
  5253. }
  5254. ],
  5255. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5256. "homepage": "http://drupal.org/project/upgrade_status",
  5257. "support": {
  5258. "source": "https://git.drupalcode.org/project/upgrade_status"
  5259. }
  5260. },
  5261. {
  5262. "name": "drupal/url_to_video_filter",
  5263. "version": "2.0.0",
  5264. "source": {
  5265. "type": "git",
  5266. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5267. "reference": "2.0.0"
  5268. },
  5269. "dist": {
  5270. "type": "zip",
  5271. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5272. "reference": "2.0.0",
  5273. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5274. },
  5275. "require": {
  5276. "drupal/core": "^8 || ^9"
  5277. },
  5278. "type": "drupal-module",
  5279. "extra": {
  5280. "drupal": {
  5281. "version": "2.0.0",
  5282. "datestamp": "1607298389",
  5283. "security-coverage": {
  5284. "status": "covered",
  5285. "message": "Covered by Drupal's security advisory policy"
  5286. }
  5287. }
  5288. },
  5289. "notification-url": "https://packages.drupal.org/8/downloads",
  5290. "license": [
  5291. "GPL-2.0-or-later"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "Jaypan",
  5296. "homepage": "https://www.drupal.org/user/324696"
  5297. }
  5298. ],
  5299. "description": "Text filter to convert URLs to embedded videos",
  5300. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5301. "support": {
  5302. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5303. }
  5304. },
  5305. {
  5306. "name": "drupal/views_bulk_edit",
  5307. "version": "2.7.0",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5311. "reference": "8.x-2.7"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5316. "reference": "8.x-2.7",
  5317. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5318. },
  5319. "require": {
  5320. "drupal/core": "^8 || ^9"
  5321. },
  5322. "require-dev": {
  5323. "drupal/views_bulk_operations": "~3.0"
  5324. },
  5325. "suggest": {
  5326. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5327. },
  5328. "type": "drupal-module",
  5329. "extra": {
  5330. "drupal": {
  5331. "version": "8.x-2.7",
  5332. "datestamp": "1664355764",
  5333. "security-coverage": {
  5334. "status": "covered",
  5335. "message": "Covered by Drupal's security advisory policy"
  5336. }
  5337. }
  5338. },
  5339. "notification-url": "https://packages.drupal.org/8/downloads",
  5340. "license": [
  5341. "GPL-2.0+"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Marcin Grabias",
  5346. "homepage": "https://www.drupal.org/u/graber"
  5347. },
  5348. {
  5349. "name": "benjy",
  5350. "homepage": "https://www.drupal.org/user/1852732"
  5351. },
  5352. {
  5353. "name": "graber",
  5354. "homepage": "https://www.drupal.org/user/1599440"
  5355. },
  5356. {
  5357. "name": "grevil",
  5358. "homepage": "https://www.drupal.org/user/3668491"
  5359. },
  5360. {
  5361. "name": "joseph.olstad",
  5362. "homepage": "https://www.drupal.org/user/1321830"
  5363. }
  5364. ],
  5365. "description": "Allows bulk edition of entity field values.",
  5366. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5367. "support": {
  5368. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5369. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5370. }
  5371. },
  5372. {
  5373. "name": "drupal/views_bulk_operations",
  5374. "version": "3.13.0",
  5375. "source": {
  5376. "type": "git",
  5377. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5378. "reference": "8.x-3.13"
  5379. },
  5380. "dist": {
  5381. "type": "zip",
  5382. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  5383. "reference": "8.x-3.13",
  5384. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  5385. },
  5386. "require": {
  5387. "drupal/core": "^8.8 || ^9"
  5388. },
  5389. "require-dev": {
  5390. "drush/drush": "^10"
  5391. },
  5392. "suggest": {
  5393. "drush/drush": "^9 || ^10"
  5394. },
  5395. "type": "drupal-module",
  5396. "extra": {
  5397. "drupal": {
  5398. "version": "8.x-3.13",
  5399. "datestamp": "1619697066",
  5400. "security-coverage": {
  5401. "status": "covered",
  5402. "message": "Covered by Drupal's security advisory policy"
  5403. }
  5404. },
  5405. "drush": {
  5406. "services": {
  5407. "drush.services.yml": "^9 || ^10"
  5408. }
  5409. }
  5410. },
  5411. "notification-url": "https://packages.drupal.org/8/downloads",
  5412. "license": [
  5413. "GPL-2.0-or-later"
  5414. ],
  5415. "authors": [
  5416. {
  5417. "name": "Marcin Grabias",
  5418. "homepage": "https://www.drupal.org/u/graber"
  5419. },
  5420. {
  5421. "name": "Graber",
  5422. "homepage": "https://www.drupal.org/user/1599440"
  5423. },
  5424. {
  5425. "name": "joelpittet",
  5426. "homepage": "https://www.drupal.org/user/160302"
  5427. }
  5428. ],
  5429. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5430. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5431. "support": {
  5432. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5433. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5434. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5435. }
  5436. },
  5437. {
  5438. "name": "drupal/workflow",
  5439. "version": "1.3.0",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://git.drupalcode.org/project/workflow.git",
  5443. "reference": "8.x-1.3"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5448. "reference": "8.x-1.3",
  5449. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5450. },
  5451. "require": {
  5452. "drupal/core": "^8 || ^9"
  5453. },
  5454. "type": "drupal-module",
  5455. "extra": {
  5456. "drupal": {
  5457. "version": "8.x-1.3",
  5458. "datestamp": "1590740623",
  5459. "security-coverage": {
  5460. "status": "covered",
  5461. "message": "Covered by Drupal's security advisory policy"
  5462. }
  5463. }
  5464. },
  5465. "notification-url": "https://packages.drupal.org/8/downloads",
  5466. "license": [
  5467. "GPL-2.0-or-later"
  5468. ],
  5469. "authors": [
  5470. {
  5471. "name": "Bastlynn",
  5472. "homepage": "https://www.drupal.org/user/275249"
  5473. },
  5474. {
  5475. "name": "eaton",
  5476. "homepage": "https://www.drupal.org/user/16496"
  5477. },
  5478. {
  5479. "name": "Heine",
  5480. "homepage": "https://www.drupal.org/user/17943"
  5481. },
  5482. {
  5483. "name": "JacobSingh",
  5484. "homepage": "https://www.drupal.org/user/68912"
  5485. },
  5486. {
  5487. "name": "johnv",
  5488. "homepage": "https://www.drupal.org/user/591042"
  5489. },
  5490. {
  5491. "name": "jvandyk",
  5492. "homepage": "https://www.drupal.org/user/2375"
  5493. },
  5494. {
  5495. "name": "mfredrickson",
  5496. "homepage": "https://www.drupal.org/user/31994"
  5497. },
  5498. {
  5499. "name": "NancyDru",
  5500. "homepage": "https://www.drupal.org/user/101412"
  5501. },
  5502. {
  5503. "name": "q0rban",
  5504. "homepage": "https://www.drupal.org/user/31022"
  5505. }
  5506. ],
  5507. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5508. "homepage": "https://www.drupal.org/project/workflow",
  5509. "support": {
  5510. "source": "https://git.drupalcode.org/project/workflow"
  5511. }
  5512. },
  5513. {
  5514. "name": "drush/drush",
  5515. "version": "10.3.6",
  5516. "source": {
  5517. "type": "git",
  5518. "url": "https://github.com/drush-ops/drush.git",
  5519. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  5520. },
  5521. "dist": {
  5522. "type": "zip",
  5523. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  5524. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  5525. "shasum": ""
  5526. },
  5527. "require": {
  5528. "chi-teck/drupal-code-generator": "^1.32.1",
  5529. "composer/semver": "^1.4 || ^3",
  5530. "consolidation/config": "^1.2",
  5531. "consolidation/filter-via-dot-access-data": "^1",
  5532. "consolidation/robo": "^1.4.11 || ^2",
  5533. "consolidation/site-alias": "^3.0.0@stable",
  5534. "consolidation/site-process": "^2.1 || ^4",
  5535. "ext-dom": "*",
  5536. "grasmash/yaml-expander": "^1.1.1",
  5537. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5538. "league/container": "~2",
  5539. "php": ">=7.1.3",
  5540. "psr/log": "~1.0",
  5541. "psy/psysh": "~0.6",
  5542. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5543. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5544. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5545. "symfony/yaml": "^3.4 || ^4.0",
  5546. "webflo/drupal-finder": "^1.2",
  5547. "webmozart/path-util": "^2.1.0"
  5548. },
  5549. "require-dev": {
  5550. "composer/installers": "^1.7",
  5551. "cweagans/composer-patches": "~1.0",
  5552. "david-garcia/phpwhois": "4.3.0",
  5553. "drupal/alinks": "1.0.0",
  5554. "drupal/core-recommended": "^8.8",
  5555. "lox/xhprof": "dev-master",
  5556. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5557. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5558. "vlucas/phpdotenv": "^2.4"
  5559. },
  5560. "bin": [
  5561. "drush"
  5562. ],
  5563. "type": "library",
  5564. "extra": {
  5565. "installer-paths": {
  5566. "sut/core": [
  5567. "type:drupal-core"
  5568. ],
  5569. "sut/libraries/{$name}": [
  5570. "type:drupal-library"
  5571. ],
  5572. "sut/modules/unish/{$name}": [
  5573. "drupal/devel"
  5574. ],
  5575. "sut/themes/unish/{$name}": [
  5576. "drupal/empty_theme"
  5577. ],
  5578. "sut/modules/contrib/{$name}": [
  5579. "type:drupal-module"
  5580. ],
  5581. "sut/profiles/contrib/{$name}": [
  5582. "type:drupal-profile"
  5583. ],
  5584. "sut/themes/contrib/{$name}": [
  5585. "type:drupal-theme"
  5586. ],
  5587. "sut/drush/contrib/{$name}": [
  5588. "type:drupal-drush"
  5589. ]
  5590. }
  5591. },
  5592. "autoload": {
  5593. "psr-4": {
  5594. "Drush\\": "src/",
  5595. "Drush\\Internal\\": "src/internal-forks"
  5596. }
  5597. },
  5598. "notification-url": "https://packagist.org/downloads/",
  5599. "license": [
  5600. "GPL-2.0-or-later"
  5601. ],
  5602. "authors": [
  5603. {
  5604. "name": "Moshe Weitzman",
  5605. "email": "weitzman@tejasa.com"
  5606. },
  5607. {
  5608. "name": "Owen Barton",
  5609. "email": "drupal@owenbarton.com"
  5610. },
  5611. {
  5612. "name": "Greg Anderson",
  5613. "email": "greg.1.anderson@greenknowe.org"
  5614. },
  5615. {
  5616. "name": "Jonathan Araña Cruz",
  5617. "email": "jonhattan@faita.net"
  5618. },
  5619. {
  5620. "name": "Jonathan Hedstrom",
  5621. "email": "jhedstrom@gmail.com"
  5622. },
  5623. {
  5624. "name": "Christopher Gervais",
  5625. "email": "chris@ergonlogic.com"
  5626. },
  5627. {
  5628. "name": "Dave Reid",
  5629. "email": "dave@davereid.net"
  5630. },
  5631. {
  5632. "name": "Damian Lee",
  5633. "email": "damiankloip@googlemail.com"
  5634. }
  5635. ],
  5636. "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.",
  5637. "homepage": "http://www.drush.org",
  5638. "support": {
  5639. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5640. "irc": "irc://irc.freenode.org/drush",
  5641. "issues": "https://github.com/drush-ops/drush/issues",
  5642. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5643. "source": "https://github.com/drush-ops/drush/tree/10.3.6"
  5644. },
  5645. "funding": [
  5646. {
  5647. "url": "https://github.com/weitzman",
  5648. "type": "github"
  5649. }
  5650. ],
  5651. "time": "2020-11-11T04:36:51+00:00"
  5652. },
  5653. {
  5654. "name": "easyrdf/easyrdf",
  5655. "version": "0.9.1",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://github.com/easyrdf/easyrdf.git",
  5659. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5664. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5665. "shasum": ""
  5666. },
  5667. "require": {
  5668. "ext-mbstring": "*",
  5669. "ext-pcre": "*",
  5670. "php": ">=5.2.8"
  5671. },
  5672. "require-dev": {
  5673. "phpunit/phpunit": "~3.5",
  5674. "sami/sami": "~1.4",
  5675. "squizlabs/php_codesniffer": "~1.4.3"
  5676. },
  5677. "suggest": {
  5678. "ml/json-ld": "~1.0"
  5679. },
  5680. "type": "library",
  5681. "autoload": {
  5682. "psr-0": {
  5683. "EasyRdf_": "lib/"
  5684. }
  5685. },
  5686. "notification-url": "https://packagist.org/downloads/",
  5687. "license": [
  5688. "BSD-3-Clause"
  5689. ],
  5690. "authors": [
  5691. {
  5692. "name": "Nicholas Humfrey",
  5693. "email": "njh@aelius.com",
  5694. "homepage": "http://www.aelius.com/njh/",
  5695. "role": "Developer"
  5696. },
  5697. {
  5698. "name": "Alexey Zakhlestin",
  5699. "email": "indeyets@gmail.com",
  5700. "role": "Developer"
  5701. }
  5702. ],
  5703. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5704. "homepage": "http://www.easyrdf.org/",
  5705. "keywords": [
  5706. "Linked Data",
  5707. "RDF",
  5708. "Semantic Web",
  5709. "Turtle",
  5710. "rdfa",
  5711. "sparql"
  5712. ],
  5713. "support": {
  5714. "forum": "http://groups.google.com/group/easyrdf/",
  5715. "irc": "irc://chat.freenode.net/easyrdf",
  5716. "issues": "http://github.com/njh/easyrdf/issues",
  5717. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5718. },
  5719. "time": "2015-02-27T09:45:49+00:00"
  5720. },
  5721. {
  5722. "name": "egulias/email-validator",
  5723. "version": "2.1.17",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://github.com/egulias/EmailValidator.git",
  5727. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5732. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5733. "shasum": ""
  5734. },
  5735. "require": {
  5736. "doctrine/lexer": "^1.0.1",
  5737. "php": ">=5.5",
  5738. "symfony/polyfill-intl-idn": "^1.10"
  5739. },
  5740. "require-dev": {
  5741. "dominicsayers/isemail": "^3.0.7",
  5742. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5743. "satooshi/php-coveralls": "^1.0.1"
  5744. },
  5745. "suggest": {
  5746. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5747. },
  5748. "type": "library",
  5749. "extra": {
  5750. "branch-alias": {
  5751. "dev-master": "2.1.x-dev"
  5752. }
  5753. },
  5754. "autoload": {
  5755. "psr-4": {
  5756. "Egulias\\EmailValidator\\": "EmailValidator"
  5757. }
  5758. },
  5759. "notification-url": "https://packagist.org/downloads/",
  5760. "license": [
  5761. "MIT"
  5762. ],
  5763. "authors": [
  5764. {
  5765. "name": "Eduardo Gulias Davis"
  5766. }
  5767. ],
  5768. "description": "A library for validating emails against several RFCs",
  5769. "homepage": "https://github.com/egulias/EmailValidator",
  5770. "keywords": [
  5771. "email",
  5772. "emailvalidation",
  5773. "emailvalidator",
  5774. "validation",
  5775. "validator"
  5776. ],
  5777. "support": {
  5778. "issues": "https://github.com/egulias/EmailValidator/issues",
  5779. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5780. },
  5781. "time": "2020-02-13T22:36:52+00:00"
  5782. },
  5783. {
  5784. "name": "grasmash/expander",
  5785. "version": "1.0.0",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/grasmash/expander.git",
  5789. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5794. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5795. "shasum": ""
  5796. },
  5797. "require": {
  5798. "dflydev/dot-access-data": "^1.1.0",
  5799. "php": ">=5.4"
  5800. },
  5801. "require-dev": {
  5802. "greg-1-anderson/composer-test-scenarios": "^1",
  5803. "phpunit/phpunit": "^4|^5.5.4",
  5804. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5805. "squizlabs/php_codesniffer": "^2.7"
  5806. },
  5807. "type": "library",
  5808. "extra": {
  5809. "branch-alias": {
  5810. "dev-master": "1.x-dev"
  5811. }
  5812. },
  5813. "autoload": {
  5814. "psr-4": {
  5815. "Grasmash\\Expander\\": "src/"
  5816. }
  5817. },
  5818. "notification-url": "https://packagist.org/downloads/",
  5819. "license": [
  5820. "MIT"
  5821. ],
  5822. "authors": [
  5823. {
  5824. "name": "Matthew Grasmick"
  5825. }
  5826. ],
  5827. "description": "Expands internal property references in PHP arrays file.",
  5828. "support": {
  5829. "issues": "https://github.com/grasmash/expander/issues",
  5830. "source": "https://github.com/grasmash/expander/tree/master"
  5831. },
  5832. "time": "2017-12-21T22:14:55+00:00"
  5833. },
  5834. {
  5835. "name": "grasmash/yaml-expander",
  5836. "version": "1.4.0",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/grasmash/yaml-expander.git",
  5840. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5845. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5846. "shasum": ""
  5847. },
  5848. "require": {
  5849. "dflydev/dot-access-data": "^1.1.0",
  5850. "php": ">=5.4",
  5851. "symfony/yaml": "^2.8.11|^3|^4"
  5852. },
  5853. "require-dev": {
  5854. "greg-1-anderson/composer-test-scenarios": "^1",
  5855. "phpunit/phpunit": "^4.8|^5.5.4",
  5856. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5857. "squizlabs/php_codesniffer": "^2.7"
  5858. },
  5859. "type": "library",
  5860. "extra": {
  5861. "branch-alias": {
  5862. "dev-master": "1.x-dev"
  5863. }
  5864. },
  5865. "autoload": {
  5866. "psr-4": {
  5867. "Grasmash\\YamlExpander\\": "src/"
  5868. }
  5869. },
  5870. "notification-url": "https://packagist.org/downloads/",
  5871. "license": [
  5872. "MIT"
  5873. ],
  5874. "authors": [
  5875. {
  5876. "name": "Matthew Grasmick"
  5877. }
  5878. ],
  5879. "description": "Expands internal property references in a yaml file.",
  5880. "support": {
  5881. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5882. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5883. },
  5884. "time": "2017-12-16T16:06:03+00:00"
  5885. },
  5886. {
  5887. "name": "guzzlehttp/guzzle",
  5888. "version": "6.5.4",
  5889. "source": {
  5890. "type": "git",
  5891. "url": "https://github.com/guzzle/guzzle.git",
  5892. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5893. },
  5894. "dist": {
  5895. "type": "zip",
  5896. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5897. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5898. "shasum": ""
  5899. },
  5900. "require": {
  5901. "ext-json": "*",
  5902. "guzzlehttp/promises": "^1.0",
  5903. "guzzlehttp/psr7": "^1.6.1",
  5904. "php": ">=5.5",
  5905. "symfony/polyfill-intl-idn": "1.17.0"
  5906. },
  5907. "require-dev": {
  5908. "ext-curl": "*",
  5909. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5910. "psr/log": "^1.1"
  5911. },
  5912. "suggest": {
  5913. "psr/log": "Required for using the Log middleware"
  5914. },
  5915. "type": "library",
  5916. "extra": {
  5917. "branch-alias": {
  5918. "dev-master": "6.5-dev"
  5919. }
  5920. },
  5921. "autoload": {
  5922. "files": [
  5923. "src/functions_include.php"
  5924. ],
  5925. "psr-4": {
  5926. "GuzzleHttp\\": "src/"
  5927. }
  5928. },
  5929. "notification-url": "https://packagist.org/downloads/",
  5930. "license": [
  5931. "MIT"
  5932. ],
  5933. "authors": [
  5934. {
  5935. "name": "Michael Dowling",
  5936. "email": "mtdowling@gmail.com",
  5937. "homepage": "https://github.com/mtdowling"
  5938. }
  5939. ],
  5940. "description": "Guzzle is a PHP HTTP client library",
  5941. "homepage": "http://guzzlephp.org/",
  5942. "keywords": [
  5943. "client",
  5944. "curl",
  5945. "framework",
  5946. "http",
  5947. "http client",
  5948. "rest",
  5949. "web service"
  5950. ],
  5951. "support": {
  5952. "issues": "https://github.com/guzzle/guzzle/issues",
  5953. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5954. },
  5955. "time": "2020-05-25T19:35:05+00:00"
  5956. },
  5957. {
  5958. "name": "guzzlehttp/promises",
  5959. "version": "v1.3.1",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/guzzle/promises.git",
  5963. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5968. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5969. "shasum": ""
  5970. },
  5971. "require": {
  5972. "php": ">=5.5.0"
  5973. },
  5974. "require-dev": {
  5975. "phpunit/phpunit": "^4.0"
  5976. },
  5977. "type": "library",
  5978. "extra": {
  5979. "branch-alias": {
  5980. "dev-master": "1.4-dev"
  5981. }
  5982. },
  5983. "autoload": {
  5984. "files": [
  5985. "src/functions_include.php"
  5986. ],
  5987. "psr-4": {
  5988. "GuzzleHttp\\Promise\\": "src/"
  5989. }
  5990. },
  5991. "notification-url": "https://packagist.org/downloads/",
  5992. "license": [
  5993. "MIT"
  5994. ],
  5995. "authors": [
  5996. {
  5997. "name": "Michael Dowling",
  5998. "email": "mtdowling@gmail.com",
  5999. "homepage": "https://github.com/mtdowling"
  6000. }
  6001. ],
  6002. "description": "Guzzle promises library",
  6003. "keywords": [
  6004. "promise"
  6005. ],
  6006. "support": {
  6007. "issues": "https://github.com/guzzle/promises/issues",
  6008. "source": "https://github.com/guzzle/promises/tree/master"
  6009. },
  6010. "time": "2016-12-20T10:07:11+00:00"
  6011. },
  6012. {
  6013. "name": "guzzlehttp/psr7",
  6014. "version": "1.6.1",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://github.com/guzzle/psr7.git",
  6018. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6023. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6024. "shasum": ""
  6025. },
  6026. "require": {
  6027. "php": ">=5.4.0",
  6028. "psr/http-message": "~1.0",
  6029. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6030. },
  6031. "provide": {
  6032. "psr/http-message-implementation": "1.0"
  6033. },
  6034. "require-dev": {
  6035. "ext-zlib": "*",
  6036. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6037. },
  6038. "suggest": {
  6039. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6040. },
  6041. "type": "library",
  6042. "extra": {
  6043. "branch-alias": {
  6044. "dev-master": "1.6-dev"
  6045. }
  6046. },
  6047. "autoload": {
  6048. "files": [
  6049. "src/functions_include.php"
  6050. ],
  6051. "psr-4": {
  6052. "GuzzleHttp\\Psr7\\": "src/"
  6053. }
  6054. },
  6055. "notification-url": "https://packagist.org/downloads/",
  6056. "license": [
  6057. "MIT"
  6058. ],
  6059. "authors": [
  6060. {
  6061. "name": "Michael Dowling",
  6062. "email": "mtdowling@gmail.com",
  6063. "homepage": "https://github.com/mtdowling"
  6064. },
  6065. {
  6066. "name": "Tobias Schultze",
  6067. "homepage": "https://github.com/Tobion"
  6068. }
  6069. ],
  6070. "description": "PSR-7 message implementation that also provides common utility methods",
  6071. "keywords": [
  6072. "http",
  6073. "message",
  6074. "psr-7",
  6075. "request",
  6076. "response",
  6077. "stream",
  6078. "uri",
  6079. "url"
  6080. ],
  6081. "support": {
  6082. "issues": "https://github.com/guzzle/psr7/issues",
  6083. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6084. },
  6085. "time": "2019-07-01T23:21:34+00:00"
  6086. },
  6087. {
  6088. "name": "kint-php/kint",
  6089. "version": "5.1.1",
  6090. "source": {
  6091. "type": "git",
  6092. "url": "https://github.com/kint-php/kint.git",
  6093. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6094. },
  6095. "dist": {
  6096. "type": "zip",
  6097. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6098. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6099. "shasum": ""
  6100. },
  6101. "require": {
  6102. "php": ">=7.1"
  6103. },
  6104. "require-dev": {
  6105. "friendsofphp/php-cs-fixer": "^3",
  6106. "phpspec/prophecy-phpunit": "^2",
  6107. "phpunit/phpunit": "^9",
  6108. "seld/phar-utils": "^1",
  6109. "symfony/finder": ">=4.0",
  6110. "vimeo/psalm": "^5"
  6111. },
  6112. "suggest": {
  6113. "kint-php/kint-helpers": "Provides extra helper functions",
  6114. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6115. },
  6116. "type": "library",
  6117. "autoload": {
  6118. "files": [
  6119. "init.php"
  6120. ],
  6121. "psr-4": {
  6122. "Kint\\": "src/"
  6123. }
  6124. },
  6125. "notification-url": "https://packagist.org/downloads/",
  6126. "license": [
  6127. "MIT"
  6128. ],
  6129. "authors": [
  6130. {
  6131. "name": "Jonathan Vollebregt",
  6132. "homepage": "https://github.com/jnvsor"
  6133. },
  6134. {
  6135. "name": "Contributors",
  6136. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6137. }
  6138. ],
  6139. "description": "Kint - debugging tool for PHP developers",
  6140. "homepage": "https://kint-php.github.io/kint/",
  6141. "keywords": [
  6142. "debug",
  6143. "kint",
  6144. "php"
  6145. ],
  6146. "support": {
  6147. "issues": "https://github.com/kint-php/kint/issues",
  6148. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6149. },
  6150. "time": "2024-04-26T14:20:09+00:00"
  6151. },
  6152. {
  6153. "name": "laminas/laminas-diactoros",
  6154. "version": "1.8.7p2",
  6155. "source": {
  6156. "type": "git",
  6157. "url": "https://github.com/laminas/laminas-diactoros.git",
  6158. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6159. },
  6160. "dist": {
  6161. "type": "zip",
  6162. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6163. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6164. "shasum": ""
  6165. },
  6166. "require": {
  6167. "laminas/laminas-zendframework-bridge": "^1.0",
  6168. "php": "^5.6 || ^7.0",
  6169. "psr/http-message": "^1.0"
  6170. },
  6171. "provide": {
  6172. "psr/http-message-implementation": "1.0"
  6173. },
  6174. "replace": {
  6175. "zendframework/zend-diactoros": "~1.8.7.0"
  6176. },
  6177. "require-dev": {
  6178. "ext-dom": "*",
  6179. "ext-libxml": "*",
  6180. "laminas/laminas-coding-standard": "~1.0",
  6181. "php-http/psr7-integration-tests": "dev-master",
  6182. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6183. },
  6184. "type": "library",
  6185. "extra": {
  6186. "branch-alias": {
  6187. "dev-release-1.8": "1.8.x-dev"
  6188. }
  6189. },
  6190. "autoload": {
  6191. "files": [
  6192. "src/functions/create_uploaded_file.php",
  6193. "src/functions/marshal_headers_from_sapi.php",
  6194. "src/functions/marshal_method_from_sapi.php",
  6195. "src/functions/marshal_protocol_version_from_sapi.php",
  6196. "src/functions/marshal_uri_from_sapi.php",
  6197. "src/functions/normalize_server.php",
  6198. "src/functions/normalize_uploaded_files.php",
  6199. "src/functions/parse_cookie_header.php",
  6200. "src/functions/create_uploaded_file.legacy.php",
  6201. "src/functions/marshal_headers_from_sapi.legacy.php",
  6202. "src/functions/marshal_method_from_sapi.legacy.php",
  6203. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6204. "src/functions/marshal_uri_from_sapi.legacy.php",
  6205. "src/functions/normalize_server.legacy.php",
  6206. "src/functions/normalize_uploaded_files.legacy.php",
  6207. "src/functions/parse_cookie_header.legacy.php"
  6208. ],
  6209. "psr-4": {
  6210. "Laminas\\Diactoros\\": "src/"
  6211. }
  6212. },
  6213. "notification-url": "https://packagist.org/downloads/",
  6214. "license": [
  6215. "BSD-3-Clause"
  6216. ],
  6217. "description": "PSR HTTP Message implementations",
  6218. "homepage": "https://laminas.dev",
  6219. "keywords": [
  6220. "http",
  6221. "laminas",
  6222. "psr",
  6223. "psr-7"
  6224. ],
  6225. "support": {
  6226. "chat": "https://laminas.dev/chat",
  6227. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6228. "forum": "https://discourse.laminas.dev",
  6229. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6230. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6231. "source": "https://github.com/laminas/laminas-diactoros"
  6232. },
  6233. "time": "2020-03-23T15:28:28+00:00"
  6234. },
  6235. {
  6236. "name": "laminas/laminas-escaper",
  6237. "version": "2.6.1",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://github.com/laminas/laminas-escaper.git",
  6241. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6246. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6247. "shasum": ""
  6248. },
  6249. "require": {
  6250. "laminas/laminas-zendframework-bridge": "^1.0",
  6251. "php": "^5.6 || ^7.0"
  6252. },
  6253. "replace": {
  6254. "zendframework/zend-escaper": "self.version"
  6255. },
  6256. "require-dev": {
  6257. "laminas/laminas-coding-standard": "~1.0.0",
  6258. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6259. },
  6260. "type": "library",
  6261. "extra": {
  6262. "branch-alias": {
  6263. "dev-master": "2.6.x-dev",
  6264. "dev-develop": "2.7.x-dev"
  6265. }
  6266. },
  6267. "autoload": {
  6268. "psr-4": {
  6269. "Laminas\\Escaper\\": "src/"
  6270. }
  6271. },
  6272. "notification-url": "https://packagist.org/downloads/",
  6273. "license": [
  6274. "BSD-3-Clause"
  6275. ],
  6276. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6277. "homepage": "https://laminas.dev",
  6278. "keywords": [
  6279. "escaper",
  6280. "laminas"
  6281. ],
  6282. "support": {
  6283. "chat": "https://laminas.dev/chat",
  6284. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6285. "forum": "https://discourse.laminas.dev",
  6286. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6287. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6288. "source": "https://github.com/laminas/laminas-escaper"
  6289. },
  6290. "time": "2019-12-31T16:43:30+00:00"
  6291. },
  6292. {
  6293. "name": "laminas/laminas-feed",
  6294. "version": "2.12.2",
  6295. "source": {
  6296. "type": "git",
  6297. "url": "https://github.com/laminas/laminas-feed.git",
  6298. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6299. },
  6300. "dist": {
  6301. "type": "zip",
  6302. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6303. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6304. "shasum": ""
  6305. },
  6306. "require": {
  6307. "ext-dom": "*",
  6308. "ext-libxml": "*",
  6309. "laminas/laminas-escaper": "^2.5.2",
  6310. "laminas/laminas-stdlib": "^3.2.1",
  6311. "laminas/laminas-zendframework-bridge": "^1.0",
  6312. "php": "^5.6 || ^7.0"
  6313. },
  6314. "replace": {
  6315. "zendframework/zend-feed": "^2.12.0"
  6316. },
  6317. "require-dev": {
  6318. "laminas/laminas-cache": "^2.7.2",
  6319. "laminas/laminas-coding-standard": "~1.0.0",
  6320. "laminas/laminas-db": "^2.8.2",
  6321. "laminas/laminas-http": "^2.7",
  6322. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6323. "laminas/laminas-validator": "^2.10.1",
  6324. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6325. "psr/http-message": "^1.0.1"
  6326. },
  6327. "suggest": {
  6328. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6329. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6330. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6331. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6332. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6333. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6334. },
  6335. "type": "library",
  6336. "extra": {
  6337. "branch-alias": {
  6338. "dev-master": "2.12.x-dev",
  6339. "dev-develop": "2.13.x-dev"
  6340. }
  6341. },
  6342. "autoload": {
  6343. "psr-4": {
  6344. "Laminas\\Feed\\": "src/"
  6345. }
  6346. },
  6347. "notification-url": "https://packagist.org/downloads/",
  6348. "license": [
  6349. "BSD-3-Clause"
  6350. ],
  6351. "description": "provides functionality for consuming RSS and Atom feeds",
  6352. "homepage": "https://laminas.dev",
  6353. "keywords": [
  6354. "feed",
  6355. "laminas"
  6356. ],
  6357. "support": {
  6358. "chat": "https://laminas.dev/chat",
  6359. "docs": "https://docs.laminas.dev/laminas-feed/",
  6360. "forum": "https://discourse.laminas.dev",
  6361. "issues": "https://github.com/laminas/laminas-feed/issues",
  6362. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6363. "source": "https://github.com/laminas/laminas-feed"
  6364. },
  6365. "time": "2020-03-29T12:36:29+00:00"
  6366. },
  6367. {
  6368. "name": "laminas/laminas-servicemanager",
  6369. "version": "3.10.0",
  6370. "source": {
  6371. "type": "git",
  6372. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6373. "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1"
  6374. },
  6375. "dist": {
  6376. "type": "zip",
  6377. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/e52b985909e0940bf22d34f322eb3f48bbef6bd1",
  6378. "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1",
  6379. "shasum": ""
  6380. },
  6381. "require": {
  6382. "container-interop/container-interop": "^1.2",
  6383. "laminas/laminas-stdlib": "^3.2.1",
  6384. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6385. "psr/container": "^1.0"
  6386. },
  6387. "conflict": {
  6388. "laminas/laminas-code": "<3.3.1",
  6389. "zendframework/zend-code": "<3.3.1",
  6390. "zendframework/zend-servicemanager": "*"
  6391. },
  6392. "provide": {
  6393. "container-interop/container-interop-implementation": "^1.2",
  6394. "psr/container-implementation": "^1.0"
  6395. },
  6396. "require-dev": {
  6397. "composer/package-versions-deprecated": "^1.0",
  6398. "laminas/laminas-coding-standard": "~2.2.1",
  6399. "laminas/laminas-container-config-test": "^0.3",
  6400. "laminas/laminas-dependency-plugin": "^2.1.2",
  6401. "mikey179/vfsstream": "^1.6.10@alpha",
  6402. "ocramius/proxy-manager": "^2.11",
  6403. "phpbench/phpbench": "^1.1",
  6404. "phpspec/prophecy-phpunit": "^2.0",
  6405. "phpunit/phpunit": "^9.5.5",
  6406. "psalm/plugin-phpunit": "^0.16.1",
  6407. "vimeo/psalm": "^4.8"
  6408. },
  6409. "suggest": {
  6410. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6411. },
  6412. "bin": [
  6413. "bin/generate-deps-for-config-factory",
  6414. "bin/generate-factory-for-class"
  6415. ],
  6416. "type": "library",
  6417. "autoload": {
  6418. "psr-4": {
  6419. "Laminas\\ServiceManager\\": "src/"
  6420. }
  6421. },
  6422. "notification-url": "https://packagist.org/downloads/",
  6423. "license": [
  6424. "BSD-3-Clause"
  6425. ],
  6426. "description": "Factory-Driven Dependency Injection Container",
  6427. "homepage": "https://laminas.dev",
  6428. "keywords": [
  6429. "PSR-11",
  6430. "dependency-injection",
  6431. "di",
  6432. "dic",
  6433. "laminas",
  6434. "service-manager",
  6435. "servicemanager"
  6436. ],
  6437. "support": {
  6438. "chat": "https://laminas.dev/chat",
  6439. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6440. "forum": "https://discourse.laminas.dev",
  6441. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6442. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6443. "source": "https://github.com/laminas/laminas-servicemanager"
  6444. },
  6445. "funding": [
  6446. {
  6447. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6448. "type": "community_bridge"
  6449. }
  6450. ],
  6451. "time": "2021-09-18T20:19:36+00:00"
  6452. },
  6453. {
  6454. "name": "laminas/laminas-stdlib",
  6455. "version": "3.2.1",
  6456. "source": {
  6457. "type": "git",
  6458. "url": "https://github.com/laminas/laminas-stdlib.git",
  6459. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6460. },
  6461. "dist": {
  6462. "type": "zip",
  6463. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6464. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6465. "shasum": ""
  6466. },
  6467. "require": {
  6468. "laminas/laminas-zendframework-bridge": "^1.0",
  6469. "php": "^5.6 || ^7.0"
  6470. },
  6471. "replace": {
  6472. "zendframework/zend-stdlib": "self.version"
  6473. },
  6474. "require-dev": {
  6475. "laminas/laminas-coding-standard": "~1.0.0",
  6476. "phpbench/phpbench": "^0.13",
  6477. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6478. },
  6479. "type": "library",
  6480. "extra": {
  6481. "branch-alias": {
  6482. "dev-master": "3.2.x-dev",
  6483. "dev-develop": "3.3.x-dev"
  6484. }
  6485. },
  6486. "autoload": {
  6487. "psr-4": {
  6488. "Laminas\\Stdlib\\": "src/"
  6489. }
  6490. },
  6491. "notification-url": "https://packagist.org/downloads/",
  6492. "license": [
  6493. "BSD-3-Clause"
  6494. ],
  6495. "description": "SPL extensions, array utilities, error handlers, and more",
  6496. "homepage": "https://laminas.dev",
  6497. "keywords": [
  6498. "laminas",
  6499. "stdlib"
  6500. ],
  6501. "support": {
  6502. "chat": "https://laminas.dev/chat",
  6503. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6504. "forum": "https://discourse.laminas.dev",
  6505. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6506. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6507. "source": "https://github.com/laminas/laminas-stdlib"
  6508. },
  6509. "time": "2019-12-31T17:51:15+00:00"
  6510. },
  6511. {
  6512. "name": "laminas/laminas-text",
  6513. "version": "2.8.1",
  6514. "source": {
  6515. "type": "git",
  6516. "url": "https://github.com/laminas/laminas-text.git",
  6517. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6518. },
  6519. "dist": {
  6520. "type": "zip",
  6521. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6522. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6523. "shasum": ""
  6524. },
  6525. "require": {
  6526. "laminas/laminas-servicemanager": "^3.4",
  6527. "laminas/laminas-stdlib": "^3.1",
  6528. "laminas/laminas-zendframework-bridge": "^1.0",
  6529. "php": "^7.3 || ~8.0.0"
  6530. },
  6531. "replace": {
  6532. "zendframework/zend-text": "^2.7.1"
  6533. },
  6534. "require-dev": {
  6535. "laminas/laminas-coding-standard": "~1.0.0",
  6536. "laminas/laminas-config": "^3.4",
  6537. "phpunit/phpunit": "^9.3"
  6538. },
  6539. "type": "library",
  6540. "autoload": {
  6541. "psr-4": {
  6542. "Laminas\\Text\\": "src/"
  6543. }
  6544. },
  6545. "notification-url": "https://packagist.org/downloads/",
  6546. "license": [
  6547. "BSD-3-Clause"
  6548. ],
  6549. "description": "Create FIGlets and text-based tables",
  6550. "homepage": "https://laminas.dev",
  6551. "keywords": [
  6552. "laminas",
  6553. "text"
  6554. ],
  6555. "support": {
  6556. "chat": "https://laminas.dev/chat",
  6557. "docs": "https://docs.laminas.dev/laminas-text/",
  6558. "forum": "https://discourse.laminas.dev",
  6559. "issues": "https://github.com/laminas/laminas-text/issues",
  6560. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6561. "source": "https://github.com/laminas/laminas-text"
  6562. },
  6563. "funding": [
  6564. {
  6565. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6566. "type": "community_bridge"
  6567. }
  6568. ],
  6569. "time": "2021-02-17T21:24:58+00:00"
  6570. },
  6571. {
  6572. "name": "laminas/laminas-zendframework-bridge",
  6573. "version": "1.0.4",
  6574. "source": {
  6575. "type": "git",
  6576. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6577. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6578. },
  6579. "dist": {
  6580. "type": "zip",
  6581. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6582. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6583. "shasum": ""
  6584. },
  6585. "require": {
  6586. "php": "^5.6 || ^7.0"
  6587. },
  6588. "require-dev": {
  6589. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6590. "squizlabs/php_codesniffer": "^3.5"
  6591. },
  6592. "type": "library",
  6593. "extra": {
  6594. "branch-alias": {
  6595. "dev-master": "1.0.x-dev",
  6596. "dev-develop": "1.1.x-dev"
  6597. },
  6598. "laminas": {
  6599. "module": "Laminas\\ZendFrameworkBridge"
  6600. }
  6601. },
  6602. "autoload": {
  6603. "files": [
  6604. "src/autoload.php"
  6605. ],
  6606. "psr-4": {
  6607. "Laminas\\ZendFrameworkBridge\\": "src//"
  6608. }
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "BSD-3-Clause"
  6613. ],
  6614. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6615. "keywords": [
  6616. "ZendFramework",
  6617. "autoloading",
  6618. "laminas",
  6619. "zf"
  6620. ],
  6621. "support": {
  6622. "forum": "https://discourse.laminas.dev/",
  6623. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6624. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6625. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6626. },
  6627. "funding": [
  6628. {
  6629. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6630. "type": "community_bridge"
  6631. }
  6632. ],
  6633. "abandoned": true,
  6634. "time": "2020-05-20T16:45:56+00:00"
  6635. },
  6636. {
  6637. "name": "league/container",
  6638. "version": "2.5.0",
  6639. "source": {
  6640. "type": "git",
  6641. "url": "https://github.com/thephpleague/container.git",
  6642. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6643. },
  6644. "dist": {
  6645. "type": "zip",
  6646. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6647. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6648. "shasum": ""
  6649. },
  6650. "require": {
  6651. "container-interop/container-interop": "^1.2",
  6652. "php": "^5.4 || ^7.0 || ^8.0"
  6653. },
  6654. "provide": {
  6655. "container-interop/container-interop-implementation": "^1.2",
  6656. "psr/container-implementation": "^1.0"
  6657. },
  6658. "replace": {
  6659. "orno/di": "~2.0"
  6660. },
  6661. "require-dev": {
  6662. "phpunit/phpunit": "^4.8.36",
  6663. "scrutinizer/ocular": "^1.3",
  6664. "squizlabs/php_codesniffer": "^3.5"
  6665. },
  6666. "type": "library",
  6667. "extra": {
  6668. "branch-alias": {
  6669. "dev-2.x": "2.x-dev",
  6670. "dev-1.x": "1.x-dev"
  6671. }
  6672. },
  6673. "autoload": {
  6674. "psr-4": {
  6675. "League\\Container\\": "src"
  6676. }
  6677. },
  6678. "notification-url": "https://packagist.org/downloads/",
  6679. "license": [
  6680. "MIT"
  6681. ],
  6682. "authors": [
  6683. {
  6684. "name": "Phil Bennett",
  6685. "email": "philipobenito@gmail.com",
  6686. "homepage": "http://www.philipobenito.com",
  6687. "role": "Developer"
  6688. }
  6689. ],
  6690. "description": "A fast and intuitive dependency injection container.",
  6691. "homepage": "https://github.com/thephpleague/container",
  6692. "keywords": [
  6693. "container",
  6694. "dependency",
  6695. "di",
  6696. "injection",
  6697. "league",
  6698. "provider",
  6699. "service"
  6700. ],
  6701. "support": {
  6702. "issues": "https://github.com/thephpleague/container/issues",
  6703. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6704. },
  6705. "funding": [
  6706. {
  6707. "url": "https://github.com/philipobenito",
  6708. "type": "github"
  6709. }
  6710. ],
  6711. "time": "2021-02-22T09:20:06+00:00"
  6712. },
  6713. {
  6714. "name": "masterminds/html5",
  6715. "version": "2.3.0",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://github.com/Masterminds/html5-php.git",
  6719. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6724. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6725. "shasum": ""
  6726. },
  6727. "require": {
  6728. "ext-libxml": "*",
  6729. "php": ">=5.3.0"
  6730. },
  6731. "require-dev": {
  6732. "phpunit/phpunit": "4.*",
  6733. "sami/sami": "~2.0",
  6734. "satooshi/php-coveralls": "1.0.*"
  6735. },
  6736. "type": "library",
  6737. "extra": {
  6738. "branch-alias": {
  6739. "dev-master": "2.2-dev"
  6740. }
  6741. },
  6742. "autoload": {
  6743. "psr-4": {
  6744. "Masterminds\\": "src"
  6745. }
  6746. },
  6747. "notification-url": "https://packagist.org/downloads/",
  6748. "license": [
  6749. "MIT"
  6750. ],
  6751. "authors": [
  6752. {
  6753. "name": "Matt Butcher",
  6754. "email": "technosophos@gmail.com"
  6755. },
  6756. {
  6757. "name": "Asmir Mustafic",
  6758. "email": "goetas@gmail.com"
  6759. },
  6760. {
  6761. "name": "Matt Farina",
  6762. "email": "matt@mattfarina.com"
  6763. }
  6764. ],
  6765. "description": "An HTML5 parser and serializer.",
  6766. "homepage": "http://masterminds.github.io/html5-php",
  6767. "keywords": [
  6768. "HTML5",
  6769. "dom",
  6770. "html",
  6771. "parser",
  6772. "querypath",
  6773. "serializer",
  6774. "xml"
  6775. ],
  6776. "support": {
  6777. "issues": "https://github.com/Masterminds/html5-php/issues",
  6778. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6779. },
  6780. "time": "2017-09-04T12:26:28+00:00"
  6781. },
  6782. {
  6783. "name": "mathieuviossat/arraytotexttable",
  6784. "version": "v1.0.8",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/viossat/arraytotexttable.git",
  6788. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6793. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6794. "shasum": ""
  6795. },
  6796. "require": {
  6797. "laminas/laminas-text": "^2.7",
  6798. "php": ">=5.3.0"
  6799. },
  6800. "type": "library",
  6801. "autoload": {
  6802. "psr-4": {
  6803. "MathieuViossat\\Util\\": "src/"
  6804. }
  6805. },
  6806. "notification-url": "https://packagist.org/downloads/",
  6807. "license": [
  6808. "MIT"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "Mathieu Viossat",
  6813. "email": "mathieu@viossat.fr",
  6814. "homepage": "https://viossat.fr"
  6815. }
  6816. ],
  6817. "description": "Display arrays in terminal",
  6818. "homepage": "https://github.com/viossat/arraytotexttable",
  6819. "keywords": [
  6820. "array",
  6821. "ascii",
  6822. "table",
  6823. "terminal",
  6824. "text",
  6825. "unicode"
  6826. ],
  6827. "support": {
  6828. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6829. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6830. },
  6831. "time": "2020-06-23T17:14:22+00:00"
  6832. },
  6833. {
  6834. "name": "mglaman/phpstan-drupal",
  6835. "version": "1.2.1",
  6836. "source": {
  6837. "type": "git",
  6838. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6839. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6840. },
  6841. "dist": {
  6842. "type": "zip",
  6843. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6844. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6845. "shasum": ""
  6846. },
  6847. "require": {
  6848. "php": "^7.4 || ^8.0",
  6849. "phpstan/phpstan": "^1.10.1",
  6850. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6851. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6852. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6853. "webflo/drupal-finder": "^1.2"
  6854. },
  6855. "require-dev": {
  6856. "behat/mink": "^1.8",
  6857. "composer/installers": "^1.9",
  6858. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6859. "drush/drush": "^9.6 || ^10.0 || ^11",
  6860. "phpstan/extension-installer": "^1.1",
  6861. "phpstan/phpstan-strict-rules": "^1.0",
  6862. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6863. "slevomat/coding-standard": "^7.1",
  6864. "squizlabs/php_codesniffer": "^3.3",
  6865. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6866. },
  6867. "suggest": {
  6868. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6869. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6870. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6871. },
  6872. "type": "phpstan-extension",
  6873. "extra": {
  6874. "branch-alias": {
  6875. "dev-main": "1.0-dev"
  6876. },
  6877. "installer-paths": {
  6878. "tests/fixtures/drupal/core": [
  6879. "type:drupal-core"
  6880. ],
  6881. "tests/fixtures/drupal/libraries/{$name}": [
  6882. "type:drupal-library"
  6883. ],
  6884. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6885. "type:drupal-module"
  6886. ],
  6887. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6888. "type:drupal-profile"
  6889. ],
  6890. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6891. "type:drupal-theme"
  6892. ]
  6893. },
  6894. "phpstan": {
  6895. "includes": [
  6896. "extension.neon",
  6897. "rules.neon"
  6898. ]
  6899. }
  6900. },
  6901. "autoload": {
  6902. "psr-4": {
  6903. "mglaman\\PHPStanDrupal\\": "src/"
  6904. }
  6905. },
  6906. "notification-url": "https://packagist.org/downloads/",
  6907. "license": [
  6908. "MIT"
  6909. ],
  6910. "authors": [
  6911. {
  6912. "name": "Matt Glaman",
  6913. "email": "nmd.matt@gmail.com"
  6914. }
  6915. ],
  6916. "description": "Drupal extension and rules for PHPStan",
  6917. "support": {
  6918. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6919. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  6920. },
  6921. "funding": [
  6922. {
  6923. "url": "https://github.com/mglaman",
  6924. "type": "github"
  6925. },
  6926. {
  6927. "url": "https://opencollective.com/phpstan-drupal",
  6928. "type": "open_collective"
  6929. },
  6930. {
  6931. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6932. "type": "tidelift"
  6933. }
  6934. ],
  6935. "time": "2023-11-03T13:17:28+00:00"
  6936. },
  6937. {
  6938. "name": "nikic/php-parser",
  6939. "version": "v4.19.1",
  6940. "source": {
  6941. "type": "git",
  6942. "url": "https://github.com/nikic/PHP-Parser.git",
  6943. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  6944. },
  6945. "dist": {
  6946. "type": "zip",
  6947. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  6948. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  6949. "shasum": ""
  6950. },
  6951. "require": {
  6952. "ext-tokenizer": "*",
  6953. "php": ">=7.1"
  6954. },
  6955. "require-dev": {
  6956. "ircmaxell/php-yacc": "^0.0.7",
  6957. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6958. },
  6959. "bin": [
  6960. "bin/php-parse"
  6961. ],
  6962. "type": "library",
  6963. "extra": {
  6964. "branch-alias": {
  6965. "dev-master": "4.9-dev"
  6966. }
  6967. },
  6968. "autoload": {
  6969. "psr-4": {
  6970. "PhpParser\\": "lib/PhpParser"
  6971. }
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "BSD-3-Clause"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Nikita Popov"
  6980. }
  6981. ],
  6982. "description": "A PHP parser written in PHP",
  6983. "keywords": [
  6984. "parser",
  6985. "php"
  6986. ],
  6987. "support": {
  6988. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6989. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  6990. },
  6991. "time": "2024-03-17T08:10:35+00:00"
  6992. },
  6993. {
  6994. "name": "paragonie/random_compat",
  6995. "version": "v9.99.99",
  6996. "source": {
  6997. "type": "git",
  6998. "url": "https://github.com/paragonie/random_compat.git",
  6999. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7000. },
  7001. "dist": {
  7002. "type": "zip",
  7003. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7004. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7005. "shasum": ""
  7006. },
  7007. "require": {
  7008. "php": "^7"
  7009. },
  7010. "require-dev": {
  7011. "phpunit/phpunit": "4.*|5.*",
  7012. "vimeo/psalm": "^1"
  7013. },
  7014. "suggest": {
  7015. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7016. },
  7017. "type": "library",
  7018. "notification-url": "https://packagist.org/downloads/",
  7019. "license": [
  7020. "MIT"
  7021. ],
  7022. "authors": [
  7023. {
  7024. "name": "Paragon Initiative Enterprises",
  7025. "email": "security@paragonie.com",
  7026. "homepage": "https://paragonie.com"
  7027. }
  7028. ],
  7029. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7030. "keywords": [
  7031. "csprng",
  7032. "polyfill",
  7033. "pseudorandom",
  7034. "random"
  7035. ],
  7036. "support": {
  7037. "email": "info@paragonie.com",
  7038. "issues": "https://github.com/paragonie/random_compat/issues",
  7039. "source": "https://github.com/paragonie/random_compat"
  7040. },
  7041. "time": "2018-07-02T15:55:56+00:00"
  7042. },
  7043. {
  7044. "name": "pear/archive_tar",
  7045. "version": "1.4.14",
  7046. "source": {
  7047. "type": "git",
  7048. "url": "https://github.com/pear/Archive_Tar.git",
  7049. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7050. },
  7051. "dist": {
  7052. "type": "zip",
  7053. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7054. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7055. "shasum": ""
  7056. },
  7057. "require": {
  7058. "pear/pear-core-minimal": "^1.10.0alpha2",
  7059. "php": ">=5.2.0"
  7060. },
  7061. "require-dev": {
  7062. "phpunit/phpunit": "*"
  7063. },
  7064. "suggest": {
  7065. "ext-bz2": "Bz2 compression support.",
  7066. "ext-xz": "Lzma2 compression support.",
  7067. "ext-zlib": "Gzip compression support."
  7068. },
  7069. "type": "library",
  7070. "extra": {
  7071. "branch-alias": {
  7072. "dev-master": "1.4.x-dev"
  7073. }
  7074. },
  7075. "autoload": {
  7076. "psr-0": {
  7077. "Archive_Tar": ""
  7078. }
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "include-path": [
  7082. "./"
  7083. ],
  7084. "license": [
  7085. "BSD-3-Clause"
  7086. ],
  7087. "authors": [
  7088. {
  7089. "name": "Vincent Blavet",
  7090. "email": "vincent@phpconcept.net"
  7091. },
  7092. {
  7093. "name": "Greg Beaver",
  7094. "email": "greg@chiaraquartet.net"
  7095. },
  7096. {
  7097. "name": "Michiel Rook",
  7098. "email": "mrook@php.net"
  7099. }
  7100. ],
  7101. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7102. "homepage": "https://github.com/pear/Archive_Tar",
  7103. "keywords": [
  7104. "archive",
  7105. "tar"
  7106. ],
  7107. "support": {
  7108. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7109. "source": "https://github.com/pear/Archive_Tar"
  7110. },
  7111. "funding": [
  7112. {
  7113. "url": "https://github.com/mrook",
  7114. "type": "github"
  7115. },
  7116. {
  7117. "url": "https://www.patreon.com/michielrook",
  7118. "type": "patreon"
  7119. }
  7120. ],
  7121. "time": "2021-07-20T13:53:39+00:00"
  7122. },
  7123. {
  7124. "name": "pear/console_getopt",
  7125. "version": "v1.4.3",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/pear/Console_Getopt.git",
  7129. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7134. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7135. "shasum": ""
  7136. },
  7137. "type": "library",
  7138. "autoload": {
  7139. "psr-0": {
  7140. "Console": "./"
  7141. }
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "include-path": [
  7145. "./"
  7146. ],
  7147. "license": [
  7148. "BSD-2-Clause"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Andrei Zmievski",
  7153. "email": "andrei@php.net",
  7154. "role": "Lead"
  7155. },
  7156. {
  7157. "name": "Stig Bakken",
  7158. "email": "stig@php.net",
  7159. "role": "Developer"
  7160. },
  7161. {
  7162. "name": "Greg Beaver",
  7163. "email": "cellog@php.net",
  7164. "role": "Helper"
  7165. }
  7166. ],
  7167. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7168. "support": {
  7169. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7170. "source": "https://github.com/pear/Console_Getopt"
  7171. },
  7172. "time": "2019-11-20T18:27:48+00:00"
  7173. },
  7174. {
  7175. "name": "pear/pear-core-minimal",
  7176. "version": "v1.10.10",
  7177. "source": {
  7178. "type": "git",
  7179. "url": "https://github.com/pear/pear-core-minimal.git",
  7180. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7181. },
  7182. "dist": {
  7183. "type": "zip",
  7184. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7185. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7186. "shasum": ""
  7187. },
  7188. "require": {
  7189. "pear/console_getopt": "~1.4",
  7190. "pear/pear_exception": "~1.0"
  7191. },
  7192. "replace": {
  7193. "rsky/pear-core-min": "self.version"
  7194. },
  7195. "type": "library",
  7196. "autoload": {
  7197. "psr-0": {
  7198. "": "src/"
  7199. }
  7200. },
  7201. "notification-url": "https://packagist.org/downloads/",
  7202. "include-path": [
  7203. "src/"
  7204. ],
  7205. "license": [
  7206. "BSD-3-Clause"
  7207. ],
  7208. "authors": [
  7209. {
  7210. "name": "Christian Weiske",
  7211. "email": "cweiske@php.net",
  7212. "role": "Lead"
  7213. }
  7214. ],
  7215. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7216. "support": {
  7217. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7218. "source": "https://github.com/pear/pear-core-minimal"
  7219. },
  7220. "time": "2019-11-19T19:00:24+00:00"
  7221. },
  7222. {
  7223. "name": "pear/pear_exception",
  7224. "version": "v1.0.1",
  7225. "source": {
  7226. "type": "git",
  7227. "url": "https://github.com/pear/PEAR_Exception.git",
  7228. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7229. },
  7230. "dist": {
  7231. "type": "zip",
  7232. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7233. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7234. "shasum": ""
  7235. },
  7236. "require": {
  7237. "php": ">=4.4.0"
  7238. },
  7239. "require-dev": {
  7240. "phpunit/phpunit": "*"
  7241. },
  7242. "type": "class",
  7243. "extra": {
  7244. "branch-alias": {
  7245. "dev-master": "1.0.x-dev"
  7246. }
  7247. },
  7248. "autoload": {
  7249. "classmap": [
  7250. "PEAR/"
  7251. ]
  7252. },
  7253. "notification-url": "https://packagist.org/downloads/",
  7254. "include-path": [
  7255. "."
  7256. ],
  7257. "license": [
  7258. "BSD-2-Clause"
  7259. ],
  7260. "authors": [
  7261. {
  7262. "name": "Helgi Thormar",
  7263. "email": "dufuz@php.net"
  7264. },
  7265. {
  7266. "name": "Greg Beaver",
  7267. "email": "cellog@php.net"
  7268. }
  7269. ],
  7270. "description": "The PEAR Exception base class.",
  7271. "homepage": "https://github.com/pear/PEAR_Exception",
  7272. "keywords": [
  7273. "exception"
  7274. ],
  7275. "support": {
  7276. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7277. "source": "https://github.com/pear/PEAR_Exception"
  7278. },
  7279. "time": "2019-12-10T10:24:42+00:00"
  7280. },
  7281. {
  7282. "name": "phpstan/phpstan",
  7283. "version": "1.12.3",
  7284. "source": {
  7285. "type": "git",
  7286. "url": "https://github.com/phpstan/phpstan.git",
  7287. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7288. },
  7289. "dist": {
  7290. "type": "zip",
  7291. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7292. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7293. "shasum": ""
  7294. },
  7295. "require": {
  7296. "php": "^7.2|^8.0"
  7297. },
  7298. "conflict": {
  7299. "phpstan/phpstan-shim": "*"
  7300. },
  7301. "bin": [
  7302. "phpstan",
  7303. "phpstan.phar"
  7304. ],
  7305. "type": "library",
  7306. "autoload": {
  7307. "files": [
  7308. "bootstrap.php"
  7309. ]
  7310. },
  7311. "notification-url": "https://packagist.org/downloads/",
  7312. "license": [
  7313. "MIT"
  7314. ],
  7315. "description": "PHPStan - PHP Static Analysis Tool",
  7316. "keywords": [
  7317. "dev",
  7318. "static analysis"
  7319. ],
  7320. "support": {
  7321. "docs": "https://phpstan.org/user-guide/getting-started",
  7322. "forum": "https://github.com/phpstan/phpstan/discussions",
  7323. "issues": "https://github.com/phpstan/phpstan/issues",
  7324. "security": "https://github.com/phpstan/phpstan/security/policy",
  7325. "source": "https://github.com/phpstan/phpstan-src"
  7326. },
  7327. "funding": [
  7328. {
  7329. "url": "https://github.com/ondrejmirtes",
  7330. "type": "github"
  7331. },
  7332. {
  7333. "url": "https://github.com/phpstan",
  7334. "type": "github"
  7335. }
  7336. ],
  7337. "time": "2024-09-09T08:10:35+00:00"
  7338. },
  7339. {
  7340. "name": "phpstan/phpstan-deprecation-rules",
  7341. "version": "1.2.1",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7345. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7350. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "php": "^7.2 || ^8.0",
  7355. "phpstan/phpstan": "^1.12"
  7356. },
  7357. "require-dev": {
  7358. "php-parallel-lint/php-parallel-lint": "^1.2",
  7359. "phpstan/phpstan-phpunit": "^1.0",
  7360. "phpunit/phpunit": "^9.5"
  7361. },
  7362. "type": "phpstan-extension",
  7363. "extra": {
  7364. "phpstan": {
  7365. "includes": [
  7366. "rules.neon"
  7367. ]
  7368. }
  7369. },
  7370. "autoload": {
  7371. "psr-4": {
  7372. "PHPStan\\": "src/"
  7373. }
  7374. },
  7375. "notification-url": "https://packagist.org/downloads/",
  7376. "license": [
  7377. "MIT"
  7378. ],
  7379. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7380. "support": {
  7381. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7382. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7383. },
  7384. "time": "2024-09-11T15:52:35+00:00"
  7385. },
  7386. {
  7387. "name": "psr/container",
  7388. "version": "1.0.0",
  7389. "source": {
  7390. "type": "git",
  7391. "url": "https://github.com/php-fig/container.git",
  7392. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7393. },
  7394. "dist": {
  7395. "type": "zip",
  7396. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7397. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7398. "shasum": ""
  7399. },
  7400. "require": {
  7401. "php": ">=5.3.0"
  7402. },
  7403. "type": "library",
  7404. "extra": {
  7405. "branch-alias": {
  7406. "dev-master": "1.0.x-dev"
  7407. }
  7408. },
  7409. "autoload": {
  7410. "psr-4": {
  7411. "Psr\\Container\\": "src/"
  7412. }
  7413. },
  7414. "notification-url": "https://packagist.org/downloads/",
  7415. "license": [
  7416. "MIT"
  7417. ],
  7418. "authors": [
  7419. {
  7420. "name": "PHP-FIG",
  7421. "homepage": "http://www.php-fig.org/"
  7422. }
  7423. ],
  7424. "description": "Common Container Interface (PHP FIG PSR-11)",
  7425. "homepage": "https://github.com/php-fig/container",
  7426. "keywords": [
  7427. "PSR-11",
  7428. "container",
  7429. "container-interface",
  7430. "container-interop",
  7431. "psr"
  7432. ],
  7433. "support": {
  7434. "issues": "https://github.com/php-fig/container/issues",
  7435. "source": "https://github.com/php-fig/container/tree/master"
  7436. },
  7437. "time": "2017-02-14T16:28:37+00:00"
  7438. },
  7439. {
  7440. "name": "psr/http-message",
  7441. "version": "1.0.1",
  7442. "source": {
  7443. "type": "git",
  7444. "url": "https://github.com/php-fig/http-message.git",
  7445. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7446. },
  7447. "dist": {
  7448. "type": "zip",
  7449. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7450. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7451. "shasum": ""
  7452. },
  7453. "require": {
  7454. "php": ">=5.3.0"
  7455. },
  7456. "type": "library",
  7457. "extra": {
  7458. "branch-alias": {
  7459. "dev-master": "1.0.x-dev"
  7460. }
  7461. },
  7462. "autoload": {
  7463. "psr-4": {
  7464. "Psr\\Http\\Message\\": "src/"
  7465. }
  7466. },
  7467. "notification-url": "https://packagist.org/downloads/",
  7468. "license": [
  7469. "MIT"
  7470. ],
  7471. "authors": [
  7472. {
  7473. "name": "PHP-FIG",
  7474. "homepage": "http://www.php-fig.org/"
  7475. }
  7476. ],
  7477. "description": "Common interface for HTTP messages",
  7478. "homepage": "https://github.com/php-fig/http-message",
  7479. "keywords": [
  7480. "http",
  7481. "http-message",
  7482. "psr",
  7483. "psr-7",
  7484. "request",
  7485. "response"
  7486. ],
  7487. "support": {
  7488. "source": "https://github.com/php-fig/http-message/tree/master"
  7489. },
  7490. "time": "2016-08-06T14:39:51+00:00"
  7491. },
  7492. {
  7493. "name": "psr/log",
  7494. "version": "1.1.3",
  7495. "source": {
  7496. "type": "git",
  7497. "url": "https://github.com/php-fig/log.git",
  7498. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7499. },
  7500. "dist": {
  7501. "type": "zip",
  7502. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7503. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7504. "shasum": ""
  7505. },
  7506. "require": {
  7507. "php": ">=5.3.0"
  7508. },
  7509. "type": "library",
  7510. "extra": {
  7511. "branch-alias": {
  7512. "dev-master": "1.1.x-dev"
  7513. }
  7514. },
  7515. "autoload": {
  7516. "psr-4": {
  7517. "Psr\\Log\\": "Psr/Log/"
  7518. }
  7519. },
  7520. "notification-url": "https://packagist.org/downloads/",
  7521. "license": [
  7522. "MIT"
  7523. ],
  7524. "authors": [
  7525. {
  7526. "name": "PHP-FIG",
  7527. "homepage": "http://www.php-fig.org/"
  7528. }
  7529. ],
  7530. "description": "Common interface for logging libraries",
  7531. "homepage": "https://github.com/php-fig/log",
  7532. "keywords": [
  7533. "log",
  7534. "psr",
  7535. "psr-3"
  7536. ],
  7537. "support": {
  7538. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7539. },
  7540. "time": "2020-03-23T09:12:05+00:00"
  7541. },
  7542. {
  7543. "name": "psy/psysh",
  7544. "version": "v0.12.4",
  7545. "source": {
  7546. "type": "git",
  7547. "url": "https://github.com/bobthecow/psysh.git",
  7548. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  7549. },
  7550. "dist": {
  7551. "type": "zip",
  7552. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  7553. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  7554. "shasum": ""
  7555. },
  7556. "require": {
  7557. "ext-json": "*",
  7558. "ext-tokenizer": "*",
  7559. "nikic/php-parser": "^5.0 || ^4.0",
  7560. "php": "^8.0 || ^7.4",
  7561. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7562. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7563. },
  7564. "conflict": {
  7565. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7566. },
  7567. "require-dev": {
  7568. "bamarni/composer-bin-plugin": "^1.2"
  7569. },
  7570. "suggest": {
  7571. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7572. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7573. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7574. },
  7575. "bin": [
  7576. "bin/psysh"
  7577. ],
  7578. "type": "library",
  7579. "extra": {
  7580. "branch-alias": {
  7581. "dev-main": "0.12.x-dev"
  7582. },
  7583. "bamarni-bin": {
  7584. "bin-links": false,
  7585. "forward-command": false
  7586. }
  7587. },
  7588. "autoload": {
  7589. "files": [
  7590. "src/functions.php"
  7591. ],
  7592. "psr-4": {
  7593. "Psy\\": "src/"
  7594. }
  7595. },
  7596. "notification-url": "https://packagist.org/downloads/",
  7597. "license": [
  7598. "MIT"
  7599. ],
  7600. "authors": [
  7601. {
  7602. "name": "Justin Hileman",
  7603. "email": "justin@justinhileman.info",
  7604. "homepage": "http://justinhileman.com"
  7605. }
  7606. ],
  7607. "description": "An interactive shell for modern PHP.",
  7608. "homepage": "http://psysh.org",
  7609. "keywords": [
  7610. "REPL",
  7611. "console",
  7612. "interactive",
  7613. "shell"
  7614. ],
  7615. "support": {
  7616. "issues": "https://github.com/bobthecow/psysh/issues",
  7617. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  7618. },
  7619. "time": "2024-06-10T01:18:23+00:00"
  7620. },
  7621. {
  7622. "name": "ralouphie/getallheaders",
  7623. "version": "3.0.3",
  7624. "source": {
  7625. "type": "git",
  7626. "url": "https://github.com/ralouphie/getallheaders.git",
  7627. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7628. },
  7629. "dist": {
  7630. "type": "zip",
  7631. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7632. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7633. "shasum": ""
  7634. },
  7635. "require": {
  7636. "php": ">=5.6"
  7637. },
  7638. "require-dev": {
  7639. "php-coveralls/php-coveralls": "^2.1",
  7640. "phpunit/phpunit": "^5 || ^6.5"
  7641. },
  7642. "type": "library",
  7643. "autoload": {
  7644. "files": [
  7645. "src/getallheaders.php"
  7646. ]
  7647. },
  7648. "notification-url": "https://packagist.org/downloads/",
  7649. "license": [
  7650. "MIT"
  7651. ],
  7652. "authors": [
  7653. {
  7654. "name": "Ralph Khattar",
  7655. "email": "ralph.khattar@gmail.com"
  7656. }
  7657. ],
  7658. "description": "A polyfill for getallheaders.",
  7659. "support": {
  7660. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7661. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7662. },
  7663. "time": "2019-03-08T08:55:37+00:00"
  7664. },
  7665. {
  7666. "name": "stack/builder",
  7667. "version": "v1.0.5",
  7668. "source": {
  7669. "type": "git",
  7670. "url": "https://github.com/stackphp/builder.git",
  7671. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7672. },
  7673. "dist": {
  7674. "type": "zip",
  7675. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7676. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7677. "shasum": ""
  7678. },
  7679. "require": {
  7680. "php": ">=5.3.0",
  7681. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7682. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7683. },
  7684. "require-dev": {
  7685. "silex/silex": "~1.0"
  7686. },
  7687. "type": "library",
  7688. "extra": {
  7689. "branch-alias": {
  7690. "dev-master": "1.0-dev"
  7691. }
  7692. },
  7693. "autoload": {
  7694. "psr-0": {
  7695. "Stack": "src"
  7696. }
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "MIT"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Igor Wiedler",
  7705. "email": "igor@wiedler.ch"
  7706. }
  7707. ],
  7708. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7709. "keywords": [
  7710. "stack"
  7711. ],
  7712. "support": {
  7713. "issues": "https://github.com/stackphp/builder/issues",
  7714. "source": "https://github.com/stackphp/builder/tree/master"
  7715. },
  7716. "abandoned": true,
  7717. "time": "2017-11-18T14:57:29+00:00"
  7718. },
  7719. {
  7720. "name": "symfony-cmf/routing",
  7721. "version": "1.4.1",
  7722. "source": {
  7723. "type": "git",
  7724. "url": "https://github.com/symfony-cmf/routing.git",
  7725. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7726. },
  7727. "dist": {
  7728. "type": "zip",
  7729. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7730. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7731. "shasum": ""
  7732. },
  7733. "require": {
  7734. "php": "^5.3.9|^7.0",
  7735. "psr/log": "1.*",
  7736. "symfony/http-kernel": "^2.2|3.*",
  7737. "symfony/routing": "^2.2|3.*"
  7738. },
  7739. "require-dev": {
  7740. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7741. "symfony-cmf/testing": "^1.3",
  7742. "symfony/config": "^2.2|3.*",
  7743. "symfony/dependency-injection": "^2.0.5|3.*",
  7744. "symfony/event-dispatcher": "^2.1|3.*"
  7745. },
  7746. "suggest": {
  7747. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7748. },
  7749. "type": "library",
  7750. "extra": {
  7751. "branch-alias": {
  7752. "dev-master": "1.4-dev"
  7753. }
  7754. },
  7755. "autoload": {
  7756. "psr-4": {
  7757. "Symfony\\Cmf\\Component\\Routing\\": ""
  7758. }
  7759. },
  7760. "notification-url": "https://packagist.org/downloads/",
  7761. "license": [
  7762. "MIT"
  7763. ],
  7764. "authors": [
  7765. {
  7766. "name": "Symfony CMF Community",
  7767. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7768. }
  7769. ],
  7770. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7771. "homepage": "http://cmf.symfony.com",
  7772. "keywords": [
  7773. "database",
  7774. "routing"
  7775. ],
  7776. "support": {
  7777. "issues": "https://github.com/symfony-cmf/routing/issues",
  7778. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7779. },
  7780. "time": "2017-05-09T08:10:41+00:00"
  7781. },
  7782. {
  7783. "name": "symfony/class-loader",
  7784. "version": "v3.4.41",
  7785. "source": {
  7786. "type": "git",
  7787. "url": "https://github.com/symfony/class-loader.git",
  7788. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7789. },
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7793. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7794. "shasum": ""
  7795. },
  7796. "require": {
  7797. "php": "^5.5.9|>=7.0.8"
  7798. },
  7799. "require-dev": {
  7800. "symfony/finder": "~2.8|~3.0|~4.0",
  7801. "symfony/polyfill-apcu": "~1.1"
  7802. },
  7803. "suggest": {
  7804. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7805. },
  7806. "type": "library",
  7807. "extra": {
  7808. "branch-alias": {
  7809. "dev-master": "3.4-dev"
  7810. }
  7811. },
  7812. "autoload": {
  7813. "psr-4": {
  7814. "Symfony\\Component\\ClassLoader\\": ""
  7815. },
  7816. "exclude-from-classmap": [
  7817. "/Tests/"
  7818. ]
  7819. },
  7820. "notification-url": "https://packagist.org/downloads/",
  7821. "license": [
  7822. "MIT"
  7823. ],
  7824. "authors": [
  7825. {
  7826. "name": "Fabien Potencier",
  7827. "email": "fabien@symfony.com"
  7828. },
  7829. {
  7830. "name": "Symfony Community",
  7831. "homepage": "https://symfony.com/contributors"
  7832. }
  7833. ],
  7834. "description": "Symfony ClassLoader Component",
  7835. "homepage": "https://symfony.com",
  7836. "support": {
  7837. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://symfony.com/sponsor",
  7842. "type": "custom"
  7843. },
  7844. {
  7845. "url": "https://github.com/fabpot",
  7846. "type": "github"
  7847. },
  7848. {
  7849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7850. "type": "tidelift"
  7851. }
  7852. ],
  7853. "abandoned": true,
  7854. "time": "2020-03-15T09:38:08+00:00"
  7855. },
  7856. {
  7857. "name": "symfony/console",
  7858. "version": "v3.4.41",
  7859. "source": {
  7860. "type": "git",
  7861. "url": "https://github.com/symfony/console.git",
  7862. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7863. },
  7864. "dist": {
  7865. "type": "zip",
  7866. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7867. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7868. "shasum": ""
  7869. },
  7870. "require": {
  7871. "php": "^5.5.9|>=7.0.8",
  7872. "symfony/debug": "~2.8|~3.0|~4.0",
  7873. "symfony/polyfill-mbstring": "~1.0"
  7874. },
  7875. "conflict": {
  7876. "symfony/dependency-injection": "<3.4",
  7877. "symfony/process": "<3.3"
  7878. },
  7879. "provide": {
  7880. "psr/log-implementation": "1.0"
  7881. },
  7882. "require-dev": {
  7883. "psr/log": "~1.0",
  7884. "symfony/config": "~3.3|~4.0",
  7885. "symfony/dependency-injection": "~3.4|~4.0",
  7886. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7887. "symfony/lock": "~3.4|~4.0",
  7888. "symfony/process": "~3.3|~4.0"
  7889. },
  7890. "suggest": {
  7891. "psr/log": "For using the console logger",
  7892. "symfony/event-dispatcher": "",
  7893. "symfony/lock": "",
  7894. "symfony/process": ""
  7895. },
  7896. "type": "library",
  7897. "extra": {
  7898. "branch-alias": {
  7899. "dev-master": "3.4-dev"
  7900. }
  7901. },
  7902. "autoload": {
  7903. "psr-4": {
  7904. "Symfony\\Component\\Console\\": ""
  7905. },
  7906. "exclude-from-classmap": [
  7907. "/Tests/"
  7908. ]
  7909. },
  7910. "notification-url": "https://packagist.org/downloads/",
  7911. "license": [
  7912. "MIT"
  7913. ],
  7914. "authors": [
  7915. {
  7916. "name": "Fabien Potencier",
  7917. "email": "fabien@symfony.com"
  7918. },
  7919. {
  7920. "name": "Symfony Community",
  7921. "homepage": "https://symfony.com/contributors"
  7922. }
  7923. ],
  7924. "description": "Symfony Console Component",
  7925. "homepage": "https://symfony.com",
  7926. "support": {
  7927. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://symfony.com/sponsor",
  7932. "type": "custom"
  7933. },
  7934. {
  7935. "url": "https://github.com/fabpot",
  7936. "type": "github"
  7937. },
  7938. {
  7939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7940. "type": "tidelift"
  7941. }
  7942. ],
  7943. "time": "2020-05-30T18:58:05+00:00"
  7944. },
  7945. {
  7946. "name": "symfony/debug",
  7947. "version": "v3.4.41",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/symfony/debug.git",
  7951. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7956. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7957. "shasum": ""
  7958. },
  7959. "require": {
  7960. "php": "^5.5.9|>=7.0.8",
  7961. "psr/log": "~1.0"
  7962. },
  7963. "conflict": {
  7964. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7965. },
  7966. "require-dev": {
  7967. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7968. },
  7969. "type": "library",
  7970. "extra": {
  7971. "branch-alias": {
  7972. "dev-master": "3.4-dev"
  7973. }
  7974. },
  7975. "autoload": {
  7976. "psr-4": {
  7977. "Symfony\\Component\\Debug\\": ""
  7978. },
  7979. "exclude-from-classmap": [
  7980. "/Tests/"
  7981. ]
  7982. },
  7983. "notification-url": "https://packagist.org/downloads/",
  7984. "license": [
  7985. "MIT"
  7986. ],
  7987. "authors": [
  7988. {
  7989. "name": "Fabien Potencier",
  7990. "email": "fabien@symfony.com"
  7991. },
  7992. {
  7993. "name": "Symfony Community",
  7994. "homepage": "https://symfony.com/contributors"
  7995. }
  7996. ],
  7997. "description": "Symfony Debug Component",
  7998. "homepage": "https://symfony.com",
  7999. "support": {
  8000. "source": "https://github.com/symfony/debug/tree/3.4"
  8001. },
  8002. "funding": [
  8003. {
  8004. "url": "https://symfony.com/sponsor",
  8005. "type": "custom"
  8006. },
  8007. {
  8008. "url": "https://github.com/fabpot",
  8009. "type": "github"
  8010. },
  8011. {
  8012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8013. "type": "tidelift"
  8014. }
  8015. ],
  8016. "abandoned": "symfony/error-handler",
  8017. "time": "2020-05-22T18:25:20+00:00"
  8018. },
  8019. {
  8020. "name": "symfony/dependency-injection",
  8021. "version": "v3.4.41",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/symfony/dependency-injection.git",
  8025. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  8030. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  8031. "shasum": ""
  8032. },
  8033. "require": {
  8034. "php": "^5.5.9|>=7.0.8",
  8035. "psr/container": "^1.0"
  8036. },
  8037. "conflict": {
  8038. "symfony/config": "<3.3.7",
  8039. "symfony/finder": "<3.3",
  8040. "symfony/proxy-manager-bridge": "<3.4",
  8041. "symfony/yaml": "<3.4"
  8042. },
  8043. "provide": {
  8044. "psr/container-implementation": "1.0"
  8045. },
  8046. "require-dev": {
  8047. "symfony/config": "~3.3|~4.0",
  8048. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8049. "symfony/yaml": "~3.4|~4.0"
  8050. },
  8051. "suggest": {
  8052. "symfony/config": "",
  8053. "symfony/expression-language": "For using expressions in service container configuration",
  8054. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8055. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8056. "symfony/yaml": ""
  8057. },
  8058. "type": "library",
  8059. "extra": {
  8060. "branch-alias": {
  8061. "dev-master": "3.4-dev"
  8062. }
  8063. },
  8064. "autoload": {
  8065. "psr-4": {
  8066. "Symfony\\Component\\DependencyInjection\\": ""
  8067. },
  8068. "exclude-from-classmap": [
  8069. "/Tests/"
  8070. ]
  8071. },
  8072. "notification-url": "https://packagist.org/downloads/",
  8073. "license": [
  8074. "MIT"
  8075. ],
  8076. "authors": [
  8077. {
  8078. "name": "Fabien Potencier",
  8079. "email": "fabien@symfony.com"
  8080. },
  8081. {
  8082. "name": "Symfony Community",
  8083. "homepage": "https://symfony.com/contributors"
  8084. }
  8085. ],
  8086. "description": "Symfony DependencyInjection Component",
  8087. "homepage": "https://symfony.com",
  8088. "support": {
  8089. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8090. },
  8091. "funding": [
  8092. {
  8093. "url": "https://symfony.com/sponsor",
  8094. "type": "custom"
  8095. },
  8096. {
  8097. "url": "https://github.com/fabpot",
  8098. "type": "github"
  8099. },
  8100. {
  8101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8102. "type": "tidelift"
  8103. }
  8104. ],
  8105. "time": "2020-05-30T21:06:01+00:00"
  8106. },
  8107. {
  8108. "name": "symfony/event-dispatcher",
  8109. "version": "v3.4.41",
  8110. "source": {
  8111. "type": "git",
  8112. "url": "https://github.com/symfony/event-dispatcher.git",
  8113. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8114. },
  8115. "dist": {
  8116. "type": "zip",
  8117. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8118. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8119. "shasum": ""
  8120. },
  8121. "require": {
  8122. "php": "^5.5.9|>=7.0.8"
  8123. },
  8124. "conflict": {
  8125. "symfony/dependency-injection": "<3.3"
  8126. },
  8127. "require-dev": {
  8128. "psr/log": "~1.0",
  8129. "symfony/config": "~2.8|~3.0|~4.0",
  8130. "symfony/dependency-injection": "~3.3|~4.0",
  8131. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8132. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8133. },
  8134. "suggest": {
  8135. "symfony/dependency-injection": "",
  8136. "symfony/http-kernel": ""
  8137. },
  8138. "type": "library",
  8139. "extra": {
  8140. "branch-alias": {
  8141. "dev-master": "3.4-dev"
  8142. }
  8143. },
  8144. "autoload": {
  8145. "psr-4": {
  8146. "Symfony\\Component\\EventDispatcher\\": ""
  8147. },
  8148. "exclude-from-classmap": [
  8149. "/Tests/"
  8150. ]
  8151. },
  8152. "notification-url": "https://packagist.org/downloads/",
  8153. "license": [
  8154. "MIT"
  8155. ],
  8156. "authors": [
  8157. {
  8158. "name": "Fabien Potencier",
  8159. "email": "fabien@symfony.com"
  8160. },
  8161. {
  8162. "name": "Symfony Community",
  8163. "homepage": "https://symfony.com/contributors"
  8164. }
  8165. ],
  8166. "description": "Symfony EventDispatcher Component",
  8167. "homepage": "https://symfony.com",
  8168. "support": {
  8169. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8170. },
  8171. "funding": [
  8172. {
  8173. "url": "https://symfony.com/sponsor",
  8174. "type": "custom"
  8175. },
  8176. {
  8177. "url": "https://github.com/fabpot",
  8178. "type": "github"
  8179. },
  8180. {
  8181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8182. "type": "tidelift"
  8183. }
  8184. ],
  8185. "time": "2020-05-05T15:06:23+00:00"
  8186. },
  8187. {
  8188. "name": "symfony/filesystem",
  8189. "version": "v4.4.42",
  8190. "source": {
  8191. "type": "git",
  8192. "url": "https://github.com/symfony/filesystem.git",
  8193. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8194. },
  8195. "dist": {
  8196. "type": "zip",
  8197. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8198. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8199. "shasum": ""
  8200. },
  8201. "require": {
  8202. "php": ">=7.1.3",
  8203. "symfony/polyfill-ctype": "~1.8",
  8204. "symfony/polyfill-php80": "^1.16"
  8205. },
  8206. "type": "library",
  8207. "autoload": {
  8208. "psr-4": {
  8209. "Symfony\\Component\\Filesystem\\": ""
  8210. },
  8211. "exclude-from-classmap": [
  8212. "/Tests/"
  8213. ]
  8214. },
  8215. "notification-url": "https://packagist.org/downloads/",
  8216. "license": [
  8217. "MIT"
  8218. ],
  8219. "authors": [
  8220. {
  8221. "name": "Fabien Potencier",
  8222. "email": "fabien@symfony.com"
  8223. },
  8224. {
  8225. "name": "Symfony Community",
  8226. "homepage": "https://symfony.com/contributors"
  8227. }
  8228. ],
  8229. "description": "Provides basic utilities for the filesystem",
  8230. "homepage": "https://symfony.com",
  8231. "support": {
  8232. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8233. },
  8234. "funding": [
  8235. {
  8236. "url": "https://symfony.com/sponsor",
  8237. "type": "custom"
  8238. },
  8239. {
  8240. "url": "https://github.com/fabpot",
  8241. "type": "github"
  8242. },
  8243. {
  8244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8245. "type": "tidelift"
  8246. }
  8247. ],
  8248. "time": "2022-05-20T08:49:14+00:00"
  8249. },
  8250. {
  8251. "name": "symfony/finder",
  8252. "version": "v4.4.44",
  8253. "source": {
  8254. "type": "git",
  8255. "url": "https://github.com/symfony/finder.git",
  8256. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8257. },
  8258. "dist": {
  8259. "type": "zip",
  8260. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8261. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8262. "shasum": ""
  8263. },
  8264. "require": {
  8265. "php": ">=7.1.3",
  8266. "symfony/polyfill-php80": "^1.16"
  8267. },
  8268. "type": "library",
  8269. "autoload": {
  8270. "psr-4": {
  8271. "Symfony\\Component\\Finder\\": ""
  8272. },
  8273. "exclude-from-classmap": [
  8274. "/Tests/"
  8275. ]
  8276. },
  8277. "notification-url": "https://packagist.org/downloads/",
  8278. "license": [
  8279. "MIT"
  8280. ],
  8281. "authors": [
  8282. {
  8283. "name": "Fabien Potencier",
  8284. "email": "fabien@symfony.com"
  8285. },
  8286. {
  8287. "name": "Symfony Community",
  8288. "homepage": "https://symfony.com/contributors"
  8289. }
  8290. ],
  8291. "description": "Finds files and directories via an intuitive fluent interface",
  8292. "homepage": "https://symfony.com",
  8293. "support": {
  8294. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8295. },
  8296. "funding": [
  8297. {
  8298. "url": "https://symfony.com/sponsor",
  8299. "type": "custom"
  8300. },
  8301. {
  8302. "url": "https://github.com/fabpot",
  8303. "type": "github"
  8304. },
  8305. {
  8306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8307. "type": "tidelift"
  8308. }
  8309. ],
  8310. "time": "2022-07-29T07:35:46+00:00"
  8311. },
  8312. {
  8313. "name": "symfony/http-foundation",
  8314. "version": "v3.4.41",
  8315. "source": {
  8316. "type": "git",
  8317. "url": "https://github.com/symfony/http-foundation.git",
  8318. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8319. },
  8320. "dist": {
  8321. "type": "zip",
  8322. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8323. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8324. "shasum": ""
  8325. },
  8326. "require": {
  8327. "php": "^5.5.9|>=7.0.8",
  8328. "symfony/polyfill-mbstring": "~1.1",
  8329. "symfony/polyfill-php70": "~1.6"
  8330. },
  8331. "require-dev": {
  8332. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8333. },
  8334. "type": "library",
  8335. "extra": {
  8336. "branch-alias": {
  8337. "dev-master": "3.4-dev"
  8338. }
  8339. },
  8340. "autoload": {
  8341. "psr-4": {
  8342. "Symfony\\Component\\HttpFoundation\\": ""
  8343. },
  8344. "exclude-from-classmap": [
  8345. "/Tests/"
  8346. ]
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "MIT"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Fabien Potencier",
  8355. "email": "fabien@symfony.com"
  8356. },
  8357. {
  8358. "name": "Symfony Community",
  8359. "homepage": "https://symfony.com/contributors"
  8360. }
  8361. ],
  8362. "description": "Symfony HttpFoundation Component",
  8363. "homepage": "https://symfony.com",
  8364. "support": {
  8365. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8366. },
  8367. "funding": [
  8368. {
  8369. "url": "https://symfony.com/sponsor",
  8370. "type": "custom"
  8371. },
  8372. {
  8373. "url": "https://github.com/fabpot",
  8374. "type": "github"
  8375. },
  8376. {
  8377. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8378. "type": "tidelift"
  8379. }
  8380. ],
  8381. "time": "2020-05-16T13:15:54+00:00"
  8382. },
  8383. {
  8384. "name": "symfony/http-kernel",
  8385. "version": "v3.4.44",
  8386. "source": {
  8387. "type": "git",
  8388. "url": "https://github.com/symfony/http-kernel.git",
  8389. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8390. },
  8391. "dist": {
  8392. "type": "zip",
  8393. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8394. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8395. "shasum": ""
  8396. },
  8397. "require": {
  8398. "php": "^5.5.9|>=7.0.8",
  8399. "psr/log": "~1.0",
  8400. "symfony/debug": "^3.3.3|~4.0",
  8401. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8402. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8403. "symfony/polyfill-ctype": "~1.8",
  8404. "symfony/polyfill-php56": "~1.8"
  8405. },
  8406. "conflict": {
  8407. "symfony/config": "<2.8",
  8408. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8409. "symfony/var-dumper": "<3.3",
  8410. "twig/twig": "<1.34|<2.4,>=2"
  8411. },
  8412. "provide": {
  8413. "psr/log-implementation": "1.0"
  8414. },
  8415. "require-dev": {
  8416. "psr/cache": "~1.0",
  8417. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8418. "symfony/class-loader": "~2.8|~3.0",
  8419. "symfony/config": "~2.8|~3.0|~4.0",
  8420. "symfony/console": "~2.8|~3.0|~4.0",
  8421. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8422. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8423. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8424. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8425. "symfony/finder": "~2.8|~3.0|~4.0",
  8426. "symfony/process": "~2.8|~3.0|~4.0",
  8427. "symfony/routing": "~3.4|~4.0",
  8428. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8429. "symfony/templating": "~2.8|~3.0|~4.0",
  8430. "symfony/translation": "~2.8|~3.0|~4.0",
  8431. "symfony/var-dumper": "~3.3|~4.0"
  8432. },
  8433. "suggest": {
  8434. "symfony/browser-kit": "",
  8435. "symfony/config": "",
  8436. "symfony/console": "",
  8437. "symfony/dependency-injection": "",
  8438. "symfony/finder": "",
  8439. "symfony/var-dumper": ""
  8440. },
  8441. "type": "library",
  8442. "extra": {
  8443. "branch-alias": {
  8444. "dev-master": "3.4-dev"
  8445. }
  8446. },
  8447. "autoload": {
  8448. "psr-4": {
  8449. "Symfony\\Component\\HttpKernel\\": ""
  8450. },
  8451. "exclude-from-classmap": [
  8452. "/Tests/"
  8453. ]
  8454. },
  8455. "notification-url": "https://packagist.org/downloads/",
  8456. "license": [
  8457. "MIT"
  8458. ],
  8459. "authors": [
  8460. {
  8461. "name": "Fabien Potencier",
  8462. "email": "fabien@symfony.com"
  8463. },
  8464. {
  8465. "name": "Symfony Community",
  8466. "homepage": "https://symfony.com/contributors"
  8467. }
  8468. ],
  8469. "description": "Symfony HttpKernel Component",
  8470. "homepage": "https://symfony.com",
  8471. "support": {
  8472. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8473. },
  8474. "funding": [
  8475. {
  8476. "url": "https://symfony.com/sponsor",
  8477. "type": "custom"
  8478. },
  8479. {
  8480. "url": "https://github.com/fabpot",
  8481. "type": "github"
  8482. },
  8483. {
  8484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8485. "type": "tidelift"
  8486. }
  8487. ],
  8488. "time": "2020-08-31T05:53:42+00:00"
  8489. },
  8490. {
  8491. "name": "symfony/polyfill-ctype",
  8492. "version": "v1.17.0",
  8493. "source": {
  8494. "type": "git",
  8495. "url": "https://github.com/symfony/polyfill-ctype.git",
  8496. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8497. },
  8498. "dist": {
  8499. "type": "zip",
  8500. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8501. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8502. "shasum": ""
  8503. },
  8504. "require": {
  8505. "php": ">=5.3.3"
  8506. },
  8507. "suggest": {
  8508. "ext-ctype": "For best performance"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-master": "1.17-dev"
  8514. }
  8515. },
  8516. "autoload": {
  8517. "files": [
  8518. "bootstrap.php"
  8519. ],
  8520. "psr-4": {
  8521. "Symfony\\Polyfill\\Ctype\\": ""
  8522. }
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "MIT"
  8527. ],
  8528. "authors": [
  8529. {
  8530. "name": "Gert de Pagter",
  8531. "email": "BackEndTea@gmail.com"
  8532. },
  8533. {
  8534. "name": "Symfony Community",
  8535. "homepage": "https://symfony.com/contributors"
  8536. }
  8537. ],
  8538. "description": "Symfony polyfill for ctype functions",
  8539. "homepage": "https://symfony.com",
  8540. "keywords": [
  8541. "compatibility",
  8542. "ctype",
  8543. "polyfill",
  8544. "portable"
  8545. ],
  8546. "support": {
  8547. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8548. },
  8549. "funding": [
  8550. {
  8551. "url": "https://symfony.com/sponsor",
  8552. "type": "custom"
  8553. },
  8554. {
  8555. "url": "https://github.com/fabpot",
  8556. "type": "github"
  8557. },
  8558. {
  8559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8560. "type": "tidelift"
  8561. }
  8562. ],
  8563. "time": "2020-05-12T16:14:59+00:00"
  8564. },
  8565. {
  8566. "name": "symfony/polyfill-iconv",
  8567. "version": "v1.17.0",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/symfony/polyfill-iconv.git",
  8571. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8576. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8577. "shasum": ""
  8578. },
  8579. "require": {
  8580. "php": ">=5.3.3"
  8581. },
  8582. "suggest": {
  8583. "ext-iconv": "For best performance"
  8584. },
  8585. "type": "library",
  8586. "extra": {
  8587. "branch-alias": {
  8588. "dev-master": "1.17-dev"
  8589. }
  8590. },
  8591. "autoload": {
  8592. "files": [
  8593. "bootstrap.php"
  8594. ],
  8595. "psr-4": {
  8596. "Symfony\\Polyfill\\Iconv\\": ""
  8597. }
  8598. },
  8599. "notification-url": "https://packagist.org/downloads/",
  8600. "license": [
  8601. "MIT"
  8602. ],
  8603. "authors": [
  8604. {
  8605. "name": "Nicolas Grekas",
  8606. "email": "p@tchwork.com"
  8607. },
  8608. {
  8609. "name": "Symfony Community",
  8610. "homepage": "https://symfony.com/contributors"
  8611. }
  8612. ],
  8613. "description": "Symfony polyfill for the Iconv extension",
  8614. "homepage": "https://symfony.com",
  8615. "keywords": [
  8616. "compatibility",
  8617. "iconv",
  8618. "polyfill",
  8619. "portable",
  8620. "shim"
  8621. ],
  8622. "support": {
  8623. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8624. },
  8625. "funding": [
  8626. {
  8627. "url": "https://symfony.com/sponsor",
  8628. "type": "custom"
  8629. },
  8630. {
  8631. "url": "https://github.com/fabpot",
  8632. "type": "github"
  8633. },
  8634. {
  8635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8636. "type": "tidelift"
  8637. }
  8638. ],
  8639. "time": "2020-05-12T16:47:27+00:00"
  8640. },
  8641. {
  8642. "name": "symfony/polyfill-intl-idn",
  8643. "version": "v1.17.0",
  8644. "source": {
  8645. "type": "git",
  8646. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8647. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8648. },
  8649. "dist": {
  8650. "type": "zip",
  8651. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8652. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8653. "shasum": ""
  8654. },
  8655. "require": {
  8656. "php": ">=5.3.3",
  8657. "symfony/polyfill-mbstring": "^1.3",
  8658. "symfony/polyfill-php72": "^1.10"
  8659. },
  8660. "suggest": {
  8661. "ext-intl": "For best performance"
  8662. },
  8663. "type": "library",
  8664. "extra": {
  8665. "branch-alias": {
  8666. "dev-master": "1.17-dev"
  8667. }
  8668. },
  8669. "autoload": {
  8670. "files": [
  8671. "bootstrap.php"
  8672. ],
  8673. "psr-4": {
  8674. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8675. }
  8676. },
  8677. "notification-url": "https://packagist.org/downloads/",
  8678. "license": [
  8679. "MIT"
  8680. ],
  8681. "authors": [
  8682. {
  8683. "name": "Laurent Bassin",
  8684. "email": "laurent@bassin.info"
  8685. },
  8686. {
  8687. "name": "Symfony Community",
  8688. "homepage": "https://symfony.com/contributors"
  8689. }
  8690. ],
  8691. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8692. "homepage": "https://symfony.com",
  8693. "keywords": [
  8694. "compatibility",
  8695. "idn",
  8696. "intl",
  8697. "polyfill",
  8698. "portable",
  8699. "shim"
  8700. ],
  8701. "support": {
  8702. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8703. },
  8704. "funding": [
  8705. {
  8706. "url": "https://symfony.com/sponsor",
  8707. "type": "custom"
  8708. },
  8709. {
  8710. "url": "https://github.com/fabpot",
  8711. "type": "github"
  8712. },
  8713. {
  8714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8715. "type": "tidelift"
  8716. }
  8717. ],
  8718. "time": "2020-05-12T16:47:27+00:00"
  8719. },
  8720. {
  8721. "name": "symfony/polyfill-mbstring",
  8722. "version": "v1.17.0",
  8723. "source": {
  8724. "type": "git",
  8725. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8726. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8727. },
  8728. "dist": {
  8729. "type": "zip",
  8730. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8731. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8732. "shasum": ""
  8733. },
  8734. "require": {
  8735. "php": ">=5.3.3"
  8736. },
  8737. "suggest": {
  8738. "ext-mbstring": "For best performance"
  8739. },
  8740. "type": "library",
  8741. "extra": {
  8742. "branch-alias": {
  8743. "dev-master": "1.17-dev"
  8744. }
  8745. },
  8746. "autoload": {
  8747. "files": [
  8748. "bootstrap.php"
  8749. ],
  8750. "psr-4": {
  8751. "Symfony\\Polyfill\\Mbstring\\": ""
  8752. }
  8753. },
  8754. "notification-url": "https://packagist.org/downloads/",
  8755. "license": [
  8756. "MIT"
  8757. ],
  8758. "authors": [
  8759. {
  8760. "name": "Nicolas Grekas",
  8761. "email": "p@tchwork.com"
  8762. },
  8763. {
  8764. "name": "Symfony Community",
  8765. "homepage": "https://symfony.com/contributors"
  8766. }
  8767. ],
  8768. "description": "Symfony polyfill for the Mbstring extension",
  8769. "homepage": "https://symfony.com",
  8770. "keywords": [
  8771. "compatibility",
  8772. "mbstring",
  8773. "polyfill",
  8774. "portable",
  8775. "shim"
  8776. ],
  8777. "support": {
  8778. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8779. },
  8780. "funding": [
  8781. {
  8782. "url": "https://symfony.com/sponsor",
  8783. "type": "custom"
  8784. },
  8785. {
  8786. "url": "https://github.com/fabpot",
  8787. "type": "github"
  8788. },
  8789. {
  8790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8791. "type": "tidelift"
  8792. }
  8793. ],
  8794. "time": "2020-05-12T16:47:27+00:00"
  8795. },
  8796. {
  8797. "name": "symfony/polyfill-php56",
  8798. "version": "v1.17.0",
  8799. "source": {
  8800. "type": "git",
  8801. "url": "https://github.com/symfony/polyfill-php56.git",
  8802. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8803. },
  8804. "dist": {
  8805. "type": "zip",
  8806. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8807. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8808. "shasum": ""
  8809. },
  8810. "require": {
  8811. "php": ">=5.3.3",
  8812. "symfony/polyfill-util": "~1.0"
  8813. },
  8814. "type": "library",
  8815. "extra": {
  8816. "branch-alias": {
  8817. "dev-master": "1.17-dev"
  8818. }
  8819. },
  8820. "autoload": {
  8821. "files": [
  8822. "bootstrap.php"
  8823. ],
  8824. "psr-4": {
  8825. "Symfony\\Polyfill\\Php56\\": ""
  8826. }
  8827. },
  8828. "notification-url": "https://packagist.org/downloads/",
  8829. "license": [
  8830. "MIT"
  8831. ],
  8832. "authors": [
  8833. {
  8834. "name": "Nicolas Grekas",
  8835. "email": "p@tchwork.com"
  8836. },
  8837. {
  8838. "name": "Symfony Community",
  8839. "homepage": "https://symfony.com/contributors"
  8840. }
  8841. ],
  8842. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8843. "homepage": "https://symfony.com",
  8844. "keywords": [
  8845. "compatibility",
  8846. "polyfill",
  8847. "portable",
  8848. "shim"
  8849. ],
  8850. "support": {
  8851. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8852. },
  8853. "funding": [
  8854. {
  8855. "url": "https://symfony.com/sponsor",
  8856. "type": "custom"
  8857. },
  8858. {
  8859. "url": "https://github.com/fabpot",
  8860. "type": "github"
  8861. },
  8862. {
  8863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8864. "type": "tidelift"
  8865. }
  8866. ],
  8867. "time": "2020-05-12T16:47:27+00:00"
  8868. },
  8869. {
  8870. "name": "symfony/polyfill-php70",
  8871. "version": "v1.17.0",
  8872. "source": {
  8873. "type": "git",
  8874. "url": "https://github.com/symfony/polyfill-php70.git",
  8875. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8876. },
  8877. "dist": {
  8878. "type": "zip",
  8879. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8880. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8881. "shasum": ""
  8882. },
  8883. "require": {
  8884. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8885. "php": ">=5.3.3"
  8886. },
  8887. "type": "library",
  8888. "extra": {
  8889. "branch-alias": {
  8890. "dev-master": "1.17-dev"
  8891. }
  8892. },
  8893. "autoload": {
  8894. "files": [
  8895. "bootstrap.php"
  8896. ],
  8897. "psr-4": {
  8898. "Symfony\\Polyfill\\Php70\\": ""
  8899. },
  8900. "classmap": [
  8901. "Resources/stubs"
  8902. ]
  8903. },
  8904. "notification-url": "https://packagist.org/downloads/",
  8905. "license": [
  8906. "MIT"
  8907. ],
  8908. "authors": [
  8909. {
  8910. "name": "Nicolas Grekas",
  8911. "email": "p@tchwork.com"
  8912. },
  8913. {
  8914. "name": "Symfony Community",
  8915. "homepage": "https://symfony.com/contributors"
  8916. }
  8917. ],
  8918. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8919. "homepage": "https://symfony.com",
  8920. "keywords": [
  8921. "compatibility",
  8922. "polyfill",
  8923. "portable",
  8924. "shim"
  8925. ],
  8926. "support": {
  8927. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8928. },
  8929. "funding": [
  8930. {
  8931. "url": "https://symfony.com/sponsor",
  8932. "type": "custom"
  8933. },
  8934. {
  8935. "url": "https://github.com/fabpot",
  8936. "type": "github"
  8937. },
  8938. {
  8939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8940. "type": "tidelift"
  8941. }
  8942. ],
  8943. "time": "2020-05-12T16:47:27+00:00"
  8944. },
  8945. {
  8946. "name": "symfony/polyfill-php72",
  8947. "version": "v1.17.0",
  8948. "source": {
  8949. "type": "git",
  8950. "url": "https://github.com/symfony/polyfill-php72.git",
  8951. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8952. },
  8953. "dist": {
  8954. "type": "zip",
  8955. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8956. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8957. "shasum": ""
  8958. },
  8959. "require": {
  8960. "php": ">=5.3.3"
  8961. },
  8962. "type": "library",
  8963. "extra": {
  8964. "branch-alias": {
  8965. "dev-master": "1.17-dev"
  8966. }
  8967. },
  8968. "autoload": {
  8969. "files": [
  8970. "bootstrap.php"
  8971. ],
  8972. "psr-4": {
  8973. "Symfony\\Polyfill\\Php72\\": ""
  8974. }
  8975. },
  8976. "notification-url": "https://packagist.org/downloads/",
  8977. "license": [
  8978. "MIT"
  8979. ],
  8980. "authors": [
  8981. {
  8982. "name": "Nicolas Grekas",
  8983. "email": "p@tchwork.com"
  8984. },
  8985. {
  8986. "name": "Symfony Community",
  8987. "homepage": "https://symfony.com/contributors"
  8988. }
  8989. ],
  8990. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8991. "homepage": "https://symfony.com",
  8992. "keywords": [
  8993. "compatibility",
  8994. "polyfill",
  8995. "portable",
  8996. "shim"
  8997. ],
  8998. "support": {
  8999. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  9000. },
  9001. "funding": [
  9002. {
  9003. "url": "https://symfony.com/sponsor",
  9004. "type": "custom"
  9005. },
  9006. {
  9007. "url": "https://github.com/fabpot",
  9008. "type": "github"
  9009. },
  9010. {
  9011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9012. "type": "tidelift"
  9013. }
  9014. ],
  9015. "time": "2020-05-12T16:47:27+00:00"
  9016. },
  9017. {
  9018. "name": "symfony/polyfill-php80",
  9019. "version": "v1.31.0",
  9020. "source": {
  9021. "type": "git",
  9022. "url": "https://github.com/symfony/polyfill-php80.git",
  9023. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9024. },
  9025. "dist": {
  9026. "type": "zip",
  9027. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9028. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9029. "shasum": ""
  9030. },
  9031. "require": {
  9032. "php": ">=7.2"
  9033. },
  9034. "type": "library",
  9035. "extra": {
  9036. "thanks": {
  9037. "name": "symfony/polyfill",
  9038. "url": "https://github.com/symfony/polyfill"
  9039. }
  9040. },
  9041. "autoload": {
  9042. "files": [
  9043. "bootstrap.php"
  9044. ],
  9045. "psr-4": {
  9046. "Symfony\\Polyfill\\Php80\\": ""
  9047. },
  9048. "classmap": [
  9049. "Resources/stubs"
  9050. ]
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "MIT"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Ion Bazan",
  9059. "email": "ion.bazan@gmail.com"
  9060. },
  9061. {
  9062. "name": "Nicolas Grekas",
  9063. "email": "p@tchwork.com"
  9064. },
  9065. {
  9066. "name": "Symfony Community",
  9067. "homepage": "https://symfony.com/contributors"
  9068. }
  9069. ],
  9070. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9071. "homepage": "https://symfony.com",
  9072. "keywords": [
  9073. "compatibility",
  9074. "polyfill",
  9075. "portable",
  9076. "shim"
  9077. ],
  9078. "support": {
  9079. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9080. },
  9081. "funding": [
  9082. {
  9083. "url": "https://symfony.com/sponsor",
  9084. "type": "custom"
  9085. },
  9086. {
  9087. "url": "https://github.com/fabpot",
  9088. "type": "github"
  9089. },
  9090. {
  9091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9092. "type": "tidelift"
  9093. }
  9094. ],
  9095. "time": "2024-09-09T11:45:10+00:00"
  9096. },
  9097. {
  9098. "name": "symfony/polyfill-util",
  9099. "version": "v1.17.0",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/symfony/polyfill-util.git",
  9103. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9108. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "php": ">=5.3.3"
  9113. },
  9114. "type": "library",
  9115. "extra": {
  9116. "branch-alias": {
  9117. "dev-master": "1.17-dev"
  9118. }
  9119. },
  9120. "autoload": {
  9121. "psr-4": {
  9122. "Symfony\\Polyfill\\Util\\": ""
  9123. }
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "MIT"
  9128. ],
  9129. "authors": [
  9130. {
  9131. "name": "Nicolas Grekas",
  9132. "email": "p@tchwork.com"
  9133. },
  9134. {
  9135. "name": "Symfony Community",
  9136. "homepage": "https://symfony.com/contributors"
  9137. }
  9138. ],
  9139. "description": "Symfony utilities for portability of PHP codes",
  9140. "homepage": "https://symfony.com",
  9141. "keywords": [
  9142. "compat",
  9143. "compatibility",
  9144. "polyfill",
  9145. "shim"
  9146. ],
  9147. "support": {
  9148. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://symfony.com/sponsor",
  9153. "type": "custom"
  9154. },
  9155. {
  9156. "url": "https://github.com/fabpot",
  9157. "type": "github"
  9158. },
  9159. {
  9160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9161. "type": "tidelift"
  9162. }
  9163. ],
  9164. "time": "2020-05-12T16:14:59+00:00"
  9165. },
  9166. {
  9167. "name": "symfony/process",
  9168. "version": "v3.4.41",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/symfony/process.git",
  9172. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9177. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9178. "shasum": ""
  9179. },
  9180. "require": {
  9181. "php": "^5.5.9|>=7.0.8"
  9182. },
  9183. "type": "library",
  9184. "extra": {
  9185. "branch-alias": {
  9186. "dev-master": "3.4-dev"
  9187. }
  9188. },
  9189. "autoload": {
  9190. "psr-4": {
  9191. "Symfony\\Component\\Process\\": ""
  9192. },
  9193. "exclude-from-classmap": [
  9194. "/Tests/"
  9195. ]
  9196. },
  9197. "notification-url": "https://packagist.org/downloads/",
  9198. "license": [
  9199. "MIT"
  9200. ],
  9201. "authors": [
  9202. {
  9203. "name": "Fabien Potencier",
  9204. "email": "fabien@symfony.com"
  9205. },
  9206. {
  9207. "name": "Symfony Community",
  9208. "homepage": "https://symfony.com/contributors"
  9209. }
  9210. ],
  9211. "description": "Symfony Process Component",
  9212. "homepage": "https://symfony.com",
  9213. "support": {
  9214. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9215. },
  9216. "funding": [
  9217. {
  9218. "url": "https://symfony.com/sponsor",
  9219. "type": "custom"
  9220. },
  9221. {
  9222. "url": "https://github.com/fabpot",
  9223. "type": "github"
  9224. },
  9225. {
  9226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9227. "type": "tidelift"
  9228. }
  9229. ],
  9230. "time": "2020-05-23T17:05:51+00:00"
  9231. },
  9232. {
  9233. "name": "symfony/psr-http-message-bridge",
  9234. "version": "v1.1.2",
  9235. "source": {
  9236. "type": "git",
  9237. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9238. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9239. },
  9240. "dist": {
  9241. "type": "zip",
  9242. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9243. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9244. "shasum": ""
  9245. },
  9246. "require": {
  9247. "php": "^5.3.3 || ^7.0",
  9248. "psr/http-message": "^1.0",
  9249. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9250. },
  9251. "require-dev": {
  9252. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9253. },
  9254. "suggest": {
  9255. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9256. },
  9257. "type": "symfony-bridge",
  9258. "extra": {
  9259. "branch-alias": {
  9260. "dev-master": "1.1-dev"
  9261. }
  9262. },
  9263. "autoload": {
  9264. "psr-4": {
  9265. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9266. },
  9267. "exclude-from-classmap": [
  9268. "/Tests/"
  9269. ]
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "MIT"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "Symfony Community",
  9278. "homepage": "http://symfony.com/contributors"
  9279. },
  9280. {
  9281. "name": "Fabien Potencier",
  9282. "email": "fabien@symfony.com"
  9283. }
  9284. ],
  9285. "description": "PSR HTTP message bridge",
  9286. "homepage": "http://symfony.com",
  9287. "keywords": [
  9288. "http",
  9289. "http-message",
  9290. "psr-17",
  9291. "psr-7"
  9292. ],
  9293. "support": {
  9294. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9295. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9296. },
  9297. "time": "2019-04-03T17:09:40+00:00"
  9298. },
  9299. {
  9300. "name": "symfony/routing",
  9301. "version": "v3.4.41",
  9302. "source": {
  9303. "type": "git",
  9304. "url": "https://github.com/symfony/routing.git",
  9305. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9306. },
  9307. "dist": {
  9308. "type": "zip",
  9309. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9310. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9311. "shasum": ""
  9312. },
  9313. "require": {
  9314. "php": "^5.5.9|>=7.0.8"
  9315. },
  9316. "conflict": {
  9317. "symfony/config": "<3.3.1",
  9318. "symfony/dependency-injection": "<3.3",
  9319. "symfony/yaml": "<3.4"
  9320. },
  9321. "require-dev": {
  9322. "doctrine/annotations": "~1.0",
  9323. "psr/log": "~1.0",
  9324. "symfony/config": "^3.3.1|~4.0",
  9325. "symfony/dependency-injection": "~3.3|~4.0",
  9326. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9327. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9328. "symfony/yaml": "~3.4|~4.0"
  9329. },
  9330. "suggest": {
  9331. "doctrine/annotations": "For using the annotation loader",
  9332. "symfony/config": "For using the all-in-one router or any loader",
  9333. "symfony/expression-language": "For using expression matching",
  9334. "symfony/http-foundation": "For using a Symfony Request object",
  9335. "symfony/yaml": "For using the YAML loader"
  9336. },
  9337. "type": "library",
  9338. "extra": {
  9339. "branch-alias": {
  9340. "dev-master": "3.4-dev"
  9341. }
  9342. },
  9343. "autoload": {
  9344. "psr-4": {
  9345. "Symfony\\Component\\Routing\\": ""
  9346. },
  9347. "exclude-from-classmap": [
  9348. "/Tests/"
  9349. ]
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "MIT"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Fabien Potencier",
  9358. "email": "fabien@symfony.com"
  9359. },
  9360. {
  9361. "name": "Symfony Community",
  9362. "homepage": "https://symfony.com/contributors"
  9363. }
  9364. ],
  9365. "description": "Symfony Routing Component",
  9366. "homepage": "https://symfony.com",
  9367. "keywords": [
  9368. "router",
  9369. "routing",
  9370. "uri",
  9371. "url"
  9372. ],
  9373. "support": {
  9374. "source": "https://github.com/symfony/routing/tree/3.4"
  9375. },
  9376. "funding": [
  9377. {
  9378. "url": "https://symfony.com/sponsor",
  9379. "type": "custom"
  9380. },
  9381. {
  9382. "url": "https://github.com/fabpot",
  9383. "type": "github"
  9384. },
  9385. {
  9386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9387. "type": "tidelift"
  9388. }
  9389. ],
  9390. "time": "2020-05-30T19:50:06+00:00"
  9391. },
  9392. {
  9393. "name": "symfony/serializer",
  9394. "version": "v3.4.41",
  9395. "source": {
  9396. "type": "git",
  9397. "url": "https://github.com/symfony/serializer.git",
  9398. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9399. },
  9400. "dist": {
  9401. "type": "zip",
  9402. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9403. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9404. "shasum": ""
  9405. },
  9406. "require": {
  9407. "php": "^5.5.9|>=7.0.8",
  9408. "symfony/polyfill-ctype": "~1.8"
  9409. },
  9410. "conflict": {
  9411. "phpdocumentor/type-resolver": "<0.2.1",
  9412. "symfony/dependency-injection": "<3.2",
  9413. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9414. "symfony/property-info": "<3.1",
  9415. "symfony/yaml": "<3.4"
  9416. },
  9417. "require-dev": {
  9418. "doctrine/annotations": "~1.0",
  9419. "doctrine/cache": "~1.0",
  9420. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9421. "symfony/cache": "~3.1|~4.0",
  9422. "symfony/config": "~2.8|~3.0|~4.0",
  9423. "symfony/dependency-injection": "~3.2|~4.0",
  9424. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9425. "symfony/property-access": "~2.8|~3.0|~4.0",
  9426. "symfony/property-info": "^3.4.13|~4.0",
  9427. "symfony/yaml": "~3.4|~4.0"
  9428. },
  9429. "suggest": {
  9430. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9431. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9432. "psr/cache-implementation": "For using the metadata cache.",
  9433. "symfony/config": "For using the XML mapping loader.",
  9434. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9435. "symfony/property-access": "For using the ObjectNormalizer.",
  9436. "symfony/property-info": "To deserialize relations.",
  9437. "symfony/yaml": "For using the default YAML mapping loader."
  9438. },
  9439. "type": "library",
  9440. "extra": {
  9441. "branch-alias": {
  9442. "dev-master": "3.4-dev"
  9443. }
  9444. },
  9445. "autoload": {
  9446. "psr-4": {
  9447. "Symfony\\Component\\Serializer\\": ""
  9448. },
  9449. "exclude-from-classmap": [
  9450. "/Tests/"
  9451. ]
  9452. },
  9453. "notification-url": "https://packagist.org/downloads/",
  9454. "license": [
  9455. "MIT"
  9456. ],
  9457. "authors": [
  9458. {
  9459. "name": "Fabien Potencier",
  9460. "email": "fabien@symfony.com"
  9461. },
  9462. {
  9463. "name": "Symfony Community",
  9464. "homepage": "https://symfony.com/contributors"
  9465. }
  9466. ],
  9467. "description": "Symfony Serializer Component",
  9468. "homepage": "https://symfony.com",
  9469. "support": {
  9470. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9471. },
  9472. "funding": [
  9473. {
  9474. "url": "https://symfony.com/sponsor",
  9475. "type": "custom"
  9476. },
  9477. {
  9478. "url": "https://github.com/fabpot",
  9479. "type": "github"
  9480. },
  9481. {
  9482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9483. "type": "tidelift"
  9484. }
  9485. ],
  9486. "time": "2020-05-30T18:58:05+00:00"
  9487. },
  9488. {
  9489. "name": "symfony/translation",
  9490. "version": "v3.4.41",
  9491. "source": {
  9492. "type": "git",
  9493. "url": "https://github.com/symfony/translation.git",
  9494. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9495. },
  9496. "dist": {
  9497. "type": "zip",
  9498. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9499. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9500. "shasum": ""
  9501. },
  9502. "require": {
  9503. "php": "^5.5.9|>=7.0.8",
  9504. "symfony/polyfill-mbstring": "~1.0"
  9505. },
  9506. "conflict": {
  9507. "symfony/config": "<2.8",
  9508. "symfony/dependency-injection": "<3.4",
  9509. "symfony/yaml": "<3.4"
  9510. },
  9511. "require-dev": {
  9512. "psr/log": "~1.0",
  9513. "symfony/config": "~2.8|~3.0|~4.0",
  9514. "symfony/dependency-injection": "~3.4|~4.0",
  9515. "symfony/finder": "~2.8|~3.0|~4.0",
  9516. "symfony/http-kernel": "~3.4|~4.0",
  9517. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9518. "symfony/var-dumper": "~3.4|~4.0",
  9519. "symfony/yaml": "~3.4|~4.0"
  9520. },
  9521. "suggest": {
  9522. "psr/log-implementation": "To use logging capability in translator",
  9523. "symfony/config": "",
  9524. "symfony/yaml": ""
  9525. },
  9526. "type": "library",
  9527. "extra": {
  9528. "branch-alias": {
  9529. "dev-master": "3.4-dev"
  9530. }
  9531. },
  9532. "autoload": {
  9533. "psr-4": {
  9534. "Symfony\\Component\\Translation\\": ""
  9535. },
  9536. "exclude-from-classmap": [
  9537. "/Tests/"
  9538. ]
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "MIT"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Fabien Potencier",
  9547. "email": "fabien@symfony.com"
  9548. },
  9549. {
  9550. "name": "Symfony Community",
  9551. "homepage": "https://symfony.com/contributors"
  9552. }
  9553. ],
  9554. "description": "Symfony Translation Component",
  9555. "homepage": "https://symfony.com",
  9556. "support": {
  9557. "source": "https://github.com/symfony/translation/tree/3.4"
  9558. },
  9559. "funding": [
  9560. {
  9561. "url": "https://symfony.com/sponsor",
  9562. "type": "custom"
  9563. },
  9564. {
  9565. "url": "https://github.com/fabpot",
  9566. "type": "github"
  9567. },
  9568. {
  9569. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9570. "type": "tidelift"
  9571. }
  9572. ],
  9573. "time": "2020-05-30T18:58:05+00:00"
  9574. },
  9575. {
  9576. "name": "symfony/validator",
  9577. "version": "v3.4.41",
  9578. "source": {
  9579. "type": "git",
  9580. "url": "https://github.com/symfony/validator.git",
  9581. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9582. },
  9583. "dist": {
  9584. "type": "zip",
  9585. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9586. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9587. "shasum": ""
  9588. },
  9589. "require": {
  9590. "php": "^5.5.9|>=7.0.8",
  9591. "symfony/polyfill-ctype": "~1.8",
  9592. "symfony/polyfill-mbstring": "~1.0",
  9593. "symfony/translation": "~2.8|~3.0|~4.0"
  9594. },
  9595. "conflict": {
  9596. "doctrine/lexer": "<1.0.2",
  9597. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9598. "symfony/dependency-injection": "<3.3",
  9599. "symfony/http-kernel": "<3.3.5",
  9600. "symfony/yaml": "<3.4"
  9601. },
  9602. "require-dev": {
  9603. "doctrine/annotations": "~1.7",
  9604. "doctrine/cache": "~1.0",
  9605. "egulias/email-validator": "^2.1.10",
  9606. "symfony/cache": "~3.1|~4.0",
  9607. "symfony/config": "~2.8|~3.0|~4.0",
  9608. "symfony/dependency-injection": "~3.3|~4.0",
  9609. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9610. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9611. "symfony/http-kernel": "^3.3.5|~4.0",
  9612. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9613. "symfony/property-access": "~2.8|~3.0|~4.0",
  9614. "symfony/var-dumper": "~3.3|~4.0",
  9615. "symfony/yaml": "~3.4|~4.0"
  9616. },
  9617. "suggest": {
  9618. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9619. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9620. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9621. "psr/cache-implementation": "For using the metadata cache.",
  9622. "symfony/config": "",
  9623. "symfony/expression-language": "For using the Expression validator",
  9624. "symfony/http-foundation": "",
  9625. "symfony/intl": "",
  9626. "symfony/property-access": "For accessing properties within comparison constraints",
  9627. "symfony/yaml": ""
  9628. },
  9629. "type": "library",
  9630. "extra": {
  9631. "branch-alias": {
  9632. "dev-master": "3.4-dev"
  9633. }
  9634. },
  9635. "autoload": {
  9636. "psr-4": {
  9637. "Symfony\\Component\\Validator\\": ""
  9638. },
  9639. "exclude-from-classmap": [
  9640. "/Tests/"
  9641. ]
  9642. },
  9643. "notification-url": "https://packagist.org/downloads/",
  9644. "license": [
  9645. "MIT"
  9646. ],
  9647. "authors": [
  9648. {
  9649. "name": "Fabien Potencier",
  9650. "email": "fabien@symfony.com"
  9651. },
  9652. {
  9653. "name": "Symfony Community",
  9654. "homepage": "https://symfony.com/contributors"
  9655. }
  9656. ],
  9657. "description": "Symfony Validator Component",
  9658. "homepage": "https://symfony.com",
  9659. "support": {
  9660. "source": "https://github.com/symfony/validator/tree/3.4"
  9661. },
  9662. "funding": [
  9663. {
  9664. "url": "https://symfony.com/sponsor",
  9665. "type": "custom"
  9666. },
  9667. {
  9668. "url": "https://github.com/fabpot",
  9669. "type": "github"
  9670. },
  9671. {
  9672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9673. "type": "tidelift"
  9674. }
  9675. ],
  9676. "time": "2020-05-30T18:43:38+00:00"
  9677. },
  9678. {
  9679. "name": "symfony/var-dumper",
  9680. "version": "v4.4.47",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/symfony/var-dumper.git",
  9684. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9689. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9690. "shasum": ""
  9691. },
  9692. "require": {
  9693. "php": ">=7.1.3",
  9694. "symfony/polyfill-mbstring": "~1.0",
  9695. "symfony/polyfill-php72": "~1.5",
  9696. "symfony/polyfill-php80": "^1.16"
  9697. },
  9698. "conflict": {
  9699. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9700. "symfony/console": "<3.4"
  9701. },
  9702. "require-dev": {
  9703. "ext-iconv": "*",
  9704. "symfony/console": "^3.4|^4.0|^5.0",
  9705. "symfony/process": "^4.4|^5.0",
  9706. "twig/twig": "^1.43|^2.13|^3.0.4"
  9707. },
  9708. "suggest": {
  9709. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9710. "ext-intl": "To show region name in time zone dump",
  9711. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9712. },
  9713. "bin": [
  9714. "Resources/bin/var-dump-server"
  9715. ],
  9716. "type": "library",
  9717. "autoload": {
  9718. "files": [
  9719. "Resources/functions/dump.php"
  9720. ],
  9721. "psr-4": {
  9722. "Symfony\\Component\\VarDumper\\": ""
  9723. },
  9724. "exclude-from-classmap": [
  9725. "/Tests/"
  9726. ]
  9727. },
  9728. "notification-url": "https://packagist.org/downloads/",
  9729. "license": [
  9730. "MIT"
  9731. ],
  9732. "authors": [
  9733. {
  9734. "name": "Nicolas Grekas",
  9735. "email": "p@tchwork.com"
  9736. },
  9737. {
  9738. "name": "Symfony Community",
  9739. "homepage": "https://symfony.com/contributors"
  9740. }
  9741. ],
  9742. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9743. "homepage": "https://symfony.com",
  9744. "keywords": [
  9745. "debug",
  9746. "dump"
  9747. ],
  9748. "support": {
  9749. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9750. },
  9751. "funding": [
  9752. {
  9753. "url": "https://symfony.com/sponsor",
  9754. "type": "custom"
  9755. },
  9756. {
  9757. "url": "https://github.com/fabpot",
  9758. "type": "github"
  9759. },
  9760. {
  9761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9762. "type": "tidelift"
  9763. }
  9764. ],
  9765. "time": "2022-10-03T15:15:11+00:00"
  9766. },
  9767. {
  9768. "name": "symfony/yaml",
  9769. "version": "v3.4.41",
  9770. "source": {
  9771. "type": "git",
  9772. "url": "https://github.com/symfony/yaml.git",
  9773. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9774. },
  9775. "dist": {
  9776. "type": "zip",
  9777. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9778. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9779. "shasum": ""
  9780. },
  9781. "require": {
  9782. "php": "^5.5.9|>=7.0.8",
  9783. "symfony/polyfill-ctype": "~1.8"
  9784. },
  9785. "conflict": {
  9786. "symfony/console": "<3.4"
  9787. },
  9788. "require-dev": {
  9789. "symfony/console": "~3.4|~4.0"
  9790. },
  9791. "suggest": {
  9792. "symfony/console": "For validating YAML files using the lint command"
  9793. },
  9794. "type": "library",
  9795. "extra": {
  9796. "branch-alias": {
  9797. "dev-master": "3.4-dev"
  9798. }
  9799. },
  9800. "autoload": {
  9801. "psr-4": {
  9802. "Symfony\\Component\\Yaml\\": ""
  9803. },
  9804. "exclude-from-classmap": [
  9805. "/Tests/"
  9806. ]
  9807. },
  9808. "notification-url": "https://packagist.org/downloads/",
  9809. "license": [
  9810. "MIT"
  9811. ],
  9812. "authors": [
  9813. {
  9814. "name": "Fabien Potencier",
  9815. "email": "fabien@symfony.com"
  9816. },
  9817. {
  9818. "name": "Symfony Community",
  9819. "homepage": "https://symfony.com/contributors"
  9820. }
  9821. ],
  9822. "description": "Symfony Yaml Component",
  9823. "homepage": "https://symfony.com",
  9824. "support": {
  9825. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9826. },
  9827. "funding": [
  9828. {
  9829. "url": "https://symfony.com/sponsor",
  9830. "type": "custom"
  9831. },
  9832. {
  9833. "url": "https://github.com/fabpot",
  9834. "type": "github"
  9835. },
  9836. {
  9837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9838. "type": "tidelift"
  9839. }
  9840. ],
  9841. "time": "2020-05-11T07:51:54+00:00"
  9842. },
  9843. {
  9844. "name": "twig/twig",
  9845. "version": "v1.42.5",
  9846. "source": {
  9847. "type": "git",
  9848. "url": "https://github.com/twigphp/Twig.git",
  9849. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9850. },
  9851. "dist": {
  9852. "type": "zip",
  9853. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9854. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9855. "shasum": ""
  9856. },
  9857. "require": {
  9858. "php": ">=5.5.0",
  9859. "symfony/polyfill-ctype": "^1.8"
  9860. },
  9861. "require-dev": {
  9862. "psr/container": "^1.0",
  9863. "symfony/phpunit-bridge": "^4.4|^5.0"
  9864. },
  9865. "type": "library",
  9866. "extra": {
  9867. "branch-alias": {
  9868. "dev-master": "1.42-dev"
  9869. }
  9870. },
  9871. "autoload": {
  9872. "psr-0": {
  9873. "Twig_": "lib/"
  9874. },
  9875. "psr-4": {
  9876. "Twig\\": "src/"
  9877. }
  9878. },
  9879. "notification-url": "https://packagist.org/downloads/",
  9880. "license": [
  9881. "BSD-3-Clause"
  9882. ],
  9883. "authors": [
  9884. {
  9885. "name": "Fabien Potencier",
  9886. "email": "fabien@symfony.com",
  9887. "homepage": "http://fabien.potencier.org",
  9888. "role": "Lead Developer"
  9889. },
  9890. {
  9891. "name": "Twig Team",
  9892. "role": "Contributors"
  9893. },
  9894. {
  9895. "name": "Armin Ronacher",
  9896. "email": "armin.ronacher@active-4.com",
  9897. "role": "Project Founder"
  9898. }
  9899. ],
  9900. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9901. "homepage": "https://twig.symfony.com",
  9902. "keywords": [
  9903. "templating"
  9904. ],
  9905. "support": {
  9906. "issues": "https://github.com/twigphp/Twig/issues",
  9907. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9908. },
  9909. "time": "2020-02-11T05:59:23+00:00"
  9910. },
  9911. {
  9912. "name": "typo3/phar-stream-wrapper",
  9913. "version": "v3.1.4",
  9914. "source": {
  9915. "type": "git",
  9916. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9917. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9918. },
  9919. "dist": {
  9920. "type": "zip",
  9921. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9922. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9923. "shasum": ""
  9924. },
  9925. "require": {
  9926. "ext-json": "*",
  9927. "php": "^7.0"
  9928. },
  9929. "require-dev": {
  9930. "ext-xdebug": "*",
  9931. "phpunit/phpunit": "^6.5"
  9932. },
  9933. "suggest": {
  9934. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9935. },
  9936. "type": "library",
  9937. "extra": {
  9938. "branch-alias": {
  9939. "dev-master": "v3.x-dev"
  9940. }
  9941. },
  9942. "autoload": {
  9943. "psr-4": {
  9944. "TYPO3\\PharStreamWrapper\\": "src/"
  9945. }
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "MIT"
  9950. ],
  9951. "description": "Interceptors for PHP's native phar:// stream handling",
  9952. "homepage": "https://typo3.org/",
  9953. "keywords": [
  9954. "phar",
  9955. "php",
  9956. "security",
  9957. "stream-wrapper"
  9958. ],
  9959. "support": {
  9960. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  9961. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  9962. },
  9963. "time": "2019-12-10T11:53:27+00:00"
  9964. },
  9965. {
  9966. "name": "vlucas/phpdotenv",
  9967. "version": "v2.6.9",
  9968. "source": {
  9969. "type": "git",
  9970. "url": "https://github.com/vlucas/phpdotenv.git",
  9971. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  9972. },
  9973. "dist": {
  9974. "type": "zip",
  9975. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  9976. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  9977. "shasum": ""
  9978. },
  9979. "require": {
  9980. "php": "^5.3.9 || ^7.0 || ^8.0",
  9981. "symfony/polyfill-ctype": "^1.17"
  9982. },
  9983. "require-dev": {
  9984. "ext-filter": "*",
  9985. "ext-pcre": "*",
  9986. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  9987. },
  9988. "suggest": {
  9989. "ext-filter": "Required to use the boolean validator.",
  9990. "ext-pcre": "Required to use most of the library."
  9991. },
  9992. "type": "library",
  9993. "extra": {
  9994. "branch-alias": {
  9995. "dev-master": "2.6-dev"
  9996. }
  9997. },
  9998. "autoload": {
  9999. "psr-4": {
  10000. "Dotenv\\": "src/"
  10001. }
  10002. },
  10003. "notification-url": "https://packagist.org/downloads/",
  10004. "license": [
  10005. "BSD-3-Clause"
  10006. ],
  10007. "authors": [
  10008. {
  10009. "name": "Graham Campbell",
  10010. "email": "hello@gjcampbell.co.uk",
  10011. "homepage": "https://github.com/GrahamCampbell"
  10012. },
  10013. {
  10014. "name": "Vance Lucas",
  10015. "email": "vance@vancelucas.com",
  10016. "homepage": "https://github.com/vlucas"
  10017. }
  10018. ],
  10019. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10020. "keywords": [
  10021. "dotenv",
  10022. "env",
  10023. "environment"
  10024. ],
  10025. "support": {
  10026. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10027. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10028. },
  10029. "funding": [
  10030. {
  10031. "url": "https://github.com/GrahamCampbell",
  10032. "type": "github"
  10033. },
  10034. {
  10035. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10036. "type": "tidelift"
  10037. }
  10038. ],
  10039. "time": "2021-12-12T22:59:22+00:00"
  10040. },
  10041. {
  10042. "name": "webflo/drupal-finder",
  10043. "version": "1.2.2",
  10044. "source": {
  10045. "type": "git",
  10046. "url": "https://github.com/webflo/drupal-finder.git",
  10047. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  10048. },
  10049. "dist": {
  10050. "type": "zip",
  10051. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10052. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10053. "shasum": ""
  10054. },
  10055. "require": {
  10056. "ext-json": "*"
  10057. },
  10058. "require-dev": {
  10059. "mikey179/vfsstream": "^1.6",
  10060. "phpunit/phpunit": "^4.8"
  10061. },
  10062. "type": "library",
  10063. "autoload": {
  10064. "classmap": [
  10065. "src/DrupalFinder.php"
  10066. ]
  10067. },
  10068. "notification-url": "https://packagist.org/downloads/",
  10069. "license": [
  10070. "GPL-2.0-or-later"
  10071. ],
  10072. "authors": [
  10073. {
  10074. "name": "Florian Weber",
  10075. "email": "florian@webflo.org"
  10076. }
  10077. ],
  10078. "description": "Helper class to locate a Drupal installation from a given path.",
  10079. "support": {
  10080. "issues": "https://github.com/webflo/drupal-finder/issues",
  10081. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  10082. },
  10083. "time": "2020-10-27T09:42:17+00:00"
  10084. },
  10085. {
  10086. "name": "webmozart/assert",
  10087. "version": "1.11.0",
  10088. "source": {
  10089. "type": "git",
  10090. "url": "https://github.com/webmozarts/assert.git",
  10091. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10092. },
  10093. "dist": {
  10094. "type": "zip",
  10095. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10096. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10097. "shasum": ""
  10098. },
  10099. "require": {
  10100. "ext-ctype": "*",
  10101. "php": "^7.2 || ^8.0"
  10102. },
  10103. "conflict": {
  10104. "phpstan/phpstan": "<0.12.20",
  10105. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10106. },
  10107. "require-dev": {
  10108. "phpunit/phpunit": "^8.5.13"
  10109. },
  10110. "type": "library",
  10111. "extra": {
  10112. "branch-alias": {
  10113. "dev-master": "1.10-dev"
  10114. }
  10115. },
  10116. "autoload": {
  10117. "psr-4": {
  10118. "Webmozart\\Assert\\": "src/"
  10119. }
  10120. },
  10121. "notification-url": "https://packagist.org/downloads/",
  10122. "license": [
  10123. "MIT"
  10124. ],
  10125. "authors": [
  10126. {
  10127. "name": "Bernhard Schussek",
  10128. "email": "bschussek@gmail.com"
  10129. }
  10130. ],
  10131. "description": "Assertions to validate method input/output with nice error messages.",
  10132. "keywords": [
  10133. "assert",
  10134. "check",
  10135. "validate"
  10136. ],
  10137. "support": {
  10138. "issues": "https://github.com/webmozarts/assert/issues",
  10139. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10140. },
  10141. "time": "2022-06-03T18:03:27+00:00"
  10142. },
  10143. {
  10144. "name": "webmozart/path-util",
  10145. "version": "2.3.0",
  10146. "source": {
  10147. "type": "git",
  10148. "url": "https://github.com/webmozart/path-util.git",
  10149. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10150. },
  10151. "dist": {
  10152. "type": "zip",
  10153. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10154. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10155. "shasum": ""
  10156. },
  10157. "require": {
  10158. "php": ">=5.3.3",
  10159. "webmozart/assert": "~1.0"
  10160. },
  10161. "require-dev": {
  10162. "phpunit/phpunit": "^4.6",
  10163. "sebastian/version": "^1.0.1"
  10164. },
  10165. "type": "library",
  10166. "extra": {
  10167. "branch-alias": {
  10168. "dev-master": "2.3-dev"
  10169. }
  10170. },
  10171. "autoload": {
  10172. "psr-4": {
  10173. "Webmozart\\PathUtil\\": "src/"
  10174. }
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "MIT"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Bernhard Schussek",
  10183. "email": "bschussek@gmail.com"
  10184. }
  10185. ],
  10186. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10187. "support": {
  10188. "issues": "https://github.com/webmozart/path-util/issues",
  10189. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10190. },
  10191. "abandoned": "symfony/filesystem",
  10192. "time": "2015-12-17T08:42:14+00:00"
  10193. }
  10194. ],
  10195. "packages-dev": [],
  10196. "aliases": [],
  10197. "minimum-stability": "dev",
  10198. "stability-flags": {
  10199. "drupal/better_messages": 15,
  10200. "drupal/bulkdelete": 20,
  10201. "drupal/domain": 15,
  10202. "drupal/filefield_sources": 15,
  10203. "drupal/filter_perms": 15,
  10204. "drupal/linkit": 10,
  10205. "drupal/maillog": 10,
  10206. "drupal/synonyms": 15
  10207. },
  10208. "prefer-stable": true,
  10209. "prefer-lowest": false,
  10210. "platform": {
  10211. "php": ">=5.6"
  10212. },
  10213. "platform-dev": [],
  10214. "plugin-api-version": "2.6.0"
  10215. }