composer.lock 369 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085
  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": "1522891d2ebdbca3b91bd07da03a8bce",
  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/pathauto",
  4456. "version": "1.10.0",
  4457. "source": {
  4458. "type": "git",
  4459. "url": "https://git.drupalcode.org/project/pathauto.git",
  4460. "reference": "8.x-1.10"
  4461. },
  4462. "dist": {
  4463. "type": "zip",
  4464. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4465. "reference": "8.x-1.10",
  4466. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4467. },
  4468. "require": {
  4469. "drupal/core": "^8.8 || ^9",
  4470. "drupal/ctools": "*",
  4471. "drupal/token": "*"
  4472. },
  4473. "suggest": {
  4474. "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."
  4475. },
  4476. "type": "drupal-module",
  4477. "extra": {
  4478. "drupal": {
  4479. "version": "8.x-1.10",
  4480. "datestamp": "1650806739",
  4481. "security-coverage": {
  4482. "status": "covered",
  4483. "message": "Covered by Drupal's security advisory policy"
  4484. }
  4485. },
  4486. "drush": {
  4487. "services": {
  4488. "drush.services.yml": "^9 || ^10"
  4489. }
  4490. }
  4491. },
  4492. "notification-url": "https://packages.drupal.org/8/downloads",
  4493. "license": [
  4494. "GPL-2.0-or-later"
  4495. ],
  4496. "authors": [
  4497. {
  4498. "name": "Berdir",
  4499. "homepage": "https://www.drupal.org/user/214652"
  4500. },
  4501. {
  4502. "name": "Dave Reid",
  4503. "homepage": "https://www.drupal.org/user/53892"
  4504. },
  4505. {
  4506. "name": "Freso",
  4507. "homepage": "https://www.drupal.org/user/27504"
  4508. },
  4509. {
  4510. "name": "greggles",
  4511. "homepage": "https://www.drupal.org/user/36762"
  4512. }
  4513. ],
  4514. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4515. "homepage": "https://www.drupal.org/project/pathauto",
  4516. "support": {
  4517. "source": "https://cgit.drupalcode.org/pathauto",
  4518. "issues": "https://www.drupal.org/project/issues/pathauto",
  4519. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4520. }
  4521. },
  4522. {
  4523. "name": "drupal/profile",
  4524. "version": "1.4.0",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://git.drupalcode.org/project/profile.git",
  4528. "reference": "8.x-1.4"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4533. "reference": "8.x-1.4",
  4534. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4535. },
  4536. "require": {
  4537. "drupal/core": "^8.9 || ^9 || ^10",
  4538. "drupal/entity": "^1.0-rc2"
  4539. },
  4540. "require-dev": {
  4541. "drupal/token": "^1.7"
  4542. },
  4543. "type": "drupal-module",
  4544. "extra": {
  4545. "drupal": {
  4546. "version": "8.x-1.4",
  4547. "datestamp": "1652430373",
  4548. "security-coverage": {
  4549. "status": "covered",
  4550. "message": "Covered by Drupal's security advisory policy"
  4551. }
  4552. }
  4553. },
  4554. "notification-url": "https://packages.drupal.org/8/downloads",
  4555. "license": [
  4556. "GPL-2.0-or-later"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "bojanz",
  4561. "homepage": "https://www.drupal.org/user/86106"
  4562. },
  4563. {
  4564. "name": "daggerhart",
  4565. "homepage": "https://www.drupal.org/user/167806"
  4566. },
  4567. {
  4568. "name": "fago",
  4569. "homepage": "https://www.drupal.org/user/16747"
  4570. },
  4571. {
  4572. "name": "jsacksick",
  4573. "homepage": "https://www.drupal.org/user/972218"
  4574. },
  4575. {
  4576. "name": "mglaman",
  4577. "homepage": "https://www.drupal.org/user/2416470"
  4578. },
  4579. {
  4580. "name": "pcambra",
  4581. "homepage": "https://www.drupal.org/user/122101"
  4582. }
  4583. ],
  4584. "description": "Provides configurable user profiles.",
  4585. "homepage": "http://drupal.org/project/profile",
  4586. "support": {
  4587. "source": "https://git.drupalcode.org/project/profile"
  4588. }
  4589. },
  4590. {
  4591. "name": "drupal/redirect",
  4592. "version": "1.7.0",
  4593. "source": {
  4594. "type": "git",
  4595. "url": "https://git.drupalcode.org/project/redirect.git",
  4596. "reference": "8.x-1.7"
  4597. },
  4598. "dist": {
  4599. "type": "zip",
  4600. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip",
  4601. "reference": "8.x-1.7",
  4602. "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877"
  4603. },
  4604. "require": {
  4605. "drupal/core": "^8.8 || ^9"
  4606. },
  4607. "type": "drupal-module",
  4608. "extra": {
  4609. "drupal": {
  4610. "version": "8.x-1.7",
  4611. "datestamp": "1639380488",
  4612. "security-coverage": {
  4613. "status": "covered",
  4614. "message": "Covered by Drupal's security advisory policy"
  4615. }
  4616. }
  4617. },
  4618. "notification-url": "https://packages.drupal.org/8/downloads",
  4619. "license": [
  4620. "GPL-2.0-or-later"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "Berdir",
  4625. "homepage": "https://www.drupal.org/user/214652"
  4626. },
  4627. {
  4628. "name": "dave reid",
  4629. "homepage": "https://www.drupal.org/user/53892"
  4630. },
  4631. {
  4632. "name": "Kristen Pol",
  4633. "homepage": "https://www.drupal.org/user/8389"
  4634. },
  4635. {
  4636. "name": "pifagor",
  4637. "homepage": "https://www.drupal.org/user/2375692"
  4638. }
  4639. ],
  4640. "description": "Allows users to redirect from old URLs to new URLs.",
  4641. "homepage": "https://www.drupal.org/project/redirect",
  4642. "support": {
  4643. "source": "https://git.drupalcode.org/project/redirect"
  4644. }
  4645. },
  4646. {
  4647. "name": "drupal/redis",
  4648. "version": "1.5.0",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://git.drupalcode.org/project/redis.git",
  4652. "reference": "8.x-1.5"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4657. "reference": "8.x-1.5",
  4658. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4659. },
  4660. "require": {
  4661. "drupal/core": "^8.8 || ^9"
  4662. },
  4663. "suggest": {
  4664. "predis/predis": "^1.1.1"
  4665. },
  4666. "type": "drupal-module",
  4667. "extra": {
  4668. "drupal": {
  4669. "version": "8.x-1.5",
  4670. "datestamp": "1609972488",
  4671. "security-coverage": {
  4672. "status": "covered",
  4673. "message": "Covered by Drupal's security advisory policy"
  4674. }
  4675. }
  4676. },
  4677. "autoload": {
  4678. "psr-4": {
  4679. "Drupal\\redis\\": "src"
  4680. }
  4681. },
  4682. "notification-url": "https://packages.drupal.org/8/downloads",
  4683. "license": [
  4684. "GPL-2.0-or-later"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "berdir",
  4689. "homepage": "https://www.drupal.org/user/214652"
  4690. },
  4691. {
  4692. "name": "greg.1.anderson",
  4693. "homepage": "https://www.drupal.org/user/438598"
  4694. },
  4695. {
  4696. "name": "kporras07",
  4697. "homepage": "https://www.drupal.org/user/1349780"
  4698. },
  4699. {
  4700. "name": "pounard",
  4701. "homepage": "https://www.drupal.org/user/240164"
  4702. }
  4703. ],
  4704. "description": "Integration of Drupal with the Redis key-value store.",
  4705. "homepage": "https://www.drupal.org/project/redis",
  4706. "support": {
  4707. "source": "https://git.drupalcode.org/project/redis"
  4708. }
  4709. },
  4710. {
  4711. "name": "drupal/restui",
  4712. "version": "1.21.0",
  4713. "source": {
  4714. "type": "git",
  4715. "url": "https://git.drupalcode.org/project/restui.git",
  4716. "reference": "8.x-1.21"
  4717. },
  4718. "dist": {
  4719. "type": "zip",
  4720. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4721. "reference": "8.x-1.21",
  4722. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4723. },
  4724. "require": {
  4725. "drupal/core": "^8.7.7 || ^9 || ^10"
  4726. },
  4727. "type": "drupal-module",
  4728. "extra": {
  4729. "drupal": {
  4730. "version": "8.x-1.21",
  4731. "datestamp": "1659086914",
  4732. "security-coverage": {
  4733. "status": "covered",
  4734. "message": "Covered by Drupal's security advisory policy"
  4735. }
  4736. }
  4737. },
  4738. "notification-url": "https://packages.drupal.org/8/downloads",
  4739. "license": [
  4740. "GPL-2.0-or-later"
  4741. ],
  4742. "authors": [
  4743. {
  4744. "name": "-enzo-",
  4745. "homepage": "https://www.drupal.org/user/294937"
  4746. },
  4747. {
  4748. "name": "clemens.tolboom",
  4749. "homepage": "https://www.drupal.org/user/125814"
  4750. },
  4751. {
  4752. "name": "juampynr",
  4753. "homepage": "https://www.drupal.org/user/682736"
  4754. },
  4755. {
  4756. "name": "kamkejj",
  4757. "homepage": "https://www.drupal.org/user/81043"
  4758. },
  4759. {
  4760. "name": "vipin.mittal18",
  4761. "homepage": "https://www.drupal.org/user/319716"
  4762. }
  4763. ],
  4764. "description": "Provides a user interface to manage REST resources.",
  4765. "homepage": "https://www.drupal.org/project/restui",
  4766. "support": {
  4767. "source": "https://git.drupalcode.org/project/restui"
  4768. }
  4769. },
  4770. {
  4771. "name": "drupal/search_api",
  4772. "version": "1.23.0",
  4773. "source": {
  4774. "type": "git",
  4775. "url": "https://git.drupalcode.org/project/search_api.git",
  4776. "reference": "8.x-1.23"
  4777. },
  4778. "dist": {
  4779. "type": "zip",
  4780. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  4781. "reference": "8.x-1.23",
  4782. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  4783. },
  4784. "require": {
  4785. "drupal/core": "^8.8 || ^9"
  4786. },
  4787. "conflict": {
  4788. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4789. },
  4790. "require-dev": {
  4791. "drupal/language_fallback_fix": "@dev",
  4792. "drupal/search_api_autocomplete": "@dev",
  4793. "drupal/search_api_db": "*"
  4794. },
  4795. "suggest": {
  4796. "drupal/facets": "Adds the ability to create faceted searches.",
  4797. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4798. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4799. },
  4800. "type": "drupal-module",
  4801. "extra": {
  4802. "drupal": {
  4803. "version": "8.x-1.23",
  4804. "datestamp": "1642935837",
  4805. "security-coverage": {
  4806. "status": "covered",
  4807. "message": "Covered by Drupal's security advisory policy"
  4808. }
  4809. },
  4810. "drush": {
  4811. "services": {
  4812. "drush.services.yml": "^9 || ^10"
  4813. }
  4814. }
  4815. },
  4816. "notification-url": "https://packages.drupal.org/8/downloads",
  4817. "license": [
  4818. "GPL-2.0-or-later"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "Thomas Seidl",
  4823. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4824. },
  4825. {
  4826. "name": "Nick Veenhof",
  4827. "homepage": "https://www.drupal.org/u/nick_vh"
  4828. },
  4829. {
  4830. "name": "See other contributors",
  4831. "homepage": "https://www.drupal.org/node/790418/committers"
  4832. }
  4833. ],
  4834. "description": "Provides a generic framework for modules offering search capabilities.",
  4835. "homepage": "https://www.drupal.org/project/search_api",
  4836. "support": {
  4837. "source": "https://git.drupalcode.org/project/search_api",
  4838. "issues": "https://www.drupal.org/project/issues/search_api",
  4839. "irc": "irc://irc.freenode.org/drupal-search-api"
  4840. }
  4841. },
  4842. {
  4843. "name": "drupal/simple_sitemap",
  4844. "version": "3.11.0",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4848. "reference": "8.x-3.11"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  4853. "reference": "8.x-3.11",
  4854. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  4855. },
  4856. "require": {
  4857. "drupal/core": "^8 || ^9",
  4858. "ext-xmlwriter": "*"
  4859. },
  4860. "type": "drupal-module",
  4861. "extra": {
  4862. "drupal": {
  4863. "version": "8.x-3.11",
  4864. "datestamp": "1658781789",
  4865. "security-coverage": {
  4866. "status": "covered",
  4867. "message": "Covered by Drupal's security advisory policy"
  4868. }
  4869. },
  4870. "drush": {
  4871. "services": {
  4872. "drush.services.yml": "^9 || ^10"
  4873. }
  4874. }
  4875. },
  4876. "notification-url": "https://packages.drupal.org/8/downloads",
  4877. "license": [
  4878. "GPL-2.0-or-later"
  4879. ],
  4880. "authors": [
  4881. {
  4882. "name": "Pawel Ginalski (gbyte)",
  4883. "homepage": "https://www.drupal.org/u/gbyte",
  4884. "email": "contact@gbyte.dev",
  4885. "role": "Maintainer"
  4886. },
  4887. {
  4888. "name": "walkingdexter",
  4889. "homepage": "https://www.drupal.org/user/3251330"
  4890. }
  4891. ],
  4892. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4893. "homepage": "https://drupal.org/project/simple_sitemap",
  4894. "support": {
  4895. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4896. "issues": "https://drupal.org/project/issues/simple_sitemap",
  4897. "irc": "irc://irc.freenode.org/drupal-contribute"
  4898. }
  4899. },
  4900. {
  4901. "name": "drupal/synonyms",
  4902. "version": "1.0.0-alpha3",
  4903. "source": {
  4904. "type": "git",
  4905. "url": "https://git.drupalcode.org/project/synonyms.git",
  4906. "reference": "8.x-1.0-alpha3"
  4907. },
  4908. "dist": {
  4909. "type": "zip",
  4910. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  4911. "reference": "8.x-1.0-alpha3",
  4912. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  4913. },
  4914. "require": {
  4915. "drupal/core": "^8 || ^9"
  4916. },
  4917. "type": "drupal-module",
  4918. "extra": {
  4919. "drupal": {
  4920. "version": "8.x-1.0-alpha3",
  4921. "datestamp": "1609623594",
  4922. "security-coverage": {
  4923. "status": "not-covered",
  4924. "message": "Alpha releases are not covered by Drupal security advisories."
  4925. }
  4926. }
  4927. },
  4928. "notification-url": "https://packages.drupal.org/8/downloads",
  4929. "license": [
  4930. "GPL-2.0-or-later"
  4931. ],
  4932. "authors": [
  4933. {
  4934. "name": "bojanz",
  4935. "homepage": "https://www.drupal.org/user/86106"
  4936. },
  4937. {
  4938. "name": "bucefal91",
  4939. "homepage": "https://www.drupal.org/user/504128"
  4940. },
  4941. {
  4942. "name": "devad",
  4943. "homepage": "https://www.drupal.org/user/2268520"
  4944. },
  4945. {
  4946. "name": "Zen",
  4947. "homepage": "https://www.drupal.org/user/21209"
  4948. }
  4949. ],
  4950. "description": "Provides synonyms feature for content entities.",
  4951. "homepage": "https://www.drupal.org/project/synonyms",
  4952. "support": {
  4953. "source": "https://git.drupalcode.org/project/synonyms"
  4954. }
  4955. },
  4956. {
  4957. "name": "drupal/token",
  4958. "version": "1.10.0",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://git.drupalcode.org/project/token.git",
  4962. "reference": "8.x-1.10"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  4967. "reference": "8.x-1.10",
  4968. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  4969. },
  4970. "require": {
  4971. "drupal/core": "^8.8 || ^9"
  4972. },
  4973. "type": "drupal-module",
  4974. "extra": {
  4975. "drupal": {
  4976. "version": "8.x-1.10",
  4977. "datestamp": "1638619775",
  4978. "security-coverage": {
  4979. "status": "covered",
  4980. "message": "Covered by Drupal's security advisory policy"
  4981. }
  4982. },
  4983. "drush": {
  4984. "services": {
  4985. "drush.services.yml": "^9 || ^10"
  4986. }
  4987. }
  4988. },
  4989. "notification-url": "https://packages.drupal.org/8/downloads",
  4990. "license": [
  4991. "GPL-2.0-or-later"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Berdir",
  4996. "homepage": "https://www.drupal.org/user/214652"
  4997. },
  4998. {
  4999. "name": "Dave Reid",
  5000. "homepage": "https://www.drupal.org/user/53892"
  5001. },
  5002. {
  5003. "name": "eaton",
  5004. "homepage": "https://www.drupal.org/user/16496"
  5005. },
  5006. {
  5007. "name": "fago",
  5008. "homepage": "https://www.drupal.org/user/16747"
  5009. },
  5010. {
  5011. "name": "greggles",
  5012. "homepage": "https://www.drupal.org/user/36762"
  5013. },
  5014. {
  5015. "name": "mikeryan",
  5016. "homepage": "https://www.drupal.org/user/4420"
  5017. }
  5018. ],
  5019. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5020. "homepage": "https://www.drupal.org/project/token",
  5021. "support": {
  5022. "source": "https://git.drupalcode.org/project/token"
  5023. }
  5024. },
  5025. {
  5026. "name": "drupal/translation_views",
  5027. "version": "1.0.0-alpha11",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://git.drupalcode.org/project/translation_views.git",
  5031. "reference": "8.x-1.0-alpha11"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5036. "reference": "8.x-1.0-alpha11",
  5037. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5038. },
  5039. "require": {
  5040. "drupal/core": "^8.8 || ^9 || ^10"
  5041. },
  5042. "require-dev": {
  5043. "drupal/translators_content": "^1.0@alpha"
  5044. },
  5045. "type": "drupal-module",
  5046. "extra": {
  5047. "drupal": {
  5048. "version": "8.x-1.0-alpha11",
  5049. "datestamp": "1679660668",
  5050. "security-coverage": {
  5051. "status": "not-covered",
  5052. "message": "Project has not opted into security advisory coverage!"
  5053. }
  5054. }
  5055. },
  5056. "notification-url": "https://packages.drupal.org/8/downloads",
  5057. "license": [
  5058. "GPL-2.0-or-later"
  5059. ],
  5060. "authors": [
  5061. {
  5062. "name": "matsbla",
  5063. "homepage": "https://www.drupal.org/user/2325394"
  5064. },
  5065. {
  5066. "name": "vlad.dancer",
  5067. "homepage": "https://www.drupal.org/user/903844"
  5068. }
  5069. ],
  5070. "description": "Create customized lists and queries of translations from your database.",
  5071. "homepage": "https://www.drupal.org/project/translation_views",
  5072. "support": {
  5073. "source": "https://git.drupalcode.org/project/translation_views"
  5074. }
  5075. },
  5076. {
  5077. "name": "drupal/upgrade_status",
  5078. "version": "3.19.0",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5082. "reference": "8.x-3.19"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5087. "reference": "8.x-3.19",
  5088. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5089. },
  5090. "require": {
  5091. "drupal/core": "^8 || ^9",
  5092. "mathieuviossat/arraytotexttable": "~1.0.0",
  5093. "mglaman/phpstan-drupal": "^1.0.0",
  5094. "nikic/php-parser": "^4.0.0",
  5095. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5096. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5097. "webflo/drupal-finder": "^1.2"
  5098. },
  5099. "type": "drupal-module",
  5100. "extra": {
  5101. "drupal": {
  5102. "version": "8.x-3.19",
  5103. "datestamp": "1678815320",
  5104. "security-coverage": {
  5105. "status": "covered",
  5106. "message": "Covered by Drupal's security advisory policy"
  5107. }
  5108. },
  5109. "drush": {
  5110. "services": {
  5111. "drush.services.yml": "^9 || ^10"
  5112. }
  5113. }
  5114. },
  5115. "notification-url": "https://packages.drupal.org/8/downloads",
  5116. "license": [
  5117. "GPL-2.0-or-later"
  5118. ],
  5119. "authors": [
  5120. {
  5121. "name": "Gábor Hojtsy",
  5122. "homepage": "https://www.drupal.org/user/4166"
  5123. }
  5124. ],
  5125. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5126. "homepage": "http://drupal.org/project/upgrade_status",
  5127. "support": {
  5128. "source": "https://git.drupalcode.org/project/upgrade_status"
  5129. }
  5130. },
  5131. {
  5132. "name": "drupal/url_to_video_filter",
  5133. "version": "2.0.0",
  5134. "source": {
  5135. "type": "git",
  5136. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5137. "reference": "2.0.0"
  5138. },
  5139. "dist": {
  5140. "type": "zip",
  5141. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5142. "reference": "2.0.0",
  5143. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5144. },
  5145. "require": {
  5146. "drupal/core": "^8 || ^9"
  5147. },
  5148. "type": "drupal-module",
  5149. "extra": {
  5150. "drupal": {
  5151. "version": "2.0.0",
  5152. "datestamp": "1607298389",
  5153. "security-coverage": {
  5154. "status": "covered",
  5155. "message": "Covered by Drupal's security advisory policy"
  5156. }
  5157. }
  5158. },
  5159. "notification-url": "https://packages.drupal.org/8/downloads",
  5160. "license": [
  5161. "GPL-2.0-or-later"
  5162. ],
  5163. "authors": [
  5164. {
  5165. "name": "Jaypan",
  5166. "homepage": "https://www.drupal.org/user/324696"
  5167. }
  5168. ],
  5169. "description": "Text filter to convert URLs to embedded videos",
  5170. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5171. "support": {
  5172. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5173. }
  5174. },
  5175. {
  5176. "name": "drupal/views_bulk_edit",
  5177. "version": "2.7.0",
  5178. "source": {
  5179. "type": "git",
  5180. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5181. "reference": "8.x-2.7"
  5182. },
  5183. "dist": {
  5184. "type": "zip",
  5185. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5186. "reference": "8.x-2.7",
  5187. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5188. },
  5189. "require": {
  5190. "drupal/core": "^8 || ^9"
  5191. },
  5192. "require-dev": {
  5193. "drupal/views_bulk_operations": "~3.0"
  5194. },
  5195. "suggest": {
  5196. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5197. },
  5198. "type": "drupal-module",
  5199. "extra": {
  5200. "drupal": {
  5201. "version": "8.x-2.7",
  5202. "datestamp": "1664355764",
  5203. "security-coverage": {
  5204. "status": "covered",
  5205. "message": "Covered by Drupal's security advisory policy"
  5206. }
  5207. }
  5208. },
  5209. "notification-url": "https://packages.drupal.org/8/downloads",
  5210. "license": [
  5211. "GPL-2.0+"
  5212. ],
  5213. "authors": [
  5214. {
  5215. "name": "Marcin Grabias",
  5216. "homepage": "https://www.drupal.org/u/graber"
  5217. },
  5218. {
  5219. "name": "benjy",
  5220. "homepage": "https://www.drupal.org/user/1852732"
  5221. },
  5222. {
  5223. "name": "graber",
  5224. "homepage": "https://www.drupal.org/user/1599440"
  5225. },
  5226. {
  5227. "name": "grevil",
  5228. "homepage": "https://www.drupal.org/user/3668491"
  5229. },
  5230. {
  5231. "name": "joseph.olstad",
  5232. "homepage": "https://www.drupal.org/user/1321830"
  5233. }
  5234. ],
  5235. "description": "Allows bulk edition of entity field values.",
  5236. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5237. "support": {
  5238. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5239. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5240. }
  5241. },
  5242. {
  5243. "name": "drupal/views_bulk_operations",
  5244. "version": "3.13.0",
  5245. "source": {
  5246. "type": "git",
  5247. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5248. "reference": "8.x-3.13"
  5249. },
  5250. "dist": {
  5251. "type": "zip",
  5252. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  5253. "reference": "8.x-3.13",
  5254. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  5255. },
  5256. "require": {
  5257. "drupal/core": "^8.8 || ^9"
  5258. },
  5259. "require-dev": {
  5260. "drush/drush": "^10"
  5261. },
  5262. "suggest": {
  5263. "drush/drush": "^9 || ^10"
  5264. },
  5265. "type": "drupal-module",
  5266. "extra": {
  5267. "drupal": {
  5268. "version": "8.x-3.13",
  5269. "datestamp": "1619697066",
  5270. "security-coverage": {
  5271. "status": "covered",
  5272. "message": "Covered by Drupal's security advisory policy"
  5273. }
  5274. },
  5275. "drush": {
  5276. "services": {
  5277. "drush.services.yml": "^9 || ^10"
  5278. }
  5279. }
  5280. },
  5281. "notification-url": "https://packages.drupal.org/8/downloads",
  5282. "license": [
  5283. "GPL-2.0-or-later"
  5284. ],
  5285. "authors": [
  5286. {
  5287. "name": "Marcin Grabias",
  5288. "homepage": "https://www.drupal.org/u/graber"
  5289. },
  5290. {
  5291. "name": "Graber",
  5292. "homepage": "https://www.drupal.org/user/1599440"
  5293. },
  5294. {
  5295. "name": "joelpittet",
  5296. "homepage": "https://www.drupal.org/user/160302"
  5297. }
  5298. ],
  5299. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5300. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5301. "support": {
  5302. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5303. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5304. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5305. }
  5306. },
  5307. {
  5308. "name": "drupal/workflow",
  5309. "version": "1.3.0",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://git.drupalcode.org/project/workflow.git",
  5313. "reference": "8.x-1.3"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5318. "reference": "8.x-1.3",
  5319. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5320. },
  5321. "require": {
  5322. "drupal/core": "^8 || ^9"
  5323. },
  5324. "type": "drupal-module",
  5325. "extra": {
  5326. "drupal": {
  5327. "version": "8.x-1.3",
  5328. "datestamp": "1590740623",
  5329. "security-coverage": {
  5330. "status": "covered",
  5331. "message": "Covered by Drupal's security advisory policy"
  5332. }
  5333. }
  5334. },
  5335. "notification-url": "https://packages.drupal.org/8/downloads",
  5336. "license": [
  5337. "GPL-2.0-or-later"
  5338. ],
  5339. "authors": [
  5340. {
  5341. "name": "Bastlynn",
  5342. "homepage": "https://www.drupal.org/user/275249"
  5343. },
  5344. {
  5345. "name": "eaton",
  5346. "homepage": "https://www.drupal.org/user/16496"
  5347. },
  5348. {
  5349. "name": "Heine",
  5350. "homepage": "https://www.drupal.org/user/17943"
  5351. },
  5352. {
  5353. "name": "JacobSingh",
  5354. "homepage": "https://www.drupal.org/user/68912"
  5355. },
  5356. {
  5357. "name": "johnv",
  5358. "homepage": "https://www.drupal.org/user/591042"
  5359. },
  5360. {
  5361. "name": "jvandyk",
  5362. "homepage": "https://www.drupal.org/user/2375"
  5363. },
  5364. {
  5365. "name": "mfredrickson",
  5366. "homepage": "https://www.drupal.org/user/31994"
  5367. },
  5368. {
  5369. "name": "NancyDru",
  5370. "homepage": "https://www.drupal.org/user/101412"
  5371. },
  5372. {
  5373. "name": "q0rban",
  5374. "homepage": "https://www.drupal.org/user/31022"
  5375. }
  5376. ],
  5377. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5378. "homepage": "https://www.drupal.org/project/workflow",
  5379. "support": {
  5380. "source": "https://git.drupalcode.org/project/workflow"
  5381. }
  5382. },
  5383. {
  5384. "name": "drush/drush",
  5385. "version": "10.3.6",
  5386. "source": {
  5387. "type": "git",
  5388. "url": "https://github.com/drush-ops/drush.git",
  5389. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a"
  5390. },
  5391. "dist": {
  5392. "type": "zip",
  5393. "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  5394. "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a",
  5395. "shasum": ""
  5396. },
  5397. "require": {
  5398. "chi-teck/drupal-code-generator": "^1.32.1",
  5399. "composer/semver": "^1.4 || ^3",
  5400. "consolidation/config": "^1.2",
  5401. "consolidation/filter-via-dot-access-data": "^1",
  5402. "consolidation/robo": "^1.4.11 || ^2",
  5403. "consolidation/site-alias": "^3.0.0@stable",
  5404. "consolidation/site-process": "^2.1 || ^4",
  5405. "ext-dom": "*",
  5406. "grasmash/yaml-expander": "^1.1.1",
  5407. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5408. "league/container": "~2",
  5409. "php": ">=7.1.3",
  5410. "psr/log": "~1.0",
  5411. "psy/psysh": "~0.6",
  5412. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5413. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5414. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5415. "symfony/yaml": "^3.4 || ^4.0",
  5416. "webflo/drupal-finder": "^1.2",
  5417. "webmozart/path-util": "^2.1.0"
  5418. },
  5419. "require-dev": {
  5420. "composer/installers": "^1.7",
  5421. "cweagans/composer-patches": "~1.0",
  5422. "david-garcia/phpwhois": "4.3.0",
  5423. "drupal/alinks": "1.0.0",
  5424. "drupal/core-recommended": "^8.8",
  5425. "lox/xhprof": "dev-master",
  5426. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5427. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5428. "vlucas/phpdotenv": "^2.4"
  5429. },
  5430. "bin": [
  5431. "drush"
  5432. ],
  5433. "type": "library",
  5434. "extra": {
  5435. "installer-paths": {
  5436. "sut/core": [
  5437. "type:drupal-core"
  5438. ],
  5439. "sut/libraries/{$name}": [
  5440. "type:drupal-library"
  5441. ],
  5442. "sut/modules/unish/{$name}": [
  5443. "drupal/devel"
  5444. ],
  5445. "sut/themes/unish/{$name}": [
  5446. "drupal/empty_theme"
  5447. ],
  5448. "sut/modules/contrib/{$name}": [
  5449. "type:drupal-module"
  5450. ],
  5451. "sut/profiles/contrib/{$name}": [
  5452. "type:drupal-profile"
  5453. ],
  5454. "sut/themes/contrib/{$name}": [
  5455. "type:drupal-theme"
  5456. ],
  5457. "sut/drush/contrib/{$name}": [
  5458. "type:drupal-drush"
  5459. ]
  5460. }
  5461. },
  5462. "autoload": {
  5463. "psr-4": {
  5464. "Drush\\": "src/",
  5465. "Drush\\Internal\\": "src/internal-forks"
  5466. }
  5467. },
  5468. "notification-url": "https://packagist.org/downloads/",
  5469. "license": [
  5470. "GPL-2.0-or-later"
  5471. ],
  5472. "authors": [
  5473. {
  5474. "name": "Moshe Weitzman",
  5475. "email": "weitzman@tejasa.com"
  5476. },
  5477. {
  5478. "name": "Owen Barton",
  5479. "email": "drupal@owenbarton.com"
  5480. },
  5481. {
  5482. "name": "Greg Anderson",
  5483. "email": "greg.1.anderson@greenknowe.org"
  5484. },
  5485. {
  5486. "name": "Jonathan Araña Cruz",
  5487. "email": "jonhattan@faita.net"
  5488. },
  5489. {
  5490. "name": "Jonathan Hedstrom",
  5491. "email": "jhedstrom@gmail.com"
  5492. },
  5493. {
  5494. "name": "Christopher Gervais",
  5495. "email": "chris@ergonlogic.com"
  5496. },
  5497. {
  5498. "name": "Dave Reid",
  5499. "email": "dave@davereid.net"
  5500. },
  5501. {
  5502. "name": "Damian Lee",
  5503. "email": "damiankloip@googlemail.com"
  5504. }
  5505. ],
  5506. "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.",
  5507. "homepage": "http://www.drush.org",
  5508. "support": {
  5509. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5510. "irc": "irc://irc.freenode.org/drush",
  5511. "issues": "https://github.com/drush-ops/drush/issues",
  5512. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5513. "source": "https://github.com/drush-ops/drush/tree/10.3.6"
  5514. },
  5515. "funding": [
  5516. {
  5517. "url": "https://github.com/weitzman",
  5518. "type": "github"
  5519. }
  5520. ],
  5521. "time": "2020-11-11T04:36:51+00:00"
  5522. },
  5523. {
  5524. "name": "easyrdf/easyrdf",
  5525. "version": "0.9.1",
  5526. "source": {
  5527. "type": "git",
  5528. "url": "https://github.com/easyrdf/easyrdf.git",
  5529. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5530. },
  5531. "dist": {
  5532. "type": "zip",
  5533. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5534. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5535. "shasum": ""
  5536. },
  5537. "require": {
  5538. "ext-mbstring": "*",
  5539. "ext-pcre": "*",
  5540. "php": ">=5.2.8"
  5541. },
  5542. "require-dev": {
  5543. "phpunit/phpunit": "~3.5",
  5544. "sami/sami": "~1.4",
  5545. "squizlabs/php_codesniffer": "~1.4.3"
  5546. },
  5547. "suggest": {
  5548. "ml/json-ld": "~1.0"
  5549. },
  5550. "type": "library",
  5551. "autoload": {
  5552. "psr-0": {
  5553. "EasyRdf_": "lib/"
  5554. }
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "BSD-3-Clause"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "Nicholas Humfrey",
  5563. "email": "njh@aelius.com",
  5564. "homepage": "http://www.aelius.com/njh/",
  5565. "role": "Developer"
  5566. },
  5567. {
  5568. "name": "Alexey Zakhlestin",
  5569. "email": "indeyets@gmail.com",
  5570. "role": "Developer"
  5571. }
  5572. ],
  5573. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5574. "homepage": "http://www.easyrdf.org/",
  5575. "keywords": [
  5576. "Linked Data",
  5577. "RDF",
  5578. "Semantic Web",
  5579. "Turtle",
  5580. "rdfa",
  5581. "sparql"
  5582. ],
  5583. "support": {
  5584. "forum": "http://groups.google.com/group/easyrdf/",
  5585. "irc": "irc://chat.freenode.net/easyrdf",
  5586. "issues": "http://github.com/njh/easyrdf/issues",
  5587. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5588. },
  5589. "time": "2015-02-27T09:45:49+00:00"
  5590. },
  5591. {
  5592. "name": "egulias/email-validator",
  5593. "version": "2.1.17",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/egulias/EmailValidator.git",
  5597. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5602. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "doctrine/lexer": "^1.0.1",
  5607. "php": ">=5.5",
  5608. "symfony/polyfill-intl-idn": "^1.10"
  5609. },
  5610. "require-dev": {
  5611. "dominicsayers/isemail": "^3.0.7",
  5612. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5613. "satooshi/php-coveralls": "^1.0.1"
  5614. },
  5615. "suggest": {
  5616. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5617. },
  5618. "type": "library",
  5619. "extra": {
  5620. "branch-alias": {
  5621. "dev-master": "2.1.x-dev"
  5622. }
  5623. },
  5624. "autoload": {
  5625. "psr-4": {
  5626. "Egulias\\EmailValidator\\": "EmailValidator"
  5627. }
  5628. },
  5629. "notification-url": "https://packagist.org/downloads/",
  5630. "license": [
  5631. "MIT"
  5632. ],
  5633. "authors": [
  5634. {
  5635. "name": "Eduardo Gulias Davis"
  5636. }
  5637. ],
  5638. "description": "A library for validating emails against several RFCs",
  5639. "homepage": "https://github.com/egulias/EmailValidator",
  5640. "keywords": [
  5641. "email",
  5642. "emailvalidation",
  5643. "emailvalidator",
  5644. "validation",
  5645. "validator"
  5646. ],
  5647. "support": {
  5648. "issues": "https://github.com/egulias/EmailValidator/issues",
  5649. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5650. },
  5651. "time": "2020-02-13T22:36:52+00:00"
  5652. },
  5653. {
  5654. "name": "grasmash/expander",
  5655. "version": "1.0.0",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://github.com/grasmash/expander.git",
  5659. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5664. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5665. "shasum": ""
  5666. },
  5667. "require": {
  5668. "dflydev/dot-access-data": "^1.1.0",
  5669. "php": ">=5.4"
  5670. },
  5671. "require-dev": {
  5672. "greg-1-anderson/composer-test-scenarios": "^1",
  5673. "phpunit/phpunit": "^4|^5.5.4",
  5674. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5675. "squizlabs/php_codesniffer": "^2.7"
  5676. },
  5677. "type": "library",
  5678. "extra": {
  5679. "branch-alias": {
  5680. "dev-master": "1.x-dev"
  5681. }
  5682. },
  5683. "autoload": {
  5684. "psr-4": {
  5685. "Grasmash\\Expander\\": "src/"
  5686. }
  5687. },
  5688. "notification-url": "https://packagist.org/downloads/",
  5689. "license": [
  5690. "MIT"
  5691. ],
  5692. "authors": [
  5693. {
  5694. "name": "Matthew Grasmick"
  5695. }
  5696. ],
  5697. "description": "Expands internal property references in PHP arrays file.",
  5698. "support": {
  5699. "issues": "https://github.com/grasmash/expander/issues",
  5700. "source": "https://github.com/grasmash/expander/tree/master"
  5701. },
  5702. "time": "2017-12-21T22:14:55+00:00"
  5703. },
  5704. {
  5705. "name": "grasmash/yaml-expander",
  5706. "version": "1.4.0",
  5707. "source": {
  5708. "type": "git",
  5709. "url": "https://github.com/grasmash/yaml-expander.git",
  5710. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5711. },
  5712. "dist": {
  5713. "type": "zip",
  5714. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5715. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5716. "shasum": ""
  5717. },
  5718. "require": {
  5719. "dflydev/dot-access-data": "^1.1.0",
  5720. "php": ">=5.4",
  5721. "symfony/yaml": "^2.8.11|^3|^4"
  5722. },
  5723. "require-dev": {
  5724. "greg-1-anderson/composer-test-scenarios": "^1",
  5725. "phpunit/phpunit": "^4.8|^5.5.4",
  5726. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5727. "squizlabs/php_codesniffer": "^2.7"
  5728. },
  5729. "type": "library",
  5730. "extra": {
  5731. "branch-alias": {
  5732. "dev-master": "1.x-dev"
  5733. }
  5734. },
  5735. "autoload": {
  5736. "psr-4": {
  5737. "Grasmash\\YamlExpander\\": "src/"
  5738. }
  5739. },
  5740. "notification-url": "https://packagist.org/downloads/",
  5741. "license": [
  5742. "MIT"
  5743. ],
  5744. "authors": [
  5745. {
  5746. "name": "Matthew Grasmick"
  5747. }
  5748. ],
  5749. "description": "Expands internal property references in a yaml file.",
  5750. "support": {
  5751. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5752. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5753. },
  5754. "time": "2017-12-16T16:06:03+00:00"
  5755. },
  5756. {
  5757. "name": "guzzlehttp/guzzle",
  5758. "version": "6.5.4",
  5759. "source": {
  5760. "type": "git",
  5761. "url": "https://github.com/guzzle/guzzle.git",
  5762. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  5763. },
  5764. "dist": {
  5765. "type": "zip",
  5766. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5767. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  5768. "shasum": ""
  5769. },
  5770. "require": {
  5771. "ext-json": "*",
  5772. "guzzlehttp/promises": "^1.0",
  5773. "guzzlehttp/psr7": "^1.6.1",
  5774. "php": ">=5.5",
  5775. "symfony/polyfill-intl-idn": "1.17.0"
  5776. },
  5777. "require-dev": {
  5778. "ext-curl": "*",
  5779. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5780. "psr/log": "^1.1"
  5781. },
  5782. "suggest": {
  5783. "psr/log": "Required for using the Log middleware"
  5784. },
  5785. "type": "library",
  5786. "extra": {
  5787. "branch-alias": {
  5788. "dev-master": "6.5-dev"
  5789. }
  5790. },
  5791. "autoload": {
  5792. "files": [
  5793. "src/functions_include.php"
  5794. ],
  5795. "psr-4": {
  5796. "GuzzleHttp\\": "src/"
  5797. }
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Michael Dowling",
  5806. "email": "mtdowling@gmail.com",
  5807. "homepage": "https://github.com/mtdowling"
  5808. }
  5809. ],
  5810. "description": "Guzzle is a PHP HTTP client library",
  5811. "homepage": "http://guzzlephp.org/",
  5812. "keywords": [
  5813. "client",
  5814. "curl",
  5815. "framework",
  5816. "http",
  5817. "http client",
  5818. "rest",
  5819. "web service"
  5820. ],
  5821. "support": {
  5822. "issues": "https://github.com/guzzle/guzzle/issues",
  5823. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  5824. },
  5825. "time": "2020-05-25T19:35:05+00:00"
  5826. },
  5827. {
  5828. "name": "guzzlehttp/promises",
  5829. "version": "v1.3.1",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/guzzle/promises.git",
  5833. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5838. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "php": ">=5.5.0"
  5843. },
  5844. "require-dev": {
  5845. "phpunit/phpunit": "^4.0"
  5846. },
  5847. "type": "library",
  5848. "extra": {
  5849. "branch-alias": {
  5850. "dev-master": "1.4-dev"
  5851. }
  5852. },
  5853. "autoload": {
  5854. "files": [
  5855. "src/functions_include.php"
  5856. ],
  5857. "psr-4": {
  5858. "GuzzleHttp\\Promise\\": "src/"
  5859. }
  5860. },
  5861. "notification-url": "https://packagist.org/downloads/",
  5862. "license": [
  5863. "MIT"
  5864. ],
  5865. "authors": [
  5866. {
  5867. "name": "Michael Dowling",
  5868. "email": "mtdowling@gmail.com",
  5869. "homepage": "https://github.com/mtdowling"
  5870. }
  5871. ],
  5872. "description": "Guzzle promises library",
  5873. "keywords": [
  5874. "promise"
  5875. ],
  5876. "support": {
  5877. "issues": "https://github.com/guzzle/promises/issues",
  5878. "source": "https://github.com/guzzle/promises/tree/master"
  5879. },
  5880. "time": "2016-12-20T10:07:11+00:00"
  5881. },
  5882. {
  5883. "name": "guzzlehttp/psr7",
  5884. "version": "1.6.1",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/guzzle/psr7.git",
  5888. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  5893. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=5.4.0",
  5898. "psr/http-message": "~1.0",
  5899. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5900. },
  5901. "provide": {
  5902. "psr/http-message-implementation": "1.0"
  5903. },
  5904. "require-dev": {
  5905. "ext-zlib": "*",
  5906. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  5907. },
  5908. "suggest": {
  5909. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  5910. },
  5911. "type": "library",
  5912. "extra": {
  5913. "branch-alias": {
  5914. "dev-master": "1.6-dev"
  5915. }
  5916. },
  5917. "autoload": {
  5918. "files": [
  5919. "src/functions_include.php"
  5920. ],
  5921. "psr-4": {
  5922. "GuzzleHttp\\Psr7\\": "src/"
  5923. }
  5924. },
  5925. "notification-url": "https://packagist.org/downloads/",
  5926. "license": [
  5927. "MIT"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "Michael Dowling",
  5932. "email": "mtdowling@gmail.com",
  5933. "homepage": "https://github.com/mtdowling"
  5934. },
  5935. {
  5936. "name": "Tobias Schultze",
  5937. "homepage": "https://github.com/Tobion"
  5938. }
  5939. ],
  5940. "description": "PSR-7 message implementation that also provides common utility methods",
  5941. "keywords": [
  5942. "http",
  5943. "message",
  5944. "psr-7",
  5945. "request",
  5946. "response",
  5947. "stream",
  5948. "uri",
  5949. "url"
  5950. ],
  5951. "support": {
  5952. "issues": "https://github.com/guzzle/psr7/issues",
  5953. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  5954. },
  5955. "time": "2019-07-01T23:21:34+00:00"
  5956. },
  5957. {
  5958. "name": "kint-php/kint",
  5959. "version": "5.1.1",
  5960. "source": {
  5961. "type": "git",
  5962. "url": "https://github.com/kint-php/kint.git",
  5963. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5964. },
  5965. "dist": {
  5966. "type": "zip",
  5967. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5968. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5969. "shasum": ""
  5970. },
  5971. "require": {
  5972. "php": ">=7.1"
  5973. },
  5974. "require-dev": {
  5975. "friendsofphp/php-cs-fixer": "^3",
  5976. "phpspec/prophecy-phpunit": "^2",
  5977. "phpunit/phpunit": "^9",
  5978. "seld/phar-utils": "^1",
  5979. "symfony/finder": ">=4.0",
  5980. "vimeo/psalm": "^5"
  5981. },
  5982. "suggest": {
  5983. "kint-php/kint-helpers": "Provides extra helper functions",
  5984. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  5985. },
  5986. "type": "library",
  5987. "autoload": {
  5988. "files": [
  5989. "init.php"
  5990. ],
  5991. "psr-4": {
  5992. "Kint\\": "src/"
  5993. }
  5994. },
  5995. "notification-url": "https://packagist.org/downloads/",
  5996. "license": [
  5997. "MIT"
  5998. ],
  5999. "authors": [
  6000. {
  6001. "name": "Jonathan Vollebregt",
  6002. "homepage": "https://github.com/jnvsor"
  6003. },
  6004. {
  6005. "name": "Contributors",
  6006. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6007. }
  6008. ],
  6009. "description": "Kint - debugging tool for PHP developers",
  6010. "homepage": "https://kint-php.github.io/kint/",
  6011. "keywords": [
  6012. "debug",
  6013. "kint",
  6014. "php"
  6015. ],
  6016. "support": {
  6017. "issues": "https://github.com/kint-php/kint/issues",
  6018. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6019. },
  6020. "time": "2024-04-26T14:20:09+00:00"
  6021. },
  6022. {
  6023. "name": "laminas/laminas-diactoros",
  6024. "version": "1.8.7p2",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://github.com/laminas/laminas-diactoros.git",
  6028. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6033. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6034. "shasum": ""
  6035. },
  6036. "require": {
  6037. "laminas/laminas-zendframework-bridge": "^1.0",
  6038. "php": "^5.6 || ^7.0",
  6039. "psr/http-message": "^1.0"
  6040. },
  6041. "provide": {
  6042. "psr/http-message-implementation": "1.0"
  6043. },
  6044. "replace": {
  6045. "zendframework/zend-diactoros": "~1.8.7.0"
  6046. },
  6047. "require-dev": {
  6048. "ext-dom": "*",
  6049. "ext-libxml": "*",
  6050. "laminas/laminas-coding-standard": "~1.0",
  6051. "php-http/psr7-integration-tests": "dev-master",
  6052. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6053. },
  6054. "type": "library",
  6055. "extra": {
  6056. "branch-alias": {
  6057. "dev-release-1.8": "1.8.x-dev"
  6058. }
  6059. },
  6060. "autoload": {
  6061. "files": [
  6062. "src/functions/create_uploaded_file.php",
  6063. "src/functions/marshal_headers_from_sapi.php",
  6064. "src/functions/marshal_method_from_sapi.php",
  6065. "src/functions/marshal_protocol_version_from_sapi.php",
  6066. "src/functions/marshal_uri_from_sapi.php",
  6067. "src/functions/normalize_server.php",
  6068. "src/functions/normalize_uploaded_files.php",
  6069. "src/functions/parse_cookie_header.php",
  6070. "src/functions/create_uploaded_file.legacy.php",
  6071. "src/functions/marshal_headers_from_sapi.legacy.php",
  6072. "src/functions/marshal_method_from_sapi.legacy.php",
  6073. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6074. "src/functions/marshal_uri_from_sapi.legacy.php",
  6075. "src/functions/normalize_server.legacy.php",
  6076. "src/functions/normalize_uploaded_files.legacy.php",
  6077. "src/functions/parse_cookie_header.legacy.php"
  6078. ],
  6079. "psr-4": {
  6080. "Laminas\\Diactoros\\": "src/"
  6081. }
  6082. },
  6083. "notification-url": "https://packagist.org/downloads/",
  6084. "license": [
  6085. "BSD-3-Clause"
  6086. ],
  6087. "description": "PSR HTTP Message implementations",
  6088. "homepage": "https://laminas.dev",
  6089. "keywords": [
  6090. "http",
  6091. "laminas",
  6092. "psr",
  6093. "psr-7"
  6094. ],
  6095. "support": {
  6096. "chat": "https://laminas.dev/chat",
  6097. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6098. "forum": "https://discourse.laminas.dev",
  6099. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6100. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6101. "source": "https://github.com/laminas/laminas-diactoros"
  6102. },
  6103. "time": "2020-03-23T15:28:28+00:00"
  6104. },
  6105. {
  6106. "name": "laminas/laminas-escaper",
  6107. "version": "2.6.1",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://github.com/laminas/laminas-escaper.git",
  6111. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6116. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6117. "shasum": ""
  6118. },
  6119. "require": {
  6120. "laminas/laminas-zendframework-bridge": "^1.0",
  6121. "php": "^5.6 || ^7.0"
  6122. },
  6123. "replace": {
  6124. "zendframework/zend-escaper": "self.version"
  6125. },
  6126. "require-dev": {
  6127. "laminas/laminas-coding-standard": "~1.0.0",
  6128. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6129. },
  6130. "type": "library",
  6131. "extra": {
  6132. "branch-alias": {
  6133. "dev-master": "2.6.x-dev",
  6134. "dev-develop": "2.7.x-dev"
  6135. }
  6136. },
  6137. "autoload": {
  6138. "psr-4": {
  6139. "Laminas\\Escaper\\": "src/"
  6140. }
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "BSD-3-Clause"
  6145. ],
  6146. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6147. "homepage": "https://laminas.dev",
  6148. "keywords": [
  6149. "escaper",
  6150. "laminas"
  6151. ],
  6152. "support": {
  6153. "chat": "https://laminas.dev/chat",
  6154. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6155. "forum": "https://discourse.laminas.dev",
  6156. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6157. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6158. "source": "https://github.com/laminas/laminas-escaper"
  6159. },
  6160. "time": "2019-12-31T16:43:30+00:00"
  6161. },
  6162. {
  6163. "name": "laminas/laminas-feed",
  6164. "version": "2.12.2",
  6165. "source": {
  6166. "type": "git",
  6167. "url": "https://github.com/laminas/laminas-feed.git",
  6168. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6169. },
  6170. "dist": {
  6171. "type": "zip",
  6172. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6173. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6174. "shasum": ""
  6175. },
  6176. "require": {
  6177. "ext-dom": "*",
  6178. "ext-libxml": "*",
  6179. "laminas/laminas-escaper": "^2.5.2",
  6180. "laminas/laminas-stdlib": "^3.2.1",
  6181. "laminas/laminas-zendframework-bridge": "^1.0",
  6182. "php": "^5.6 || ^7.0"
  6183. },
  6184. "replace": {
  6185. "zendframework/zend-feed": "^2.12.0"
  6186. },
  6187. "require-dev": {
  6188. "laminas/laminas-cache": "^2.7.2",
  6189. "laminas/laminas-coding-standard": "~1.0.0",
  6190. "laminas/laminas-db": "^2.8.2",
  6191. "laminas/laminas-http": "^2.7",
  6192. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6193. "laminas/laminas-validator": "^2.10.1",
  6194. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6195. "psr/http-message": "^1.0.1"
  6196. },
  6197. "suggest": {
  6198. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6199. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6200. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6201. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6202. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6203. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6204. },
  6205. "type": "library",
  6206. "extra": {
  6207. "branch-alias": {
  6208. "dev-master": "2.12.x-dev",
  6209. "dev-develop": "2.13.x-dev"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "psr-4": {
  6214. "Laminas\\Feed\\": "src/"
  6215. }
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "BSD-3-Clause"
  6220. ],
  6221. "description": "provides functionality for consuming RSS and Atom feeds",
  6222. "homepage": "https://laminas.dev",
  6223. "keywords": [
  6224. "feed",
  6225. "laminas"
  6226. ],
  6227. "support": {
  6228. "chat": "https://laminas.dev/chat",
  6229. "docs": "https://docs.laminas.dev/laminas-feed/",
  6230. "forum": "https://discourse.laminas.dev",
  6231. "issues": "https://github.com/laminas/laminas-feed/issues",
  6232. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6233. "source": "https://github.com/laminas/laminas-feed"
  6234. },
  6235. "time": "2020-03-29T12:36:29+00:00"
  6236. },
  6237. {
  6238. "name": "laminas/laminas-servicemanager",
  6239. "version": "3.10.0",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6243. "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/e52b985909e0940bf22d34f322eb3f48bbef6bd1",
  6248. "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1",
  6249. "shasum": ""
  6250. },
  6251. "require": {
  6252. "container-interop/container-interop": "^1.2",
  6253. "laminas/laminas-stdlib": "^3.2.1",
  6254. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6255. "psr/container": "^1.0"
  6256. },
  6257. "conflict": {
  6258. "laminas/laminas-code": "<3.3.1",
  6259. "zendframework/zend-code": "<3.3.1",
  6260. "zendframework/zend-servicemanager": "*"
  6261. },
  6262. "provide": {
  6263. "container-interop/container-interop-implementation": "^1.2",
  6264. "psr/container-implementation": "^1.0"
  6265. },
  6266. "require-dev": {
  6267. "composer/package-versions-deprecated": "^1.0",
  6268. "laminas/laminas-coding-standard": "~2.2.1",
  6269. "laminas/laminas-container-config-test": "^0.3",
  6270. "laminas/laminas-dependency-plugin": "^2.1.2",
  6271. "mikey179/vfsstream": "^1.6.10@alpha",
  6272. "ocramius/proxy-manager": "^2.11",
  6273. "phpbench/phpbench": "^1.1",
  6274. "phpspec/prophecy-phpunit": "^2.0",
  6275. "phpunit/phpunit": "^9.5.5",
  6276. "psalm/plugin-phpunit": "^0.16.1",
  6277. "vimeo/psalm": "^4.8"
  6278. },
  6279. "suggest": {
  6280. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6281. },
  6282. "bin": [
  6283. "bin/generate-deps-for-config-factory",
  6284. "bin/generate-factory-for-class"
  6285. ],
  6286. "type": "library",
  6287. "autoload": {
  6288. "psr-4": {
  6289. "Laminas\\ServiceManager\\": "src/"
  6290. }
  6291. },
  6292. "notification-url": "https://packagist.org/downloads/",
  6293. "license": [
  6294. "BSD-3-Clause"
  6295. ],
  6296. "description": "Factory-Driven Dependency Injection Container",
  6297. "homepage": "https://laminas.dev",
  6298. "keywords": [
  6299. "PSR-11",
  6300. "dependency-injection",
  6301. "di",
  6302. "dic",
  6303. "laminas",
  6304. "service-manager",
  6305. "servicemanager"
  6306. ],
  6307. "support": {
  6308. "chat": "https://laminas.dev/chat",
  6309. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6310. "forum": "https://discourse.laminas.dev",
  6311. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6312. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6313. "source": "https://github.com/laminas/laminas-servicemanager"
  6314. },
  6315. "funding": [
  6316. {
  6317. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6318. "type": "community_bridge"
  6319. }
  6320. ],
  6321. "time": "2021-09-18T20:19:36+00:00"
  6322. },
  6323. {
  6324. "name": "laminas/laminas-stdlib",
  6325. "version": "3.2.1",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/laminas/laminas-stdlib.git",
  6329. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6334. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "laminas/laminas-zendframework-bridge": "^1.0",
  6339. "php": "^5.6 || ^7.0"
  6340. },
  6341. "replace": {
  6342. "zendframework/zend-stdlib": "self.version"
  6343. },
  6344. "require-dev": {
  6345. "laminas/laminas-coding-standard": "~1.0.0",
  6346. "phpbench/phpbench": "^0.13",
  6347. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6348. },
  6349. "type": "library",
  6350. "extra": {
  6351. "branch-alias": {
  6352. "dev-master": "3.2.x-dev",
  6353. "dev-develop": "3.3.x-dev"
  6354. }
  6355. },
  6356. "autoload": {
  6357. "psr-4": {
  6358. "Laminas\\Stdlib\\": "src/"
  6359. }
  6360. },
  6361. "notification-url": "https://packagist.org/downloads/",
  6362. "license": [
  6363. "BSD-3-Clause"
  6364. ],
  6365. "description": "SPL extensions, array utilities, error handlers, and more",
  6366. "homepage": "https://laminas.dev",
  6367. "keywords": [
  6368. "laminas",
  6369. "stdlib"
  6370. ],
  6371. "support": {
  6372. "chat": "https://laminas.dev/chat",
  6373. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6374. "forum": "https://discourse.laminas.dev",
  6375. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6376. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6377. "source": "https://github.com/laminas/laminas-stdlib"
  6378. },
  6379. "time": "2019-12-31T17:51:15+00:00"
  6380. },
  6381. {
  6382. "name": "laminas/laminas-text",
  6383. "version": "2.8.1",
  6384. "source": {
  6385. "type": "git",
  6386. "url": "https://github.com/laminas/laminas-text.git",
  6387. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6388. },
  6389. "dist": {
  6390. "type": "zip",
  6391. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6392. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6393. "shasum": ""
  6394. },
  6395. "require": {
  6396. "laminas/laminas-servicemanager": "^3.4",
  6397. "laminas/laminas-stdlib": "^3.1",
  6398. "laminas/laminas-zendframework-bridge": "^1.0",
  6399. "php": "^7.3 || ~8.0.0"
  6400. },
  6401. "replace": {
  6402. "zendframework/zend-text": "^2.7.1"
  6403. },
  6404. "require-dev": {
  6405. "laminas/laminas-coding-standard": "~1.0.0",
  6406. "laminas/laminas-config": "^3.4",
  6407. "phpunit/phpunit": "^9.3"
  6408. },
  6409. "type": "library",
  6410. "autoload": {
  6411. "psr-4": {
  6412. "Laminas\\Text\\": "src/"
  6413. }
  6414. },
  6415. "notification-url": "https://packagist.org/downloads/",
  6416. "license": [
  6417. "BSD-3-Clause"
  6418. ],
  6419. "description": "Create FIGlets and text-based tables",
  6420. "homepage": "https://laminas.dev",
  6421. "keywords": [
  6422. "laminas",
  6423. "text"
  6424. ],
  6425. "support": {
  6426. "chat": "https://laminas.dev/chat",
  6427. "docs": "https://docs.laminas.dev/laminas-text/",
  6428. "forum": "https://discourse.laminas.dev",
  6429. "issues": "https://github.com/laminas/laminas-text/issues",
  6430. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6431. "source": "https://github.com/laminas/laminas-text"
  6432. },
  6433. "funding": [
  6434. {
  6435. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6436. "type": "community_bridge"
  6437. }
  6438. ],
  6439. "time": "2021-02-17T21:24:58+00:00"
  6440. },
  6441. {
  6442. "name": "laminas/laminas-zendframework-bridge",
  6443. "version": "1.0.4",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6447. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6452. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "php": "^5.6 || ^7.0"
  6457. },
  6458. "require-dev": {
  6459. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6460. "squizlabs/php_codesniffer": "^3.5"
  6461. },
  6462. "type": "library",
  6463. "extra": {
  6464. "branch-alias": {
  6465. "dev-master": "1.0.x-dev",
  6466. "dev-develop": "1.1.x-dev"
  6467. },
  6468. "laminas": {
  6469. "module": "Laminas\\ZendFrameworkBridge"
  6470. }
  6471. },
  6472. "autoload": {
  6473. "files": [
  6474. "src/autoload.php"
  6475. ],
  6476. "psr-4": {
  6477. "Laminas\\ZendFrameworkBridge\\": "src//"
  6478. }
  6479. },
  6480. "notification-url": "https://packagist.org/downloads/",
  6481. "license": [
  6482. "BSD-3-Clause"
  6483. ],
  6484. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6485. "keywords": [
  6486. "ZendFramework",
  6487. "autoloading",
  6488. "laminas",
  6489. "zf"
  6490. ],
  6491. "support": {
  6492. "forum": "https://discourse.laminas.dev/",
  6493. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6494. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6495. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6496. },
  6497. "funding": [
  6498. {
  6499. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6500. "type": "community_bridge"
  6501. }
  6502. ],
  6503. "abandoned": true,
  6504. "time": "2020-05-20T16:45:56+00:00"
  6505. },
  6506. {
  6507. "name": "league/container",
  6508. "version": "2.5.0",
  6509. "source": {
  6510. "type": "git",
  6511. "url": "https://github.com/thephpleague/container.git",
  6512. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6513. },
  6514. "dist": {
  6515. "type": "zip",
  6516. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6517. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6518. "shasum": ""
  6519. },
  6520. "require": {
  6521. "container-interop/container-interop": "^1.2",
  6522. "php": "^5.4 || ^7.0 || ^8.0"
  6523. },
  6524. "provide": {
  6525. "container-interop/container-interop-implementation": "^1.2",
  6526. "psr/container-implementation": "^1.0"
  6527. },
  6528. "replace": {
  6529. "orno/di": "~2.0"
  6530. },
  6531. "require-dev": {
  6532. "phpunit/phpunit": "^4.8.36",
  6533. "scrutinizer/ocular": "^1.3",
  6534. "squizlabs/php_codesniffer": "^3.5"
  6535. },
  6536. "type": "library",
  6537. "extra": {
  6538. "branch-alias": {
  6539. "dev-2.x": "2.x-dev",
  6540. "dev-1.x": "1.x-dev"
  6541. }
  6542. },
  6543. "autoload": {
  6544. "psr-4": {
  6545. "League\\Container\\": "src"
  6546. }
  6547. },
  6548. "notification-url": "https://packagist.org/downloads/",
  6549. "license": [
  6550. "MIT"
  6551. ],
  6552. "authors": [
  6553. {
  6554. "name": "Phil Bennett",
  6555. "email": "philipobenito@gmail.com",
  6556. "homepage": "http://www.philipobenito.com",
  6557. "role": "Developer"
  6558. }
  6559. ],
  6560. "description": "A fast and intuitive dependency injection container.",
  6561. "homepage": "https://github.com/thephpleague/container",
  6562. "keywords": [
  6563. "container",
  6564. "dependency",
  6565. "di",
  6566. "injection",
  6567. "league",
  6568. "provider",
  6569. "service"
  6570. ],
  6571. "support": {
  6572. "issues": "https://github.com/thephpleague/container/issues",
  6573. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6574. },
  6575. "funding": [
  6576. {
  6577. "url": "https://github.com/philipobenito",
  6578. "type": "github"
  6579. }
  6580. ],
  6581. "time": "2021-02-22T09:20:06+00:00"
  6582. },
  6583. {
  6584. "name": "masterminds/html5",
  6585. "version": "2.3.0",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/Masterminds/html5-php.git",
  6589. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6594. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6595. "shasum": ""
  6596. },
  6597. "require": {
  6598. "ext-libxml": "*",
  6599. "php": ">=5.3.0"
  6600. },
  6601. "require-dev": {
  6602. "phpunit/phpunit": "4.*",
  6603. "sami/sami": "~2.0",
  6604. "satooshi/php-coveralls": "1.0.*"
  6605. },
  6606. "type": "library",
  6607. "extra": {
  6608. "branch-alias": {
  6609. "dev-master": "2.2-dev"
  6610. }
  6611. },
  6612. "autoload": {
  6613. "psr-4": {
  6614. "Masterminds\\": "src"
  6615. }
  6616. },
  6617. "notification-url": "https://packagist.org/downloads/",
  6618. "license": [
  6619. "MIT"
  6620. ],
  6621. "authors": [
  6622. {
  6623. "name": "Matt Butcher",
  6624. "email": "technosophos@gmail.com"
  6625. },
  6626. {
  6627. "name": "Asmir Mustafic",
  6628. "email": "goetas@gmail.com"
  6629. },
  6630. {
  6631. "name": "Matt Farina",
  6632. "email": "matt@mattfarina.com"
  6633. }
  6634. ],
  6635. "description": "An HTML5 parser and serializer.",
  6636. "homepage": "http://masterminds.github.io/html5-php",
  6637. "keywords": [
  6638. "HTML5",
  6639. "dom",
  6640. "html",
  6641. "parser",
  6642. "querypath",
  6643. "serializer",
  6644. "xml"
  6645. ],
  6646. "support": {
  6647. "issues": "https://github.com/Masterminds/html5-php/issues",
  6648. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6649. },
  6650. "time": "2017-09-04T12:26:28+00:00"
  6651. },
  6652. {
  6653. "name": "mathieuviossat/arraytotexttable",
  6654. "version": "v1.0.8",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/viossat/arraytotexttable.git",
  6658. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6663. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6664. "shasum": ""
  6665. },
  6666. "require": {
  6667. "laminas/laminas-text": "^2.7",
  6668. "php": ">=5.3.0"
  6669. },
  6670. "type": "library",
  6671. "autoload": {
  6672. "psr-4": {
  6673. "MathieuViossat\\Util\\": "src/"
  6674. }
  6675. },
  6676. "notification-url": "https://packagist.org/downloads/",
  6677. "license": [
  6678. "MIT"
  6679. ],
  6680. "authors": [
  6681. {
  6682. "name": "Mathieu Viossat",
  6683. "email": "mathieu@viossat.fr",
  6684. "homepage": "https://viossat.fr"
  6685. }
  6686. ],
  6687. "description": "Display arrays in terminal",
  6688. "homepage": "https://github.com/viossat/arraytotexttable",
  6689. "keywords": [
  6690. "array",
  6691. "ascii",
  6692. "table",
  6693. "terminal",
  6694. "text",
  6695. "unicode"
  6696. ],
  6697. "support": {
  6698. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6699. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6700. },
  6701. "time": "2020-06-23T17:14:22+00:00"
  6702. },
  6703. {
  6704. "name": "mglaman/phpstan-drupal",
  6705. "version": "1.2.1",
  6706. "source": {
  6707. "type": "git",
  6708. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6709. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6710. },
  6711. "dist": {
  6712. "type": "zip",
  6713. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6714. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6715. "shasum": ""
  6716. },
  6717. "require": {
  6718. "php": "^7.4 || ^8.0",
  6719. "phpstan/phpstan": "^1.10.1",
  6720. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6721. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6722. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6723. "webflo/drupal-finder": "^1.2"
  6724. },
  6725. "require-dev": {
  6726. "behat/mink": "^1.8",
  6727. "composer/installers": "^1.9",
  6728. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6729. "drush/drush": "^9.6 || ^10.0 || ^11",
  6730. "phpstan/extension-installer": "^1.1",
  6731. "phpstan/phpstan-strict-rules": "^1.0",
  6732. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6733. "slevomat/coding-standard": "^7.1",
  6734. "squizlabs/php_codesniffer": "^3.3",
  6735. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6736. },
  6737. "suggest": {
  6738. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6739. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6740. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6741. },
  6742. "type": "phpstan-extension",
  6743. "extra": {
  6744. "branch-alias": {
  6745. "dev-main": "1.0-dev"
  6746. },
  6747. "installer-paths": {
  6748. "tests/fixtures/drupal/core": [
  6749. "type:drupal-core"
  6750. ],
  6751. "tests/fixtures/drupal/libraries/{$name}": [
  6752. "type:drupal-library"
  6753. ],
  6754. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6755. "type:drupal-module"
  6756. ],
  6757. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6758. "type:drupal-profile"
  6759. ],
  6760. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6761. "type:drupal-theme"
  6762. ]
  6763. },
  6764. "phpstan": {
  6765. "includes": [
  6766. "extension.neon",
  6767. "rules.neon"
  6768. ]
  6769. }
  6770. },
  6771. "autoload": {
  6772. "psr-4": {
  6773. "mglaman\\PHPStanDrupal\\": "src/"
  6774. }
  6775. },
  6776. "notification-url": "https://packagist.org/downloads/",
  6777. "license": [
  6778. "MIT"
  6779. ],
  6780. "authors": [
  6781. {
  6782. "name": "Matt Glaman",
  6783. "email": "nmd.matt@gmail.com"
  6784. }
  6785. ],
  6786. "description": "Drupal extension and rules for PHPStan",
  6787. "support": {
  6788. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6789. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  6790. },
  6791. "funding": [
  6792. {
  6793. "url": "https://github.com/mglaman",
  6794. "type": "github"
  6795. },
  6796. {
  6797. "url": "https://opencollective.com/phpstan-drupal",
  6798. "type": "open_collective"
  6799. },
  6800. {
  6801. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6802. "type": "tidelift"
  6803. }
  6804. ],
  6805. "time": "2023-11-03T13:17:28+00:00"
  6806. },
  6807. {
  6808. "name": "nikic/php-parser",
  6809. "version": "v4.19.1",
  6810. "source": {
  6811. "type": "git",
  6812. "url": "https://github.com/nikic/PHP-Parser.git",
  6813. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  6814. },
  6815. "dist": {
  6816. "type": "zip",
  6817. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  6818. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  6819. "shasum": ""
  6820. },
  6821. "require": {
  6822. "ext-tokenizer": "*",
  6823. "php": ">=7.1"
  6824. },
  6825. "require-dev": {
  6826. "ircmaxell/php-yacc": "^0.0.7",
  6827. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6828. },
  6829. "bin": [
  6830. "bin/php-parse"
  6831. ],
  6832. "type": "library",
  6833. "extra": {
  6834. "branch-alias": {
  6835. "dev-master": "4.9-dev"
  6836. }
  6837. },
  6838. "autoload": {
  6839. "psr-4": {
  6840. "PhpParser\\": "lib/PhpParser"
  6841. }
  6842. },
  6843. "notification-url": "https://packagist.org/downloads/",
  6844. "license": [
  6845. "BSD-3-Clause"
  6846. ],
  6847. "authors": [
  6848. {
  6849. "name": "Nikita Popov"
  6850. }
  6851. ],
  6852. "description": "A PHP parser written in PHP",
  6853. "keywords": [
  6854. "parser",
  6855. "php"
  6856. ],
  6857. "support": {
  6858. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6859. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  6860. },
  6861. "time": "2024-03-17T08:10:35+00:00"
  6862. },
  6863. {
  6864. "name": "paragonie/random_compat",
  6865. "version": "v9.99.99",
  6866. "source": {
  6867. "type": "git",
  6868. "url": "https://github.com/paragonie/random_compat.git",
  6869. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6870. },
  6871. "dist": {
  6872. "type": "zip",
  6873. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6874. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6875. "shasum": ""
  6876. },
  6877. "require": {
  6878. "php": "^7"
  6879. },
  6880. "require-dev": {
  6881. "phpunit/phpunit": "4.*|5.*",
  6882. "vimeo/psalm": "^1"
  6883. },
  6884. "suggest": {
  6885. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6886. },
  6887. "type": "library",
  6888. "notification-url": "https://packagist.org/downloads/",
  6889. "license": [
  6890. "MIT"
  6891. ],
  6892. "authors": [
  6893. {
  6894. "name": "Paragon Initiative Enterprises",
  6895. "email": "security@paragonie.com",
  6896. "homepage": "https://paragonie.com"
  6897. }
  6898. ],
  6899. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6900. "keywords": [
  6901. "csprng",
  6902. "polyfill",
  6903. "pseudorandom",
  6904. "random"
  6905. ],
  6906. "support": {
  6907. "email": "info@paragonie.com",
  6908. "issues": "https://github.com/paragonie/random_compat/issues",
  6909. "source": "https://github.com/paragonie/random_compat"
  6910. },
  6911. "time": "2018-07-02T15:55:56+00:00"
  6912. },
  6913. {
  6914. "name": "pear/archive_tar",
  6915. "version": "1.4.14",
  6916. "source": {
  6917. "type": "git",
  6918. "url": "https://github.com/pear/Archive_Tar.git",
  6919. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6920. },
  6921. "dist": {
  6922. "type": "zip",
  6923. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6924. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6925. "shasum": ""
  6926. },
  6927. "require": {
  6928. "pear/pear-core-minimal": "^1.10.0alpha2",
  6929. "php": ">=5.2.0"
  6930. },
  6931. "require-dev": {
  6932. "phpunit/phpunit": "*"
  6933. },
  6934. "suggest": {
  6935. "ext-bz2": "Bz2 compression support.",
  6936. "ext-xz": "Lzma2 compression support.",
  6937. "ext-zlib": "Gzip compression support."
  6938. },
  6939. "type": "library",
  6940. "extra": {
  6941. "branch-alias": {
  6942. "dev-master": "1.4.x-dev"
  6943. }
  6944. },
  6945. "autoload": {
  6946. "psr-0": {
  6947. "Archive_Tar": ""
  6948. }
  6949. },
  6950. "notification-url": "https://packagist.org/downloads/",
  6951. "include-path": [
  6952. "./"
  6953. ],
  6954. "license": [
  6955. "BSD-3-Clause"
  6956. ],
  6957. "authors": [
  6958. {
  6959. "name": "Vincent Blavet",
  6960. "email": "vincent@phpconcept.net"
  6961. },
  6962. {
  6963. "name": "Greg Beaver",
  6964. "email": "greg@chiaraquartet.net"
  6965. },
  6966. {
  6967. "name": "Michiel Rook",
  6968. "email": "mrook@php.net"
  6969. }
  6970. ],
  6971. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6972. "homepage": "https://github.com/pear/Archive_Tar",
  6973. "keywords": [
  6974. "archive",
  6975. "tar"
  6976. ],
  6977. "support": {
  6978. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6979. "source": "https://github.com/pear/Archive_Tar"
  6980. },
  6981. "funding": [
  6982. {
  6983. "url": "https://github.com/mrook",
  6984. "type": "github"
  6985. },
  6986. {
  6987. "url": "https://www.patreon.com/michielrook",
  6988. "type": "patreon"
  6989. }
  6990. ],
  6991. "time": "2021-07-20T13:53:39+00:00"
  6992. },
  6993. {
  6994. "name": "pear/console_getopt",
  6995. "version": "v1.4.3",
  6996. "source": {
  6997. "type": "git",
  6998. "url": "https://github.com/pear/Console_Getopt.git",
  6999. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7000. },
  7001. "dist": {
  7002. "type": "zip",
  7003. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7004. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7005. "shasum": ""
  7006. },
  7007. "type": "library",
  7008. "autoload": {
  7009. "psr-0": {
  7010. "Console": "./"
  7011. }
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "include-path": [
  7015. "./"
  7016. ],
  7017. "license": [
  7018. "BSD-2-Clause"
  7019. ],
  7020. "authors": [
  7021. {
  7022. "name": "Andrei Zmievski",
  7023. "email": "andrei@php.net",
  7024. "role": "Lead"
  7025. },
  7026. {
  7027. "name": "Stig Bakken",
  7028. "email": "stig@php.net",
  7029. "role": "Developer"
  7030. },
  7031. {
  7032. "name": "Greg Beaver",
  7033. "email": "cellog@php.net",
  7034. "role": "Helper"
  7035. }
  7036. ],
  7037. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7038. "support": {
  7039. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7040. "source": "https://github.com/pear/Console_Getopt"
  7041. },
  7042. "time": "2019-11-20T18:27:48+00:00"
  7043. },
  7044. {
  7045. "name": "pear/pear-core-minimal",
  7046. "version": "v1.10.10",
  7047. "source": {
  7048. "type": "git",
  7049. "url": "https://github.com/pear/pear-core-minimal.git",
  7050. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7051. },
  7052. "dist": {
  7053. "type": "zip",
  7054. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7055. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7056. "shasum": ""
  7057. },
  7058. "require": {
  7059. "pear/console_getopt": "~1.4",
  7060. "pear/pear_exception": "~1.0"
  7061. },
  7062. "replace": {
  7063. "rsky/pear-core-min": "self.version"
  7064. },
  7065. "type": "library",
  7066. "autoload": {
  7067. "psr-0": {
  7068. "": "src/"
  7069. }
  7070. },
  7071. "notification-url": "https://packagist.org/downloads/",
  7072. "include-path": [
  7073. "src/"
  7074. ],
  7075. "license": [
  7076. "BSD-3-Clause"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Christian Weiske",
  7081. "email": "cweiske@php.net",
  7082. "role": "Lead"
  7083. }
  7084. ],
  7085. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7086. "support": {
  7087. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7088. "source": "https://github.com/pear/pear-core-minimal"
  7089. },
  7090. "time": "2019-11-19T19:00:24+00:00"
  7091. },
  7092. {
  7093. "name": "pear/pear_exception",
  7094. "version": "v1.0.1",
  7095. "source": {
  7096. "type": "git",
  7097. "url": "https://github.com/pear/PEAR_Exception.git",
  7098. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7099. },
  7100. "dist": {
  7101. "type": "zip",
  7102. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7103. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7104. "shasum": ""
  7105. },
  7106. "require": {
  7107. "php": ">=4.4.0"
  7108. },
  7109. "require-dev": {
  7110. "phpunit/phpunit": "*"
  7111. },
  7112. "type": "class",
  7113. "extra": {
  7114. "branch-alias": {
  7115. "dev-master": "1.0.x-dev"
  7116. }
  7117. },
  7118. "autoload": {
  7119. "classmap": [
  7120. "PEAR/"
  7121. ]
  7122. },
  7123. "notification-url": "https://packagist.org/downloads/",
  7124. "include-path": [
  7125. "."
  7126. ],
  7127. "license": [
  7128. "BSD-2-Clause"
  7129. ],
  7130. "authors": [
  7131. {
  7132. "name": "Helgi Thormar",
  7133. "email": "dufuz@php.net"
  7134. },
  7135. {
  7136. "name": "Greg Beaver",
  7137. "email": "cellog@php.net"
  7138. }
  7139. ],
  7140. "description": "The PEAR Exception base class.",
  7141. "homepage": "https://github.com/pear/PEAR_Exception",
  7142. "keywords": [
  7143. "exception"
  7144. ],
  7145. "support": {
  7146. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7147. "source": "https://github.com/pear/PEAR_Exception"
  7148. },
  7149. "time": "2019-12-10T10:24:42+00:00"
  7150. },
  7151. {
  7152. "name": "phpstan/phpstan",
  7153. "version": "1.12.3",
  7154. "source": {
  7155. "type": "git",
  7156. "url": "https://github.com/phpstan/phpstan.git",
  7157. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7158. },
  7159. "dist": {
  7160. "type": "zip",
  7161. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7162. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7163. "shasum": ""
  7164. },
  7165. "require": {
  7166. "php": "^7.2|^8.0"
  7167. },
  7168. "conflict": {
  7169. "phpstan/phpstan-shim": "*"
  7170. },
  7171. "bin": [
  7172. "phpstan",
  7173. "phpstan.phar"
  7174. ],
  7175. "type": "library",
  7176. "autoload": {
  7177. "files": [
  7178. "bootstrap.php"
  7179. ]
  7180. },
  7181. "notification-url": "https://packagist.org/downloads/",
  7182. "license": [
  7183. "MIT"
  7184. ],
  7185. "description": "PHPStan - PHP Static Analysis Tool",
  7186. "keywords": [
  7187. "dev",
  7188. "static analysis"
  7189. ],
  7190. "support": {
  7191. "docs": "https://phpstan.org/user-guide/getting-started",
  7192. "forum": "https://github.com/phpstan/phpstan/discussions",
  7193. "issues": "https://github.com/phpstan/phpstan/issues",
  7194. "security": "https://github.com/phpstan/phpstan/security/policy",
  7195. "source": "https://github.com/phpstan/phpstan-src"
  7196. },
  7197. "funding": [
  7198. {
  7199. "url": "https://github.com/ondrejmirtes",
  7200. "type": "github"
  7201. },
  7202. {
  7203. "url": "https://github.com/phpstan",
  7204. "type": "github"
  7205. }
  7206. ],
  7207. "time": "2024-09-09T08:10:35+00:00"
  7208. },
  7209. {
  7210. "name": "phpstan/phpstan-deprecation-rules",
  7211. "version": "1.2.1",
  7212. "source": {
  7213. "type": "git",
  7214. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7215. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7216. },
  7217. "dist": {
  7218. "type": "zip",
  7219. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7220. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7221. "shasum": ""
  7222. },
  7223. "require": {
  7224. "php": "^7.2 || ^8.0",
  7225. "phpstan/phpstan": "^1.12"
  7226. },
  7227. "require-dev": {
  7228. "php-parallel-lint/php-parallel-lint": "^1.2",
  7229. "phpstan/phpstan-phpunit": "^1.0",
  7230. "phpunit/phpunit": "^9.5"
  7231. },
  7232. "type": "phpstan-extension",
  7233. "extra": {
  7234. "phpstan": {
  7235. "includes": [
  7236. "rules.neon"
  7237. ]
  7238. }
  7239. },
  7240. "autoload": {
  7241. "psr-4": {
  7242. "PHPStan\\": "src/"
  7243. }
  7244. },
  7245. "notification-url": "https://packagist.org/downloads/",
  7246. "license": [
  7247. "MIT"
  7248. ],
  7249. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7250. "support": {
  7251. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7252. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7253. },
  7254. "time": "2024-09-11T15:52:35+00:00"
  7255. },
  7256. {
  7257. "name": "psr/container",
  7258. "version": "1.0.0",
  7259. "source": {
  7260. "type": "git",
  7261. "url": "https://github.com/php-fig/container.git",
  7262. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7263. },
  7264. "dist": {
  7265. "type": "zip",
  7266. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7267. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7268. "shasum": ""
  7269. },
  7270. "require": {
  7271. "php": ">=5.3.0"
  7272. },
  7273. "type": "library",
  7274. "extra": {
  7275. "branch-alias": {
  7276. "dev-master": "1.0.x-dev"
  7277. }
  7278. },
  7279. "autoload": {
  7280. "psr-4": {
  7281. "Psr\\Container\\": "src/"
  7282. }
  7283. },
  7284. "notification-url": "https://packagist.org/downloads/",
  7285. "license": [
  7286. "MIT"
  7287. ],
  7288. "authors": [
  7289. {
  7290. "name": "PHP-FIG",
  7291. "homepage": "http://www.php-fig.org/"
  7292. }
  7293. ],
  7294. "description": "Common Container Interface (PHP FIG PSR-11)",
  7295. "homepage": "https://github.com/php-fig/container",
  7296. "keywords": [
  7297. "PSR-11",
  7298. "container",
  7299. "container-interface",
  7300. "container-interop",
  7301. "psr"
  7302. ],
  7303. "support": {
  7304. "issues": "https://github.com/php-fig/container/issues",
  7305. "source": "https://github.com/php-fig/container/tree/master"
  7306. },
  7307. "time": "2017-02-14T16:28:37+00:00"
  7308. },
  7309. {
  7310. "name": "psr/http-message",
  7311. "version": "1.0.1",
  7312. "source": {
  7313. "type": "git",
  7314. "url": "https://github.com/php-fig/http-message.git",
  7315. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7316. },
  7317. "dist": {
  7318. "type": "zip",
  7319. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7320. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7321. "shasum": ""
  7322. },
  7323. "require": {
  7324. "php": ">=5.3.0"
  7325. },
  7326. "type": "library",
  7327. "extra": {
  7328. "branch-alias": {
  7329. "dev-master": "1.0.x-dev"
  7330. }
  7331. },
  7332. "autoload": {
  7333. "psr-4": {
  7334. "Psr\\Http\\Message\\": "src/"
  7335. }
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "license": [
  7339. "MIT"
  7340. ],
  7341. "authors": [
  7342. {
  7343. "name": "PHP-FIG",
  7344. "homepage": "http://www.php-fig.org/"
  7345. }
  7346. ],
  7347. "description": "Common interface for HTTP messages",
  7348. "homepage": "https://github.com/php-fig/http-message",
  7349. "keywords": [
  7350. "http",
  7351. "http-message",
  7352. "psr",
  7353. "psr-7",
  7354. "request",
  7355. "response"
  7356. ],
  7357. "support": {
  7358. "source": "https://github.com/php-fig/http-message/tree/master"
  7359. },
  7360. "time": "2016-08-06T14:39:51+00:00"
  7361. },
  7362. {
  7363. "name": "psr/log",
  7364. "version": "1.1.3",
  7365. "source": {
  7366. "type": "git",
  7367. "url": "https://github.com/php-fig/log.git",
  7368. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7369. },
  7370. "dist": {
  7371. "type": "zip",
  7372. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7373. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7374. "shasum": ""
  7375. },
  7376. "require": {
  7377. "php": ">=5.3.0"
  7378. },
  7379. "type": "library",
  7380. "extra": {
  7381. "branch-alias": {
  7382. "dev-master": "1.1.x-dev"
  7383. }
  7384. },
  7385. "autoload": {
  7386. "psr-4": {
  7387. "Psr\\Log\\": "Psr/Log/"
  7388. }
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "license": [
  7392. "MIT"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "PHP-FIG",
  7397. "homepage": "http://www.php-fig.org/"
  7398. }
  7399. ],
  7400. "description": "Common interface for logging libraries",
  7401. "homepage": "https://github.com/php-fig/log",
  7402. "keywords": [
  7403. "log",
  7404. "psr",
  7405. "psr-3"
  7406. ],
  7407. "support": {
  7408. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7409. },
  7410. "time": "2020-03-23T09:12:05+00:00"
  7411. },
  7412. {
  7413. "name": "psy/psysh",
  7414. "version": "v0.12.4",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/bobthecow/psysh.git",
  7418. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  7423. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "ext-json": "*",
  7428. "ext-tokenizer": "*",
  7429. "nikic/php-parser": "^5.0 || ^4.0",
  7430. "php": "^8.0 || ^7.4",
  7431. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7432. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7433. },
  7434. "conflict": {
  7435. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7436. },
  7437. "require-dev": {
  7438. "bamarni/composer-bin-plugin": "^1.2"
  7439. },
  7440. "suggest": {
  7441. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7442. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7443. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7444. },
  7445. "bin": [
  7446. "bin/psysh"
  7447. ],
  7448. "type": "library",
  7449. "extra": {
  7450. "branch-alias": {
  7451. "dev-main": "0.12.x-dev"
  7452. },
  7453. "bamarni-bin": {
  7454. "bin-links": false,
  7455. "forward-command": false
  7456. }
  7457. },
  7458. "autoload": {
  7459. "files": [
  7460. "src/functions.php"
  7461. ],
  7462. "psr-4": {
  7463. "Psy\\": "src/"
  7464. }
  7465. },
  7466. "notification-url": "https://packagist.org/downloads/",
  7467. "license": [
  7468. "MIT"
  7469. ],
  7470. "authors": [
  7471. {
  7472. "name": "Justin Hileman",
  7473. "email": "justin@justinhileman.info",
  7474. "homepage": "http://justinhileman.com"
  7475. }
  7476. ],
  7477. "description": "An interactive shell for modern PHP.",
  7478. "homepage": "http://psysh.org",
  7479. "keywords": [
  7480. "REPL",
  7481. "console",
  7482. "interactive",
  7483. "shell"
  7484. ],
  7485. "support": {
  7486. "issues": "https://github.com/bobthecow/psysh/issues",
  7487. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  7488. },
  7489. "time": "2024-06-10T01:18:23+00:00"
  7490. },
  7491. {
  7492. "name": "ralouphie/getallheaders",
  7493. "version": "3.0.3",
  7494. "source": {
  7495. "type": "git",
  7496. "url": "https://github.com/ralouphie/getallheaders.git",
  7497. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7498. },
  7499. "dist": {
  7500. "type": "zip",
  7501. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7502. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7503. "shasum": ""
  7504. },
  7505. "require": {
  7506. "php": ">=5.6"
  7507. },
  7508. "require-dev": {
  7509. "php-coveralls/php-coveralls": "^2.1",
  7510. "phpunit/phpunit": "^5 || ^6.5"
  7511. },
  7512. "type": "library",
  7513. "autoload": {
  7514. "files": [
  7515. "src/getallheaders.php"
  7516. ]
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "MIT"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "Ralph Khattar",
  7525. "email": "ralph.khattar@gmail.com"
  7526. }
  7527. ],
  7528. "description": "A polyfill for getallheaders.",
  7529. "support": {
  7530. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7531. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7532. },
  7533. "time": "2019-03-08T08:55:37+00:00"
  7534. },
  7535. {
  7536. "name": "stack/builder",
  7537. "version": "v1.0.5",
  7538. "source": {
  7539. "type": "git",
  7540. "url": "https://github.com/stackphp/builder.git",
  7541. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7542. },
  7543. "dist": {
  7544. "type": "zip",
  7545. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7546. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7547. "shasum": ""
  7548. },
  7549. "require": {
  7550. "php": ">=5.3.0",
  7551. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7552. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7553. },
  7554. "require-dev": {
  7555. "silex/silex": "~1.0"
  7556. },
  7557. "type": "library",
  7558. "extra": {
  7559. "branch-alias": {
  7560. "dev-master": "1.0-dev"
  7561. }
  7562. },
  7563. "autoload": {
  7564. "psr-0": {
  7565. "Stack": "src"
  7566. }
  7567. },
  7568. "notification-url": "https://packagist.org/downloads/",
  7569. "license": [
  7570. "MIT"
  7571. ],
  7572. "authors": [
  7573. {
  7574. "name": "Igor Wiedler",
  7575. "email": "igor@wiedler.ch"
  7576. }
  7577. ],
  7578. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7579. "keywords": [
  7580. "stack"
  7581. ],
  7582. "support": {
  7583. "issues": "https://github.com/stackphp/builder/issues",
  7584. "source": "https://github.com/stackphp/builder/tree/master"
  7585. },
  7586. "abandoned": true,
  7587. "time": "2017-11-18T14:57:29+00:00"
  7588. },
  7589. {
  7590. "name": "symfony-cmf/routing",
  7591. "version": "1.4.1",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/symfony-cmf/routing.git",
  7595. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7600. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "php": "^5.3.9|^7.0",
  7605. "psr/log": "1.*",
  7606. "symfony/http-kernel": "^2.2|3.*",
  7607. "symfony/routing": "^2.2|3.*"
  7608. },
  7609. "require-dev": {
  7610. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7611. "symfony-cmf/testing": "^1.3",
  7612. "symfony/config": "^2.2|3.*",
  7613. "symfony/dependency-injection": "^2.0.5|3.*",
  7614. "symfony/event-dispatcher": "^2.1|3.*"
  7615. },
  7616. "suggest": {
  7617. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7618. },
  7619. "type": "library",
  7620. "extra": {
  7621. "branch-alias": {
  7622. "dev-master": "1.4-dev"
  7623. }
  7624. },
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Cmf\\Component\\Routing\\": ""
  7628. }
  7629. },
  7630. "notification-url": "https://packagist.org/downloads/",
  7631. "license": [
  7632. "MIT"
  7633. ],
  7634. "authors": [
  7635. {
  7636. "name": "Symfony CMF Community",
  7637. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7638. }
  7639. ],
  7640. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7641. "homepage": "http://cmf.symfony.com",
  7642. "keywords": [
  7643. "database",
  7644. "routing"
  7645. ],
  7646. "support": {
  7647. "issues": "https://github.com/symfony-cmf/routing/issues",
  7648. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7649. },
  7650. "time": "2017-05-09T08:10:41+00:00"
  7651. },
  7652. {
  7653. "name": "symfony/class-loader",
  7654. "version": "v3.4.41",
  7655. "source": {
  7656. "type": "git",
  7657. "url": "https://github.com/symfony/class-loader.git",
  7658. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7659. },
  7660. "dist": {
  7661. "type": "zip",
  7662. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7663. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7664. "shasum": ""
  7665. },
  7666. "require": {
  7667. "php": "^5.5.9|>=7.0.8"
  7668. },
  7669. "require-dev": {
  7670. "symfony/finder": "~2.8|~3.0|~4.0",
  7671. "symfony/polyfill-apcu": "~1.1"
  7672. },
  7673. "suggest": {
  7674. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7675. },
  7676. "type": "library",
  7677. "extra": {
  7678. "branch-alias": {
  7679. "dev-master": "3.4-dev"
  7680. }
  7681. },
  7682. "autoload": {
  7683. "psr-4": {
  7684. "Symfony\\Component\\ClassLoader\\": ""
  7685. },
  7686. "exclude-from-classmap": [
  7687. "/Tests/"
  7688. ]
  7689. },
  7690. "notification-url": "https://packagist.org/downloads/",
  7691. "license": [
  7692. "MIT"
  7693. ],
  7694. "authors": [
  7695. {
  7696. "name": "Fabien Potencier",
  7697. "email": "fabien@symfony.com"
  7698. },
  7699. {
  7700. "name": "Symfony Community",
  7701. "homepage": "https://symfony.com/contributors"
  7702. }
  7703. ],
  7704. "description": "Symfony ClassLoader Component",
  7705. "homepage": "https://symfony.com",
  7706. "support": {
  7707. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7708. },
  7709. "funding": [
  7710. {
  7711. "url": "https://symfony.com/sponsor",
  7712. "type": "custom"
  7713. },
  7714. {
  7715. "url": "https://github.com/fabpot",
  7716. "type": "github"
  7717. },
  7718. {
  7719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7720. "type": "tidelift"
  7721. }
  7722. ],
  7723. "abandoned": true,
  7724. "time": "2020-03-15T09:38:08+00:00"
  7725. },
  7726. {
  7727. "name": "symfony/console",
  7728. "version": "v3.4.41",
  7729. "source": {
  7730. "type": "git",
  7731. "url": "https://github.com/symfony/console.git",
  7732. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7733. },
  7734. "dist": {
  7735. "type": "zip",
  7736. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7737. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7738. "shasum": ""
  7739. },
  7740. "require": {
  7741. "php": "^5.5.9|>=7.0.8",
  7742. "symfony/debug": "~2.8|~3.0|~4.0",
  7743. "symfony/polyfill-mbstring": "~1.0"
  7744. },
  7745. "conflict": {
  7746. "symfony/dependency-injection": "<3.4",
  7747. "symfony/process": "<3.3"
  7748. },
  7749. "provide": {
  7750. "psr/log-implementation": "1.0"
  7751. },
  7752. "require-dev": {
  7753. "psr/log": "~1.0",
  7754. "symfony/config": "~3.3|~4.0",
  7755. "symfony/dependency-injection": "~3.4|~4.0",
  7756. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7757. "symfony/lock": "~3.4|~4.0",
  7758. "symfony/process": "~3.3|~4.0"
  7759. },
  7760. "suggest": {
  7761. "psr/log": "For using the console logger",
  7762. "symfony/event-dispatcher": "",
  7763. "symfony/lock": "",
  7764. "symfony/process": ""
  7765. },
  7766. "type": "library",
  7767. "extra": {
  7768. "branch-alias": {
  7769. "dev-master": "3.4-dev"
  7770. }
  7771. },
  7772. "autoload": {
  7773. "psr-4": {
  7774. "Symfony\\Component\\Console\\": ""
  7775. },
  7776. "exclude-from-classmap": [
  7777. "/Tests/"
  7778. ]
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "MIT"
  7783. ],
  7784. "authors": [
  7785. {
  7786. "name": "Fabien Potencier",
  7787. "email": "fabien@symfony.com"
  7788. },
  7789. {
  7790. "name": "Symfony Community",
  7791. "homepage": "https://symfony.com/contributors"
  7792. }
  7793. ],
  7794. "description": "Symfony Console Component",
  7795. "homepage": "https://symfony.com",
  7796. "support": {
  7797. "source": "https://github.com/symfony/console/tree/v3.4.41"
  7798. },
  7799. "funding": [
  7800. {
  7801. "url": "https://symfony.com/sponsor",
  7802. "type": "custom"
  7803. },
  7804. {
  7805. "url": "https://github.com/fabpot",
  7806. "type": "github"
  7807. },
  7808. {
  7809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7810. "type": "tidelift"
  7811. }
  7812. ],
  7813. "time": "2020-05-30T18:58:05+00:00"
  7814. },
  7815. {
  7816. "name": "symfony/debug",
  7817. "version": "v3.4.41",
  7818. "source": {
  7819. "type": "git",
  7820. "url": "https://github.com/symfony/debug.git",
  7821. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  7822. },
  7823. "dist": {
  7824. "type": "zip",
  7825. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7826. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  7827. "shasum": ""
  7828. },
  7829. "require": {
  7830. "php": "^5.5.9|>=7.0.8",
  7831. "psr/log": "~1.0"
  7832. },
  7833. "conflict": {
  7834. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7835. },
  7836. "require-dev": {
  7837. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7838. },
  7839. "type": "library",
  7840. "extra": {
  7841. "branch-alias": {
  7842. "dev-master": "3.4-dev"
  7843. }
  7844. },
  7845. "autoload": {
  7846. "psr-4": {
  7847. "Symfony\\Component\\Debug\\": ""
  7848. },
  7849. "exclude-from-classmap": [
  7850. "/Tests/"
  7851. ]
  7852. },
  7853. "notification-url": "https://packagist.org/downloads/",
  7854. "license": [
  7855. "MIT"
  7856. ],
  7857. "authors": [
  7858. {
  7859. "name": "Fabien Potencier",
  7860. "email": "fabien@symfony.com"
  7861. },
  7862. {
  7863. "name": "Symfony Community",
  7864. "homepage": "https://symfony.com/contributors"
  7865. }
  7866. ],
  7867. "description": "Symfony Debug Component",
  7868. "homepage": "https://symfony.com",
  7869. "support": {
  7870. "source": "https://github.com/symfony/debug/tree/3.4"
  7871. },
  7872. "funding": [
  7873. {
  7874. "url": "https://symfony.com/sponsor",
  7875. "type": "custom"
  7876. },
  7877. {
  7878. "url": "https://github.com/fabpot",
  7879. "type": "github"
  7880. },
  7881. {
  7882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7883. "type": "tidelift"
  7884. }
  7885. ],
  7886. "abandoned": "symfony/error-handler",
  7887. "time": "2020-05-22T18:25:20+00:00"
  7888. },
  7889. {
  7890. "name": "symfony/dependency-injection",
  7891. "version": "v3.4.41",
  7892. "source": {
  7893. "type": "git",
  7894. "url": "https://github.com/symfony/dependency-injection.git",
  7895. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  7896. },
  7897. "dist": {
  7898. "type": "zip",
  7899. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  7900. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  7901. "shasum": ""
  7902. },
  7903. "require": {
  7904. "php": "^5.5.9|>=7.0.8",
  7905. "psr/container": "^1.0"
  7906. },
  7907. "conflict": {
  7908. "symfony/config": "<3.3.7",
  7909. "symfony/finder": "<3.3",
  7910. "symfony/proxy-manager-bridge": "<3.4",
  7911. "symfony/yaml": "<3.4"
  7912. },
  7913. "provide": {
  7914. "psr/container-implementation": "1.0"
  7915. },
  7916. "require-dev": {
  7917. "symfony/config": "~3.3|~4.0",
  7918. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7919. "symfony/yaml": "~3.4|~4.0"
  7920. },
  7921. "suggest": {
  7922. "symfony/config": "",
  7923. "symfony/expression-language": "For using expressions in service container configuration",
  7924. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7925. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7926. "symfony/yaml": ""
  7927. },
  7928. "type": "library",
  7929. "extra": {
  7930. "branch-alias": {
  7931. "dev-master": "3.4-dev"
  7932. }
  7933. },
  7934. "autoload": {
  7935. "psr-4": {
  7936. "Symfony\\Component\\DependencyInjection\\": ""
  7937. },
  7938. "exclude-from-classmap": [
  7939. "/Tests/"
  7940. ]
  7941. },
  7942. "notification-url": "https://packagist.org/downloads/",
  7943. "license": [
  7944. "MIT"
  7945. ],
  7946. "authors": [
  7947. {
  7948. "name": "Fabien Potencier",
  7949. "email": "fabien@symfony.com"
  7950. },
  7951. {
  7952. "name": "Symfony Community",
  7953. "homepage": "https://symfony.com/contributors"
  7954. }
  7955. ],
  7956. "description": "Symfony DependencyInjection Component",
  7957. "homepage": "https://symfony.com",
  7958. "support": {
  7959. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  7960. },
  7961. "funding": [
  7962. {
  7963. "url": "https://symfony.com/sponsor",
  7964. "type": "custom"
  7965. },
  7966. {
  7967. "url": "https://github.com/fabpot",
  7968. "type": "github"
  7969. },
  7970. {
  7971. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7972. "type": "tidelift"
  7973. }
  7974. ],
  7975. "time": "2020-05-30T21:06:01+00:00"
  7976. },
  7977. {
  7978. "name": "symfony/event-dispatcher",
  7979. "version": "v3.4.41",
  7980. "source": {
  7981. "type": "git",
  7982. "url": "https://github.com/symfony/event-dispatcher.git",
  7983. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  7984. },
  7985. "dist": {
  7986. "type": "zip",
  7987. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  7988. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  7989. "shasum": ""
  7990. },
  7991. "require": {
  7992. "php": "^5.5.9|>=7.0.8"
  7993. },
  7994. "conflict": {
  7995. "symfony/dependency-injection": "<3.3"
  7996. },
  7997. "require-dev": {
  7998. "psr/log": "~1.0",
  7999. "symfony/config": "~2.8|~3.0|~4.0",
  8000. "symfony/dependency-injection": "~3.3|~4.0",
  8001. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8002. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8003. },
  8004. "suggest": {
  8005. "symfony/dependency-injection": "",
  8006. "symfony/http-kernel": ""
  8007. },
  8008. "type": "library",
  8009. "extra": {
  8010. "branch-alias": {
  8011. "dev-master": "3.4-dev"
  8012. }
  8013. },
  8014. "autoload": {
  8015. "psr-4": {
  8016. "Symfony\\Component\\EventDispatcher\\": ""
  8017. },
  8018. "exclude-from-classmap": [
  8019. "/Tests/"
  8020. ]
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "MIT"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "Fabien Potencier",
  8029. "email": "fabien@symfony.com"
  8030. },
  8031. {
  8032. "name": "Symfony Community",
  8033. "homepage": "https://symfony.com/contributors"
  8034. }
  8035. ],
  8036. "description": "Symfony EventDispatcher Component",
  8037. "homepage": "https://symfony.com",
  8038. "support": {
  8039. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8040. },
  8041. "funding": [
  8042. {
  8043. "url": "https://symfony.com/sponsor",
  8044. "type": "custom"
  8045. },
  8046. {
  8047. "url": "https://github.com/fabpot",
  8048. "type": "github"
  8049. },
  8050. {
  8051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8052. "type": "tidelift"
  8053. }
  8054. ],
  8055. "time": "2020-05-05T15:06:23+00:00"
  8056. },
  8057. {
  8058. "name": "symfony/filesystem",
  8059. "version": "v4.4.42",
  8060. "source": {
  8061. "type": "git",
  8062. "url": "https://github.com/symfony/filesystem.git",
  8063. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8064. },
  8065. "dist": {
  8066. "type": "zip",
  8067. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8068. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8069. "shasum": ""
  8070. },
  8071. "require": {
  8072. "php": ">=7.1.3",
  8073. "symfony/polyfill-ctype": "~1.8",
  8074. "symfony/polyfill-php80": "^1.16"
  8075. },
  8076. "type": "library",
  8077. "autoload": {
  8078. "psr-4": {
  8079. "Symfony\\Component\\Filesystem\\": ""
  8080. },
  8081. "exclude-from-classmap": [
  8082. "/Tests/"
  8083. ]
  8084. },
  8085. "notification-url": "https://packagist.org/downloads/",
  8086. "license": [
  8087. "MIT"
  8088. ],
  8089. "authors": [
  8090. {
  8091. "name": "Fabien Potencier",
  8092. "email": "fabien@symfony.com"
  8093. },
  8094. {
  8095. "name": "Symfony Community",
  8096. "homepage": "https://symfony.com/contributors"
  8097. }
  8098. ],
  8099. "description": "Provides basic utilities for the filesystem",
  8100. "homepage": "https://symfony.com",
  8101. "support": {
  8102. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8103. },
  8104. "funding": [
  8105. {
  8106. "url": "https://symfony.com/sponsor",
  8107. "type": "custom"
  8108. },
  8109. {
  8110. "url": "https://github.com/fabpot",
  8111. "type": "github"
  8112. },
  8113. {
  8114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8115. "type": "tidelift"
  8116. }
  8117. ],
  8118. "time": "2022-05-20T08:49:14+00:00"
  8119. },
  8120. {
  8121. "name": "symfony/finder",
  8122. "version": "v4.4.44",
  8123. "source": {
  8124. "type": "git",
  8125. "url": "https://github.com/symfony/finder.git",
  8126. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8127. },
  8128. "dist": {
  8129. "type": "zip",
  8130. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8131. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8132. "shasum": ""
  8133. },
  8134. "require": {
  8135. "php": ">=7.1.3",
  8136. "symfony/polyfill-php80": "^1.16"
  8137. },
  8138. "type": "library",
  8139. "autoload": {
  8140. "psr-4": {
  8141. "Symfony\\Component\\Finder\\": ""
  8142. },
  8143. "exclude-from-classmap": [
  8144. "/Tests/"
  8145. ]
  8146. },
  8147. "notification-url": "https://packagist.org/downloads/",
  8148. "license": [
  8149. "MIT"
  8150. ],
  8151. "authors": [
  8152. {
  8153. "name": "Fabien Potencier",
  8154. "email": "fabien@symfony.com"
  8155. },
  8156. {
  8157. "name": "Symfony Community",
  8158. "homepage": "https://symfony.com/contributors"
  8159. }
  8160. ],
  8161. "description": "Finds files and directories via an intuitive fluent interface",
  8162. "homepage": "https://symfony.com",
  8163. "support": {
  8164. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8165. },
  8166. "funding": [
  8167. {
  8168. "url": "https://symfony.com/sponsor",
  8169. "type": "custom"
  8170. },
  8171. {
  8172. "url": "https://github.com/fabpot",
  8173. "type": "github"
  8174. },
  8175. {
  8176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8177. "type": "tidelift"
  8178. }
  8179. ],
  8180. "time": "2022-07-29T07:35:46+00:00"
  8181. },
  8182. {
  8183. "name": "symfony/http-foundation",
  8184. "version": "v3.4.41",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://github.com/symfony/http-foundation.git",
  8188. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8193. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8194. "shasum": ""
  8195. },
  8196. "require": {
  8197. "php": "^5.5.9|>=7.0.8",
  8198. "symfony/polyfill-mbstring": "~1.1",
  8199. "symfony/polyfill-php70": "~1.6"
  8200. },
  8201. "require-dev": {
  8202. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8203. },
  8204. "type": "library",
  8205. "extra": {
  8206. "branch-alias": {
  8207. "dev-master": "3.4-dev"
  8208. }
  8209. },
  8210. "autoload": {
  8211. "psr-4": {
  8212. "Symfony\\Component\\HttpFoundation\\": ""
  8213. },
  8214. "exclude-from-classmap": [
  8215. "/Tests/"
  8216. ]
  8217. },
  8218. "notification-url": "https://packagist.org/downloads/",
  8219. "license": [
  8220. "MIT"
  8221. ],
  8222. "authors": [
  8223. {
  8224. "name": "Fabien Potencier",
  8225. "email": "fabien@symfony.com"
  8226. },
  8227. {
  8228. "name": "Symfony Community",
  8229. "homepage": "https://symfony.com/contributors"
  8230. }
  8231. ],
  8232. "description": "Symfony HttpFoundation Component",
  8233. "homepage": "https://symfony.com",
  8234. "support": {
  8235. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8236. },
  8237. "funding": [
  8238. {
  8239. "url": "https://symfony.com/sponsor",
  8240. "type": "custom"
  8241. },
  8242. {
  8243. "url": "https://github.com/fabpot",
  8244. "type": "github"
  8245. },
  8246. {
  8247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8248. "type": "tidelift"
  8249. }
  8250. ],
  8251. "time": "2020-05-16T13:15:54+00:00"
  8252. },
  8253. {
  8254. "name": "symfony/http-kernel",
  8255. "version": "v3.4.44",
  8256. "source": {
  8257. "type": "git",
  8258. "url": "https://github.com/symfony/http-kernel.git",
  8259. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8260. },
  8261. "dist": {
  8262. "type": "zip",
  8263. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8264. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8265. "shasum": ""
  8266. },
  8267. "require": {
  8268. "php": "^5.5.9|>=7.0.8",
  8269. "psr/log": "~1.0",
  8270. "symfony/debug": "^3.3.3|~4.0",
  8271. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8272. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8273. "symfony/polyfill-ctype": "~1.8",
  8274. "symfony/polyfill-php56": "~1.8"
  8275. },
  8276. "conflict": {
  8277. "symfony/config": "<2.8",
  8278. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8279. "symfony/var-dumper": "<3.3",
  8280. "twig/twig": "<1.34|<2.4,>=2"
  8281. },
  8282. "provide": {
  8283. "psr/log-implementation": "1.0"
  8284. },
  8285. "require-dev": {
  8286. "psr/cache": "~1.0",
  8287. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8288. "symfony/class-loader": "~2.8|~3.0",
  8289. "symfony/config": "~2.8|~3.0|~4.0",
  8290. "symfony/console": "~2.8|~3.0|~4.0",
  8291. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8292. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8293. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8294. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8295. "symfony/finder": "~2.8|~3.0|~4.0",
  8296. "symfony/process": "~2.8|~3.0|~4.0",
  8297. "symfony/routing": "~3.4|~4.0",
  8298. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8299. "symfony/templating": "~2.8|~3.0|~4.0",
  8300. "symfony/translation": "~2.8|~3.0|~4.0",
  8301. "symfony/var-dumper": "~3.3|~4.0"
  8302. },
  8303. "suggest": {
  8304. "symfony/browser-kit": "",
  8305. "symfony/config": "",
  8306. "symfony/console": "",
  8307. "symfony/dependency-injection": "",
  8308. "symfony/finder": "",
  8309. "symfony/var-dumper": ""
  8310. },
  8311. "type": "library",
  8312. "extra": {
  8313. "branch-alias": {
  8314. "dev-master": "3.4-dev"
  8315. }
  8316. },
  8317. "autoload": {
  8318. "psr-4": {
  8319. "Symfony\\Component\\HttpKernel\\": ""
  8320. },
  8321. "exclude-from-classmap": [
  8322. "/Tests/"
  8323. ]
  8324. },
  8325. "notification-url": "https://packagist.org/downloads/",
  8326. "license": [
  8327. "MIT"
  8328. ],
  8329. "authors": [
  8330. {
  8331. "name": "Fabien Potencier",
  8332. "email": "fabien@symfony.com"
  8333. },
  8334. {
  8335. "name": "Symfony Community",
  8336. "homepage": "https://symfony.com/contributors"
  8337. }
  8338. ],
  8339. "description": "Symfony HttpKernel Component",
  8340. "homepage": "https://symfony.com",
  8341. "support": {
  8342. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8343. },
  8344. "funding": [
  8345. {
  8346. "url": "https://symfony.com/sponsor",
  8347. "type": "custom"
  8348. },
  8349. {
  8350. "url": "https://github.com/fabpot",
  8351. "type": "github"
  8352. },
  8353. {
  8354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8355. "type": "tidelift"
  8356. }
  8357. ],
  8358. "time": "2020-08-31T05:53:42+00:00"
  8359. },
  8360. {
  8361. "name": "symfony/polyfill-ctype",
  8362. "version": "v1.17.0",
  8363. "source": {
  8364. "type": "git",
  8365. "url": "https://github.com/symfony/polyfill-ctype.git",
  8366. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8367. },
  8368. "dist": {
  8369. "type": "zip",
  8370. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8371. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8372. "shasum": ""
  8373. },
  8374. "require": {
  8375. "php": ">=5.3.3"
  8376. },
  8377. "suggest": {
  8378. "ext-ctype": "For best performance"
  8379. },
  8380. "type": "library",
  8381. "extra": {
  8382. "branch-alias": {
  8383. "dev-master": "1.17-dev"
  8384. }
  8385. },
  8386. "autoload": {
  8387. "files": [
  8388. "bootstrap.php"
  8389. ],
  8390. "psr-4": {
  8391. "Symfony\\Polyfill\\Ctype\\": ""
  8392. }
  8393. },
  8394. "notification-url": "https://packagist.org/downloads/",
  8395. "license": [
  8396. "MIT"
  8397. ],
  8398. "authors": [
  8399. {
  8400. "name": "Gert de Pagter",
  8401. "email": "BackEndTea@gmail.com"
  8402. },
  8403. {
  8404. "name": "Symfony Community",
  8405. "homepage": "https://symfony.com/contributors"
  8406. }
  8407. ],
  8408. "description": "Symfony polyfill for ctype functions",
  8409. "homepage": "https://symfony.com",
  8410. "keywords": [
  8411. "compatibility",
  8412. "ctype",
  8413. "polyfill",
  8414. "portable"
  8415. ],
  8416. "support": {
  8417. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8418. },
  8419. "funding": [
  8420. {
  8421. "url": "https://symfony.com/sponsor",
  8422. "type": "custom"
  8423. },
  8424. {
  8425. "url": "https://github.com/fabpot",
  8426. "type": "github"
  8427. },
  8428. {
  8429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8430. "type": "tidelift"
  8431. }
  8432. ],
  8433. "time": "2020-05-12T16:14:59+00:00"
  8434. },
  8435. {
  8436. "name": "symfony/polyfill-iconv",
  8437. "version": "v1.17.0",
  8438. "source": {
  8439. "type": "git",
  8440. "url": "https://github.com/symfony/polyfill-iconv.git",
  8441. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8442. },
  8443. "dist": {
  8444. "type": "zip",
  8445. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8446. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8447. "shasum": ""
  8448. },
  8449. "require": {
  8450. "php": ">=5.3.3"
  8451. },
  8452. "suggest": {
  8453. "ext-iconv": "For best performance"
  8454. },
  8455. "type": "library",
  8456. "extra": {
  8457. "branch-alias": {
  8458. "dev-master": "1.17-dev"
  8459. }
  8460. },
  8461. "autoload": {
  8462. "files": [
  8463. "bootstrap.php"
  8464. ],
  8465. "psr-4": {
  8466. "Symfony\\Polyfill\\Iconv\\": ""
  8467. }
  8468. },
  8469. "notification-url": "https://packagist.org/downloads/",
  8470. "license": [
  8471. "MIT"
  8472. ],
  8473. "authors": [
  8474. {
  8475. "name": "Nicolas Grekas",
  8476. "email": "p@tchwork.com"
  8477. },
  8478. {
  8479. "name": "Symfony Community",
  8480. "homepage": "https://symfony.com/contributors"
  8481. }
  8482. ],
  8483. "description": "Symfony polyfill for the Iconv extension",
  8484. "homepage": "https://symfony.com",
  8485. "keywords": [
  8486. "compatibility",
  8487. "iconv",
  8488. "polyfill",
  8489. "portable",
  8490. "shim"
  8491. ],
  8492. "support": {
  8493. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8494. },
  8495. "funding": [
  8496. {
  8497. "url": "https://symfony.com/sponsor",
  8498. "type": "custom"
  8499. },
  8500. {
  8501. "url": "https://github.com/fabpot",
  8502. "type": "github"
  8503. },
  8504. {
  8505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8506. "type": "tidelift"
  8507. }
  8508. ],
  8509. "time": "2020-05-12T16:47:27+00:00"
  8510. },
  8511. {
  8512. "name": "symfony/polyfill-intl-idn",
  8513. "version": "v1.17.0",
  8514. "source": {
  8515. "type": "git",
  8516. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8517. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8518. },
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8522. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8523. "shasum": ""
  8524. },
  8525. "require": {
  8526. "php": ">=5.3.3",
  8527. "symfony/polyfill-mbstring": "^1.3",
  8528. "symfony/polyfill-php72": "^1.10"
  8529. },
  8530. "suggest": {
  8531. "ext-intl": "For best performance"
  8532. },
  8533. "type": "library",
  8534. "extra": {
  8535. "branch-alias": {
  8536. "dev-master": "1.17-dev"
  8537. }
  8538. },
  8539. "autoload": {
  8540. "files": [
  8541. "bootstrap.php"
  8542. ],
  8543. "psr-4": {
  8544. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8545. }
  8546. },
  8547. "notification-url": "https://packagist.org/downloads/",
  8548. "license": [
  8549. "MIT"
  8550. ],
  8551. "authors": [
  8552. {
  8553. "name": "Laurent Bassin",
  8554. "email": "laurent@bassin.info"
  8555. },
  8556. {
  8557. "name": "Symfony Community",
  8558. "homepage": "https://symfony.com/contributors"
  8559. }
  8560. ],
  8561. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8562. "homepage": "https://symfony.com",
  8563. "keywords": [
  8564. "compatibility",
  8565. "idn",
  8566. "intl",
  8567. "polyfill",
  8568. "portable",
  8569. "shim"
  8570. ],
  8571. "support": {
  8572. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8573. },
  8574. "funding": [
  8575. {
  8576. "url": "https://symfony.com/sponsor",
  8577. "type": "custom"
  8578. },
  8579. {
  8580. "url": "https://github.com/fabpot",
  8581. "type": "github"
  8582. },
  8583. {
  8584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8585. "type": "tidelift"
  8586. }
  8587. ],
  8588. "time": "2020-05-12T16:47:27+00:00"
  8589. },
  8590. {
  8591. "name": "symfony/polyfill-mbstring",
  8592. "version": "v1.17.0",
  8593. "source": {
  8594. "type": "git",
  8595. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8596. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8597. },
  8598. "dist": {
  8599. "type": "zip",
  8600. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8601. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8602. "shasum": ""
  8603. },
  8604. "require": {
  8605. "php": ">=5.3.3"
  8606. },
  8607. "suggest": {
  8608. "ext-mbstring": "For best performance"
  8609. },
  8610. "type": "library",
  8611. "extra": {
  8612. "branch-alias": {
  8613. "dev-master": "1.17-dev"
  8614. }
  8615. },
  8616. "autoload": {
  8617. "files": [
  8618. "bootstrap.php"
  8619. ],
  8620. "psr-4": {
  8621. "Symfony\\Polyfill\\Mbstring\\": ""
  8622. }
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "MIT"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Nicolas Grekas",
  8631. "email": "p@tchwork.com"
  8632. },
  8633. {
  8634. "name": "Symfony Community",
  8635. "homepage": "https://symfony.com/contributors"
  8636. }
  8637. ],
  8638. "description": "Symfony polyfill for the Mbstring extension",
  8639. "homepage": "https://symfony.com",
  8640. "keywords": [
  8641. "compatibility",
  8642. "mbstring",
  8643. "polyfill",
  8644. "portable",
  8645. "shim"
  8646. ],
  8647. "support": {
  8648. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8649. },
  8650. "funding": [
  8651. {
  8652. "url": "https://symfony.com/sponsor",
  8653. "type": "custom"
  8654. },
  8655. {
  8656. "url": "https://github.com/fabpot",
  8657. "type": "github"
  8658. },
  8659. {
  8660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8661. "type": "tidelift"
  8662. }
  8663. ],
  8664. "time": "2020-05-12T16:47:27+00:00"
  8665. },
  8666. {
  8667. "name": "symfony/polyfill-php56",
  8668. "version": "v1.17.0",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/symfony/polyfill-php56.git",
  8672. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8677. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": ">=5.3.3",
  8682. "symfony/polyfill-util": "~1.0"
  8683. },
  8684. "type": "library",
  8685. "extra": {
  8686. "branch-alias": {
  8687. "dev-master": "1.17-dev"
  8688. }
  8689. },
  8690. "autoload": {
  8691. "files": [
  8692. "bootstrap.php"
  8693. ],
  8694. "psr-4": {
  8695. "Symfony\\Polyfill\\Php56\\": ""
  8696. }
  8697. },
  8698. "notification-url": "https://packagist.org/downloads/",
  8699. "license": [
  8700. "MIT"
  8701. ],
  8702. "authors": [
  8703. {
  8704. "name": "Nicolas Grekas",
  8705. "email": "p@tchwork.com"
  8706. },
  8707. {
  8708. "name": "Symfony Community",
  8709. "homepage": "https://symfony.com/contributors"
  8710. }
  8711. ],
  8712. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8713. "homepage": "https://symfony.com",
  8714. "keywords": [
  8715. "compatibility",
  8716. "polyfill",
  8717. "portable",
  8718. "shim"
  8719. ],
  8720. "support": {
  8721. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8722. },
  8723. "funding": [
  8724. {
  8725. "url": "https://symfony.com/sponsor",
  8726. "type": "custom"
  8727. },
  8728. {
  8729. "url": "https://github.com/fabpot",
  8730. "type": "github"
  8731. },
  8732. {
  8733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8734. "type": "tidelift"
  8735. }
  8736. ],
  8737. "time": "2020-05-12T16:47:27+00:00"
  8738. },
  8739. {
  8740. "name": "symfony/polyfill-php70",
  8741. "version": "v1.17.0",
  8742. "source": {
  8743. "type": "git",
  8744. "url": "https://github.com/symfony/polyfill-php70.git",
  8745. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8746. },
  8747. "dist": {
  8748. "type": "zip",
  8749. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8750. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  8751. "shasum": ""
  8752. },
  8753. "require": {
  8754. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8755. "php": ">=5.3.3"
  8756. },
  8757. "type": "library",
  8758. "extra": {
  8759. "branch-alias": {
  8760. "dev-master": "1.17-dev"
  8761. }
  8762. },
  8763. "autoload": {
  8764. "files": [
  8765. "bootstrap.php"
  8766. ],
  8767. "psr-4": {
  8768. "Symfony\\Polyfill\\Php70\\": ""
  8769. },
  8770. "classmap": [
  8771. "Resources/stubs"
  8772. ]
  8773. },
  8774. "notification-url": "https://packagist.org/downloads/",
  8775. "license": [
  8776. "MIT"
  8777. ],
  8778. "authors": [
  8779. {
  8780. "name": "Nicolas Grekas",
  8781. "email": "p@tchwork.com"
  8782. },
  8783. {
  8784. "name": "Symfony Community",
  8785. "homepage": "https://symfony.com/contributors"
  8786. }
  8787. ],
  8788. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8789. "homepage": "https://symfony.com",
  8790. "keywords": [
  8791. "compatibility",
  8792. "polyfill",
  8793. "portable",
  8794. "shim"
  8795. ],
  8796. "support": {
  8797. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  8798. },
  8799. "funding": [
  8800. {
  8801. "url": "https://symfony.com/sponsor",
  8802. "type": "custom"
  8803. },
  8804. {
  8805. "url": "https://github.com/fabpot",
  8806. "type": "github"
  8807. },
  8808. {
  8809. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8810. "type": "tidelift"
  8811. }
  8812. ],
  8813. "time": "2020-05-12T16:47:27+00:00"
  8814. },
  8815. {
  8816. "name": "symfony/polyfill-php72",
  8817. "version": "v1.17.0",
  8818. "source": {
  8819. "type": "git",
  8820. "url": "https://github.com/symfony/polyfill-php72.git",
  8821. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  8822. },
  8823. "dist": {
  8824. "type": "zip",
  8825. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  8826. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  8827. "shasum": ""
  8828. },
  8829. "require": {
  8830. "php": ">=5.3.3"
  8831. },
  8832. "type": "library",
  8833. "extra": {
  8834. "branch-alias": {
  8835. "dev-master": "1.17-dev"
  8836. }
  8837. },
  8838. "autoload": {
  8839. "files": [
  8840. "bootstrap.php"
  8841. ],
  8842. "psr-4": {
  8843. "Symfony\\Polyfill\\Php72\\": ""
  8844. }
  8845. },
  8846. "notification-url": "https://packagist.org/downloads/",
  8847. "license": [
  8848. "MIT"
  8849. ],
  8850. "authors": [
  8851. {
  8852. "name": "Nicolas Grekas",
  8853. "email": "p@tchwork.com"
  8854. },
  8855. {
  8856. "name": "Symfony Community",
  8857. "homepage": "https://symfony.com/contributors"
  8858. }
  8859. ],
  8860. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8861. "homepage": "https://symfony.com",
  8862. "keywords": [
  8863. "compatibility",
  8864. "polyfill",
  8865. "portable",
  8866. "shim"
  8867. ],
  8868. "support": {
  8869. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  8870. },
  8871. "funding": [
  8872. {
  8873. "url": "https://symfony.com/sponsor",
  8874. "type": "custom"
  8875. },
  8876. {
  8877. "url": "https://github.com/fabpot",
  8878. "type": "github"
  8879. },
  8880. {
  8881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8882. "type": "tidelift"
  8883. }
  8884. ],
  8885. "time": "2020-05-12T16:47:27+00:00"
  8886. },
  8887. {
  8888. "name": "symfony/polyfill-php80",
  8889. "version": "v1.31.0",
  8890. "source": {
  8891. "type": "git",
  8892. "url": "https://github.com/symfony/polyfill-php80.git",
  8893. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8894. },
  8895. "dist": {
  8896. "type": "zip",
  8897. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8898. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8899. "shasum": ""
  8900. },
  8901. "require": {
  8902. "php": ">=7.2"
  8903. },
  8904. "type": "library",
  8905. "extra": {
  8906. "thanks": {
  8907. "name": "symfony/polyfill",
  8908. "url": "https://github.com/symfony/polyfill"
  8909. }
  8910. },
  8911. "autoload": {
  8912. "files": [
  8913. "bootstrap.php"
  8914. ],
  8915. "psr-4": {
  8916. "Symfony\\Polyfill\\Php80\\": ""
  8917. },
  8918. "classmap": [
  8919. "Resources/stubs"
  8920. ]
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "MIT"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Ion Bazan",
  8929. "email": "ion.bazan@gmail.com"
  8930. },
  8931. {
  8932. "name": "Nicolas Grekas",
  8933. "email": "p@tchwork.com"
  8934. },
  8935. {
  8936. "name": "Symfony Community",
  8937. "homepage": "https://symfony.com/contributors"
  8938. }
  8939. ],
  8940. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8941. "homepage": "https://symfony.com",
  8942. "keywords": [
  8943. "compatibility",
  8944. "polyfill",
  8945. "portable",
  8946. "shim"
  8947. ],
  8948. "support": {
  8949. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8950. },
  8951. "funding": [
  8952. {
  8953. "url": "https://symfony.com/sponsor",
  8954. "type": "custom"
  8955. },
  8956. {
  8957. "url": "https://github.com/fabpot",
  8958. "type": "github"
  8959. },
  8960. {
  8961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8962. "type": "tidelift"
  8963. }
  8964. ],
  8965. "time": "2024-09-09T11:45:10+00:00"
  8966. },
  8967. {
  8968. "name": "symfony/polyfill-util",
  8969. "version": "v1.17.0",
  8970. "source": {
  8971. "type": "git",
  8972. "url": "https://github.com/symfony/polyfill-util.git",
  8973. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  8974. },
  8975. "dist": {
  8976. "type": "zip",
  8977. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8978. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  8979. "shasum": ""
  8980. },
  8981. "require": {
  8982. "php": ">=5.3.3"
  8983. },
  8984. "type": "library",
  8985. "extra": {
  8986. "branch-alias": {
  8987. "dev-master": "1.17-dev"
  8988. }
  8989. },
  8990. "autoload": {
  8991. "psr-4": {
  8992. "Symfony\\Polyfill\\Util\\": ""
  8993. }
  8994. },
  8995. "notification-url": "https://packagist.org/downloads/",
  8996. "license": [
  8997. "MIT"
  8998. ],
  8999. "authors": [
  9000. {
  9001. "name": "Nicolas Grekas",
  9002. "email": "p@tchwork.com"
  9003. },
  9004. {
  9005. "name": "Symfony Community",
  9006. "homepage": "https://symfony.com/contributors"
  9007. }
  9008. ],
  9009. "description": "Symfony utilities for portability of PHP codes",
  9010. "homepage": "https://symfony.com",
  9011. "keywords": [
  9012. "compat",
  9013. "compatibility",
  9014. "polyfill",
  9015. "shim"
  9016. ],
  9017. "support": {
  9018. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://symfony.com/sponsor",
  9023. "type": "custom"
  9024. },
  9025. {
  9026. "url": "https://github.com/fabpot",
  9027. "type": "github"
  9028. },
  9029. {
  9030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9031. "type": "tidelift"
  9032. }
  9033. ],
  9034. "time": "2020-05-12T16:14:59+00:00"
  9035. },
  9036. {
  9037. "name": "symfony/process",
  9038. "version": "v3.4.41",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/symfony/process.git",
  9042. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9047. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "php": "^5.5.9|>=7.0.8"
  9052. },
  9053. "type": "library",
  9054. "extra": {
  9055. "branch-alias": {
  9056. "dev-master": "3.4-dev"
  9057. }
  9058. },
  9059. "autoload": {
  9060. "psr-4": {
  9061. "Symfony\\Component\\Process\\": ""
  9062. },
  9063. "exclude-from-classmap": [
  9064. "/Tests/"
  9065. ]
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "MIT"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Fabien Potencier",
  9074. "email": "fabien@symfony.com"
  9075. },
  9076. {
  9077. "name": "Symfony Community",
  9078. "homepage": "https://symfony.com/contributors"
  9079. }
  9080. ],
  9081. "description": "Symfony Process Component",
  9082. "homepage": "https://symfony.com",
  9083. "support": {
  9084. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9085. },
  9086. "funding": [
  9087. {
  9088. "url": "https://symfony.com/sponsor",
  9089. "type": "custom"
  9090. },
  9091. {
  9092. "url": "https://github.com/fabpot",
  9093. "type": "github"
  9094. },
  9095. {
  9096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9097. "type": "tidelift"
  9098. }
  9099. ],
  9100. "time": "2020-05-23T17:05:51+00:00"
  9101. },
  9102. {
  9103. "name": "symfony/psr-http-message-bridge",
  9104. "version": "v1.1.2",
  9105. "source": {
  9106. "type": "git",
  9107. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9108. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9109. },
  9110. "dist": {
  9111. "type": "zip",
  9112. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9113. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9114. "shasum": ""
  9115. },
  9116. "require": {
  9117. "php": "^5.3.3 || ^7.0",
  9118. "psr/http-message": "^1.0",
  9119. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9120. },
  9121. "require-dev": {
  9122. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9123. },
  9124. "suggest": {
  9125. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9126. },
  9127. "type": "symfony-bridge",
  9128. "extra": {
  9129. "branch-alias": {
  9130. "dev-master": "1.1-dev"
  9131. }
  9132. },
  9133. "autoload": {
  9134. "psr-4": {
  9135. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9136. },
  9137. "exclude-from-classmap": [
  9138. "/Tests/"
  9139. ]
  9140. },
  9141. "notification-url": "https://packagist.org/downloads/",
  9142. "license": [
  9143. "MIT"
  9144. ],
  9145. "authors": [
  9146. {
  9147. "name": "Symfony Community",
  9148. "homepage": "http://symfony.com/contributors"
  9149. },
  9150. {
  9151. "name": "Fabien Potencier",
  9152. "email": "fabien@symfony.com"
  9153. }
  9154. ],
  9155. "description": "PSR HTTP message bridge",
  9156. "homepage": "http://symfony.com",
  9157. "keywords": [
  9158. "http",
  9159. "http-message",
  9160. "psr-17",
  9161. "psr-7"
  9162. ],
  9163. "support": {
  9164. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9165. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9166. },
  9167. "time": "2019-04-03T17:09:40+00:00"
  9168. },
  9169. {
  9170. "name": "symfony/routing",
  9171. "version": "v3.4.41",
  9172. "source": {
  9173. "type": "git",
  9174. "url": "https://github.com/symfony/routing.git",
  9175. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9176. },
  9177. "dist": {
  9178. "type": "zip",
  9179. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9180. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9181. "shasum": ""
  9182. },
  9183. "require": {
  9184. "php": "^5.5.9|>=7.0.8"
  9185. },
  9186. "conflict": {
  9187. "symfony/config": "<3.3.1",
  9188. "symfony/dependency-injection": "<3.3",
  9189. "symfony/yaml": "<3.4"
  9190. },
  9191. "require-dev": {
  9192. "doctrine/annotations": "~1.0",
  9193. "psr/log": "~1.0",
  9194. "symfony/config": "^3.3.1|~4.0",
  9195. "symfony/dependency-injection": "~3.3|~4.0",
  9196. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9197. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9198. "symfony/yaml": "~3.4|~4.0"
  9199. },
  9200. "suggest": {
  9201. "doctrine/annotations": "For using the annotation loader",
  9202. "symfony/config": "For using the all-in-one router or any loader",
  9203. "symfony/expression-language": "For using expression matching",
  9204. "symfony/http-foundation": "For using a Symfony Request object",
  9205. "symfony/yaml": "For using the YAML loader"
  9206. },
  9207. "type": "library",
  9208. "extra": {
  9209. "branch-alias": {
  9210. "dev-master": "3.4-dev"
  9211. }
  9212. },
  9213. "autoload": {
  9214. "psr-4": {
  9215. "Symfony\\Component\\Routing\\": ""
  9216. },
  9217. "exclude-from-classmap": [
  9218. "/Tests/"
  9219. ]
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "MIT"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Fabien Potencier",
  9228. "email": "fabien@symfony.com"
  9229. },
  9230. {
  9231. "name": "Symfony Community",
  9232. "homepage": "https://symfony.com/contributors"
  9233. }
  9234. ],
  9235. "description": "Symfony Routing Component",
  9236. "homepage": "https://symfony.com",
  9237. "keywords": [
  9238. "router",
  9239. "routing",
  9240. "uri",
  9241. "url"
  9242. ],
  9243. "support": {
  9244. "source": "https://github.com/symfony/routing/tree/3.4"
  9245. },
  9246. "funding": [
  9247. {
  9248. "url": "https://symfony.com/sponsor",
  9249. "type": "custom"
  9250. },
  9251. {
  9252. "url": "https://github.com/fabpot",
  9253. "type": "github"
  9254. },
  9255. {
  9256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9257. "type": "tidelift"
  9258. }
  9259. ],
  9260. "time": "2020-05-30T19:50:06+00:00"
  9261. },
  9262. {
  9263. "name": "symfony/serializer",
  9264. "version": "v3.4.41",
  9265. "source": {
  9266. "type": "git",
  9267. "url": "https://github.com/symfony/serializer.git",
  9268. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9269. },
  9270. "dist": {
  9271. "type": "zip",
  9272. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9273. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9274. "shasum": ""
  9275. },
  9276. "require": {
  9277. "php": "^5.5.9|>=7.0.8",
  9278. "symfony/polyfill-ctype": "~1.8"
  9279. },
  9280. "conflict": {
  9281. "phpdocumentor/type-resolver": "<0.2.1",
  9282. "symfony/dependency-injection": "<3.2",
  9283. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9284. "symfony/property-info": "<3.1",
  9285. "symfony/yaml": "<3.4"
  9286. },
  9287. "require-dev": {
  9288. "doctrine/annotations": "~1.0",
  9289. "doctrine/cache": "~1.0",
  9290. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9291. "symfony/cache": "~3.1|~4.0",
  9292. "symfony/config": "~2.8|~3.0|~4.0",
  9293. "symfony/dependency-injection": "~3.2|~4.0",
  9294. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9295. "symfony/property-access": "~2.8|~3.0|~4.0",
  9296. "symfony/property-info": "^3.4.13|~4.0",
  9297. "symfony/yaml": "~3.4|~4.0"
  9298. },
  9299. "suggest": {
  9300. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9301. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9302. "psr/cache-implementation": "For using the metadata cache.",
  9303. "symfony/config": "For using the XML mapping loader.",
  9304. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9305. "symfony/property-access": "For using the ObjectNormalizer.",
  9306. "symfony/property-info": "To deserialize relations.",
  9307. "symfony/yaml": "For using the default YAML mapping loader."
  9308. },
  9309. "type": "library",
  9310. "extra": {
  9311. "branch-alias": {
  9312. "dev-master": "3.4-dev"
  9313. }
  9314. },
  9315. "autoload": {
  9316. "psr-4": {
  9317. "Symfony\\Component\\Serializer\\": ""
  9318. },
  9319. "exclude-from-classmap": [
  9320. "/Tests/"
  9321. ]
  9322. },
  9323. "notification-url": "https://packagist.org/downloads/",
  9324. "license": [
  9325. "MIT"
  9326. ],
  9327. "authors": [
  9328. {
  9329. "name": "Fabien Potencier",
  9330. "email": "fabien@symfony.com"
  9331. },
  9332. {
  9333. "name": "Symfony Community",
  9334. "homepage": "https://symfony.com/contributors"
  9335. }
  9336. ],
  9337. "description": "Symfony Serializer Component",
  9338. "homepage": "https://symfony.com",
  9339. "support": {
  9340. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9341. },
  9342. "funding": [
  9343. {
  9344. "url": "https://symfony.com/sponsor",
  9345. "type": "custom"
  9346. },
  9347. {
  9348. "url": "https://github.com/fabpot",
  9349. "type": "github"
  9350. },
  9351. {
  9352. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9353. "type": "tidelift"
  9354. }
  9355. ],
  9356. "time": "2020-05-30T18:58:05+00:00"
  9357. },
  9358. {
  9359. "name": "symfony/translation",
  9360. "version": "v3.4.41",
  9361. "source": {
  9362. "type": "git",
  9363. "url": "https://github.com/symfony/translation.git",
  9364. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9365. },
  9366. "dist": {
  9367. "type": "zip",
  9368. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9369. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9370. "shasum": ""
  9371. },
  9372. "require": {
  9373. "php": "^5.5.9|>=7.0.8",
  9374. "symfony/polyfill-mbstring": "~1.0"
  9375. },
  9376. "conflict": {
  9377. "symfony/config": "<2.8",
  9378. "symfony/dependency-injection": "<3.4",
  9379. "symfony/yaml": "<3.4"
  9380. },
  9381. "require-dev": {
  9382. "psr/log": "~1.0",
  9383. "symfony/config": "~2.8|~3.0|~4.0",
  9384. "symfony/dependency-injection": "~3.4|~4.0",
  9385. "symfony/finder": "~2.8|~3.0|~4.0",
  9386. "symfony/http-kernel": "~3.4|~4.0",
  9387. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9388. "symfony/var-dumper": "~3.4|~4.0",
  9389. "symfony/yaml": "~3.4|~4.0"
  9390. },
  9391. "suggest": {
  9392. "psr/log-implementation": "To use logging capability in translator",
  9393. "symfony/config": "",
  9394. "symfony/yaml": ""
  9395. },
  9396. "type": "library",
  9397. "extra": {
  9398. "branch-alias": {
  9399. "dev-master": "3.4-dev"
  9400. }
  9401. },
  9402. "autoload": {
  9403. "psr-4": {
  9404. "Symfony\\Component\\Translation\\": ""
  9405. },
  9406. "exclude-from-classmap": [
  9407. "/Tests/"
  9408. ]
  9409. },
  9410. "notification-url": "https://packagist.org/downloads/",
  9411. "license": [
  9412. "MIT"
  9413. ],
  9414. "authors": [
  9415. {
  9416. "name": "Fabien Potencier",
  9417. "email": "fabien@symfony.com"
  9418. },
  9419. {
  9420. "name": "Symfony Community",
  9421. "homepage": "https://symfony.com/contributors"
  9422. }
  9423. ],
  9424. "description": "Symfony Translation Component",
  9425. "homepage": "https://symfony.com",
  9426. "support": {
  9427. "source": "https://github.com/symfony/translation/tree/3.4"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://symfony.com/sponsor",
  9432. "type": "custom"
  9433. },
  9434. {
  9435. "url": "https://github.com/fabpot",
  9436. "type": "github"
  9437. },
  9438. {
  9439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9440. "type": "tidelift"
  9441. }
  9442. ],
  9443. "time": "2020-05-30T18:58:05+00:00"
  9444. },
  9445. {
  9446. "name": "symfony/validator",
  9447. "version": "v3.4.41",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/symfony/validator.git",
  9451. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9456. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": "^5.5.9|>=7.0.8",
  9461. "symfony/polyfill-ctype": "~1.8",
  9462. "symfony/polyfill-mbstring": "~1.0",
  9463. "symfony/translation": "~2.8|~3.0|~4.0"
  9464. },
  9465. "conflict": {
  9466. "doctrine/lexer": "<1.0.2",
  9467. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9468. "symfony/dependency-injection": "<3.3",
  9469. "symfony/http-kernel": "<3.3.5",
  9470. "symfony/yaml": "<3.4"
  9471. },
  9472. "require-dev": {
  9473. "doctrine/annotations": "~1.7",
  9474. "doctrine/cache": "~1.0",
  9475. "egulias/email-validator": "^2.1.10",
  9476. "symfony/cache": "~3.1|~4.0",
  9477. "symfony/config": "~2.8|~3.0|~4.0",
  9478. "symfony/dependency-injection": "~3.3|~4.0",
  9479. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9480. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9481. "symfony/http-kernel": "^3.3.5|~4.0",
  9482. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9483. "symfony/property-access": "~2.8|~3.0|~4.0",
  9484. "symfony/var-dumper": "~3.3|~4.0",
  9485. "symfony/yaml": "~3.4|~4.0"
  9486. },
  9487. "suggest": {
  9488. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9489. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9490. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9491. "psr/cache-implementation": "For using the metadata cache.",
  9492. "symfony/config": "",
  9493. "symfony/expression-language": "For using the Expression validator",
  9494. "symfony/http-foundation": "",
  9495. "symfony/intl": "",
  9496. "symfony/property-access": "For accessing properties within comparison constraints",
  9497. "symfony/yaml": ""
  9498. },
  9499. "type": "library",
  9500. "extra": {
  9501. "branch-alias": {
  9502. "dev-master": "3.4-dev"
  9503. }
  9504. },
  9505. "autoload": {
  9506. "psr-4": {
  9507. "Symfony\\Component\\Validator\\": ""
  9508. },
  9509. "exclude-from-classmap": [
  9510. "/Tests/"
  9511. ]
  9512. },
  9513. "notification-url": "https://packagist.org/downloads/",
  9514. "license": [
  9515. "MIT"
  9516. ],
  9517. "authors": [
  9518. {
  9519. "name": "Fabien Potencier",
  9520. "email": "fabien@symfony.com"
  9521. },
  9522. {
  9523. "name": "Symfony Community",
  9524. "homepage": "https://symfony.com/contributors"
  9525. }
  9526. ],
  9527. "description": "Symfony Validator Component",
  9528. "homepage": "https://symfony.com",
  9529. "support": {
  9530. "source": "https://github.com/symfony/validator/tree/3.4"
  9531. },
  9532. "funding": [
  9533. {
  9534. "url": "https://symfony.com/sponsor",
  9535. "type": "custom"
  9536. },
  9537. {
  9538. "url": "https://github.com/fabpot",
  9539. "type": "github"
  9540. },
  9541. {
  9542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9543. "type": "tidelift"
  9544. }
  9545. ],
  9546. "time": "2020-05-30T18:43:38+00:00"
  9547. },
  9548. {
  9549. "name": "symfony/var-dumper",
  9550. "version": "v4.4.47",
  9551. "source": {
  9552. "type": "git",
  9553. "url": "https://github.com/symfony/var-dumper.git",
  9554. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9555. },
  9556. "dist": {
  9557. "type": "zip",
  9558. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9559. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9560. "shasum": ""
  9561. },
  9562. "require": {
  9563. "php": ">=7.1.3",
  9564. "symfony/polyfill-mbstring": "~1.0",
  9565. "symfony/polyfill-php72": "~1.5",
  9566. "symfony/polyfill-php80": "^1.16"
  9567. },
  9568. "conflict": {
  9569. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9570. "symfony/console": "<3.4"
  9571. },
  9572. "require-dev": {
  9573. "ext-iconv": "*",
  9574. "symfony/console": "^3.4|^4.0|^5.0",
  9575. "symfony/process": "^4.4|^5.0",
  9576. "twig/twig": "^1.43|^2.13|^3.0.4"
  9577. },
  9578. "suggest": {
  9579. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9580. "ext-intl": "To show region name in time zone dump",
  9581. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9582. },
  9583. "bin": [
  9584. "Resources/bin/var-dump-server"
  9585. ],
  9586. "type": "library",
  9587. "autoload": {
  9588. "files": [
  9589. "Resources/functions/dump.php"
  9590. ],
  9591. "psr-4": {
  9592. "Symfony\\Component\\VarDumper\\": ""
  9593. },
  9594. "exclude-from-classmap": [
  9595. "/Tests/"
  9596. ]
  9597. },
  9598. "notification-url": "https://packagist.org/downloads/",
  9599. "license": [
  9600. "MIT"
  9601. ],
  9602. "authors": [
  9603. {
  9604. "name": "Nicolas Grekas",
  9605. "email": "p@tchwork.com"
  9606. },
  9607. {
  9608. "name": "Symfony Community",
  9609. "homepage": "https://symfony.com/contributors"
  9610. }
  9611. ],
  9612. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9613. "homepage": "https://symfony.com",
  9614. "keywords": [
  9615. "debug",
  9616. "dump"
  9617. ],
  9618. "support": {
  9619. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9620. },
  9621. "funding": [
  9622. {
  9623. "url": "https://symfony.com/sponsor",
  9624. "type": "custom"
  9625. },
  9626. {
  9627. "url": "https://github.com/fabpot",
  9628. "type": "github"
  9629. },
  9630. {
  9631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9632. "type": "tidelift"
  9633. }
  9634. ],
  9635. "time": "2022-10-03T15:15:11+00:00"
  9636. },
  9637. {
  9638. "name": "symfony/yaml",
  9639. "version": "v3.4.41",
  9640. "source": {
  9641. "type": "git",
  9642. "url": "https://github.com/symfony/yaml.git",
  9643. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9644. },
  9645. "dist": {
  9646. "type": "zip",
  9647. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9648. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9649. "shasum": ""
  9650. },
  9651. "require": {
  9652. "php": "^5.5.9|>=7.0.8",
  9653. "symfony/polyfill-ctype": "~1.8"
  9654. },
  9655. "conflict": {
  9656. "symfony/console": "<3.4"
  9657. },
  9658. "require-dev": {
  9659. "symfony/console": "~3.4|~4.0"
  9660. },
  9661. "suggest": {
  9662. "symfony/console": "For validating YAML files using the lint command"
  9663. },
  9664. "type": "library",
  9665. "extra": {
  9666. "branch-alias": {
  9667. "dev-master": "3.4-dev"
  9668. }
  9669. },
  9670. "autoload": {
  9671. "psr-4": {
  9672. "Symfony\\Component\\Yaml\\": ""
  9673. },
  9674. "exclude-from-classmap": [
  9675. "/Tests/"
  9676. ]
  9677. },
  9678. "notification-url": "https://packagist.org/downloads/",
  9679. "license": [
  9680. "MIT"
  9681. ],
  9682. "authors": [
  9683. {
  9684. "name": "Fabien Potencier",
  9685. "email": "fabien@symfony.com"
  9686. },
  9687. {
  9688. "name": "Symfony Community",
  9689. "homepage": "https://symfony.com/contributors"
  9690. }
  9691. ],
  9692. "description": "Symfony Yaml Component",
  9693. "homepage": "https://symfony.com",
  9694. "support": {
  9695. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9696. },
  9697. "funding": [
  9698. {
  9699. "url": "https://symfony.com/sponsor",
  9700. "type": "custom"
  9701. },
  9702. {
  9703. "url": "https://github.com/fabpot",
  9704. "type": "github"
  9705. },
  9706. {
  9707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9708. "type": "tidelift"
  9709. }
  9710. ],
  9711. "time": "2020-05-11T07:51:54+00:00"
  9712. },
  9713. {
  9714. "name": "twig/twig",
  9715. "version": "v1.42.5",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/twigphp/Twig.git",
  9719. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9724. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9725. "shasum": ""
  9726. },
  9727. "require": {
  9728. "php": ">=5.5.0",
  9729. "symfony/polyfill-ctype": "^1.8"
  9730. },
  9731. "require-dev": {
  9732. "psr/container": "^1.0",
  9733. "symfony/phpunit-bridge": "^4.4|^5.0"
  9734. },
  9735. "type": "library",
  9736. "extra": {
  9737. "branch-alias": {
  9738. "dev-master": "1.42-dev"
  9739. }
  9740. },
  9741. "autoload": {
  9742. "psr-0": {
  9743. "Twig_": "lib/"
  9744. },
  9745. "psr-4": {
  9746. "Twig\\": "src/"
  9747. }
  9748. },
  9749. "notification-url": "https://packagist.org/downloads/",
  9750. "license": [
  9751. "BSD-3-Clause"
  9752. ],
  9753. "authors": [
  9754. {
  9755. "name": "Fabien Potencier",
  9756. "email": "fabien@symfony.com",
  9757. "homepage": "http://fabien.potencier.org",
  9758. "role": "Lead Developer"
  9759. },
  9760. {
  9761. "name": "Twig Team",
  9762. "role": "Contributors"
  9763. },
  9764. {
  9765. "name": "Armin Ronacher",
  9766. "email": "armin.ronacher@active-4.com",
  9767. "role": "Project Founder"
  9768. }
  9769. ],
  9770. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9771. "homepage": "https://twig.symfony.com",
  9772. "keywords": [
  9773. "templating"
  9774. ],
  9775. "support": {
  9776. "issues": "https://github.com/twigphp/Twig/issues",
  9777. "source": "https://github.com/twigphp/Twig/tree/1.x"
  9778. },
  9779. "time": "2020-02-11T05:59:23+00:00"
  9780. },
  9781. {
  9782. "name": "typo3/phar-stream-wrapper",
  9783. "version": "v3.1.4",
  9784. "source": {
  9785. "type": "git",
  9786. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  9787. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  9788. },
  9789. "dist": {
  9790. "type": "zip",
  9791. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9792. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  9793. "shasum": ""
  9794. },
  9795. "require": {
  9796. "ext-json": "*",
  9797. "php": "^7.0"
  9798. },
  9799. "require-dev": {
  9800. "ext-xdebug": "*",
  9801. "phpunit/phpunit": "^6.5"
  9802. },
  9803. "suggest": {
  9804. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  9805. },
  9806. "type": "library",
  9807. "extra": {
  9808. "branch-alias": {
  9809. "dev-master": "v3.x-dev"
  9810. }
  9811. },
  9812. "autoload": {
  9813. "psr-4": {
  9814. "TYPO3\\PharStreamWrapper\\": "src/"
  9815. }
  9816. },
  9817. "notification-url": "https://packagist.org/downloads/",
  9818. "license": [
  9819. "MIT"
  9820. ],
  9821. "description": "Interceptors for PHP's native phar:// stream handling",
  9822. "homepage": "https://typo3.org/",
  9823. "keywords": [
  9824. "phar",
  9825. "php",
  9826. "security",
  9827. "stream-wrapper"
  9828. ],
  9829. "support": {
  9830. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  9831. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  9832. },
  9833. "time": "2019-12-10T11:53:27+00:00"
  9834. },
  9835. {
  9836. "name": "vlucas/phpdotenv",
  9837. "version": "v2.6.9",
  9838. "source": {
  9839. "type": "git",
  9840. "url": "https://github.com/vlucas/phpdotenv.git",
  9841. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  9842. },
  9843. "dist": {
  9844. "type": "zip",
  9845. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  9846. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  9847. "shasum": ""
  9848. },
  9849. "require": {
  9850. "php": "^5.3.9 || ^7.0 || ^8.0",
  9851. "symfony/polyfill-ctype": "^1.17"
  9852. },
  9853. "require-dev": {
  9854. "ext-filter": "*",
  9855. "ext-pcre": "*",
  9856. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  9857. },
  9858. "suggest": {
  9859. "ext-filter": "Required to use the boolean validator.",
  9860. "ext-pcre": "Required to use most of the library."
  9861. },
  9862. "type": "library",
  9863. "extra": {
  9864. "branch-alias": {
  9865. "dev-master": "2.6-dev"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "psr-4": {
  9870. "Dotenv\\": "src/"
  9871. }
  9872. },
  9873. "notification-url": "https://packagist.org/downloads/",
  9874. "license": [
  9875. "BSD-3-Clause"
  9876. ],
  9877. "authors": [
  9878. {
  9879. "name": "Graham Campbell",
  9880. "email": "hello@gjcampbell.co.uk",
  9881. "homepage": "https://github.com/GrahamCampbell"
  9882. },
  9883. {
  9884. "name": "Vance Lucas",
  9885. "email": "vance@vancelucas.com",
  9886. "homepage": "https://github.com/vlucas"
  9887. }
  9888. ],
  9889. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9890. "keywords": [
  9891. "dotenv",
  9892. "env",
  9893. "environment"
  9894. ],
  9895. "support": {
  9896. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9897. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  9898. },
  9899. "funding": [
  9900. {
  9901. "url": "https://github.com/GrahamCampbell",
  9902. "type": "github"
  9903. },
  9904. {
  9905. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9906. "type": "tidelift"
  9907. }
  9908. ],
  9909. "time": "2021-12-12T22:59:22+00:00"
  9910. },
  9911. {
  9912. "name": "webflo/drupal-finder",
  9913. "version": "1.2.2",
  9914. "source": {
  9915. "type": "git",
  9916. "url": "https://github.com/webflo/drupal-finder.git",
  9917. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  9918. },
  9919. "dist": {
  9920. "type": "zip",
  9921. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9922. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  9923. "shasum": ""
  9924. },
  9925. "require": {
  9926. "ext-json": "*"
  9927. },
  9928. "require-dev": {
  9929. "mikey179/vfsstream": "^1.6",
  9930. "phpunit/phpunit": "^4.8"
  9931. },
  9932. "type": "library",
  9933. "autoload": {
  9934. "classmap": [
  9935. "src/DrupalFinder.php"
  9936. ]
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "GPL-2.0-or-later"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Florian Weber",
  9945. "email": "florian@webflo.org"
  9946. }
  9947. ],
  9948. "description": "Helper class to locate a Drupal installation from a given path.",
  9949. "support": {
  9950. "issues": "https://github.com/webflo/drupal-finder/issues",
  9951. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  9952. },
  9953. "time": "2020-10-27T09:42:17+00:00"
  9954. },
  9955. {
  9956. "name": "webmozart/assert",
  9957. "version": "1.11.0",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/webmozarts/assert.git",
  9961. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9966. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "ext-ctype": "*",
  9971. "php": "^7.2 || ^8.0"
  9972. },
  9973. "conflict": {
  9974. "phpstan/phpstan": "<0.12.20",
  9975. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9976. },
  9977. "require-dev": {
  9978. "phpunit/phpunit": "^8.5.13"
  9979. },
  9980. "type": "library",
  9981. "extra": {
  9982. "branch-alias": {
  9983. "dev-master": "1.10-dev"
  9984. }
  9985. },
  9986. "autoload": {
  9987. "psr-4": {
  9988. "Webmozart\\Assert\\": "src/"
  9989. }
  9990. },
  9991. "notification-url": "https://packagist.org/downloads/",
  9992. "license": [
  9993. "MIT"
  9994. ],
  9995. "authors": [
  9996. {
  9997. "name": "Bernhard Schussek",
  9998. "email": "bschussek@gmail.com"
  9999. }
  10000. ],
  10001. "description": "Assertions to validate method input/output with nice error messages.",
  10002. "keywords": [
  10003. "assert",
  10004. "check",
  10005. "validate"
  10006. ],
  10007. "support": {
  10008. "issues": "https://github.com/webmozarts/assert/issues",
  10009. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10010. },
  10011. "time": "2022-06-03T18:03:27+00:00"
  10012. },
  10013. {
  10014. "name": "webmozart/path-util",
  10015. "version": "2.3.0",
  10016. "source": {
  10017. "type": "git",
  10018. "url": "https://github.com/webmozart/path-util.git",
  10019. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10020. },
  10021. "dist": {
  10022. "type": "zip",
  10023. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10024. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10025. "shasum": ""
  10026. },
  10027. "require": {
  10028. "php": ">=5.3.3",
  10029. "webmozart/assert": "~1.0"
  10030. },
  10031. "require-dev": {
  10032. "phpunit/phpunit": "^4.6",
  10033. "sebastian/version": "^1.0.1"
  10034. },
  10035. "type": "library",
  10036. "extra": {
  10037. "branch-alias": {
  10038. "dev-master": "2.3-dev"
  10039. }
  10040. },
  10041. "autoload": {
  10042. "psr-4": {
  10043. "Webmozart\\PathUtil\\": "src/"
  10044. }
  10045. },
  10046. "notification-url": "https://packagist.org/downloads/",
  10047. "license": [
  10048. "MIT"
  10049. ],
  10050. "authors": [
  10051. {
  10052. "name": "Bernhard Schussek",
  10053. "email": "bschussek@gmail.com"
  10054. }
  10055. ],
  10056. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10057. "support": {
  10058. "issues": "https://github.com/webmozart/path-util/issues",
  10059. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10060. },
  10061. "abandoned": "symfony/filesystem",
  10062. "time": "2015-12-17T08:42:14+00:00"
  10063. }
  10064. ],
  10065. "packages-dev": [],
  10066. "aliases": [],
  10067. "minimum-stability": "dev",
  10068. "stability-flags": {
  10069. "drupal/better_messages": 15,
  10070. "drupal/bulkdelete": 20,
  10071. "drupal/domain": 15,
  10072. "drupal/filefield_sources": 15,
  10073. "drupal/filter_perms": 15,
  10074. "drupal/linkit": 10,
  10075. "drupal/maillog": 10,
  10076. "drupal/synonyms": 15
  10077. },
  10078. "prefer-stable": true,
  10079. "prefer-lowest": false,
  10080. "platform": {
  10081. "php": ">=5.6"
  10082. },
  10083. "platform-dev": [],
  10084. "plugin-api-version": "2.6.0"
  10085. }