composer.lock 388 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574
  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": "a73d4ca2267e703e9f543f3befcdc321",
  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.33.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  76. "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388",
  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. "conflict": {
  87. "drush/drush": "< 10.3.2"
  88. },
  89. "bin": [
  90. "bin/dcg"
  91. ],
  92. "type": "library",
  93. "extra": {
  94. "branch-alias": {
  95. "dev-master": "1.x-dev"
  96. }
  97. },
  98. "autoload": {
  99. "files": [
  100. "src/bootstrap.php"
  101. ],
  102. "psr-4": {
  103. "DrupalCodeGenerator\\": "src"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "GPL-2.0-or-later"
  109. ],
  110. "description": "Drupal code generator",
  111. "support": {
  112. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  113. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1"
  114. },
  115. "time": "2020-12-05T05:59:11+00:00"
  116. },
  117. {
  118. "name": "composer/installers",
  119. "version": "v1.12.0",
  120. "source": {
  121. "type": "git",
  122. "url": "https://github.com/composer/installers.git",
  123. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  124. },
  125. "dist": {
  126. "type": "zip",
  127. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  128. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  129. "shasum": ""
  130. },
  131. "require": {
  132. "composer-plugin-api": "^1.0 || ^2.0"
  133. },
  134. "replace": {
  135. "roundcube/plugin-installer": "*",
  136. "shama/baton": "*"
  137. },
  138. "require-dev": {
  139. "composer/composer": "1.6.* || ^2.0",
  140. "composer/semver": "^1 || ^3",
  141. "phpstan/phpstan": "^0.12.55",
  142. "phpstan/phpstan-phpunit": "^0.12.16",
  143. "symfony/phpunit-bridge": "^4.2 || ^5",
  144. "symfony/process": "^2.3"
  145. },
  146. "type": "composer-plugin",
  147. "extra": {
  148. "class": "Composer\\Installers\\Plugin",
  149. "branch-alias": {
  150. "dev-main": "1.x-dev"
  151. }
  152. },
  153. "autoload": {
  154. "psr-4": {
  155. "Composer\\Installers\\": "src/Composer/Installers"
  156. }
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "license": [
  160. "MIT"
  161. ],
  162. "authors": [
  163. {
  164. "name": "Kyle Robinson Young",
  165. "email": "kyle@dontkry.com",
  166. "homepage": "https://github.com/shama"
  167. }
  168. ],
  169. "description": "A multi-framework Composer library installer",
  170. "homepage": "https://composer.github.io/installers/",
  171. "keywords": [
  172. "Craft",
  173. "Dolibarr",
  174. "Eliasis",
  175. "Hurad",
  176. "ImageCMS",
  177. "Kanboard",
  178. "Lan Management System",
  179. "MODX Evo",
  180. "MantisBT",
  181. "Mautic",
  182. "Maya",
  183. "OXID",
  184. "Plentymarkets",
  185. "Porto",
  186. "RadPHP",
  187. "SMF",
  188. "Starbug",
  189. "Thelia",
  190. "Whmcs",
  191. "WolfCMS",
  192. "agl",
  193. "aimeos",
  194. "annotatecms",
  195. "attogram",
  196. "bitrix",
  197. "cakephp",
  198. "chef",
  199. "cockpit",
  200. "codeigniter",
  201. "concrete5",
  202. "croogo",
  203. "dokuwiki",
  204. "drupal",
  205. "eZ Platform",
  206. "elgg",
  207. "expressionengine",
  208. "fuelphp",
  209. "grav",
  210. "installer",
  211. "itop",
  212. "joomla",
  213. "known",
  214. "kohana",
  215. "laravel",
  216. "lavalite",
  217. "lithium",
  218. "magento",
  219. "majima",
  220. "mako",
  221. "mediawiki",
  222. "miaoxing",
  223. "modulework",
  224. "modx",
  225. "moodle",
  226. "osclass",
  227. "pantheon",
  228. "phpbb",
  229. "piwik",
  230. "ppi",
  231. "processwire",
  232. "puppet",
  233. "pxcms",
  234. "reindex",
  235. "roundcube",
  236. "shopware",
  237. "silverstripe",
  238. "sydes",
  239. "sylius",
  240. "symfony",
  241. "tastyigniter",
  242. "typo3",
  243. "wordpress",
  244. "yawik",
  245. "zend",
  246. "zikula"
  247. ],
  248. "support": {
  249. "issues": "https://github.com/composer/installers/issues",
  250. "source": "https://github.com/composer/installers/tree/v1.12.0"
  251. },
  252. "funding": [
  253. {
  254. "url": "https://packagist.com",
  255. "type": "custom"
  256. },
  257. {
  258. "url": "https://github.com/composer",
  259. "type": "github"
  260. },
  261. {
  262. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  263. "type": "tidelift"
  264. }
  265. ],
  266. "time": "2021-09-13T08:19:44+00:00"
  267. },
  268. {
  269. "name": "composer/semver",
  270. "version": "3.3.2",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/composer/semver.git",
  274. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  279. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  280. "shasum": ""
  281. },
  282. "require": {
  283. "php": "^5.3.2 || ^7.0 || ^8.0"
  284. },
  285. "require-dev": {
  286. "phpstan/phpstan": "^1.4",
  287. "symfony/phpunit-bridge": "^4.2 || ^5"
  288. },
  289. "type": "library",
  290. "extra": {
  291. "branch-alias": {
  292. "dev-main": "3.x-dev"
  293. }
  294. },
  295. "autoload": {
  296. "psr-4": {
  297. "Composer\\Semver\\": "src"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Nils Adermann",
  307. "email": "naderman@naderman.de",
  308. "homepage": "http://www.naderman.de"
  309. },
  310. {
  311. "name": "Jordi Boggiano",
  312. "email": "j.boggiano@seld.be",
  313. "homepage": "http://seld.be"
  314. },
  315. {
  316. "name": "Rob Bast",
  317. "email": "rob.bast@gmail.com",
  318. "homepage": "http://robbast.nl"
  319. }
  320. ],
  321. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  322. "keywords": [
  323. "semantic",
  324. "semver",
  325. "validation",
  326. "versioning"
  327. ],
  328. "support": {
  329. "irc": "irc://irc.freenode.org/composer",
  330. "issues": "https://github.com/composer/semver/issues",
  331. "source": "https://github.com/composer/semver/tree/3.3.2"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://packagist.com",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://github.com/composer",
  340. "type": "github"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2022-04-01T19:23:25+00:00"
  348. },
  349. {
  350. "name": "consolidation/annotated-command",
  351. "version": "2.12.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/consolidation/annotated-command.git",
  355. "reference": "2472a23610cba1d86dcb783a81a21259473b059e"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e",
  360. "reference": "2472a23610cba1d86dcb783a81a21259473b059e",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "consolidation/output-formatters": "^3.5.1",
  365. "php": ">=5.4.5",
  366. "psr/log": "^1",
  367. "symfony/console": "^2.8|^3|^4",
  368. "symfony/event-dispatcher": "^2.5|^3|^4",
  369. "symfony/finder": "^2.5|^3|^4|^5"
  370. },
  371. "require-dev": {
  372. "g1a/composer-test-scenarios": "^3",
  373. "php-coveralls/php-coveralls": "^1",
  374. "phpunit/phpunit": "^6",
  375. "squizlabs/php_codesniffer": "^2.7"
  376. },
  377. "type": "library",
  378. "extra": {
  379. "scenarios": {
  380. "finder5": {
  381. "require": {
  382. "symfony/finder": "^5"
  383. },
  384. "config": {
  385. "platform": {
  386. "php": "7.2.5"
  387. }
  388. }
  389. },
  390. "symfony4": {
  391. "require": {
  392. "symfony/console": "^4.0"
  393. },
  394. "config": {
  395. "platform": {
  396. "php": "7.1.3"
  397. }
  398. }
  399. },
  400. "symfony2": {
  401. "require": {
  402. "symfony/console": "^2.8"
  403. },
  404. "require-dev": {
  405. "phpunit/phpunit": "^4.8.36"
  406. },
  407. "remove": [
  408. "php-coveralls/php-coveralls"
  409. ],
  410. "config": {
  411. "platform": {
  412. "php": "5.4.8"
  413. }
  414. },
  415. "scenario-options": {
  416. "create-lockfile": "false"
  417. }
  418. },
  419. "phpunit4": {
  420. "require-dev": {
  421. "phpunit/phpunit": "^4.8.36"
  422. },
  423. "remove": [
  424. "php-coveralls/php-coveralls"
  425. ],
  426. "config": {
  427. "platform": {
  428. "php": "5.4.8"
  429. }
  430. }
  431. }
  432. },
  433. "branch-alias": {
  434. "dev-master": "2.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Consolidation\\AnnotatedCommand\\": "src"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Greg Anderson",
  449. "email": "greg.1.anderson@greenknowe.org"
  450. }
  451. ],
  452. "description": "Initialize Symfony Console commands from annotated command class methods.",
  453. "support": {
  454. "issues": "https://github.com/consolidation/annotated-command/issues",
  455. "source": "https://github.com/consolidation/annotated-command/tree/2.12.2"
  456. },
  457. "time": "2022-01-03T00:23:44+00:00"
  458. },
  459. {
  460. "name": "consolidation/config",
  461. "version": "1.2.1",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/consolidation/config.git",
  465. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  470. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "dflydev/dot-access-data": "^1.1.0",
  475. "grasmash/expander": "^1",
  476. "php": ">=5.4.0"
  477. },
  478. "require-dev": {
  479. "g1a/composer-test-scenarios": "^3",
  480. "php-coveralls/php-coveralls": "^1",
  481. "phpunit/phpunit": "^5",
  482. "squizlabs/php_codesniffer": "2.*",
  483. "symfony/console": "^2.5|^3|^4",
  484. "symfony/yaml": "^2.8.11|^3|^4"
  485. },
  486. "suggest": {
  487. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "scenarios": {
  492. "symfony4": {
  493. "require-dev": {
  494. "symfony/console": "^4.0"
  495. },
  496. "config": {
  497. "platform": {
  498. "php": "7.1.3"
  499. }
  500. }
  501. },
  502. "symfony2": {
  503. "require-dev": {
  504. "symfony/console": "^2.8",
  505. "symfony/event-dispatcher": "^2.8",
  506. "phpunit/phpunit": "^4.8.36"
  507. },
  508. "remove": [
  509. "php-coveralls/php-coveralls"
  510. ],
  511. "config": {
  512. "platform": {
  513. "php": "5.4.8"
  514. }
  515. }
  516. }
  517. },
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\Config\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Provide configuration services for a commandline tool.",
  538. "support": {
  539. "issues": "https://github.com/consolidation/config/issues",
  540. "source": "https://github.com/consolidation/config/tree/master"
  541. },
  542. "time": "2019-03-03T19:37:04+00:00"
  543. },
  544. {
  545. "name": "consolidation/filter-via-dot-access-data",
  546. "version": "1.0.0",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  550. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  555. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "dflydev/dot-access-data": "^1.1.0",
  560. "php": ">=5.5.0"
  561. },
  562. "require-dev": {
  563. "consolidation/robo": "^1.2.3",
  564. "g1a/composer-test-scenarios": "^3",
  565. "knplabs/github-api": "^2.7",
  566. "php-coveralls/php-coveralls": "^1",
  567. "php-http/guzzle6-adapter": "^1.1",
  568. "phpunit/phpunit": "^5",
  569. "squizlabs/php_codesniffer": "^2.8",
  570. "symfony/console": "^2.8|^3|^4"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "scenarios": {
  575. "phpunit5": {
  576. "require-dev": {
  577. "phpunit/phpunit": "^5.7.27"
  578. },
  579. "remove": [
  580. "php-coveralls/php-coveralls"
  581. ],
  582. "config": {
  583. "platform": {
  584. "php": "5.6.33"
  585. }
  586. }
  587. }
  588. },
  589. "branch-alias": {
  590. "dev-master": "1.x-dev"
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Consolidation\\Filter\\": "src"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Greg Anderson",
  605. "email": "greg.1.anderson@greenknowe.org"
  606. }
  607. ],
  608. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  609. "support": {
  610. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0"
  611. },
  612. "time": "2019-01-18T06:05:07+00:00"
  613. },
  614. {
  615. "name": "consolidation/log",
  616. "version": "1.1.1",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/consolidation/log.git",
  620. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  625. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  626. "shasum": ""
  627. },
  628. "require": {
  629. "php": ">=5.4.5",
  630. "psr/log": "^1.0",
  631. "symfony/console": "^2.8|^3|^4"
  632. },
  633. "require-dev": {
  634. "g1a/composer-test-scenarios": "^3",
  635. "php-coveralls/php-coveralls": "^1",
  636. "phpunit/phpunit": "^6",
  637. "squizlabs/php_codesniffer": "^2"
  638. },
  639. "type": "library",
  640. "extra": {
  641. "scenarios": {
  642. "symfony4": {
  643. "require": {
  644. "symfony/console": "^4.0"
  645. },
  646. "config": {
  647. "platform": {
  648. "php": "7.1.3"
  649. }
  650. }
  651. },
  652. "symfony2": {
  653. "require": {
  654. "symfony/console": "^2.8"
  655. },
  656. "require-dev": {
  657. "phpunit/phpunit": "^4.8.36"
  658. },
  659. "remove": [
  660. "php-coveralls/php-coveralls"
  661. ],
  662. "config": {
  663. "platform": {
  664. "php": "5.4.8"
  665. }
  666. }
  667. },
  668. "phpunit4": {
  669. "require-dev": {
  670. "phpunit/phpunit": "^4.8.36"
  671. },
  672. "remove": [
  673. "php-coveralls/php-coveralls"
  674. ],
  675. "config": {
  676. "platform": {
  677. "php": "5.4.8"
  678. }
  679. }
  680. }
  681. },
  682. "branch-alias": {
  683. "dev-master": "1.x-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Consolidation\\Log\\": "src"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Greg Anderson",
  698. "email": "greg.1.anderson@greenknowe.org"
  699. }
  700. ],
  701. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  702. "support": {
  703. "issues": "https://github.com/consolidation/log/issues",
  704. "source": "https://github.com/consolidation/log/tree/master"
  705. },
  706. "time": "2019-01-01T17:30:51+00:00"
  707. },
  708. {
  709. "name": "consolidation/output-formatters",
  710. "version": "3.5.1",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/consolidation/output-formatters.git",
  714. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196",
  719. "reference": "0d38f13051ef05c223a2bb8e962d668e24785196",
  720. "shasum": ""
  721. },
  722. "require": {
  723. "dflydev/dot-access-data": "^1.1.0",
  724. "php": ">=5.4.0",
  725. "symfony/console": "^2.8|^3|^4",
  726. "symfony/finder": "^2.5|^3|^4|^5"
  727. },
  728. "require-dev": {
  729. "g1a/composer-test-scenarios": "^3",
  730. "php-coveralls/php-coveralls": "^1",
  731. "phpunit/phpunit": "^5.7.27",
  732. "squizlabs/php_codesniffer": "^2.7",
  733. "symfony/var-dumper": "^2.8|^3|^4",
  734. "victorjonsson/markdowndocs": "^1.3"
  735. },
  736. "suggest": {
  737. "symfony/var-dumper": "For using the var_dump formatter"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "scenarios": {
  742. "finder5": {
  743. "require": {
  744. "symfony/finder": "^5"
  745. },
  746. "config": {
  747. "platform": {
  748. "php": "7.2.5"
  749. }
  750. }
  751. },
  752. "symfony4": {
  753. "require": {
  754. "symfony/console": "^4.0"
  755. },
  756. "require-dev": {
  757. "phpunit/phpunit": "^6"
  758. },
  759. "config": {
  760. "platform": {
  761. "php": "7.1.3"
  762. }
  763. }
  764. },
  765. "symfony3": {
  766. "require": {
  767. "symfony/console": "^3.4",
  768. "symfony/finder": "^3.4",
  769. "symfony/var-dumper": "^3.4"
  770. },
  771. "config": {
  772. "platform": {
  773. "php": "5.6.32"
  774. }
  775. }
  776. },
  777. "symfony2": {
  778. "require": {
  779. "symfony/console": "^2.8"
  780. },
  781. "require-dev": {
  782. "phpunit/phpunit": "^4.8.36"
  783. },
  784. "remove": [
  785. "php-coveralls/php-coveralls"
  786. ],
  787. "config": {
  788. "platform": {
  789. "php": "5.4.8"
  790. }
  791. },
  792. "scenario-options": {
  793. "create-lockfile": "false"
  794. }
  795. }
  796. },
  797. "branch-alias": {
  798. "dev-master": "3.x-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-4": {
  803. "Consolidation\\OutputFormatters\\": "src"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Greg Anderson",
  813. "email": "greg.1.anderson@greenknowe.org"
  814. }
  815. ],
  816. "description": "Format text by applying transformations provided by plug-in formatters.",
  817. "support": {
  818. "issues": "https://github.com/consolidation/output-formatters/issues",
  819. "source": "https://github.com/consolidation/output-formatters/tree/3.5.1"
  820. },
  821. "time": "2020-10-11T04:15:32+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.5.0",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "12bf6b608057604a283e9e597edfed36ba071631"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631",
  834. "reference": "12bf6b608057604a283e9e597edfed36ba071631",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.12.1 || ^4.1",
  839. "consolidation/config": "^1.2.1",
  840. "consolidation/log": "^1.1.1 || ^2",
  841. "consolidation/output-formatters": "^3.5.1 || ^4.1",
  842. "consolidation/self-update": "^1.1.5 || ^2",
  843. "grasmash/yaml-expander": "^1.4",
  844. "league/container": "^2.4.1",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8 || ^3 || ^4",
  847. "symfony/event-dispatcher": "^2.5 || ^3 || ^4",
  848. "symfony/filesystem": "^2.5 || ^3 || ^4",
  849. "symfony/finder": "^2.5 || ^3 || ^4 || ^5",
  850. "symfony/process": "^2.5 || ^3 || ^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "g1a/composer-test-scenarios": "^3",
  857. "natxet/cssmin": "3.0.4",
  858. "patchwork/jsqueeze": "^2",
  859. "pear/archive_tar": "^1.4.4",
  860. "php-coveralls/php-coveralls": "^1",
  861. "phpunit/phpunit": "^5.7.27",
  862. "squizlabs/php_codesniffer": "^3"
  863. },
  864. "suggest": {
  865. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  866. "natxet/CssMin": "For minifying CSS files in taskMinify",
  867. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  868. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  869. },
  870. "bin": [
  871. "robo"
  872. ],
  873. "type": "library",
  874. "extra": {
  875. "scenarios": {
  876. "finder5": {
  877. "require": {
  878. "symfony/finder": "^5"
  879. },
  880. "config": {
  881. "platform": {
  882. "php": "7.2.5"
  883. }
  884. }
  885. },
  886. "symfony4": {
  887. "require": {
  888. "symfony/console": "^4"
  889. },
  890. "config": {
  891. "platform": {
  892. "php": "7.1.3"
  893. }
  894. }
  895. },
  896. "symfony2": {
  897. "require": {
  898. "symfony/console": "^2.8"
  899. },
  900. "require-dev": {
  901. "phpunit/phpunit": "^4.8.36"
  902. },
  903. "remove": [
  904. "php-coveralls/php-coveralls"
  905. ],
  906. "config": {
  907. "platform": {
  908. "php": "5.5.9"
  909. }
  910. },
  911. "scenario-options": {
  912. "create-lockfile": "false"
  913. }
  914. }
  915. },
  916. "branch-alias": {
  917. "dev-master": "1.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Robo\\": "src"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Davert",
  932. "email": "davert.php@resend.cc"
  933. }
  934. ],
  935. "description": "Modern task runner",
  936. "support": {
  937. "issues": "https://github.com/consolidation/Robo/issues",
  938. "source": "https://github.com/consolidation/Robo/tree/1.5.0"
  939. },
  940. "time": "2021-10-08T03:51:31+00:00"
  941. },
  942. {
  943. "name": "consolidation/self-update",
  944. "version": "1.2.0",
  945. "source": {
  946. "type": "git",
  947. "url": "https://github.com/consolidation/self-update.git",
  948. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  949. },
  950. "dist": {
  951. "type": "zip",
  952. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  953. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  954. "shasum": ""
  955. },
  956. "require": {
  957. "php": ">=5.5.0",
  958. "symfony/console": "^2.8|^3|^4|^5",
  959. "symfony/filesystem": "^2.5|^3|^4|^5"
  960. },
  961. "bin": [
  962. "scripts/release"
  963. ],
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "SelfUpdate\\": "src"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Alexander Menk",
  982. "email": "menk@mestrona.net"
  983. },
  984. {
  985. "name": "Greg Anderson",
  986. "email": "greg.1.anderson@greenknowe.org"
  987. }
  988. ],
  989. "description": "Provides a self:update command for Symfony Console applications.",
  990. "support": {
  991. "issues": "https://github.com/consolidation/self-update/issues",
  992. "source": "https://github.com/consolidation/self-update/tree/1.2.0"
  993. },
  994. "time": "2020-04-13T02:49:20+00:00"
  995. },
  996. {
  997. "name": "consolidation/site-alias",
  998. "version": "3.1.7",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/consolidation/site-alias.git",
  1002. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7",
  1007. "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "consolidation/config": "^1.2.1 || ^2",
  1012. "php": ">=5.5.0",
  1013. "symfony/filesystem": "^4.4 || ^5.4 || ^6",
  1014. "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6",
  1015. "webmozart/path-util": "^2.3"
  1016. },
  1017. "require-dev": {
  1018. "php-coveralls/php-coveralls": "^2.4.2",
  1019. "phpunit/phpunit": ">=7",
  1020. "squizlabs/php_codesniffer": "^3",
  1021. "symfony/var-dumper": "^4",
  1022. "yoast/phpunit-polyfills": "^0.2.0"
  1023. },
  1024. "type": "library",
  1025. "extra": {
  1026. "branch-alias": {
  1027. "dev-main": "3.x-dev"
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "Consolidation\\SiteAlias\\": "src"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Greg Anderson",
  1042. "email": "greg.1.anderson@greenknowe.org"
  1043. },
  1044. {
  1045. "name": "Moshe Weitzman",
  1046. "email": "weitzman@tejasa.com"
  1047. }
  1048. ],
  1049. "description": "Manage alias records for local and remote sites.",
  1050. "support": {
  1051. "issues": "https://github.com/consolidation/site-alias/issues",
  1052. "source": "https://github.com/consolidation/site-alias/tree/3.1.7"
  1053. },
  1054. "time": "2022-10-15T01:21:09+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/site-process",
  1058. "version": "4.2.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/site-process.git",
  1062. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1067. "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/config": "^1.2.1 || ^2",
  1072. "consolidation/site-alias": "^3 || ^4",
  1073. "php": ">=7.1.3",
  1074. "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5",
  1075. "symfony/process": "^4.3.4 || ^5"
  1076. },
  1077. "require-dev": {
  1078. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1079. "squizlabs/php_codesniffer": "^3",
  1080. "yoast/phpunit-polyfills": "^0.2.0"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-main": "4.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/4.2.1"
  1111. },
  1112. "time": "2022-10-18T13:19:35+00:00"
  1113. },
  1114. {
  1115. "name": "cweagans/composer-patches",
  1116. "version": "1.7.3",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/cweagans/composer-patches.git",
  1120. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1125. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "composer-plugin-api": "^1.0 || ^2.0",
  1130. "php": ">=5.3.0"
  1131. },
  1132. "require-dev": {
  1133. "composer/composer": "~1.0 || ~2.0",
  1134. "phpunit/phpunit": "~4.6"
  1135. },
  1136. "type": "composer-plugin",
  1137. "extra": {
  1138. "class": "cweagans\\Composer\\Patches"
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "cweagans\\Composer\\": "src"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "BSD-3-Clause"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "Cameron Eagans",
  1152. "email": "me@cweagans.net"
  1153. }
  1154. ],
  1155. "description": "Provides a way to patch Composer packages.",
  1156. "support": {
  1157. "issues": "https://github.com/cweagans/composer-patches/issues",
  1158. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1159. },
  1160. "time": "2022-12-20T22:53:13+00:00"
  1161. },
  1162. {
  1163. "name": "dflydev/dot-access-data",
  1164. "version": "v1.1.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1168. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1173. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.3.2"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.0-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-0": {
  1187. "Dflydev\\DotAccessData": "src"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Dragonfly Development Inc.",
  1197. "email": "info@dflydev.com",
  1198. "homepage": "http://dflydev.com"
  1199. },
  1200. {
  1201. "name": "Beau Simensen",
  1202. "email": "beau@dflydev.com",
  1203. "homepage": "http://beausimensen.com"
  1204. },
  1205. {
  1206. "name": "Carlos Frutos",
  1207. "email": "carlos@kiwing.it",
  1208. "homepage": "https://github.com/cfrutos"
  1209. }
  1210. ],
  1211. "description": "Given a deep data structure, access data by dot notation.",
  1212. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1213. "keywords": [
  1214. "access",
  1215. "data",
  1216. "dot",
  1217. "notation"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1221. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
  1222. },
  1223. "time": "2017-01-20T21:14:22+00:00"
  1224. },
  1225. {
  1226. "name": "doctrine/annotations",
  1227. "version": "1.13.3",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/doctrine/annotations.git",
  1231. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1236. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/lexer": "1.*",
  1241. "ext-tokenizer": "*",
  1242. "php": "^7.1 || ^8.0",
  1243. "psr/cache": "^1 || ^2 || ^3"
  1244. },
  1245. "require-dev": {
  1246. "doctrine/cache": "^1.11 || ^2.0",
  1247. "doctrine/coding-standard": "^6.0 || ^8.1",
  1248. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1249. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1250. "symfony/cache": "^4.4 || ^5.2",
  1251. "vimeo/psalm": "^4.10"
  1252. },
  1253. "type": "library",
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "authors": [
  1264. {
  1265. "name": "Guilherme Blanco",
  1266. "email": "guilhermeblanco@gmail.com"
  1267. },
  1268. {
  1269. "name": "Roman Borschel",
  1270. "email": "roman@code-factory.org"
  1271. },
  1272. {
  1273. "name": "Benjamin Eberlei",
  1274. "email": "kontakt@beberlei.de"
  1275. },
  1276. {
  1277. "name": "Jonathan Wage",
  1278. "email": "jonwage@gmail.com"
  1279. },
  1280. {
  1281. "name": "Johannes Schmitt",
  1282. "email": "schmittjoh@gmail.com"
  1283. }
  1284. ],
  1285. "description": "Docblock Annotations Parser",
  1286. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1287. "keywords": [
  1288. "annotations",
  1289. "docblock",
  1290. "parser"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/doctrine/annotations/issues",
  1294. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1295. },
  1296. "time": "2022-07-02T10:48:51+00:00"
  1297. },
  1298. {
  1299. "name": "doctrine/common",
  1300. "version": "3.4.4",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/common.git",
  1304. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1309. "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "doctrine/persistence": "^2.0 || ^3.0",
  1314. "php": "^7.1 || ^8.0"
  1315. },
  1316. "require-dev": {
  1317. "doctrine/coding-standard": "^9.0 || ^10.0",
  1318. "doctrine/collections": "^1",
  1319. "phpstan/phpstan": "^1.4.1",
  1320. "phpstan/phpstan-phpunit": "^1",
  1321. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1322. "squizlabs/php_codesniffer": "^3.0",
  1323. "symfony/phpunit-bridge": "^6.1",
  1324. "vimeo/psalm": "^4.4"
  1325. },
  1326. "type": "library",
  1327. "autoload": {
  1328. "psr-4": {
  1329. "Doctrine\\Common\\": "src"
  1330. }
  1331. },
  1332. "notification-url": "https://packagist.org/downloads/",
  1333. "license": [
  1334. "MIT"
  1335. ],
  1336. "authors": [
  1337. {
  1338. "name": "Guilherme Blanco",
  1339. "email": "guilhermeblanco@gmail.com"
  1340. },
  1341. {
  1342. "name": "Roman Borschel",
  1343. "email": "roman@code-factory.org"
  1344. },
  1345. {
  1346. "name": "Benjamin Eberlei",
  1347. "email": "kontakt@beberlei.de"
  1348. },
  1349. {
  1350. "name": "Jonathan Wage",
  1351. "email": "jonwage@gmail.com"
  1352. },
  1353. {
  1354. "name": "Johannes Schmitt",
  1355. "email": "schmittjoh@gmail.com"
  1356. },
  1357. {
  1358. "name": "Marco Pivetta",
  1359. "email": "ocramius@gmail.com"
  1360. }
  1361. ],
  1362. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1363. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1364. "keywords": [
  1365. "common",
  1366. "doctrine",
  1367. "php"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/common/issues",
  1371. "source": "https://github.com/doctrine/common/tree/3.4.4"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://www.doctrine-project.org/sponsorship.html",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://www.patreon.com/phpdoctrine",
  1380. "type": "patreon"
  1381. },
  1382. {
  1383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1384. "type": "tidelift"
  1385. }
  1386. ],
  1387. "time": "2024-04-16T13:35:33+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/event-manager",
  1391. "version": "2.0.1",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/event-manager.git",
  1395. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1400. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^8.1"
  1405. },
  1406. "conflict": {
  1407. "doctrine/common": "<2.9"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/coding-standard": "^12",
  1411. "phpstan/phpstan": "^1.8.8",
  1412. "phpunit/phpunit": "^10.5",
  1413. "vimeo/psalm": "^5.24"
  1414. },
  1415. "type": "library",
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Doctrine\\Common\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Guilherme Blanco",
  1428. "email": "guilhermeblanco@gmail.com"
  1429. },
  1430. {
  1431. "name": "Roman Borschel",
  1432. "email": "roman@code-factory.org"
  1433. },
  1434. {
  1435. "name": "Benjamin Eberlei",
  1436. "email": "kontakt@beberlei.de"
  1437. },
  1438. {
  1439. "name": "Jonathan Wage",
  1440. "email": "jonwage@gmail.com"
  1441. },
  1442. {
  1443. "name": "Johannes Schmitt",
  1444. "email": "schmittjoh@gmail.com"
  1445. },
  1446. {
  1447. "name": "Marco Pivetta",
  1448. "email": "ocramius@gmail.com"
  1449. }
  1450. ],
  1451. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1452. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1453. "keywords": [
  1454. "event",
  1455. "event dispatcher",
  1456. "event manager",
  1457. "event system",
  1458. "events"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/doctrine/event-manager/issues",
  1462. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1463. },
  1464. "funding": [
  1465. {
  1466. "url": "https://www.doctrine-project.org/sponsorship.html",
  1467. "type": "custom"
  1468. },
  1469. {
  1470. "url": "https://www.patreon.com/phpdoctrine",
  1471. "type": "patreon"
  1472. },
  1473. {
  1474. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1475. "type": "tidelift"
  1476. }
  1477. ],
  1478. "time": "2024-05-22T20:47:39+00:00"
  1479. },
  1480. {
  1481. "name": "doctrine/lexer",
  1482. "version": "1.2.3",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/doctrine/lexer.git",
  1486. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1491. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1492. "shasum": ""
  1493. },
  1494. "require": {
  1495. "php": "^7.1 || ^8.0"
  1496. },
  1497. "require-dev": {
  1498. "doctrine/coding-standard": "^9.0",
  1499. "phpstan/phpstan": "^1.3",
  1500. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1501. "vimeo/psalm": "^4.11"
  1502. },
  1503. "type": "library",
  1504. "autoload": {
  1505. "psr-4": {
  1506. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1507. }
  1508. },
  1509. "notification-url": "https://packagist.org/downloads/",
  1510. "license": [
  1511. "MIT"
  1512. ],
  1513. "authors": [
  1514. {
  1515. "name": "Guilherme Blanco",
  1516. "email": "guilhermeblanco@gmail.com"
  1517. },
  1518. {
  1519. "name": "Roman Borschel",
  1520. "email": "roman@code-factory.org"
  1521. },
  1522. {
  1523. "name": "Johannes Schmitt",
  1524. "email": "schmittjoh@gmail.com"
  1525. }
  1526. ],
  1527. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1528. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1529. "keywords": [
  1530. "annotations",
  1531. "docblock",
  1532. "lexer",
  1533. "parser",
  1534. "php"
  1535. ],
  1536. "support": {
  1537. "issues": "https://github.com/doctrine/lexer/issues",
  1538. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1539. },
  1540. "funding": [
  1541. {
  1542. "url": "https://www.doctrine-project.org/sponsorship.html",
  1543. "type": "custom"
  1544. },
  1545. {
  1546. "url": "https://www.patreon.com/phpdoctrine",
  1547. "type": "patreon"
  1548. },
  1549. {
  1550. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1551. "type": "tidelift"
  1552. }
  1553. ],
  1554. "time": "2022-02-28T11:07:21+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/persistence",
  1558. "version": "3.3.3",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/persistence.git",
  1562. "reference": "b337726451f5d530df338fc7f68dee8781b49779"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779",
  1567. "reference": "b337726451f5d530df338fc7f68dee8781b49779",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "doctrine/event-manager": "^1 || ^2",
  1572. "php": "^7.2 || ^8.0",
  1573. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1574. },
  1575. "conflict": {
  1576. "doctrine/common": "<2.10"
  1577. },
  1578. "require-dev": {
  1579. "doctrine/coding-standard": "^12",
  1580. "doctrine/common": "^3.0",
  1581. "phpstan/phpstan": "1.11.1",
  1582. "phpstan/phpstan-phpunit": "^1",
  1583. "phpstan/phpstan-strict-rules": "^1.1",
  1584. "phpunit/phpunit": "^8.5 || ^9.5",
  1585. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1586. "vimeo/psalm": "4.30.0 || 5.24.0"
  1587. },
  1588. "type": "library",
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Doctrine\\Persistence\\": "src/Persistence"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Guilherme Blanco",
  1601. "email": "guilhermeblanco@gmail.com"
  1602. },
  1603. {
  1604. "name": "Roman Borschel",
  1605. "email": "roman@code-factory.org"
  1606. },
  1607. {
  1608. "name": "Benjamin Eberlei",
  1609. "email": "kontakt@beberlei.de"
  1610. },
  1611. {
  1612. "name": "Jonathan Wage",
  1613. "email": "jonwage@gmail.com"
  1614. },
  1615. {
  1616. "name": "Johannes Schmitt",
  1617. "email": "schmittjoh@gmail.com"
  1618. },
  1619. {
  1620. "name": "Marco Pivetta",
  1621. "email": "ocramius@gmail.com"
  1622. }
  1623. ],
  1624. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1625. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1626. "keywords": [
  1627. "mapper",
  1628. "object",
  1629. "odm",
  1630. "orm",
  1631. "persistence"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/doctrine/persistence/issues",
  1635. "source": "https://github.com/doctrine/persistence/tree/3.3.3"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://www.doctrine-project.org/sponsorship.html",
  1640. "type": "custom"
  1641. },
  1642. {
  1643. "url": "https://www.patreon.com/phpdoctrine",
  1644. "type": "patreon"
  1645. },
  1646. {
  1647. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1648. "type": "tidelift"
  1649. }
  1650. ],
  1651. "time": "2024-06-20T10:14:30+00:00"
  1652. },
  1653. {
  1654. "name": "doctrine/reflection",
  1655. "version": "1.2.4",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/doctrine/reflection.git",
  1659. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1664. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "doctrine/annotations": "^1.0 || ^2.0",
  1669. "ext-tokenizer": "*",
  1670. "php": "^7.1 || ^8.0"
  1671. },
  1672. "conflict": {
  1673. "doctrine/common": "<2.9"
  1674. },
  1675. "require-dev": {
  1676. "doctrine/coding-standard": "^9",
  1677. "doctrine/common": "^3.3",
  1678. "phpstan/phpstan": "^1.4.10",
  1679. "phpstan/phpstan-phpunit": "^1",
  1680. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  1681. },
  1682. "type": "library",
  1683. "autoload": {
  1684. "psr-4": {
  1685. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Guilherme Blanco",
  1695. "email": "guilhermeblanco@gmail.com"
  1696. },
  1697. {
  1698. "name": "Roman Borschel",
  1699. "email": "roman@code-factory.org"
  1700. },
  1701. {
  1702. "name": "Benjamin Eberlei",
  1703. "email": "kontakt@beberlei.de"
  1704. },
  1705. {
  1706. "name": "Jonathan Wage",
  1707. "email": "jonwage@gmail.com"
  1708. },
  1709. {
  1710. "name": "Johannes Schmitt",
  1711. "email": "schmittjoh@gmail.com"
  1712. },
  1713. {
  1714. "name": "Marco Pivetta",
  1715. "email": "ocramius@gmail.com"
  1716. }
  1717. ],
  1718. "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.",
  1719. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  1720. "keywords": [
  1721. "reflection",
  1722. "static"
  1723. ],
  1724. "support": {
  1725. "issues": "https://github.com/doctrine/reflection/issues",
  1726. "source": "https://github.com/doctrine/reflection/tree/1.2.4"
  1727. },
  1728. "abandoned": "roave/better-reflection",
  1729. "time": "2023-07-27T18:11:59+00:00"
  1730. },
  1731. {
  1732. "name": "drupal/addtoany",
  1733. "version": "2.0.5",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://git.drupalcode.org/project/addtoany.git",
  1737. "reference": "2.0.5"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.5.zip",
  1742. "reference": "2.0.5",
  1743. "shasum": "b3b26968548c1605a641b12ff25d03edc8497df6"
  1744. },
  1745. "require": {
  1746. "drupal/core": "^9.4 || ^10.0"
  1747. },
  1748. "type": "drupal-module",
  1749. "extra": {
  1750. "drupal": {
  1751. "version": "2.0.5",
  1752. "datestamp": "1698825601",
  1753. "security-coverage": {
  1754. "status": "covered",
  1755. "message": "Covered by Drupal's security advisory policy"
  1756. }
  1757. }
  1758. },
  1759. "notification-url": "https://packages.drupal.org/8/downloads",
  1760. "license": [
  1761. "GPL-2.0-or-later"
  1762. ],
  1763. "authors": [
  1764. {
  1765. "name": "AddToAny",
  1766. "homepage": "https://www.drupal.org/user/2640913"
  1767. },
  1768. {
  1769. "name": "micropat",
  1770. "homepage": "https://www.drupal.org/user/260224"
  1771. }
  1772. ],
  1773. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1774. "homepage": "https://www.drupal.org/project/addtoany",
  1775. "keywords": [
  1776. "Drupal"
  1777. ],
  1778. "support": {
  1779. "source": "https://git.drupalcode.org/project/addtoany",
  1780. "issues": "https://www.drupal.org/project/issues/addtoany"
  1781. }
  1782. },
  1783. {
  1784. "name": "drupal/admin_toolbar",
  1785. "version": "3.5.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1789. "reference": "3.5.0"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.0.zip",
  1794. "reference": "3.5.0",
  1795. "shasum": "099e8d4dc98e1d551b4f9cffdc39599eb8ad04e8"
  1796. },
  1797. "require": {
  1798. "drupal/core": "^9.5 || ^10 || ^11"
  1799. },
  1800. "require-dev": {
  1801. "drupal/admin_toolbar_tools": "*"
  1802. },
  1803. "type": "drupal-module",
  1804. "extra": {
  1805. "drupal": {
  1806. "version": "3.5.0",
  1807. "datestamp": "1722639094",
  1808. "security-coverage": {
  1809. "status": "covered",
  1810. "message": "Covered by Drupal's security advisory policy"
  1811. }
  1812. }
  1813. },
  1814. "notification-url": "https://packages.drupal.org/8/downloads",
  1815. "license": [
  1816. "GPL-2.0-or-later"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "Wilfrid Roze (eme)",
  1821. "homepage": "https://www.drupal.org/u/eme",
  1822. "role": "Maintainer"
  1823. },
  1824. {
  1825. "name": "Romain Jarraud (romainj)",
  1826. "homepage": "https://www.drupal.org/u/romainj",
  1827. "role": "Maintainer"
  1828. },
  1829. {
  1830. "name": "Adrian Cid Almaguer (adriancid)",
  1831. "homepage": "https://www.drupal.org/u/adriancid",
  1832. "email": "adriancid@gmail.com",
  1833. "role": "Maintainer"
  1834. },
  1835. {
  1836. "name": "Mohamed Anis Taktak (matio89)",
  1837. "homepage": "https://www.drupal.org/u/matio89",
  1838. "role": "Maintainer"
  1839. },
  1840. {
  1841. "name": "japerry",
  1842. "homepage": "https://www.drupal.org/user/45640"
  1843. },
  1844. {
  1845. "name": "matio89",
  1846. "homepage": "https://www.drupal.org/user/2320090"
  1847. },
  1848. {
  1849. "name": "musa.thomas",
  1850. "homepage": "https://www.drupal.org/user/1213824"
  1851. },
  1852. {
  1853. "name": "romainj",
  1854. "homepage": "https://www.drupal.org/user/370706"
  1855. }
  1856. ],
  1857. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1858. "homepage": "http://drupal.org/project/admin_toolbar",
  1859. "keywords": [
  1860. "Drupal",
  1861. "Toolbar"
  1862. ],
  1863. "support": {
  1864. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1865. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1866. }
  1867. },
  1868. {
  1869. "name": "drupal/adminimal_theme",
  1870. "version": "1.7.0",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1874. "reference": "8.x-1.7"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1879. "reference": "8.x-1.7",
  1880. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1881. },
  1882. "require": {
  1883. "drupal/core": "^9.3 || ^10",
  1884. "drupal/seven": "~1.0"
  1885. },
  1886. "type": "drupal-theme",
  1887. "extra": {
  1888. "drupal": {
  1889. "version": "8.x-1.7",
  1890. "datestamp": "1691504486",
  1891. "security-coverage": {
  1892. "status": "covered",
  1893. "message": "Covered by Drupal's security advisory policy"
  1894. }
  1895. }
  1896. },
  1897. "notification-url": "https://packages.drupal.org/8/downloads",
  1898. "license": [
  1899. "GPL-2.0+"
  1900. ],
  1901. "authors": [
  1902. {
  1903. "name": "ANDiTKO",
  1904. "homepage": "https://www.drupal.org/user/1428124"
  1905. },
  1906. {
  1907. "name": "andrey.troeglazov",
  1908. "homepage": "https://www.drupal.org/user/3145389"
  1909. },
  1910. {
  1911. "name": "realityloop",
  1912. "homepage": "https://www.drupal.org/user/139189"
  1913. },
  1914. {
  1915. "name": "rjjakes",
  1916. "homepage": "https://www.drupal.org/user/3457245"
  1917. }
  1918. ],
  1919. "description": "Drupal administration theme with modern minimalist design.",
  1920. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1921. "support": {
  1922. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1923. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1924. }
  1925. },
  1926. {
  1927. "name": "drupal/audiofield",
  1928. "version": "1.13.0",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://git.drupalcode.org/project/audiofield.git",
  1932. "reference": "8.x-1.13"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1937. "reference": "8.x-1.13",
  1938. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1939. },
  1940. "require": {
  1941. "drupal/core": "^8 || ^9 || ^10"
  1942. },
  1943. "type": "drupal-module",
  1944. "extra": {
  1945. "drupal": {
  1946. "version": "8.x-1.13",
  1947. "datestamp": "1681143245",
  1948. "security-coverage": {
  1949. "status": "covered",
  1950. "message": "Covered by Drupal's security advisory policy"
  1951. }
  1952. },
  1953. "drush": {
  1954. "services": {
  1955. "drush.services.yml": "^9"
  1956. }
  1957. }
  1958. },
  1959. "notification-url": "https://packages.drupal.org/8/downloads",
  1960. "license": [
  1961. "GPL-2.0-or-later"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "Daniel Moberly",
  1966. "homepage": "https://www.drupal.org/u/danielmoberly",
  1967. "role": "Maintainer"
  1968. },
  1969. {
  1970. "name": "tamerzg",
  1971. "homepage": "https://www.drupal.org/user/464564"
  1972. }
  1973. ],
  1974. "description": "AudioField Module",
  1975. "homepage": "https://www.drupal.org/project/audiofield",
  1976. "support": {
  1977. "source": "https://git.drupalcode.org/project/audiofield",
  1978. "issues": "https://www.drupal.org/project/issues/audiofield"
  1979. }
  1980. },
  1981. {
  1982. "name": "drupal/autologout",
  1983. "version": "1.5.0",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://git.drupalcode.org/project/autologout.git",
  1987. "reference": "8.x-1.5"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.5.zip",
  1992. "reference": "8.x-1.5",
  1993. "shasum": "1beb693f56eb119624dd270ee789db00eb1ce288"
  1994. },
  1995. "require": {
  1996. "drupal/core": "^9.2 || ^10 || ^11",
  1997. "drupal/js_cookie": "^1.0"
  1998. },
  1999. "type": "drupal-module",
  2000. "extra": {
  2001. "drupal": {
  2002. "version": "8.x-1.5",
  2003. "datestamp": "1716413630",
  2004. "security-coverage": {
  2005. "status": "covered",
  2006. "message": "Covered by Drupal's security advisory policy"
  2007. }
  2008. }
  2009. },
  2010. "notification-url": "https://packages.drupal.org/8/downloads",
  2011. "license": [
  2012. "GPL-2.0-or-later"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "ajits",
  2017. "homepage": "https://www.drupal.org/user/981944"
  2018. },
  2019. {
  2020. "name": "AjK",
  2021. "homepage": "https://www.drupal.org/user/39030"
  2022. },
  2023. {
  2024. "name": "boshtian",
  2025. "homepage": "https://www.drupal.org/user/1773456"
  2026. },
  2027. {
  2028. "name": "dandrews",
  2029. "homepage": "https://www.drupal.org/user/2014490"
  2030. },
  2031. {
  2032. "name": "darksnow",
  2033. "homepage": "https://www.drupal.org/user/391915"
  2034. },
  2035. {
  2036. "name": "japerry",
  2037. "homepage": "https://www.drupal.org/user/45640"
  2038. },
  2039. {
  2040. "name": "johnennew",
  2041. "homepage": "https://www.drupal.org/user/1150042"
  2042. },
  2043. {
  2044. "name": "jrglasgow",
  2045. "homepage": "https://www.drupal.org/user/36590"
  2046. },
  2047. {
  2048. "name": "kmasood",
  2049. "homepage": "https://www.drupal.org/user/1262860"
  2050. },
  2051. {
  2052. "name": "levelos",
  2053. "homepage": "https://www.drupal.org/user/54135"
  2054. },
  2055. {
  2056. "name": "prabeen.giri",
  2057. "homepage": "https://www.drupal.org/user/913078"
  2058. },
  2059. {
  2060. "name": "scott_earnest",
  2061. "homepage": "https://www.drupal.org/user/416158"
  2062. },
  2063. {
  2064. "name": "str8",
  2065. "homepage": "https://www.drupal.org/user/2865063"
  2066. }
  2067. ],
  2068. "description": "Adds automated timed logout.",
  2069. "homepage": "http://drupal.org/project/autologout",
  2070. "support": {
  2071. "source": "https://git.drupalcode.org/project/autologout",
  2072. "issues": "https://www.drupal.org/project/issues/autologout"
  2073. }
  2074. },
  2075. {
  2076. "name": "drupal/basic",
  2077. "version": "3.0.0-alpha2",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://git.drupalcode.org/project/basic.git",
  2081. "reference": "3.0.0-alpha2"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha2.zip",
  2086. "reference": "3.0.0-alpha2",
  2087. "shasum": "830bca3d506e15847440b3696dcba8859bf74aab"
  2088. },
  2089. "require": {
  2090. "drupal/core": "^9.3 || ^10"
  2091. },
  2092. "type": "drupal-theme",
  2093. "extra": {
  2094. "drupal": {
  2095. "version": "3.0.0-alpha2",
  2096. "datestamp": "1674980765",
  2097. "security-coverage": {
  2098. "status": "not-covered",
  2099. "message": "Alpha releases are not covered by Drupal security advisories."
  2100. }
  2101. }
  2102. },
  2103. "notification-url": "https://packages.drupal.org/8/downloads",
  2104. "license": [
  2105. "GPL-2.0+"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "Steve Krueger",
  2110. "homepage": "http://thejibe.com",
  2111. "email": "steve@thejibe.com",
  2112. "role": "Maintainer"
  2113. },
  2114. {
  2115. "name": "Joël Pittet",
  2116. "homepage": "https://www.drupal.org/u/joelpittet",
  2117. "email": "joel@pittet.ca",
  2118. "role": "Maintainer"
  2119. },
  2120. {
  2121. "name": "Leah Wagner",
  2122. "homepage": "http://thejibe.com",
  2123. "email": "leah@thejibe.com",
  2124. "role": "Maintainer"
  2125. },
  2126. {
  2127. "name": "Catherine Winters",
  2128. "homepage": "http://www.catherinewinters.com",
  2129. "email": "catherine@catherinewinters.com",
  2130. "role": "Maintainer"
  2131. },
  2132. {
  2133. "name": "Johannes Schmidt",
  2134. "homepage": "http://2tabs.com",
  2135. "email": "mail@2tabs.com",
  2136. "role": "Maintainer"
  2137. },
  2138. {
  2139. "name": "Chuck Kosman",
  2140. "homepage": "http://thejibe.com",
  2141. "email": "chuck@thejibe.com",
  2142. "role": "Maintainer"
  2143. },
  2144. {
  2145. "name": "SteveK",
  2146. "homepage": "https://www.drupal.org/user/111656"
  2147. }
  2148. ],
  2149. "description": "HTML5, SASS, Responsive grid starter theme.",
  2150. "homepage": "http://drupal.org/project/basic",
  2151. "support": {
  2152. "source": "http://cgit.drupalcode.org/basic",
  2153. "issues": "https://www.drupal.org/project/issues/basic",
  2154. "irc": "irc://irc.freenode.org/drupal-contribute"
  2155. }
  2156. },
  2157. {
  2158. "name": "drupal/bulkdelete",
  2159. "version": "dev-1.x",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2163. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2164. },
  2165. "require": {
  2166. "drupal/core": "^8.7.7 || ^9 || ^10"
  2167. },
  2168. "type": "drupal-module",
  2169. "extra": {
  2170. "branch-alias": {
  2171. "dev-1.x": "1.x-dev"
  2172. },
  2173. "drupal": {
  2174. "version": "8.x-1.x-dev",
  2175. "datestamp": "1655322426",
  2176. "security-coverage": {
  2177. "status": "not-covered",
  2178. "message": "Dev releases are not covered by Drupal security advisories."
  2179. }
  2180. }
  2181. },
  2182. "notification-url": "https://packages.drupal.org/8/downloads",
  2183. "license": [
  2184. "GPL-2.0-or-later"
  2185. ],
  2186. "authors": [
  2187. {
  2188. "name": "Kars-T",
  2189. "homepage": "https://www.drupal.org/user/224499"
  2190. },
  2191. {
  2192. "name": "Rahul Seth",
  2193. "homepage": "https://www.drupal.org/user/2694359"
  2194. },
  2195. {
  2196. "name": "adriancid",
  2197. "homepage": "https://www.drupal.org/user/1962106"
  2198. },
  2199. {
  2200. "name": "robertDouglass",
  2201. "homepage": "https://www.drupal.org/user/5449"
  2202. }
  2203. ],
  2204. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2205. "homepage": "https://www.drupal.org/project/bulkdelete",
  2206. "support": {
  2207. "source": "https://git.drupalcode.org/project/bulkdelete"
  2208. }
  2209. },
  2210. {
  2211. "name": "drupal/color_field",
  2212. "version": "3.0.1",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://git.drupalcode.org/project/color_field.git",
  2216. "reference": "3.0.1"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.1.zip",
  2221. "reference": "3.0.1",
  2222. "shasum": "fd2f75db74063f817d81a537221fa1c8398e4d8f"
  2223. },
  2224. "require": {
  2225. "drupal/core": "^9 || ^10 || ^11"
  2226. },
  2227. "require-dev": {
  2228. "drupal/core-recommended": "^9 || ^10",
  2229. "drupal/feeds": "^3.0@beta",
  2230. "drupal/token": "~1.3"
  2231. },
  2232. "suggest": {
  2233. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2234. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2235. },
  2236. "type": "drupal-module",
  2237. "extra": {
  2238. "drupal": {
  2239. "version": "3.0.1",
  2240. "datestamp": "1717506868",
  2241. "security-coverage": {
  2242. "status": "covered",
  2243. "message": "Covered by Drupal's security advisory policy"
  2244. }
  2245. }
  2246. },
  2247. "notification-url": "https://packages.drupal.org/8/downloads",
  2248. "license": [
  2249. "GPL-2.0-or-later"
  2250. ],
  2251. "authors": [
  2252. {
  2253. "name": "targoo",
  2254. "homepage": "https://www.drupal.org/user/431910",
  2255. "role": "Maintainer"
  2256. },
  2257. {
  2258. "name": "Nick Wilde",
  2259. "homepage": "https://www.drupal.org/user/nickwilde",
  2260. "role": "Maintainer"
  2261. },
  2262. {
  2263. "name": "targoo",
  2264. "homepage": "https://www.drupal.org/user/431910"
  2265. }
  2266. ],
  2267. "description": "Provides a color field type to store the color value and opacity",
  2268. "homepage": "https://www.drupal.org/project/color_field",
  2269. "support": {
  2270. "source": "https://git.drupalcode.org/project/color_field",
  2271. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2272. }
  2273. },
  2274. {
  2275. "name": "drupal/config_devel",
  2276. "version": "1.9.0",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://git.drupalcode.org/project/config_devel.git",
  2280. "reference": "8.x-1.9"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.9.zip",
  2285. "reference": "8.x-1.9",
  2286. "shasum": "a9cb90575ec854b8d8adb4633a0ddc47c490ca87"
  2287. },
  2288. "require": {
  2289. "drupal/core": "^9.3 || ^10"
  2290. },
  2291. "type": "drupal-module",
  2292. "extra": {
  2293. "drupal": {
  2294. "version": "8.x-1.9",
  2295. "datestamp": "1678264813",
  2296. "security-coverage": {
  2297. "status": "covered",
  2298. "message": "Covered by Drupal's security advisory policy"
  2299. }
  2300. }
  2301. },
  2302. "notification-url": "https://packages.drupal.org/8/downloads",
  2303. "license": [
  2304. "GPL-2.0+"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "alexpott",
  2309. "homepage": "https://www.drupal.org/user/157725"
  2310. },
  2311. {
  2312. "name": "benjy",
  2313. "homepage": "https://www.drupal.org/user/1852732"
  2314. },
  2315. {
  2316. "name": "chx",
  2317. "homepage": "https://www.drupal.org/user/9446"
  2318. },
  2319. {
  2320. "name": "joachim",
  2321. "homepage": "https://www.drupal.org/user/107701"
  2322. },
  2323. {
  2324. "name": "vijaycs85",
  2325. "homepage": "https://www.drupal.org/user/93488"
  2326. }
  2327. ],
  2328. "description": "Helps developers work with configuration.",
  2329. "homepage": "https://www.drupal.org/project/config_devel",
  2330. "support": {
  2331. "source": "https://git.drupalcode.org/project/config_devel"
  2332. }
  2333. },
  2334. {
  2335. "name": "drupal/config_filter",
  2336. "version": "1.12.0",
  2337. "source": {
  2338. "type": "git",
  2339. "url": "https://git.drupalcode.org/project/config_filter.git",
  2340. "reference": "8.x-1.12"
  2341. },
  2342. "dist": {
  2343. "type": "zip",
  2344. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2345. "reference": "8.x-1.12",
  2346. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2347. },
  2348. "require": {
  2349. "drupal/core": "^8.8 || ^9 || ^10"
  2350. },
  2351. "suggest": {
  2352. "drupal/config_split": "Split site configuration for different environments."
  2353. },
  2354. "type": "drupal-module",
  2355. "extra": {
  2356. "drupal": {
  2357. "version": "8.x-1.12",
  2358. "datestamp": "1698308496",
  2359. "security-coverage": {
  2360. "status": "covered",
  2361. "message": "Covered by Drupal's security advisory policy"
  2362. }
  2363. }
  2364. },
  2365. "notification-url": "https://packages.drupal.org/8/downloads",
  2366. "license": [
  2367. "GPL-2.0-or-later"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Fabian Bircher",
  2372. "homepage": "https://www.drupal.org/u/bircher",
  2373. "email": "opensource@fabianbircher.com",
  2374. "role": "Maintainer"
  2375. },
  2376. {
  2377. "name": "Nuvole Web",
  2378. "homepage": "http://nuvole.org",
  2379. "email": "info@nuvole.org",
  2380. "role": "Maintainer"
  2381. },
  2382. {
  2383. "name": "pescetti",
  2384. "homepage": "https://www.drupal.org/user/436244"
  2385. }
  2386. ],
  2387. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2388. "homepage": "https://www.drupal.org/project/config_filter",
  2389. "keywords": [
  2390. "Drupal",
  2391. "configuration",
  2392. "configuration management"
  2393. ],
  2394. "support": {
  2395. "source": "https://git.drupalcode.org/project/config_filter",
  2396. "issues": "https://www.drupal.org/project/issues/config_filter",
  2397. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2398. }
  2399. },
  2400. {
  2401. "name": "drupal/config_ignore",
  2402. "version": "3.3.0",
  2403. "source": {
  2404. "type": "git",
  2405. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2406. "reference": "8.x-3.3"
  2407. },
  2408. "dist": {
  2409. "type": "zip",
  2410. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2411. "reference": "8.x-3.3",
  2412. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2413. },
  2414. "require": {
  2415. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2416. },
  2417. "require-dev": {
  2418. "drupal/config_filter": "^1.8||^2.2",
  2419. "drush/drush": "^10 || ^11 || ^12"
  2420. },
  2421. "type": "drupal-module",
  2422. "extra": {
  2423. "drupal": {
  2424. "version": "8.x-3.3",
  2425. "datestamp": "1713299496",
  2426. "security-coverage": {
  2427. "status": "covered",
  2428. "message": "Covered by Drupal's security advisory policy"
  2429. }
  2430. }
  2431. },
  2432. "notification-url": "https://packages.drupal.org/8/downloads",
  2433. "license": [
  2434. "GPL-2.0-or-later"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Tommy Lynge Jørgensen",
  2439. "homepage": "https://www.drupal.org/u/tlyngej",
  2440. "email": "tlyngej@gmail.com",
  2441. "role": "Maintainer"
  2442. },
  2443. {
  2444. "name": "Fabian Bircher",
  2445. "homepage": "https://www.drupal.org/u/bircher",
  2446. "role": "Maintainer"
  2447. },
  2448. {
  2449. "name": "tlyngej",
  2450. "homepage": "https://www.drupal.org/user/413139"
  2451. }
  2452. ],
  2453. "description": "Ignore certain configuration during import and export.",
  2454. "homepage": "http://drupal.org/project/config_ignore",
  2455. "support": {
  2456. "source": "https://git.drupalcode.org/project/config_ignore",
  2457. "issues": "http://drupal.org/project/config_ignore"
  2458. }
  2459. },
  2460. {
  2461. "name": "drupal/config_update",
  2462. "version": "2.0.0-alpha4",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://git.drupalcode.org/project/config_update.git",
  2466. "reference": "2.0.0-alpha4"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2471. "reference": "2.0.0-alpha4",
  2472. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2473. },
  2474. "require": {
  2475. "drupal/core": "^9.4 || ^10 || ^11"
  2476. },
  2477. "type": "drupal-module",
  2478. "extra": {
  2479. "drupal": {
  2480. "version": "2.0.0-alpha4",
  2481. "datestamp": "1724596931",
  2482. "security-coverage": {
  2483. "status": "not-covered",
  2484. "message": "Alpha releases are not covered by Drupal security advisories."
  2485. }
  2486. }
  2487. },
  2488. "notification-url": "https://packages.drupal.org/8/downloads",
  2489. "license": [
  2490. "GPL-2.0-or-later"
  2491. ],
  2492. "authors": [
  2493. {
  2494. "name": "codebymikey",
  2495. "homepage": "https://www.drupal.org/user/3573206"
  2496. },
  2497. {
  2498. "name": "pasqualle",
  2499. "homepage": "https://www.drupal.org/user/80733"
  2500. },
  2501. {
  2502. "name": "vishalkhode",
  2503. "homepage": "https://www.drupal.org/user/2439156"
  2504. }
  2505. ],
  2506. "description": "Provides basic revert and update functionality for other modules.",
  2507. "homepage": "https://www.drupal.org/project/config_update",
  2508. "support": {
  2509. "source": "https://git.drupalcode.org/project/config_update"
  2510. }
  2511. },
  2512. {
  2513. "name": "drupal/context",
  2514. "version": "5.0.0-rc1",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://git.drupalcode.org/project/context.git",
  2518. "reference": "5.0.0-rc1"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2523. "reference": "5.0.0-rc1",
  2524. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2525. },
  2526. "require": {
  2527. "drupal/core": "^9.3 || ^10"
  2528. },
  2529. "type": "drupal-module",
  2530. "extra": {
  2531. "drupal": {
  2532. "version": "5.0.0-rc1",
  2533. "datestamp": "1677054769",
  2534. "security-coverage": {
  2535. "status": "not-covered",
  2536. "message": "RC releases are not covered by Drupal security advisories."
  2537. }
  2538. }
  2539. },
  2540. "notification-url": "https://packages.drupal.org/8/downloads",
  2541. "license": [
  2542. "MIT"
  2543. ],
  2544. "authors": [
  2545. {
  2546. "name": "Christoffer Palm",
  2547. "homepage": "http://www.oddhill.se/",
  2548. "email": "christoffer.palm@oddhill.se",
  2549. "role": "Developer"
  2550. },
  2551. {
  2552. "name": "boshtian",
  2553. "homepage": "https://www.drupal.org/user/1773456"
  2554. },
  2555. {
  2556. "name": "colan",
  2557. "homepage": "https://www.drupal.org/user/58704"
  2558. },
  2559. {
  2560. "name": "emanaton",
  2561. "homepage": "https://www.drupal.org/user/120853"
  2562. },
  2563. {
  2564. "name": "febbraro",
  2565. "homepage": "https://www.drupal.org/user/43670"
  2566. },
  2567. {
  2568. "name": "fizk",
  2569. "homepage": "https://www.drupal.org/user/473174"
  2570. },
  2571. {
  2572. "name": "hass",
  2573. "homepage": "https://www.drupal.org/user/85918"
  2574. },
  2575. {
  2576. "name": "hefox",
  2577. "homepage": "https://www.drupal.org/user/426416"
  2578. },
  2579. {
  2580. "name": "jmiccolis",
  2581. "homepage": "https://www.drupal.org/user/31731"
  2582. },
  2583. {
  2584. "name": "Kristen Pol",
  2585. "homepage": "https://www.drupal.org/user/8389"
  2586. },
  2587. {
  2588. "name": "nedjo",
  2589. "homepage": "https://www.drupal.org/user/4481"
  2590. },
  2591. {
  2592. "name": "NormySan",
  2593. "homepage": "https://www.drupal.org/user/112352"
  2594. },
  2595. {
  2596. "name": "patricksettle",
  2597. "homepage": "https://www.drupal.org/user/26618"
  2598. },
  2599. {
  2600. "name": "paulocs",
  2601. "homepage": "https://www.drupal.org/user/3640109"
  2602. },
  2603. {
  2604. "name": "Steven Jones",
  2605. "homepage": "https://www.drupal.org/user/99644"
  2606. },
  2607. {
  2608. "name": "tekante",
  2609. "homepage": "https://www.drupal.org/user/640024"
  2610. },
  2611. {
  2612. "name": "yhahn",
  2613. "homepage": "https://www.drupal.org/user/264833"
  2614. }
  2615. ],
  2616. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2617. "homepage": "https://github.com/oddhill/context",
  2618. "keywords": [
  2619. "Drupal",
  2620. "block",
  2621. "conditions",
  2622. "context",
  2623. "visibility"
  2624. ],
  2625. "support": {
  2626. "source": "https://github.com/oddhill/context",
  2627. "issues": "https://github.com/oddhill/context/issues",
  2628. "docs": "https://github.com/oddhill/context"
  2629. }
  2630. },
  2631. {
  2632. "name": "drupal/core",
  2633. "version": "9.5.11",
  2634. "source": {
  2635. "type": "git",
  2636. "url": "https://github.com/drupal/core.git",
  2637. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  2638. },
  2639. "dist": {
  2640. "type": "zip",
  2641. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  2642. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  2643. "shasum": ""
  2644. },
  2645. "require": {
  2646. "asm89/stack-cors": "^1.3",
  2647. "composer/semver": "^3.3",
  2648. "doctrine/annotations": "^1.13",
  2649. "doctrine/reflection": "^1.2",
  2650. "egulias/email-validator": "^2.1.22|^3.2",
  2651. "ext-date": "*",
  2652. "ext-dom": "*",
  2653. "ext-filter": "*",
  2654. "ext-gd": "*",
  2655. "ext-hash": "*",
  2656. "ext-json": "*",
  2657. "ext-pcre": "*",
  2658. "ext-pdo": "*",
  2659. "ext-session": "*",
  2660. "ext-simplexml": "*",
  2661. "ext-spl": "*",
  2662. "ext-tokenizer": "*",
  2663. "ext-xml": "*",
  2664. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  2665. "laminas/laminas-feed": "^2.17",
  2666. "longwave/laminas-diactoros": "^2.14",
  2667. "masterminds/html5": "^2.7",
  2668. "pear/archive_tar": "^1.4.14",
  2669. "php": ">=7.3.0",
  2670. "psr/log": "^1.1",
  2671. "stack/builder": "^1.0",
  2672. "symfony-cmf/routing": "^2.3",
  2673. "symfony/console": "^4.4",
  2674. "symfony/dependency-injection": "^4.4",
  2675. "symfony/event-dispatcher": "^4.4",
  2676. "symfony/http-foundation": "^4.4.7",
  2677. "symfony/http-kernel": "^4.4",
  2678. "symfony/mime": "^5.4",
  2679. "symfony/polyfill-iconv": "^1.26",
  2680. "symfony/polyfill-php80": "^1.26",
  2681. "symfony/process": "^4.4",
  2682. "symfony/psr-http-message-bridge": "^2.1",
  2683. "symfony/routing": "^4.4",
  2684. "symfony/serializer": "^4.4",
  2685. "symfony/translation": "^4.4",
  2686. "symfony/validator": "^4.4",
  2687. "symfony/yaml": "^4.4.19",
  2688. "twig/twig": "^2.15.3",
  2689. "typo3/phar-stream-wrapper": "^3.1.3"
  2690. },
  2691. "conflict": {
  2692. "drush/drush": "<8.1.10",
  2693. "symfony/http-foundation": "4.4.42"
  2694. },
  2695. "replace": {
  2696. "drupal/core-annotation": "self.version",
  2697. "drupal/core-assertion": "self.version",
  2698. "drupal/core-bridge": "self.version",
  2699. "drupal/core-class-finder": "self.version",
  2700. "drupal/core-datetime": "self.version",
  2701. "drupal/core-dependency-injection": "self.version",
  2702. "drupal/core-diff": "self.version",
  2703. "drupal/core-discovery": "self.version",
  2704. "drupal/core-event-dispatcher": "self.version",
  2705. "drupal/core-file-cache": "self.version",
  2706. "drupal/core-file-security": "self.version",
  2707. "drupal/core-filesystem": "self.version",
  2708. "drupal/core-front-matter": "self.version",
  2709. "drupal/core-gettext": "self.version",
  2710. "drupal/core-graph": "self.version",
  2711. "drupal/core-http-foundation": "self.version",
  2712. "drupal/core-php-storage": "self.version",
  2713. "drupal/core-plugin": "self.version",
  2714. "drupal/core-proxy-builder": "self.version",
  2715. "drupal/core-render": "self.version",
  2716. "drupal/core-serialization": "self.version",
  2717. "drupal/core-transliteration": "self.version",
  2718. "drupal/core-utility": "self.version",
  2719. "drupal/core-uuid": "self.version",
  2720. "drupal/core-version": "self.version"
  2721. },
  2722. "type": "drupal-core",
  2723. "extra": {
  2724. "drupal-scaffold": {
  2725. "file-mapping": {
  2726. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2727. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2728. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2729. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2730. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2731. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2732. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2733. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2734. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2735. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2736. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2737. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2738. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2739. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2740. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2741. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2742. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2743. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2744. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2745. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2746. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2747. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2748. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2749. }
  2750. }
  2751. },
  2752. "autoload": {
  2753. "files": [
  2754. "includes/bootstrap.inc",
  2755. "includes/guzzle_php81_shim.php"
  2756. ],
  2757. "psr-4": {
  2758. "Drupal\\Core\\": "lib/Drupal/Core",
  2759. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2760. "Drupal\\Component\\": "lib/Drupal/Component"
  2761. },
  2762. "classmap": [
  2763. "lib/Drupal.php",
  2764. "lib/Drupal/Component/DependencyInjection/Container.php",
  2765. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2766. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2767. "lib/Drupal/Component/Utility/Timer.php",
  2768. "lib/Drupal/Component/Utility/Unicode.php",
  2769. "lib/Drupal/Core/Cache/Cache.php",
  2770. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2771. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2772. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2773. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2774. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2775. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2776. "lib/Drupal/Core/Database/Connection.php",
  2777. "lib/Drupal/Core/Database/Database.php",
  2778. "lib/Drupal/Core/Database/Statement.php",
  2779. "lib/Drupal/Core/Database/StatementInterface.php",
  2780. "lib/Drupal/Core/DependencyInjection/Container.php",
  2781. "lib/Drupal/Core/DrupalKernel.php",
  2782. "lib/Drupal/Core/DrupalKernelInterface.php",
  2783. "lib/Drupal/Core/Http/InputBag.php",
  2784. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2785. "lib/Drupal/Core/Site/Settings.php"
  2786. ]
  2787. },
  2788. "notification-url": "https://packagist.org/downloads/",
  2789. "license": [
  2790. "GPL-2.0-or-later"
  2791. ],
  2792. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2793. "support": {
  2794. "source": "https://github.com/drupal/core/tree/9.5.11"
  2795. },
  2796. "time": "2023-09-19T17:58:28+00:00"
  2797. },
  2798. {
  2799. "name": "drupal/core-composer-scaffold",
  2800. "version": "9.5.11",
  2801. "source": {
  2802. "type": "git",
  2803. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2804. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7"
  2805. },
  2806. "dist": {
  2807. "type": "zip",
  2808. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2809. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  2810. "shasum": ""
  2811. },
  2812. "require": {
  2813. "composer-plugin-api": "^1 || ^2",
  2814. "php": ">=7.3.0"
  2815. },
  2816. "conflict": {
  2817. "drupal-composer/drupal-scaffold": "*"
  2818. },
  2819. "require-dev": {
  2820. "composer/composer": "^1.8@stable"
  2821. },
  2822. "type": "composer-plugin",
  2823. "extra": {
  2824. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2825. "branch-alias": {
  2826. "dev-master": "1.0.x-dev"
  2827. }
  2828. },
  2829. "autoload": {
  2830. "psr-4": {
  2831. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2832. }
  2833. },
  2834. "notification-url": "https://packagist.org/downloads/",
  2835. "license": [
  2836. "GPL-2.0-or-later"
  2837. ],
  2838. "description": "A flexible Composer project scaffold builder.",
  2839. "homepage": "https://www.drupal.org/project/drupal",
  2840. "keywords": [
  2841. "drupal"
  2842. ],
  2843. "support": {
  2844. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11"
  2845. },
  2846. "time": "2023-04-30T16:17:33+00:00"
  2847. },
  2848. {
  2849. "name": "drupal/core-project-message",
  2850. "version": "9.5.11",
  2851. "source": {
  2852. "type": "git",
  2853. "url": "https://github.com/drupal/core-project-message.git",
  2854. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c"
  2855. },
  2856. "dist": {
  2857. "type": "zip",
  2858. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c",
  2859. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c",
  2860. "shasum": ""
  2861. },
  2862. "require": {
  2863. "composer-plugin-api": "^1.1 || ^2",
  2864. "php": ">=7.3.0"
  2865. },
  2866. "type": "composer-plugin",
  2867. "extra": {
  2868. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2869. },
  2870. "autoload": {
  2871. "psr-4": {
  2872. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2873. }
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "GPL-2.0-or-later"
  2878. ],
  2879. "description": "Adds a message after Composer installation.",
  2880. "homepage": "https://www.drupal.org/project/drupal",
  2881. "keywords": [
  2882. "drupal"
  2883. ],
  2884. "support": {
  2885. "source": "https://github.com/drupal/core-project-message/tree/9.5.11"
  2886. },
  2887. "time": "2022-02-24T17:40:53+00:00"
  2888. },
  2889. {
  2890. "name": "drupal/core-recommended",
  2891. "version": "9.5.11",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://github.com/drupal/core-recommended.git",
  2895. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  2900. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  2901. "shasum": ""
  2902. },
  2903. "require": {
  2904. "asm89/stack-cors": "~1.3.0",
  2905. "composer/semver": "~3.3.2",
  2906. "doctrine/annotations": "~1.13.3",
  2907. "doctrine/lexer": "~1.2.3",
  2908. "doctrine/reflection": "~1.2.3",
  2909. "drupal/core": "9.5.11",
  2910. "egulias/email-validator": "~3.2.1",
  2911. "guzzlehttp/guzzle": "~6.5.8",
  2912. "guzzlehttp/promises": "~1.5.2",
  2913. "guzzlehttp/psr7": "~1.9.1",
  2914. "longwave/laminas-diactoros": "~2.14.2",
  2915. "masterminds/html5": "~2.7.6",
  2916. "pear/archive_tar": "~1.4.14",
  2917. "pear/console_getopt": "~v1.4.3",
  2918. "pear/pear-core-minimal": "~v1.10.11",
  2919. "pear/pear_exception": "~v1.0.2",
  2920. "psr/cache": "~1.0.1",
  2921. "psr/container": "~1.1.1",
  2922. "psr/http-factory": "~1.0.1",
  2923. "psr/http-message": "~1.0.1",
  2924. "psr/log": "~1.1.4",
  2925. "ralouphie/getallheaders": "~3.0.3",
  2926. "stack/builder": "~v1.0.6",
  2927. "symfony-cmf/routing": "~2.3.4",
  2928. "symfony/console": "~v4.4.49",
  2929. "symfony/debug": "~v4.4.44",
  2930. "symfony/dependency-injection": "~v4.4.49",
  2931. "symfony/deprecation-contracts": "~v2.5.2",
  2932. "symfony/error-handler": "~v4.4.44",
  2933. "symfony/event-dispatcher": "~v4.4.44",
  2934. "symfony/event-dispatcher-contracts": "~v1.1.13",
  2935. "symfony/http-client-contracts": "~v2.5.2",
  2936. "symfony/http-foundation": "~v4.4.49",
  2937. "symfony/http-kernel": "~v4.4.50",
  2938. "symfony/mime": "~v5.4.13",
  2939. "symfony/polyfill-ctype": "~v1.27.0",
  2940. "symfony/polyfill-iconv": "~v1.27.0",
  2941. "symfony/polyfill-intl-idn": "~v1.27.0",
  2942. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  2943. "symfony/polyfill-mbstring": "~v1.27.0",
  2944. "symfony/polyfill-php80": "~v1.27.0",
  2945. "symfony/process": "~v4.4.44",
  2946. "symfony/psr-http-message-bridge": "~v2.1.4",
  2947. "symfony/routing": "~v4.4.44",
  2948. "symfony/serializer": "~v4.4.47",
  2949. "symfony/service-contracts": "~v2.5.2",
  2950. "symfony/translation": "~v4.4.47",
  2951. "symfony/translation-contracts": "~v2.5.2",
  2952. "symfony/validator": "~v4.4.48",
  2953. "symfony/var-dumper": "~v5.4.19",
  2954. "symfony/yaml": "~v4.4.45",
  2955. "twig/twig": "~v2.15.4",
  2956. "typo3/phar-stream-wrapper": "~v3.1.7"
  2957. },
  2958. "conflict": {
  2959. "webflo/drupal-core-strict": "*"
  2960. },
  2961. "type": "metapackage",
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "GPL-2.0-or-later"
  2965. ],
  2966. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2967. "support": {
  2968. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  2969. },
  2970. "time": "2023-09-19T17:58:28+00:00"
  2971. },
  2972. {
  2973. "name": "drupal/ctools",
  2974. "version": "4.1.0",
  2975. "source": {
  2976. "type": "git",
  2977. "url": "https://git.drupalcode.org/project/ctools.git",
  2978. "reference": "4.1.0"
  2979. },
  2980. "dist": {
  2981. "type": "zip",
  2982. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2983. "reference": "4.1.0",
  2984. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2985. },
  2986. "require": {
  2987. "drupal/core": "^9.5 || ^10 || ^11"
  2988. },
  2989. "type": "drupal-module",
  2990. "extra": {
  2991. "drupal": {
  2992. "version": "4.1.0",
  2993. "datestamp": "1718144949",
  2994. "security-coverage": {
  2995. "status": "covered",
  2996. "message": "Covered by Drupal's security advisory policy"
  2997. }
  2998. },
  2999. "branch-alias": {
  3000. "dev-8.x-3.x": "3.x-dev"
  3001. }
  3002. },
  3003. "notification-url": "https://packages.drupal.org/8/downloads",
  3004. "license": [
  3005. "GPL-2.0-or-later"
  3006. ],
  3007. "authors": [
  3008. {
  3009. "name": "Kris Vanderwater (EclipseGc)",
  3010. "homepage": "https://www.drupal.org/u/eclipsegc",
  3011. "role": "Maintainer"
  3012. },
  3013. {
  3014. "name": "Jakob Perry (japerry)",
  3015. "homepage": "https://www.drupal.org/u/japerry",
  3016. "role": "Maintainer"
  3017. },
  3018. {
  3019. "name": "Tim Plunkett (tim.plunkett)",
  3020. "homepage": "https://www.drupal.org/u/timplunkett",
  3021. "role": "Maintainer"
  3022. },
  3023. {
  3024. "name": "James Gilliland (neclimdul)",
  3025. "homepage": "https://www.drupal.org/u/neclimdul",
  3026. "role": "Maintainer"
  3027. },
  3028. {
  3029. "name": "Daniel Wehner (dawehner)",
  3030. "homepage": "https://www.drupal.org/u/dawehner",
  3031. "role": "Maintainer"
  3032. },
  3033. {
  3034. "name": "joelpittet",
  3035. "homepage": "https://www.drupal.org/user/160302"
  3036. },
  3037. {
  3038. "name": "merlinofchaos",
  3039. "homepage": "https://www.drupal.org/user/26979"
  3040. },
  3041. {
  3042. "name": "neclimdul",
  3043. "homepage": "https://www.drupal.org/user/48673"
  3044. },
  3045. {
  3046. "name": "sdboyer",
  3047. "homepage": "https://www.drupal.org/user/146719"
  3048. },
  3049. {
  3050. "name": "sun",
  3051. "homepage": "https://www.drupal.org/user/54136"
  3052. },
  3053. {
  3054. "name": "tim.plunkett",
  3055. "homepage": "https://www.drupal.org/user/241634"
  3056. }
  3057. ],
  3058. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3059. "homepage": "https://www.drupal.org/project/ctools",
  3060. "support": {
  3061. "source": "https://git.drupalcode.org/project/ctools",
  3062. "issues": "https://www.drupal.org/project/issues/ctools"
  3063. }
  3064. },
  3065. {
  3066. "name": "drupal/date_range_formatter",
  3067. "version": "4.0.2",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3071. "reference": "4.0.2"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3076. "reference": "4.0.2",
  3077. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3078. },
  3079. "require": {
  3080. "drupal/core": "^8 || ^9 || ^10"
  3081. },
  3082. "type": "drupal-module",
  3083. "extra": {
  3084. "drupal": {
  3085. "version": "4.0.2",
  3086. "datestamp": "1703156621",
  3087. "security-coverage": {
  3088. "status": "covered",
  3089. "message": "Covered by Drupal's security advisory policy"
  3090. }
  3091. }
  3092. },
  3093. "notification-url": "https://packages.drupal.org/8/downloads",
  3094. "license": [
  3095. "GPL-2.0-or-later"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "maximpodorov",
  3100. "homepage": "https://www.drupal.org/user/515310"
  3101. },
  3102. {
  3103. "name": "sudishth",
  3104. "homepage": "https://www.drupal.org/user/1440562"
  3105. }
  3106. ],
  3107. "description": "Formats date ranges.",
  3108. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3109. "support": {
  3110. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3111. }
  3112. },
  3113. {
  3114. "name": "drupal/devel",
  3115. "version": "5.1.2",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://git.drupalcode.org/project/devel.git",
  3119. "reference": "5.1.2"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3124. "reference": "5.1.2",
  3125. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3126. },
  3127. "require": {
  3128. "doctrine/common": "^2.7 || ^3.4",
  3129. "drupal/core": "^9 || ^10",
  3130. "php": ">=7.4",
  3131. "symfony/var-dumper": "^4 || ^5 || ^6"
  3132. },
  3133. "conflict": {
  3134. "kint-php/kint": "<3"
  3135. },
  3136. "require-dev": {
  3137. "drush/drush": "^11"
  3138. },
  3139. "suggest": {
  3140. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3141. },
  3142. "type": "drupal-module",
  3143. "extra": {
  3144. "drupal": {
  3145. "version": "5.1.2",
  3146. "datestamp": "1686161028",
  3147. "security-coverage": {
  3148. "status": "covered",
  3149. "message": "Covered by Drupal's security advisory policy"
  3150. }
  3151. },
  3152. "drush": {
  3153. "services": {
  3154. "drush.services.yml": "^9 || ^10 || ^11"
  3155. }
  3156. }
  3157. },
  3158. "notification-url": "https://packages.drupal.org/8/downloads",
  3159. "license": [
  3160. "GPL-2.0-or-later"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "moshe weitzman",
  3165. "homepage": "https://www.drupal.org/user/23"
  3166. }
  3167. ],
  3168. "description": "Various blocks, pages, and functions for developers.",
  3169. "homepage": "https://www.drupal.org/project/devel",
  3170. "support": {
  3171. "source": "https://gitlab.com/drupalspoons/devel",
  3172. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3173. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3174. }
  3175. },
  3176. {
  3177. "name": "drupal/domain",
  3178. "version": "2.0.0-beta1",
  3179. "source": {
  3180. "type": "git",
  3181. "url": "https://git.drupalcode.org/project/domain.git",
  3182. "reference": "2.0.0-beta1"
  3183. },
  3184. "dist": {
  3185. "type": "zip",
  3186. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0-beta1.zip",
  3187. "reference": "2.0.0-beta1",
  3188. "shasum": "0edbc9d6c79cb0a61c08c656e9258c2450710664"
  3189. },
  3190. "require": {
  3191. "drupal/core": "^9 || ^10"
  3192. },
  3193. "require-dev": {
  3194. "drupal/domain_access": "*",
  3195. "drupal/domain_config": "*"
  3196. },
  3197. "type": "drupal-module",
  3198. "extra": {
  3199. "drupal": {
  3200. "version": "2.0.0-beta1",
  3201. "datestamp": "1686067462",
  3202. "security-coverage": {
  3203. "status": "not-covered",
  3204. "message": "Beta releases are not covered by Drupal security advisories."
  3205. }
  3206. }
  3207. },
  3208. "notification-url": "https://packages.drupal.org/8/downloads",
  3209. "license": [
  3210. "GPL-2.0-or-later"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "agentrickard",
  3215. "homepage": "https://www.drupal.org/user/20975"
  3216. },
  3217. {
  3218. "name": "nonsie",
  3219. "homepage": "https://www.drupal.org/user/29899"
  3220. },
  3221. {
  3222. "name": "webflo",
  3223. "homepage": "https://www.drupal.org/user/254778"
  3224. }
  3225. ],
  3226. "description": "Creates domain records within a Drupal installation.",
  3227. "homepage": "https://www.drupal.org/project/domain",
  3228. "support": {
  3229. "source": "https://git.drupalcode.org/project/domain"
  3230. }
  3231. },
  3232. {
  3233. "name": "drupal/domain_config",
  3234. "version": "1.0.0-beta8",
  3235. "require": {
  3236. "drupal/core": "^8 || ^9",
  3237. "drupal/domain": "*"
  3238. },
  3239. "type": "metapackage",
  3240. "extra": {
  3241. "drupal": {
  3242. "version": "8.x-1.0-beta8",
  3243. "datestamp": "1677511311",
  3244. "security-coverage": {
  3245. "status": "not-covered",
  3246. "message": "Beta releases are not covered by Drupal security advisories."
  3247. }
  3248. }
  3249. },
  3250. "notification-url": "https://packages.drupal.org/8/downloads",
  3251. "license": [
  3252. "GPL-2.0-or-later"
  3253. ],
  3254. "authors": [
  3255. {
  3256. "name": "agentrickard",
  3257. "homepage": "https://www.drupal.org/user/20975"
  3258. },
  3259. {
  3260. "name": "nonsie",
  3261. "homepage": "https://www.drupal.org/user/29899"
  3262. },
  3263. {
  3264. "name": "webflo",
  3265. "homepage": "https://www.drupal.org/user/254778"
  3266. }
  3267. ],
  3268. "description": "Allows domain specific configuration.",
  3269. "homepage": "https://www.drupal.org/project/domain",
  3270. "support": {
  3271. "source": "https://git.drupalcode.org/project/domain"
  3272. }
  3273. },
  3274. {
  3275. "name": "drupal/domain_site_settings",
  3276. "version": "1.6.0",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3280. "reference": "8.x-1.6"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3285. "reference": "8.x-1.6",
  3286. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3287. },
  3288. "require": {
  3289. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3290. "drupal/domain": "^1.0 || ^2.0",
  3291. "drupal/domain_config": "*"
  3292. },
  3293. "type": "drupal-module",
  3294. "extra": {
  3295. "drupal": {
  3296. "version": "8.x-1.6",
  3297. "datestamp": "1726238712",
  3298. "security-coverage": {
  3299. "status": "covered",
  3300. "message": "Covered by Drupal's security advisory policy"
  3301. }
  3302. }
  3303. },
  3304. "notification-url": "https://packages.drupal.org/8/downloads",
  3305. "license": [
  3306. "GPL-2.0+"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "aloknarwaria",
  3311. "homepage": "https://www.drupal.org/user/906640"
  3312. },
  3313. {
  3314. "name": "jeroent",
  3315. "homepage": "https://www.drupal.org/user/2228934"
  3316. },
  3317. {
  3318. "name": "malaynayak",
  3319. "homepage": "https://www.drupal.org/user/3529755"
  3320. }
  3321. ],
  3322. "description": "Basic Site Setting for Domains.",
  3323. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3324. "keywords": [
  3325. "Drupal"
  3326. ],
  3327. "support": {
  3328. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3329. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3330. }
  3331. },
  3332. {
  3333. "name": "drupal/email_registration",
  3334. "version": "1.4.0",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://git.drupalcode.org/project/email_registration.git",
  3338. "reference": "8.x-1.4"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3343. "reference": "8.x-1.4",
  3344. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3345. },
  3346. "require": {
  3347. "drupal/core": "^9.1 || ^10"
  3348. },
  3349. "conflict": {
  3350. "drupal/commerce": "<2.12"
  3351. },
  3352. "require-dev": {
  3353. "drupal/commerce": "^2.0",
  3354. "drupal/token": "*"
  3355. },
  3356. "type": "drupal-module",
  3357. "extra": {
  3358. "drupal": {
  3359. "version": "8.x-1.4",
  3360. "datestamp": "1700548925",
  3361. "security-coverage": {
  3362. "status": "covered",
  3363. "message": "Covered by Drupal's security advisory policy"
  3364. }
  3365. }
  3366. },
  3367. "notification-url": "https://packages.drupal.org/8/downloads",
  3368. "license": [
  3369. "GPL-2.0-or-later"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Greg Knaddison (greggles)",
  3374. "homepage": "https://www.drupal.org/u/greggles",
  3375. "role": "Maintainer"
  3376. },
  3377. {
  3378. "name": "Andrey Postnikov (andypost)",
  3379. "homepage": "https://www.drupal.org/u/andypost",
  3380. "role": "Maintainer"
  3381. },
  3382. {
  3383. "name": "Chris Herberte",
  3384. "homepage": "https://www.drupal.org/u/chris-herberte",
  3385. "role": "Maintainer"
  3386. },
  3387. {
  3388. "name": "Moshe Weitzman (moshe weitzman)",
  3389. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3390. "role": "Maintainer"
  3391. },
  3392. {
  3393. "name": "Grevil",
  3394. "homepage": "https://www.drupal.org/user/3668491"
  3395. },
  3396. {
  3397. "name": "moshe weitzman",
  3398. "homepage": "https://www.drupal.org/user/23"
  3399. }
  3400. ],
  3401. "description": "Allows users to register with an email address as their username.",
  3402. "homepage": "https://www.drupal.org/project/email_registration",
  3403. "support": {
  3404. "source": "https://git.drupalcode.org/project/email_registration",
  3405. "issues": "http://drupal.org/project/issues/email_registration"
  3406. }
  3407. },
  3408. {
  3409. "name": "drupal/entity",
  3410. "version": "1.4.0",
  3411. "source": {
  3412. "type": "git",
  3413. "url": "https://git.drupalcode.org/project/entity.git",
  3414. "reference": "8.x-1.4"
  3415. },
  3416. "dist": {
  3417. "type": "zip",
  3418. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3419. "reference": "8.x-1.4",
  3420. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3421. },
  3422. "require": {
  3423. "drupal/core": "^9.2|^10.0"
  3424. },
  3425. "type": "drupal-module",
  3426. "extra": {
  3427. "drupal": {
  3428. "version": "8.x-1.4",
  3429. "datestamp": "1661898023",
  3430. "security-coverage": {
  3431. "status": "covered",
  3432. "message": "Covered by Drupal's security advisory policy"
  3433. }
  3434. }
  3435. },
  3436. "notification-url": "https://packages.drupal.org/8/downloads",
  3437. "license": [
  3438. "GPL-2.0-or-later"
  3439. ],
  3440. "authors": [
  3441. {
  3442. "name": "berdir",
  3443. "homepage": "https://www.drupal.org/user/214652"
  3444. },
  3445. {
  3446. "name": "bojanz",
  3447. "homepage": "https://www.drupal.org/user/86106"
  3448. },
  3449. {
  3450. "name": "dawehner",
  3451. "homepage": "https://www.drupal.org/user/99340"
  3452. },
  3453. {
  3454. "name": "dixon_",
  3455. "homepage": "https://www.drupal.org/user/239911"
  3456. },
  3457. {
  3458. "name": "fago",
  3459. "homepage": "https://www.drupal.org/user/16747"
  3460. },
  3461. {
  3462. "name": "mglaman",
  3463. "homepage": "https://www.drupal.org/user/2416470"
  3464. },
  3465. {
  3466. "name": "TR",
  3467. "homepage": "https://www.drupal.org/user/202830"
  3468. }
  3469. ],
  3470. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3471. "homepage": "https://www.drupal.org/project/entity",
  3472. "support": {
  3473. "source": "https://git.drupalcode.org/project/entity",
  3474. "issues": "https://www.drupal.org/project/issues/entity"
  3475. }
  3476. },
  3477. {
  3478. "name": "drupal/field_group",
  3479. "version": "3.6.0",
  3480. "source": {
  3481. "type": "git",
  3482. "url": "https://git.drupalcode.org/project/field_group.git",
  3483. "reference": "8.x-3.6"
  3484. },
  3485. "dist": {
  3486. "type": "zip",
  3487. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3488. "reference": "8.x-3.6",
  3489. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3490. },
  3491. "require": {
  3492. "drupal/core": "^9.2 || ^10 || ^11"
  3493. },
  3494. "require-dev": {
  3495. "drupal/jquery_ui_accordion": "*"
  3496. },
  3497. "type": "drupal-module",
  3498. "extra": {
  3499. "drupal": {
  3500. "version": "8.x-3.6",
  3501. "datestamp": "1722672510",
  3502. "security-coverage": {
  3503. "status": "covered",
  3504. "message": "Covered by Drupal's security advisory policy"
  3505. }
  3506. }
  3507. },
  3508. "notification-url": "https://packages.drupal.org/8/downloads",
  3509. "license": [
  3510. "GPL-2.0-or-later"
  3511. ],
  3512. "authors": [
  3513. {
  3514. "name": "anybody",
  3515. "homepage": "https://www.drupal.org/user/291091"
  3516. },
  3517. {
  3518. "name": "grevil",
  3519. "homepage": "https://www.drupal.org/user/3668491"
  3520. },
  3521. {
  3522. "name": "hydra",
  3523. "homepage": "https://www.drupal.org/user/647364"
  3524. },
  3525. {
  3526. "name": "joevagyok",
  3527. "homepage": "https://www.drupal.org/user/2876343"
  3528. },
  3529. {
  3530. "name": "jyve",
  3531. "homepage": "https://www.drupal.org/user/591438"
  3532. },
  3533. {
  3534. "name": "nils.destoop",
  3535. "homepage": "https://www.drupal.org/user/361625"
  3536. },
  3537. {
  3538. "name": "Stalski",
  3539. "homepage": "https://www.drupal.org/user/322618"
  3540. },
  3541. {
  3542. "name": "swentel",
  3543. "homepage": "https://www.drupal.org/user/107403"
  3544. }
  3545. ],
  3546. "description": "Provides the field_group module.",
  3547. "homepage": "https://www.drupal.org/project/field_group",
  3548. "support": {
  3549. "source": "https://git.drupalcode.org/project/field_group",
  3550. "issues": "https://www.drupal.org/project/issues/field_group"
  3551. }
  3552. },
  3553. {
  3554. "name": "drupal/filefield_sources",
  3555. "version": "dev-2.0.x",
  3556. "source": {
  3557. "type": "git",
  3558. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3559. "reference": "3905bb005c2f96f7391abcd91004a81f13e83477"
  3560. },
  3561. "require": {
  3562. "drupal/core": "^9.2.0 | ^10"
  3563. },
  3564. "require-dev": {
  3565. "drupal/imce": "^3.0"
  3566. },
  3567. "type": "drupal-module",
  3568. "extra": {
  3569. "branch-alias": {
  3570. "dev-2.0.x": "2.0.x-dev"
  3571. },
  3572. "drupal": {
  3573. "version": "2.0.x-dev",
  3574. "datestamp": "1714083250",
  3575. "security-coverage": {
  3576. "status": "not-covered",
  3577. "message": "Dev releases are not covered by Drupal security advisories."
  3578. }
  3579. }
  3580. },
  3581. "notification-url": "https://packages.drupal.org/8/downloads",
  3582. "license": [
  3583. "GPL-2.0-or-later"
  3584. ],
  3585. "authors": [
  3586. {
  3587. "name": "Nate Lampton (quicksketch)",
  3588. "homepage": "https://www.drupal.org/u/quicksketch",
  3589. "role": "Maintainer"
  3590. },
  3591. {
  3592. "name": "Andrey Khromyshev (profak)",
  3593. "homepage": "https://www.drupal.org/u/profak",
  3594. "role": "Maintainer"
  3595. },
  3596. {
  3597. "name": "David Valdez (gnuget)",
  3598. "homepage": "https://www.drupal.org/u/gnuget",
  3599. "role": "Maintainer"
  3600. },
  3601. {
  3602. "name": "quicksketch",
  3603. "homepage": "https://www.drupal.org/user/35821"
  3604. }
  3605. ],
  3606. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3607. "homepage": "https://www.drupal.org/project/filefield_sources",
  3608. "support": {
  3609. "source": "https://git.drupalcode.org/project/filefield_sources",
  3610. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3611. "irc": "irc://irc.freenode.org/drupal-contribute"
  3612. }
  3613. },
  3614. {
  3615. "name": "drupal/filter_perms",
  3616. "version": "2.0.1",
  3617. "source": {
  3618. "type": "git",
  3619. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3620. "reference": "2.0.1"
  3621. },
  3622. "dist": {
  3623. "type": "zip",
  3624. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.1.zip",
  3625. "reference": "2.0.1",
  3626. "shasum": "76949486b0a730c1fdfd9a8d773a3a96d2e0de7b"
  3627. },
  3628. "require": {
  3629. "drupal/core": "^9.0 || ^10.0 || ^11"
  3630. },
  3631. "type": "drupal-module",
  3632. "extra": {
  3633. "drupal": {
  3634. "version": "2.0.1",
  3635. "datestamp": "1722444219",
  3636. "security-coverage": {
  3637. "status": "covered",
  3638. "message": "Covered by Drupal's security advisory policy"
  3639. }
  3640. }
  3641. },
  3642. "notification-url": "https://packages.drupal.org/8/downloads",
  3643. "license": [
  3644. "GPL-2.0+"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "cYu",
  3649. "homepage": "https://www.drupal.org/user/202205"
  3650. },
  3651. {
  3652. "name": "deekayen",
  3653. "homepage": "https://www.drupal.org/user/972"
  3654. },
  3655. {
  3656. "name": "ivavictoria",
  3657. "homepage": "https://www.drupal.org/user/3061533"
  3658. },
  3659. {
  3660. "name": "justcaldwell",
  3661. "homepage": "https://www.drupal.org/user/290069"
  3662. },
  3663. {
  3664. "name": "mgbellaire",
  3665. "homepage": "https://www.drupal.org/user/1831932"
  3666. },
  3667. {
  3668. "name": "willzyx",
  3669. "homepage": "https://www.drupal.org/user/1043862"
  3670. }
  3671. ],
  3672. "description": "Provides role and module filters to simplify the user permissions page.",
  3673. "homepage": "https://www.drupal.org/project/filter_perms",
  3674. "support": {
  3675. "source": "http://cgit.drupalcode.org/filter_perms",
  3676. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3677. }
  3678. },
  3679. {
  3680. "name": "drupal/honeypot",
  3681. "version": "2.1.4",
  3682. "source": {
  3683. "type": "git",
  3684. "url": "https://git.drupalcode.org/project/honeypot.git",
  3685. "reference": "2.1.4"
  3686. },
  3687. "dist": {
  3688. "type": "zip",
  3689. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.4.zip",
  3690. "reference": "2.1.4",
  3691. "shasum": "adf76c3520c0e458177dbe6d638aa2d6ae40a95b"
  3692. },
  3693. "require": {
  3694. "drupal/core": "^9.2 || ^10"
  3695. },
  3696. "require-dev": {
  3697. "drupal/rules": "^3.x-dev"
  3698. },
  3699. "type": "drupal-module",
  3700. "extra": {
  3701. "drupal": {
  3702. "version": "2.1.4",
  3703. "datestamp": "1723489062",
  3704. "security-coverage": {
  3705. "status": "covered",
  3706. "message": "Covered by Drupal's security advisory policy"
  3707. }
  3708. }
  3709. },
  3710. "notification-url": "https://packages.drupal.org/8/downloads",
  3711. "license": [
  3712. "GPL-2.0-or-later"
  3713. ],
  3714. "authors": [
  3715. {
  3716. "name": "Jeff Geerling",
  3717. "homepage": "https://www.drupal.org/user/389011",
  3718. "email": "geerlingguy@mac.com"
  3719. },
  3720. {
  3721. "name": "Manuel Garcia",
  3722. "homepage": "https://www.drupal.org/user/213194"
  3723. },
  3724. {
  3725. "name": "tr",
  3726. "homepage": "https://www.drupal.org/user/202830"
  3727. },
  3728. {
  3729. "name": "vijaycs85",
  3730. "homepage": "https://www.drupal.org/user/93488"
  3731. }
  3732. ],
  3733. "description": "Mitigates spam form submissions using the honeypot method.",
  3734. "homepage": "https://www.drupal.org/project/honeypot",
  3735. "keywords": [
  3736. "deterrent",
  3737. "form",
  3738. "honeypot",
  3739. "honeytrap",
  3740. "php",
  3741. "spam"
  3742. ],
  3743. "support": {
  3744. "source": "https://git.drupalcode.org/project/honeypot",
  3745. "issues": "https://www.drupal.org/project/issues/honeypot"
  3746. }
  3747. },
  3748. {
  3749. "name": "drupal/jquery_ui",
  3750. "version": "1.7.0",
  3751. "source": {
  3752. "type": "git",
  3753. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3754. "reference": "8.x-1.7"
  3755. },
  3756. "dist": {
  3757. "type": "zip",
  3758. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  3759. "reference": "8.x-1.7",
  3760. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  3761. },
  3762. "require": {
  3763. "drupal/core": "^9.2 || ^10 || ^11"
  3764. },
  3765. "type": "drupal-module",
  3766. "extra": {
  3767. "drupal": {
  3768. "version": "8.x-1.7",
  3769. "datestamp": "1717002098",
  3770. "security-coverage": {
  3771. "status": "covered",
  3772. "message": "Covered by Drupal's security advisory policy"
  3773. }
  3774. }
  3775. },
  3776. "notification-url": "https://packages.drupal.org/8/downloads",
  3777. "license": [
  3778. "GPL-2.0-or-later"
  3779. ],
  3780. "authors": [
  3781. {
  3782. "name": "bnjmnm",
  3783. "homepage": "https://www.drupal.org/user/2369194"
  3784. },
  3785. {
  3786. "name": "jjeff",
  3787. "homepage": "https://www.drupal.org/user/17190"
  3788. },
  3789. {
  3790. "name": "lauriii",
  3791. "homepage": "https://www.drupal.org/user/1078742"
  3792. },
  3793. {
  3794. "name": "litwol",
  3795. "homepage": "https://www.drupal.org/user/78134"
  3796. },
  3797. {
  3798. "name": "mfb",
  3799. "homepage": "https://www.drupal.org/user/12302"
  3800. },
  3801. {
  3802. "name": "mfer",
  3803. "homepage": "https://www.drupal.org/user/25701"
  3804. },
  3805. {
  3806. "name": "mikelutz",
  3807. "homepage": "https://www.drupal.org/user/2972409"
  3808. },
  3809. {
  3810. "name": "nod_",
  3811. "homepage": "https://www.drupal.org/user/598310"
  3812. },
  3813. {
  3814. "name": "phenaproxima",
  3815. "homepage": "https://www.drupal.org/user/205645"
  3816. },
  3817. {
  3818. "name": "RobLoach",
  3819. "homepage": "https://www.drupal.org/user/61114"
  3820. },
  3821. {
  3822. "name": "sun",
  3823. "homepage": "https://www.drupal.org/user/54136"
  3824. },
  3825. {
  3826. "name": "webchick",
  3827. "homepage": "https://www.drupal.org/user/24967"
  3828. },
  3829. {
  3830. "name": "Wim Leers",
  3831. "homepage": "https://www.drupal.org/user/99777"
  3832. },
  3833. {
  3834. "name": "zrpnr",
  3835. "homepage": "https://www.drupal.org/user/1448368"
  3836. }
  3837. ],
  3838. "description": "Provides jQuery UI library.",
  3839. "homepage": "https://www.drupal.org/project/jquery_ui",
  3840. "support": {
  3841. "source": "https://git.drupalcode.org/project/jquery_ui"
  3842. }
  3843. },
  3844. {
  3845. "name": "drupal/jquery_ui_draggable",
  3846. "version": "2.1.0",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3850. "reference": "2.1.0"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3855. "reference": "2.1.0",
  3856. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3857. },
  3858. "require": {
  3859. "drupal/core": "^9.2 || ^10 || ^11",
  3860. "drupal/jquery_ui": "^1.7"
  3861. },
  3862. "type": "drupal-module",
  3863. "extra": {
  3864. "drupal": {
  3865. "version": "2.1.0",
  3866. "datestamp": "1717015492",
  3867. "security-coverage": {
  3868. "status": "covered",
  3869. "message": "Covered by Drupal's security advisory policy"
  3870. }
  3871. }
  3872. },
  3873. "notification-url": "https://packages.drupal.org/8/downloads",
  3874. "license": [
  3875. "GPL-2.0-or-later"
  3876. ],
  3877. "authors": [
  3878. {
  3879. "name": "bnjmnm",
  3880. "homepage": "https://www.drupal.org/user/2369194"
  3881. },
  3882. {
  3883. "name": "lauriii",
  3884. "homepage": "https://www.drupal.org/user/1078742"
  3885. },
  3886. {
  3887. "name": "zrpnr",
  3888. "homepage": "https://www.drupal.org/user/1448368"
  3889. }
  3890. ],
  3891. "description": "Provides jQuery UI Draggable library.",
  3892. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3893. "support": {
  3894. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3895. }
  3896. },
  3897. {
  3898. "name": "drupal/jquery_ui_droppable",
  3899. "version": "2.1.0",
  3900. "source": {
  3901. "type": "git",
  3902. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3903. "reference": "2.1.0"
  3904. },
  3905. "dist": {
  3906. "type": "zip",
  3907. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3908. "reference": "2.1.0",
  3909. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3910. },
  3911. "require": {
  3912. "drupal/core": "^9.2 || ^10 || ^11",
  3913. "drupal/jquery_ui": "^1.7",
  3914. "drupal/jquery_ui_draggable": "^2.1"
  3915. },
  3916. "type": "drupal-module",
  3917. "extra": {
  3918. "drupal": {
  3919. "version": "2.1.0",
  3920. "datestamp": "1717031391",
  3921. "security-coverage": {
  3922. "status": "covered",
  3923. "message": "Covered by Drupal's security advisory policy"
  3924. }
  3925. }
  3926. },
  3927. "notification-url": "https://packages.drupal.org/8/downloads",
  3928. "license": [
  3929. "GPL-2.0-or-later"
  3930. ],
  3931. "authors": [
  3932. {
  3933. "name": "bnjmnm",
  3934. "homepage": "https://www.drupal.org/user/2369194"
  3935. },
  3936. {
  3937. "name": "lauriii",
  3938. "homepage": "https://www.drupal.org/user/1078742"
  3939. },
  3940. {
  3941. "name": "zrpnr",
  3942. "homepage": "https://www.drupal.org/user/1448368"
  3943. }
  3944. ],
  3945. "description": "Provides jQuery UI Droppable library.",
  3946. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3947. "support": {
  3948. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3949. }
  3950. },
  3951. {
  3952. "name": "drupal/jquery_ui_sortable",
  3953. "version": "2.0.1",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3957. "reference": "2.0.1"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.0.1.zip",
  3962. "reference": "2.0.1",
  3963. "shasum": "4e244c03b2b8324193f685677da8847aa3609522"
  3964. },
  3965. "require": {
  3966. "drupal/core": "^9.2 || ^10",
  3967. "drupal/jquery_ui": "^1.5"
  3968. },
  3969. "type": "drupal-module",
  3970. "extra": {
  3971. "drupal": {
  3972. "version": "2.0.1",
  3973. "datestamp": "1694604335",
  3974. "security-coverage": {
  3975. "status": "covered",
  3976. "message": "Covered by Drupal's security advisory policy"
  3977. }
  3978. }
  3979. },
  3980. "notification-url": "https://packages.drupal.org/8/downloads",
  3981. "license": [
  3982. "GPL-2.0-or-later"
  3983. ],
  3984. "authors": [
  3985. {
  3986. "name": "bnjmnm",
  3987. "homepage": "https://www.drupal.org/user/2369194"
  3988. },
  3989. {
  3990. "name": "lauriii",
  3991. "homepage": "https://www.drupal.org/user/1078742"
  3992. },
  3993. {
  3994. "name": "zrpnr",
  3995. "homepage": "https://www.drupal.org/user/1448368"
  3996. }
  3997. ],
  3998. "description": "Provides jQuery UI Sortable library.",
  3999. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4000. "support": {
  4001. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4002. }
  4003. },
  4004. {
  4005. "name": "drupal/js_cookie",
  4006. "version": "1.0.1",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://git.drupalcode.org/project/js_cookie.git",
  4010. "reference": "1.0.1"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  4015. "reference": "1.0.1",
  4016. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  4017. },
  4018. "require": {
  4019. "drupal/core": "^9 || ^10 || ^11"
  4020. },
  4021. "type": "drupal-module",
  4022. "extra": {
  4023. "drupal": {
  4024. "version": "1.0.1",
  4025. "datestamp": "1693951097",
  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": "Dave Reid",
  4039. "homepage": "https://www.drupal.org/user/53892"
  4040. }
  4041. ],
  4042. "description": "Provides the js-cookie library as a dependency.",
  4043. "homepage": "https://www.drupal.org/project/js_cookie",
  4044. "support": {
  4045. "source": "https://git.drupalcode.org/project/js_cookie"
  4046. }
  4047. },
  4048. {
  4049. "name": "drupal/linkit",
  4050. "version": "6.0.2",
  4051. "source": {
  4052. "type": "git",
  4053. "url": "https://git.drupalcode.org/project/linkit.git",
  4054. "reference": "6.0.2"
  4055. },
  4056. "dist": {
  4057. "type": "zip",
  4058. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.2.zip",
  4059. "reference": "6.0.2",
  4060. "shasum": "b7d965d122403c0d1cd8b891db3ea56004026804"
  4061. },
  4062. "require": {
  4063. "drupal/core": "^9.4 || ^10.0.0"
  4064. },
  4065. "conflict": {
  4066. "drupal/core": ">=10.1"
  4067. },
  4068. "require-dev": {
  4069. "drupal/ckeditor": "*",
  4070. "drupal/imce": "*"
  4071. },
  4072. "type": "drupal-module",
  4073. "extra": {
  4074. "drupal": {
  4075. "version": "6.0.2",
  4076. "datestamp": "1696865395",
  4077. "security-coverage": {
  4078. "status": "covered",
  4079. "message": "Covered by Drupal's security advisory policy"
  4080. }
  4081. }
  4082. },
  4083. "notification-url": "https://packages.drupal.org/8/downloads",
  4084. "license": [
  4085. "GPL-2.0-or-later"
  4086. ],
  4087. "authors": [
  4088. {
  4089. "name": "Emil Stjerneman",
  4090. "homepage": "https://stjerneman.com",
  4091. "email": "emil@stjerneman.com",
  4092. "role": "Maintainer"
  4093. },
  4094. {
  4095. "name": "johnwebdev",
  4096. "homepage": "https://www.drupal.org/user/3331569"
  4097. },
  4098. {
  4099. "name": "mark_fullmer",
  4100. "homepage": "https://www.drupal.org/user/2612816"
  4101. }
  4102. ],
  4103. "description": "Linkit - Enriched linking experience",
  4104. "homepage": "http://drupal.org/project/linkit",
  4105. "support": {
  4106. "source": "http://cgit.drupalcode.org/linkit",
  4107. "issues": "http://drupal.org/project/linkit"
  4108. }
  4109. },
  4110. {
  4111. "name": "drupal/login_emailusername",
  4112. "version": "2.1.0",
  4113. "source": {
  4114. "type": "git",
  4115. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4116. "reference": "2.1.0"
  4117. },
  4118. "dist": {
  4119. "type": "zip",
  4120. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4121. "reference": "2.1.0",
  4122. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4123. },
  4124. "require": {
  4125. "drupal/core": "^8.8 || ^9 || ^10"
  4126. },
  4127. "type": "drupal-module",
  4128. "extra": {
  4129. "drupal": {
  4130. "version": "2.1.0",
  4131. "datestamp": "1677072401",
  4132. "security-coverage": {
  4133. "status": "covered",
  4134. "message": "Covered by Drupal's security advisory policy"
  4135. }
  4136. },
  4137. "branch-alias": {
  4138. "dev-8.x-1.x": "8.1.x-dev"
  4139. }
  4140. },
  4141. "notification-url": "https://packages.drupal.org/8/downloads",
  4142. "license": [
  4143. "GPL-2.0-or-later"
  4144. ],
  4145. "authors": [
  4146. {
  4147. "name": "See contributors",
  4148. "homepage": "https://www.drupal.org/node/2820429/committers",
  4149. "role": "contributor"
  4150. },
  4151. {
  4152. "name": "rjjakes",
  4153. "homepage": "https://www.drupal.org/user/3457245"
  4154. },
  4155. {
  4156. "name": "VladimirAus",
  4157. "homepage": "https://www.drupal.org/user/673120"
  4158. }
  4159. ],
  4160. "description": "Login with the email as username.",
  4161. "homepage": "https://drupal.org/project/login_emailusername",
  4162. "support": {
  4163. "source": "https://git.drupalcode.org/project/login_emailusername",
  4164. "issues": "https://drupal.org/project/issues/login_emailusername"
  4165. }
  4166. },
  4167. {
  4168. "name": "drupal/maillog",
  4169. "version": "1.1.0",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://git.drupalcode.org/project/maillog.git",
  4173. "reference": "8.x-1.1"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.1.zip",
  4178. "reference": "8.x-1.1",
  4179. "shasum": "50199b2b37325f4a167a82ec2d1de366cda6f898"
  4180. },
  4181. "require": {
  4182. "drupal/core": "^9 || ^10"
  4183. },
  4184. "type": "drupal-module",
  4185. "extra": {
  4186. "drupal": {
  4187. "version": "8.x-1.1",
  4188. "datestamp": "1685616898",
  4189. "security-coverage": {
  4190. "status": "covered",
  4191. "message": "Covered by Drupal's security advisory policy"
  4192. }
  4193. }
  4194. },
  4195. "notification-url": "https://packages.drupal.org/8/downloads",
  4196. "license": [
  4197. "GPL-2.0-or-later"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "berdir",
  4202. "homepage": "https://www.drupal.org/user/214652"
  4203. },
  4204. {
  4205. "name": "damienmckenna",
  4206. "homepage": "https://www.drupal.org/user/108450"
  4207. },
  4208. {
  4209. "name": "miro_dietiker",
  4210. "homepage": "https://www.drupal.org/user/227761"
  4211. },
  4212. {
  4213. "name": "pluess",
  4214. "homepage": "https://www.drupal.org/user/84659"
  4215. }
  4216. ],
  4217. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4218. "homepage": "https://www.drupal.org/project/maillog",
  4219. "support": {
  4220. "source": "https://git.drupalcode.org/project/maillog"
  4221. }
  4222. },
  4223. {
  4224. "name": "drupal/menu_admin_per_menu",
  4225. "version": "1.5.0",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4229. "reference": "8.x-1.5"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  4234. "reference": "8.x-1.5",
  4235. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  4236. },
  4237. "require": {
  4238. "drupal/core": "^9 || ^10"
  4239. },
  4240. "type": "drupal-module",
  4241. "extra": {
  4242. "drupal": {
  4243. "version": "8.x-1.5",
  4244. "datestamp": "1660918821",
  4245. "security-coverage": {
  4246. "status": "covered",
  4247. "message": "Covered by Drupal's security advisory policy"
  4248. }
  4249. }
  4250. },
  4251. "notification-url": "https://packages.drupal.org/8/downloads",
  4252. "license": [
  4253. "GPL-2.0-or-later"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "anrikun",
  4258. "homepage": "https://www.drupal.org/user/410199"
  4259. },
  4260. {
  4261. "name": "jeroent",
  4262. "homepage": "https://www.drupal.org/user/2228934"
  4263. },
  4264. {
  4265. "name": "jonas139",
  4266. "homepage": "https://www.drupal.org/user/2873401"
  4267. },
  4268. {
  4269. "name": "mkdok",
  4270. "homepage": "https://www.drupal.org/user/3308753"
  4271. }
  4272. ],
  4273. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4274. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4275. "support": {
  4276. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4277. }
  4278. },
  4279. {
  4280. "name": "drupal/metatag",
  4281. "version": "2.0.2",
  4282. "source": {
  4283. "type": "git",
  4284. "url": "https://git.drupalcode.org/project/metatag.git",
  4285. "reference": "2.0.2"
  4286. },
  4287. "dist": {
  4288. "type": "zip",
  4289. "url": "https://ftp.drupal.org/files/projects/metatag-2.0.2.zip",
  4290. "reference": "2.0.2",
  4291. "shasum": "748013c50a0ed5e10359413bb3481392a0bf0d3f"
  4292. },
  4293. "require": {
  4294. "drupal/core": "^9.4 || ^10 || ^11",
  4295. "drupal/token": "^1.0",
  4296. "php": ">=8.0"
  4297. },
  4298. "require-dev": {
  4299. "drupal/hal": "^1 || ^2 || ^9",
  4300. "drupal/metatag_dc": "*",
  4301. "drupal/metatag_open_graph": "*",
  4302. "drupal/page_manager": "^4.0",
  4303. "drupal/redirect": "^1.0",
  4304. "ergebnis/composer-normalize": "*",
  4305. "mpyw/phpunit-patch-serializable-comparison": "*"
  4306. },
  4307. "type": "drupal-module",
  4308. "extra": {
  4309. "drupal": {
  4310. "version": "2.0.2",
  4311. "datestamp": "1722869772",
  4312. "security-coverage": {
  4313. "status": "covered",
  4314. "message": "Covered by Drupal's security advisory policy"
  4315. }
  4316. },
  4317. "composer-normalize": {
  4318. "indent-size": 2,
  4319. "indent-style": "space"
  4320. }
  4321. },
  4322. "notification-url": "https://packages.drupal.org/8/downloads",
  4323. "license": [
  4324. "GPL-2.0-or-later"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "See contributors",
  4329. "homepage": "https://www.drupal.org/node/640498/committers",
  4330. "role": "Developer"
  4331. },
  4332. {
  4333. "name": "dave reid",
  4334. "homepage": "https://www.drupal.org/user/53892"
  4335. }
  4336. ],
  4337. "description": "Manage meta tags for all entities.",
  4338. "homepage": "https://www.drupal.org/project/metatag",
  4339. "keywords": [
  4340. "Drupal",
  4341. "seo"
  4342. ],
  4343. "support": {
  4344. "source": "https://git.drupalcode.org/project/metatag",
  4345. "issues": "https://www.drupal.org/project/issues/metatag",
  4346. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4347. }
  4348. },
  4349. {
  4350. "name": "drupal/pathauto",
  4351. "version": "1.13.0",
  4352. "source": {
  4353. "type": "git",
  4354. "url": "https://git.drupalcode.org/project/pathauto.git",
  4355. "reference": "8.x-1.13"
  4356. },
  4357. "dist": {
  4358. "type": "zip",
  4359. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  4360. "reference": "8.x-1.13",
  4361. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  4362. },
  4363. "require": {
  4364. "drupal/core": "^9.4 || ^10 || ^11",
  4365. "drupal/ctools": "*",
  4366. "drupal/token": "*"
  4367. },
  4368. "require-dev": {
  4369. "drupal/forum": "*"
  4370. },
  4371. "suggest": {
  4372. "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."
  4373. },
  4374. "type": "drupal-module",
  4375. "extra": {
  4376. "drupal": {
  4377. "version": "8.x-1.13",
  4378. "datestamp": "1722507672",
  4379. "security-coverage": {
  4380. "status": "covered",
  4381. "message": "Covered by Drupal's security advisory policy"
  4382. }
  4383. },
  4384. "drush": {
  4385. "services": {
  4386. "drush.services.yml": "^9 || ^10"
  4387. }
  4388. }
  4389. },
  4390. "notification-url": "https://packages.drupal.org/8/downloads",
  4391. "license": [
  4392. "GPL-2.0-or-later"
  4393. ],
  4394. "authors": [
  4395. {
  4396. "name": "Berdir",
  4397. "homepage": "https://www.drupal.org/user/214652"
  4398. },
  4399. {
  4400. "name": "Dave Reid",
  4401. "homepage": "https://www.drupal.org/user/53892"
  4402. },
  4403. {
  4404. "name": "Freso",
  4405. "homepage": "https://www.drupal.org/user/27504"
  4406. },
  4407. {
  4408. "name": "greggles",
  4409. "homepage": "https://www.drupal.org/user/36762"
  4410. }
  4411. ],
  4412. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4413. "homepage": "https://www.drupal.org/project/pathauto",
  4414. "support": {
  4415. "source": "https://cgit.drupalcode.org/pathauto",
  4416. "issues": "https://www.drupal.org/project/issues/pathauto",
  4417. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4418. }
  4419. },
  4420. {
  4421. "name": "drupal/profile",
  4422. "version": "1.4.0",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://git.drupalcode.org/project/profile.git",
  4426. "reference": "8.x-1.4"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4431. "reference": "8.x-1.4",
  4432. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4433. },
  4434. "require": {
  4435. "drupal/core": "^8.9 || ^9 || ^10",
  4436. "drupal/entity": "^1.0-rc2"
  4437. },
  4438. "require-dev": {
  4439. "drupal/token": "^1.7"
  4440. },
  4441. "type": "drupal-module",
  4442. "extra": {
  4443. "drupal": {
  4444. "version": "8.x-1.4",
  4445. "datestamp": "1652430373",
  4446. "security-coverage": {
  4447. "status": "covered",
  4448. "message": "Covered by Drupal's security advisory policy"
  4449. }
  4450. }
  4451. },
  4452. "notification-url": "https://packages.drupal.org/8/downloads",
  4453. "license": [
  4454. "GPL-2.0-or-later"
  4455. ],
  4456. "authors": [
  4457. {
  4458. "name": "bojanz",
  4459. "homepage": "https://www.drupal.org/user/86106"
  4460. },
  4461. {
  4462. "name": "daggerhart",
  4463. "homepage": "https://www.drupal.org/user/167806"
  4464. },
  4465. {
  4466. "name": "fago",
  4467. "homepage": "https://www.drupal.org/user/16747"
  4468. },
  4469. {
  4470. "name": "jsacksick",
  4471. "homepage": "https://www.drupal.org/user/972218"
  4472. },
  4473. {
  4474. "name": "mglaman",
  4475. "homepage": "https://www.drupal.org/user/2416470"
  4476. },
  4477. {
  4478. "name": "pcambra",
  4479. "homepage": "https://www.drupal.org/user/122101"
  4480. }
  4481. ],
  4482. "description": "Provides configurable user profiles.",
  4483. "homepage": "http://drupal.org/project/profile",
  4484. "support": {
  4485. "source": "https://git.drupalcode.org/project/profile"
  4486. }
  4487. },
  4488. {
  4489. "name": "drupal/redirect",
  4490. "version": "1.10.0",
  4491. "source": {
  4492. "type": "git",
  4493. "url": "https://git.drupalcode.org/project/redirect.git",
  4494. "reference": "8.x-1.10"
  4495. },
  4496. "dist": {
  4497. "type": "zip",
  4498. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip",
  4499. "reference": "8.x-1.10",
  4500. "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c"
  4501. },
  4502. "require": {
  4503. "drupal/core": "^9.2 || ^10 || ^11"
  4504. },
  4505. "type": "drupal-module",
  4506. "extra": {
  4507. "drupal": {
  4508. "version": "8.x-1.10",
  4509. "datestamp": "1723277641",
  4510. "security-coverage": {
  4511. "status": "covered",
  4512. "message": "Covered by Drupal's security advisory policy"
  4513. }
  4514. }
  4515. },
  4516. "notification-url": "https://packages.drupal.org/8/downloads",
  4517. "license": [
  4518. "GPL-2.0-or-later"
  4519. ],
  4520. "authors": [
  4521. {
  4522. "name": "Berdir",
  4523. "homepage": "https://www.drupal.org/user/214652"
  4524. },
  4525. {
  4526. "name": "dave reid",
  4527. "homepage": "https://www.drupal.org/user/53892"
  4528. },
  4529. {
  4530. "name": "Kristen Pol",
  4531. "homepage": "https://www.drupal.org/user/8389"
  4532. },
  4533. {
  4534. "name": "pifagor",
  4535. "homepage": "https://www.drupal.org/user/2375692"
  4536. }
  4537. ],
  4538. "description": "Allows users to redirect from old URLs to new URLs.",
  4539. "homepage": "https://www.drupal.org/project/redirect",
  4540. "support": {
  4541. "source": "https://git.drupalcode.org/project/redirect"
  4542. }
  4543. },
  4544. {
  4545. "name": "drupal/redis",
  4546. "version": "1.8.0",
  4547. "source": {
  4548. "type": "git",
  4549. "url": "https://git.drupalcode.org/project/redis.git",
  4550. "reference": "8.x-1.8"
  4551. },
  4552. "dist": {
  4553. "type": "zip",
  4554. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.8.zip",
  4555. "reference": "8.x-1.8",
  4556. "shasum": "6de73086d29de3b041594bae97c74401cbf05c3d"
  4557. },
  4558. "require": {
  4559. "drupal/core": "^9.3 || ^10 || ^11"
  4560. },
  4561. "suggest": {
  4562. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4563. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4564. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4565. },
  4566. "type": "drupal-module",
  4567. "extra": {
  4568. "drupal": {
  4569. "version": "8.x-1.8",
  4570. "datestamp": "1723934771",
  4571. "security-coverage": {
  4572. "status": "covered",
  4573. "message": "Covered by Drupal's security advisory policy"
  4574. }
  4575. }
  4576. },
  4577. "autoload": {
  4578. "psr-4": {
  4579. "Drupal\\redis\\": "src"
  4580. }
  4581. },
  4582. "notification-url": "https://packages.drupal.org/8/downloads",
  4583. "license": [
  4584. "GPL-2.0-or-later"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "berdir",
  4589. "homepage": "https://www.drupal.org/user/214652"
  4590. },
  4591. {
  4592. "name": "greg.1.anderson",
  4593. "homepage": "https://www.drupal.org/user/438598"
  4594. },
  4595. {
  4596. "name": "kporras07",
  4597. "homepage": "https://www.drupal.org/user/1349780"
  4598. },
  4599. {
  4600. "name": "pounard",
  4601. "homepage": "https://www.drupal.org/user/240164"
  4602. }
  4603. ],
  4604. "description": "Integration of Drupal with the Redis key-value store.",
  4605. "homepage": "https://www.drupal.org/project/redis",
  4606. "support": {
  4607. "source": "https://git.drupalcode.org/project/redis"
  4608. }
  4609. },
  4610. {
  4611. "name": "drupal/restui",
  4612. "version": "1.21.0",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://git.drupalcode.org/project/restui.git",
  4616. "reference": "8.x-1.21"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4621. "reference": "8.x-1.21",
  4622. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4623. },
  4624. "require": {
  4625. "drupal/core": "^8.7.7 || ^9 || ^10"
  4626. },
  4627. "type": "drupal-module",
  4628. "extra": {
  4629. "drupal": {
  4630. "version": "8.x-1.21",
  4631. "datestamp": "1659086914",
  4632. "security-coverage": {
  4633. "status": "covered",
  4634. "message": "Covered by Drupal's security advisory policy"
  4635. }
  4636. }
  4637. },
  4638. "notification-url": "https://packages.drupal.org/8/downloads",
  4639. "license": [
  4640. "GPL-2.0-or-later"
  4641. ],
  4642. "authors": [
  4643. {
  4644. "name": "-enzo-",
  4645. "homepage": "https://www.drupal.org/user/294937"
  4646. },
  4647. {
  4648. "name": "clemens.tolboom",
  4649. "homepage": "https://www.drupal.org/user/125814"
  4650. },
  4651. {
  4652. "name": "juampynr",
  4653. "homepage": "https://www.drupal.org/user/682736"
  4654. },
  4655. {
  4656. "name": "kamkejj",
  4657. "homepage": "https://www.drupal.org/user/81043"
  4658. },
  4659. {
  4660. "name": "vipin.mittal18",
  4661. "homepage": "https://www.drupal.org/user/319716"
  4662. }
  4663. ],
  4664. "description": "Provides a user interface to manage REST resources.",
  4665. "homepage": "https://www.drupal.org/project/restui",
  4666. "support": {
  4667. "source": "https://git.drupalcode.org/project/restui"
  4668. }
  4669. },
  4670. {
  4671. "name": "drupal/search_api",
  4672. "version": "1.30.0",
  4673. "source": {
  4674. "type": "git",
  4675. "url": "https://git.drupalcode.org/project/search_api.git",
  4676. "reference": "8.x-1.30"
  4677. },
  4678. "dist": {
  4679. "type": "zip",
  4680. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  4681. "reference": "8.x-1.30",
  4682. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  4683. },
  4684. "require": {
  4685. "drupal/core": "^9.3 || ^10.0"
  4686. },
  4687. "conflict": {
  4688. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4689. },
  4690. "require-dev": {
  4691. "drupal/language_fallback_fix": "@dev",
  4692. "drupal/search_api_autocomplete": "@dev",
  4693. "drupal/search_api_db": "*"
  4694. },
  4695. "suggest": {
  4696. "drupal/facets": "Adds the ability to create faceted searches.",
  4697. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4698. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4699. },
  4700. "type": "drupal-module",
  4701. "extra": {
  4702. "drupal": {
  4703. "version": "8.x-1.30",
  4704. "datestamp": "1700925904",
  4705. "security-coverage": {
  4706. "status": "covered",
  4707. "message": "Covered by Drupal's security advisory policy"
  4708. }
  4709. },
  4710. "drush": {
  4711. "services": {
  4712. "drush.services.yml": "^9 || ^10 || ^11"
  4713. }
  4714. }
  4715. },
  4716. "notification-url": "https://packages.drupal.org/8/downloads",
  4717. "license": [
  4718. "GPL-2.0-or-later"
  4719. ],
  4720. "authors": [
  4721. {
  4722. "name": "Thomas Seidl",
  4723. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4724. },
  4725. {
  4726. "name": "Nick Veenhof",
  4727. "homepage": "https://www.drupal.org/u/nick_vh"
  4728. },
  4729. {
  4730. "name": "See other contributors",
  4731. "homepage": "https://www.drupal.org/node/790418/committers"
  4732. }
  4733. ],
  4734. "description": "Provides a generic framework for modules offering search capabilities.",
  4735. "homepage": "https://www.drupal.org/project/search_api",
  4736. "support": {
  4737. "source": "https://git.drupalcode.org/project/search_api",
  4738. "issues": "https://www.drupal.org/project/issues/search_api",
  4739. "irc": "irc://irc.freenode.org/drupal-search-api"
  4740. }
  4741. },
  4742. {
  4743. "name": "drupal/seven",
  4744. "version": "1.0.0",
  4745. "source": {
  4746. "type": "git",
  4747. "url": "https://git.drupalcode.org/project/seven.git",
  4748. "reference": "1.0.0"
  4749. },
  4750. "dist": {
  4751. "type": "zip",
  4752. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4753. "reference": "1.0.0",
  4754. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4755. },
  4756. "require": {
  4757. "drupal/core": "^9 || ^10"
  4758. },
  4759. "type": "drupal-theme",
  4760. "extra": {
  4761. "drupal": {
  4762. "version": "1.0.0",
  4763. "datestamp": "1683652106",
  4764. "security-coverage": {
  4765. "status": "covered",
  4766. "message": "Covered by Drupal's security advisory policy"
  4767. }
  4768. }
  4769. },
  4770. "notification-url": "https://packages.drupal.org/8/downloads",
  4771. "license": [
  4772. "GPL-2.0-or-later"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "bnjmnm",
  4777. "homepage": "https://www.drupal.org/user/2369194"
  4778. },
  4779. {
  4780. "name": "lauriii",
  4781. "homepage": "https://www.drupal.org/user/1078742"
  4782. },
  4783. {
  4784. "name": "mcrittenden",
  4785. "homepage": "https://www.drupal.org/user/420631"
  4786. },
  4787. {
  4788. "name": "mrfelton",
  4789. "homepage": "https://www.drupal.org/user/305669"
  4790. },
  4791. {
  4792. "name": "TravisCarden",
  4793. "homepage": "https://www.drupal.org/user/236758"
  4794. }
  4795. ],
  4796. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4797. "homepage": "https://www.drupal.org/project/seven",
  4798. "support": {
  4799. "source": "https://git.drupalcode.org/project/seven"
  4800. }
  4801. },
  4802. {
  4803. "name": "drupal/simple_sitemap",
  4804. "version": "4.1.9",
  4805. "source": {
  4806. "type": "git",
  4807. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4808. "reference": "4.1.9"
  4809. },
  4810. "dist": {
  4811. "type": "zip",
  4812. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.1.9.zip",
  4813. "reference": "4.1.9",
  4814. "shasum": "d86d90408b334cd7470ea631e3be5acca2103377"
  4815. },
  4816. "require": {
  4817. "drupal/core": "^9.3 || ^10",
  4818. "ext-xmlwriter": "*"
  4819. },
  4820. "type": "drupal-module",
  4821. "extra": {
  4822. "drupal": {
  4823. "version": "4.1.9",
  4824. "datestamp": "1712441608",
  4825. "security-coverage": {
  4826. "status": "covered",
  4827. "message": "Covered by Drupal's security advisory policy"
  4828. }
  4829. },
  4830. "drush": {
  4831. "services": {
  4832. "drush.services.yml": ">=9"
  4833. }
  4834. }
  4835. },
  4836. "notification-url": "https://packages.drupal.org/8/downloads",
  4837. "license": [
  4838. "GPL-2.0-or-later"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "Pawel Ginalski (gbyte)",
  4843. "homepage": "https://www.drupal.org/u/gbyte",
  4844. "email": "contact@gbyte.dev",
  4845. "role": "Maintainer"
  4846. },
  4847. {
  4848. "name": "walkingdexter",
  4849. "homepage": "https://www.drupal.org/user/3251330"
  4850. }
  4851. ],
  4852. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4853. "homepage": "https://drupal.org/project/simple_sitemap",
  4854. "support": {
  4855. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4856. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4857. }
  4858. },
  4859. {
  4860. "name": "drupal/synonyms",
  4861. "version": "2.1.4",
  4862. "source": {
  4863. "type": "git",
  4864. "url": "https://git.drupalcode.org/project/synonyms.git",
  4865. "reference": "2.1.4"
  4866. },
  4867. "dist": {
  4868. "type": "zip",
  4869. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4870. "reference": "2.1.4",
  4871. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4872. },
  4873. "require": {
  4874. "drupal/core": "^9 || ^10 || ^11"
  4875. },
  4876. "require-dev": {
  4877. "drupal/synonyms_list_field": "*"
  4878. },
  4879. "type": "drupal-module",
  4880. "extra": {
  4881. "drupal": {
  4882. "version": "2.1.4",
  4883. "datestamp": "1723069842",
  4884. "security-coverage": {
  4885. "status": "covered",
  4886. "message": "Covered by Drupal's security advisory policy"
  4887. }
  4888. }
  4889. },
  4890. "notification-url": "https://packages.drupal.org/8/downloads",
  4891. "license": [
  4892. "GPL-2.0-or-later"
  4893. ],
  4894. "authors": [
  4895. {
  4896. "name": "Bojan Zivanovic",
  4897. "homepage": "https://www.drupal.org/u/bojanz",
  4898. "role": "Author and D5, D6 and D7 versions developer."
  4899. },
  4900. {
  4901. "name": "Alex Trosenko",
  4902. "homepage": "https://www.drupal.org/u/bucefal91",
  4903. "role": "D7 and D8 versions developer."
  4904. },
  4905. {
  4906. "name": "Duro Arezina",
  4907. "homepage": "https://www.drupal.org/u/devad",
  4908. "role": "D8+ versions maintenance"
  4909. },
  4910. {
  4911. "name": "See other contributors",
  4912. "homepage": "https://www.drupal.org/node/148775/committers"
  4913. }
  4914. ],
  4915. "description": "Provides synonyms feature for all entities.",
  4916. "homepage": "https://www.drupal.org/project/synonyms",
  4917. "support": {
  4918. "source": "https://git.drupalcode.org/project/synonyms",
  4919. "issues": "https://www.drupal.org/project/issues/synonyms"
  4920. }
  4921. },
  4922. {
  4923. "name": "drupal/token",
  4924. "version": "1.15.0",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://git.drupalcode.org/project/token.git",
  4928. "reference": "8.x-1.15"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  4933. "reference": "8.x-1.15",
  4934. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  4935. },
  4936. "require": {
  4937. "drupal/core": "^9.2 || ^10 || ^11"
  4938. },
  4939. "require-dev": {
  4940. "drupal/book": "*"
  4941. },
  4942. "type": "drupal-module",
  4943. "extra": {
  4944. "drupal": {
  4945. "version": "8.x-1.15",
  4946. "datestamp": "1722206211",
  4947. "security-coverage": {
  4948. "status": "covered",
  4949. "message": "Covered by Drupal's security advisory policy"
  4950. }
  4951. },
  4952. "drush": {
  4953. "services": {
  4954. "drush.services.yml": ">=9"
  4955. }
  4956. }
  4957. },
  4958. "notification-url": "https://packages.drupal.org/8/downloads",
  4959. "license": [
  4960. "GPL-2.0-or-later"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "Berdir",
  4965. "homepage": "https://www.drupal.org/user/214652"
  4966. },
  4967. {
  4968. "name": "Dave Reid",
  4969. "homepage": "https://www.drupal.org/user/53892"
  4970. },
  4971. {
  4972. "name": "eaton",
  4973. "homepage": "https://www.drupal.org/user/16496"
  4974. },
  4975. {
  4976. "name": "fago",
  4977. "homepage": "https://www.drupal.org/user/16747"
  4978. },
  4979. {
  4980. "name": "greggles",
  4981. "homepage": "https://www.drupal.org/user/36762"
  4982. },
  4983. {
  4984. "name": "mikeryan",
  4985. "homepage": "https://www.drupal.org/user/4420"
  4986. }
  4987. ],
  4988. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4989. "homepage": "https://www.drupal.org/project/token",
  4990. "support": {
  4991. "source": "https://git.drupalcode.org/project/token"
  4992. }
  4993. },
  4994. {
  4995. "name": "drupal/translation_views",
  4996. "version": "1.0.0-alpha11",
  4997. "source": {
  4998. "type": "git",
  4999. "url": "https://git.drupalcode.org/project/translation_views.git",
  5000. "reference": "8.x-1.0-alpha11"
  5001. },
  5002. "dist": {
  5003. "type": "zip",
  5004. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5005. "reference": "8.x-1.0-alpha11",
  5006. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5007. },
  5008. "require": {
  5009. "drupal/core": "^8.8 || ^9 || ^10"
  5010. },
  5011. "require-dev": {
  5012. "drupal/translators_content": "^1.0@alpha"
  5013. },
  5014. "type": "drupal-module",
  5015. "extra": {
  5016. "drupal": {
  5017. "version": "8.x-1.0-alpha11",
  5018. "datestamp": "1679660668",
  5019. "security-coverage": {
  5020. "status": "not-covered",
  5021. "message": "Project has not opted into security advisory coverage!"
  5022. }
  5023. }
  5024. },
  5025. "notification-url": "https://packages.drupal.org/8/downloads",
  5026. "license": [
  5027. "GPL-2.0-or-later"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "matsbla",
  5032. "homepage": "https://www.drupal.org/user/2325394"
  5033. },
  5034. {
  5035. "name": "vlad.dancer",
  5036. "homepage": "https://www.drupal.org/user/903844"
  5037. }
  5038. ],
  5039. "description": "Create customized lists and queries of translations from your database.",
  5040. "homepage": "https://www.drupal.org/project/translation_views",
  5041. "support": {
  5042. "source": "https://git.drupalcode.org/project/translation_views"
  5043. }
  5044. },
  5045. {
  5046. "name": "drupal/upgrade_status",
  5047. "version": "3.19.0",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5051. "reference": "8.x-3.19"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5056. "reference": "8.x-3.19",
  5057. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5058. },
  5059. "require": {
  5060. "drupal/core": "^8 || ^9",
  5061. "mathieuviossat/arraytotexttable": "~1.0.0",
  5062. "mglaman/phpstan-drupal": "^1.0.0",
  5063. "nikic/php-parser": "^4.0.0",
  5064. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5065. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5066. "webflo/drupal-finder": "^1.2"
  5067. },
  5068. "type": "drupal-module",
  5069. "extra": {
  5070. "drupal": {
  5071. "version": "8.x-3.19",
  5072. "datestamp": "1678815320",
  5073. "security-coverage": {
  5074. "status": "covered",
  5075. "message": "Covered by Drupal's security advisory policy"
  5076. }
  5077. },
  5078. "drush": {
  5079. "services": {
  5080. "drush.services.yml": "^9 || ^10"
  5081. }
  5082. }
  5083. },
  5084. "notification-url": "https://packages.drupal.org/8/downloads",
  5085. "license": [
  5086. "GPL-2.0-or-later"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Gábor Hojtsy",
  5091. "homepage": "https://www.drupal.org/user/4166"
  5092. }
  5093. ],
  5094. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5095. "homepage": "http://drupal.org/project/upgrade_status",
  5096. "support": {
  5097. "source": "https://git.drupalcode.org/project/upgrade_status"
  5098. }
  5099. },
  5100. {
  5101. "name": "drupal/views_bulk_edit",
  5102. "version": "2.9.0",
  5103. "source": {
  5104. "type": "git",
  5105. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5106. "reference": "8.x-2.9"
  5107. },
  5108. "dist": {
  5109. "type": "zip",
  5110. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  5111. "reference": "8.x-2.9",
  5112. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  5113. },
  5114. "require": {
  5115. "drupal/core": "^9.4 || ^10"
  5116. },
  5117. "require-dev": {
  5118. "drupal/views_bulk_operations": "~4.2.4"
  5119. },
  5120. "suggest": {
  5121. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5122. },
  5123. "type": "drupal-module",
  5124. "extra": {
  5125. "drupal": {
  5126. "version": "8.x-2.9",
  5127. "datestamp": "1690222256",
  5128. "security-coverage": {
  5129. "status": "covered",
  5130. "message": "Covered by Drupal's security advisory policy"
  5131. }
  5132. }
  5133. },
  5134. "notification-url": "https://packages.drupal.org/8/downloads",
  5135. "license": [
  5136. "GPL-2.0+"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Marcin Grabias",
  5141. "homepage": "https://www.drupal.org/u/graber"
  5142. },
  5143. {
  5144. "name": "benjy",
  5145. "homepage": "https://www.drupal.org/user/1852732"
  5146. },
  5147. {
  5148. "name": "graber",
  5149. "homepage": "https://www.drupal.org/user/1599440"
  5150. },
  5151. {
  5152. "name": "grevil",
  5153. "homepage": "https://www.drupal.org/user/3668491"
  5154. },
  5155. {
  5156. "name": "joseph.olstad",
  5157. "homepage": "https://www.drupal.org/user/1321830"
  5158. }
  5159. ],
  5160. "description": "Allows bulk edition of entity field values.",
  5161. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5162. "support": {
  5163. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5164. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5165. }
  5166. },
  5167. {
  5168. "name": "drupal/views_bulk_operations",
  5169. "version": "4.2.7",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5173. "reference": "4.2.7"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.7.zip",
  5178. "reference": "4.2.7",
  5179. "shasum": "25c9fa531ac49664a361fdd2202eec0a6e53bc61"
  5180. },
  5181. "require": {
  5182. "drupal/core": "^9.4 || ^10 || ^11",
  5183. "php": ">=7.4.0"
  5184. },
  5185. "require-dev": {
  5186. "drush/drush": "^12"
  5187. },
  5188. "suggest": {
  5189. "drush/drush": "^11 || ^12"
  5190. },
  5191. "type": "drupal-module",
  5192. "extra": {
  5193. "drupal": {
  5194. "version": "4.2.7",
  5195. "datestamp": "1717665214",
  5196. "security-coverage": {
  5197. "status": "covered",
  5198. "message": "Covered by Drupal's security advisory policy"
  5199. }
  5200. },
  5201. "drush": {
  5202. "services": {
  5203. "drush.services.yml": "^10 || ^11"
  5204. }
  5205. }
  5206. },
  5207. "notification-url": "https://packages.drupal.org/8/downloads",
  5208. "license": [
  5209. "GPL-2.0-or-later"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "Marcin Grabias",
  5214. "homepage": "https://www.drupal.org/u/graber"
  5215. },
  5216. {
  5217. "name": "Graber",
  5218. "homepage": "https://www.drupal.org/user/1599440"
  5219. },
  5220. {
  5221. "name": "joelpittet",
  5222. "homepage": "https://www.drupal.org/user/160302"
  5223. }
  5224. ],
  5225. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5226. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5227. "support": {
  5228. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5229. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5230. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5231. }
  5232. },
  5233. {
  5234. "name": "drupal/workflow",
  5235. "version": "1.8.0",
  5236. "source": {
  5237. "type": "git",
  5238. "url": "https://git.drupalcode.org/project/workflow.git",
  5239. "reference": "8.x-1.8"
  5240. },
  5241. "dist": {
  5242. "type": "zip",
  5243. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.8.zip",
  5244. "reference": "8.x-1.8",
  5245. "shasum": "29ae25889eba4920a7e44df8b882a0a1f2e2b172"
  5246. },
  5247. "require": {
  5248. "drupal/core": ">=8.8"
  5249. },
  5250. "type": "drupal-module",
  5251. "extra": {
  5252. "drupal": {
  5253. "version": "8.x-1.8",
  5254. "datestamp": "1717579628",
  5255. "security-coverage": {
  5256. "status": "covered",
  5257. "message": "Covered by Drupal's security advisory policy"
  5258. }
  5259. }
  5260. },
  5261. "notification-url": "https://packages.drupal.org/8/downloads",
  5262. "license": [
  5263. "GPL-2.0-or-later"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Bastlynn",
  5268. "homepage": "https://www.drupal.org/user/275249"
  5269. },
  5270. {
  5271. "name": "eaton",
  5272. "homepage": "https://www.drupal.org/user/16496"
  5273. },
  5274. {
  5275. "name": "Heine",
  5276. "homepage": "https://www.drupal.org/user/17943"
  5277. },
  5278. {
  5279. "name": "JacobSingh",
  5280. "homepage": "https://www.drupal.org/user/68912"
  5281. },
  5282. {
  5283. "name": "johnv",
  5284. "homepage": "https://www.drupal.org/user/591042"
  5285. },
  5286. {
  5287. "name": "jvandyk",
  5288. "homepage": "https://www.drupal.org/user/2375"
  5289. },
  5290. {
  5291. "name": "mfredrickson",
  5292. "homepage": "https://www.drupal.org/user/31994"
  5293. },
  5294. {
  5295. "name": "NancyDru",
  5296. "homepage": "https://www.drupal.org/user/101412"
  5297. },
  5298. {
  5299. "name": "q0rban",
  5300. "homepage": "https://www.drupal.org/user/31022"
  5301. }
  5302. ],
  5303. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5304. "homepage": "https://www.drupal.org/project/workflow",
  5305. "support": {
  5306. "source": "https://git.drupalcode.org/project/workflow"
  5307. }
  5308. },
  5309. {
  5310. "name": "drush/drush",
  5311. "version": "10.6.2",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://github.com/drush-ops/drush.git",
  5315. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5320. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5321. "shasum": ""
  5322. },
  5323. "require": {
  5324. "chi-teck/drupal-code-generator": "^1.32.1",
  5325. "composer/semver": "^1.4 || ^3",
  5326. "consolidation/config": "^1.2",
  5327. "consolidation/filter-via-dot-access-data": "^1",
  5328. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5329. "consolidation/site-alias": "^3.0.0@stable",
  5330. "consolidation/site-process": "^2.1 || ^4",
  5331. "enlightn/security-checker": "^1",
  5332. "ext-dom": "*",
  5333. "grasmash/yaml-expander": "^1.1.1",
  5334. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5335. "league/container": "^2.5 || ^3.4",
  5336. "php": ">=7.1.3",
  5337. "psr/log": "~1.0",
  5338. "psy/psysh": ">=0.6 <0.11",
  5339. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5340. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5341. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5342. "symfony/yaml": "^3.4 || ^4.0",
  5343. "webflo/drupal-finder": "^1.2",
  5344. "webmozart/path-util": "^2.1.0"
  5345. },
  5346. "conflict": {
  5347. "drupal/migrate_run": "*",
  5348. "drupal/migrate_tools": "<= 5"
  5349. },
  5350. "require-dev": {
  5351. "composer/installers": "^1.7",
  5352. "cweagans/composer-patches": "~1.0",
  5353. "david-garcia/phpwhois": "4.3.0",
  5354. "drupal/alinks": "1.0.0",
  5355. "drupal/core-recommended": "^8.8",
  5356. "phpunit/phpunit": ">=7.5.20",
  5357. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5358. "vlucas/phpdotenv": "^2.4",
  5359. "yoast/phpunit-polyfills": "^0.2.0"
  5360. },
  5361. "bin": [
  5362. "drush"
  5363. ],
  5364. "type": "library",
  5365. "extra": {
  5366. "installer-paths": {
  5367. "sut/core": [
  5368. "type:drupal-core"
  5369. ],
  5370. "sut/libraries/{$name}": [
  5371. "type:drupal-library"
  5372. ],
  5373. "sut/modules/unish/{$name}": [
  5374. "drupal/devel"
  5375. ],
  5376. "sut/themes/unish/{$name}": [
  5377. "drupal/empty_theme"
  5378. ],
  5379. "sut/modules/contrib/{$name}": [
  5380. "type:drupal-module"
  5381. ],
  5382. "sut/profiles/contrib/{$name}": [
  5383. "type:drupal-profile"
  5384. ],
  5385. "sut/themes/contrib/{$name}": [
  5386. "type:drupal-theme"
  5387. ],
  5388. "sut/drush/contrib/{$name}": [
  5389. "type:drupal-drush"
  5390. ]
  5391. }
  5392. },
  5393. "autoload": {
  5394. "psr-4": {
  5395. "Drush\\": "src/",
  5396. "Drush\\Internal\\": "src/internal-forks"
  5397. }
  5398. },
  5399. "notification-url": "https://packagist.org/downloads/",
  5400. "license": [
  5401. "GPL-2.0-or-later"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "Moshe Weitzman",
  5406. "email": "weitzman@tejasa.com"
  5407. },
  5408. {
  5409. "name": "Owen Barton",
  5410. "email": "drupal@owenbarton.com"
  5411. },
  5412. {
  5413. "name": "Greg Anderson",
  5414. "email": "greg.1.anderson@greenknowe.org"
  5415. },
  5416. {
  5417. "name": "Jonathan Araña Cruz",
  5418. "email": "jonhattan@faita.net"
  5419. },
  5420. {
  5421. "name": "Jonathan Hedstrom",
  5422. "email": "jhedstrom@gmail.com"
  5423. },
  5424. {
  5425. "name": "Christopher Gervais",
  5426. "email": "chris@ergonlogic.com"
  5427. },
  5428. {
  5429. "name": "Dave Reid",
  5430. "email": "dave@davereid.net"
  5431. },
  5432. {
  5433. "name": "Damian Lee",
  5434. "email": "damiankloip@googlemail.com"
  5435. }
  5436. ],
  5437. "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.",
  5438. "homepage": "http://www.drush.org",
  5439. "support": {
  5440. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5441. "irc": "irc://irc.freenode.org/drush",
  5442. "issues": "https://github.com/drush-ops/drush/issues",
  5443. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5444. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5445. },
  5446. "funding": [
  5447. {
  5448. "url": "https://github.com/weitzman",
  5449. "type": "github"
  5450. }
  5451. ],
  5452. "time": "2021-12-15T17:09:54+00:00"
  5453. },
  5454. {
  5455. "name": "egulias/email-validator",
  5456. "version": "3.2.6",
  5457. "source": {
  5458. "type": "git",
  5459. "url": "https://github.com/egulias/EmailValidator.git",
  5460. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  5461. },
  5462. "dist": {
  5463. "type": "zip",
  5464. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5465. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5466. "shasum": ""
  5467. },
  5468. "require": {
  5469. "doctrine/lexer": "^1.2|^2",
  5470. "php": ">=7.2",
  5471. "symfony/polyfill-intl-idn": "^1.15"
  5472. },
  5473. "require-dev": {
  5474. "phpunit/phpunit": "^8.5.8|^9.3.3",
  5475. "vimeo/psalm": "^4"
  5476. },
  5477. "suggest": {
  5478. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5479. },
  5480. "type": "library",
  5481. "extra": {
  5482. "branch-alias": {
  5483. "dev-master": "3.0.x-dev"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "psr-4": {
  5488. "Egulias\\EmailValidator\\": "src"
  5489. }
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Eduardo Gulias Davis"
  5498. }
  5499. ],
  5500. "description": "A library for validating emails against several RFCs",
  5501. "homepage": "https://github.com/egulias/EmailValidator",
  5502. "keywords": [
  5503. "email",
  5504. "emailvalidation",
  5505. "emailvalidator",
  5506. "validation",
  5507. "validator"
  5508. ],
  5509. "support": {
  5510. "issues": "https://github.com/egulias/EmailValidator/issues",
  5511. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  5512. },
  5513. "funding": [
  5514. {
  5515. "url": "https://github.com/egulias",
  5516. "type": "github"
  5517. }
  5518. ],
  5519. "time": "2023-06-01T07:04:22+00:00"
  5520. },
  5521. {
  5522. "name": "enlightn/security-checker",
  5523. "version": "v1.11.0",
  5524. "source": {
  5525. "type": "git",
  5526. "url": "https://github.com/enlightn/security-checker.git",
  5527. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5528. },
  5529. "dist": {
  5530. "type": "zip",
  5531. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5532. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5533. "shasum": ""
  5534. },
  5535. "require": {
  5536. "ext-json": "*",
  5537. "guzzlehttp/guzzle": "^6.3|^7.0",
  5538. "php": ">=5.6",
  5539. "symfony/console": "^3.4|^4|^5|^6|^7",
  5540. "symfony/finder": "^3|^4|^5|^6|^7",
  5541. "symfony/process": "^3.4|^4|^5|^6|^7",
  5542. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  5543. },
  5544. "require-dev": {
  5545. "ext-zip": "*",
  5546. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  5547. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  5548. },
  5549. "bin": [
  5550. "security-checker"
  5551. ],
  5552. "type": "library",
  5553. "autoload": {
  5554. "psr-4": {
  5555. "Enlightn\\SecurityChecker\\": "src"
  5556. }
  5557. },
  5558. "notification-url": "https://packagist.org/downloads/",
  5559. "license": [
  5560. "MIT"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "Paras Malhotra",
  5565. "email": "paras@laravel-enlightn.com"
  5566. },
  5567. {
  5568. "name": "Miguel Piedrafita",
  5569. "email": "soy@miguelpiedrafita.com"
  5570. }
  5571. ],
  5572. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  5573. "keywords": [
  5574. "package",
  5575. "php",
  5576. "scanner",
  5577. "security",
  5578. "security advisories",
  5579. "vulnerability scanner"
  5580. ],
  5581. "support": {
  5582. "issues": "https://github.com/enlightn/security-checker/issues",
  5583. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  5584. },
  5585. "time": "2023-11-17T07:53:29+00:00"
  5586. },
  5587. {
  5588. "name": "grasmash/expander",
  5589. "version": "1.0.0",
  5590. "source": {
  5591. "type": "git",
  5592. "url": "https://github.com/grasmash/expander.git",
  5593. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5594. },
  5595. "dist": {
  5596. "type": "zip",
  5597. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5598. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5599. "shasum": ""
  5600. },
  5601. "require": {
  5602. "dflydev/dot-access-data": "^1.1.0",
  5603. "php": ">=5.4"
  5604. },
  5605. "require-dev": {
  5606. "greg-1-anderson/composer-test-scenarios": "^1",
  5607. "phpunit/phpunit": "^4|^5.5.4",
  5608. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5609. "squizlabs/php_codesniffer": "^2.7"
  5610. },
  5611. "type": "library",
  5612. "extra": {
  5613. "branch-alias": {
  5614. "dev-master": "1.x-dev"
  5615. }
  5616. },
  5617. "autoload": {
  5618. "psr-4": {
  5619. "Grasmash\\Expander\\": "src/"
  5620. }
  5621. },
  5622. "notification-url": "https://packagist.org/downloads/",
  5623. "license": [
  5624. "MIT"
  5625. ],
  5626. "authors": [
  5627. {
  5628. "name": "Matthew Grasmick"
  5629. }
  5630. ],
  5631. "description": "Expands internal property references in PHP arrays file.",
  5632. "support": {
  5633. "issues": "https://github.com/grasmash/expander/issues",
  5634. "source": "https://github.com/grasmash/expander/tree/master"
  5635. },
  5636. "time": "2017-12-21T22:14:55+00:00"
  5637. },
  5638. {
  5639. "name": "grasmash/yaml-expander",
  5640. "version": "1.4.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/grasmash/yaml-expander.git",
  5644. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5649. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "dflydev/dot-access-data": "^1.1.0",
  5654. "php": ">=5.4",
  5655. "symfony/yaml": "^2.8.11|^3|^4"
  5656. },
  5657. "require-dev": {
  5658. "greg-1-anderson/composer-test-scenarios": "^1",
  5659. "phpunit/phpunit": "^4.8|^5.5.4",
  5660. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5661. "squizlabs/php_codesniffer": "^2.7"
  5662. },
  5663. "type": "library",
  5664. "extra": {
  5665. "branch-alias": {
  5666. "dev-master": "1.x-dev"
  5667. }
  5668. },
  5669. "autoload": {
  5670. "psr-4": {
  5671. "Grasmash\\YamlExpander\\": "src/"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Matthew Grasmick"
  5681. }
  5682. ],
  5683. "description": "Expands internal property references in a yaml file.",
  5684. "support": {
  5685. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5686. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5687. },
  5688. "time": "2017-12-16T16:06:03+00:00"
  5689. },
  5690. {
  5691. "name": "guzzlehttp/guzzle",
  5692. "version": "6.5.8",
  5693. "source": {
  5694. "type": "git",
  5695. "url": "https://github.com/guzzle/guzzle.git",
  5696. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  5697. },
  5698. "dist": {
  5699. "type": "zip",
  5700. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  5701. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  5702. "shasum": ""
  5703. },
  5704. "require": {
  5705. "ext-json": "*",
  5706. "guzzlehttp/promises": "^1.0",
  5707. "guzzlehttp/psr7": "^1.9",
  5708. "php": ">=5.5",
  5709. "symfony/polyfill-intl-idn": "^1.17"
  5710. },
  5711. "require-dev": {
  5712. "ext-curl": "*",
  5713. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5714. "psr/log": "^1.1"
  5715. },
  5716. "suggest": {
  5717. "psr/log": "Required for using the Log middleware"
  5718. },
  5719. "type": "library",
  5720. "extra": {
  5721. "branch-alias": {
  5722. "dev-master": "6.5-dev"
  5723. }
  5724. },
  5725. "autoload": {
  5726. "files": [
  5727. "src/functions_include.php"
  5728. ],
  5729. "psr-4": {
  5730. "GuzzleHttp\\": "src/"
  5731. }
  5732. },
  5733. "notification-url": "https://packagist.org/downloads/",
  5734. "license": [
  5735. "MIT"
  5736. ],
  5737. "authors": [
  5738. {
  5739. "name": "Graham Campbell",
  5740. "email": "hello@gjcampbell.co.uk",
  5741. "homepage": "https://github.com/GrahamCampbell"
  5742. },
  5743. {
  5744. "name": "Michael Dowling",
  5745. "email": "mtdowling@gmail.com",
  5746. "homepage": "https://github.com/mtdowling"
  5747. },
  5748. {
  5749. "name": "Jeremy Lindblom",
  5750. "email": "jeremeamia@gmail.com",
  5751. "homepage": "https://github.com/jeremeamia"
  5752. },
  5753. {
  5754. "name": "George Mponos",
  5755. "email": "gmponos@gmail.com",
  5756. "homepage": "https://github.com/gmponos"
  5757. },
  5758. {
  5759. "name": "Tobias Nyholm",
  5760. "email": "tobias.nyholm@gmail.com",
  5761. "homepage": "https://github.com/Nyholm"
  5762. },
  5763. {
  5764. "name": "Márk Sági-Kazár",
  5765. "email": "mark.sagikazar@gmail.com",
  5766. "homepage": "https://github.com/sagikazarmark"
  5767. },
  5768. {
  5769. "name": "Tobias Schultze",
  5770. "email": "webmaster@tubo-world.de",
  5771. "homepage": "https://github.com/Tobion"
  5772. }
  5773. ],
  5774. "description": "Guzzle is a PHP HTTP client library",
  5775. "homepage": "http://guzzlephp.org/",
  5776. "keywords": [
  5777. "client",
  5778. "curl",
  5779. "framework",
  5780. "http",
  5781. "http client",
  5782. "rest",
  5783. "web service"
  5784. ],
  5785. "support": {
  5786. "issues": "https://github.com/guzzle/guzzle/issues",
  5787. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  5788. },
  5789. "funding": [
  5790. {
  5791. "url": "https://github.com/GrahamCampbell",
  5792. "type": "github"
  5793. },
  5794. {
  5795. "url": "https://github.com/Nyholm",
  5796. "type": "github"
  5797. },
  5798. {
  5799. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5800. "type": "tidelift"
  5801. }
  5802. ],
  5803. "time": "2022-06-20T22:16:07+00:00"
  5804. },
  5805. {
  5806. "name": "guzzlehttp/promises",
  5807. "version": "1.5.3",
  5808. "source": {
  5809. "type": "git",
  5810. "url": "https://github.com/guzzle/promises.git",
  5811. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  5812. },
  5813. "dist": {
  5814. "type": "zip",
  5815. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5816. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  5817. "shasum": ""
  5818. },
  5819. "require": {
  5820. "php": ">=5.5"
  5821. },
  5822. "require-dev": {
  5823. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  5824. },
  5825. "type": "library",
  5826. "autoload": {
  5827. "files": [
  5828. "src/functions_include.php"
  5829. ],
  5830. "psr-4": {
  5831. "GuzzleHttp\\Promise\\": "src/"
  5832. }
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "MIT"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Graham Campbell",
  5841. "email": "hello@gjcampbell.co.uk",
  5842. "homepage": "https://github.com/GrahamCampbell"
  5843. },
  5844. {
  5845. "name": "Michael Dowling",
  5846. "email": "mtdowling@gmail.com",
  5847. "homepage": "https://github.com/mtdowling"
  5848. },
  5849. {
  5850. "name": "Tobias Nyholm",
  5851. "email": "tobias.nyholm@gmail.com",
  5852. "homepage": "https://github.com/Nyholm"
  5853. },
  5854. {
  5855. "name": "Tobias Schultze",
  5856. "email": "webmaster@tubo-world.de",
  5857. "homepage": "https://github.com/Tobion"
  5858. }
  5859. ],
  5860. "description": "Guzzle promises library",
  5861. "keywords": [
  5862. "promise"
  5863. ],
  5864. "support": {
  5865. "issues": "https://github.com/guzzle/promises/issues",
  5866. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  5867. },
  5868. "funding": [
  5869. {
  5870. "url": "https://github.com/GrahamCampbell",
  5871. "type": "github"
  5872. },
  5873. {
  5874. "url": "https://github.com/Nyholm",
  5875. "type": "github"
  5876. },
  5877. {
  5878. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5879. "type": "tidelift"
  5880. }
  5881. ],
  5882. "time": "2023-05-21T12:31:43+00:00"
  5883. },
  5884. {
  5885. "name": "guzzlehttp/psr7",
  5886. "version": "1.9.1",
  5887. "source": {
  5888. "type": "git",
  5889. "url": "https://github.com/guzzle/psr7.git",
  5890. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  5891. },
  5892. "dist": {
  5893. "type": "zip",
  5894. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  5895. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  5896. "shasum": ""
  5897. },
  5898. "require": {
  5899. "php": ">=5.4.0",
  5900. "psr/http-message": "~1.0",
  5901. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  5902. },
  5903. "provide": {
  5904. "psr/http-message-implementation": "1.0"
  5905. },
  5906. "require-dev": {
  5907. "ext-zlib": "*",
  5908. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  5909. },
  5910. "suggest": {
  5911. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5912. },
  5913. "type": "library",
  5914. "autoload": {
  5915. "files": [
  5916. "src/functions_include.php"
  5917. ],
  5918. "psr-4": {
  5919. "GuzzleHttp\\Psr7\\": "src/"
  5920. }
  5921. },
  5922. "notification-url": "https://packagist.org/downloads/",
  5923. "license": [
  5924. "MIT"
  5925. ],
  5926. "authors": [
  5927. {
  5928. "name": "Graham Campbell",
  5929. "email": "hello@gjcampbell.co.uk",
  5930. "homepage": "https://github.com/GrahamCampbell"
  5931. },
  5932. {
  5933. "name": "Michael Dowling",
  5934. "email": "mtdowling@gmail.com",
  5935. "homepage": "https://github.com/mtdowling"
  5936. },
  5937. {
  5938. "name": "George Mponos",
  5939. "email": "gmponos@gmail.com",
  5940. "homepage": "https://github.com/gmponos"
  5941. },
  5942. {
  5943. "name": "Tobias Nyholm",
  5944. "email": "tobias.nyholm@gmail.com",
  5945. "homepage": "https://github.com/Nyholm"
  5946. },
  5947. {
  5948. "name": "Márk Sági-Kazár",
  5949. "email": "mark.sagikazar@gmail.com",
  5950. "homepage": "https://github.com/sagikazarmark"
  5951. },
  5952. {
  5953. "name": "Tobias Schultze",
  5954. "email": "webmaster@tubo-world.de",
  5955. "homepage": "https://github.com/Tobion"
  5956. }
  5957. ],
  5958. "description": "PSR-7 message implementation that also provides common utility methods",
  5959. "keywords": [
  5960. "http",
  5961. "message",
  5962. "psr-7",
  5963. "request",
  5964. "response",
  5965. "stream",
  5966. "uri",
  5967. "url"
  5968. ],
  5969. "support": {
  5970. "issues": "https://github.com/guzzle/psr7/issues",
  5971. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  5972. },
  5973. "funding": [
  5974. {
  5975. "url": "https://github.com/GrahamCampbell",
  5976. "type": "github"
  5977. },
  5978. {
  5979. "url": "https://github.com/Nyholm",
  5980. "type": "github"
  5981. },
  5982. {
  5983. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5984. "type": "tidelift"
  5985. }
  5986. ],
  5987. "time": "2023-04-17T16:00:37+00:00"
  5988. },
  5989. {
  5990. "name": "kint-php/kint",
  5991. "version": "5.1.1",
  5992. "source": {
  5993. "type": "git",
  5994. "url": "https://github.com/kint-php/kint.git",
  5995. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5996. },
  5997. "dist": {
  5998. "type": "zip",
  5999. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6000. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6001. "shasum": ""
  6002. },
  6003. "require": {
  6004. "php": ">=7.1"
  6005. },
  6006. "require-dev": {
  6007. "friendsofphp/php-cs-fixer": "^3",
  6008. "phpspec/prophecy-phpunit": "^2",
  6009. "phpunit/phpunit": "^9",
  6010. "seld/phar-utils": "^1",
  6011. "symfony/finder": ">=4.0",
  6012. "vimeo/psalm": "^5"
  6013. },
  6014. "suggest": {
  6015. "kint-php/kint-helpers": "Provides extra helper functions",
  6016. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6017. },
  6018. "type": "library",
  6019. "autoload": {
  6020. "files": [
  6021. "init.php"
  6022. ],
  6023. "psr-4": {
  6024. "Kint\\": "src/"
  6025. }
  6026. },
  6027. "notification-url": "https://packagist.org/downloads/",
  6028. "license": [
  6029. "MIT"
  6030. ],
  6031. "authors": [
  6032. {
  6033. "name": "Jonathan Vollebregt",
  6034. "homepage": "https://github.com/jnvsor"
  6035. },
  6036. {
  6037. "name": "Contributors",
  6038. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6039. }
  6040. ],
  6041. "description": "Kint - debugging tool for PHP developers",
  6042. "homepage": "https://kint-php.github.io/kint/",
  6043. "keywords": [
  6044. "debug",
  6045. "kint",
  6046. "php"
  6047. ],
  6048. "support": {
  6049. "issues": "https://github.com/kint-php/kint/issues",
  6050. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6051. },
  6052. "time": "2024-04-26T14:20:09+00:00"
  6053. },
  6054. {
  6055. "name": "laminas/laminas-escaper",
  6056. "version": "2.13.0",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://github.com/laminas/laminas-escaper.git",
  6060. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6065. "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba",
  6066. "shasum": ""
  6067. },
  6068. "require": {
  6069. "ext-ctype": "*",
  6070. "ext-mbstring": "*",
  6071. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6072. },
  6073. "conflict": {
  6074. "zendframework/zend-escaper": "*"
  6075. },
  6076. "require-dev": {
  6077. "infection/infection": "^0.27.0",
  6078. "laminas/laminas-coding-standard": "~2.5.0",
  6079. "maglnet/composer-require-checker": "^3.8.0",
  6080. "phpunit/phpunit": "^9.6.7",
  6081. "psalm/plugin-phpunit": "^0.18.4",
  6082. "vimeo/psalm": "^5.9"
  6083. },
  6084. "type": "library",
  6085. "autoload": {
  6086. "psr-4": {
  6087. "Laminas\\Escaper\\": "src/"
  6088. }
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "BSD-3-Clause"
  6093. ],
  6094. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6095. "homepage": "https://laminas.dev",
  6096. "keywords": [
  6097. "escaper",
  6098. "laminas"
  6099. ],
  6100. "support": {
  6101. "chat": "https://laminas.dev/chat",
  6102. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6103. "forum": "https://discourse.laminas.dev",
  6104. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6105. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6106. "source": "https://github.com/laminas/laminas-escaper"
  6107. },
  6108. "funding": [
  6109. {
  6110. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6111. "type": "community_bridge"
  6112. }
  6113. ],
  6114. "time": "2023-10-10T08:35:13+00:00"
  6115. },
  6116. {
  6117. "name": "laminas/laminas-feed",
  6118. "version": "2.22.0",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/laminas/laminas-feed.git",
  6122. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141",
  6127. "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "ext-dom": "*",
  6132. "ext-libxml": "*",
  6133. "laminas/laminas-escaper": "^2.9",
  6134. "laminas/laminas-stdlib": "^3.6",
  6135. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6136. },
  6137. "conflict": {
  6138. "laminas/laminas-servicemanager": "<3.3",
  6139. "zendframework/zend-feed": "*"
  6140. },
  6141. "require-dev": {
  6142. "laminas/laminas-cache": "^2.13.2 || ^3.11",
  6143. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2",
  6144. "laminas/laminas-coding-standard": "~2.5.0",
  6145. "laminas/laminas-db": "^2.18",
  6146. "laminas/laminas-http": "^2.18",
  6147. "laminas/laminas-servicemanager": "^3.21.0",
  6148. "laminas/laminas-validator": "^2.38",
  6149. "phpunit/phpunit": "^10.3.1",
  6150. "psalm/plugin-phpunit": "^0.18.4",
  6151. "psr/http-message": "^2.0",
  6152. "vimeo/psalm": "^5.14.1"
  6153. },
  6154. "suggest": {
  6155. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6156. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6157. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6158. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6159. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6160. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6161. },
  6162. "type": "library",
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Laminas\\Feed\\": "src/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "BSD-3-Clause"
  6171. ],
  6172. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  6173. "homepage": "https://laminas.dev",
  6174. "keywords": [
  6175. "atom",
  6176. "feed",
  6177. "laminas",
  6178. "rss"
  6179. ],
  6180. "support": {
  6181. "chat": "https://laminas.dev/chat",
  6182. "docs": "https://docs.laminas.dev/laminas-feed/",
  6183. "forum": "https://discourse.laminas.dev",
  6184. "issues": "https://github.com/laminas/laminas-feed/issues",
  6185. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6186. "source": "https://github.com/laminas/laminas-feed"
  6187. },
  6188. "funding": [
  6189. {
  6190. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6191. "type": "community_bridge"
  6192. }
  6193. ],
  6194. "time": "2023-10-11T20:16:37+00:00"
  6195. },
  6196. {
  6197. "name": "laminas/laminas-servicemanager",
  6198. "version": "3.22.1",
  6199. "source": {
  6200. "type": "git",
  6201. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6202. "reference": "de98d297d4743956a0558a6d71616979ff779328"
  6203. },
  6204. "dist": {
  6205. "type": "zip",
  6206. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/de98d297d4743956a0558a6d71616979ff779328",
  6207. "reference": "de98d297d4743956a0558a6d71616979ff779328",
  6208. "shasum": ""
  6209. },
  6210. "require": {
  6211. "laminas/laminas-stdlib": "^3.17",
  6212. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  6213. "psr/container": "^1.0"
  6214. },
  6215. "conflict": {
  6216. "ext-psr": "*",
  6217. "laminas/laminas-code": "<4.10.0",
  6218. "zendframework/zend-code": "<3.3.1",
  6219. "zendframework/zend-servicemanager": "*"
  6220. },
  6221. "provide": {
  6222. "psr/container-implementation": "^1.0"
  6223. },
  6224. "replace": {
  6225. "container-interop/container-interop": "^1.2.0"
  6226. },
  6227. "require-dev": {
  6228. "composer/package-versions-deprecated": "^1.11.99.5",
  6229. "friendsofphp/proxy-manager-lts": "^1.0.14",
  6230. "laminas/laminas-code": "^4.10.0",
  6231. "laminas/laminas-coding-standard": "~2.5.0",
  6232. "laminas/laminas-container-config-test": "^0.8",
  6233. "mikey179/vfsstream": "^1.6.11",
  6234. "phpbench/phpbench": "^1.2.9",
  6235. "phpunit/phpunit": "^10.4",
  6236. "psalm/plugin-phpunit": "^0.18.4",
  6237. "vimeo/psalm": "^5.8.0"
  6238. },
  6239. "suggest": {
  6240. "friendsofphp/proxy-manager-lts": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6241. },
  6242. "bin": [
  6243. "bin/generate-deps-for-config-factory",
  6244. "bin/generate-factory-for-class"
  6245. ],
  6246. "type": "library",
  6247. "autoload": {
  6248. "files": [
  6249. "src/autoload.php"
  6250. ],
  6251. "psr-4": {
  6252. "Laminas\\ServiceManager\\": "src/"
  6253. }
  6254. },
  6255. "notification-url": "https://packagist.org/downloads/",
  6256. "license": [
  6257. "BSD-3-Clause"
  6258. ],
  6259. "description": "Factory-Driven Dependency Injection Container",
  6260. "homepage": "https://laminas.dev",
  6261. "keywords": [
  6262. "PSR-11",
  6263. "dependency-injection",
  6264. "di",
  6265. "dic",
  6266. "laminas",
  6267. "service-manager",
  6268. "servicemanager"
  6269. ],
  6270. "support": {
  6271. "chat": "https://laminas.dev/chat",
  6272. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6273. "forum": "https://discourse.laminas.dev",
  6274. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6275. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6276. "source": "https://github.com/laminas/laminas-servicemanager"
  6277. },
  6278. "funding": [
  6279. {
  6280. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6281. "type": "community_bridge"
  6282. }
  6283. ],
  6284. "time": "2023-10-24T11:19:47+00:00"
  6285. },
  6286. {
  6287. "name": "laminas/laminas-stdlib",
  6288. "version": "3.19.0",
  6289. "source": {
  6290. "type": "git",
  6291. "url": "https://github.com/laminas/laminas-stdlib.git",
  6292. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  6293. },
  6294. "dist": {
  6295. "type": "zip",
  6296. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  6297. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  6298. "shasum": ""
  6299. },
  6300. "require": {
  6301. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6302. },
  6303. "conflict": {
  6304. "zendframework/zend-stdlib": "*"
  6305. },
  6306. "require-dev": {
  6307. "laminas/laminas-coding-standard": "^2.5",
  6308. "phpbench/phpbench": "^1.2.15",
  6309. "phpunit/phpunit": "^10.5.8",
  6310. "psalm/plugin-phpunit": "^0.18.4",
  6311. "vimeo/psalm": "^5.20.0"
  6312. },
  6313. "type": "library",
  6314. "autoload": {
  6315. "psr-4": {
  6316. "Laminas\\Stdlib\\": "src/"
  6317. }
  6318. },
  6319. "notification-url": "https://packagist.org/downloads/",
  6320. "license": [
  6321. "BSD-3-Clause"
  6322. ],
  6323. "description": "SPL extensions, array utilities, error handlers, and more",
  6324. "homepage": "https://laminas.dev",
  6325. "keywords": [
  6326. "laminas",
  6327. "stdlib"
  6328. ],
  6329. "support": {
  6330. "chat": "https://laminas.dev/chat",
  6331. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6332. "forum": "https://discourse.laminas.dev",
  6333. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6334. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6335. "source": "https://github.com/laminas/laminas-stdlib"
  6336. },
  6337. "funding": [
  6338. {
  6339. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6340. "type": "community_bridge"
  6341. }
  6342. ],
  6343. "time": "2024-01-19T12:39:49+00:00"
  6344. },
  6345. {
  6346. "name": "laminas/laminas-text",
  6347. "version": "2.11.0",
  6348. "source": {
  6349. "type": "git",
  6350. "url": "https://github.com/laminas/laminas-text.git",
  6351. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7"
  6352. },
  6353. "dist": {
  6354. "type": "zip",
  6355. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6356. "reference": "d799f3ccb3547e9e6ab313447138bae7009c7cc7",
  6357. "shasum": ""
  6358. },
  6359. "require": {
  6360. "laminas/laminas-servicemanager": "^3.22.0",
  6361. "laminas/laminas-stdlib": "^3.7.1",
  6362. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  6363. },
  6364. "conflict": {
  6365. "zendframework/zend-text": "*"
  6366. },
  6367. "require-dev": {
  6368. "laminas/laminas-coding-standard": "~2.5.0",
  6369. "phpunit/phpunit": "^9.5",
  6370. "psalm/plugin-phpunit": "^0.18.4",
  6371. "vimeo/psalm": "^5.1"
  6372. },
  6373. "type": "library",
  6374. "autoload": {
  6375. "psr-4": {
  6376. "Laminas\\Text\\": "src/"
  6377. }
  6378. },
  6379. "notification-url": "https://packagist.org/downloads/",
  6380. "license": [
  6381. "BSD-3-Clause"
  6382. ],
  6383. "description": "Create FIGlets and text-based tables",
  6384. "homepage": "https://laminas.dev",
  6385. "keywords": [
  6386. "laminas",
  6387. "text"
  6388. ],
  6389. "support": {
  6390. "chat": "https://laminas.dev/chat",
  6391. "docs": "https://docs.laminas.dev/laminas-text/",
  6392. "forum": "https://discourse.laminas.dev",
  6393. "issues": "https://github.com/laminas/laminas-text/issues",
  6394. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6395. "source": "https://github.com/laminas/laminas-text"
  6396. },
  6397. "funding": [
  6398. {
  6399. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6400. "type": "community_bridge"
  6401. }
  6402. ],
  6403. "time": "2023-11-07T16:45:45+00:00"
  6404. },
  6405. {
  6406. "name": "league/container",
  6407. "version": "2.5.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/thephpleague/container.git",
  6411. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6416. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "container-interop/container-interop": "^1.2",
  6421. "php": "^5.4 || ^7.0 || ^8.0"
  6422. },
  6423. "provide": {
  6424. "container-interop/container-interop-implementation": "^1.2",
  6425. "psr/container-implementation": "^1.0"
  6426. },
  6427. "replace": {
  6428. "orno/di": "~2.0"
  6429. },
  6430. "require-dev": {
  6431. "phpunit/phpunit": "^4.8.36",
  6432. "scrutinizer/ocular": "^1.3",
  6433. "squizlabs/php_codesniffer": "^3.5"
  6434. },
  6435. "type": "library",
  6436. "extra": {
  6437. "branch-alias": {
  6438. "dev-2.x": "2.x-dev",
  6439. "dev-1.x": "1.x-dev"
  6440. }
  6441. },
  6442. "autoload": {
  6443. "psr-4": {
  6444. "League\\Container\\": "src"
  6445. }
  6446. },
  6447. "notification-url": "https://packagist.org/downloads/",
  6448. "license": [
  6449. "MIT"
  6450. ],
  6451. "authors": [
  6452. {
  6453. "name": "Phil Bennett",
  6454. "email": "philipobenito@gmail.com",
  6455. "homepage": "http://www.philipobenito.com",
  6456. "role": "Developer"
  6457. }
  6458. ],
  6459. "description": "A fast and intuitive dependency injection container.",
  6460. "homepage": "https://github.com/thephpleague/container",
  6461. "keywords": [
  6462. "container",
  6463. "dependency",
  6464. "di",
  6465. "injection",
  6466. "league",
  6467. "provider",
  6468. "service"
  6469. ],
  6470. "support": {
  6471. "issues": "https://github.com/thephpleague/container/issues",
  6472. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://github.com/philipobenito",
  6477. "type": "github"
  6478. }
  6479. ],
  6480. "time": "2021-02-22T09:20:06+00:00"
  6481. },
  6482. {
  6483. "name": "longwave/laminas-diactoros",
  6484. "version": "2.14.3",
  6485. "source": {
  6486. "type": "git",
  6487. "url": "https://github.com/longwave/laminas-diactoros.git",
  6488. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  6489. },
  6490. "dist": {
  6491. "type": "zip",
  6492. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6493. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6494. "shasum": ""
  6495. },
  6496. "require": {
  6497. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  6498. "psr/http-factory": "^1.0",
  6499. "psr/http-message": "^1.0"
  6500. },
  6501. "conflict": {
  6502. "phpspec/prophecy": "<1.9.0",
  6503. "zendframework/zend-diactoros": "*"
  6504. },
  6505. "provide": {
  6506. "psr/http-factory-implementation": "1.0",
  6507. "psr/http-message-implementation": "1.0"
  6508. },
  6509. "replace": {
  6510. "laminas/laminas-diactoros": "2.18.1"
  6511. },
  6512. "require-dev": {
  6513. "ext-curl": "*",
  6514. "ext-dom": "*",
  6515. "ext-gd": "*",
  6516. "ext-libxml": "*",
  6517. "http-interop/http-factory-tests": "^0.9.0",
  6518. "laminas/laminas-coding-standard": "~2.3.0",
  6519. "php-http/psr7-integration-tests": "^1.1.1",
  6520. "phpspec/prophecy-phpunit": "^2.0",
  6521. "phpunit/phpunit": "^9.5",
  6522. "psalm/plugin-phpunit": "^0.17.0",
  6523. "vimeo/psalm": "^4.24.0"
  6524. },
  6525. "type": "library",
  6526. "extra": {
  6527. "laminas": {
  6528. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6529. "module": "Laminas\\Diactoros"
  6530. }
  6531. },
  6532. "autoload": {
  6533. "files": [
  6534. "src/functions/create_uploaded_file.php",
  6535. "src/functions/marshal_headers_from_sapi.php",
  6536. "src/functions/marshal_method_from_sapi.php",
  6537. "src/functions/marshal_protocol_version_from_sapi.php",
  6538. "src/functions/marshal_uri_from_sapi.php",
  6539. "src/functions/normalize_server.php",
  6540. "src/functions/normalize_uploaded_files.php",
  6541. "src/functions/parse_cookie_header.php",
  6542. "src/functions/create_uploaded_file.legacy.php",
  6543. "src/functions/marshal_headers_from_sapi.legacy.php",
  6544. "src/functions/marshal_method_from_sapi.legacy.php",
  6545. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6546. "src/functions/marshal_uri_from_sapi.legacy.php",
  6547. "src/functions/normalize_server.legacy.php",
  6548. "src/functions/normalize_uploaded_files.legacy.php",
  6549. "src/functions/parse_cookie_header.legacy.php"
  6550. ],
  6551. "psr-4": {
  6552. "Laminas\\Diactoros\\": "src/"
  6553. }
  6554. },
  6555. "notification-url": "https://packagist.org/downloads/",
  6556. "license": [
  6557. "BSD-3-Clause"
  6558. ],
  6559. "description": "PSR HTTP Message implementations",
  6560. "homepage": "https://laminas.dev",
  6561. "keywords": [
  6562. "http",
  6563. "laminas",
  6564. "psr",
  6565. "psr-17",
  6566. "psr-7"
  6567. ],
  6568. "support": {
  6569. "chat": "https://laminas.dev/chat",
  6570. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6571. "forum": "https://discourse.laminas.dev",
  6572. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6573. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6574. "source": "https://github.com/laminas/laminas-diactoros"
  6575. },
  6576. "time": "2024-09-11T14:26:18+00:00"
  6577. },
  6578. {
  6579. "name": "masterminds/html5",
  6580. "version": "2.7.6",
  6581. "source": {
  6582. "type": "git",
  6583. "url": "https://github.com/Masterminds/html5-php.git",
  6584. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  6585. },
  6586. "dist": {
  6587. "type": "zip",
  6588. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  6589. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  6590. "shasum": ""
  6591. },
  6592. "require": {
  6593. "ext-ctype": "*",
  6594. "ext-dom": "*",
  6595. "ext-libxml": "*",
  6596. "php": ">=5.3.0"
  6597. },
  6598. "require-dev": {
  6599. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  6600. },
  6601. "type": "library",
  6602. "extra": {
  6603. "branch-alias": {
  6604. "dev-master": "2.7-dev"
  6605. }
  6606. },
  6607. "autoload": {
  6608. "psr-4": {
  6609. "Masterminds\\": "src"
  6610. }
  6611. },
  6612. "notification-url": "https://packagist.org/downloads/",
  6613. "license": [
  6614. "MIT"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "Matt Butcher",
  6619. "email": "technosophos@gmail.com"
  6620. },
  6621. {
  6622. "name": "Matt Farina",
  6623. "email": "matt@mattfarina.com"
  6624. },
  6625. {
  6626. "name": "Asmir Mustafic",
  6627. "email": "goetas@gmail.com"
  6628. }
  6629. ],
  6630. "description": "An HTML5 parser and serializer.",
  6631. "homepage": "http://masterminds.github.io/html5-php",
  6632. "keywords": [
  6633. "HTML5",
  6634. "dom",
  6635. "html",
  6636. "parser",
  6637. "querypath",
  6638. "serializer",
  6639. "xml"
  6640. ],
  6641. "support": {
  6642. "issues": "https://github.com/Masterminds/html5-php/issues",
  6643. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  6644. },
  6645. "time": "2022-08-18T16:18:26+00:00"
  6646. },
  6647. {
  6648. "name": "mathieuviossat/arraytotexttable",
  6649. "version": "v1.0.11",
  6650. "source": {
  6651. "type": "git",
  6652. "url": "https://github.com/viossat/arraytotexttable.git",
  6653. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8"
  6654. },
  6655. "dist": {
  6656. "type": "zip",
  6657. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/069561a0895fb69ea1939fcd09262ccea081cbb8",
  6658. "reference": "069561a0895fb69ea1939fcd09262ccea081cbb8",
  6659. "shasum": ""
  6660. },
  6661. "require": {
  6662. "laminas/laminas-text": "^2.10",
  6663. "php": ">=8.0.0"
  6664. },
  6665. "type": "library",
  6666. "autoload": {
  6667. "psr-4": {
  6668. "MathieuViossat\\Util\\": "src/"
  6669. }
  6670. },
  6671. "notification-url": "https://packagist.org/downloads/",
  6672. "license": [
  6673. "MIT"
  6674. ],
  6675. "authors": [
  6676. {
  6677. "name": "Mathieu Viossat",
  6678. "email": "mathieu@viossat.fr",
  6679. "homepage": "https://viossat.fr"
  6680. }
  6681. ],
  6682. "description": "Display arrays in terminal",
  6683. "homepage": "https://github.com/viossat/arraytotexttable",
  6684. "keywords": [
  6685. "array",
  6686. "ascii",
  6687. "table",
  6688. "terminal",
  6689. "text",
  6690. "unicode"
  6691. ],
  6692. "support": {
  6693. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6694. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.11"
  6695. },
  6696. "time": "2024-02-13T17:19:01+00:00"
  6697. },
  6698. {
  6699. "name": "mglaman/phpstan-drupal",
  6700. "version": "1.2.12",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6704. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6709. "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "php": "^8.1",
  6714. "phpstan/phpstan": "^1.10.56",
  6715. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6716. "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0",
  6717. "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0",
  6718. "webflo/drupal-finder": "^1.2"
  6719. },
  6720. "require-dev": {
  6721. "behat/mink": "^1.8",
  6722. "composer/installers": "^1.9",
  6723. "drupal/core-recommended": "^10",
  6724. "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta",
  6725. "phpstan/extension-installer": "^1.1",
  6726. "phpstan/phpstan-strict-rules": "^1.0",
  6727. "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11",
  6728. "slevomat/coding-standard": "^7.1",
  6729. "squizlabs/php_codesniffer": "^3.3",
  6730. "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  6731. },
  6732. "suggest": {
  6733. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6734. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6735. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6736. },
  6737. "type": "phpstan-extension",
  6738. "extra": {
  6739. "branch-alias": {
  6740. "dev-main": "1.0-dev"
  6741. },
  6742. "installer-paths": {
  6743. "tests/fixtures/drupal/core": [
  6744. "type:drupal-core"
  6745. ],
  6746. "tests/fixtures/drupal/libraries/{$name}": [
  6747. "type:drupal-library"
  6748. ],
  6749. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6750. "type:drupal-module"
  6751. ],
  6752. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6753. "type:drupal-profile"
  6754. ],
  6755. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6756. "type:drupal-theme"
  6757. ]
  6758. },
  6759. "phpstan": {
  6760. "includes": [
  6761. "extension.neon",
  6762. "rules.neon"
  6763. ]
  6764. }
  6765. },
  6766. "autoload": {
  6767. "psr-4": {
  6768. "mglaman\\PHPStanDrupal\\": "src/"
  6769. }
  6770. },
  6771. "notification-url": "https://packagist.org/downloads/",
  6772. "license": [
  6773. "MIT"
  6774. ],
  6775. "authors": [
  6776. {
  6777. "name": "Matt Glaman",
  6778. "email": "nmd.matt@gmail.com"
  6779. }
  6780. ],
  6781. "description": "Drupal extension and rules for PHPStan",
  6782. "support": {
  6783. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6784. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12"
  6785. },
  6786. "funding": [
  6787. {
  6788. "url": "https://github.com/mglaman",
  6789. "type": "github"
  6790. },
  6791. {
  6792. "url": "https://opencollective.com/phpstan-drupal",
  6793. "type": "open_collective"
  6794. },
  6795. {
  6796. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6797. "type": "tidelift"
  6798. }
  6799. ],
  6800. "time": "2024-08-07T21:15:21+00:00"
  6801. },
  6802. {
  6803. "name": "nikic/php-parser",
  6804. "version": "v4.19.1",
  6805. "source": {
  6806. "type": "git",
  6807. "url": "https://github.com/nikic/PHP-Parser.git",
  6808. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  6809. },
  6810. "dist": {
  6811. "type": "zip",
  6812. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  6813. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  6814. "shasum": ""
  6815. },
  6816. "require": {
  6817. "ext-tokenizer": "*",
  6818. "php": ">=7.1"
  6819. },
  6820. "require-dev": {
  6821. "ircmaxell/php-yacc": "^0.0.7",
  6822. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  6823. },
  6824. "bin": [
  6825. "bin/php-parse"
  6826. ],
  6827. "type": "library",
  6828. "extra": {
  6829. "branch-alias": {
  6830. "dev-master": "4.9-dev"
  6831. }
  6832. },
  6833. "autoload": {
  6834. "psr-4": {
  6835. "PhpParser\\": "lib/PhpParser"
  6836. }
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "BSD-3-Clause"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Nikita Popov"
  6845. }
  6846. ],
  6847. "description": "A PHP parser written in PHP",
  6848. "keywords": [
  6849. "parser",
  6850. "php"
  6851. ],
  6852. "support": {
  6853. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6854. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  6855. },
  6856. "time": "2024-03-17T08:10:35+00:00"
  6857. },
  6858. {
  6859. "name": "pear/archive_tar",
  6860. "version": "1.4.14",
  6861. "source": {
  6862. "type": "git",
  6863. "url": "https://github.com/pear/Archive_Tar.git",
  6864. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  6865. },
  6866. "dist": {
  6867. "type": "zip",
  6868. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  6869. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  6870. "shasum": ""
  6871. },
  6872. "require": {
  6873. "pear/pear-core-minimal": "^1.10.0alpha2",
  6874. "php": ">=5.2.0"
  6875. },
  6876. "require-dev": {
  6877. "phpunit/phpunit": "*"
  6878. },
  6879. "suggest": {
  6880. "ext-bz2": "Bz2 compression support.",
  6881. "ext-xz": "Lzma2 compression support.",
  6882. "ext-zlib": "Gzip compression support."
  6883. },
  6884. "type": "library",
  6885. "extra": {
  6886. "branch-alias": {
  6887. "dev-master": "1.4.x-dev"
  6888. }
  6889. },
  6890. "autoload": {
  6891. "psr-0": {
  6892. "Archive_Tar": ""
  6893. }
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "include-path": [
  6897. "./"
  6898. ],
  6899. "license": [
  6900. "BSD-3-Clause"
  6901. ],
  6902. "authors": [
  6903. {
  6904. "name": "Vincent Blavet",
  6905. "email": "vincent@phpconcept.net"
  6906. },
  6907. {
  6908. "name": "Greg Beaver",
  6909. "email": "greg@chiaraquartet.net"
  6910. },
  6911. {
  6912. "name": "Michiel Rook",
  6913. "email": "mrook@php.net"
  6914. }
  6915. ],
  6916. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6917. "homepage": "https://github.com/pear/Archive_Tar",
  6918. "keywords": [
  6919. "archive",
  6920. "tar"
  6921. ],
  6922. "support": {
  6923. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6924. "source": "https://github.com/pear/Archive_Tar"
  6925. },
  6926. "funding": [
  6927. {
  6928. "url": "https://github.com/mrook",
  6929. "type": "github"
  6930. },
  6931. {
  6932. "url": "https://www.patreon.com/michielrook",
  6933. "type": "patreon"
  6934. }
  6935. ],
  6936. "time": "2021-07-20T13:53:39+00:00"
  6937. },
  6938. {
  6939. "name": "pear/console_getopt",
  6940. "version": "v1.4.3",
  6941. "source": {
  6942. "type": "git",
  6943. "url": "https://github.com/pear/Console_Getopt.git",
  6944. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6945. },
  6946. "dist": {
  6947. "type": "zip",
  6948. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6949. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6950. "shasum": ""
  6951. },
  6952. "type": "library",
  6953. "autoload": {
  6954. "psr-0": {
  6955. "Console": "./"
  6956. }
  6957. },
  6958. "notification-url": "https://packagist.org/downloads/",
  6959. "include-path": [
  6960. "./"
  6961. ],
  6962. "license": [
  6963. "BSD-2-Clause"
  6964. ],
  6965. "authors": [
  6966. {
  6967. "name": "Andrei Zmievski",
  6968. "email": "andrei@php.net",
  6969. "role": "Lead"
  6970. },
  6971. {
  6972. "name": "Stig Bakken",
  6973. "email": "stig@php.net",
  6974. "role": "Developer"
  6975. },
  6976. {
  6977. "name": "Greg Beaver",
  6978. "email": "cellog@php.net",
  6979. "role": "Helper"
  6980. }
  6981. ],
  6982. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6983. "support": {
  6984. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6985. "source": "https://github.com/pear/Console_Getopt"
  6986. },
  6987. "time": "2019-11-20T18:27:48+00:00"
  6988. },
  6989. {
  6990. "name": "pear/pear-core-minimal",
  6991. "version": "v1.10.15",
  6992. "source": {
  6993. "type": "git",
  6994. "url": "https://github.com/pear/pear-core-minimal.git",
  6995. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  6996. },
  6997. "dist": {
  6998. "type": "zip",
  6999. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  7000. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  7001. "shasum": ""
  7002. },
  7003. "require": {
  7004. "pear/console_getopt": "~1.4",
  7005. "pear/pear_exception": "~1.0",
  7006. "php": ">=5.4"
  7007. },
  7008. "replace": {
  7009. "rsky/pear-core-min": "self.version"
  7010. },
  7011. "type": "library",
  7012. "autoload": {
  7013. "classmap": [
  7014. "src/"
  7015. ]
  7016. },
  7017. "notification-url": "https://packagist.org/downloads/",
  7018. "include-path": [
  7019. "src/"
  7020. ],
  7021. "license": [
  7022. "BSD-3-Clause"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Christian Weiske",
  7027. "email": "cweiske@php.net",
  7028. "role": "Lead"
  7029. }
  7030. ],
  7031. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7032. "support": {
  7033. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7034. "source": "https://github.com/pear/pear-core-minimal"
  7035. },
  7036. "time": "2024-03-16T18:41:45+00:00"
  7037. },
  7038. {
  7039. "name": "pear/pear_exception",
  7040. "version": "v1.0.2",
  7041. "source": {
  7042. "type": "git",
  7043. "url": "https://github.com/pear/PEAR_Exception.git",
  7044. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7045. },
  7046. "dist": {
  7047. "type": "zip",
  7048. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7049. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7050. "shasum": ""
  7051. },
  7052. "require": {
  7053. "php": ">=5.2.0"
  7054. },
  7055. "require-dev": {
  7056. "phpunit/phpunit": "<9"
  7057. },
  7058. "type": "class",
  7059. "extra": {
  7060. "branch-alias": {
  7061. "dev-master": "1.0.x-dev"
  7062. }
  7063. },
  7064. "autoload": {
  7065. "classmap": [
  7066. "PEAR/"
  7067. ]
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "include-path": [
  7071. "."
  7072. ],
  7073. "license": [
  7074. "BSD-2-Clause"
  7075. ],
  7076. "authors": [
  7077. {
  7078. "name": "Helgi Thormar",
  7079. "email": "dufuz@php.net"
  7080. },
  7081. {
  7082. "name": "Greg Beaver",
  7083. "email": "cellog@php.net"
  7084. }
  7085. ],
  7086. "description": "The PEAR Exception base class.",
  7087. "homepage": "https://github.com/pear/PEAR_Exception",
  7088. "keywords": [
  7089. "exception"
  7090. ],
  7091. "support": {
  7092. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7093. "source": "https://github.com/pear/PEAR_Exception"
  7094. },
  7095. "time": "2021-03-21T15:43:46+00:00"
  7096. },
  7097. {
  7098. "name": "phpstan/phpstan",
  7099. "version": "1.12.3",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/phpstan/phpstan.git",
  7103. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7108. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "php": "^7.2|^8.0"
  7113. },
  7114. "conflict": {
  7115. "phpstan/phpstan-shim": "*"
  7116. },
  7117. "bin": [
  7118. "phpstan",
  7119. "phpstan.phar"
  7120. ],
  7121. "type": "library",
  7122. "autoload": {
  7123. "files": [
  7124. "bootstrap.php"
  7125. ]
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "MIT"
  7130. ],
  7131. "description": "PHPStan - PHP Static Analysis Tool",
  7132. "keywords": [
  7133. "dev",
  7134. "static analysis"
  7135. ],
  7136. "support": {
  7137. "docs": "https://phpstan.org/user-guide/getting-started",
  7138. "forum": "https://github.com/phpstan/phpstan/discussions",
  7139. "issues": "https://github.com/phpstan/phpstan/issues",
  7140. "security": "https://github.com/phpstan/phpstan/security/policy",
  7141. "source": "https://github.com/phpstan/phpstan-src"
  7142. },
  7143. "funding": [
  7144. {
  7145. "url": "https://github.com/ondrejmirtes",
  7146. "type": "github"
  7147. },
  7148. {
  7149. "url": "https://github.com/phpstan",
  7150. "type": "github"
  7151. }
  7152. ],
  7153. "time": "2024-09-09T08:10:35+00:00"
  7154. },
  7155. {
  7156. "name": "phpstan/phpstan-deprecation-rules",
  7157. "version": "1.2.1",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7161. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7166. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "php": "^7.2 || ^8.0",
  7171. "phpstan/phpstan": "^1.12"
  7172. },
  7173. "require-dev": {
  7174. "php-parallel-lint/php-parallel-lint": "^1.2",
  7175. "phpstan/phpstan-phpunit": "^1.0",
  7176. "phpunit/phpunit": "^9.5"
  7177. },
  7178. "type": "phpstan-extension",
  7179. "extra": {
  7180. "phpstan": {
  7181. "includes": [
  7182. "rules.neon"
  7183. ]
  7184. }
  7185. },
  7186. "autoload": {
  7187. "psr-4": {
  7188. "PHPStan\\": "src/"
  7189. }
  7190. },
  7191. "notification-url": "https://packagist.org/downloads/",
  7192. "license": [
  7193. "MIT"
  7194. ],
  7195. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7196. "support": {
  7197. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7198. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7199. },
  7200. "time": "2024-09-11T15:52:35+00:00"
  7201. },
  7202. {
  7203. "name": "psr/cache",
  7204. "version": "1.0.1",
  7205. "source": {
  7206. "type": "git",
  7207. "url": "https://github.com/php-fig/cache.git",
  7208. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7209. },
  7210. "dist": {
  7211. "type": "zip",
  7212. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7213. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7214. "shasum": ""
  7215. },
  7216. "require": {
  7217. "php": ">=5.3.0"
  7218. },
  7219. "type": "library",
  7220. "extra": {
  7221. "branch-alias": {
  7222. "dev-master": "1.0.x-dev"
  7223. }
  7224. },
  7225. "autoload": {
  7226. "psr-4": {
  7227. "Psr\\Cache\\": "src/"
  7228. }
  7229. },
  7230. "notification-url": "https://packagist.org/downloads/",
  7231. "license": [
  7232. "MIT"
  7233. ],
  7234. "authors": [
  7235. {
  7236. "name": "PHP-FIG",
  7237. "homepage": "http://www.php-fig.org/"
  7238. }
  7239. ],
  7240. "description": "Common interface for caching libraries",
  7241. "keywords": [
  7242. "cache",
  7243. "psr",
  7244. "psr-6"
  7245. ],
  7246. "support": {
  7247. "source": "https://github.com/php-fig/cache/tree/master"
  7248. },
  7249. "time": "2016-08-06T20:24:11+00:00"
  7250. },
  7251. {
  7252. "name": "psr/container",
  7253. "version": "1.1.2",
  7254. "source": {
  7255. "type": "git",
  7256. "url": "https://github.com/php-fig/container.git",
  7257. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  7258. },
  7259. "dist": {
  7260. "type": "zip",
  7261. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  7262. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  7263. "shasum": ""
  7264. },
  7265. "require": {
  7266. "php": ">=7.4.0"
  7267. },
  7268. "type": "library",
  7269. "autoload": {
  7270. "psr-4": {
  7271. "Psr\\Container\\": "src/"
  7272. }
  7273. },
  7274. "notification-url": "https://packagist.org/downloads/",
  7275. "license": [
  7276. "MIT"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "PHP-FIG",
  7281. "homepage": "https://www.php-fig.org/"
  7282. }
  7283. ],
  7284. "description": "Common Container Interface (PHP FIG PSR-11)",
  7285. "homepage": "https://github.com/php-fig/container",
  7286. "keywords": [
  7287. "PSR-11",
  7288. "container",
  7289. "container-interface",
  7290. "container-interop",
  7291. "psr"
  7292. ],
  7293. "support": {
  7294. "issues": "https://github.com/php-fig/container/issues",
  7295. "source": "https://github.com/php-fig/container/tree/1.1.2"
  7296. },
  7297. "time": "2021-11-05T16:50:12+00:00"
  7298. },
  7299. {
  7300. "name": "psr/http-factory",
  7301. "version": "1.0.2",
  7302. "source": {
  7303. "type": "git",
  7304. "url": "https://github.com/php-fig/http-factory.git",
  7305. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7306. },
  7307. "dist": {
  7308. "type": "zip",
  7309. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7310. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7311. "shasum": ""
  7312. },
  7313. "require": {
  7314. "php": ">=7.0.0",
  7315. "psr/http-message": "^1.0 || ^2.0"
  7316. },
  7317. "type": "library",
  7318. "extra": {
  7319. "branch-alias": {
  7320. "dev-master": "1.0.x-dev"
  7321. }
  7322. },
  7323. "autoload": {
  7324. "psr-4": {
  7325. "Psr\\Http\\Message\\": "src/"
  7326. }
  7327. },
  7328. "notification-url": "https://packagist.org/downloads/",
  7329. "license": [
  7330. "MIT"
  7331. ],
  7332. "authors": [
  7333. {
  7334. "name": "PHP-FIG",
  7335. "homepage": "https://www.php-fig.org/"
  7336. }
  7337. ],
  7338. "description": "Common interfaces for PSR-7 HTTP message factories",
  7339. "keywords": [
  7340. "factory",
  7341. "http",
  7342. "message",
  7343. "psr",
  7344. "psr-17",
  7345. "psr-7",
  7346. "request",
  7347. "response"
  7348. ],
  7349. "support": {
  7350. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7351. },
  7352. "time": "2023-04-10T20:10:41+00:00"
  7353. },
  7354. {
  7355. "name": "psr/http-message",
  7356. "version": "1.0.1",
  7357. "source": {
  7358. "type": "git",
  7359. "url": "https://github.com/php-fig/http-message.git",
  7360. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7361. },
  7362. "dist": {
  7363. "type": "zip",
  7364. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7365. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7366. "shasum": ""
  7367. },
  7368. "require": {
  7369. "php": ">=5.3.0"
  7370. },
  7371. "type": "library",
  7372. "extra": {
  7373. "branch-alias": {
  7374. "dev-master": "1.0.x-dev"
  7375. }
  7376. },
  7377. "autoload": {
  7378. "psr-4": {
  7379. "Psr\\Http\\Message\\": "src/"
  7380. }
  7381. },
  7382. "notification-url": "https://packagist.org/downloads/",
  7383. "license": [
  7384. "MIT"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "PHP-FIG",
  7389. "homepage": "http://www.php-fig.org/"
  7390. }
  7391. ],
  7392. "description": "Common interface for HTTP messages",
  7393. "homepage": "https://github.com/php-fig/http-message",
  7394. "keywords": [
  7395. "http",
  7396. "http-message",
  7397. "psr",
  7398. "psr-7",
  7399. "request",
  7400. "response"
  7401. ],
  7402. "support": {
  7403. "source": "https://github.com/php-fig/http-message/tree/master"
  7404. },
  7405. "time": "2016-08-06T14:39:51+00:00"
  7406. },
  7407. {
  7408. "name": "psr/log",
  7409. "version": "1.1.4",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://github.com/php-fig/log.git",
  7413. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  7418. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  7419. "shasum": ""
  7420. },
  7421. "require": {
  7422. "php": ">=5.3.0"
  7423. },
  7424. "type": "library",
  7425. "extra": {
  7426. "branch-alias": {
  7427. "dev-master": "1.1.x-dev"
  7428. }
  7429. },
  7430. "autoload": {
  7431. "psr-4": {
  7432. "Psr\\Log\\": "Psr/Log/"
  7433. }
  7434. },
  7435. "notification-url": "https://packagist.org/downloads/",
  7436. "license": [
  7437. "MIT"
  7438. ],
  7439. "authors": [
  7440. {
  7441. "name": "PHP-FIG",
  7442. "homepage": "https://www.php-fig.org/"
  7443. }
  7444. ],
  7445. "description": "Common interface for logging libraries",
  7446. "homepage": "https://github.com/php-fig/log",
  7447. "keywords": [
  7448. "log",
  7449. "psr",
  7450. "psr-3"
  7451. ],
  7452. "support": {
  7453. "source": "https://github.com/php-fig/log/tree/1.1.4"
  7454. },
  7455. "time": "2021-05-03T11:20:27+00:00"
  7456. },
  7457. {
  7458. "name": "psy/psysh",
  7459. "version": "v0.10.12",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/bobthecow/psysh.git",
  7463. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7468. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7469. "shasum": ""
  7470. },
  7471. "require": {
  7472. "ext-json": "*",
  7473. "ext-tokenizer": "*",
  7474. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7475. "php": "^8.0 || ^7.0 || ^5.5.9",
  7476. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7477. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7478. },
  7479. "require-dev": {
  7480. "bamarni/composer-bin-plugin": "^1.2",
  7481. "hoa/console": "3.17.*"
  7482. },
  7483. "suggest": {
  7484. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7485. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7486. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7487. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7488. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7489. },
  7490. "bin": [
  7491. "bin/psysh"
  7492. ],
  7493. "type": "library",
  7494. "extra": {
  7495. "branch-alias": {
  7496. "dev-main": "0.10.x-dev"
  7497. }
  7498. },
  7499. "autoload": {
  7500. "files": [
  7501. "src/functions.php"
  7502. ],
  7503. "psr-4": {
  7504. "Psy\\": "src/"
  7505. }
  7506. },
  7507. "notification-url": "https://packagist.org/downloads/",
  7508. "license": [
  7509. "MIT"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Justin Hileman",
  7514. "email": "justin@justinhileman.info",
  7515. "homepage": "http://justinhileman.com"
  7516. }
  7517. ],
  7518. "description": "An interactive shell for modern PHP.",
  7519. "homepage": "http://psysh.org",
  7520. "keywords": [
  7521. "REPL",
  7522. "console",
  7523. "interactive",
  7524. "shell"
  7525. ],
  7526. "support": {
  7527. "issues": "https://github.com/bobthecow/psysh/issues",
  7528. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7529. },
  7530. "time": "2021-11-30T14:05:36+00:00"
  7531. },
  7532. {
  7533. "name": "ralouphie/getallheaders",
  7534. "version": "3.0.3",
  7535. "source": {
  7536. "type": "git",
  7537. "url": "https://github.com/ralouphie/getallheaders.git",
  7538. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7539. },
  7540. "dist": {
  7541. "type": "zip",
  7542. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7543. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7544. "shasum": ""
  7545. },
  7546. "require": {
  7547. "php": ">=5.6"
  7548. },
  7549. "require-dev": {
  7550. "php-coveralls/php-coveralls": "^2.1",
  7551. "phpunit/phpunit": "^5 || ^6.5"
  7552. },
  7553. "type": "library",
  7554. "autoload": {
  7555. "files": [
  7556. "src/getallheaders.php"
  7557. ]
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "Ralph Khattar",
  7566. "email": "ralph.khattar@gmail.com"
  7567. }
  7568. ],
  7569. "description": "A polyfill for getallheaders.",
  7570. "support": {
  7571. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7572. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7573. },
  7574. "time": "2019-03-08T08:55:37+00:00"
  7575. },
  7576. {
  7577. "name": "stack/builder",
  7578. "version": "v1.0.6",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/stackphp/builder.git",
  7582. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7587. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "php": ">=7.2.0",
  7592. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  7593. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  7594. },
  7595. "require-dev": {
  7596. "phpunit/phpunit": "~8.0",
  7597. "symfony/routing": "^5.0"
  7598. },
  7599. "type": "library",
  7600. "extra": {
  7601. "branch-alias": {
  7602. "dev-master": "1.0-dev"
  7603. }
  7604. },
  7605. "autoload": {
  7606. "psr-0": {
  7607. "Stack": "src"
  7608. }
  7609. },
  7610. "notification-url": "https://packagist.org/downloads/",
  7611. "license": [
  7612. "MIT"
  7613. ],
  7614. "authors": [
  7615. {
  7616. "name": "Igor Wiedler",
  7617. "email": "igor@wiedler.ch"
  7618. }
  7619. ],
  7620. "description": "Builder for stack middleware based on HttpKernelInterface.",
  7621. "keywords": [
  7622. "stack"
  7623. ],
  7624. "support": {
  7625. "issues": "https://github.com/stackphp/builder/issues",
  7626. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  7627. },
  7628. "abandoned": true,
  7629. "time": "2020-01-30T12:17:27+00:00"
  7630. },
  7631. {
  7632. "name": "symfony-cmf/routing",
  7633. "version": "2.3.4",
  7634. "source": {
  7635. "type": "git",
  7636. "url": "https://github.com/symfony-cmf/Routing.git",
  7637. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  7638. },
  7639. "dist": {
  7640. "type": "zip",
  7641. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7642. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7643. "shasum": ""
  7644. },
  7645. "require": {
  7646. "php": "^7.2 || ^8.0",
  7647. "psr/log": "^1.0 || ^2.0 || ^3.0",
  7648. "symfony/http-kernel": "^4.4 || ^5.0",
  7649. "symfony/routing": "^4.4 || ^5.0"
  7650. },
  7651. "require-dev": {
  7652. "symfony-cmf/testing": "^3@dev",
  7653. "symfony/config": "^4.4 || ^5.0",
  7654. "symfony/dependency-injection": "^4.4 || ^5.0",
  7655. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7656. "symfony/phpunit-bridge": "^5.0"
  7657. },
  7658. "suggest": {
  7659. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  7660. },
  7661. "type": "library",
  7662. "extra": {
  7663. "branch-alias": {
  7664. "dev-master": "2.x-dev"
  7665. }
  7666. },
  7667. "autoload": {
  7668. "psr-4": {
  7669. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  7670. }
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "MIT"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Symfony CMF Community",
  7679. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7680. }
  7681. ],
  7682. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  7683. "homepage": "http://cmf.symfony.com",
  7684. "keywords": [
  7685. "database",
  7686. "routing"
  7687. ],
  7688. "support": {
  7689. "issues": "https://github.com/symfony-cmf/Routing/issues",
  7690. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  7691. },
  7692. "time": "2021-11-08T16:33:10+00:00"
  7693. },
  7694. {
  7695. "name": "symfony/console",
  7696. "version": "v4.4.49",
  7697. "source": {
  7698. "type": "git",
  7699. "url": "https://github.com/symfony/console.git",
  7700. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  7701. },
  7702. "dist": {
  7703. "type": "zip",
  7704. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7705. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  7706. "shasum": ""
  7707. },
  7708. "require": {
  7709. "php": ">=7.1.3",
  7710. "symfony/polyfill-mbstring": "~1.0",
  7711. "symfony/polyfill-php73": "^1.8",
  7712. "symfony/polyfill-php80": "^1.16",
  7713. "symfony/service-contracts": "^1.1|^2"
  7714. },
  7715. "conflict": {
  7716. "psr/log": ">=3",
  7717. "symfony/dependency-injection": "<3.4",
  7718. "symfony/event-dispatcher": "<4.3|>=5",
  7719. "symfony/lock": "<4.4",
  7720. "symfony/process": "<3.3"
  7721. },
  7722. "provide": {
  7723. "psr/log-implementation": "1.0|2.0"
  7724. },
  7725. "require-dev": {
  7726. "psr/log": "^1|^2",
  7727. "symfony/config": "^3.4|^4.0|^5.0",
  7728. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7729. "symfony/event-dispatcher": "^4.3",
  7730. "symfony/lock": "^4.4|^5.0",
  7731. "symfony/process": "^3.4|^4.0|^5.0",
  7732. "symfony/var-dumper": "^4.3|^5.0"
  7733. },
  7734. "suggest": {
  7735. "psr/log": "For using the console logger",
  7736. "symfony/event-dispatcher": "",
  7737. "symfony/lock": "",
  7738. "symfony/process": ""
  7739. },
  7740. "type": "library",
  7741. "autoload": {
  7742. "psr-4": {
  7743. "Symfony\\Component\\Console\\": ""
  7744. },
  7745. "exclude-from-classmap": [
  7746. "/Tests/"
  7747. ]
  7748. },
  7749. "notification-url": "https://packagist.org/downloads/",
  7750. "license": [
  7751. "MIT"
  7752. ],
  7753. "authors": [
  7754. {
  7755. "name": "Fabien Potencier",
  7756. "email": "fabien@symfony.com"
  7757. },
  7758. {
  7759. "name": "Symfony Community",
  7760. "homepage": "https://symfony.com/contributors"
  7761. }
  7762. ],
  7763. "description": "Eases the creation of beautiful and testable command line interfaces",
  7764. "homepage": "https://symfony.com",
  7765. "support": {
  7766. "source": "https://github.com/symfony/console/tree/v4.4.49"
  7767. },
  7768. "funding": [
  7769. {
  7770. "url": "https://symfony.com/sponsor",
  7771. "type": "custom"
  7772. },
  7773. {
  7774. "url": "https://github.com/fabpot",
  7775. "type": "github"
  7776. },
  7777. {
  7778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7779. "type": "tidelift"
  7780. }
  7781. ],
  7782. "time": "2022-11-05T17:10:16+00:00"
  7783. },
  7784. {
  7785. "name": "symfony/debug",
  7786. "version": "v4.4.44",
  7787. "source": {
  7788. "type": "git",
  7789. "url": "https://github.com/symfony/debug.git",
  7790. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  7791. },
  7792. "dist": {
  7793. "type": "zip",
  7794. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  7795. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  7796. "shasum": ""
  7797. },
  7798. "require": {
  7799. "php": ">=7.1.3",
  7800. "psr/log": "^1|^2|^3"
  7801. },
  7802. "conflict": {
  7803. "symfony/http-kernel": "<3.4"
  7804. },
  7805. "require-dev": {
  7806. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  7807. },
  7808. "type": "library",
  7809. "autoload": {
  7810. "psr-4": {
  7811. "Symfony\\Component\\Debug\\": ""
  7812. },
  7813. "exclude-from-classmap": [
  7814. "/Tests/"
  7815. ]
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "MIT"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Fabien Potencier",
  7824. "email": "fabien@symfony.com"
  7825. },
  7826. {
  7827. "name": "Symfony Community",
  7828. "homepage": "https://symfony.com/contributors"
  7829. }
  7830. ],
  7831. "description": "Provides tools to ease debugging PHP code",
  7832. "homepage": "https://symfony.com",
  7833. "support": {
  7834. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://symfony.com/sponsor",
  7839. "type": "custom"
  7840. },
  7841. {
  7842. "url": "https://github.com/fabpot",
  7843. "type": "github"
  7844. },
  7845. {
  7846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7847. "type": "tidelift"
  7848. }
  7849. ],
  7850. "abandoned": "symfony/error-handler",
  7851. "time": "2022-07-28T16:29:46+00:00"
  7852. },
  7853. {
  7854. "name": "symfony/dependency-injection",
  7855. "version": "v4.4.49",
  7856. "source": {
  7857. "type": "git",
  7858. "url": "https://github.com/symfony/dependency-injection.git",
  7859. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  7860. },
  7861. "dist": {
  7862. "type": "zip",
  7863. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7864. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  7865. "shasum": ""
  7866. },
  7867. "require": {
  7868. "php": ">=7.1.3",
  7869. "psr/container": "^1.0",
  7870. "symfony/polyfill-php80": "^1.16",
  7871. "symfony/service-contracts": "^1.1.6|^2"
  7872. },
  7873. "conflict": {
  7874. "symfony/config": "<4.3|>=5.0",
  7875. "symfony/finder": "<3.4",
  7876. "symfony/proxy-manager-bridge": "<3.4",
  7877. "symfony/yaml": "<4.4.26"
  7878. },
  7879. "provide": {
  7880. "psr/container-implementation": "1.0",
  7881. "symfony/service-implementation": "1.0|2.0"
  7882. },
  7883. "require-dev": {
  7884. "symfony/config": "^4.3",
  7885. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7886. "symfony/yaml": "^4.4.26|^5.0"
  7887. },
  7888. "suggest": {
  7889. "symfony/config": "",
  7890. "symfony/expression-language": "For using expressions in service container configuration",
  7891. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7892. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7893. "symfony/yaml": ""
  7894. },
  7895. "type": "library",
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Symfony\\Component\\DependencyInjection\\": ""
  7899. },
  7900. "exclude-from-classmap": [
  7901. "/Tests/"
  7902. ]
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Fabien Potencier",
  7911. "email": "fabien@symfony.com"
  7912. },
  7913. {
  7914. "name": "Symfony Community",
  7915. "homepage": "https://symfony.com/contributors"
  7916. }
  7917. ],
  7918. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7919. "homepage": "https://symfony.com",
  7920. "support": {
  7921. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  7922. },
  7923. "funding": [
  7924. {
  7925. "url": "https://symfony.com/sponsor",
  7926. "type": "custom"
  7927. },
  7928. {
  7929. "url": "https://github.com/fabpot",
  7930. "type": "github"
  7931. },
  7932. {
  7933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7934. "type": "tidelift"
  7935. }
  7936. ],
  7937. "time": "2022-11-16T16:18:09+00:00"
  7938. },
  7939. {
  7940. "name": "symfony/deprecation-contracts",
  7941. "version": "v2.5.3",
  7942. "source": {
  7943. "type": "git",
  7944. "url": "https://github.com/symfony/deprecation-contracts.git",
  7945. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  7946. },
  7947. "dist": {
  7948. "type": "zip",
  7949. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  7950. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  7951. "shasum": ""
  7952. },
  7953. "require": {
  7954. "php": ">=7.1"
  7955. },
  7956. "type": "library",
  7957. "extra": {
  7958. "branch-alias": {
  7959. "dev-main": "2.5-dev"
  7960. },
  7961. "thanks": {
  7962. "name": "symfony/contracts",
  7963. "url": "https://github.com/symfony/contracts"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "files": [
  7968. "function.php"
  7969. ]
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Nicolas Grekas",
  7978. "email": "p@tchwork.com"
  7979. },
  7980. {
  7981. "name": "Symfony Community",
  7982. "homepage": "https://symfony.com/contributors"
  7983. }
  7984. ],
  7985. "description": "A generic function and convention to trigger deprecation notices",
  7986. "homepage": "https://symfony.com",
  7987. "support": {
  7988. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  7989. },
  7990. "funding": [
  7991. {
  7992. "url": "https://symfony.com/sponsor",
  7993. "type": "custom"
  7994. },
  7995. {
  7996. "url": "https://github.com/fabpot",
  7997. "type": "github"
  7998. },
  7999. {
  8000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8001. "type": "tidelift"
  8002. }
  8003. ],
  8004. "time": "2023-01-24T14:02:46+00:00"
  8005. },
  8006. {
  8007. "name": "symfony/error-handler",
  8008. "version": "v4.4.44",
  8009. "source": {
  8010. "type": "git",
  8011. "url": "https://github.com/symfony/error-handler.git",
  8012. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  8013. },
  8014. "dist": {
  8015. "type": "zip",
  8016. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  8017. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  8018. "shasum": ""
  8019. },
  8020. "require": {
  8021. "php": ">=7.1.3",
  8022. "psr/log": "^1|^2|^3",
  8023. "symfony/debug": "^4.4.5",
  8024. "symfony/var-dumper": "^4.4|^5.0"
  8025. },
  8026. "require-dev": {
  8027. "symfony/http-kernel": "^4.4|^5.0",
  8028. "symfony/serializer": "^4.4|^5.0"
  8029. },
  8030. "type": "library",
  8031. "autoload": {
  8032. "psr-4": {
  8033. "Symfony\\Component\\ErrorHandler\\": ""
  8034. },
  8035. "exclude-from-classmap": [
  8036. "/Tests/"
  8037. ]
  8038. },
  8039. "notification-url": "https://packagist.org/downloads/",
  8040. "license": [
  8041. "MIT"
  8042. ],
  8043. "authors": [
  8044. {
  8045. "name": "Fabien Potencier",
  8046. "email": "fabien@symfony.com"
  8047. },
  8048. {
  8049. "name": "Symfony Community",
  8050. "homepage": "https://symfony.com/contributors"
  8051. }
  8052. ],
  8053. "description": "Provides tools to manage errors and ease debugging PHP code",
  8054. "homepage": "https://symfony.com",
  8055. "support": {
  8056. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  8057. },
  8058. "funding": [
  8059. {
  8060. "url": "https://symfony.com/sponsor",
  8061. "type": "custom"
  8062. },
  8063. {
  8064. "url": "https://github.com/fabpot",
  8065. "type": "github"
  8066. },
  8067. {
  8068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8069. "type": "tidelift"
  8070. }
  8071. ],
  8072. "time": "2022-07-28T16:29:46+00:00"
  8073. },
  8074. {
  8075. "name": "symfony/event-dispatcher",
  8076. "version": "v4.4.44",
  8077. "source": {
  8078. "type": "git",
  8079. "url": "https://github.com/symfony/event-dispatcher.git",
  8080. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  8081. },
  8082. "dist": {
  8083. "type": "zip",
  8084. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8085. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8086. "shasum": ""
  8087. },
  8088. "require": {
  8089. "php": ">=7.1.3",
  8090. "symfony/event-dispatcher-contracts": "^1.1",
  8091. "symfony/polyfill-php80": "^1.16"
  8092. },
  8093. "conflict": {
  8094. "symfony/dependency-injection": "<3.4"
  8095. },
  8096. "provide": {
  8097. "psr/event-dispatcher-implementation": "1.0",
  8098. "symfony/event-dispatcher-implementation": "1.1"
  8099. },
  8100. "require-dev": {
  8101. "psr/log": "^1|^2|^3",
  8102. "symfony/config": "^3.4|^4.0|^5.0",
  8103. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8104. "symfony/error-handler": "~3.4|~4.4",
  8105. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8106. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8107. "symfony/service-contracts": "^1.1|^2",
  8108. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8109. },
  8110. "suggest": {
  8111. "symfony/dependency-injection": "",
  8112. "symfony/http-kernel": ""
  8113. },
  8114. "type": "library",
  8115. "autoload": {
  8116. "psr-4": {
  8117. "Symfony\\Component\\EventDispatcher\\": ""
  8118. },
  8119. "exclude-from-classmap": [
  8120. "/Tests/"
  8121. ]
  8122. },
  8123. "notification-url": "https://packagist.org/downloads/",
  8124. "license": [
  8125. "MIT"
  8126. ],
  8127. "authors": [
  8128. {
  8129. "name": "Fabien Potencier",
  8130. "email": "fabien@symfony.com"
  8131. },
  8132. {
  8133. "name": "Symfony Community",
  8134. "homepage": "https://symfony.com/contributors"
  8135. }
  8136. ],
  8137. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8138. "homepage": "https://symfony.com",
  8139. "support": {
  8140. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  8141. },
  8142. "funding": [
  8143. {
  8144. "url": "https://symfony.com/sponsor",
  8145. "type": "custom"
  8146. },
  8147. {
  8148. "url": "https://github.com/fabpot",
  8149. "type": "github"
  8150. },
  8151. {
  8152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8153. "type": "tidelift"
  8154. }
  8155. ],
  8156. "time": "2022-07-20T09:59:04+00:00"
  8157. },
  8158. {
  8159. "name": "symfony/event-dispatcher-contracts",
  8160. "version": "v1.1.13",
  8161. "source": {
  8162. "type": "git",
  8163. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8164. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  8165. },
  8166. "dist": {
  8167. "type": "zip",
  8168. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8169. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8170. "shasum": ""
  8171. },
  8172. "require": {
  8173. "php": ">=7.1.3"
  8174. },
  8175. "suggest": {
  8176. "psr/event-dispatcher": "",
  8177. "symfony/event-dispatcher-implementation": ""
  8178. },
  8179. "type": "library",
  8180. "extra": {
  8181. "branch-alias": {
  8182. "dev-main": "1.1-dev"
  8183. },
  8184. "thanks": {
  8185. "name": "symfony/contracts",
  8186. "url": "https://github.com/symfony/contracts"
  8187. }
  8188. },
  8189. "autoload": {
  8190. "psr-4": {
  8191. "Symfony\\Contracts\\EventDispatcher\\": ""
  8192. }
  8193. },
  8194. "notification-url": "https://packagist.org/downloads/",
  8195. "license": [
  8196. "MIT"
  8197. ],
  8198. "authors": [
  8199. {
  8200. "name": "Nicolas Grekas",
  8201. "email": "p@tchwork.com"
  8202. },
  8203. {
  8204. "name": "Symfony Community",
  8205. "homepage": "https://symfony.com/contributors"
  8206. }
  8207. ],
  8208. "description": "Generic abstractions related to dispatching event",
  8209. "homepage": "https://symfony.com",
  8210. "keywords": [
  8211. "abstractions",
  8212. "contracts",
  8213. "decoupling",
  8214. "interfaces",
  8215. "interoperability",
  8216. "standards"
  8217. ],
  8218. "support": {
  8219. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  8220. },
  8221. "funding": [
  8222. {
  8223. "url": "https://symfony.com/sponsor",
  8224. "type": "custom"
  8225. },
  8226. {
  8227. "url": "https://github.com/fabpot",
  8228. "type": "github"
  8229. },
  8230. {
  8231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8232. "type": "tidelift"
  8233. }
  8234. ],
  8235. "time": "2022-01-02T09:41:36+00:00"
  8236. },
  8237. {
  8238. "name": "symfony/filesystem",
  8239. "version": "v4.4.42",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/symfony/filesystem.git",
  8243. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8248. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8249. "shasum": ""
  8250. },
  8251. "require": {
  8252. "php": ">=7.1.3",
  8253. "symfony/polyfill-ctype": "~1.8",
  8254. "symfony/polyfill-php80": "^1.16"
  8255. },
  8256. "type": "library",
  8257. "autoload": {
  8258. "psr-4": {
  8259. "Symfony\\Component\\Filesystem\\": ""
  8260. },
  8261. "exclude-from-classmap": [
  8262. "/Tests/"
  8263. ]
  8264. },
  8265. "notification-url": "https://packagist.org/downloads/",
  8266. "license": [
  8267. "MIT"
  8268. ],
  8269. "authors": [
  8270. {
  8271. "name": "Fabien Potencier",
  8272. "email": "fabien@symfony.com"
  8273. },
  8274. {
  8275. "name": "Symfony Community",
  8276. "homepage": "https://symfony.com/contributors"
  8277. }
  8278. ],
  8279. "description": "Provides basic utilities for the filesystem",
  8280. "homepage": "https://symfony.com",
  8281. "support": {
  8282. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8283. },
  8284. "funding": [
  8285. {
  8286. "url": "https://symfony.com/sponsor",
  8287. "type": "custom"
  8288. },
  8289. {
  8290. "url": "https://github.com/fabpot",
  8291. "type": "github"
  8292. },
  8293. {
  8294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8295. "type": "tidelift"
  8296. }
  8297. ],
  8298. "time": "2022-05-20T08:49:14+00:00"
  8299. },
  8300. {
  8301. "name": "symfony/finder",
  8302. "version": "v5.4.43",
  8303. "source": {
  8304. "type": "git",
  8305. "url": "https://github.com/symfony/finder.git",
  8306. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8307. },
  8308. "dist": {
  8309. "type": "zip",
  8310. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8311. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8312. "shasum": ""
  8313. },
  8314. "require": {
  8315. "php": ">=7.2.5",
  8316. "symfony/deprecation-contracts": "^2.1|^3",
  8317. "symfony/polyfill-php80": "^1.16"
  8318. },
  8319. "type": "library",
  8320. "autoload": {
  8321. "psr-4": {
  8322. "Symfony\\Component\\Finder\\": ""
  8323. },
  8324. "exclude-from-classmap": [
  8325. "/Tests/"
  8326. ]
  8327. },
  8328. "notification-url": "https://packagist.org/downloads/",
  8329. "license": [
  8330. "MIT"
  8331. ],
  8332. "authors": [
  8333. {
  8334. "name": "Fabien Potencier",
  8335. "email": "fabien@symfony.com"
  8336. },
  8337. {
  8338. "name": "Symfony Community",
  8339. "homepage": "https://symfony.com/contributors"
  8340. }
  8341. ],
  8342. "description": "Finds files and directories via an intuitive fluent interface",
  8343. "homepage": "https://symfony.com",
  8344. "support": {
  8345. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8346. },
  8347. "funding": [
  8348. {
  8349. "url": "https://symfony.com/sponsor",
  8350. "type": "custom"
  8351. },
  8352. {
  8353. "url": "https://github.com/fabpot",
  8354. "type": "github"
  8355. },
  8356. {
  8357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8358. "type": "tidelift"
  8359. }
  8360. ],
  8361. "time": "2024-08-13T14:03:51+00:00"
  8362. },
  8363. {
  8364. "name": "symfony/http-client-contracts",
  8365. "version": "v2.5.3",
  8366. "source": {
  8367. "type": "git",
  8368. "url": "https://github.com/symfony/http-client-contracts.git",
  8369. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  8370. },
  8371. "dist": {
  8372. "type": "zip",
  8373. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8374. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8375. "shasum": ""
  8376. },
  8377. "require": {
  8378. "php": ">=7.2.5"
  8379. },
  8380. "suggest": {
  8381. "symfony/http-client-implementation": ""
  8382. },
  8383. "type": "library",
  8384. "extra": {
  8385. "branch-alias": {
  8386. "dev-main": "2.5-dev"
  8387. },
  8388. "thanks": {
  8389. "name": "symfony/contracts",
  8390. "url": "https://github.com/symfony/contracts"
  8391. }
  8392. },
  8393. "autoload": {
  8394. "psr-4": {
  8395. "Symfony\\Contracts\\HttpClient\\": ""
  8396. }
  8397. },
  8398. "notification-url": "https://packagist.org/downloads/",
  8399. "license": [
  8400. "MIT"
  8401. ],
  8402. "authors": [
  8403. {
  8404. "name": "Nicolas Grekas",
  8405. "email": "p@tchwork.com"
  8406. },
  8407. {
  8408. "name": "Symfony Community",
  8409. "homepage": "https://symfony.com/contributors"
  8410. }
  8411. ],
  8412. "description": "Generic abstractions related to HTTP clients",
  8413. "homepage": "https://symfony.com",
  8414. "keywords": [
  8415. "abstractions",
  8416. "contracts",
  8417. "decoupling",
  8418. "interfaces",
  8419. "interoperability",
  8420. "standards"
  8421. ],
  8422. "support": {
  8423. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  8424. },
  8425. "funding": [
  8426. {
  8427. "url": "https://symfony.com/sponsor",
  8428. "type": "custom"
  8429. },
  8430. {
  8431. "url": "https://github.com/fabpot",
  8432. "type": "github"
  8433. },
  8434. {
  8435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8436. "type": "tidelift"
  8437. }
  8438. ],
  8439. "time": "2024-03-26T19:42:53+00:00"
  8440. },
  8441. {
  8442. "name": "symfony/http-foundation",
  8443. "version": "v4.4.49",
  8444. "source": {
  8445. "type": "git",
  8446. "url": "https://github.com/symfony/http-foundation.git",
  8447. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  8448. },
  8449. "dist": {
  8450. "type": "zip",
  8451. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  8452. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  8453. "shasum": ""
  8454. },
  8455. "require": {
  8456. "php": ">=7.1.3",
  8457. "symfony/mime": "^4.3|^5.0",
  8458. "symfony/polyfill-mbstring": "~1.1",
  8459. "symfony/polyfill-php80": "^1.16"
  8460. },
  8461. "require-dev": {
  8462. "predis/predis": "~1.0",
  8463. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8464. },
  8465. "type": "library",
  8466. "autoload": {
  8467. "psr-4": {
  8468. "Symfony\\Component\\HttpFoundation\\": ""
  8469. },
  8470. "exclude-from-classmap": [
  8471. "/Tests/"
  8472. ]
  8473. },
  8474. "notification-url": "https://packagist.org/downloads/",
  8475. "license": [
  8476. "MIT"
  8477. ],
  8478. "authors": [
  8479. {
  8480. "name": "Fabien Potencier",
  8481. "email": "fabien@symfony.com"
  8482. },
  8483. {
  8484. "name": "Symfony Community",
  8485. "homepage": "https://symfony.com/contributors"
  8486. }
  8487. ],
  8488. "description": "Defines an object-oriented layer for the HTTP specification",
  8489. "homepage": "https://symfony.com",
  8490. "support": {
  8491. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  8492. },
  8493. "funding": [
  8494. {
  8495. "url": "https://symfony.com/sponsor",
  8496. "type": "custom"
  8497. },
  8498. {
  8499. "url": "https://github.com/fabpot",
  8500. "type": "github"
  8501. },
  8502. {
  8503. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8504. "type": "tidelift"
  8505. }
  8506. ],
  8507. "time": "2022-11-04T16:17:57+00:00"
  8508. },
  8509. {
  8510. "name": "symfony/http-kernel",
  8511. "version": "v4.4.51",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/symfony/http-kernel.git",
  8515. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8520. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8521. "shasum": ""
  8522. },
  8523. "require": {
  8524. "php": ">=7.1.3",
  8525. "psr/log": "^1|^2",
  8526. "symfony/error-handler": "^4.4",
  8527. "symfony/event-dispatcher": "^4.4",
  8528. "symfony/http-client-contracts": "^1.1|^2",
  8529. "symfony/http-foundation": "^4.4.30|^5.3.7",
  8530. "symfony/polyfill-ctype": "^1.8",
  8531. "symfony/polyfill-php73": "^1.9",
  8532. "symfony/polyfill-php80": "^1.16"
  8533. },
  8534. "conflict": {
  8535. "symfony/browser-kit": "<4.3",
  8536. "symfony/config": "<3.4",
  8537. "symfony/console": ">=5",
  8538. "symfony/dependency-injection": "<4.3",
  8539. "symfony/translation": "<4.2",
  8540. "twig/twig": "<1.43|<2.13,>=2"
  8541. },
  8542. "provide": {
  8543. "psr/log-implementation": "1.0|2.0"
  8544. },
  8545. "require-dev": {
  8546. "psr/cache": "^1.0|^2.0|^3.0",
  8547. "symfony/browser-kit": "^4.3|^5.0",
  8548. "symfony/config": "^3.4|^4.0|^5.0",
  8549. "symfony/console": "^3.4|^4.0",
  8550. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8551. "symfony/dependency-injection": "^4.3|^5.0",
  8552. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8553. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8554. "symfony/finder": "^3.4|^4.0|^5.0",
  8555. "symfony/process": "^3.4|^4.0|^5.0",
  8556. "symfony/routing": "^3.4|^4.0|^5.0",
  8557. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8558. "symfony/templating": "^3.4|^4.0|^5.0",
  8559. "symfony/translation": "^4.2|^5.0",
  8560. "symfony/translation-contracts": "^1.1|^2",
  8561. "twig/twig": "^1.43|^2.13|^3.0.4"
  8562. },
  8563. "suggest": {
  8564. "symfony/browser-kit": "",
  8565. "symfony/config": "",
  8566. "symfony/console": "",
  8567. "symfony/dependency-injection": ""
  8568. },
  8569. "type": "library",
  8570. "autoload": {
  8571. "psr-4": {
  8572. "Symfony\\Component\\HttpKernel\\": ""
  8573. },
  8574. "exclude-from-classmap": [
  8575. "/Tests/"
  8576. ]
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "MIT"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Fabien Potencier",
  8585. "email": "fabien@symfony.com"
  8586. },
  8587. {
  8588. "name": "Symfony Community",
  8589. "homepage": "https://symfony.com/contributors"
  8590. }
  8591. ],
  8592. "description": "Provides a structured process for converting a Request into a Response",
  8593. "homepage": "https://symfony.com",
  8594. "support": {
  8595. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  8596. },
  8597. "funding": [
  8598. {
  8599. "url": "https://symfony.com/sponsor",
  8600. "type": "custom"
  8601. },
  8602. {
  8603. "url": "https://github.com/fabpot",
  8604. "type": "github"
  8605. },
  8606. {
  8607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8608. "type": "tidelift"
  8609. }
  8610. ],
  8611. "time": "2023-11-10T13:31:29+00:00"
  8612. },
  8613. {
  8614. "name": "symfony/mime",
  8615. "version": "v5.4.13",
  8616. "source": {
  8617. "type": "git",
  8618. "url": "https://github.com/symfony/mime.git",
  8619. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  8620. },
  8621. "dist": {
  8622. "type": "zip",
  8623. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8624. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8625. "shasum": ""
  8626. },
  8627. "require": {
  8628. "php": ">=7.2.5",
  8629. "symfony/deprecation-contracts": "^2.1|^3",
  8630. "symfony/polyfill-intl-idn": "^1.10",
  8631. "symfony/polyfill-mbstring": "^1.0",
  8632. "symfony/polyfill-php80": "^1.16"
  8633. },
  8634. "conflict": {
  8635. "egulias/email-validator": "~3.0.0",
  8636. "phpdocumentor/reflection-docblock": "<3.2.2",
  8637. "phpdocumentor/type-resolver": "<1.4.0",
  8638. "symfony/mailer": "<4.4"
  8639. },
  8640. "require-dev": {
  8641. "egulias/email-validator": "^2.1.10|^3.1",
  8642. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8643. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8644. "symfony/property-access": "^4.4|^5.1|^6.0",
  8645. "symfony/property-info": "^4.4|^5.1|^6.0",
  8646. "symfony/serializer": "^5.2|^6.0"
  8647. },
  8648. "type": "library",
  8649. "autoload": {
  8650. "psr-4": {
  8651. "Symfony\\Component\\Mime\\": ""
  8652. },
  8653. "exclude-from-classmap": [
  8654. "/Tests/"
  8655. ]
  8656. },
  8657. "notification-url": "https://packagist.org/downloads/",
  8658. "license": [
  8659. "MIT"
  8660. ],
  8661. "authors": [
  8662. {
  8663. "name": "Fabien Potencier",
  8664. "email": "fabien@symfony.com"
  8665. },
  8666. {
  8667. "name": "Symfony Community",
  8668. "homepage": "https://symfony.com/contributors"
  8669. }
  8670. ],
  8671. "description": "Allows manipulating MIME messages",
  8672. "homepage": "https://symfony.com",
  8673. "keywords": [
  8674. "mime",
  8675. "mime-type"
  8676. ],
  8677. "support": {
  8678. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  8679. },
  8680. "funding": [
  8681. {
  8682. "url": "https://symfony.com/sponsor",
  8683. "type": "custom"
  8684. },
  8685. {
  8686. "url": "https://github.com/fabpot",
  8687. "type": "github"
  8688. },
  8689. {
  8690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8691. "type": "tidelift"
  8692. }
  8693. ],
  8694. "time": "2022-09-01T18:18:29+00:00"
  8695. },
  8696. {
  8697. "name": "symfony/polyfill-ctype",
  8698. "version": "v1.27.0",
  8699. "source": {
  8700. "type": "git",
  8701. "url": "https://github.com/symfony/polyfill-ctype.git",
  8702. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  8703. },
  8704. "dist": {
  8705. "type": "zip",
  8706. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  8707. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  8708. "shasum": ""
  8709. },
  8710. "require": {
  8711. "php": ">=7.1"
  8712. },
  8713. "provide": {
  8714. "ext-ctype": "*"
  8715. },
  8716. "suggest": {
  8717. "ext-ctype": "For best performance"
  8718. },
  8719. "type": "library",
  8720. "extra": {
  8721. "branch-alias": {
  8722. "dev-main": "1.27-dev"
  8723. },
  8724. "thanks": {
  8725. "name": "symfony/polyfill",
  8726. "url": "https://github.com/symfony/polyfill"
  8727. }
  8728. },
  8729. "autoload": {
  8730. "files": [
  8731. "bootstrap.php"
  8732. ],
  8733. "psr-4": {
  8734. "Symfony\\Polyfill\\Ctype\\": ""
  8735. }
  8736. },
  8737. "notification-url": "https://packagist.org/downloads/",
  8738. "license": [
  8739. "MIT"
  8740. ],
  8741. "authors": [
  8742. {
  8743. "name": "Gert de Pagter",
  8744. "email": "BackEndTea@gmail.com"
  8745. },
  8746. {
  8747. "name": "Symfony Community",
  8748. "homepage": "https://symfony.com/contributors"
  8749. }
  8750. ],
  8751. "description": "Symfony polyfill for ctype functions",
  8752. "homepage": "https://symfony.com",
  8753. "keywords": [
  8754. "compatibility",
  8755. "ctype",
  8756. "polyfill",
  8757. "portable"
  8758. ],
  8759. "support": {
  8760. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  8761. },
  8762. "funding": [
  8763. {
  8764. "url": "https://symfony.com/sponsor",
  8765. "type": "custom"
  8766. },
  8767. {
  8768. "url": "https://github.com/fabpot",
  8769. "type": "github"
  8770. },
  8771. {
  8772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8773. "type": "tidelift"
  8774. }
  8775. ],
  8776. "time": "2022-11-03T14:55:06+00:00"
  8777. },
  8778. {
  8779. "name": "symfony/polyfill-iconv",
  8780. "version": "v1.27.0",
  8781. "source": {
  8782. "type": "git",
  8783. "url": "https://github.com/symfony/polyfill-iconv.git",
  8784. "reference": "927013f3aac555983a5059aada98e1907d842695"
  8785. },
  8786. "dist": {
  8787. "type": "zip",
  8788. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  8789. "reference": "927013f3aac555983a5059aada98e1907d842695",
  8790. "shasum": ""
  8791. },
  8792. "require": {
  8793. "php": ">=7.1"
  8794. },
  8795. "provide": {
  8796. "ext-iconv": "*"
  8797. },
  8798. "suggest": {
  8799. "ext-iconv": "For best performance"
  8800. },
  8801. "type": "library",
  8802. "extra": {
  8803. "branch-alias": {
  8804. "dev-main": "1.27-dev"
  8805. },
  8806. "thanks": {
  8807. "name": "symfony/polyfill",
  8808. "url": "https://github.com/symfony/polyfill"
  8809. }
  8810. },
  8811. "autoload": {
  8812. "files": [
  8813. "bootstrap.php"
  8814. ],
  8815. "psr-4": {
  8816. "Symfony\\Polyfill\\Iconv\\": ""
  8817. }
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "MIT"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Nicolas Grekas",
  8826. "email": "p@tchwork.com"
  8827. },
  8828. {
  8829. "name": "Symfony Community",
  8830. "homepage": "https://symfony.com/contributors"
  8831. }
  8832. ],
  8833. "description": "Symfony polyfill for the Iconv extension",
  8834. "homepage": "https://symfony.com",
  8835. "keywords": [
  8836. "compatibility",
  8837. "iconv",
  8838. "polyfill",
  8839. "portable",
  8840. "shim"
  8841. ],
  8842. "support": {
  8843. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  8844. },
  8845. "funding": [
  8846. {
  8847. "url": "https://symfony.com/sponsor",
  8848. "type": "custom"
  8849. },
  8850. {
  8851. "url": "https://github.com/fabpot",
  8852. "type": "github"
  8853. },
  8854. {
  8855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8856. "type": "tidelift"
  8857. }
  8858. ],
  8859. "time": "2022-11-03T14:55:06+00:00"
  8860. },
  8861. {
  8862. "name": "symfony/polyfill-intl-idn",
  8863. "version": "v1.27.0",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8867. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  8872. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": ">=7.1",
  8877. "symfony/polyfill-intl-normalizer": "^1.10",
  8878. "symfony/polyfill-php72": "^1.10"
  8879. },
  8880. "suggest": {
  8881. "ext-intl": "For best performance"
  8882. },
  8883. "type": "library",
  8884. "extra": {
  8885. "branch-alias": {
  8886. "dev-main": "1.27-dev"
  8887. },
  8888. "thanks": {
  8889. "name": "symfony/polyfill",
  8890. "url": "https://github.com/symfony/polyfill"
  8891. }
  8892. },
  8893. "autoload": {
  8894. "files": [
  8895. "bootstrap.php"
  8896. ],
  8897. "psr-4": {
  8898. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8899. }
  8900. },
  8901. "notification-url": "https://packagist.org/downloads/",
  8902. "license": [
  8903. "MIT"
  8904. ],
  8905. "authors": [
  8906. {
  8907. "name": "Laurent Bassin",
  8908. "email": "laurent@bassin.info"
  8909. },
  8910. {
  8911. "name": "Trevor Rowbotham",
  8912. "email": "trevor.rowbotham@pm.me"
  8913. },
  8914. {
  8915. "name": "Symfony Community",
  8916. "homepage": "https://symfony.com/contributors"
  8917. }
  8918. ],
  8919. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8920. "homepage": "https://symfony.com",
  8921. "keywords": [
  8922. "compatibility",
  8923. "idn",
  8924. "intl",
  8925. "polyfill",
  8926. "portable",
  8927. "shim"
  8928. ],
  8929. "support": {
  8930. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  8931. },
  8932. "funding": [
  8933. {
  8934. "url": "https://symfony.com/sponsor",
  8935. "type": "custom"
  8936. },
  8937. {
  8938. "url": "https://github.com/fabpot",
  8939. "type": "github"
  8940. },
  8941. {
  8942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8943. "type": "tidelift"
  8944. }
  8945. ],
  8946. "time": "2022-11-03T14:55:06+00:00"
  8947. },
  8948. {
  8949. "name": "symfony/polyfill-intl-normalizer",
  8950. "version": "v1.27.0",
  8951. "source": {
  8952. "type": "git",
  8953. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8954. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  8955. },
  8956. "dist": {
  8957. "type": "zip",
  8958. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  8959. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  8960. "shasum": ""
  8961. },
  8962. "require": {
  8963. "php": ">=7.1"
  8964. },
  8965. "suggest": {
  8966. "ext-intl": "For best performance"
  8967. },
  8968. "type": "library",
  8969. "extra": {
  8970. "branch-alias": {
  8971. "dev-main": "1.27-dev"
  8972. },
  8973. "thanks": {
  8974. "name": "symfony/polyfill",
  8975. "url": "https://github.com/symfony/polyfill"
  8976. }
  8977. },
  8978. "autoload": {
  8979. "files": [
  8980. "bootstrap.php"
  8981. ],
  8982. "psr-4": {
  8983. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8984. },
  8985. "classmap": [
  8986. "Resources/stubs"
  8987. ]
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "MIT"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Nicolas Grekas",
  8996. "email": "p@tchwork.com"
  8997. },
  8998. {
  8999. "name": "Symfony Community",
  9000. "homepage": "https://symfony.com/contributors"
  9001. }
  9002. ],
  9003. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9004. "homepage": "https://symfony.com",
  9005. "keywords": [
  9006. "compatibility",
  9007. "intl",
  9008. "normalizer",
  9009. "polyfill",
  9010. "portable",
  9011. "shim"
  9012. ],
  9013. "support": {
  9014. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9015. },
  9016. "funding": [
  9017. {
  9018. "url": "https://symfony.com/sponsor",
  9019. "type": "custom"
  9020. },
  9021. {
  9022. "url": "https://github.com/fabpot",
  9023. "type": "github"
  9024. },
  9025. {
  9026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9027. "type": "tidelift"
  9028. }
  9029. ],
  9030. "time": "2022-11-03T14:55:06+00:00"
  9031. },
  9032. {
  9033. "name": "symfony/polyfill-mbstring",
  9034. "version": "v1.27.0",
  9035. "source": {
  9036. "type": "git",
  9037. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9038. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9039. },
  9040. "dist": {
  9041. "type": "zip",
  9042. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9043. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9044. "shasum": ""
  9045. },
  9046. "require": {
  9047. "php": ">=7.1"
  9048. },
  9049. "provide": {
  9050. "ext-mbstring": "*"
  9051. },
  9052. "suggest": {
  9053. "ext-mbstring": "For best performance"
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "branch-alias": {
  9058. "dev-main": "1.27-dev"
  9059. },
  9060. "thanks": {
  9061. "name": "symfony/polyfill",
  9062. "url": "https://github.com/symfony/polyfill"
  9063. }
  9064. },
  9065. "autoload": {
  9066. "files": [
  9067. "bootstrap.php"
  9068. ],
  9069. "psr-4": {
  9070. "Symfony\\Polyfill\\Mbstring\\": ""
  9071. }
  9072. },
  9073. "notification-url": "https://packagist.org/downloads/",
  9074. "license": [
  9075. "MIT"
  9076. ],
  9077. "authors": [
  9078. {
  9079. "name": "Nicolas Grekas",
  9080. "email": "p@tchwork.com"
  9081. },
  9082. {
  9083. "name": "Symfony Community",
  9084. "homepage": "https://symfony.com/contributors"
  9085. }
  9086. ],
  9087. "description": "Symfony polyfill for the Mbstring extension",
  9088. "homepage": "https://symfony.com",
  9089. "keywords": [
  9090. "compatibility",
  9091. "mbstring",
  9092. "polyfill",
  9093. "portable",
  9094. "shim"
  9095. ],
  9096. "support": {
  9097. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9098. },
  9099. "funding": [
  9100. {
  9101. "url": "https://symfony.com/sponsor",
  9102. "type": "custom"
  9103. },
  9104. {
  9105. "url": "https://github.com/fabpot",
  9106. "type": "github"
  9107. },
  9108. {
  9109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9110. "type": "tidelift"
  9111. }
  9112. ],
  9113. "time": "2022-11-03T14:55:06+00:00"
  9114. },
  9115. {
  9116. "name": "symfony/polyfill-php72",
  9117. "version": "v1.31.0",
  9118. "source": {
  9119. "type": "git",
  9120. "url": "https://github.com/symfony/polyfill-php72.git",
  9121. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9122. },
  9123. "dist": {
  9124. "type": "zip",
  9125. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9126. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9127. "shasum": ""
  9128. },
  9129. "require": {
  9130. "php": ">=7.2"
  9131. },
  9132. "type": "metapackage",
  9133. "extra": {
  9134. "thanks": {
  9135. "name": "symfony/polyfill",
  9136. "url": "https://github.com/symfony/polyfill"
  9137. }
  9138. },
  9139. "notification-url": "https://packagist.org/downloads/",
  9140. "license": [
  9141. "MIT"
  9142. ],
  9143. "authors": [
  9144. {
  9145. "name": "Nicolas Grekas",
  9146. "email": "p@tchwork.com"
  9147. },
  9148. {
  9149. "name": "Symfony Community",
  9150. "homepage": "https://symfony.com/contributors"
  9151. }
  9152. ],
  9153. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9154. "homepage": "https://symfony.com",
  9155. "keywords": [
  9156. "compatibility",
  9157. "polyfill",
  9158. "portable",
  9159. "shim"
  9160. ],
  9161. "support": {
  9162. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9163. },
  9164. "funding": [
  9165. {
  9166. "url": "https://symfony.com/sponsor",
  9167. "type": "custom"
  9168. },
  9169. {
  9170. "url": "https://github.com/fabpot",
  9171. "type": "github"
  9172. },
  9173. {
  9174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9175. "type": "tidelift"
  9176. }
  9177. ],
  9178. "time": "2024-09-09T11:45:10+00:00"
  9179. },
  9180. {
  9181. "name": "symfony/polyfill-php73",
  9182. "version": "v1.31.0",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/symfony/polyfill-php73.git",
  9186. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9191. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9192. "shasum": ""
  9193. },
  9194. "require": {
  9195. "php": ">=7.2"
  9196. },
  9197. "type": "library",
  9198. "extra": {
  9199. "thanks": {
  9200. "name": "symfony/polyfill",
  9201. "url": "https://github.com/symfony/polyfill"
  9202. }
  9203. },
  9204. "autoload": {
  9205. "files": [
  9206. "bootstrap.php"
  9207. ],
  9208. "psr-4": {
  9209. "Symfony\\Polyfill\\Php73\\": ""
  9210. },
  9211. "classmap": [
  9212. "Resources/stubs"
  9213. ]
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "MIT"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Nicolas Grekas",
  9222. "email": "p@tchwork.com"
  9223. },
  9224. {
  9225. "name": "Symfony Community",
  9226. "homepage": "https://symfony.com/contributors"
  9227. }
  9228. ],
  9229. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9230. "homepage": "https://symfony.com",
  9231. "keywords": [
  9232. "compatibility",
  9233. "polyfill",
  9234. "portable",
  9235. "shim"
  9236. ],
  9237. "support": {
  9238. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9239. },
  9240. "funding": [
  9241. {
  9242. "url": "https://symfony.com/sponsor",
  9243. "type": "custom"
  9244. },
  9245. {
  9246. "url": "https://github.com/fabpot",
  9247. "type": "github"
  9248. },
  9249. {
  9250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9251. "type": "tidelift"
  9252. }
  9253. ],
  9254. "time": "2024-09-09T11:45:10+00:00"
  9255. },
  9256. {
  9257. "name": "symfony/polyfill-php80",
  9258. "version": "v1.27.0",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/symfony/polyfill-php80.git",
  9262. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9267. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "php": ">=7.1"
  9272. },
  9273. "type": "library",
  9274. "extra": {
  9275. "branch-alias": {
  9276. "dev-main": "1.27-dev"
  9277. },
  9278. "thanks": {
  9279. "name": "symfony/polyfill",
  9280. "url": "https://github.com/symfony/polyfill"
  9281. }
  9282. },
  9283. "autoload": {
  9284. "files": [
  9285. "bootstrap.php"
  9286. ],
  9287. "psr-4": {
  9288. "Symfony\\Polyfill\\Php80\\": ""
  9289. },
  9290. "classmap": [
  9291. "Resources/stubs"
  9292. ]
  9293. },
  9294. "notification-url": "https://packagist.org/downloads/",
  9295. "license": [
  9296. "MIT"
  9297. ],
  9298. "authors": [
  9299. {
  9300. "name": "Ion Bazan",
  9301. "email": "ion.bazan@gmail.com"
  9302. },
  9303. {
  9304. "name": "Nicolas Grekas",
  9305. "email": "p@tchwork.com"
  9306. },
  9307. {
  9308. "name": "Symfony Community",
  9309. "homepage": "https://symfony.com/contributors"
  9310. }
  9311. ],
  9312. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9313. "homepage": "https://symfony.com",
  9314. "keywords": [
  9315. "compatibility",
  9316. "polyfill",
  9317. "portable",
  9318. "shim"
  9319. ],
  9320. "support": {
  9321. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9322. },
  9323. "funding": [
  9324. {
  9325. "url": "https://symfony.com/sponsor",
  9326. "type": "custom"
  9327. },
  9328. {
  9329. "url": "https://github.com/fabpot",
  9330. "type": "github"
  9331. },
  9332. {
  9333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9334. "type": "tidelift"
  9335. }
  9336. ],
  9337. "time": "2022-11-03T14:55:06+00:00"
  9338. },
  9339. {
  9340. "name": "symfony/process",
  9341. "version": "v4.4.44",
  9342. "source": {
  9343. "type": "git",
  9344. "url": "https://github.com/symfony/process.git",
  9345. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  9346. },
  9347. "dist": {
  9348. "type": "zip",
  9349. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9350. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9351. "shasum": ""
  9352. },
  9353. "require": {
  9354. "php": ">=7.1.3",
  9355. "symfony/polyfill-php80": "^1.16"
  9356. },
  9357. "type": "library",
  9358. "autoload": {
  9359. "psr-4": {
  9360. "Symfony\\Component\\Process\\": ""
  9361. },
  9362. "exclude-from-classmap": [
  9363. "/Tests/"
  9364. ]
  9365. },
  9366. "notification-url": "https://packagist.org/downloads/",
  9367. "license": [
  9368. "MIT"
  9369. ],
  9370. "authors": [
  9371. {
  9372. "name": "Fabien Potencier",
  9373. "email": "fabien@symfony.com"
  9374. },
  9375. {
  9376. "name": "Symfony Community",
  9377. "homepage": "https://symfony.com/contributors"
  9378. }
  9379. ],
  9380. "description": "Executes commands in sub-processes",
  9381. "homepage": "https://symfony.com",
  9382. "support": {
  9383. "source": "https://github.com/symfony/process/tree/v4.4.44"
  9384. },
  9385. "funding": [
  9386. {
  9387. "url": "https://symfony.com/sponsor",
  9388. "type": "custom"
  9389. },
  9390. {
  9391. "url": "https://github.com/fabpot",
  9392. "type": "github"
  9393. },
  9394. {
  9395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9396. "type": "tidelift"
  9397. }
  9398. ],
  9399. "time": "2022-06-27T13:16:42+00:00"
  9400. },
  9401. {
  9402. "name": "symfony/psr-http-message-bridge",
  9403. "version": "v2.1.4",
  9404. "source": {
  9405. "type": "git",
  9406. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9407. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9408. },
  9409. "dist": {
  9410. "type": "zip",
  9411. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9412. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9413. "shasum": ""
  9414. },
  9415. "require": {
  9416. "php": ">=7.1",
  9417. "psr/http-message": "^1.0",
  9418. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9419. },
  9420. "require-dev": {
  9421. "nyholm/psr7": "^1.1",
  9422. "psr/log": "^1.1 || ^2 || ^3",
  9423. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9424. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9425. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9426. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9427. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9428. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9429. },
  9430. "suggest": {
  9431. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9432. },
  9433. "type": "symfony-bridge",
  9434. "extra": {
  9435. "branch-alias": {
  9436. "dev-main": "2.1-dev"
  9437. }
  9438. },
  9439. "autoload": {
  9440. "psr-4": {
  9441. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9442. },
  9443. "exclude-from-classmap": [
  9444. "/Tests/"
  9445. ]
  9446. },
  9447. "notification-url": "https://packagist.org/downloads/",
  9448. "license": [
  9449. "MIT"
  9450. ],
  9451. "authors": [
  9452. {
  9453. "name": "Fabien Potencier",
  9454. "email": "fabien@symfony.com"
  9455. },
  9456. {
  9457. "name": "Symfony Community",
  9458. "homepage": "http://symfony.com/contributors"
  9459. }
  9460. ],
  9461. "description": "PSR HTTP message bridge",
  9462. "homepage": "http://symfony.com",
  9463. "keywords": [
  9464. "http",
  9465. "http-message",
  9466. "psr-17",
  9467. "psr-7"
  9468. ],
  9469. "support": {
  9470. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9471. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9472. },
  9473. "funding": [
  9474. {
  9475. "url": "https://symfony.com/sponsor",
  9476. "type": "custom"
  9477. },
  9478. {
  9479. "url": "https://github.com/fabpot",
  9480. "type": "github"
  9481. },
  9482. {
  9483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9484. "type": "tidelift"
  9485. }
  9486. ],
  9487. "time": "2022-11-28T22:46:34+00:00"
  9488. },
  9489. {
  9490. "name": "symfony/routing",
  9491. "version": "v4.4.44",
  9492. "source": {
  9493. "type": "git",
  9494. "url": "https://github.com/symfony/routing.git",
  9495. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9496. },
  9497. "dist": {
  9498. "type": "zip",
  9499. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9500. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9501. "shasum": ""
  9502. },
  9503. "require": {
  9504. "php": ">=7.1.3",
  9505. "symfony/polyfill-php80": "^1.16"
  9506. },
  9507. "conflict": {
  9508. "symfony/config": "<4.2",
  9509. "symfony/dependency-injection": "<3.4",
  9510. "symfony/yaml": "<3.4"
  9511. },
  9512. "require-dev": {
  9513. "doctrine/annotations": "^1.10.4",
  9514. "psr/log": "^1|^2|^3",
  9515. "symfony/config": "^4.2|^5.0",
  9516. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9517. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9518. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9519. "symfony/yaml": "^3.4|^4.0|^5.0"
  9520. },
  9521. "suggest": {
  9522. "doctrine/annotations": "For using the annotation loader",
  9523. "symfony/config": "For using the all-in-one router or any loader",
  9524. "symfony/expression-language": "For using expression matching",
  9525. "symfony/http-foundation": "For using a Symfony Request object",
  9526. "symfony/yaml": "For using the YAML loader"
  9527. },
  9528. "type": "library",
  9529. "autoload": {
  9530. "psr-4": {
  9531. "Symfony\\Component\\Routing\\": ""
  9532. },
  9533. "exclude-from-classmap": [
  9534. "/Tests/"
  9535. ]
  9536. },
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "license": [
  9539. "MIT"
  9540. ],
  9541. "authors": [
  9542. {
  9543. "name": "Fabien Potencier",
  9544. "email": "fabien@symfony.com"
  9545. },
  9546. {
  9547. "name": "Symfony Community",
  9548. "homepage": "https://symfony.com/contributors"
  9549. }
  9550. ],
  9551. "description": "Maps an HTTP request to a set of configuration variables",
  9552. "homepage": "https://symfony.com",
  9553. "keywords": [
  9554. "router",
  9555. "routing",
  9556. "uri",
  9557. "url"
  9558. ],
  9559. "support": {
  9560. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  9561. },
  9562. "funding": [
  9563. {
  9564. "url": "https://symfony.com/sponsor",
  9565. "type": "custom"
  9566. },
  9567. {
  9568. "url": "https://github.com/fabpot",
  9569. "type": "github"
  9570. },
  9571. {
  9572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9573. "type": "tidelift"
  9574. }
  9575. ],
  9576. "time": "2022-07-20T09:59:04+00:00"
  9577. },
  9578. {
  9579. "name": "symfony/serializer",
  9580. "version": "v4.4.47",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/symfony/serializer.git",
  9584. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  9589. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  9590. "shasum": ""
  9591. },
  9592. "require": {
  9593. "php": ">=7.1.3",
  9594. "symfony/polyfill-ctype": "~1.8",
  9595. "symfony/polyfill-php80": "^1.16"
  9596. },
  9597. "conflict": {
  9598. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  9599. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  9600. "symfony/dependency-injection": "<3.4",
  9601. "symfony/property-access": "<3.4",
  9602. "symfony/property-info": "<3.4",
  9603. "symfony/yaml": "<3.4"
  9604. },
  9605. "require-dev": {
  9606. "doctrine/annotations": "^1.10.4",
  9607. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9608. "symfony/cache": "^3.4|^4.0|^5.0",
  9609. "symfony/config": "^3.4|^4.0|^5.0",
  9610. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9611. "symfony/error-handler": "^4.4|^5.0",
  9612. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9613. "symfony/mime": "^4.4|^5.0",
  9614. "symfony/property-access": "^4.4.36|^5.3.13",
  9615. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  9616. "symfony/validator": "^3.4|^4.0|^5.0",
  9617. "symfony/yaml": "^3.4|^4.0|^5.0"
  9618. },
  9619. "suggest": {
  9620. "doctrine/annotations": "For using the annotation mapping.",
  9621. "psr/cache-implementation": "For using the metadata cache.",
  9622. "symfony/config": "For using the XML mapping loader.",
  9623. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9624. "symfony/property-access": "For using the ObjectNormalizer.",
  9625. "symfony/property-info": "To deserialize relations.",
  9626. "symfony/yaml": "For using the default YAML mapping loader."
  9627. },
  9628. "type": "library",
  9629. "autoload": {
  9630. "psr-4": {
  9631. "Symfony\\Component\\Serializer\\": ""
  9632. },
  9633. "exclude-from-classmap": [
  9634. "/Tests/"
  9635. ]
  9636. },
  9637. "notification-url": "https://packagist.org/downloads/",
  9638. "license": [
  9639. "MIT"
  9640. ],
  9641. "authors": [
  9642. {
  9643. "name": "Fabien Potencier",
  9644. "email": "fabien@symfony.com"
  9645. },
  9646. {
  9647. "name": "Symfony Community",
  9648. "homepage": "https://symfony.com/contributors"
  9649. }
  9650. ],
  9651. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9652. "homepage": "https://symfony.com",
  9653. "support": {
  9654. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  9655. },
  9656. "funding": [
  9657. {
  9658. "url": "https://symfony.com/sponsor",
  9659. "type": "custom"
  9660. },
  9661. {
  9662. "url": "https://github.com/fabpot",
  9663. "type": "github"
  9664. },
  9665. {
  9666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9667. "type": "tidelift"
  9668. }
  9669. ],
  9670. "time": "2022-09-19T08:38:33+00:00"
  9671. },
  9672. {
  9673. "name": "symfony/service-contracts",
  9674. "version": "v2.5.3",
  9675. "source": {
  9676. "type": "git",
  9677. "url": "https://github.com/symfony/service-contracts.git",
  9678. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  9679. },
  9680. "dist": {
  9681. "type": "zip",
  9682. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9683. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9684. "shasum": ""
  9685. },
  9686. "require": {
  9687. "php": ">=7.2.5",
  9688. "psr/container": "^1.1",
  9689. "symfony/deprecation-contracts": "^2.1|^3"
  9690. },
  9691. "conflict": {
  9692. "ext-psr": "<1.1|>=2"
  9693. },
  9694. "suggest": {
  9695. "symfony/service-implementation": ""
  9696. },
  9697. "type": "library",
  9698. "extra": {
  9699. "branch-alias": {
  9700. "dev-main": "2.5-dev"
  9701. },
  9702. "thanks": {
  9703. "name": "symfony/contracts",
  9704. "url": "https://github.com/symfony/contracts"
  9705. }
  9706. },
  9707. "autoload": {
  9708. "psr-4": {
  9709. "Symfony\\Contracts\\Service\\": ""
  9710. }
  9711. },
  9712. "notification-url": "https://packagist.org/downloads/",
  9713. "license": [
  9714. "MIT"
  9715. ],
  9716. "authors": [
  9717. {
  9718. "name": "Nicolas Grekas",
  9719. "email": "p@tchwork.com"
  9720. },
  9721. {
  9722. "name": "Symfony Community",
  9723. "homepage": "https://symfony.com/contributors"
  9724. }
  9725. ],
  9726. "description": "Generic abstractions related to writing services",
  9727. "homepage": "https://symfony.com",
  9728. "keywords": [
  9729. "abstractions",
  9730. "contracts",
  9731. "decoupling",
  9732. "interfaces",
  9733. "interoperability",
  9734. "standards"
  9735. ],
  9736. "support": {
  9737. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  9738. },
  9739. "funding": [
  9740. {
  9741. "url": "https://symfony.com/sponsor",
  9742. "type": "custom"
  9743. },
  9744. {
  9745. "url": "https://github.com/fabpot",
  9746. "type": "github"
  9747. },
  9748. {
  9749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9750. "type": "tidelift"
  9751. }
  9752. ],
  9753. "time": "2023-04-21T15:04:16+00:00"
  9754. },
  9755. {
  9756. "name": "symfony/translation",
  9757. "version": "v4.4.47",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/symfony/translation.git",
  9761. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9766. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  9767. "shasum": ""
  9768. },
  9769. "require": {
  9770. "php": ">=7.1.3",
  9771. "symfony/polyfill-mbstring": "~1.0",
  9772. "symfony/polyfill-php80": "^1.16",
  9773. "symfony/translation-contracts": "^1.1.6|^2"
  9774. },
  9775. "conflict": {
  9776. "symfony/config": "<3.4",
  9777. "symfony/dependency-injection": "<3.4",
  9778. "symfony/http-kernel": "<4.4",
  9779. "symfony/yaml": "<3.4"
  9780. },
  9781. "provide": {
  9782. "symfony/translation-implementation": "1.0|2.0"
  9783. },
  9784. "require-dev": {
  9785. "psr/log": "^1|^2|^3",
  9786. "symfony/config": "^3.4|^4.0|^5.0",
  9787. "symfony/console": "^3.4|^4.0|^5.0",
  9788. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9789. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  9790. "symfony/http-kernel": "^4.4",
  9791. "symfony/intl": "^3.4|^4.0|^5.0",
  9792. "symfony/service-contracts": "^1.1.2|^2",
  9793. "symfony/yaml": "^3.4|^4.0|^5.0"
  9794. },
  9795. "suggest": {
  9796. "psr/log-implementation": "To use logging capability in translator",
  9797. "symfony/config": "",
  9798. "symfony/yaml": ""
  9799. },
  9800. "type": "library",
  9801. "autoload": {
  9802. "psr-4": {
  9803. "Symfony\\Component\\Translation\\": ""
  9804. },
  9805. "exclude-from-classmap": [
  9806. "/Tests/"
  9807. ]
  9808. },
  9809. "notification-url": "https://packagist.org/downloads/",
  9810. "license": [
  9811. "MIT"
  9812. ],
  9813. "authors": [
  9814. {
  9815. "name": "Fabien Potencier",
  9816. "email": "fabien@symfony.com"
  9817. },
  9818. {
  9819. "name": "Symfony Community",
  9820. "homepage": "https://symfony.com/contributors"
  9821. }
  9822. ],
  9823. "description": "Provides tools to internationalize your application",
  9824. "homepage": "https://symfony.com",
  9825. "support": {
  9826. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  9827. },
  9828. "funding": [
  9829. {
  9830. "url": "https://symfony.com/sponsor",
  9831. "type": "custom"
  9832. },
  9833. {
  9834. "url": "https://github.com/fabpot",
  9835. "type": "github"
  9836. },
  9837. {
  9838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9839. "type": "tidelift"
  9840. }
  9841. ],
  9842. "time": "2022-10-03T15:15:11+00:00"
  9843. },
  9844. {
  9845. "name": "symfony/translation-contracts",
  9846. "version": "v2.5.3",
  9847. "source": {
  9848. "type": "git",
  9849. "url": "https://github.com/symfony/translation-contracts.git",
  9850. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  9851. },
  9852. "dist": {
  9853. "type": "zip",
  9854. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9855. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  9856. "shasum": ""
  9857. },
  9858. "require": {
  9859. "php": ">=7.2.5"
  9860. },
  9861. "suggest": {
  9862. "symfony/translation-implementation": ""
  9863. },
  9864. "type": "library",
  9865. "extra": {
  9866. "branch-alias": {
  9867. "dev-main": "2.5-dev"
  9868. },
  9869. "thanks": {
  9870. "name": "symfony/contracts",
  9871. "url": "https://github.com/symfony/contracts"
  9872. }
  9873. },
  9874. "autoload": {
  9875. "psr-4": {
  9876. "Symfony\\Contracts\\Translation\\": ""
  9877. }
  9878. },
  9879. "notification-url": "https://packagist.org/downloads/",
  9880. "license": [
  9881. "MIT"
  9882. ],
  9883. "authors": [
  9884. {
  9885. "name": "Nicolas Grekas",
  9886. "email": "p@tchwork.com"
  9887. },
  9888. {
  9889. "name": "Symfony Community",
  9890. "homepage": "https://symfony.com/contributors"
  9891. }
  9892. ],
  9893. "description": "Generic abstractions related to translation",
  9894. "homepage": "https://symfony.com",
  9895. "keywords": [
  9896. "abstractions",
  9897. "contracts",
  9898. "decoupling",
  9899. "interfaces",
  9900. "interoperability",
  9901. "standards"
  9902. ],
  9903. "support": {
  9904. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  9905. },
  9906. "funding": [
  9907. {
  9908. "url": "https://symfony.com/sponsor",
  9909. "type": "custom"
  9910. },
  9911. {
  9912. "url": "https://github.com/fabpot",
  9913. "type": "github"
  9914. },
  9915. {
  9916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9917. "type": "tidelift"
  9918. }
  9919. ],
  9920. "time": "2024-01-23T13:51:25+00:00"
  9921. },
  9922. {
  9923. "name": "symfony/validator",
  9924. "version": "v4.4.48",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/symfony/validator.git",
  9928. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  9933. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "php": ">=7.1.3",
  9938. "symfony/polyfill-ctype": "~1.8",
  9939. "symfony/polyfill-mbstring": "~1.0",
  9940. "symfony/polyfill-php80": "^1.16",
  9941. "symfony/translation-contracts": "^1.1|^2"
  9942. },
  9943. "conflict": {
  9944. "doctrine/lexer": "<1.1",
  9945. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9946. "symfony/dependency-injection": "<3.4",
  9947. "symfony/http-kernel": "<4.4",
  9948. "symfony/intl": "<4.3",
  9949. "symfony/translation": ">=5.0",
  9950. "symfony/yaml": "<3.4"
  9951. },
  9952. "require-dev": {
  9953. "doctrine/annotations": "^1.10.4",
  9954. "doctrine/cache": "^1.0|^2.0",
  9955. "egulias/email-validator": "^2.1.10|^3",
  9956. "symfony/cache": "^3.4|^4.0|^5.0",
  9957. "symfony/config": "^3.4|^4.0|^5.0",
  9958. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9959. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9960. "symfony/http-client": "^4.3|^5.0",
  9961. "symfony/http-foundation": "^4.1|^5.0",
  9962. "symfony/http-kernel": "^4.4",
  9963. "symfony/intl": "^4.3|^5.0",
  9964. "symfony/mime": "^4.4|^5.0",
  9965. "symfony/property-access": "^3.4|^4.0|^5.0",
  9966. "symfony/property-info": "^3.4|^4.0|^5.0",
  9967. "symfony/translation": "^4.2",
  9968. "symfony/yaml": "^3.4|^4.0|^5.0"
  9969. },
  9970. "suggest": {
  9971. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9972. "doctrine/cache": "For using the default cached annotation reader.",
  9973. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9974. "psr/cache-implementation": "For using the mapping cache.",
  9975. "symfony/config": "",
  9976. "symfony/expression-language": "For using the Expression validator",
  9977. "symfony/http-foundation": "",
  9978. "symfony/intl": "",
  9979. "symfony/property-access": "For accessing properties within comparison constraints",
  9980. "symfony/property-info": "To automatically add NotNull and Type constraints",
  9981. "symfony/translation": "For translating validation errors.",
  9982. "symfony/yaml": ""
  9983. },
  9984. "type": "library",
  9985. "autoload": {
  9986. "psr-4": {
  9987. "Symfony\\Component\\Validator\\": ""
  9988. },
  9989. "exclude-from-classmap": [
  9990. "/Tests/"
  9991. ]
  9992. },
  9993. "notification-url": "https://packagist.org/downloads/",
  9994. "license": [
  9995. "MIT"
  9996. ],
  9997. "authors": [
  9998. {
  9999. "name": "Fabien Potencier",
  10000. "email": "fabien@symfony.com"
  10001. },
  10002. {
  10003. "name": "Symfony Community",
  10004. "homepage": "https://symfony.com/contributors"
  10005. }
  10006. ],
  10007. "description": "Provides tools to validate values",
  10008. "homepage": "https://symfony.com",
  10009. "support": {
  10010. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  10011. },
  10012. "funding": [
  10013. {
  10014. "url": "https://symfony.com/sponsor",
  10015. "type": "custom"
  10016. },
  10017. {
  10018. "url": "https://github.com/fabpot",
  10019. "type": "github"
  10020. },
  10021. {
  10022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10023. "type": "tidelift"
  10024. }
  10025. ],
  10026. "time": "2022-10-25T13:54:11+00:00"
  10027. },
  10028. {
  10029. "name": "symfony/var-dumper",
  10030. "version": "v5.4.43",
  10031. "source": {
  10032. "type": "git",
  10033. "url": "https://github.com/symfony/var-dumper.git",
  10034. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  10035. },
  10036. "dist": {
  10037. "type": "zip",
  10038. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  10039. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  10040. "shasum": ""
  10041. },
  10042. "require": {
  10043. "php": ">=7.2.5",
  10044. "symfony/polyfill-mbstring": "~1.0",
  10045. "symfony/polyfill-php80": "^1.16"
  10046. },
  10047. "conflict": {
  10048. "symfony/console": "<4.4"
  10049. },
  10050. "require-dev": {
  10051. "ext-iconv": "*",
  10052. "symfony/console": "^4.4|^5.0|^6.0",
  10053. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  10054. "symfony/process": "^4.4|^5.0|^6.0",
  10055. "symfony/uid": "^5.1|^6.0",
  10056. "twig/twig": "^2.13|^3.0.4"
  10057. },
  10058. "suggest": {
  10059. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10060. "ext-intl": "To show region name in time zone dump",
  10061. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10062. },
  10063. "bin": [
  10064. "Resources/bin/var-dump-server"
  10065. ],
  10066. "type": "library",
  10067. "autoload": {
  10068. "files": [
  10069. "Resources/functions/dump.php"
  10070. ],
  10071. "psr-4": {
  10072. "Symfony\\Component\\VarDumper\\": ""
  10073. },
  10074. "exclude-from-classmap": [
  10075. "/Tests/"
  10076. ]
  10077. },
  10078. "notification-url": "https://packagist.org/downloads/",
  10079. "license": [
  10080. "MIT"
  10081. ],
  10082. "authors": [
  10083. {
  10084. "name": "Nicolas Grekas",
  10085. "email": "p@tchwork.com"
  10086. },
  10087. {
  10088. "name": "Symfony Community",
  10089. "homepage": "https://symfony.com/contributors"
  10090. }
  10091. ],
  10092. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10093. "homepage": "https://symfony.com",
  10094. "keywords": [
  10095. "debug",
  10096. "dump"
  10097. ],
  10098. "support": {
  10099. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  10100. },
  10101. "funding": [
  10102. {
  10103. "url": "https://symfony.com/sponsor",
  10104. "type": "custom"
  10105. },
  10106. {
  10107. "url": "https://github.com/fabpot",
  10108. "type": "github"
  10109. },
  10110. {
  10111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10112. "type": "tidelift"
  10113. }
  10114. ],
  10115. "time": "2024-08-30T16:01:46+00:00"
  10116. },
  10117. {
  10118. "name": "symfony/yaml",
  10119. "version": "v4.4.45",
  10120. "source": {
  10121. "type": "git",
  10122. "url": "https://github.com/symfony/yaml.git",
  10123. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  10124. },
  10125. "dist": {
  10126. "type": "zip",
  10127. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10128. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10129. "shasum": ""
  10130. },
  10131. "require": {
  10132. "php": ">=7.1.3",
  10133. "symfony/polyfill-ctype": "~1.8"
  10134. },
  10135. "conflict": {
  10136. "symfony/console": "<3.4"
  10137. },
  10138. "require-dev": {
  10139. "symfony/console": "^3.4|^4.0|^5.0"
  10140. },
  10141. "suggest": {
  10142. "symfony/console": "For validating YAML files using the lint command"
  10143. },
  10144. "type": "library",
  10145. "autoload": {
  10146. "psr-4": {
  10147. "Symfony\\Component\\Yaml\\": ""
  10148. },
  10149. "exclude-from-classmap": [
  10150. "/Tests/"
  10151. ]
  10152. },
  10153. "notification-url": "https://packagist.org/downloads/",
  10154. "license": [
  10155. "MIT"
  10156. ],
  10157. "authors": [
  10158. {
  10159. "name": "Fabien Potencier",
  10160. "email": "fabien@symfony.com"
  10161. },
  10162. {
  10163. "name": "Symfony Community",
  10164. "homepage": "https://symfony.com/contributors"
  10165. }
  10166. ],
  10167. "description": "Loads and dumps YAML files",
  10168. "homepage": "https://symfony.com",
  10169. "support": {
  10170. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  10171. },
  10172. "funding": [
  10173. {
  10174. "url": "https://symfony.com/sponsor",
  10175. "type": "custom"
  10176. },
  10177. {
  10178. "url": "https://github.com/fabpot",
  10179. "type": "github"
  10180. },
  10181. {
  10182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10183. "type": "tidelift"
  10184. }
  10185. ],
  10186. "time": "2022-08-02T15:47:23+00:00"
  10187. },
  10188. {
  10189. "name": "twig/twig",
  10190. "version": "v2.15.6",
  10191. "source": {
  10192. "type": "git",
  10193. "url": "https://github.com/twigphp/Twig.git",
  10194. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  10195. },
  10196. "dist": {
  10197. "type": "zip",
  10198. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  10199. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  10200. "shasum": ""
  10201. },
  10202. "require": {
  10203. "php": ">=7.1.3",
  10204. "symfony/polyfill-ctype": "^1.8",
  10205. "symfony/polyfill-mbstring": "^1.3",
  10206. "symfony/polyfill-php72": "^1.8"
  10207. },
  10208. "require-dev": {
  10209. "psr/container": "^1.0",
  10210. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  10211. },
  10212. "type": "library",
  10213. "extra": {
  10214. "branch-alias": {
  10215. "dev-master": "2.15-dev"
  10216. }
  10217. },
  10218. "autoload": {
  10219. "psr-0": {
  10220. "Twig_": "lib/"
  10221. },
  10222. "psr-4": {
  10223. "Twig\\": "src/"
  10224. }
  10225. },
  10226. "notification-url": "https://packagist.org/downloads/",
  10227. "license": [
  10228. "BSD-3-Clause"
  10229. ],
  10230. "authors": [
  10231. {
  10232. "name": "Fabien Potencier",
  10233. "email": "fabien@symfony.com",
  10234. "homepage": "http://fabien.potencier.org",
  10235. "role": "Lead Developer"
  10236. },
  10237. {
  10238. "name": "Twig Team",
  10239. "role": "Contributors"
  10240. },
  10241. {
  10242. "name": "Armin Ronacher",
  10243. "email": "armin.ronacher@active-4.com",
  10244. "role": "Project Founder"
  10245. }
  10246. ],
  10247. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10248. "homepage": "https://twig.symfony.com",
  10249. "keywords": [
  10250. "templating"
  10251. ],
  10252. "support": {
  10253. "issues": "https://github.com/twigphp/Twig/issues",
  10254. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  10255. },
  10256. "funding": [
  10257. {
  10258. "url": "https://github.com/fabpot",
  10259. "type": "github"
  10260. },
  10261. {
  10262. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10263. "type": "tidelift"
  10264. }
  10265. ],
  10266. "time": "2023-11-21T17:34:48+00:00"
  10267. },
  10268. {
  10269. "name": "typo3/phar-stream-wrapper",
  10270. "version": "v3.1.7",
  10271. "source": {
  10272. "type": "git",
  10273. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10274. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  10275. },
  10276. "dist": {
  10277. "type": "zip",
  10278. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10279. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10280. "shasum": ""
  10281. },
  10282. "require": {
  10283. "ext-json": "*",
  10284. "php": "^7.0 || ^8.0"
  10285. },
  10286. "require-dev": {
  10287. "ext-xdebug": "*",
  10288. "phpspec/prophecy": "^1.10",
  10289. "symfony/phpunit-bridge": "^5.1"
  10290. },
  10291. "suggest": {
  10292. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10293. },
  10294. "type": "library",
  10295. "extra": {
  10296. "branch-alias": {
  10297. "dev-master": "v3.x-dev"
  10298. }
  10299. },
  10300. "autoload": {
  10301. "psr-4": {
  10302. "TYPO3\\PharStreamWrapper\\": "src/"
  10303. }
  10304. },
  10305. "notification-url": "https://packagist.org/downloads/",
  10306. "license": [
  10307. "MIT"
  10308. ],
  10309. "description": "Interceptors for PHP's native phar:// stream handling",
  10310. "homepage": "https://typo3.org/",
  10311. "keywords": [
  10312. "phar",
  10313. "php",
  10314. "security",
  10315. "stream-wrapper"
  10316. ],
  10317. "support": {
  10318. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10319. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  10320. },
  10321. "time": "2021-09-20T19:19:13+00:00"
  10322. },
  10323. {
  10324. "name": "vlucas/phpdotenv",
  10325. "version": "v2.6.9",
  10326. "source": {
  10327. "type": "git",
  10328. "url": "https://github.com/vlucas/phpdotenv.git",
  10329. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10330. },
  10331. "dist": {
  10332. "type": "zip",
  10333. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10334. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10335. "shasum": ""
  10336. },
  10337. "require": {
  10338. "php": "^5.3.9 || ^7.0 || ^8.0",
  10339. "symfony/polyfill-ctype": "^1.17"
  10340. },
  10341. "require-dev": {
  10342. "ext-filter": "*",
  10343. "ext-pcre": "*",
  10344. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10345. },
  10346. "suggest": {
  10347. "ext-filter": "Required to use the boolean validator.",
  10348. "ext-pcre": "Required to use most of the library."
  10349. },
  10350. "type": "library",
  10351. "extra": {
  10352. "branch-alias": {
  10353. "dev-master": "2.6-dev"
  10354. }
  10355. },
  10356. "autoload": {
  10357. "psr-4": {
  10358. "Dotenv\\": "src/"
  10359. }
  10360. },
  10361. "notification-url": "https://packagist.org/downloads/",
  10362. "license": [
  10363. "BSD-3-Clause"
  10364. ],
  10365. "authors": [
  10366. {
  10367. "name": "Graham Campbell",
  10368. "email": "hello@gjcampbell.co.uk",
  10369. "homepage": "https://github.com/GrahamCampbell"
  10370. },
  10371. {
  10372. "name": "Vance Lucas",
  10373. "email": "vance@vancelucas.com",
  10374. "homepage": "https://github.com/vlucas"
  10375. }
  10376. ],
  10377. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10378. "keywords": [
  10379. "dotenv",
  10380. "env",
  10381. "environment"
  10382. ],
  10383. "support": {
  10384. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10385. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10386. },
  10387. "funding": [
  10388. {
  10389. "url": "https://github.com/GrahamCampbell",
  10390. "type": "github"
  10391. },
  10392. {
  10393. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10394. "type": "tidelift"
  10395. }
  10396. ],
  10397. "time": "2021-12-12T22:59:22+00:00"
  10398. },
  10399. {
  10400. "name": "webflo/drupal-finder",
  10401. "version": "1.3.1",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/webflo/drupal-finder.git",
  10405. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10410. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10411. "shasum": ""
  10412. },
  10413. "require": {
  10414. "composer-runtime-api": "^2.2",
  10415. "php": ">=8.1"
  10416. },
  10417. "require-dev": {
  10418. "mikey179/vfsstream": "^1.6",
  10419. "phpunit/phpunit": "^10.4",
  10420. "symfony/process": "^6.4"
  10421. },
  10422. "type": "library",
  10423. "autoload": {
  10424. "psr-4": {
  10425. "DrupalFinder\\": "src/"
  10426. }
  10427. },
  10428. "notification-url": "https://packagist.org/downloads/",
  10429. "license": [
  10430. "GPL-2.0-or-later"
  10431. ],
  10432. "authors": [
  10433. {
  10434. "name": "Florian Weber",
  10435. "email": "florian@webflo.org"
  10436. }
  10437. ],
  10438. "description": "Helper class to locate a Drupal installation.",
  10439. "support": {
  10440. "issues": "https://github.com/webflo/drupal-finder/issues",
  10441. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10442. },
  10443. "time": "2024-06-28T13:45:36+00:00"
  10444. },
  10445. {
  10446. "name": "webmozart/assert",
  10447. "version": "1.11.0",
  10448. "source": {
  10449. "type": "git",
  10450. "url": "https://github.com/webmozarts/assert.git",
  10451. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10452. },
  10453. "dist": {
  10454. "type": "zip",
  10455. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10456. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10457. "shasum": ""
  10458. },
  10459. "require": {
  10460. "ext-ctype": "*",
  10461. "php": "^7.2 || ^8.0"
  10462. },
  10463. "conflict": {
  10464. "phpstan/phpstan": "<0.12.20",
  10465. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10466. },
  10467. "require-dev": {
  10468. "phpunit/phpunit": "^8.5.13"
  10469. },
  10470. "type": "library",
  10471. "extra": {
  10472. "branch-alias": {
  10473. "dev-master": "1.10-dev"
  10474. }
  10475. },
  10476. "autoload": {
  10477. "psr-4": {
  10478. "Webmozart\\Assert\\": "src/"
  10479. }
  10480. },
  10481. "notification-url": "https://packagist.org/downloads/",
  10482. "license": [
  10483. "MIT"
  10484. ],
  10485. "authors": [
  10486. {
  10487. "name": "Bernhard Schussek",
  10488. "email": "bschussek@gmail.com"
  10489. }
  10490. ],
  10491. "description": "Assertions to validate method input/output with nice error messages.",
  10492. "keywords": [
  10493. "assert",
  10494. "check",
  10495. "validate"
  10496. ],
  10497. "support": {
  10498. "issues": "https://github.com/webmozarts/assert/issues",
  10499. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10500. },
  10501. "time": "2022-06-03T18:03:27+00:00"
  10502. },
  10503. {
  10504. "name": "webmozart/path-util",
  10505. "version": "2.3.0",
  10506. "source": {
  10507. "type": "git",
  10508. "url": "https://github.com/webmozart/path-util.git",
  10509. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10510. },
  10511. "dist": {
  10512. "type": "zip",
  10513. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10514. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10515. "shasum": ""
  10516. },
  10517. "require": {
  10518. "php": ">=5.3.3",
  10519. "webmozart/assert": "~1.0"
  10520. },
  10521. "require-dev": {
  10522. "phpunit/phpunit": "^4.6",
  10523. "sebastian/version": "^1.0.1"
  10524. },
  10525. "type": "library",
  10526. "extra": {
  10527. "branch-alias": {
  10528. "dev-master": "2.3-dev"
  10529. }
  10530. },
  10531. "autoload": {
  10532. "psr-4": {
  10533. "Webmozart\\PathUtil\\": "src/"
  10534. }
  10535. },
  10536. "notification-url": "https://packagist.org/downloads/",
  10537. "license": [
  10538. "MIT"
  10539. ],
  10540. "authors": [
  10541. {
  10542. "name": "Bernhard Schussek",
  10543. "email": "bschussek@gmail.com"
  10544. }
  10545. ],
  10546. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10547. "support": {
  10548. "issues": "https://github.com/webmozart/path-util/issues",
  10549. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10550. },
  10551. "abandoned": "symfony/filesystem",
  10552. "time": "2015-12-17T08:42:14+00:00"
  10553. }
  10554. ],
  10555. "packages-dev": [],
  10556. "aliases": [],
  10557. "minimum-stability": "dev",
  10558. "stability-flags": {
  10559. "drupal/basic": 15,
  10560. "drupal/bulkdelete": 20,
  10561. "drupal/config_update": 15,
  10562. "drupal/context": 5,
  10563. "drupal/domain": 10,
  10564. "drupal/filefield_sources": 20,
  10565. "drupal/linkit": 10
  10566. },
  10567. "prefer-stable": true,
  10568. "prefer-lowest": false,
  10569. "platform": {
  10570. "php": ">=5.6"
  10571. },
  10572. "platform-dev": [],
  10573. "plugin-api-version": "2.6.0"
  10574. }