composer.lock 400 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883
  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": "c39d0bf5321445cf3ca6638c960d6f30",
  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/cache",
  1300. "version": "1.13.0",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/doctrine/cache.git",
  1304. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  1309. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "php": "~7.1 || ^8.0"
  1314. },
  1315. "conflict": {
  1316. "doctrine/common": ">2.2,<2.4"
  1317. },
  1318. "require-dev": {
  1319. "alcaeus/mongo-php-adapter": "^1.1",
  1320. "cache/integration-tests": "dev-master",
  1321. "doctrine/coding-standard": "^9",
  1322. "mongodb/mongodb": "^1.1",
  1323. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1324. "predis/predis": "~1.0",
  1325. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1326. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1327. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1328. },
  1329. "suggest": {
  1330. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1331. },
  1332. "type": "library",
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Guilherme Blanco",
  1345. "email": "guilhermeblanco@gmail.com"
  1346. },
  1347. {
  1348. "name": "Roman Borschel",
  1349. "email": "roman@code-factory.org"
  1350. },
  1351. {
  1352. "name": "Benjamin Eberlei",
  1353. "email": "kontakt@beberlei.de"
  1354. },
  1355. {
  1356. "name": "Jonathan Wage",
  1357. "email": "jonwage@gmail.com"
  1358. },
  1359. {
  1360. "name": "Johannes Schmitt",
  1361. "email": "schmittjoh@gmail.com"
  1362. }
  1363. ],
  1364. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1365. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1366. "keywords": [
  1367. "abstraction",
  1368. "apcu",
  1369. "cache",
  1370. "caching",
  1371. "couchdb",
  1372. "memcached",
  1373. "php",
  1374. "redis",
  1375. "xcache"
  1376. ],
  1377. "support": {
  1378. "issues": "https://github.com/doctrine/cache/issues",
  1379. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  1380. },
  1381. "funding": [
  1382. {
  1383. "url": "https://www.doctrine-project.org/sponsorship.html",
  1384. "type": "custom"
  1385. },
  1386. {
  1387. "url": "https://www.patreon.com/phpdoctrine",
  1388. "type": "patreon"
  1389. },
  1390. {
  1391. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1392. "type": "tidelift"
  1393. }
  1394. ],
  1395. "time": "2022-05-20T20:06:54+00:00"
  1396. },
  1397. {
  1398. "name": "doctrine/collections",
  1399. "version": "1.8.0",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/doctrine/collections.git",
  1403. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1408. "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e",
  1409. "shasum": ""
  1410. },
  1411. "require": {
  1412. "doctrine/deprecations": "^0.5.3 || ^1",
  1413. "php": "^7.1.3 || ^8.0"
  1414. },
  1415. "require-dev": {
  1416. "doctrine/coding-standard": "^9.0 || ^10.0",
  1417. "phpstan/phpstan": "^1.4.8",
  1418. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
  1419. "vimeo/psalm": "^4.22"
  1420. },
  1421. "type": "library",
  1422. "autoload": {
  1423. "psr-4": {
  1424. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  1425. }
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Guilherme Blanco",
  1434. "email": "guilhermeblanco@gmail.com"
  1435. },
  1436. {
  1437. "name": "Roman Borschel",
  1438. "email": "roman@code-factory.org"
  1439. },
  1440. {
  1441. "name": "Benjamin Eberlei",
  1442. "email": "kontakt@beberlei.de"
  1443. },
  1444. {
  1445. "name": "Jonathan Wage",
  1446. "email": "jonwage@gmail.com"
  1447. },
  1448. {
  1449. "name": "Johannes Schmitt",
  1450. "email": "schmittjoh@gmail.com"
  1451. }
  1452. ],
  1453. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1454. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1455. "keywords": [
  1456. "array",
  1457. "collections",
  1458. "iterators",
  1459. "php"
  1460. ],
  1461. "support": {
  1462. "issues": "https://github.com/doctrine/collections/issues",
  1463. "source": "https://github.com/doctrine/collections/tree/1.8.0"
  1464. },
  1465. "time": "2022-09-01T20:12:10+00:00"
  1466. },
  1467. {
  1468. "name": "doctrine/common",
  1469. "version": "2.13.3",
  1470. "source": {
  1471. "type": "git",
  1472. "url": "https://github.com/doctrine/common.git",
  1473. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f"
  1474. },
  1475. "dist": {
  1476. "type": "zip",
  1477. "url": "https://api.github.com/repos/doctrine/common/zipball/f3812c026e557892c34ef37f6ab808a6b567da7f",
  1478. "reference": "f3812c026e557892c34ef37f6ab808a6b567da7f",
  1479. "shasum": ""
  1480. },
  1481. "require": {
  1482. "doctrine/annotations": "^1.0",
  1483. "doctrine/cache": "^1.0",
  1484. "doctrine/collections": "^1.0",
  1485. "doctrine/event-manager": "^1.0",
  1486. "doctrine/inflector": "^1.0",
  1487. "doctrine/lexer": "^1.0",
  1488. "doctrine/persistence": "^1.3.3",
  1489. "doctrine/reflection": "^1.0",
  1490. "php": "^7.1 || ^8.0"
  1491. },
  1492. "require-dev": {
  1493. "doctrine/coding-standard": "^1.0",
  1494. "phpstan/phpstan": "^0.11",
  1495. "phpstan/phpstan-phpunit": "^0.11",
  1496. "phpunit/phpunit": "^7.0",
  1497. "squizlabs/php_codesniffer": "^3.0",
  1498. "symfony/phpunit-bridge": "^4.0.5"
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-master": "2.11.x-dev"
  1504. }
  1505. },
  1506. "autoload": {
  1507. "psr-4": {
  1508. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1509. }
  1510. },
  1511. "notification-url": "https://packagist.org/downloads/",
  1512. "license": [
  1513. "MIT"
  1514. ],
  1515. "authors": [
  1516. {
  1517. "name": "Guilherme Blanco",
  1518. "email": "guilhermeblanco@gmail.com"
  1519. },
  1520. {
  1521. "name": "Roman Borschel",
  1522. "email": "roman@code-factory.org"
  1523. },
  1524. {
  1525. "name": "Benjamin Eberlei",
  1526. "email": "kontakt@beberlei.de"
  1527. },
  1528. {
  1529. "name": "Jonathan Wage",
  1530. "email": "jonwage@gmail.com"
  1531. },
  1532. {
  1533. "name": "Johannes Schmitt",
  1534. "email": "schmittjoh@gmail.com"
  1535. },
  1536. {
  1537. "name": "Marco Pivetta",
  1538. "email": "ocramius@gmail.com"
  1539. }
  1540. ],
  1541. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.",
  1542. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1543. "keywords": [
  1544. "common",
  1545. "doctrine",
  1546. "php"
  1547. ],
  1548. "support": {
  1549. "issues": "https://github.com/doctrine/common/issues",
  1550. "source": "https://github.com/doctrine/common/tree/2.13.x"
  1551. },
  1552. "funding": [
  1553. {
  1554. "url": "https://www.doctrine-project.org/sponsorship.html",
  1555. "type": "custom"
  1556. },
  1557. {
  1558. "url": "https://www.patreon.com/phpdoctrine",
  1559. "type": "patreon"
  1560. },
  1561. {
  1562. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1563. "type": "tidelift"
  1564. }
  1565. ],
  1566. "time": "2020-06-05T16:46:05+00:00"
  1567. },
  1568. {
  1569. "name": "doctrine/deprecations",
  1570. "version": "1.1.3",
  1571. "source": {
  1572. "type": "git",
  1573. "url": "https://github.com/doctrine/deprecations.git",
  1574. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1575. },
  1576. "dist": {
  1577. "type": "zip",
  1578. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1579. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1580. "shasum": ""
  1581. },
  1582. "require": {
  1583. "php": "^7.1 || ^8.0"
  1584. },
  1585. "require-dev": {
  1586. "doctrine/coding-standard": "^9",
  1587. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1588. "phpstan/phpstan-phpunit": "^1.0",
  1589. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1590. "psalm/plugin-phpunit": "0.18.4",
  1591. "psr/log": "^1 || ^2 || ^3",
  1592. "vimeo/psalm": "4.30.0 || 5.12.0"
  1593. },
  1594. "suggest": {
  1595. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1596. },
  1597. "type": "library",
  1598. "autoload": {
  1599. "psr-4": {
  1600. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1601. }
  1602. },
  1603. "notification-url": "https://packagist.org/downloads/",
  1604. "license": [
  1605. "MIT"
  1606. ],
  1607. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1608. "homepage": "https://www.doctrine-project.org/",
  1609. "support": {
  1610. "issues": "https://github.com/doctrine/deprecations/issues",
  1611. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1612. },
  1613. "time": "2024-01-30T19:34:25+00:00"
  1614. },
  1615. {
  1616. "name": "doctrine/event-manager",
  1617. "version": "1.2.0",
  1618. "source": {
  1619. "type": "git",
  1620. "url": "https://github.com/doctrine/event-manager.git",
  1621. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  1622. },
  1623. "dist": {
  1624. "type": "zip",
  1625. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1626. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1627. "shasum": ""
  1628. },
  1629. "require": {
  1630. "doctrine/deprecations": "^0.5.3 || ^1",
  1631. "php": "^7.1 || ^8.0"
  1632. },
  1633. "conflict": {
  1634. "doctrine/common": "<2.9"
  1635. },
  1636. "require-dev": {
  1637. "doctrine/coding-standard": "^9 || ^10",
  1638. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  1639. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1640. "vimeo/psalm": "^4.24"
  1641. },
  1642. "type": "library",
  1643. "autoload": {
  1644. "psr-4": {
  1645. "Doctrine\\Common\\": "src"
  1646. }
  1647. },
  1648. "notification-url": "https://packagist.org/downloads/",
  1649. "license": [
  1650. "MIT"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "Guilherme Blanco",
  1655. "email": "guilhermeblanco@gmail.com"
  1656. },
  1657. {
  1658. "name": "Roman Borschel",
  1659. "email": "roman@code-factory.org"
  1660. },
  1661. {
  1662. "name": "Benjamin Eberlei",
  1663. "email": "kontakt@beberlei.de"
  1664. },
  1665. {
  1666. "name": "Jonathan Wage",
  1667. "email": "jonwage@gmail.com"
  1668. },
  1669. {
  1670. "name": "Johannes Schmitt",
  1671. "email": "schmittjoh@gmail.com"
  1672. },
  1673. {
  1674. "name": "Marco Pivetta",
  1675. "email": "ocramius@gmail.com"
  1676. }
  1677. ],
  1678. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1679. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1680. "keywords": [
  1681. "event",
  1682. "event dispatcher",
  1683. "event manager",
  1684. "event system",
  1685. "events"
  1686. ],
  1687. "support": {
  1688. "issues": "https://github.com/doctrine/event-manager/issues",
  1689. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  1690. },
  1691. "funding": [
  1692. {
  1693. "url": "https://www.doctrine-project.org/sponsorship.html",
  1694. "type": "custom"
  1695. },
  1696. {
  1697. "url": "https://www.patreon.com/phpdoctrine",
  1698. "type": "patreon"
  1699. },
  1700. {
  1701. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1702. "type": "tidelift"
  1703. }
  1704. ],
  1705. "time": "2022-10-12T20:51:15+00:00"
  1706. },
  1707. {
  1708. "name": "doctrine/inflector",
  1709. "version": "1.4.4",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/doctrine/inflector.git",
  1713. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1718. "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "^7.1 || ^8.0"
  1723. },
  1724. "require-dev": {
  1725. "doctrine/coding-standard": "^8.0",
  1726. "phpstan/phpstan": "^0.12",
  1727. "phpstan/phpstan-phpunit": "^0.12",
  1728. "phpstan/phpstan-strict-rules": "^0.12",
  1729. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "branch-alias": {
  1734. "dev-master": "2.0.x-dev"
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector",
  1740. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Guilherme Blanco",
  1750. "email": "guilhermeblanco@gmail.com"
  1751. },
  1752. {
  1753. "name": "Roman Borschel",
  1754. "email": "roman@code-factory.org"
  1755. },
  1756. {
  1757. "name": "Benjamin Eberlei",
  1758. "email": "kontakt@beberlei.de"
  1759. },
  1760. {
  1761. "name": "Jonathan Wage",
  1762. "email": "jonwage@gmail.com"
  1763. },
  1764. {
  1765. "name": "Johannes Schmitt",
  1766. "email": "schmittjoh@gmail.com"
  1767. }
  1768. ],
  1769. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1770. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1771. "keywords": [
  1772. "inflection",
  1773. "inflector",
  1774. "lowercase",
  1775. "manipulation",
  1776. "php",
  1777. "plural",
  1778. "singular",
  1779. "strings",
  1780. "uppercase",
  1781. "words"
  1782. ],
  1783. "support": {
  1784. "issues": "https://github.com/doctrine/inflector/issues",
  1785. "source": "https://github.com/doctrine/inflector/tree/1.4.4"
  1786. },
  1787. "funding": [
  1788. {
  1789. "url": "https://www.doctrine-project.org/sponsorship.html",
  1790. "type": "custom"
  1791. },
  1792. {
  1793. "url": "https://www.patreon.com/phpdoctrine",
  1794. "type": "patreon"
  1795. },
  1796. {
  1797. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1798. "type": "tidelift"
  1799. }
  1800. ],
  1801. "time": "2021-04-16T17:34:40+00:00"
  1802. },
  1803. {
  1804. "name": "doctrine/lexer",
  1805. "version": "1.2.3",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/doctrine/lexer.git",
  1809. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1814. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "php": "^7.1 || ^8.0"
  1819. },
  1820. "require-dev": {
  1821. "doctrine/coding-standard": "^9.0",
  1822. "phpstan/phpstan": "^1.3",
  1823. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1824. "vimeo/psalm": "^4.11"
  1825. },
  1826. "type": "library",
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1830. }
  1831. },
  1832. "notification-url": "https://packagist.org/downloads/",
  1833. "license": [
  1834. "MIT"
  1835. ],
  1836. "authors": [
  1837. {
  1838. "name": "Guilherme Blanco",
  1839. "email": "guilhermeblanco@gmail.com"
  1840. },
  1841. {
  1842. "name": "Roman Borschel",
  1843. "email": "roman@code-factory.org"
  1844. },
  1845. {
  1846. "name": "Johannes Schmitt",
  1847. "email": "schmittjoh@gmail.com"
  1848. }
  1849. ],
  1850. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1851. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1852. "keywords": [
  1853. "annotations",
  1854. "docblock",
  1855. "lexer",
  1856. "parser",
  1857. "php"
  1858. ],
  1859. "support": {
  1860. "issues": "https://github.com/doctrine/lexer/issues",
  1861. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1862. },
  1863. "funding": [
  1864. {
  1865. "url": "https://www.doctrine-project.org/sponsorship.html",
  1866. "type": "custom"
  1867. },
  1868. {
  1869. "url": "https://www.patreon.com/phpdoctrine",
  1870. "type": "patreon"
  1871. },
  1872. {
  1873. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1874. "type": "tidelift"
  1875. }
  1876. ],
  1877. "time": "2022-02-28T11:07:21+00:00"
  1878. },
  1879. {
  1880. "name": "doctrine/persistence",
  1881. "version": "1.3.8",
  1882. "source": {
  1883. "type": "git",
  1884. "url": "https://github.com/doctrine/persistence.git",
  1885. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288"
  1886. },
  1887. "dist": {
  1888. "type": "zip",
  1889. "url": "https://api.github.com/repos/doctrine/persistence/zipball/7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1890. "reference": "7a6eac9fb6f61bba91328f15aa7547f4806ca288",
  1891. "shasum": ""
  1892. },
  1893. "require": {
  1894. "doctrine/annotations": "^1.0",
  1895. "doctrine/cache": "^1.0",
  1896. "doctrine/collections": "^1.0",
  1897. "doctrine/event-manager": "^1.0",
  1898. "doctrine/reflection": "^1.2",
  1899. "php": "^7.1 || ^8.0"
  1900. },
  1901. "conflict": {
  1902. "doctrine/common": "<2.10@dev"
  1903. },
  1904. "require-dev": {
  1905. "doctrine/coding-standard": "^6.0",
  1906. "phpstan/phpstan": "^0.11",
  1907. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1908. "vimeo/psalm": "^3.11"
  1909. },
  1910. "type": "library",
  1911. "extra": {
  1912. "branch-alias": {
  1913. "dev-master": "1.3.x-dev"
  1914. }
  1915. },
  1916. "autoload": {
  1917. "psr-4": {
  1918. "Doctrine\\Common\\": "lib/Doctrine/Common",
  1919. "Doctrine\\Persistence\\": "lib/Doctrine/Persistence"
  1920. }
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "authors": [
  1927. {
  1928. "name": "Guilherme Blanco",
  1929. "email": "guilhermeblanco@gmail.com"
  1930. },
  1931. {
  1932. "name": "Roman Borschel",
  1933. "email": "roman@code-factory.org"
  1934. },
  1935. {
  1936. "name": "Benjamin Eberlei",
  1937. "email": "kontakt@beberlei.de"
  1938. },
  1939. {
  1940. "name": "Jonathan Wage",
  1941. "email": "jonwage@gmail.com"
  1942. },
  1943. {
  1944. "name": "Johannes Schmitt",
  1945. "email": "schmittjoh@gmail.com"
  1946. },
  1947. {
  1948. "name": "Marco Pivetta",
  1949. "email": "ocramius@gmail.com"
  1950. }
  1951. ],
  1952. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1953. "homepage": "https://doctrine-project.org/projects/persistence.html",
  1954. "keywords": [
  1955. "mapper",
  1956. "object",
  1957. "odm",
  1958. "orm",
  1959. "persistence"
  1960. ],
  1961. "support": {
  1962. "issues": "https://github.com/doctrine/persistence/issues",
  1963. "source": "https://github.com/doctrine/persistence/tree/1.3.x"
  1964. },
  1965. "funding": [
  1966. {
  1967. "url": "https://www.doctrine-project.org/sponsorship.html",
  1968. "type": "custom"
  1969. },
  1970. {
  1971. "url": "https://www.patreon.com/phpdoctrine",
  1972. "type": "patreon"
  1973. },
  1974. {
  1975. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1976. "type": "tidelift"
  1977. }
  1978. ],
  1979. "time": "2020-06-20T12:56:16+00:00"
  1980. },
  1981. {
  1982. "name": "doctrine/reflection",
  1983. "version": "1.2.4",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/doctrine/reflection.git",
  1987. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1992. "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "doctrine/annotations": "^1.0 || ^2.0",
  1997. "ext-tokenizer": "*",
  1998. "php": "^7.1 || ^8.0"
  1999. },
  2000. "conflict": {
  2001. "doctrine/common": "<2.9"
  2002. },
  2003. "require-dev": {
  2004. "doctrine/coding-standard": "^9",
  2005. "doctrine/common": "^3.3",
  2006. "phpstan/phpstan": "^1.4.10",
  2007. "phpstan/phpstan-phpunit": "^1",
  2008. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  2009. },
  2010. "type": "library",
  2011. "autoload": {
  2012. "psr-4": {
  2013. "Doctrine\\Common\\": "lib/Doctrine/Common"
  2014. }
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Guilherme Blanco",
  2023. "email": "guilhermeblanco@gmail.com"
  2024. },
  2025. {
  2026. "name": "Roman Borschel",
  2027. "email": "roman@code-factory.org"
  2028. },
  2029. {
  2030. "name": "Benjamin Eberlei",
  2031. "email": "kontakt@beberlei.de"
  2032. },
  2033. {
  2034. "name": "Jonathan Wage",
  2035. "email": "jonwage@gmail.com"
  2036. },
  2037. {
  2038. "name": "Johannes Schmitt",
  2039. "email": "schmittjoh@gmail.com"
  2040. },
  2041. {
  2042. "name": "Marco Pivetta",
  2043. "email": "ocramius@gmail.com"
  2044. }
  2045. ],
  2046. "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.",
  2047. "homepage": "https://www.doctrine-project.org/projects/reflection.html",
  2048. "keywords": [
  2049. "reflection",
  2050. "static"
  2051. ],
  2052. "support": {
  2053. "issues": "https://github.com/doctrine/reflection/issues",
  2054. "source": "https://github.com/doctrine/reflection/tree/1.2.4"
  2055. },
  2056. "abandoned": "roave/better-reflection",
  2057. "time": "2023-07-27T18:11:59+00:00"
  2058. },
  2059. {
  2060. "name": "drupal/addtoany",
  2061. "version": "1.22.0",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://git.drupalcode.org/project/addtoany.git",
  2065. "reference": "8.x-1.22"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.22.zip",
  2070. "reference": "8.x-1.22",
  2071. "shasum": "350bfc33c163d11d137005cb56e6a1f0eaa35f04"
  2072. },
  2073. "require": {
  2074. "drupal/core": "^8 || ^9"
  2075. },
  2076. "type": "drupal-module",
  2077. "extra": {
  2078. "drupal": {
  2079. "version": "8.x-1.22",
  2080. "datestamp": "1698826527",
  2081. "security-coverage": {
  2082. "status": "covered",
  2083. "message": "Covered by Drupal's security advisory policy"
  2084. }
  2085. }
  2086. },
  2087. "notification-url": "https://packages.drupal.org/8/downloads",
  2088. "license": [
  2089. "GPL-2.0-or-later"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "AddToAny",
  2094. "homepage": "https://www.drupal.org/user/2640913"
  2095. },
  2096. {
  2097. "name": "micropat",
  2098. "homepage": "https://www.drupal.org/user/260224"
  2099. }
  2100. ],
  2101. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  2102. "homepage": "https://www.drupal.org/project/addtoany",
  2103. "keywords": [
  2104. "Drupal"
  2105. ],
  2106. "support": {
  2107. "source": "https://git.drupalcode.org/project/addtoany",
  2108. "issues": "https://www.drupal.org/project/issues/addtoany"
  2109. }
  2110. },
  2111. {
  2112. "name": "drupal/admin_toolbar",
  2113. "version": "2.5.0",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2117. "reference": "8.x-2.5"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  2122. "reference": "8.x-2.5",
  2123. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  2124. },
  2125. "require": {
  2126. "drupal/core": "^8.8.0 || ^9.0"
  2127. },
  2128. "type": "drupal-module",
  2129. "extra": {
  2130. "drupal": {
  2131. "version": "8.x-2.5",
  2132. "datestamp": "1629907119",
  2133. "security-coverage": {
  2134. "status": "covered",
  2135. "message": "Covered by Drupal's security advisory policy"
  2136. }
  2137. }
  2138. },
  2139. "notification-url": "https://packages.drupal.org/8/downloads",
  2140. "license": [
  2141. "GPL-2.0-or-later"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Wilfrid Roze (eme)",
  2146. "homepage": "https://www.drupal.org/u/eme",
  2147. "role": "Maintainer"
  2148. },
  2149. {
  2150. "name": "Romain Jarraud (romainj)",
  2151. "homepage": "https://www.drupal.org/u/romainj",
  2152. "role": "Maintainer"
  2153. },
  2154. {
  2155. "name": "Adrian Cid Almaguer (adriancid)",
  2156. "homepage": "https://www.drupal.org/u/adriancid",
  2157. "email": "adriancid@gmail.com",
  2158. "role": "Maintainer"
  2159. },
  2160. {
  2161. "name": "Mohamed Anis Taktak (matio89)",
  2162. "homepage": "https://www.drupal.org/u/matio89",
  2163. "role": "Maintainer"
  2164. },
  2165. {
  2166. "name": "japerry",
  2167. "homepage": "https://www.drupal.org/user/45640"
  2168. },
  2169. {
  2170. "name": "matio89",
  2171. "homepage": "https://www.drupal.org/user/2320090"
  2172. },
  2173. {
  2174. "name": "musa.thomas",
  2175. "homepage": "https://www.drupal.org/user/1213824"
  2176. },
  2177. {
  2178. "name": "romainj",
  2179. "homepage": "https://www.drupal.org/user/370706"
  2180. }
  2181. ],
  2182. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2183. "homepage": "http://drupal.org/project/admin_toolbar",
  2184. "keywords": [
  2185. "Drupal",
  2186. "Toolbar"
  2187. ],
  2188. "support": {
  2189. "source": "https://git.drupalcode.org/project/admin_toolbar",
  2190. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2191. }
  2192. },
  2193. {
  2194. "name": "drupal/adminimal_theme",
  2195. "version": "1.6.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2199. "reference": "8.x-1.6"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  2204. "reference": "8.x-1.6",
  2205. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  2206. },
  2207. "require": {
  2208. "drupal/core": "^8.8 || ^9"
  2209. },
  2210. "type": "drupal-theme",
  2211. "extra": {
  2212. "drupal": {
  2213. "version": "8.x-1.6",
  2214. "datestamp": "1602006937",
  2215. "security-coverage": {
  2216. "status": "covered",
  2217. "message": "Covered by Drupal's security advisory policy"
  2218. }
  2219. }
  2220. },
  2221. "notification-url": "https://packages.drupal.org/8/downloads",
  2222. "license": [
  2223. "GPL-2.0+"
  2224. ],
  2225. "authors": [
  2226. {
  2227. "name": "ANDiTKO",
  2228. "homepage": "https://www.drupal.org/user/1428124"
  2229. },
  2230. {
  2231. "name": "andrey.troeglazov",
  2232. "homepage": "https://www.drupal.org/user/3145389"
  2233. },
  2234. {
  2235. "name": "realityloop",
  2236. "homepage": "https://www.drupal.org/user/139189"
  2237. },
  2238. {
  2239. "name": "rjjakes",
  2240. "homepage": "https://www.drupal.org/user/3457245"
  2241. }
  2242. ],
  2243. "description": "Drupal administration theme with modern minimalist design.",
  2244. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2245. "support": {
  2246. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2247. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2248. }
  2249. },
  2250. {
  2251. "name": "drupal/audiofield",
  2252. "version": "1.13.0",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://git.drupalcode.org/project/audiofield.git",
  2256. "reference": "8.x-1.13"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2261. "reference": "8.x-1.13",
  2262. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2263. },
  2264. "require": {
  2265. "drupal/core": "^8 || ^9 || ^10"
  2266. },
  2267. "type": "drupal-module",
  2268. "extra": {
  2269. "drupal": {
  2270. "version": "8.x-1.13",
  2271. "datestamp": "1681143245",
  2272. "security-coverage": {
  2273. "status": "covered",
  2274. "message": "Covered by Drupal's security advisory policy"
  2275. }
  2276. },
  2277. "drush": {
  2278. "services": {
  2279. "drush.services.yml": "^9"
  2280. }
  2281. }
  2282. },
  2283. "notification-url": "https://packages.drupal.org/8/downloads",
  2284. "license": [
  2285. "GPL-2.0-or-later"
  2286. ],
  2287. "authors": [
  2288. {
  2289. "name": "Daniel Moberly",
  2290. "homepage": "https://www.drupal.org/u/danielmoberly",
  2291. "role": "Maintainer"
  2292. },
  2293. {
  2294. "name": "tamerzg",
  2295. "homepage": "https://www.drupal.org/user/464564"
  2296. }
  2297. ],
  2298. "description": "AudioField Module",
  2299. "homepage": "https://www.drupal.org/project/audiofield",
  2300. "support": {
  2301. "source": "https://git.drupalcode.org/project/audiofield",
  2302. "issues": "https://www.drupal.org/project/issues/audiofield"
  2303. }
  2304. },
  2305. {
  2306. "name": "drupal/autologout",
  2307. "version": "1.3.0",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://git.drupalcode.org/project/autologout.git",
  2311. "reference": "8.x-1.3"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2316. "reference": "8.x-1.3",
  2317. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2318. },
  2319. "require": {
  2320. "drupal/core": "^8 || ^9"
  2321. },
  2322. "type": "drupal-module",
  2323. "extra": {
  2324. "drupal": {
  2325. "version": "8.x-1.3",
  2326. "datestamp": "1587193798",
  2327. "security-coverage": {
  2328. "status": "covered",
  2329. "message": "Covered by Drupal's security advisory policy"
  2330. }
  2331. }
  2332. },
  2333. "notification-url": "https://packages.drupal.org/8/downloads",
  2334. "license": [
  2335. "GPL-2.0+"
  2336. ],
  2337. "authors": [
  2338. {
  2339. "name": "ajits",
  2340. "homepage": "https://www.drupal.org/user/981944"
  2341. },
  2342. {
  2343. "name": "AjK",
  2344. "homepage": "https://www.drupal.org/user/39030"
  2345. },
  2346. {
  2347. "name": "boshtian",
  2348. "homepage": "https://www.drupal.org/user/1773456"
  2349. },
  2350. {
  2351. "name": "dandrews",
  2352. "homepage": "https://www.drupal.org/user/2014490"
  2353. },
  2354. {
  2355. "name": "darksnow",
  2356. "homepage": "https://www.drupal.org/user/391915"
  2357. },
  2358. {
  2359. "name": "japerry",
  2360. "homepage": "https://www.drupal.org/user/45640"
  2361. },
  2362. {
  2363. "name": "johnennew",
  2364. "homepage": "https://www.drupal.org/user/1150042"
  2365. },
  2366. {
  2367. "name": "jrglasgow",
  2368. "homepage": "https://www.drupal.org/user/36590"
  2369. },
  2370. {
  2371. "name": "kmasood",
  2372. "homepage": "https://www.drupal.org/user/1262860"
  2373. },
  2374. {
  2375. "name": "levelos",
  2376. "homepage": "https://www.drupal.org/user/54135"
  2377. },
  2378. {
  2379. "name": "prabeen.giri",
  2380. "homepage": "https://www.drupal.org/user/913078"
  2381. },
  2382. {
  2383. "name": "scott_earnest",
  2384. "homepage": "https://www.drupal.org/user/416158"
  2385. },
  2386. {
  2387. "name": "str8",
  2388. "homepage": "https://www.drupal.org/user/2865063"
  2389. }
  2390. ],
  2391. "description": "Adds automated timed logout.",
  2392. "homepage": "http://drupal.org/project/autologout",
  2393. "support": {
  2394. "source": "https://git.drupalcode.org/project/autologout"
  2395. }
  2396. },
  2397. {
  2398. "name": "drupal/basic",
  2399. "version": "2.1.0",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://git.drupalcode.org/project/basic.git",
  2403. "reference": "8.x-2.1"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  2408. "reference": "8.x-2.1",
  2409. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  2410. },
  2411. "require": {
  2412. "drupal/core": "^8.8 || ^9"
  2413. },
  2414. "type": "drupal-theme",
  2415. "extra": {
  2416. "drupal": {
  2417. "version": "8.x-2.1",
  2418. "datestamp": "1612916291",
  2419. "security-coverage": {
  2420. "status": "covered",
  2421. "message": "Covered by Drupal's security advisory policy"
  2422. }
  2423. }
  2424. },
  2425. "notification-url": "https://packages.drupal.org/8/downloads",
  2426. "license": [
  2427. "GPL-2.0+"
  2428. ],
  2429. "authors": [
  2430. {
  2431. "name": "Steve Krueger",
  2432. "homepage": "http://thejibe.com",
  2433. "email": "steve@thejibe.com",
  2434. "role": "Maintainer"
  2435. },
  2436. {
  2437. "name": "Joël Pittet",
  2438. "homepage": "https://www.drupal.org/u/joelpittet",
  2439. "email": "joel@pittet.ca",
  2440. "role": "Maintainer"
  2441. },
  2442. {
  2443. "name": "Leah Wagner",
  2444. "homepage": "http://thejibe.com",
  2445. "email": "leah@thejibe.com",
  2446. "role": "Maintainer"
  2447. },
  2448. {
  2449. "name": "Catherine Winters",
  2450. "homepage": "http://www.catherinewinters.com",
  2451. "email": "catherine@catherinewinters.com",
  2452. "role": "Maintainer"
  2453. },
  2454. {
  2455. "name": "Johannes Schmidt",
  2456. "homepage": "http://2tabs.com",
  2457. "email": "mail@2tabs.com",
  2458. "role": "Maintainer"
  2459. },
  2460. {
  2461. "name": "Chuck Kosman",
  2462. "homepage": "http://thejibe.com",
  2463. "email": "chuck@thejibe.com",
  2464. "role": "Maintainer"
  2465. },
  2466. {
  2467. "name": "SteveK",
  2468. "homepage": "https://www.drupal.org/user/111656"
  2469. }
  2470. ],
  2471. "description": "HTML5, SASS, Responsive grid starter theme.",
  2472. "homepage": "http://drupal.org/project/basic",
  2473. "support": {
  2474. "source": "http://cgit.drupalcode.org/basic",
  2475. "issues": "https://www.drupal.org/project/issues/basic",
  2476. "irc": "irc://irc.freenode.org/drupal-contribute"
  2477. }
  2478. },
  2479. {
  2480. "name": "drupal/better_messages",
  2481. "version": "2.0.0-alpha2",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://git.drupalcode.org/project/better_messages.git",
  2485. "reference": "2.0.0-alpha2"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2490. "reference": "2.0.0-alpha2",
  2491. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2492. },
  2493. "require": {
  2494. "drupal/core": "^8 || ^9"
  2495. },
  2496. "type": "drupal-module",
  2497. "extra": {
  2498. "drupal": {
  2499. "version": "2.0.0-alpha2",
  2500. "datestamp": "1644241962",
  2501. "security-coverage": {
  2502. "status": "not-covered",
  2503. "message": "Alpha releases are not covered by Drupal security advisories."
  2504. }
  2505. }
  2506. },
  2507. "notification-url": "https://packages.drupal.org/8/downloads",
  2508. "license": [
  2509. "GPL-2.0-or-later"
  2510. ],
  2511. "authors": [
  2512. {
  2513. "name": "bucefal91",
  2514. "homepage": "https://www.drupal.org/user/504128"
  2515. },
  2516. {
  2517. "name": "le72",
  2518. "homepage": "https://www.drupal.org/user/1866896"
  2519. },
  2520. {
  2521. "name": "mohammed j. razem",
  2522. "homepage": "https://www.drupal.org/user/255384"
  2523. },
  2524. {
  2525. "name": "usingsession",
  2526. "homepage": "https://www.drupal.org/user/3582050"
  2527. }
  2528. ],
  2529. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2530. "homepage": "https://www.drupal.org/project/better_messages",
  2531. "support": {
  2532. "source": "https://git.drupalcode.org/project/better_messages"
  2533. }
  2534. },
  2535. {
  2536. "name": "drupal/bulkdelete",
  2537. "version": "dev-1.x",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2541. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2542. },
  2543. "require": {
  2544. "drupal/core": "^8.7.7 || ^9 || ^10"
  2545. },
  2546. "type": "drupal-module",
  2547. "extra": {
  2548. "branch-alias": {
  2549. "dev-1.x": "1.x-dev"
  2550. },
  2551. "drupal": {
  2552. "version": "8.x-1.x-dev",
  2553. "datestamp": "1655322426",
  2554. "security-coverage": {
  2555. "status": "not-covered",
  2556. "message": "Dev releases are not covered by Drupal security advisories."
  2557. }
  2558. }
  2559. },
  2560. "notification-url": "https://packages.drupal.org/8/downloads",
  2561. "license": [
  2562. "GPL-2.0-or-later"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Kars-T",
  2567. "homepage": "https://www.drupal.org/user/224499"
  2568. },
  2569. {
  2570. "name": "Rahul Seth",
  2571. "homepage": "https://www.drupal.org/user/2694359"
  2572. },
  2573. {
  2574. "name": "adriancid",
  2575. "homepage": "https://www.drupal.org/user/1962106"
  2576. },
  2577. {
  2578. "name": "robertDouglass",
  2579. "homepage": "https://www.drupal.org/user/5449"
  2580. }
  2581. ],
  2582. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2583. "homepage": "https://www.drupal.org/project/bulkdelete",
  2584. "support": {
  2585. "source": "https://git.drupalcode.org/project/bulkdelete"
  2586. }
  2587. },
  2588. {
  2589. "name": "drupal/color_field",
  2590. "version": "2.5.0",
  2591. "source": {
  2592. "type": "git",
  2593. "url": "https://git.drupalcode.org/project/color_field.git",
  2594. "reference": "8.x-2.5"
  2595. },
  2596. "dist": {
  2597. "type": "zip",
  2598. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.5.zip",
  2599. "reference": "8.x-2.5",
  2600. "shasum": "9b0d299cb24d3cb21c7fb6a6a08d32ae5aed8652"
  2601. },
  2602. "require": {
  2603. "drupal/core": "^8 || ^9"
  2604. },
  2605. "require-dev": {
  2606. "drupal/core-recommended": "*",
  2607. "drupal/token": "~1.3"
  2608. },
  2609. "suggest": {
  2610. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2611. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2612. },
  2613. "type": "drupal-module",
  2614. "extra": {
  2615. "drupal": {
  2616. "version": "8.x-2.5",
  2617. "datestamp": "1632938098",
  2618. "security-coverage": {
  2619. "status": "covered",
  2620. "message": "Covered by Drupal's security advisory policy"
  2621. }
  2622. }
  2623. },
  2624. "notification-url": "https://packages.drupal.org/8/downloads",
  2625. "license": [
  2626. "GPL-2.0-or-later"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "targoo",
  2631. "homepage": "https://www.drupal.org/user/431910",
  2632. "role": "Maintainer"
  2633. },
  2634. {
  2635. "name": "Nick Wilde",
  2636. "homepage": "https://www.drupal.org/user/nickwilde",
  2637. "role": "Maintainer"
  2638. },
  2639. {
  2640. "name": "targoo",
  2641. "homepage": "https://www.drupal.org/user/431910"
  2642. }
  2643. ],
  2644. "description": "Provides a color field type to store the color value and opacity",
  2645. "homepage": "https://www.drupal.org/project/color_field",
  2646. "support": {
  2647. "source": "https://git.drupalcode.org/project/color_field",
  2648. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2649. }
  2650. },
  2651. {
  2652. "name": "drupal/config_devel",
  2653. "version": "1.8.0",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://git.drupalcode.org/project/config_devel.git",
  2657. "reference": "8.x-1.8"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2662. "reference": "8.x-1.8",
  2663. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2664. },
  2665. "require": {
  2666. "drupal/core": "^8 || ^9"
  2667. },
  2668. "type": "drupal-module",
  2669. "extra": {
  2670. "drupal": {
  2671. "version": "8.x-1.8",
  2672. "datestamp": "1609324318",
  2673. "security-coverage": {
  2674. "status": "covered",
  2675. "message": "Covered by Drupal's security advisory policy"
  2676. }
  2677. }
  2678. },
  2679. "notification-url": "https://packages.drupal.org/8/downloads",
  2680. "license": [
  2681. "GPL-2.0+"
  2682. ],
  2683. "authors": [
  2684. {
  2685. "name": "alexpott",
  2686. "homepage": "https://www.drupal.org/user/157725"
  2687. },
  2688. {
  2689. "name": "benjy",
  2690. "homepage": "https://www.drupal.org/user/1852732"
  2691. },
  2692. {
  2693. "name": "chx",
  2694. "homepage": "https://www.drupal.org/user/9446"
  2695. },
  2696. {
  2697. "name": "joachim",
  2698. "homepage": "https://www.drupal.org/user/107701"
  2699. },
  2700. {
  2701. "name": "vijaycs85",
  2702. "homepage": "https://www.drupal.org/user/93488"
  2703. }
  2704. ],
  2705. "description": "Helps developers work with configuration.",
  2706. "homepage": "https://www.drupal.org/project/config_devel",
  2707. "support": {
  2708. "source": "https://git.drupalcode.org/project/config_devel"
  2709. }
  2710. },
  2711. {
  2712. "name": "drupal/config_filter",
  2713. "version": "1.12.0",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://git.drupalcode.org/project/config_filter.git",
  2717. "reference": "8.x-1.12"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2722. "reference": "8.x-1.12",
  2723. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2724. },
  2725. "require": {
  2726. "drupal/core": "^8.8 || ^9 || ^10"
  2727. },
  2728. "suggest": {
  2729. "drupal/config_split": "Split site configuration for different environments."
  2730. },
  2731. "type": "drupal-module",
  2732. "extra": {
  2733. "drupal": {
  2734. "version": "8.x-1.12",
  2735. "datestamp": "1698308496",
  2736. "security-coverage": {
  2737. "status": "covered",
  2738. "message": "Covered by Drupal's security advisory policy"
  2739. }
  2740. }
  2741. },
  2742. "notification-url": "https://packages.drupal.org/8/downloads",
  2743. "license": [
  2744. "GPL-2.0-or-later"
  2745. ],
  2746. "authors": [
  2747. {
  2748. "name": "Fabian Bircher",
  2749. "homepage": "https://www.drupal.org/u/bircher",
  2750. "email": "opensource@fabianbircher.com",
  2751. "role": "Maintainer"
  2752. },
  2753. {
  2754. "name": "Nuvole Web",
  2755. "homepage": "http://nuvole.org",
  2756. "email": "info@nuvole.org",
  2757. "role": "Maintainer"
  2758. },
  2759. {
  2760. "name": "pescetti",
  2761. "homepage": "https://www.drupal.org/user/436244"
  2762. }
  2763. ],
  2764. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2765. "homepage": "https://www.drupal.org/project/config_filter",
  2766. "keywords": [
  2767. "Drupal",
  2768. "configuration",
  2769. "configuration management"
  2770. ],
  2771. "support": {
  2772. "source": "https://git.drupalcode.org/project/config_filter",
  2773. "issues": "https://www.drupal.org/project/issues/config_filter",
  2774. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2775. }
  2776. },
  2777. {
  2778. "name": "drupal/config_ignore",
  2779. "version": "3.3.0",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2783. "reference": "8.x-3.3"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2788. "reference": "8.x-3.3",
  2789. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2790. },
  2791. "require": {
  2792. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2793. },
  2794. "require-dev": {
  2795. "drupal/config_filter": "^1.8||^2.2",
  2796. "drush/drush": "^10 || ^11 || ^12"
  2797. },
  2798. "type": "drupal-module",
  2799. "extra": {
  2800. "drupal": {
  2801. "version": "8.x-3.3",
  2802. "datestamp": "1713299496",
  2803. "security-coverage": {
  2804. "status": "covered",
  2805. "message": "Covered by Drupal's security advisory policy"
  2806. }
  2807. }
  2808. },
  2809. "notification-url": "https://packages.drupal.org/8/downloads",
  2810. "license": [
  2811. "GPL-2.0-or-later"
  2812. ],
  2813. "authors": [
  2814. {
  2815. "name": "Tommy Lynge Jørgensen",
  2816. "homepage": "https://www.drupal.org/u/tlyngej",
  2817. "email": "tlyngej@gmail.com",
  2818. "role": "Maintainer"
  2819. },
  2820. {
  2821. "name": "Fabian Bircher",
  2822. "homepage": "https://www.drupal.org/u/bircher",
  2823. "role": "Maintainer"
  2824. },
  2825. {
  2826. "name": "tlyngej",
  2827. "homepage": "https://www.drupal.org/user/413139"
  2828. }
  2829. ],
  2830. "description": "Ignore certain configuration during import and export.",
  2831. "homepage": "http://drupal.org/project/config_ignore",
  2832. "support": {
  2833. "source": "https://git.drupalcode.org/project/config_ignore",
  2834. "issues": "http://drupal.org/project/config_ignore"
  2835. }
  2836. },
  2837. {
  2838. "name": "drupal/config_update",
  2839. "version": "1.7.0",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://git.drupalcode.org/project/config_update.git",
  2843. "reference": "8.x-1.7"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2848. "reference": "8.x-1.7",
  2849. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2850. },
  2851. "require": {
  2852. "drupal/core": "^8 || ^9"
  2853. },
  2854. "type": "drupal-module",
  2855. "extra": {
  2856. "drupal": {
  2857. "version": "8.x-1.7",
  2858. "datestamp": "1586355587",
  2859. "security-coverage": {
  2860. "status": "covered",
  2861. "message": "Covered by Drupal's security advisory policy"
  2862. }
  2863. }
  2864. },
  2865. "notification-url": "https://packages.drupal.org/8/downloads",
  2866. "license": [
  2867. "GPL-2.0-or-later"
  2868. ],
  2869. "authors": [
  2870. {
  2871. "name": "codebymikey",
  2872. "homepage": "https://www.drupal.org/user/3573206"
  2873. },
  2874. {
  2875. "name": "pasqualle",
  2876. "homepage": "https://www.drupal.org/user/80733"
  2877. },
  2878. {
  2879. "name": "vishalkhode",
  2880. "homepage": "https://www.drupal.org/user/2439156"
  2881. }
  2882. ],
  2883. "description": "Provides basic revert and update functionality for other modules",
  2884. "homepage": "https://www.drupal.org/project/config_update",
  2885. "support": {
  2886. "source": "https://git.drupalcode.org/project/config_update"
  2887. }
  2888. },
  2889. {
  2890. "name": "drupal/context",
  2891. "version": "4.1.0",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://git.drupalcode.org/project/context.git",
  2895. "reference": "8.x-4.1"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2900. "reference": "8.x-4.1",
  2901. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2902. },
  2903. "require": {
  2904. "drupal/core": "^8.8 || ^9"
  2905. },
  2906. "type": "drupal-module",
  2907. "extra": {
  2908. "drupal": {
  2909. "version": "8.x-4.1",
  2910. "datestamp": "1628187190",
  2911. "security-coverage": {
  2912. "status": "covered",
  2913. "message": "Covered by Drupal's security advisory policy"
  2914. }
  2915. }
  2916. },
  2917. "notification-url": "https://packages.drupal.org/8/downloads",
  2918. "license": [
  2919. "MIT"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "Christoffer Palm",
  2924. "homepage": "http://www.oddhill.se/",
  2925. "email": "christoffer.palm@oddhill.se",
  2926. "role": "Developer"
  2927. },
  2928. {
  2929. "name": "boshtian",
  2930. "homepage": "https://www.drupal.org/user/1773456"
  2931. },
  2932. {
  2933. "name": "colan",
  2934. "homepage": "https://www.drupal.org/user/58704"
  2935. },
  2936. {
  2937. "name": "emanaton",
  2938. "homepage": "https://www.drupal.org/user/120853"
  2939. },
  2940. {
  2941. "name": "febbraro",
  2942. "homepage": "https://www.drupal.org/user/43670"
  2943. },
  2944. {
  2945. "name": "fizk",
  2946. "homepage": "https://www.drupal.org/user/473174"
  2947. },
  2948. {
  2949. "name": "hass",
  2950. "homepage": "https://www.drupal.org/user/85918"
  2951. },
  2952. {
  2953. "name": "hefox",
  2954. "homepage": "https://www.drupal.org/user/426416"
  2955. },
  2956. {
  2957. "name": "jmiccolis",
  2958. "homepage": "https://www.drupal.org/user/31731"
  2959. },
  2960. {
  2961. "name": "Kristen Pol",
  2962. "homepage": "https://www.drupal.org/user/8389"
  2963. },
  2964. {
  2965. "name": "nedjo",
  2966. "homepage": "https://www.drupal.org/user/4481"
  2967. },
  2968. {
  2969. "name": "NormySan",
  2970. "homepage": "https://www.drupal.org/user/112352"
  2971. },
  2972. {
  2973. "name": "patricksettle",
  2974. "homepage": "https://www.drupal.org/user/26618"
  2975. },
  2976. {
  2977. "name": "paulocs",
  2978. "homepage": "https://www.drupal.org/user/3640109"
  2979. },
  2980. {
  2981. "name": "Steven Jones",
  2982. "homepage": "https://www.drupal.org/user/99644"
  2983. },
  2984. {
  2985. "name": "tekante",
  2986. "homepage": "https://www.drupal.org/user/640024"
  2987. },
  2988. {
  2989. "name": "yhahn",
  2990. "homepage": "https://www.drupal.org/user/264833"
  2991. }
  2992. ],
  2993. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2994. "homepage": "https://github.com/oddhill/context",
  2995. "keywords": [
  2996. "Drupal",
  2997. "block",
  2998. "conditions",
  2999. "context",
  3000. "visibility"
  3001. ],
  3002. "support": {
  3003. "source": "https://github.com/oddhill/context",
  3004. "issues": "https://github.com/oddhill/context/issues",
  3005. "docs": "https://github.com/oddhill/context"
  3006. }
  3007. },
  3008. {
  3009. "name": "drupal/core",
  3010. "version": "9.5.11",
  3011. "source": {
  3012. "type": "git",
  3013. "url": "https://github.com/drupal/core.git",
  3014. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19"
  3015. },
  3016. "dist": {
  3017. "type": "zip",
  3018. "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19",
  3019. "reference": "8afcb233c2a71501b35fed2713167c37831d5c19",
  3020. "shasum": ""
  3021. },
  3022. "require": {
  3023. "asm89/stack-cors": "^1.3",
  3024. "composer/semver": "^3.3",
  3025. "doctrine/annotations": "^1.13",
  3026. "doctrine/reflection": "^1.2",
  3027. "egulias/email-validator": "^2.1.22|^3.2",
  3028. "ext-date": "*",
  3029. "ext-dom": "*",
  3030. "ext-filter": "*",
  3031. "ext-gd": "*",
  3032. "ext-hash": "*",
  3033. "ext-json": "*",
  3034. "ext-pcre": "*",
  3035. "ext-pdo": "*",
  3036. "ext-session": "*",
  3037. "ext-simplexml": "*",
  3038. "ext-spl": "*",
  3039. "ext-tokenizer": "*",
  3040. "ext-xml": "*",
  3041. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  3042. "laminas/laminas-feed": "^2.17",
  3043. "longwave/laminas-diactoros": "^2.14",
  3044. "masterminds/html5": "^2.7",
  3045. "pear/archive_tar": "^1.4.14",
  3046. "php": ">=7.3.0",
  3047. "psr/log": "^1.1",
  3048. "stack/builder": "^1.0",
  3049. "symfony-cmf/routing": "^2.3",
  3050. "symfony/console": "^4.4",
  3051. "symfony/dependency-injection": "^4.4",
  3052. "symfony/event-dispatcher": "^4.4",
  3053. "symfony/http-foundation": "^4.4.7",
  3054. "symfony/http-kernel": "^4.4",
  3055. "symfony/mime": "^5.4",
  3056. "symfony/polyfill-iconv": "^1.26",
  3057. "symfony/polyfill-php80": "^1.26",
  3058. "symfony/process": "^4.4",
  3059. "symfony/psr-http-message-bridge": "^2.1",
  3060. "symfony/routing": "^4.4",
  3061. "symfony/serializer": "^4.4",
  3062. "symfony/translation": "^4.4",
  3063. "symfony/validator": "^4.4",
  3064. "symfony/yaml": "^4.4.19",
  3065. "twig/twig": "^2.15.3",
  3066. "typo3/phar-stream-wrapper": "^3.1.3"
  3067. },
  3068. "conflict": {
  3069. "drush/drush": "<8.1.10",
  3070. "symfony/http-foundation": "4.4.42"
  3071. },
  3072. "replace": {
  3073. "drupal/core-annotation": "self.version",
  3074. "drupal/core-assertion": "self.version",
  3075. "drupal/core-bridge": "self.version",
  3076. "drupal/core-class-finder": "self.version",
  3077. "drupal/core-datetime": "self.version",
  3078. "drupal/core-dependency-injection": "self.version",
  3079. "drupal/core-diff": "self.version",
  3080. "drupal/core-discovery": "self.version",
  3081. "drupal/core-event-dispatcher": "self.version",
  3082. "drupal/core-file-cache": "self.version",
  3083. "drupal/core-file-security": "self.version",
  3084. "drupal/core-filesystem": "self.version",
  3085. "drupal/core-front-matter": "self.version",
  3086. "drupal/core-gettext": "self.version",
  3087. "drupal/core-graph": "self.version",
  3088. "drupal/core-http-foundation": "self.version",
  3089. "drupal/core-php-storage": "self.version",
  3090. "drupal/core-plugin": "self.version",
  3091. "drupal/core-proxy-builder": "self.version",
  3092. "drupal/core-render": "self.version",
  3093. "drupal/core-serialization": "self.version",
  3094. "drupal/core-transliteration": "self.version",
  3095. "drupal/core-utility": "self.version",
  3096. "drupal/core-uuid": "self.version",
  3097. "drupal/core-version": "self.version"
  3098. },
  3099. "type": "drupal-core",
  3100. "extra": {
  3101. "drupal-scaffold": {
  3102. "file-mapping": {
  3103. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3104. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3105. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3106. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3107. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3108. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3109. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3110. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3111. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3112. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3113. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3114. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3115. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3116. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3117. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3118. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3119. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3120. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3121. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3122. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3123. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3124. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3125. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3126. }
  3127. }
  3128. },
  3129. "autoload": {
  3130. "files": [
  3131. "includes/bootstrap.inc",
  3132. "includes/guzzle_php81_shim.php"
  3133. ],
  3134. "psr-4": {
  3135. "Drupal\\Core\\": "lib/Drupal/Core",
  3136. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  3137. "Drupal\\Component\\": "lib/Drupal/Component"
  3138. },
  3139. "classmap": [
  3140. "lib/Drupal.php",
  3141. "lib/Drupal/Component/DependencyInjection/Container.php",
  3142. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3143. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3144. "lib/Drupal/Component/Utility/Timer.php",
  3145. "lib/Drupal/Component/Utility/Unicode.php",
  3146. "lib/Drupal/Core/Cache/Cache.php",
  3147. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3148. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3149. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3150. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3151. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3152. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3153. "lib/Drupal/Core/Database/Connection.php",
  3154. "lib/Drupal/Core/Database/Database.php",
  3155. "lib/Drupal/Core/Database/Statement.php",
  3156. "lib/Drupal/Core/Database/StatementInterface.php",
  3157. "lib/Drupal/Core/DependencyInjection/Container.php",
  3158. "lib/Drupal/Core/DrupalKernel.php",
  3159. "lib/Drupal/Core/DrupalKernelInterface.php",
  3160. "lib/Drupal/Core/Http/InputBag.php",
  3161. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3162. "lib/Drupal/Core/Site/Settings.php"
  3163. ]
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "GPL-2.0-or-later"
  3168. ],
  3169. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3170. "support": {
  3171. "source": "https://github.com/drupal/core/tree/9.5.11"
  3172. },
  3173. "time": "2023-09-19T17:58:28+00:00"
  3174. },
  3175. {
  3176. "name": "drupal/core-composer-scaffold",
  3177. "version": "9.5.11",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3181. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  3186. "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7",
  3187. "shasum": ""
  3188. },
  3189. "require": {
  3190. "composer-plugin-api": "^1 || ^2",
  3191. "php": ">=7.3.0"
  3192. },
  3193. "conflict": {
  3194. "drupal-composer/drupal-scaffold": "*"
  3195. },
  3196. "require-dev": {
  3197. "composer/composer": "^1.8@stable"
  3198. },
  3199. "type": "composer-plugin",
  3200. "extra": {
  3201. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3202. "branch-alias": {
  3203. "dev-master": "1.0.x-dev"
  3204. }
  3205. },
  3206. "autoload": {
  3207. "psr-4": {
  3208. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3209. }
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "GPL-2.0-or-later"
  3214. ],
  3215. "description": "A flexible Composer project scaffold builder.",
  3216. "homepage": "https://www.drupal.org/project/drupal",
  3217. "keywords": [
  3218. "drupal"
  3219. ],
  3220. "support": {
  3221. "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11"
  3222. },
  3223. "time": "2023-04-30T16:17:33+00:00"
  3224. },
  3225. {
  3226. "name": "drupal/core-project-message",
  3227. "version": "9.5.11",
  3228. "source": {
  3229. "type": "git",
  3230. "url": "https://github.com/drupal/core-project-message.git",
  3231. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c"
  3232. },
  3233. "dist": {
  3234. "type": "zip",
  3235. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c",
  3236. "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c",
  3237. "shasum": ""
  3238. },
  3239. "require": {
  3240. "composer-plugin-api": "^1.1 || ^2",
  3241. "php": ">=7.3.0"
  3242. },
  3243. "type": "composer-plugin",
  3244. "extra": {
  3245. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3246. },
  3247. "autoload": {
  3248. "psr-4": {
  3249. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3250. }
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "GPL-2.0-or-later"
  3255. ],
  3256. "description": "Adds a message after Composer installation.",
  3257. "homepage": "https://www.drupal.org/project/drupal",
  3258. "keywords": [
  3259. "drupal"
  3260. ],
  3261. "support": {
  3262. "source": "https://github.com/drupal/core-project-message/tree/9.5.11"
  3263. },
  3264. "time": "2022-02-24T17:40:53+00:00"
  3265. },
  3266. {
  3267. "name": "drupal/core-recommended",
  3268. "version": "9.5.11",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/drupal/core-recommended.git",
  3272. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/af3521be5376e333ddcdbd31c5a169f16423b46f",
  3277. "reference": "af3521be5376e333ddcdbd31c5a169f16423b46f",
  3278. "shasum": ""
  3279. },
  3280. "require": {
  3281. "asm89/stack-cors": "~1.3.0",
  3282. "composer/semver": "~3.3.2",
  3283. "doctrine/annotations": "~1.13.3",
  3284. "doctrine/lexer": "~1.2.3",
  3285. "doctrine/reflection": "~1.2.3",
  3286. "drupal/core": "9.5.11",
  3287. "egulias/email-validator": "~3.2.1",
  3288. "guzzlehttp/guzzle": "~6.5.8",
  3289. "guzzlehttp/promises": "~1.5.2",
  3290. "guzzlehttp/psr7": "~1.9.1",
  3291. "longwave/laminas-diactoros": "~2.14.2",
  3292. "masterminds/html5": "~2.7.6",
  3293. "pear/archive_tar": "~1.4.14",
  3294. "pear/console_getopt": "~v1.4.3",
  3295. "pear/pear-core-minimal": "~v1.10.11",
  3296. "pear/pear_exception": "~v1.0.2",
  3297. "psr/cache": "~1.0.1",
  3298. "psr/container": "~1.1.1",
  3299. "psr/http-factory": "~1.0.1",
  3300. "psr/http-message": "~1.0.1",
  3301. "psr/log": "~1.1.4",
  3302. "ralouphie/getallheaders": "~3.0.3",
  3303. "stack/builder": "~v1.0.6",
  3304. "symfony-cmf/routing": "~2.3.4",
  3305. "symfony/console": "~v4.4.49",
  3306. "symfony/debug": "~v4.4.44",
  3307. "symfony/dependency-injection": "~v4.4.49",
  3308. "symfony/deprecation-contracts": "~v2.5.2",
  3309. "symfony/error-handler": "~v4.4.44",
  3310. "symfony/event-dispatcher": "~v4.4.44",
  3311. "symfony/event-dispatcher-contracts": "~v1.1.13",
  3312. "symfony/http-client-contracts": "~v2.5.2",
  3313. "symfony/http-foundation": "~v4.4.49",
  3314. "symfony/http-kernel": "~v4.4.50",
  3315. "symfony/mime": "~v5.4.13",
  3316. "symfony/polyfill-ctype": "~v1.27.0",
  3317. "symfony/polyfill-iconv": "~v1.27.0",
  3318. "symfony/polyfill-intl-idn": "~v1.27.0",
  3319. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3320. "symfony/polyfill-mbstring": "~v1.27.0",
  3321. "symfony/polyfill-php80": "~v1.27.0",
  3322. "symfony/process": "~v4.4.44",
  3323. "symfony/psr-http-message-bridge": "~v2.1.4",
  3324. "symfony/routing": "~v4.4.44",
  3325. "symfony/serializer": "~v4.4.47",
  3326. "symfony/service-contracts": "~v2.5.2",
  3327. "symfony/translation": "~v4.4.47",
  3328. "symfony/translation-contracts": "~v2.5.2",
  3329. "symfony/validator": "~v4.4.48",
  3330. "symfony/var-dumper": "~v5.4.19",
  3331. "symfony/yaml": "~v4.4.45",
  3332. "twig/twig": "~v2.15.4",
  3333. "typo3/phar-stream-wrapper": "~v3.1.7"
  3334. },
  3335. "conflict": {
  3336. "webflo/drupal-core-strict": "*"
  3337. },
  3338. "type": "metapackage",
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "GPL-2.0-or-later"
  3342. ],
  3343. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3344. "support": {
  3345. "source": "https://github.com/drupal/core-recommended/tree/9.5.11"
  3346. },
  3347. "time": "2023-09-19T17:58:28+00:00"
  3348. },
  3349. {
  3350. "name": "drupal/ctools",
  3351. "version": "3.9.0",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://git.drupalcode.org/project/ctools.git",
  3355. "reference": "8.x-3.9"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  3360. "reference": "8.x-3.9",
  3361. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  3362. },
  3363. "require": {
  3364. "drupal/core": "^8.8 || ^9"
  3365. },
  3366. "type": "drupal-module",
  3367. "extra": {
  3368. "drupal": {
  3369. "version": "8.x-3.9",
  3370. "datestamp": "1658864511",
  3371. "security-coverage": {
  3372. "status": "covered",
  3373. "message": "Covered by Drupal's security advisory policy"
  3374. }
  3375. },
  3376. "branch-alias": {
  3377. "dev-8.x-3.x": "3.x-dev"
  3378. }
  3379. },
  3380. "notification-url": "https://packages.drupal.org/8/downloads",
  3381. "license": [
  3382. "GPL-2.0-or-later"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Kris Vanderwater (EclipseGc)",
  3387. "homepage": "https://www.drupal.org/u/eclipsegc",
  3388. "role": "Maintainer"
  3389. },
  3390. {
  3391. "name": "Jakob Perry (japerry)",
  3392. "homepage": "https://www.drupal.org/u/japerry",
  3393. "role": "Maintainer"
  3394. },
  3395. {
  3396. "name": "Tim Plunkett (tim.plunkett)",
  3397. "homepage": "https://www.drupal.org/u/timplunkett",
  3398. "role": "Maintainer"
  3399. },
  3400. {
  3401. "name": "James Gilliland (neclimdul)",
  3402. "homepage": "https://www.drupal.org/u/neclimdul",
  3403. "role": "Maintainer"
  3404. },
  3405. {
  3406. "name": "Daniel Wehner (dawehner)",
  3407. "homepage": "https://www.drupal.org/u/dawehner",
  3408. "role": "Maintainer"
  3409. },
  3410. {
  3411. "name": "joelpittet",
  3412. "homepage": "https://www.drupal.org/user/160302"
  3413. },
  3414. {
  3415. "name": "merlinofchaos",
  3416. "homepage": "https://www.drupal.org/user/26979"
  3417. },
  3418. {
  3419. "name": "neclimdul",
  3420. "homepage": "https://www.drupal.org/user/48673"
  3421. },
  3422. {
  3423. "name": "sdboyer",
  3424. "homepage": "https://www.drupal.org/user/146719"
  3425. },
  3426. {
  3427. "name": "sun",
  3428. "homepage": "https://www.drupal.org/user/54136"
  3429. },
  3430. {
  3431. "name": "tim.plunkett",
  3432. "homepage": "https://www.drupal.org/user/241634"
  3433. }
  3434. ],
  3435. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3436. "homepage": "https://www.drupal.org/project/ctools",
  3437. "support": {
  3438. "source": "https://git.drupalcode.org/project/ctools",
  3439. "issues": "https://www.drupal.org/project/issues/ctools"
  3440. }
  3441. },
  3442. {
  3443. "name": "drupal/date_range_formatter",
  3444. "version": "4.0.2",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3448. "reference": "4.0.2"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3453. "reference": "4.0.2",
  3454. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3455. },
  3456. "require": {
  3457. "drupal/core": "^8 || ^9 || ^10"
  3458. },
  3459. "type": "drupal-module",
  3460. "extra": {
  3461. "drupal": {
  3462. "version": "4.0.2",
  3463. "datestamp": "1703156621",
  3464. "security-coverage": {
  3465. "status": "covered",
  3466. "message": "Covered by Drupal's security advisory policy"
  3467. }
  3468. }
  3469. },
  3470. "notification-url": "https://packages.drupal.org/8/downloads",
  3471. "license": [
  3472. "GPL-2.0-or-later"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "maximpodorov",
  3477. "homepage": "https://www.drupal.org/user/515310"
  3478. },
  3479. {
  3480. "name": "sudishth",
  3481. "homepage": "https://www.drupal.org/user/1440562"
  3482. }
  3483. ],
  3484. "description": "Formats date ranges.",
  3485. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3486. "support": {
  3487. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3488. }
  3489. },
  3490. {
  3491. "name": "drupal/devel",
  3492. "version": "4.2.1",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://git.drupalcode.org/project/devel.git",
  3496. "reference": "4.2.1"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3501. "reference": "4.2.1",
  3502. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3503. },
  3504. "require": {
  3505. "doctrine/common": "^2.7",
  3506. "drupal/core": "^8.8 || ^9",
  3507. "symfony/var-dumper": "^4 || ^5"
  3508. },
  3509. "conflict": {
  3510. "kint-php/kint": "<3"
  3511. },
  3512. "require-dev": {
  3513. "drush/drush": "^10"
  3514. },
  3515. "suggest": {
  3516. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3517. },
  3518. "type": "drupal-module",
  3519. "extra": {
  3520. "drupal": {
  3521. "version": "4.2.1",
  3522. "datestamp": "1664317444",
  3523. "security-coverage": {
  3524. "status": "covered",
  3525. "message": "Covered by Drupal's security advisory policy"
  3526. }
  3527. },
  3528. "drush": {
  3529. "services": {
  3530. "drush.services.yml": "^9 || ^10"
  3531. }
  3532. }
  3533. },
  3534. "notification-url": "https://packages.drupal.org/8/downloads",
  3535. "license": [
  3536. "GPL-2.0-or-later"
  3537. ],
  3538. "authors": [
  3539. {
  3540. "name": "moshe weitzman",
  3541. "homepage": "https://www.drupal.org/user/23"
  3542. }
  3543. ],
  3544. "description": "Various blocks, pages, and functions for developers.",
  3545. "homepage": "https://www.drupal.org/project/devel",
  3546. "support": {
  3547. "source": "https://gitlab.com/drupalspoons/devel",
  3548. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3549. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3550. }
  3551. },
  3552. {
  3553. "name": "drupal/domain",
  3554. "version": "1.0.0-beta8",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://git.drupalcode.org/project/domain.git",
  3558. "reference": "8.x-1.0-beta8"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3563. "reference": "8.x-1.0-beta8",
  3564. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3565. },
  3566. "require": {
  3567. "drupal/core": "^8 || ^9"
  3568. },
  3569. "require-dev": {
  3570. "drupal/domain_access": "*",
  3571. "drupal/domain_config": "*"
  3572. },
  3573. "type": "drupal-module",
  3574. "extra": {
  3575. "drupal": {
  3576. "version": "8.x-1.0-beta8",
  3577. "datestamp": "1677511311",
  3578. "security-coverage": {
  3579. "status": "not-covered",
  3580. "message": "Beta releases are not covered by Drupal security advisories."
  3581. }
  3582. }
  3583. },
  3584. "notification-url": "https://packages.drupal.org/8/downloads",
  3585. "license": [
  3586. "GPL-2.0-or-later"
  3587. ],
  3588. "authors": [
  3589. {
  3590. "name": "agentrickard",
  3591. "homepage": "https://www.drupal.org/user/20975"
  3592. },
  3593. {
  3594. "name": "nonsie",
  3595. "homepage": "https://www.drupal.org/user/29899"
  3596. },
  3597. {
  3598. "name": "webflo",
  3599. "homepage": "https://www.drupal.org/user/254778"
  3600. }
  3601. ],
  3602. "description": "Creates domain records within a Drupal installation.",
  3603. "homepage": "https://www.drupal.org/project/domain",
  3604. "support": {
  3605. "source": "https://git.drupalcode.org/project/domain"
  3606. }
  3607. },
  3608. {
  3609. "name": "drupal/domain_config",
  3610. "version": "1.0.0-beta8",
  3611. "require": {
  3612. "drupal/core": "^8 || ^9",
  3613. "drupal/domain": "*"
  3614. },
  3615. "type": "metapackage",
  3616. "extra": {
  3617. "drupal": {
  3618. "version": "8.x-1.0-beta8",
  3619. "datestamp": "1677511311",
  3620. "security-coverage": {
  3621. "status": "not-covered",
  3622. "message": "Beta releases are not covered by Drupal security advisories."
  3623. }
  3624. }
  3625. },
  3626. "notification-url": "https://packages.drupal.org/8/downloads",
  3627. "license": [
  3628. "GPL-2.0-or-later"
  3629. ],
  3630. "authors": [
  3631. {
  3632. "name": "agentrickard",
  3633. "homepage": "https://www.drupal.org/user/20975"
  3634. },
  3635. {
  3636. "name": "nonsie",
  3637. "homepage": "https://www.drupal.org/user/29899"
  3638. },
  3639. {
  3640. "name": "webflo",
  3641. "homepage": "https://www.drupal.org/user/254778"
  3642. }
  3643. ],
  3644. "description": "Allows domain specific configuration.",
  3645. "homepage": "https://www.drupal.org/project/domain",
  3646. "support": {
  3647. "source": "https://git.drupalcode.org/project/domain"
  3648. }
  3649. },
  3650. {
  3651. "name": "drupal/domain_site_settings",
  3652. "version": "1.6.0",
  3653. "source": {
  3654. "type": "git",
  3655. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3656. "reference": "8.x-1.6"
  3657. },
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3661. "reference": "8.x-1.6",
  3662. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3663. },
  3664. "require": {
  3665. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3666. "drupal/domain": "^1.0 || ^2.0",
  3667. "drupal/domain_config": "*"
  3668. },
  3669. "type": "drupal-module",
  3670. "extra": {
  3671. "drupal": {
  3672. "version": "8.x-1.6",
  3673. "datestamp": "1726238712",
  3674. "security-coverage": {
  3675. "status": "covered",
  3676. "message": "Covered by Drupal's security advisory policy"
  3677. }
  3678. }
  3679. },
  3680. "notification-url": "https://packages.drupal.org/8/downloads",
  3681. "license": [
  3682. "GPL-2.0+"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "aloknarwaria",
  3687. "homepage": "https://www.drupal.org/user/906640"
  3688. },
  3689. {
  3690. "name": "jeroent",
  3691. "homepage": "https://www.drupal.org/user/2228934"
  3692. },
  3693. {
  3694. "name": "malaynayak",
  3695. "homepage": "https://www.drupal.org/user/3529755"
  3696. }
  3697. ],
  3698. "description": "Basic Site Setting for Domains.",
  3699. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3700. "keywords": [
  3701. "Drupal"
  3702. ],
  3703. "support": {
  3704. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3705. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3706. }
  3707. },
  3708. {
  3709. "name": "drupal/email_registration",
  3710. "version": "1.1.0",
  3711. "source": {
  3712. "type": "git",
  3713. "url": "https://git.drupalcode.org/project/email_registration.git",
  3714. "reference": "8.x-1.1"
  3715. },
  3716. "dist": {
  3717. "type": "zip",
  3718. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3719. "reference": "8.x-1.1",
  3720. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3721. },
  3722. "require": {
  3723. "drupal/core": "^8.7.7 || ^9"
  3724. },
  3725. "conflict": {
  3726. "drupal/commerce": "<2.12"
  3727. },
  3728. "require-dev": {
  3729. "drupal/commerce": "^2.0"
  3730. },
  3731. "type": "drupal-module",
  3732. "extra": {
  3733. "drupal": {
  3734. "version": "8.x-1.1",
  3735. "datestamp": "1592317072",
  3736. "security-coverage": {
  3737. "status": "covered",
  3738. "message": "Covered by Drupal's security advisory policy"
  3739. }
  3740. }
  3741. },
  3742. "notification-url": "https://packages.drupal.org/8/downloads",
  3743. "license": [
  3744. "GPL-2.0-or-later"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Greg Knaddison (greggles)",
  3749. "homepage": "https://www.drupal.org/u/greggles",
  3750. "role": "Maintainer"
  3751. },
  3752. {
  3753. "name": "Andrey Postnikov (andypost)",
  3754. "homepage": "https://www.drupal.org/u/andypost",
  3755. "role": "Maintainer"
  3756. },
  3757. {
  3758. "name": "Chris Herberte",
  3759. "homepage": "https://www.drupal.org/u/chris-herberte",
  3760. "role": "Maintainer"
  3761. },
  3762. {
  3763. "name": "Moshe Weitzman (moshe weitzman)",
  3764. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3765. "role": "Maintainer"
  3766. },
  3767. {
  3768. "name": "Grevil",
  3769. "homepage": "https://www.drupal.org/user/3668491"
  3770. },
  3771. {
  3772. "name": "moshe weitzman",
  3773. "homepage": "https://www.drupal.org/user/23"
  3774. }
  3775. ],
  3776. "description": "Allows users to register with an email address as their username.",
  3777. "homepage": "https://www.drupal.org/project/email_registration",
  3778. "support": {
  3779. "source": "https://git.drupalcode.org/project/email_registration",
  3780. "issues": "http://drupal.org/project/issues/email_registration"
  3781. }
  3782. },
  3783. {
  3784. "name": "drupal/entity",
  3785. "version": "1.3.0",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://git.drupalcode.org/project/entity.git",
  3789. "reference": "8.x-1.3"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3794. "reference": "8.x-1.3",
  3795. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3796. },
  3797. "require": {
  3798. "drupal/core": "^8.8.2 || ^9"
  3799. },
  3800. "type": "drupal-module",
  3801. "extra": {
  3802. "drupal": {
  3803. "version": "8.x-1.3",
  3804. "datestamp": "1646324539",
  3805. "security-coverage": {
  3806. "status": "covered",
  3807. "message": "Covered by Drupal's security advisory policy"
  3808. }
  3809. }
  3810. },
  3811. "notification-url": "https://packages.drupal.org/8/downloads",
  3812. "license": [
  3813. "GPL-2.0-or-later"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "berdir",
  3818. "homepage": "https://www.drupal.org/user/214652"
  3819. },
  3820. {
  3821. "name": "bojanz",
  3822. "homepage": "https://www.drupal.org/user/86106"
  3823. },
  3824. {
  3825. "name": "dawehner",
  3826. "homepage": "https://www.drupal.org/user/99340"
  3827. },
  3828. {
  3829. "name": "dixon_",
  3830. "homepage": "https://www.drupal.org/user/239911"
  3831. },
  3832. {
  3833. "name": "fago",
  3834. "homepage": "https://www.drupal.org/user/16747"
  3835. },
  3836. {
  3837. "name": "mglaman",
  3838. "homepage": "https://www.drupal.org/user/2416470"
  3839. },
  3840. {
  3841. "name": "TR",
  3842. "homepage": "https://www.drupal.org/user/202830"
  3843. }
  3844. ],
  3845. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3846. "homepage": "https://www.drupal.org/project/entity",
  3847. "support": {
  3848. "source": "https://git.drupalcode.org/project/entity",
  3849. "issues": "https://www.drupal.org/project/issues/entity"
  3850. }
  3851. },
  3852. {
  3853. "name": "drupal/field_group",
  3854. "version": "3.3.0",
  3855. "source": {
  3856. "type": "git",
  3857. "url": "https://git.drupalcode.org/project/field_group.git",
  3858. "reference": "8.x-3.3"
  3859. },
  3860. "dist": {
  3861. "type": "zip",
  3862. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  3863. "reference": "8.x-3.3",
  3864. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  3865. },
  3866. "require": {
  3867. "drupal/core": "^8.8 || ^9"
  3868. },
  3869. "require-dev": {
  3870. "drupal/jquery_ui_accordion": "^1.0"
  3871. },
  3872. "type": "drupal-module",
  3873. "extra": {
  3874. "drupal": {
  3875. "version": "8.x-3.3",
  3876. "datestamp": "1663516404",
  3877. "security-coverage": {
  3878. "status": "covered",
  3879. "message": "Covered by Drupal's security advisory policy"
  3880. }
  3881. }
  3882. },
  3883. "notification-url": "https://packages.drupal.org/8/downloads",
  3884. "license": [
  3885. "GPL-2.0-or-later"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "anybody",
  3890. "homepage": "https://www.drupal.org/user/291091"
  3891. },
  3892. {
  3893. "name": "grevil",
  3894. "homepage": "https://www.drupal.org/user/3668491"
  3895. },
  3896. {
  3897. "name": "hydra",
  3898. "homepage": "https://www.drupal.org/user/647364"
  3899. },
  3900. {
  3901. "name": "joevagyok",
  3902. "homepage": "https://www.drupal.org/user/2876343"
  3903. },
  3904. {
  3905. "name": "jyve",
  3906. "homepage": "https://www.drupal.org/user/591438"
  3907. },
  3908. {
  3909. "name": "nils.destoop",
  3910. "homepage": "https://www.drupal.org/user/361625"
  3911. },
  3912. {
  3913. "name": "Stalski",
  3914. "homepage": "https://www.drupal.org/user/322618"
  3915. },
  3916. {
  3917. "name": "swentel",
  3918. "homepage": "https://www.drupal.org/user/107403"
  3919. }
  3920. ],
  3921. "description": "Provides the field_group module.",
  3922. "homepage": "https://www.drupal.org/project/field_group",
  3923. "support": {
  3924. "source": "https://git.drupalcode.org/project/field_group",
  3925. "issues": "https://www.drupal.org/project/issues/field_group"
  3926. }
  3927. },
  3928. {
  3929. "name": "drupal/filefield_sources",
  3930. "version": "1.0.0-alpha5",
  3931. "source": {
  3932. "type": "git",
  3933. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3934. "reference": "8.x-1.0-alpha5"
  3935. },
  3936. "dist": {
  3937. "type": "zip",
  3938. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3939. "reference": "8.x-1.0-alpha5",
  3940. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3941. },
  3942. "require": {
  3943. "drupal/core": "^8 || ^9"
  3944. },
  3945. "require-dev": {
  3946. "drupal/imce": "^2.3"
  3947. },
  3948. "type": "drupal-module",
  3949. "extra": {
  3950. "drupal": {
  3951. "version": "8.x-1.0-alpha5",
  3952. "datestamp": "1642555269",
  3953. "security-coverage": {
  3954. "status": "not-covered",
  3955. "message": "Alpha releases are not covered by Drupal security advisories."
  3956. }
  3957. }
  3958. },
  3959. "notification-url": "https://packages.drupal.org/8/downloads",
  3960. "license": [
  3961. "GPL-2.0-or-later"
  3962. ],
  3963. "authors": [
  3964. {
  3965. "name": "Nate Lampton (quicksketch)",
  3966. "homepage": "https://www.drupal.org/u/quicksketch",
  3967. "role": "Maintainer"
  3968. },
  3969. {
  3970. "name": "Andrey Khromyshev (profak)",
  3971. "homepage": "https://www.drupal.org/u/profak",
  3972. "role": "Maintainer"
  3973. },
  3974. {
  3975. "name": "David Valdez (gnuget)",
  3976. "homepage": "https://www.drupal.org/u/gnuget",
  3977. "role": "Maintainer"
  3978. },
  3979. {
  3980. "name": "quicksketch",
  3981. "homepage": "https://www.drupal.org/user/35821"
  3982. }
  3983. ],
  3984. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3985. "homepage": "https://www.drupal.org/project/filefield_sources",
  3986. "support": {
  3987. "source": "https://git.drupalcode.org/project/filefield_sources",
  3988. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3989. "irc": "irc://irc.freenode.org/drupal-contribute"
  3990. }
  3991. },
  3992. {
  3993. "name": "drupal/filter_perms",
  3994. "version": "1.0.0-alpha1",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3998. "reference": "8.x-1.0-alpha1"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  4003. "reference": "8.x-1.0-alpha1",
  4004. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  4005. },
  4006. "require": {
  4007. "drupal/core": "^8 || ^9"
  4008. },
  4009. "type": "drupal-module",
  4010. "extra": {
  4011. "drupal": {
  4012. "version": "8.x-1.0-alpha1",
  4013. "datestamp": "1595202904",
  4014. "security-coverage": {
  4015. "status": "not-covered",
  4016. "message": "Alpha releases are not covered by Drupal security advisories."
  4017. }
  4018. }
  4019. },
  4020. "notification-url": "https://packages.drupal.org/8/downloads",
  4021. "license": [
  4022. "GPL-2.0-or-later"
  4023. ],
  4024. "authors": [
  4025. {
  4026. "name": "cYu",
  4027. "homepage": "https://www.drupal.org/user/202205"
  4028. },
  4029. {
  4030. "name": "deekayen",
  4031. "homepage": "https://www.drupal.org/user/972"
  4032. },
  4033. {
  4034. "name": "ivavictoria",
  4035. "homepage": "https://www.drupal.org/user/3061533"
  4036. },
  4037. {
  4038. "name": "justcaldwell",
  4039. "homepage": "https://www.drupal.org/user/290069"
  4040. },
  4041. {
  4042. "name": "mgbellaire",
  4043. "homepage": "https://www.drupal.org/user/1831932"
  4044. },
  4045. {
  4046. "name": "willzyx",
  4047. "homepage": "https://www.drupal.org/user/1043862"
  4048. }
  4049. ],
  4050. "description": "Provides role and module filters to simplify the user permissions page.",
  4051. "homepage": "https://www.drupal.org/project/filter_perms",
  4052. "support": {
  4053. "source": "https://git.drupalcode.org/project/filter_perms"
  4054. }
  4055. },
  4056. {
  4057. "name": "drupal/honeypot",
  4058. "version": "2.0.2",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://git.drupalcode.org/project/honeypot.git",
  4062. "reference": "2.0.2"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  4067. "reference": "2.0.2",
  4068. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  4069. },
  4070. "require": {
  4071. "drupal/core": "^8.8.2 || ^9"
  4072. },
  4073. "type": "drupal-module",
  4074. "extra": {
  4075. "drupal": {
  4076. "version": "2.0.2",
  4077. "datestamp": "1651895165",
  4078. "security-coverage": {
  4079. "status": "covered",
  4080. "message": "Covered by Drupal's security advisory policy"
  4081. }
  4082. }
  4083. },
  4084. "notification-url": "https://packages.drupal.org/8/downloads",
  4085. "license": [
  4086. "GPL-2.0-or-later"
  4087. ],
  4088. "authors": [
  4089. {
  4090. "name": "Jeff Geerling",
  4091. "homepage": "https://www.drupal.org/user/389011",
  4092. "email": "geerlingguy@mac.com"
  4093. },
  4094. {
  4095. "name": "Manuel Garcia",
  4096. "homepage": "https://www.drupal.org/user/213194"
  4097. },
  4098. {
  4099. "name": "tr",
  4100. "homepage": "https://www.drupal.org/user/202830"
  4101. },
  4102. {
  4103. "name": "vijaycs85",
  4104. "homepage": "https://www.drupal.org/user/93488"
  4105. }
  4106. ],
  4107. "description": "Mitigates spam form submissions using the honeypot method.",
  4108. "homepage": "https://www.drupal.org/project/honeypot",
  4109. "keywords": [
  4110. "deterrent",
  4111. "form",
  4112. "honeypot",
  4113. "honeytrap",
  4114. "php",
  4115. "spam"
  4116. ],
  4117. "support": {
  4118. "source": "https://git.drupalcode.org/project/honeypot",
  4119. "issues": "https://www.drupal.org/project/issues/honeypot"
  4120. }
  4121. },
  4122. {
  4123. "name": "drupal/jquery_ui",
  4124. "version": "1.4.0",
  4125. "source": {
  4126. "type": "git",
  4127. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4128. "reference": "8.x-1.4"
  4129. },
  4130. "dist": {
  4131. "type": "zip",
  4132. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  4133. "reference": "8.x-1.4",
  4134. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  4135. },
  4136. "require": {
  4137. "drupal/core": "^8 || ^9"
  4138. },
  4139. "type": "drupal-module",
  4140. "extra": {
  4141. "drupal": {
  4142. "version": "8.x-1.4",
  4143. "datestamp": "1582149957",
  4144. "security-coverage": {
  4145. "status": "covered",
  4146. "message": "Covered by Drupal's security advisory policy"
  4147. }
  4148. }
  4149. },
  4150. "notification-url": "https://packages.drupal.org/8/downloads",
  4151. "license": [
  4152. "GPL-2.0-or-later"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "bnjmnm",
  4157. "homepage": "https://www.drupal.org/user/2369194"
  4158. },
  4159. {
  4160. "name": "jjeff",
  4161. "homepage": "https://www.drupal.org/user/17190"
  4162. },
  4163. {
  4164. "name": "lauriii",
  4165. "homepage": "https://www.drupal.org/user/1078742"
  4166. },
  4167. {
  4168. "name": "litwol",
  4169. "homepage": "https://www.drupal.org/user/78134"
  4170. },
  4171. {
  4172. "name": "mfb",
  4173. "homepage": "https://www.drupal.org/user/12302"
  4174. },
  4175. {
  4176. "name": "mfer",
  4177. "homepage": "https://www.drupal.org/user/25701"
  4178. },
  4179. {
  4180. "name": "mikelutz",
  4181. "homepage": "https://www.drupal.org/user/2972409"
  4182. },
  4183. {
  4184. "name": "nod_",
  4185. "homepage": "https://www.drupal.org/user/598310"
  4186. },
  4187. {
  4188. "name": "phenaproxima",
  4189. "homepage": "https://www.drupal.org/user/205645"
  4190. },
  4191. {
  4192. "name": "RobLoach",
  4193. "homepage": "https://www.drupal.org/user/61114"
  4194. },
  4195. {
  4196. "name": "sun",
  4197. "homepage": "https://www.drupal.org/user/54136"
  4198. },
  4199. {
  4200. "name": "webchick",
  4201. "homepage": "https://www.drupal.org/user/24967"
  4202. },
  4203. {
  4204. "name": "Wim Leers",
  4205. "homepage": "https://www.drupal.org/user/99777"
  4206. },
  4207. {
  4208. "name": "zrpnr",
  4209. "homepage": "https://www.drupal.org/user/1448368"
  4210. }
  4211. ],
  4212. "description": "Provides jQuery UI library.",
  4213. "homepage": "https://www.drupal.org/project/jquery_ui",
  4214. "support": {
  4215. "source": "https://git.drupalcode.org/project/jquery_ui"
  4216. }
  4217. },
  4218. {
  4219. "name": "drupal/jquery_ui_draggable",
  4220. "version": "1.2.0",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4224. "reference": "8.x-1.2"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  4229. "reference": "8.x-1.2",
  4230. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  4231. },
  4232. "require": {
  4233. "drupal/core": "^8 || ^9",
  4234. "drupal/jquery_ui": "*"
  4235. },
  4236. "type": "drupal-module",
  4237. "extra": {
  4238. "drupal": {
  4239. "version": "8.x-1.2",
  4240. "datestamp": "1582150027",
  4241. "security-coverage": {
  4242. "status": "covered",
  4243. "message": "Covered by Drupal's security advisory policy"
  4244. }
  4245. }
  4246. },
  4247. "notification-url": "https://packages.drupal.org/8/downloads",
  4248. "license": [
  4249. "GPL-2.0-or-later"
  4250. ],
  4251. "authors": [
  4252. {
  4253. "name": "bnjmnm",
  4254. "homepage": "https://www.drupal.org/user/2369194"
  4255. },
  4256. {
  4257. "name": "lauriii",
  4258. "homepage": "https://www.drupal.org/user/1078742"
  4259. },
  4260. {
  4261. "name": "zrpnr",
  4262. "homepage": "https://www.drupal.org/user/1448368"
  4263. }
  4264. ],
  4265. "description": "Provides jQuery UI Draggable library.",
  4266. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4267. "support": {
  4268. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4269. }
  4270. },
  4271. {
  4272. "name": "drupal/jquery_ui_droppable",
  4273. "version": "1.2.0",
  4274. "source": {
  4275. "type": "git",
  4276. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4277. "reference": "8.x-1.2"
  4278. },
  4279. "dist": {
  4280. "type": "zip",
  4281. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4282. "reference": "8.x-1.2",
  4283. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4284. },
  4285. "require": {
  4286. "drupal/core": "^8 || ^9",
  4287. "drupal/jquery_ui": "*",
  4288. "drupal/jquery_ui_draggable": "*"
  4289. },
  4290. "type": "drupal-module",
  4291. "extra": {
  4292. "drupal": {
  4293. "version": "8.x-1.2",
  4294. "datestamp": "1582150071",
  4295. "security-coverage": {
  4296. "status": "covered",
  4297. "message": "Covered by Drupal's security advisory policy"
  4298. }
  4299. }
  4300. },
  4301. "notification-url": "https://packages.drupal.org/8/downloads",
  4302. "license": [
  4303. "GPL-2.0-or-later"
  4304. ],
  4305. "authors": [
  4306. {
  4307. "name": "bnjmnm",
  4308. "homepage": "https://www.drupal.org/user/2369194"
  4309. },
  4310. {
  4311. "name": "lauriii",
  4312. "homepage": "https://www.drupal.org/user/1078742"
  4313. },
  4314. {
  4315. "name": "zrpnr",
  4316. "homepage": "https://www.drupal.org/user/1448368"
  4317. }
  4318. ],
  4319. "description": "Provides jQuery UI Droppable library.",
  4320. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4321. "support": {
  4322. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4323. }
  4324. },
  4325. {
  4326. "name": "drupal/jquery_ui_sortable",
  4327. "version": "1.1.0",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4331. "reference": "8.x-1.1"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4336. "reference": "8.x-1.1",
  4337. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4338. },
  4339. "require": {
  4340. "drupal/core": "^8 || ^9",
  4341. "drupal/jquery_ui": "*"
  4342. },
  4343. "type": "drupal-module",
  4344. "extra": {
  4345. "drupal": {
  4346. "version": "8.x-1.1",
  4347. "datestamp": "1583174744",
  4348. "security-coverage": {
  4349. "status": "covered",
  4350. "message": "Covered by Drupal's security advisory policy"
  4351. }
  4352. }
  4353. },
  4354. "notification-url": "https://packages.drupal.org/8/downloads",
  4355. "license": [
  4356. "GPL-2.0-or-later"
  4357. ],
  4358. "authors": [
  4359. {
  4360. "name": "bnjmnm",
  4361. "homepage": "https://www.drupal.org/user/2369194"
  4362. },
  4363. {
  4364. "name": "lauriii",
  4365. "homepage": "https://www.drupal.org/user/1078742"
  4366. },
  4367. {
  4368. "name": "zrpnr",
  4369. "homepage": "https://www.drupal.org/user/1448368"
  4370. }
  4371. ],
  4372. "description": "Provides jQuery UI Sortable library.",
  4373. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4374. "support": {
  4375. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4376. }
  4377. },
  4378. {
  4379. "name": "drupal/linkit",
  4380. "version": "6.0.0-beta3",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://git.drupalcode.org/project/linkit.git",
  4384. "reference": "6.0.0-beta3"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  4389. "reference": "6.0.0-beta3",
  4390. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  4391. },
  4392. "require": {
  4393. "drupal/core": "^8.7.7 || ^9"
  4394. },
  4395. "require-dev": {
  4396. "drupal/imce": "*"
  4397. },
  4398. "type": "drupal-module",
  4399. "extra": {
  4400. "drupal": {
  4401. "version": "6.0.0-beta3",
  4402. "datestamp": "1632946984",
  4403. "security-coverage": {
  4404. "status": "not-covered",
  4405. "message": "Beta releases are not covered by Drupal security advisories."
  4406. }
  4407. }
  4408. },
  4409. "notification-url": "https://packages.drupal.org/8/downloads",
  4410. "license": [
  4411. "GPL-2.0-or-later"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "Emil Stjerneman",
  4416. "homepage": "https://stjerneman.com",
  4417. "email": "emil@stjerneman.com",
  4418. "role": "Maintainer"
  4419. },
  4420. {
  4421. "name": "johnwebdev",
  4422. "homepage": "https://www.drupal.org/user/3331569"
  4423. },
  4424. {
  4425. "name": "mark_fullmer",
  4426. "homepage": "https://www.drupal.org/user/2612816"
  4427. }
  4428. ],
  4429. "description": "Linkit - Enriched linking experience",
  4430. "homepage": "http://drupal.org/project/linkit",
  4431. "support": {
  4432. "source": "http://cgit.drupalcode.org/linkit",
  4433. "issues": "http://drupal.org/project/linkit"
  4434. }
  4435. },
  4436. {
  4437. "name": "drupal/login_emailusername",
  4438. "version": "2.1.0",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4442. "reference": "2.1.0"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4447. "reference": "2.1.0",
  4448. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4449. },
  4450. "require": {
  4451. "drupal/core": "^8.8 || ^9 || ^10"
  4452. },
  4453. "type": "drupal-module",
  4454. "extra": {
  4455. "drupal": {
  4456. "version": "2.1.0",
  4457. "datestamp": "1677072401",
  4458. "security-coverage": {
  4459. "status": "covered",
  4460. "message": "Covered by Drupal's security advisory policy"
  4461. }
  4462. },
  4463. "branch-alias": {
  4464. "dev-8.x-1.x": "8.1.x-dev"
  4465. }
  4466. },
  4467. "notification-url": "https://packages.drupal.org/8/downloads",
  4468. "license": [
  4469. "GPL-2.0-or-later"
  4470. ],
  4471. "authors": [
  4472. {
  4473. "name": "See contributors",
  4474. "homepage": "https://www.drupal.org/node/2820429/committers",
  4475. "role": "contributor"
  4476. },
  4477. {
  4478. "name": "rjjakes",
  4479. "homepage": "https://www.drupal.org/user/3457245"
  4480. },
  4481. {
  4482. "name": "VladimirAus",
  4483. "homepage": "https://www.drupal.org/user/673120"
  4484. }
  4485. ],
  4486. "description": "Login with the email as username.",
  4487. "homepage": "https://drupal.org/project/login_emailusername",
  4488. "support": {
  4489. "source": "https://git.drupalcode.org/project/login_emailusername",
  4490. "issues": "https://drupal.org/project/issues/login_emailusername"
  4491. }
  4492. },
  4493. {
  4494. "name": "drupal/maillog",
  4495. "version": "1.0.0-beta1",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://git.drupalcode.org/project/maillog.git",
  4499. "reference": "8.x-1.0-beta1"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4504. "reference": "8.x-1.0-beta1",
  4505. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4506. },
  4507. "require": {
  4508. "drupal/core": "^8 || ^9"
  4509. },
  4510. "type": "drupal-module",
  4511. "extra": {
  4512. "drupal": {
  4513. "version": "8.x-1.0-beta1",
  4514. "datestamp": "1600800168",
  4515. "security-coverage": {
  4516. "status": "not-covered",
  4517. "message": "Beta releases are not covered by Drupal security advisories."
  4518. }
  4519. }
  4520. },
  4521. "notification-url": "https://packages.drupal.org/8/downloads",
  4522. "license": [
  4523. "GPL-2.0-or-later"
  4524. ],
  4525. "authors": [
  4526. {
  4527. "name": "berdir",
  4528. "homepage": "https://www.drupal.org/user/214652"
  4529. },
  4530. {
  4531. "name": "damienmckenna",
  4532. "homepage": "https://www.drupal.org/user/108450"
  4533. },
  4534. {
  4535. "name": "miro_dietiker",
  4536. "homepage": "https://www.drupal.org/user/227761"
  4537. },
  4538. {
  4539. "name": "pluess",
  4540. "homepage": "https://www.drupal.org/user/84659"
  4541. }
  4542. ],
  4543. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4544. "homepage": "https://www.drupal.org/project/maillog",
  4545. "support": {
  4546. "source": "https://git.drupalcode.org/project/maillog"
  4547. }
  4548. },
  4549. {
  4550. "name": "drupal/menu_admin_per_menu",
  4551. "version": "1.1.0",
  4552. "source": {
  4553. "type": "git",
  4554. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4555. "reference": "8.x-1.1"
  4556. },
  4557. "dist": {
  4558. "type": "zip",
  4559. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4560. "reference": "8.x-1.1",
  4561. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4562. },
  4563. "require": {
  4564. "drupal/core": "^8 || ^9"
  4565. },
  4566. "type": "drupal-module",
  4567. "extra": {
  4568. "drupal": {
  4569. "version": "8.x-1.1",
  4570. "datestamp": "1591098397",
  4571. "security-coverage": {
  4572. "status": "covered",
  4573. "message": "Covered by Drupal's security advisory policy"
  4574. }
  4575. }
  4576. },
  4577. "notification-url": "https://packages.drupal.org/8/downloads",
  4578. "license": [
  4579. "GPL-2.0-or-later"
  4580. ],
  4581. "authors": [
  4582. {
  4583. "name": "anrikun",
  4584. "homepage": "https://www.drupal.org/user/410199"
  4585. },
  4586. {
  4587. "name": "jeroent",
  4588. "homepage": "https://www.drupal.org/user/2228934"
  4589. },
  4590. {
  4591. "name": "jonas139",
  4592. "homepage": "https://www.drupal.org/user/2873401"
  4593. },
  4594. {
  4595. "name": "mkdok",
  4596. "homepage": "https://www.drupal.org/user/3308753"
  4597. }
  4598. ],
  4599. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4600. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4601. "support": {
  4602. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4603. }
  4604. },
  4605. {
  4606. "name": "drupal/metatag",
  4607. "version": "1.16.0",
  4608. "source": {
  4609. "type": "git",
  4610. "url": "https://git.drupalcode.org/project/metatag.git",
  4611. "reference": "8.x-1.16"
  4612. },
  4613. "dist": {
  4614. "type": "zip",
  4615. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  4616. "reference": "8.x-1.16",
  4617. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  4618. },
  4619. "require": {
  4620. "drupal/core": "^8 || ^9",
  4621. "drupal/token": "^1.0"
  4622. },
  4623. "require-dev": {
  4624. "drupal/devel": "^4.0",
  4625. "drupal/metatag_dc": "*",
  4626. "drupal/metatag_open_graph": "*",
  4627. "drupal/page_manager": "4.x-dev",
  4628. "drupal/panelizer": "4.x-dev",
  4629. "drupal/redirect": "1.x-dev"
  4630. },
  4631. "type": "drupal-module",
  4632. "extra": {
  4633. "drupal": {
  4634. "version": "8.x-1.16",
  4635. "datestamp": "1615820867",
  4636. "security-coverage": {
  4637. "status": "covered",
  4638. "message": "Covered by Drupal's security advisory policy"
  4639. }
  4640. }
  4641. },
  4642. "notification-url": "https://packages.drupal.org/8/downloads",
  4643. "license": [
  4644. "GPL-2.0-or-later"
  4645. ],
  4646. "authors": [
  4647. {
  4648. "name": "See contributors",
  4649. "homepage": "https://www.drupal.org/node/640498/committers",
  4650. "role": "Developer"
  4651. },
  4652. {
  4653. "name": "dave reid",
  4654. "homepage": "https://www.drupal.org/user/53892"
  4655. }
  4656. ],
  4657. "description": "Manage meta tags for all entities.",
  4658. "homepage": "https://www.drupal.org/project/metatag",
  4659. "keywords": [
  4660. "Drupal",
  4661. "seo"
  4662. ],
  4663. "support": {
  4664. "source": "https://git.drupalcode.org/project/metatag",
  4665. "issues": "https://www.drupal.org/project/issues/metatag",
  4666. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4667. }
  4668. },
  4669. {
  4670. "name": "drupal/pathauto",
  4671. "version": "1.10.0",
  4672. "source": {
  4673. "type": "git",
  4674. "url": "https://git.drupalcode.org/project/pathauto.git",
  4675. "reference": "8.x-1.10"
  4676. },
  4677. "dist": {
  4678. "type": "zip",
  4679. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4680. "reference": "8.x-1.10",
  4681. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4682. },
  4683. "require": {
  4684. "drupal/core": "^8.8 || ^9",
  4685. "drupal/ctools": "*",
  4686. "drupal/token": "*"
  4687. },
  4688. "suggest": {
  4689. "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."
  4690. },
  4691. "type": "drupal-module",
  4692. "extra": {
  4693. "drupal": {
  4694. "version": "8.x-1.10",
  4695. "datestamp": "1650806739",
  4696. "security-coverage": {
  4697. "status": "covered",
  4698. "message": "Covered by Drupal's security advisory policy"
  4699. }
  4700. },
  4701. "drush": {
  4702. "services": {
  4703. "drush.services.yml": "^9 || ^10"
  4704. }
  4705. }
  4706. },
  4707. "notification-url": "https://packages.drupal.org/8/downloads",
  4708. "license": [
  4709. "GPL-2.0-or-later"
  4710. ],
  4711. "authors": [
  4712. {
  4713. "name": "Berdir",
  4714. "homepage": "https://www.drupal.org/user/214652"
  4715. },
  4716. {
  4717. "name": "Dave Reid",
  4718. "homepage": "https://www.drupal.org/user/53892"
  4719. },
  4720. {
  4721. "name": "Freso",
  4722. "homepage": "https://www.drupal.org/user/27504"
  4723. },
  4724. {
  4725. "name": "greggles",
  4726. "homepage": "https://www.drupal.org/user/36762"
  4727. }
  4728. ],
  4729. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4730. "homepage": "https://www.drupal.org/project/pathauto",
  4731. "support": {
  4732. "source": "https://cgit.drupalcode.org/pathauto",
  4733. "issues": "https://www.drupal.org/project/issues/pathauto",
  4734. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4735. }
  4736. },
  4737. {
  4738. "name": "drupal/profile",
  4739. "version": "1.4.0",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://git.drupalcode.org/project/profile.git",
  4743. "reference": "8.x-1.4"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4748. "reference": "8.x-1.4",
  4749. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4750. },
  4751. "require": {
  4752. "drupal/core": "^8.9 || ^9 || ^10",
  4753. "drupal/entity": "^1.0-rc2"
  4754. },
  4755. "require-dev": {
  4756. "drupal/token": "^1.7"
  4757. },
  4758. "type": "drupal-module",
  4759. "extra": {
  4760. "drupal": {
  4761. "version": "8.x-1.4",
  4762. "datestamp": "1652430373",
  4763. "security-coverage": {
  4764. "status": "covered",
  4765. "message": "Covered by Drupal's security advisory policy"
  4766. }
  4767. }
  4768. },
  4769. "notification-url": "https://packages.drupal.org/8/downloads",
  4770. "license": [
  4771. "GPL-2.0-or-later"
  4772. ],
  4773. "authors": [
  4774. {
  4775. "name": "bojanz",
  4776. "homepage": "https://www.drupal.org/user/86106"
  4777. },
  4778. {
  4779. "name": "daggerhart",
  4780. "homepage": "https://www.drupal.org/user/167806"
  4781. },
  4782. {
  4783. "name": "fago",
  4784. "homepage": "https://www.drupal.org/user/16747"
  4785. },
  4786. {
  4787. "name": "jsacksick",
  4788. "homepage": "https://www.drupal.org/user/972218"
  4789. },
  4790. {
  4791. "name": "mglaman",
  4792. "homepage": "https://www.drupal.org/user/2416470"
  4793. },
  4794. {
  4795. "name": "pcambra",
  4796. "homepage": "https://www.drupal.org/user/122101"
  4797. }
  4798. ],
  4799. "description": "Provides configurable user profiles.",
  4800. "homepage": "http://drupal.org/project/profile",
  4801. "support": {
  4802. "source": "https://git.drupalcode.org/project/profile"
  4803. }
  4804. },
  4805. {
  4806. "name": "drupal/redirect",
  4807. "version": "1.7.0",
  4808. "source": {
  4809. "type": "git",
  4810. "url": "https://git.drupalcode.org/project/redirect.git",
  4811. "reference": "8.x-1.7"
  4812. },
  4813. "dist": {
  4814. "type": "zip",
  4815. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip",
  4816. "reference": "8.x-1.7",
  4817. "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877"
  4818. },
  4819. "require": {
  4820. "drupal/core": "^8.8 || ^9"
  4821. },
  4822. "type": "drupal-module",
  4823. "extra": {
  4824. "drupal": {
  4825. "version": "8.x-1.7",
  4826. "datestamp": "1639380488",
  4827. "security-coverage": {
  4828. "status": "covered",
  4829. "message": "Covered by Drupal's security advisory policy"
  4830. }
  4831. }
  4832. },
  4833. "notification-url": "https://packages.drupal.org/8/downloads",
  4834. "license": [
  4835. "GPL-2.0-or-later"
  4836. ],
  4837. "authors": [
  4838. {
  4839. "name": "Berdir",
  4840. "homepage": "https://www.drupal.org/user/214652"
  4841. },
  4842. {
  4843. "name": "dave reid",
  4844. "homepage": "https://www.drupal.org/user/53892"
  4845. },
  4846. {
  4847. "name": "Kristen Pol",
  4848. "homepage": "https://www.drupal.org/user/8389"
  4849. },
  4850. {
  4851. "name": "pifagor",
  4852. "homepage": "https://www.drupal.org/user/2375692"
  4853. }
  4854. ],
  4855. "description": "Allows users to redirect from old URLs to new URLs.",
  4856. "homepage": "https://www.drupal.org/project/redirect",
  4857. "support": {
  4858. "source": "https://git.drupalcode.org/project/redirect"
  4859. }
  4860. },
  4861. {
  4862. "name": "drupal/redis",
  4863. "version": "1.5.0",
  4864. "source": {
  4865. "type": "git",
  4866. "url": "https://git.drupalcode.org/project/redis.git",
  4867. "reference": "8.x-1.5"
  4868. },
  4869. "dist": {
  4870. "type": "zip",
  4871. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4872. "reference": "8.x-1.5",
  4873. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4874. },
  4875. "require": {
  4876. "drupal/core": "^8.8 || ^9"
  4877. },
  4878. "suggest": {
  4879. "predis/predis": "^1.1.1"
  4880. },
  4881. "type": "drupal-module",
  4882. "extra": {
  4883. "drupal": {
  4884. "version": "8.x-1.5",
  4885. "datestamp": "1609972488",
  4886. "security-coverage": {
  4887. "status": "covered",
  4888. "message": "Covered by Drupal's security advisory policy"
  4889. }
  4890. }
  4891. },
  4892. "autoload": {
  4893. "psr-4": {
  4894. "Drupal\\redis\\": "src"
  4895. }
  4896. },
  4897. "notification-url": "https://packages.drupal.org/8/downloads",
  4898. "license": [
  4899. "GPL-2.0-or-later"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "berdir",
  4904. "homepage": "https://www.drupal.org/user/214652"
  4905. },
  4906. {
  4907. "name": "greg.1.anderson",
  4908. "homepage": "https://www.drupal.org/user/438598"
  4909. },
  4910. {
  4911. "name": "kporras07",
  4912. "homepage": "https://www.drupal.org/user/1349780"
  4913. },
  4914. {
  4915. "name": "pounard",
  4916. "homepage": "https://www.drupal.org/user/240164"
  4917. }
  4918. ],
  4919. "description": "Integration of Drupal with the Redis key-value store.",
  4920. "homepage": "https://www.drupal.org/project/redis",
  4921. "support": {
  4922. "source": "https://git.drupalcode.org/project/redis"
  4923. }
  4924. },
  4925. {
  4926. "name": "drupal/restui",
  4927. "version": "1.21.0",
  4928. "source": {
  4929. "type": "git",
  4930. "url": "https://git.drupalcode.org/project/restui.git",
  4931. "reference": "8.x-1.21"
  4932. },
  4933. "dist": {
  4934. "type": "zip",
  4935. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4936. "reference": "8.x-1.21",
  4937. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4938. },
  4939. "require": {
  4940. "drupal/core": "^8.7.7 || ^9 || ^10"
  4941. },
  4942. "type": "drupal-module",
  4943. "extra": {
  4944. "drupal": {
  4945. "version": "8.x-1.21",
  4946. "datestamp": "1659086914",
  4947. "security-coverage": {
  4948. "status": "covered",
  4949. "message": "Covered by Drupal's security advisory policy"
  4950. }
  4951. }
  4952. },
  4953. "notification-url": "https://packages.drupal.org/8/downloads",
  4954. "license": [
  4955. "GPL-2.0-or-later"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "-enzo-",
  4960. "homepage": "https://www.drupal.org/user/294937"
  4961. },
  4962. {
  4963. "name": "clemens.tolboom",
  4964. "homepage": "https://www.drupal.org/user/125814"
  4965. },
  4966. {
  4967. "name": "juampynr",
  4968. "homepage": "https://www.drupal.org/user/682736"
  4969. },
  4970. {
  4971. "name": "kamkejj",
  4972. "homepage": "https://www.drupal.org/user/81043"
  4973. },
  4974. {
  4975. "name": "vipin.mittal18",
  4976. "homepage": "https://www.drupal.org/user/319716"
  4977. }
  4978. ],
  4979. "description": "Provides a user interface to manage REST resources.",
  4980. "homepage": "https://www.drupal.org/project/restui",
  4981. "support": {
  4982. "source": "https://git.drupalcode.org/project/restui"
  4983. }
  4984. },
  4985. {
  4986. "name": "drupal/search_api",
  4987. "version": "1.23.0",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://git.drupalcode.org/project/search_api.git",
  4991. "reference": "8.x-1.23"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  4996. "reference": "8.x-1.23",
  4997. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  4998. },
  4999. "require": {
  5000. "drupal/core": "^8.8 || ^9"
  5001. },
  5002. "conflict": {
  5003. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5004. },
  5005. "require-dev": {
  5006. "drupal/language_fallback_fix": "@dev",
  5007. "drupal/search_api_autocomplete": "@dev",
  5008. "drupal/search_api_db": "*"
  5009. },
  5010. "suggest": {
  5011. "drupal/facets": "Adds the ability to create faceted searches.",
  5012. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5013. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5014. },
  5015. "type": "drupal-module",
  5016. "extra": {
  5017. "drupal": {
  5018. "version": "8.x-1.23",
  5019. "datestamp": "1642935837",
  5020. "security-coverage": {
  5021. "status": "covered",
  5022. "message": "Covered by Drupal's security advisory policy"
  5023. }
  5024. },
  5025. "drush": {
  5026. "services": {
  5027. "drush.services.yml": "^9 || ^10"
  5028. }
  5029. }
  5030. },
  5031. "notification-url": "https://packages.drupal.org/8/downloads",
  5032. "license": [
  5033. "GPL-2.0-or-later"
  5034. ],
  5035. "authors": [
  5036. {
  5037. "name": "Thomas Seidl",
  5038. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5039. },
  5040. {
  5041. "name": "Nick Veenhof",
  5042. "homepage": "https://www.drupal.org/u/nick_vh"
  5043. },
  5044. {
  5045. "name": "See other contributors",
  5046. "homepage": "https://www.drupal.org/node/790418/committers"
  5047. }
  5048. ],
  5049. "description": "Provides a generic framework for modules offering search capabilities.",
  5050. "homepage": "https://www.drupal.org/project/search_api",
  5051. "support": {
  5052. "source": "https://git.drupalcode.org/project/search_api",
  5053. "issues": "https://www.drupal.org/project/issues/search_api",
  5054. "irc": "irc://irc.freenode.org/drupal-search-api"
  5055. }
  5056. },
  5057. {
  5058. "name": "drupal/simple_sitemap",
  5059. "version": "3.11.0",
  5060. "source": {
  5061. "type": "git",
  5062. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5063. "reference": "8.x-3.11"
  5064. },
  5065. "dist": {
  5066. "type": "zip",
  5067. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  5068. "reference": "8.x-3.11",
  5069. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  5070. },
  5071. "require": {
  5072. "drupal/core": "^8 || ^9",
  5073. "ext-xmlwriter": "*"
  5074. },
  5075. "type": "drupal-module",
  5076. "extra": {
  5077. "drupal": {
  5078. "version": "8.x-3.11",
  5079. "datestamp": "1658781789",
  5080. "security-coverage": {
  5081. "status": "covered",
  5082. "message": "Covered by Drupal's security advisory policy"
  5083. }
  5084. },
  5085. "drush": {
  5086. "services": {
  5087. "drush.services.yml": "^9 || ^10"
  5088. }
  5089. }
  5090. },
  5091. "notification-url": "https://packages.drupal.org/8/downloads",
  5092. "license": [
  5093. "GPL-2.0-or-later"
  5094. ],
  5095. "authors": [
  5096. {
  5097. "name": "Pawel Ginalski (gbyte)",
  5098. "homepage": "https://www.drupal.org/u/gbyte",
  5099. "email": "contact@gbyte.dev",
  5100. "role": "Maintainer"
  5101. },
  5102. {
  5103. "name": "walkingdexter",
  5104. "homepage": "https://www.drupal.org/user/3251330"
  5105. }
  5106. ],
  5107. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5108. "homepage": "https://drupal.org/project/simple_sitemap",
  5109. "support": {
  5110. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5111. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5112. "irc": "irc://irc.freenode.org/drupal-contribute"
  5113. }
  5114. },
  5115. {
  5116. "name": "drupal/synonyms",
  5117. "version": "1.0.0-alpha3",
  5118. "source": {
  5119. "type": "git",
  5120. "url": "https://git.drupalcode.org/project/synonyms.git",
  5121. "reference": "8.x-1.0-alpha3"
  5122. },
  5123. "dist": {
  5124. "type": "zip",
  5125. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5126. "reference": "8.x-1.0-alpha3",
  5127. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5128. },
  5129. "require": {
  5130. "drupal/core": "^8 || ^9"
  5131. },
  5132. "type": "drupal-module",
  5133. "extra": {
  5134. "drupal": {
  5135. "version": "8.x-1.0-alpha3",
  5136. "datestamp": "1609623594",
  5137. "security-coverage": {
  5138. "status": "not-covered",
  5139. "message": "Alpha releases are not covered by Drupal security advisories."
  5140. }
  5141. }
  5142. },
  5143. "notification-url": "https://packages.drupal.org/8/downloads",
  5144. "license": [
  5145. "GPL-2.0-or-later"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "bojanz",
  5150. "homepage": "https://www.drupal.org/user/86106"
  5151. },
  5152. {
  5153. "name": "bucefal91",
  5154. "homepage": "https://www.drupal.org/user/504128"
  5155. },
  5156. {
  5157. "name": "devad",
  5158. "homepage": "https://www.drupal.org/user/2268520"
  5159. },
  5160. {
  5161. "name": "Zen",
  5162. "homepage": "https://www.drupal.org/user/21209"
  5163. }
  5164. ],
  5165. "description": "Provides synonyms feature for content entities.",
  5166. "homepage": "https://www.drupal.org/project/synonyms",
  5167. "support": {
  5168. "source": "https://git.drupalcode.org/project/synonyms"
  5169. }
  5170. },
  5171. {
  5172. "name": "drupal/token",
  5173. "version": "1.10.0",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://git.drupalcode.org/project/token.git",
  5177. "reference": "8.x-1.10"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  5182. "reference": "8.x-1.10",
  5183. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  5184. },
  5185. "require": {
  5186. "drupal/core": "^8.8 || ^9"
  5187. },
  5188. "type": "drupal-module",
  5189. "extra": {
  5190. "drupal": {
  5191. "version": "8.x-1.10",
  5192. "datestamp": "1638619775",
  5193. "security-coverage": {
  5194. "status": "covered",
  5195. "message": "Covered by Drupal's security advisory policy"
  5196. }
  5197. },
  5198. "drush": {
  5199. "services": {
  5200. "drush.services.yml": "^9 || ^10"
  5201. }
  5202. }
  5203. },
  5204. "notification-url": "https://packages.drupal.org/8/downloads",
  5205. "license": [
  5206. "GPL-2.0-or-later"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Berdir",
  5211. "homepage": "https://www.drupal.org/user/214652"
  5212. },
  5213. {
  5214. "name": "Dave Reid",
  5215. "homepage": "https://www.drupal.org/user/53892"
  5216. },
  5217. {
  5218. "name": "eaton",
  5219. "homepage": "https://www.drupal.org/user/16496"
  5220. },
  5221. {
  5222. "name": "fago",
  5223. "homepage": "https://www.drupal.org/user/16747"
  5224. },
  5225. {
  5226. "name": "greggles",
  5227. "homepage": "https://www.drupal.org/user/36762"
  5228. },
  5229. {
  5230. "name": "mikeryan",
  5231. "homepage": "https://www.drupal.org/user/4420"
  5232. }
  5233. ],
  5234. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5235. "homepage": "https://www.drupal.org/project/token",
  5236. "support": {
  5237. "source": "https://git.drupalcode.org/project/token"
  5238. }
  5239. },
  5240. {
  5241. "name": "drupal/translation_views",
  5242. "version": "1.0.0-alpha11",
  5243. "source": {
  5244. "type": "git",
  5245. "url": "https://git.drupalcode.org/project/translation_views.git",
  5246. "reference": "8.x-1.0-alpha11"
  5247. },
  5248. "dist": {
  5249. "type": "zip",
  5250. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5251. "reference": "8.x-1.0-alpha11",
  5252. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5253. },
  5254. "require": {
  5255. "drupal/core": "^8.8 || ^9 || ^10"
  5256. },
  5257. "require-dev": {
  5258. "drupal/translators_content": "^1.0@alpha"
  5259. },
  5260. "type": "drupal-module",
  5261. "extra": {
  5262. "drupal": {
  5263. "version": "8.x-1.0-alpha11",
  5264. "datestamp": "1679660668",
  5265. "security-coverage": {
  5266. "status": "not-covered",
  5267. "message": "Project has not opted into security advisory coverage!"
  5268. }
  5269. }
  5270. },
  5271. "notification-url": "https://packages.drupal.org/8/downloads",
  5272. "license": [
  5273. "GPL-2.0-or-later"
  5274. ],
  5275. "authors": [
  5276. {
  5277. "name": "matsbla",
  5278. "homepage": "https://www.drupal.org/user/2325394"
  5279. },
  5280. {
  5281. "name": "vlad.dancer",
  5282. "homepage": "https://www.drupal.org/user/903844"
  5283. }
  5284. ],
  5285. "description": "Create customized lists and queries of translations from your database.",
  5286. "homepage": "https://www.drupal.org/project/translation_views",
  5287. "support": {
  5288. "source": "https://git.drupalcode.org/project/translation_views"
  5289. }
  5290. },
  5291. {
  5292. "name": "drupal/upgrade_status",
  5293. "version": "3.19.0",
  5294. "source": {
  5295. "type": "git",
  5296. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5297. "reference": "8.x-3.19"
  5298. },
  5299. "dist": {
  5300. "type": "zip",
  5301. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5302. "reference": "8.x-3.19",
  5303. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5304. },
  5305. "require": {
  5306. "drupal/core": "^8 || ^9",
  5307. "mathieuviossat/arraytotexttable": "~1.0.0",
  5308. "mglaman/phpstan-drupal": "^1.0.0",
  5309. "nikic/php-parser": "^4.0.0",
  5310. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5311. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5312. "webflo/drupal-finder": "^1.2"
  5313. },
  5314. "type": "drupal-module",
  5315. "extra": {
  5316. "drupal": {
  5317. "version": "8.x-3.19",
  5318. "datestamp": "1678815320",
  5319. "security-coverage": {
  5320. "status": "covered",
  5321. "message": "Covered by Drupal's security advisory policy"
  5322. }
  5323. },
  5324. "drush": {
  5325. "services": {
  5326. "drush.services.yml": "^9 || ^10"
  5327. }
  5328. }
  5329. },
  5330. "notification-url": "https://packages.drupal.org/8/downloads",
  5331. "license": [
  5332. "GPL-2.0-or-later"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Gábor Hojtsy",
  5337. "homepage": "https://www.drupal.org/user/4166"
  5338. }
  5339. ],
  5340. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5341. "homepage": "http://drupal.org/project/upgrade_status",
  5342. "support": {
  5343. "source": "https://git.drupalcode.org/project/upgrade_status"
  5344. }
  5345. },
  5346. {
  5347. "name": "drupal/views_bulk_edit",
  5348. "version": "2.7.0",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5352. "reference": "8.x-2.7"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5357. "reference": "8.x-2.7",
  5358. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5359. },
  5360. "require": {
  5361. "drupal/core": "^8 || ^9"
  5362. },
  5363. "require-dev": {
  5364. "drupal/views_bulk_operations": "~3.0"
  5365. },
  5366. "suggest": {
  5367. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5368. },
  5369. "type": "drupal-module",
  5370. "extra": {
  5371. "drupal": {
  5372. "version": "8.x-2.7",
  5373. "datestamp": "1664355764",
  5374. "security-coverage": {
  5375. "status": "covered",
  5376. "message": "Covered by Drupal's security advisory policy"
  5377. }
  5378. }
  5379. },
  5380. "notification-url": "https://packages.drupal.org/8/downloads",
  5381. "license": [
  5382. "GPL-2.0+"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Marcin Grabias",
  5387. "homepage": "https://www.drupal.org/u/graber"
  5388. },
  5389. {
  5390. "name": "benjy",
  5391. "homepage": "https://www.drupal.org/user/1852732"
  5392. },
  5393. {
  5394. "name": "graber",
  5395. "homepage": "https://www.drupal.org/user/1599440"
  5396. },
  5397. {
  5398. "name": "grevil",
  5399. "homepage": "https://www.drupal.org/user/3668491"
  5400. },
  5401. {
  5402. "name": "joseph.olstad",
  5403. "homepage": "https://www.drupal.org/user/1321830"
  5404. }
  5405. ],
  5406. "description": "Allows bulk edition of entity field values.",
  5407. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5408. "support": {
  5409. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5410. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5411. }
  5412. },
  5413. {
  5414. "name": "drupal/views_bulk_operations",
  5415. "version": "3.13.0",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5419. "reference": "8.x-3.13"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.13.zip",
  5424. "reference": "8.x-3.13",
  5425. "shasum": "70583d08b91be3b5e008f571589425c2176eb73b"
  5426. },
  5427. "require": {
  5428. "drupal/core": "^8.8 || ^9"
  5429. },
  5430. "require-dev": {
  5431. "drush/drush": "^10"
  5432. },
  5433. "suggest": {
  5434. "drush/drush": "^9 || ^10"
  5435. },
  5436. "type": "drupal-module",
  5437. "extra": {
  5438. "drupal": {
  5439. "version": "8.x-3.13",
  5440. "datestamp": "1619697066",
  5441. "security-coverage": {
  5442. "status": "covered",
  5443. "message": "Covered by Drupal's security advisory policy"
  5444. }
  5445. },
  5446. "drush": {
  5447. "services": {
  5448. "drush.services.yml": "^9 || ^10"
  5449. }
  5450. }
  5451. },
  5452. "notification-url": "https://packages.drupal.org/8/downloads",
  5453. "license": [
  5454. "GPL-2.0-or-later"
  5455. ],
  5456. "authors": [
  5457. {
  5458. "name": "Marcin Grabias",
  5459. "homepage": "https://www.drupal.org/u/graber"
  5460. },
  5461. {
  5462. "name": "Graber",
  5463. "homepage": "https://www.drupal.org/user/1599440"
  5464. },
  5465. {
  5466. "name": "joelpittet",
  5467. "homepage": "https://www.drupal.org/user/160302"
  5468. }
  5469. ],
  5470. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5471. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5472. "support": {
  5473. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5474. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5475. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5476. }
  5477. },
  5478. {
  5479. "name": "drupal/workflow",
  5480. "version": "1.6.0",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://git.drupalcode.org/project/workflow.git",
  5484. "reference": "8.x-1.6"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.6.zip",
  5489. "reference": "8.x-1.6",
  5490. "shasum": "a798b9e85cd267d7e9a7d44b9e883ecbcdad1406"
  5491. },
  5492. "require": {
  5493. "drupal/core": "^8.8 || ^9"
  5494. },
  5495. "type": "drupal-module",
  5496. "extra": {
  5497. "drupal": {
  5498. "version": "8.x-1.6",
  5499. "datestamp": "1671818949",
  5500. "security-coverage": {
  5501. "status": "covered",
  5502. "message": "Covered by Drupal's security advisory policy"
  5503. }
  5504. }
  5505. },
  5506. "notification-url": "https://packages.drupal.org/8/downloads",
  5507. "license": [
  5508. "GPL-2.0-or-later"
  5509. ],
  5510. "authors": [
  5511. {
  5512. "name": "Bastlynn",
  5513. "homepage": "https://www.drupal.org/user/275249"
  5514. },
  5515. {
  5516. "name": "eaton",
  5517. "homepage": "https://www.drupal.org/user/16496"
  5518. },
  5519. {
  5520. "name": "Heine",
  5521. "homepage": "https://www.drupal.org/user/17943"
  5522. },
  5523. {
  5524. "name": "JacobSingh",
  5525. "homepage": "https://www.drupal.org/user/68912"
  5526. },
  5527. {
  5528. "name": "johnv",
  5529. "homepage": "https://www.drupal.org/user/591042"
  5530. },
  5531. {
  5532. "name": "jvandyk",
  5533. "homepage": "https://www.drupal.org/user/2375"
  5534. },
  5535. {
  5536. "name": "mfredrickson",
  5537. "homepage": "https://www.drupal.org/user/31994"
  5538. },
  5539. {
  5540. "name": "NancyDru",
  5541. "homepage": "https://www.drupal.org/user/101412"
  5542. },
  5543. {
  5544. "name": "q0rban",
  5545. "homepage": "https://www.drupal.org/user/31022"
  5546. }
  5547. ],
  5548. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5549. "homepage": "https://www.drupal.org/project/workflow",
  5550. "support": {
  5551. "source": "https://git.drupalcode.org/project/workflow"
  5552. }
  5553. },
  5554. {
  5555. "name": "drush/drush",
  5556. "version": "10.6.2",
  5557. "source": {
  5558. "type": "git",
  5559. "url": "https://github.com/drush-ops/drush.git",
  5560. "reference": "0a570a16ec63259eb71195aba5feab532318b337"
  5561. },
  5562. "dist": {
  5563. "type": "zip",
  5564. "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337",
  5565. "reference": "0a570a16ec63259eb71195aba5feab532318b337",
  5566. "shasum": ""
  5567. },
  5568. "require": {
  5569. "chi-teck/drupal-code-generator": "^1.32.1",
  5570. "composer/semver": "^1.4 || ^3",
  5571. "consolidation/config": "^1.2",
  5572. "consolidation/filter-via-dot-access-data": "^1",
  5573. "consolidation/robo": "^1.4.11 || ^2 || ^3",
  5574. "consolidation/site-alias": "^3.0.0@stable",
  5575. "consolidation/site-process": "^2.1 || ^4",
  5576. "enlightn/security-checker": "^1",
  5577. "ext-dom": "*",
  5578. "grasmash/yaml-expander": "^1.1.1",
  5579. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  5580. "league/container": "^2.5 || ^3.4",
  5581. "php": ">=7.1.3",
  5582. "psr/log": "~1.0",
  5583. "psy/psysh": ">=0.6 <0.11",
  5584. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5585. "symfony/finder": "^3.4 || ^4.0 || ^5",
  5586. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  5587. "symfony/yaml": "^3.4 || ^4.0",
  5588. "webflo/drupal-finder": "^1.2",
  5589. "webmozart/path-util": "^2.1.0"
  5590. },
  5591. "conflict": {
  5592. "drupal/migrate_run": "*",
  5593. "drupal/migrate_tools": "<= 5"
  5594. },
  5595. "require-dev": {
  5596. "composer/installers": "^1.7",
  5597. "cweagans/composer-patches": "~1.0",
  5598. "david-garcia/phpwhois": "4.3.0",
  5599. "drupal/alinks": "1.0.0",
  5600. "drupal/core-recommended": "^8.8",
  5601. "phpunit/phpunit": ">=7.5.20",
  5602. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5603. "vlucas/phpdotenv": "^2.4",
  5604. "yoast/phpunit-polyfills": "^0.2.0"
  5605. },
  5606. "bin": [
  5607. "drush"
  5608. ],
  5609. "type": "library",
  5610. "extra": {
  5611. "installer-paths": {
  5612. "sut/core": [
  5613. "type:drupal-core"
  5614. ],
  5615. "sut/libraries/{$name}": [
  5616. "type:drupal-library"
  5617. ],
  5618. "sut/modules/unish/{$name}": [
  5619. "drupal/devel"
  5620. ],
  5621. "sut/themes/unish/{$name}": [
  5622. "drupal/empty_theme"
  5623. ],
  5624. "sut/modules/contrib/{$name}": [
  5625. "type:drupal-module"
  5626. ],
  5627. "sut/profiles/contrib/{$name}": [
  5628. "type:drupal-profile"
  5629. ],
  5630. "sut/themes/contrib/{$name}": [
  5631. "type:drupal-theme"
  5632. ],
  5633. "sut/drush/contrib/{$name}": [
  5634. "type:drupal-drush"
  5635. ]
  5636. }
  5637. },
  5638. "autoload": {
  5639. "psr-4": {
  5640. "Drush\\": "src/",
  5641. "Drush\\Internal\\": "src/internal-forks"
  5642. }
  5643. },
  5644. "notification-url": "https://packagist.org/downloads/",
  5645. "license": [
  5646. "GPL-2.0-or-later"
  5647. ],
  5648. "authors": [
  5649. {
  5650. "name": "Moshe Weitzman",
  5651. "email": "weitzman@tejasa.com"
  5652. },
  5653. {
  5654. "name": "Owen Barton",
  5655. "email": "drupal@owenbarton.com"
  5656. },
  5657. {
  5658. "name": "Greg Anderson",
  5659. "email": "greg.1.anderson@greenknowe.org"
  5660. },
  5661. {
  5662. "name": "Jonathan Araña Cruz",
  5663. "email": "jonhattan@faita.net"
  5664. },
  5665. {
  5666. "name": "Jonathan Hedstrom",
  5667. "email": "jhedstrom@gmail.com"
  5668. },
  5669. {
  5670. "name": "Christopher Gervais",
  5671. "email": "chris@ergonlogic.com"
  5672. },
  5673. {
  5674. "name": "Dave Reid",
  5675. "email": "dave@davereid.net"
  5676. },
  5677. {
  5678. "name": "Damian Lee",
  5679. "email": "damiankloip@googlemail.com"
  5680. }
  5681. ],
  5682. "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.",
  5683. "homepage": "http://www.drush.org",
  5684. "support": {
  5685. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5686. "irc": "irc://irc.freenode.org/drush",
  5687. "issues": "https://github.com/drush-ops/drush/issues",
  5688. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5689. "source": "https://github.com/drush-ops/drush/tree/10.6.2"
  5690. },
  5691. "funding": [
  5692. {
  5693. "url": "https://github.com/weitzman",
  5694. "type": "github"
  5695. }
  5696. ],
  5697. "time": "2021-12-15T17:09:54+00:00"
  5698. },
  5699. {
  5700. "name": "egulias/email-validator",
  5701. "version": "3.2.6",
  5702. "source": {
  5703. "type": "git",
  5704. "url": "https://github.com/egulias/EmailValidator.git",
  5705. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  5706. },
  5707. "dist": {
  5708. "type": "zip",
  5709. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5710. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  5711. "shasum": ""
  5712. },
  5713. "require": {
  5714. "doctrine/lexer": "^1.2|^2",
  5715. "php": ">=7.2",
  5716. "symfony/polyfill-intl-idn": "^1.15"
  5717. },
  5718. "require-dev": {
  5719. "phpunit/phpunit": "^8.5.8|^9.3.3",
  5720. "vimeo/psalm": "^4"
  5721. },
  5722. "suggest": {
  5723. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5724. },
  5725. "type": "library",
  5726. "extra": {
  5727. "branch-alias": {
  5728. "dev-master": "3.0.x-dev"
  5729. }
  5730. },
  5731. "autoload": {
  5732. "psr-4": {
  5733. "Egulias\\EmailValidator\\": "src"
  5734. }
  5735. },
  5736. "notification-url": "https://packagist.org/downloads/",
  5737. "license": [
  5738. "MIT"
  5739. ],
  5740. "authors": [
  5741. {
  5742. "name": "Eduardo Gulias Davis"
  5743. }
  5744. ],
  5745. "description": "A library for validating emails against several RFCs",
  5746. "homepage": "https://github.com/egulias/EmailValidator",
  5747. "keywords": [
  5748. "email",
  5749. "emailvalidation",
  5750. "emailvalidator",
  5751. "validation",
  5752. "validator"
  5753. ],
  5754. "support": {
  5755. "issues": "https://github.com/egulias/EmailValidator/issues",
  5756. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  5757. },
  5758. "funding": [
  5759. {
  5760. "url": "https://github.com/egulias",
  5761. "type": "github"
  5762. }
  5763. ],
  5764. "time": "2023-06-01T07:04:22+00:00"
  5765. },
  5766. {
  5767. "name": "enlightn/security-checker",
  5768. "version": "v1.11.0",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://github.com/enlightn/security-checker.git",
  5772. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5777. "reference": "68df5c7256c84b428bf8fcff0d249de06ce362d2",
  5778. "shasum": ""
  5779. },
  5780. "require": {
  5781. "ext-json": "*",
  5782. "guzzlehttp/guzzle": "^6.3|^7.0",
  5783. "php": ">=5.6",
  5784. "symfony/console": "^3.4|^4|^5|^6|^7",
  5785. "symfony/finder": "^3|^4|^5|^6|^7",
  5786. "symfony/process": "^3.4|^4|^5|^6|^7",
  5787. "symfony/yaml": "^3.4|^4|^5|^6|^7"
  5788. },
  5789. "require-dev": {
  5790. "ext-zip": "*",
  5791. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  5792. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  5793. },
  5794. "bin": [
  5795. "security-checker"
  5796. ],
  5797. "type": "library",
  5798. "autoload": {
  5799. "psr-4": {
  5800. "Enlightn\\SecurityChecker\\": "src"
  5801. }
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "MIT"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "Paras Malhotra",
  5810. "email": "paras@laravel-enlightn.com"
  5811. },
  5812. {
  5813. "name": "Miguel Piedrafita",
  5814. "email": "soy@miguelpiedrafita.com"
  5815. }
  5816. ],
  5817. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  5818. "keywords": [
  5819. "package",
  5820. "php",
  5821. "scanner",
  5822. "security",
  5823. "security advisories",
  5824. "vulnerability scanner"
  5825. ],
  5826. "support": {
  5827. "issues": "https://github.com/enlightn/security-checker/issues",
  5828. "source": "https://github.com/enlightn/security-checker/tree/v1.11.0"
  5829. },
  5830. "time": "2023-11-17T07:53:29+00:00"
  5831. },
  5832. {
  5833. "name": "grasmash/expander",
  5834. "version": "1.0.0",
  5835. "source": {
  5836. "type": "git",
  5837. "url": "https://github.com/grasmash/expander.git",
  5838. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5839. },
  5840. "dist": {
  5841. "type": "zip",
  5842. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5843. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5844. "shasum": ""
  5845. },
  5846. "require": {
  5847. "dflydev/dot-access-data": "^1.1.0",
  5848. "php": ">=5.4"
  5849. },
  5850. "require-dev": {
  5851. "greg-1-anderson/composer-test-scenarios": "^1",
  5852. "phpunit/phpunit": "^4|^5.5.4",
  5853. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5854. "squizlabs/php_codesniffer": "^2.7"
  5855. },
  5856. "type": "library",
  5857. "extra": {
  5858. "branch-alias": {
  5859. "dev-master": "1.x-dev"
  5860. }
  5861. },
  5862. "autoload": {
  5863. "psr-4": {
  5864. "Grasmash\\Expander\\": "src/"
  5865. }
  5866. },
  5867. "notification-url": "https://packagist.org/downloads/",
  5868. "license": [
  5869. "MIT"
  5870. ],
  5871. "authors": [
  5872. {
  5873. "name": "Matthew Grasmick"
  5874. }
  5875. ],
  5876. "description": "Expands internal property references in PHP arrays file.",
  5877. "support": {
  5878. "issues": "https://github.com/grasmash/expander/issues",
  5879. "source": "https://github.com/grasmash/expander/tree/master"
  5880. },
  5881. "time": "2017-12-21T22:14:55+00:00"
  5882. },
  5883. {
  5884. "name": "grasmash/yaml-expander",
  5885. "version": "1.4.0",
  5886. "source": {
  5887. "type": "git",
  5888. "url": "https://github.com/grasmash/yaml-expander.git",
  5889. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5890. },
  5891. "dist": {
  5892. "type": "zip",
  5893. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5894. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5895. "shasum": ""
  5896. },
  5897. "require": {
  5898. "dflydev/dot-access-data": "^1.1.0",
  5899. "php": ">=5.4",
  5900. "symfony/yaml": "^2.8.11|^3|^4"
  5901. },
  5902. "require-dev": {
  5903. "greg-1-anderson/composer-test-scenarios": "^1",
  5904. "phpunit/phpunit": "^4.8|^5.5.4",
  5905. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5906. "squizlabs/php_codesniffer": "^2.7"
  5907. },
  5908. "type": "library",
  5909. "extra": {
  5910. "branch-alias": {
  5911. "dev-master": "1.x-dev"
  5912. }
  5913. },
  5914. "autoload": {
  5915. "psr-4": {
  5916. "Grasmash\\YamlExpander\\": "src/"
  5917. }
  5918. },
  5919. "notification-url": "https://packagist.org/downloads/",
  5920. "license": [
  5921. "MIT"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "Matthew Grasmick"
  5926. }
  5927. ],
  5928. "description": "Expands internal property references in a yaml file.",
  5929. "support": {
  5930. "issues": "https://github.com/grasmash/yaml-expander/issues",
  5931. "source": "https://github.com/grasmash/yaml-expander/tree/master"
  5932. },
  5933. "time": "2017-12-16T16:06:03+00:00"
  5934. },
  5935. {
  5936. "name": "guzzlehttp/guzzle",
  5937. "version": "6.5.8",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/guzzle/guzzle.git",
  5941. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  5946. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "ext-json": "*",
  5951. "guzzlehttp/promises": "^1.0",
  5952. "guzzlehttp/psr7": "^1.9",
  5953. "php": ">=5.5",
  5954. "symfony/polyfill-intl-idn": "^1.17"
  5955. },
  5956. "require-dev": {
  5957. "ext-curl": "*",
  5958. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5959. "psr/log": "^1.1"
  5960. },
  5961. "suggest": {
  5962. "psr/log": "Required for using the Log middleware"
  5963. },
  5964. "type": "library",
  5965. "extra": {
  5966. "branch-alias": {
  5967. "dev-master": "6.5-dev"
  5968. }
  5969. },
  5970. "autoload": {
  5971. "files": [
  5972. "src/functions_include.php"
  5973. ],
  5974. "psr-4": {
  5975. "GuzzleHttp\\": "src/"
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "Graham Campbell",
  5985. "email": "hello@gjcampbell.co.uk",
  5986. "homepage": "https://github.com/GrahamCampbell"
  5987. },
  5988. {
  5989. "name": "Michael Dowling",
  5990. "email": "mtdowling@gmail.com",
  5991. "homepage": "https://github.com/mtdowling"
  5992. },
  5993. {
  5994. "name": "Jeremy Lindblom",
  5995. "email": "jeremeamia@gmail.com",
  5996. "homepage": "https://github.com/jeremeamia"
  5997. },
  5998. {
  5999. "name": "George Mponos",
  6000. "email": "gmponos@gmail.com",
  6001. "homepage": "https://github.com/gmponos"
  6002. },
  6003. {
  6004. "name": "Tobias Nyholm",
  6005. "email": "tobias.nyholm@gmail.com",
  6006. "homepage": "https://github.com/Nyholm"
  6007. },
  6008. {
  6009. "name": "Márk Sági-Kazár",
  6010. "email": "mark.sagikazar@gmail.com",
  6011. "homepage": "https://github.com/sagikazarmark"
  6012. },
  6013. {
  6014. "name": "Tobias Schultze",
  6015. "email": "webmaster@tubo-world.de",
  6016. "homepage": "https://github.com/Tobion"
  6017. }
  6018. ],
  6019. "description": "Guzzle is a PHP HTTP client library",
  6020. "homepage": "http://guzzlephp.org/",
  6021. "keywords": [
  6022. "client",
  6023. "curl",
  6024. "framework",
  6025. "http",
  6026. "http client",
  6027. "rest",
  6028. "web service"
  6029. ],
  6030. "support": {
  6031. "issues": "https://github.com/guzzle/guzzle/issues",
  6032. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  6033. },
  6034. "funding": [
  6035. {
  6036. "url": "https://github.com/GrahamCampbell",
  6037. "type": "github"
  6038. },
  6039. {
  6040. "url": "https://github.com/Nyholm",
  6041. "type": "github"
  6042. },
  6043. {
  6044. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  6045. "type": "tidelift"
  6046. }
  6047. ],
  6048. "time": "2022-06-20T22:16:07+00:00"
  6049. },
  6050. {
  6051. "name": "guzzlehttp/promises",
  6052. "version": "1.5.3",
  6053. "source": {
  6054. "type": "git",
  6055. "url": "https://github.com/guzzle/promises.git",
  6056. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  6057. },
  6058. "dist": {
  6059. "type": "zip",
  6060. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  6061. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  6062. "shasum": ""
  6063. },
  6064. "require": {
  6065. "php": ">=5.5"
  6066. },
  6067. "require-dev": {
  6068. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  6069. },
  6070. "type": "library",
  6071. "autoload": {
  6072. "files": [
  6073. "src/functions_include.php"
  6074. ],
  6075. "psr-4": {
  6076. "GuzzleHttp\\Promise\\": "src/"
  6077. }
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Graham Campbell",
  6086. "email": "hello@gjcampbell.co.uk",
  6087. "homepage": "https://github.com/GrahamCampbell"
  6088. },
  6089. {
  6090. "name": "Michael Dowling",
  6091. "email": "mtdowling@gmail.com",
  6092. "homepage": "https://github.com/mtdowling"
  6093. },
  6094. {
  6095. "name": "Tobias Nyholm",
  6096. "email": "tobias.nyholm@gmail.com",
  6097. "homepage": "https://github.com/Nyholm"
  6098. },
  6099. {
  6100. "name": "Tobias Schultze",
  6101. "email": "webmaster@tubo-world.de",
  6102. "homepage": "https://github.com/Tobion"
  6103. }
  6104. ],
  6105. "description": "Guzzle promises library",
  6106. "keywords": [
  6107. "promise"
  6108. ],
  6109. "support": {
  6110. "issues": "https://github.com/guzzle/promises/issues",
  6111. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  6112. },
  6113. "funding": [
  6114. {
  6115. "url": "https://github.com/GrahamCampbell",
  6116. "type": "github"
  6117. },
  6118. {
  6119. "url": "https://github.com/Nyholm",
  6120. "type": "github"
  6121. },
  6122. {
  6123. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  6124. "type": "tidelift"
  6125. }
  6126. ],
  6127. "time": "2023-05-21T12:31:43+00:00"
  6128. },
  6129. {
  6130. "name": "guzzlehttp/psr7",
  6131. "version": "1.9.1",
  6132. "source": {
  6133. "type": "git",
  6134. "url": "https://github.com/guzzle/psr7.git",
  6135. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  6136. },
  6137. "dist": {
  6138. "type": "zip",
  6139. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6140. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  6141. "shasum": ""
  6142. },
  6143. "require": {
  6144. "php": ">=5.4.0",
  6145. "psr/http-message": "~1.0",
  6146. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6147. },
  6148. "provide": {
  6149. "psr/http-message-implementation": "1.0"
  6150. },
  6151. "require-dev": {
  6152. "ext-zlib": "*",
  6153. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  6154. },
  6155. "suggest": {
  6156. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  6157. },
  6158. "type": "library",
  6159. "autoload": {
  6160. "files": [
  6161. "src/functions_include.php"
  6162. ],
  6163. "psr-4": {
  6164. "GuzzleHttp\\Psr7\\": "src/"
  6165. }
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "license": [
  6169. "MIT"
  6170. ],
  6171. "authors": [
  6172. {
  6173. "name": "Graham Campbell",
  6174. "email": "hello@gjcampbell.co.uk",
  6175. "homepage": "https://github.com/GrahamCampbell"
  6176. },
  6177. {
  6178. "name": "Michael Dowling",
  6179. "email": "mtdowling@gmail.com",
  6180. "homepage": "https://github.com/mtdowling"
  6181. },
  6182. {
  6183. "name": "George Mponos",
  6184. "email": "gmponos@gmail.com",
  6185. "homepage": "https://github.com/gmponos"
  6186. },
  6187. {
  6188. "name": "Tobias Nyholm",
  6189. "email": "tobias.nyholm@gmail.com",
  6190. "homepage": "https://github.com/Nyholm"
  6191. },
  6192. {
  6193. "name": "Márk Sági-Kazár",
  6194. "email": "mark.sagikazar@gmail.com",
  6195. "homepage": "https://github.com/sagikazarmark"
  6196. },
  6197. {
  6198. "name": "Tobias Schultze",
  6199. "email": "webmaster@tubo-world.de",
  6200. "homepage": "https://github.com/Tobion"
  6201. }
  6202. ],
  6203. "description": "PSR-7 message implementation that also provides common utility methods",
  6204. "keywords": [
  6205. "http",
  6206. "message",
  6207. "psr-7",
  6208. "request",
  6209. "response",
  6210. "stream",
  6211. "uri",
  6212. "url"
  6213. ],
  6214. "support": {
  6215. "issues": "https://github.com/guzzle/psr7/issues",
  6216. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  6217. },
  6218. "funding": [
  6219. {
  6220. "url": "https://github.com/GrahamCampbell",
  6221. "type": "github"
  6222. },
  6223. {
  6224. "url": "https://github.com/Nyholm",
  6225. "type": "github"
  6226. },
  6227. {
  6228. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  6229. "type": "tidelift"
  6230. }
  6231. ],
  6232. "time": "2023-04-17T16:00:37+00:00"
  6233. },
  6234. {
  6235. "name": "kint-php/kint",
  6236. "version": "5.1.1",
  6237. "source": {
  6238. "type": "git",
  6239. "url": "https://github.com/kint-php/kint.git",
  6240. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6241. },
  6242. "dist": {
  6243. "type": "zip",
  6244. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6245. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6246. "shasum": ""
  6247. },
  6248. "require": {
  6249. "php": ">=7.1"
  6250. },
  6251. "require-dev": {
  6252. "friendsofphp/php-cs-fixer": "^3",
  6253. "phpspec/prophecy-phpunit": "^2",
  6254. "phpunit/phpunit": "^9",
  6255. "seld/phar-utils": "^1",
  6256. "symfony/finder": ">=4.0",
  6257. "vimeo/psalm": "^5"
  6258. },
  6259. "suggest": {
  6260. "kint-php/kint-helpers": "Provides extra helper functions",
  6261. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6262. },
  6263. "type": "library",
  6264. "autoload": {
  6265. "files": [
  6266. "init.php"
  6267. ],
  6268. "psr-4": {
  6269. "Kint\\": "src/"
  6270. }
  6271. },
  6272. "notification-url": "https://packagist.org/downloads/",
  6273. "license": [
  6274. "MIT"
  6275. ],
  6276. "authors": [
  6277. {
  6278. "name": "Jonathan Vollebregt",
  6279. "homepage": "https://github.com/jnvsor"
  6280. },
  6281. {
  6282. "name": "Contributors",
  6283. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6284. }
  6285. ],
  6286. "description": "Kint - debugging tool for PHP developers",
  6287. "homepage": "https://kint-php.github.io/kint/",
  6288. "keywords": [
  6289. "debug",
  6290. "kint",
  6291. "php"
  6292. ],
  6293. "support": {
  6294. "issues": "https://github.com/kint-php/kint/issues",
  6295. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6296. },
  6297. "time": "2024-04-26T14:20:09+00:00"
  6298. },
  6299. {
  6300. "name": "laminas/laminas-escaper",
  6301. "version": "2.12.0",
  6302. "source": {
  6303. "type": "git",
  6304. "url": "https://github.com/laminas/laminas-escaper.git",
  6305. "reference": "ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490"
  6306. },
  6307. "dist": {
  6308. "type": "zip",
  6309. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490",
  6310. "reference": "ee7a4c37bf3d0e8c03635d5bddb5bb3184ead490",
  6311. "shasum": ""
  6312. },
  6313. "require": {
  6314. "ext-ctype": "*",
  6315. "ext-mbstring": "*",
  6316. "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  6317. },
  6318. "conflict": {
  6319. "zendframework/zend-escaper": "*"
  6320. },
  6321. "require-dev": {
  6322. "infection/infection": "^0.26.6",
  6323. "laminas/laminas-coding-standard": "~2.4.0",
  6324. "maglnet/composer-require-checker": "^3.8.0",
  6325. "phpunit/phpunit": "^9.5.18",
  6326. "psalm/plugin-phpunit": "^0.17.0",
  6327. "vimeo/psalm": "^4.22.0"
  6328. },
  6329. "type": "library",
  6330. "autoload": {
  6331. "psr-4": {
  6332. "Laminas\\Escaper\\": "src/"
  6333. }
  6334. },
  6335. "notification-url": "https://packagist.org/downloads/",
  6336. "license": [
  6337. "BSD-3-Clause"
  6338. ],
  6339. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6340. "homepage": "https://laminas.dev",
  6341. "keywords": [
  6342. "escaper",
  6343. "laminas"
  6344. ],
  6345. "support": {
  6346. "chat": "https://laminas.dev/chat",
  6347. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6348. "forum": "https://discourse.laminas.dev",
  6349. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6350. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6351. "source": "https://github.com/laminas/laminas-escaper"
  6352. },
  6353. "funding": [
  6354. {
  6355. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6356. "type": "community_bridge"
  6357. }
  6358. ],
  6359. "time": "2022-10-10T10:11:09+00:00"
  6360. },
  6361. {
  6362. "name": "laminas/laminas-feed",
  6363. "version": "2.18.2",
  6364. "source": {
  6365. "type": "git",
  6366. "url": "https://github.com/laminas/laminas-feed.git",
  6367. "reference": "a57fdb9df42950d5b7f052509fbdab0d081c6b6d"
  6368. },
  6369. "dist": {
  6370. "type": "zip",
  6371. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/a57fdb9df42950d5b7f052509fbdab0d081c6b6d",
  6372. "reference": "a57fdb9df42950d5b7f052509fbdab0d081c6b6d",
  6373. "shasum": ""
  6374. },
  6375. "require": {
  6376. "ext-dom": "*",
  6377. "ext-libxml": "*",
  6378. "laminas/laminas-escaper": "^2.9",
  6379. "laminas/laminas-servicemanager": "^3.14.0",
  6380. "laminas/laminas-stdlib": "^3.6",
  6381. "php": "^7.4 || ~8.0.0 || ~8.1.0"
  6382. },
  6383. "conflict": {
  6384. "laminas/laminas-servicemanager": "<3.3",
  6385. "zendframework/zend-feed": "*"
  6386. },
  6387. "require-dev": {
  6388. "laminas/laminas-cache": "^2.13.2 || ^3.1.3",
  6389. "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.0.0",
  6390. "laminas/laminas-coding-standard": "~2.3.0",
  6391. "laminas/laminas-db": "^2.13.3",
  6392. "laminas/laminas-http": "^2.15",
  6393. "laminas/laminas-validator": "^2.15",
  6394. "phpunit/phpunit": "^9.5.5",
  6395. "psalm/plugin-phpunit": "^0.17.0",
  6396. "psr/http-message": "^1.0.1",
  6397. "vimeo/psalm": "^4.24.0"
  6398. },
  6399. "suggest": {
  6400. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6401. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6402. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6403. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6404. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6405. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6406. },
  6407. "type": "library",
  6408. "autoload": {
  6409. "psr-4": {
  6410. "Laminas\\Feed\\": "src/"
  6411. }
  6412. },
  6413. "notification-url": "https://packagist.org/downloads/",
  6414. "license": [
  6415. "BSD-3-Clause"
  6416. ],
  6417. "description": "provides functionality for creating and consuming RSS and Atom feeds",
  6418. "homepage": "https://laminas.dev",
  6419. "keywords": [
  6420. "atom",
  6421. "feed",
  6422. "laminas",
  6423. "rss"
  6424. ],
  6425. "support": {
  6426. "chat": "https://laminas.dev/chat",
  6427. "docs": "https://docs.laminas.dev/laminas-feed/",
  6428. "forum": "https://discourse.laminas.dev",
  6429. "issues": "https://github.com/laminas/laminas-feed/issues",
  6430. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6431. "source": "https://github.com/laminas/laminas-feed"
  6432. },
  6433. "funding": [
  6434. {
  6435. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6436. "type": "community_bridge"
  6437. }
  6438. ],
  6439. "time": "2022-08-08T17:02:35+00:00"
  6440. },
  6441. {
  6442. "name": "laminas/laminas-servicemanager",
  6443. "version": "3.17.0",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6447. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6452. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "laminas/laminas-stdlib": "^3.2.1",
  6457. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6458. "psr/container": "^1.0"
  6459. },
  6460. "conflict": {
  6461. "ext-psr": "*",
  6462. "laminas/laminas-code": "<3.3.1",
  6463. "zendframework/zend-code": "<3.3.1",
  6464. "zendframework/zend-servicemanager": "*"
  6465. },
  6466. "provide": {
  6467. "psr/container-implementation": "^1.0"
  6468. },
  6469. "replace": {
  6470. "container-interop/container-interop": "^1.2.0"
  6471. },
  6472. "require-dev": {
  6473. "composer/package-versions-deprecated": "^1.0",
  6474. "laminas/laminas-coding-standard": "~2.4.0",
  6475. "laminas/laminas-container-config-test": "^0.7",
  6476. "laminas/laminas-dependency-plugin": "^2.1.2",
  6477. "mikey179/vfsstream": "^1.6.10@alpha",
  6478. "ocramius/proxy-manager": "^2.11",
  6479. "phpbench/phpbench": "^1.1",
  6480. "phpspec/prophecy-phpunit": "^2.0",
  6481. "phpunit/phpunit": "^9.5.5",
  6482. "psalm/plugin-phpunit": "^0.17.0",
  6483. "vimeo/psalm": "^4.8"
  6484. },
  6485. "suggest": {
  6486. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6487. },
  6488. "bin": [
  6489. "bin/generate-deps-for-config-factory",
  6490. "bin/generate-factory-for-class"
  6491. ],
  6492. "type": "library",
  6493. "autoload": {
  6494. "files": [
  6495. "src/autoload.php"
  6496. ],
  6497. "psr-4": {
  6498. "Laminas\\ServiceManager\\": "src/"
  6499. }
  6500. },
  6501. "notification-url": "https://packagist.org/downloads/",
  6502. "license": [
  6503. "BSD-3-Clause"
  6504. ],
  6505. "description": "Factory-Driven Dependency Injection Container",
  6506. "homepage": "https://laminas.dev",
  6507. "keywords": [
  6508. "PSR-11",
  6509. "dependency-injection",
  6510. "di",
  6511. "dic",
  6512. "laminas",
  6513. "service-manager",
  6514. "servicemanager"
  6515. ],
  6516. "support": {
  6517. "chat": "https://laminas.dev/chat",
  6518. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6519. "forum": "https://discourse.laminas.dev",
  6520. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6521. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6522. "source": "https://github.com/laminas/laminas-servicemanager"
  6523. },
  6524. "funding": [
  6525. {
  6526. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6527. "type": "community_bridge"
  6528. }
  6529. ],
  6530. "time": "2022-09-22T11:33:46+00:00"
  6531. },
  6532. {
  6533. "name": "laminas/laminas-stdlib",
  6534. "version": "3.13.0",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/laminas/laminas-stdlib.git",
  6538. "reference": "66a6d03c381f6c9f1dd988bf8244f9afb9380d76"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/66a6d03c381f6c9f1dd988bf8244f9afb9380d76",
  6543. "reference": "66a6d03c381f6c9f1dd988bf8244f9afb9380d76",
  6544. "shasum": ""
  6545. },
  6546. "require": {
  6547. "php": "^7.4 || ~8.0.0 || ~8.1.0"
  6548. },
  6549. "conflict": {
  6550. "zendframework/zend-stdlib": "*"
  6551. },
  6552. "require-dev": {
  6553. "laminas/laminas-coding-standard": "~2.3.0",
  6554. "phpbench/phpbench": "^1.2.6",
  6555. "phpstan/phpdoc-parser": "^0.5.4",
  6556. "phpunit/phpunit": "^9.5.23",
  6557. "psalm/plugin-phpunit": "^0.17.0",
  6558. "vimeo/psalm": "^4.26"
  6559. },
  6560. "type": "library",
  6561. "autoload": {
  6562. "psr-4": {
  6563. "Laminas\\Stdlib\\": "src/"
  6564. }
  6565. },
  6566. "notification-url": "https://packagist.org/downloads/",
  6567. "license": [
  6568. "BSD-3-Clause"
  6569. ],
  6570. "description": "SPL extensions, array utilities, error handlers, and more",
  6571. "homepage": "https://laminas.dev",
  6572. "keywords": [
  6573. "laminas",
  6574. "stdlib"
  6575. ],
  6576. "support": {
  6577. "chat": "https://laminas.dev/chat",
  6578. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6579. "forum": "https://discourse.laminas.dev",
  6580. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6581. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6582. "source": "https://github.com/laminas/laminas-stdlib"
  6583. },
  6584. "funding": [
  6585. {
  6586. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6587. "type": "community_bridge"
  6588. }
  6589. ],
  6590. "time": "2022-08-24T13:56:50+00:00"
  6591. },
  6592. {
  6593. "name": "laminas/laminas-text",
  6594. "version": "2.8.1",
  6595. "source": {
  6596. "type": "git",
  6597. "url": "https://github.com/laminas/laminas-text.git",
  6598. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6599. },
  6600. "dist": {
  6601. "type": "zip",
  6602. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6603. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6604. "shasum": ""
  6605. },
  6606. "require": {
  6607. "laminas/laminas-servicemanager": "^3.4",
  6608. "laminas/laminas-stdlib": "^3.1",
  6609. "laminas/laminas-zendframework-bridge": "^1.0",
  6610. "php": "^7.3 || ~8.0.0"
  6611. },
  6612. "replace": {
  6613. "zendframework/zend-text": "^2.7.1"
  6614. },
  6615. "require-dev": {
  6616. "laminas/laminas-coding-standard": "~1.0.0",
  6617. "laminas/laminas-config": "^3.4",
  6618. "phpunit/phpunit": "^9.3"
  6619. },
  6620. "type": "library",
  6621. "autoload": {
  6622. "psr-4": {
  6623. "Laminas\\Text\\": "src/"
  6624. }
  6625. },
  6626. "notification-url": "https://packagist.org/downloads/",
  6627. "license": [
  6628. "BSD-3-Clause"
  6629. ],
  6630. "description": "Create FIGlets and text-based tables",
  6631. "homepage": "https://laminas.dev",
  6632. "keywords": [
  6633. "laminas",
  6634. "text"
  6635. ],
  6636. "support": {
  6637. "chat": "https://laminas.dev/chat",
  6638. "docs": "https://docs.laminas.dev/laminas-text/",
  6639. "forum": "https://discourse.laminas.dev",
  6640. "issues": "https://github.com/laminas/laminas-text/issues",
  6641. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6642. "source": "https://github.com/laminas/laminas-text"
  6643. },
  6644. "funding": [
  6645. {
  6646. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6647. "type": "community_bridge"
  6648. }
  6649. ],
  6650. "time": "2021-02-17T21:24:58+00:00"
  6651. },
  6652. {
  6653. "name": "laminas/laminas-zendframework-bridge",
  6654. "version": "1.6.1",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6658. "reference": "e112dd2c099f4f6142c16fc65fda89a638e06885"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/e112dd2c099f4f6142c16fc65fda89a638e06885",
  6663. "reference": "e112dd2c099f4f6142c16fc65fda89a638e06885",
  6664. "shasum": ""
  6665. },
  6666. "require": {
  6667. "php": ">=7.4, <8.2"
  6668. },
  6669. "require-dev": {
  6670. "phpunit/phpunit": "^9.5.14",
  6671. "psalm/plugin-phpunit": "^0.15.2",
  6672. "squizlabs/php_codesniffer": "^3.6.2",
  6673. "vimeo/psalm": "^4.21.0"
  6674. },
  6675. "type": "library",
  6676. "extra": {
  6677. "laminas": {
  6678. "module": "Laminas\\ZendFrameworkBridge"
  6679. }
  6680. },
  6681. "autoload": {
  6682. "files": [
  6683. "src/autoload.php"
  6684. ],
  6685. "psr-4": {
  6686. "Laminas\\ZendFrameworkBridge\\": "src//"
  6687. }
  6688. },
  6689. "notification-url": "https://packagist.org/downloads/",
  6690. "license": [
  6691. "BSD-3-Clause"
  6692. ],
  6693. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6694. "keywords": [
  6695. "ZendFramework",
  6696. "autoloading",
  6697. "laminas",
  6698. "zf"
  6699. ],
  6700. "support": {
  6701. "forum": "https://discourse.laminas.dev/",
  6702. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6703. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6704. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6705. },
  6706. "funding": [
  6707. {
  6708. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6709. "type": "community_bridge"
  6710. }
  6711. ],
  6712. "abandoned": true,
  6713. "time": "2022-07-29T13:28:29+00:00"
  6714. },
  6715. {
  6716. "name": "league/container",
  6717. "version": "2.5.0",
  6718. "source": {
  6719. "type": "git",
  6720. "url": "https://github.com/thephpleague/container.git",
  6721. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3"
  6722. },
  6723. "dist": {
  6724. "type": "zip",
  6725. "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6726. "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3",
  6727. "shasum": ""
  6728. },
  6729. "require": {
  6730. "container-interop/container-interop": "^1.2",
  6731. "php": "^5.4 || ^7.0 || ^8.0"
  6732. },
  6733. "provide": {
  6734. "container-interop/container-interop-implementation": "^1.2",
  6735. "psr/container-implementation": "^1.0"
  6736. },
  6737. "replace": {
  6738. "orno/di": "~2.0"
  6739. },
  6740. "require-dev": {
  6741. "phpunit/phpunit": "^4.8.36",
  6742. "scrutinizer/ocular": "^1.3",
  6743. "squizlabs/php_codesniffer": "^3.5"
  6744. },
  6745. "type": "library",
  6746. "extra": {
  6747. "branch-alias": {
  6748. "dev-2.x": "2.x-dev",
  6749. "dev-1.x": "1.x-dev"
  6750. }
  6751. },
  6752. "autoload": {
  6753. "psr-4": {
  6754. "League\\Container\\": "src"
  6755. }
  6756. },
  6757. "notification-url": "https://packagist.org/downloads/",
  6758. "license": [
  6759. "MIT"
  6760. ],
  6761. "authors": [
  6762. {
  6763. "name": "Phil Bennett",
  6764. "email": "philipobenito@gmail.com",
  6765. "homepage": "http://www.philipobenito.com",
  6766. "role": "Developer"
  6767. }
  6768. ],
  6769. "description": "A fast and intuitive dependency injection container.",
  6770. "homepage": "https://github.com/thephpleague/container",
  6771. "keywords": [
  6772. "container",
  6773. "dependency",
  6774. "di",
  6775. "injection",
  6776. "league",
  6777. "provider",
  6778. "service"
  6779. ],
  6780. "support": {
  6781. "issues": "https://github.com/thephpleague/container/issues",
  6782. "source": "https://github.com/thephpleague/container/tree/2.5.0"
  6783. },
  6784. "funding": [
  6785. {
  6786. "url": "https://github.com/philipobenito",
  6787. "type": "github"
  6788. }
  6789. ],
  6790. "time": "2021-02-22T09:20:06+00:00"
  6791. },
  6792. {
  6793. "name": "longwave/laminas-diactoros",
  6794. "version": "2.14.3",
  6795. "source": {
  6796. "type": "git",
  6797. "url": "https://github.com/longwave/laminas-diactoros.git",
  6798. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b"
  6799. },
  6800. "dist": {
  6801. "type": "zip",
  6802. "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6803. "reference": "2bd6b47a090ae924ecc298657d01f8a462f7507b",
  6804. "shasum": ""
  6805. },
  6806. "require": {
  6807. "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
  6808. "psr/http-factory": "^1.0",
  6809. "psr/http-message": "^1.0"
  6810. },
  6811. "conflict": {
  6812. "phpspec/prophecy": "<1.9.0",
  6813. "zendframework/zend-diactoros": "*"
  6814. },
  6815. "provide": {
  6816. "psr/http-factory-implementation": "1.0",
  6817. "psr/http-message-implementation": "1.0"
  6818. },
  6819. "replace": {
  6820. "laminas/laminas-diactoros": "2.18.1"
  6821. },
  6822. "require-dev": {
  6823. "ext-curl": "*",
  6824. "ext-dom": "*",
  6825. "ext-gd": "*",
  6826. "ext-libxml": "*",
  6827. "http-interop/http-factory-tests": "^0.9.0",
  6828. "laminas/laminas-coding-standard": "~2.3.0",
  6829. "php-http/psr7-integration-tests": "^1.1.1",
  6830. "phpspec/prophecy-phpunit": "^2.0",
  6831. "phpunit/phpunit": "^9.5",
  6832. "psalm/plugin-phpunit": "^0.17.0",
  6833. "vimeo/psalm": "^4.24.0"
  6834. },
  6835. "type": "library",
  6836. "extra": {
  6837. "laminas": {
  6838. "config-provider": "Laminas\\Diactoros\\ConfigProvider",
  6839. "module": "Laminas\\Diactoros"
  6840. }
  6841. },
  6842. "autoload": {
  6843. "files": [
  6844. "src/functions/create_uploaded_file.php",
  6845. "src/functions/marshal_headers_from_sapi.php",
  6846. "src/functions/marshal_method_from_sapi.php",
  6847. "src/functions/marshal_protocol_version_from_sapi.php",
  6848. "src/functions/marshal_uri_from_sapi.php",
  6849. "src/functions/normalize_server.php",
  6850. "src/functions/normalize_uploaded_files.php",
  6851. "src/functions/parse_cookie_header.php",
  6852. "src/functions/create_uploaded_file.legacy.php",
  6853. "src/functions/marshal_headers_from_sapi.legacy.php",
  6854. "src/functions/marshal_method_from_sapi.legacy.php",
  6855. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6856. "src/functions/marshal_uri_from_sapi.legacy.php",
  6857. "src/functions/normalize_server.legacy.php",
  6858. "src/functions/normalize_uploaded_files.legacy.php",
  6859. "src/functions/parse_cookie_header.legacy.php"
  6860. ],
  6861. "psr-4": {
  6862. "Laminas\\Diactoros\\": "src/"
  6863. }
  6864. },
  6865. "notification-url": "https://packagist.org/downloads/",
  6866. "license": [
  6867. "BSD-3-Clause"
  6868. ],
  6869. "description": "PSR HTTP Message implementations",
  6870. "homepage": "https://laminas.dev",
  6871. "keywords": [
  6872. "http",
  6873. "laminas",
  6874. "psr",
  6875. "psr-17",
  6876. "psr-7"
  6877. ],
  6878. "support": {
  6879. "chat": "https://laminas.dev/chat",
  6880. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6881. "forum": "https://discourse.laminas.dev",
  6882. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6883. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6884. "source": "https://github.com/laminas/laminas-diactoros"
  6885. },
  6886. "time": "2024-09-11T14:26:18+00:00"
  6887. },
  6888. {
  6889. "name": "masterminds/html5",
  6890. "version": "2.7.6",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/Masterminds/html5-php.git",
  6894. "reference": "897eb517a343a2281f11bc5556d6548db7d93947"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947",
  6899. "reference": "897eb517a343a2281f11bc5556d6548db7d93947",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "ext-ctype": "*",
  6904. "ext-dom": "*",
  6905. "ext-libxml": "*",
  6906. "php": ">=5.3.0"
  6907. },
  6908. "require-dev": {
  6909. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  6910. },
  6911. "type": "library",
  6912. "extra": {
  6913. "branch-alias": {
  6914. "dev-master": "2.7-dev"
  6915. }
  6916. },
  6917. "autoload": {
  6918. "psr-4": {
  6919. "Masterminds\\": "src"
  6920. }
  6921. },
  6922. "notification-url": "https://packagist.org/downloads/",
  6923. "license": [
  6924. "MIT"
  6925. ],
  6926. "authors": [
  6927. {
  6928. "name": "Matt Butcher",
  6929. "email": "technosophos@gmail.com"
  6930. },
  6931. {
  6932. "name": "Matt Farina",
  6933. "email": "matt@mattfarina.com"
  6934. },
  6935. {
  6936. "name": "Asmir Mustafic",
  6937. "email": "goetas@gmail.com"
  6938. }
  6939. ],
  6940. "description": "An HTML5 parser and serializer.",
  6941. "homepage": "http://masterminds.github.io/html5-php",
  6942. "keywords": [
  6943. "HTML5",
  6944. "dom",
  6945. "html",
  6946. "parser",
  6947. "querypath",
  6948. "serializer",
  6949. "xml"
  6950. ],
  6951. "support": {
  6952. "issues": "https://github.com/Masterminds/html5-php/issues",
  6953. "source": "https://github.com/Masterminds/html5-php/tree/2.7.6"
  6954. },
  6955. "time": "2022-08-18T16:18:26+00:00"
  6956. },
  6957. {
  6958. "name": "mathieuviossat/arraytotexttable",
  6959. "version": "v1.0.8",
  6960. "source": {
  6961. "type": "git",
  6962. "url": "https://github.com/viossat/arraytotexttable.git",
  6963. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6964. },
  6965. "dist": {
  6966. "type": "zip",
  6967. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6968. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6969. "shasum": ""
  6970. },
  6971. "require": {
  6972. "laminas/laminas-text": "^2.7",
  6973. "php": ">=5.3.0"
  6974. },
  6975. "type": "library",
  6976. "autoload": {
  6977. "psr-4": {
  6978. "MathieuViossat\\Util\\": "src/"
  6979. }
  6980. },
  6981. "notification-url": "https://packagist.org/downloads/",
  6982. "license": [
  6983. "MIT"
  6984. ],
  6985. "authors": [
  6986. {
  6987. "name": "Mathieu Viossat",
  6988. "email": "mathieu@viossat.fr",
  6989. "homepage": "https://viossat.fr"
  6990. }
  6991. ],
  6992. "description": "Display arrays in terminal",
  6993. "homepage": "https://github.com/viossat/arraytotexttable",
  6994. "keywords": [
  6995. "array",
  6996. "ascii",
  6997. "table",
  6998. "terminal",
  6999. "text",
  7000. "unicode"
  7001. ],
  7002. "support": {
  7003. "issues": "https://github.com/viossat/arraytotexttable/issues",
  7004. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  7005. },
  7006. "time": "2020-06-23T17:14:22+00:00"
  7007. },
  7008. {
  7009. "name": "mglaman/phpstan-drupal",
  7010. "version": "1.2.1",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/mglaman/phpstan-drupal.git",
  7014. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  7019. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  7020. "shasum": ""
  7021. },
  7022. "require": {
  7023. "php": "^7.4 || ^8.0",
  7024. "phpstan/phpstan": "^1.10.1",
  7025. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  7026. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  7027. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  7028. "webflo/drupal-finder": "^1.2"
  7029. },
  7030. "require-dev": {
  7031. "behat/mink": "^1.8",
  7032. "composer/installers": "^1.9",
  7033. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  7034. "drush/drush": "^9.6 || ^10.0 || ^11",
  7035. "phpstan/extension-installer": "^1.1",
  7036. "phpstan/phpstan-strict-rules": "^1.0",
  7037. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  7038. "slevomat/coding-standard": "^7.1",
  7039. "squizlabs/php_codesniffer": "^3.3",
  7040. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  7041. },
  7042. "suggest": {
  7043. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  7044. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  7045. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  7046. },
  7047. "type": "phpstan-extension",
  7048. "extra": {
  7049. "branch-alias": {
  7050. "dev-main": "1.0-dev"
  7051. },
  7052. "installer-paths": {
  7053. "tests/fixtures/drupal/core": [
  7054. "type:drupal-core"
  7055. ],
  7056. "tests/fixtures/drupal/libraries/{$name}": [
  7057. "type:drupal-library"
  7058. ],
  7059. "tests/fixtures/drupal/modules/contrib/{$name}": [
  7060. "type:drupal-module"
  7061. ],
  7062. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  7063. "type:drupal-profile"
  7064. ],
  7065. "tests/fixtures/drupal/themes/contrib/{$name}": [
  7066. "type:drupal-theme"
  7067. ]
  7068. },
  7069. "phpstan": {
  7070. "includes": [
  7071. "extension.neon",
  7072. "rules.neon"
  7073. ]
  7074. }
  7075. },
  7076. "autoload": {
  7077. "psr-4": {
  7078. "mglaman\\PHPStanDrupal\\": "src/"
  7079. }
  7080. },
  7081. "notification-url": "https://packagist.org/downloads/",
  7082. "license": [
  7083. "MIT"
  7084. ],
  7085. "authors": [
  7086. {
  7087. "name": "Matt Glaman",
  7088. "email": "nmd.matt@gmail.com"
  7089. }
  7090. ],
  7091. "description": "Drupal extension and rules for PHPStan",
  7092. "support": {
  7093. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  7094. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://github.com/mglaman",
  7099. "type": "github"
  7100. },
  7101. {
  7102. "url": "https://opencollective.com/phpstan-drupal",
  7103. "type": "open_collective"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2023-11-03T13:17:28+00:00"
  7111. },
  7112. {
  7113. "name": "nikic/php-parser",
  7114. "version": "v4.19.1",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/nikic/PHP-Parser.git",
  7118. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  7123. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "ext-tokenizer": "*",
  7128. "php": ">=7.1"
  7129. },
  7130. "require-dev": {
  7131. "ircmaxell/php-yacc": "^0.0.7",
  7132. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7133. },
  7134. "bin": [
  7135. "bin/php-parse"
  7136. ],
  7137. "type": "library",
  7138. "extra": {
  7139. "branch-alias": {
  7140. "dev-master": "4.9-dev"
  7141. }
  7142. },
  7143. "autoload": {
  7144. "psr-4": {
  7145. "PhpParser\\": "lib/PhpParser"
  7146. }
  7147. },
  7148. "notification-url": "https://packagist.org/downloads/",
  7149. "license": [
  7150. "BSD-3-Clause"
  7151. ],
  7152. "authors": [
  7153. {
  7154. "name": "Nikita Popov"
  7155. }
  7156. ],
  7157. "description": "A PHP parser written in PHP",
  7158. "keywords": [
  7159. "parser",
  7160. "php"
  7161. ],
  7162. "support": {
  7163. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7164. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  7165. },
  7166. "time": "2024-03-17T08:10:35+00:00"
  7167. },
  7168. {
  7169. "name": "pear/archive_tar",
  7170. "version": "1.4.14",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/pear/Archive_Tar.git",
  7174. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7179. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7180. "shasum": ""
  7181. },
  7182. "require": {
  7183. "pear/pear-core-minimal": "^1.10.0alpha2",
  7184. "php": ">=5.2.0"
  7185. },
  7186. "require-dev": {
  7187. "phpunit/phpunit": "*"
  7188. },
  7189. "suggest": {
  7190. "ext-bz2": "Bz2 compression support.",
  7191. "ext-xz": "Lzma2 compression support.",
  7192. "ext-zlib": "Gzip compression support."
  7193. },
  7194. "type": "library",
  7195. "extra": {
  7196. "branch-alias": {
  7197. "dev-master": "1.4.x-dev"
  7198. }
  7199. },
  7200. "autoload": {
  7201. "psr-0": {
  7202. "Archive_Tar": ""
  7203. }
  7204. },
  7205. "notification-url": "https://packagist.org/downloads/",
  7206. "include-path": [
  7207. "./"
  7208. ],
  7209. "license": [
  7210. "BSD-3-Clause"
  7211. ],
  7212. "authors": [
  7213. {
  7214. "name": "Vincent Blavet",
  7215. "email": "vincent@phpconcept.net"
  7216. },
  7217. {
  7218. "name": "Greg Beaver",
  7219. "email": "greg@chiaraquartet.net"
  7220. },
  7221. {
  7222. "name": "Michiel Rook",
  7223. "email": "mrook@php.net"
  7224. }
  7225. ],
  7226. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7227. "homepage": "https://github.com/pear/Archive_Tar",
  7228. "keywords": [
  7229. "archive",
  7230. "tar"
  7231. ],
  7232. "support": {
  7233. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7234. "source": "https://github.com/pear/Archive_Tar"
  7235. },
  7236. "funding": [
  7237. {
  7238. "url": "https://github.com/mrook",
  7239. "type": "github"
  7240. },
  7241. {
  7242. "url": "https://www.patreon.com/michielrook",
  7243. "type": "patreon"
  7244. }
  7245. ],
  7246. "time": "2021-07-20T13:53:39+00:00"
  7247. },
  7248. {
  7249. "name": "pear/console_getopt",
  7250. "version": "v1.4.3",
  7251. "source": {
  7252. "type": "git",
  7253. "url": "https://github.com/pear/Console_Getopt.git",
  7254. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7255. },
  7256. "dist": {
  7257. "type": "zip",
  7258. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7259. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7260. "shasum": ""
  7261. },
  7262. "type": "library",
  7263. "autoload": {
  7264. "psr-0": {
  7265. "Console": "./"
  7266. }
  7267. },
  7268. "notification-url": "https://packagist.org/downloads/",
  7269. "include-path": [
  7270. "./"
  7271. ],
  7272. "license": [
  7273. "BSD-2-Clause"
  7274. ],
  7275. "authors": [
  7276. {
  7277. "name": "Andrei Zmievski",
  7278. "email": "andrei@php.net",
  7279. "role": "Lead"
  7280. },
  7281. {
  7282. "name": "Stig Bakken",
  7283. "email": "stig@php.net",
  7284. "role": "Developer"
  7285. },
  7286. {
  7287. "name": "Greg Beaver",
  7288. "email": "cellog@php.net",
  7289. "role": "Helper"
  7290. }
  7291. ],
  7292. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7293. "support": {
  7294. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7295. "source": "https://github.com/pear/Console_Getopt"
  7296. },
  7297. "time": "2019-11-20T18:27:48+00:00"
  7298. },
  7299. {
  7300. "name": "pear/pear-core-minimal",
  7301. "version": "v1.10.15",
  7302. "source": {
  7303. "type": "git",
  7304. "url": "https://github.com/pear/pear-core-minimal.git",
  7305. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c"
  7306. },
  7307. "dist": {
  7308. "type": "zip",
  7309. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/ce0adade8b97561656ace07cdaac4751c271ea8c",
  7310. "reference": "ce0adade8b97561656ace07cdaac4751c271ea8c",
  7311. "shasum": ""
  7312. },
  7313. "require": {
  7314. "pear/console_getopt": "~1.4",
  7315. "pear/pear_exception": "~1.0",
  7316. "php": ">=5.4"
  7317. },
  7318. "replace": {
  7319. "rsky/pear-core-min": "self.version"
  7320. },
  7321. "type": "library",
  7322. "autoload": {
  7323. "classmap": [
  7324. "src/"
  7325. ]
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "include-path": [
  7329. "src/"
  7330. ],
  7331. "license": [
  7332. "BSD-3-Clause"
  7333. ],
  7334. "authors": [
  7335. {
  7336. "name": "Christian Weiske",
  7337. "email": "cweiske@php.net",
  7338. "role": "Lead"
  7339. }
  7340. ],
  7341. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7342. "support": {
  7343. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7344. "source": "https://github.com/pear/pear-core-minimal"
  7345. },
  7346. "time": "2024-03-16T18:41:45+00:00"
  7347. },
  7348. {
  7349. "name": "pear/pear_exception",
  7350. "version": "v1.0.2",
  7351. "source": {
  7352. "type": "git",
  7353. "url": "https://github.com/pear/PEAR_Exception.git",
  7354. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7355. },
  7356. "dist": {
  7357. "type": "zip",
  7358. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7359. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7360. "shasum": ""
  7361. },
  7362. "require": {
  7363. "php": ">=5.2.0"
  7364. },
  7365. "require-dev": {
  7366. "phpunit/phpunit": "<9"
  7367. },
  7368. "type": "class",
  7369. "extra": {
  7370. "branch-alias": {
  7371. "dev-master": "1.0.x-dev"
  7372. }
  7373. },
  7374. "autoload": {
  7375. "classmap": [
  7376. "PEAR/"
  7377. ]
  7378. },
  7379. "notification-url": "https://packagist.org/downloads/",
  7380. "include-path": [
  7381. "."
  7382. ],
  7383. "license": [
  7384. "BSD-2-Clause"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "Helgi Thormar",
  7389. "email": "dufuz@php.net"
  7390. },
  7391. {
  7392. "name": "Greg Beaver",
  7393. "email": "cellog@php.net"
  7394. }
  7395. ],
  7396. "description": "The PEAR Exception base class.",
  7397. "homepage": "https://github.com/pear/PEAR_Exception",
  7398. "keywords": [
  7399. "exception"
  7400. ],
  7401. "support": {
  7402. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7403. "source": "https://github.com/pear/PEAR_Exception"
  7404. },
  7405. "time": "2021-03-21T15:43:46+00:00"
  7406. },
  7407. {
  7408. "name": "phpstan/phpstan",
  7409. "version": "1.12.3",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://github.com/phpstan/phpstan.git",
  7413. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7418. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7419. "shasum": ""
  7420. },
  7421. "require": {
  7422. "php": "^7.2|^8.0"
  7423. },
  7424. "conflict": {
  7425. "phpstan/phpstan-shim": "*"
  7426. },
  7427. "bin": [
  7428. "phpstan",
  7429. "phpstan.phar"
  7430. ],
  7431. "type": "library",
  7432. "autoload": {
  7433. "files": [
  7434. "bootstrap.php"
  7435. ]
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "description": "PHPStan - PHP Static Analysis Tool",
  7442. "keywords": [
  7443. "dev",
  7444. "static analysis"
  7445. ],
  7446. "support": {
  7447. "docs": "https://phpstan.org/user-guide/getting-started",
  7448. "forum": "https://github.com/phpstan/phpstan/discussions",
  7449. "issues": "https://github.com/phpstan/phpstan/issues",
  7450. "security": "https://github.com/phpstan/phpstan/security/policy",
  7451. "source": "https://github.com/phpstan/phpstan-src"
  7452. },
  7453. "funding": [
  7454. {
  7455. "url": "https://github.com/ondrejmirtes",
  7456. "type": "github"
  7457. },
  7458. {
  7459. "url": "https://github.com/phpstan",
  7460. "type": "github"
  7461. }
  7462. ],
  7463. "time": "2024-09-09T08:10:35+00:00"
  7464. },
  7465. {
  7466. "name": "phpstan/phpstan-deprecation-rules",
  7467. "version": "1.2.1",
  7468. "source": {
  7469. "type": "git",
  7470. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7471. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7472. },
  7473. "dist": {
  7474. "type": "zip",
  7475. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7476. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7477. "shasum": ""
  7478. },
  7479. "require": {
  7480. "php": "^7.2 || ^8.0",
  7481. "phpstan/phpstan": "^1.12"
  7482. },
  7483. "require-dev": {
  7484. "php-parallel-lint/php-parallel-lint": "^1.2",
  7485. "phpstan/phpstan-phpunit": "^1.0",
  7486. "phpunit/phpunit": "^9.5"
  7487. },
  7488. "type": "phpstan-extension",
  7489. "extra": {
  7490. "phpstan": {
  7491. "includes": [
  7492. "rules.neon"
  7493. ]
  7494. }
  7495. },
  7496. "autoload": {
  7497. "psr-4": {
  7498. "PHPStan\\": "src/"
  7499. }
  7500. },
  7501. "notification-url": "https://packagist.org/downloads/",
  7502. "license": [
  7503. "MIT"
  7504. ],
  7505. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7506. "support": {
  7507. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7508. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7509. },
  7510. "time": "2024-09-11T15:52:35+00:00"
  7511. },
  7512. {
  7513. "name": "psr/cache",
  7514. "version": "1.0.1",
  7515. "source": {
  7516. "type": "git",
  7517. "url": "https://github.com/php-fig/cache.git",
  7518. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  7519. },
  7520. "dist": {
  7521. "type": "zip",
  7522. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  7523. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  7524. "shasum": ""
  7525. },
  7526. "require": {
  7527. "php": ">=5.3.0"
  7528. },
  7529. "type": "library",
  7530. "extra": {
  7531. "branch-alias": {
  7532. "dev-master": "1.0.x-dev"
  7533. }
  7534. },
  7535. "autoload": {
  7536. "psr-4": {
  7537. "Psr\\Cache\\": "src/"
  7538. }
  7539. },
  7540. "notification-url": "https://packagist.org/downloads/",
  7541. "license": [
  7542. "MIT"
  7543. ],
  7544. "authors": [
  7545. {
  7546. "name": "PHP-FIG",
  7547. "homepage": "http://www.php-fig.org/"
  7548. }
  7549. ],
  7550. "description": "Common interface for caching libraries",
  7551. "keywords": [
  7552. "cache",
  7553. "psr",
  7554. "psr-6"
  7555. ],
  7556. "support": {
  7557. "source": "https://github.com/php-fig/cache/tree/master"
  7558. },
  7559. "time": "2016-08-06T20:24:11+00:00"
  7560. },
  7561. {
  7562. "name": "psr/container",
  7563. "version": "1.1.2",
  7564. "source": {
  7565. "type": "git",
  7566. "url": "https://github.com/php-fig/container.git",
  7567. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  7568. },
  7569. "dist": {
  7570. "type": "zip",
  7571. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  7572. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  7573. "shasum": ""
  7574. },
  7575. "require": {
  7576. "php": ">=7.4.0"
  7577. },
  7578. "type": "library",
  7579. "autoload": {
  7580. "psr-4": {
  7581. "Psr\\Container\\": "src/"
  7582. }
  7583. },
  7584. "notification-url": "https://packagist.org/downloads/",
  7585. "license": [
  7586. "MIT"
  7587. ],
  7588. "authors": [
  7589. {
  7590. "name": "PHP-FIG",
  7591. "homepage": "https://www.php-fig.org/"
  7592. }
  7593. ],
  7594. "description": "Common Container Interface (PHP FIG PSR-11)",
  7595. "homepage": "https://github.com/php-fig/container",
  7596. "keywords": [
  7597. "PSR-11",
  7598. "container",
  7599. "container-interface",
  7600. "container-interop",
  7601. "psr"
  7602. ],
  7603. "support": {
  7604. "issues": "https://github.com/php-fig/container/issues",
  7605. "source": "https://github.com/php-fig/container/tree/1.1.2"
  7606. },
  7607. "time": "2021-11-05T16:50:12+00:00"
  7608. },
  7609. {
  7610. "name": "psr/http-factory",
  7611. "version": "1.0.2",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/php-fig/http-factory.git",
  7615. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  7620. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  7621. "shasum": ""
  7622. },
  7623. "require": {
  7624. "php": ">=7.0.0",
  7625. "psr/http-message": "^1.0 || ^2.0"
  7626. },
  7627. "type": "library",
  7628. "extra": {
  7629. "branch-alias": {
  7630. "dev-master": "1.0.x-dev"
  7631. }
  7632. },
  7633. "autoload": {
  7634. "psr-4": {
  7635. "Psr\\Http\\Message\\": "src/"
  7636. }
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "PHP-FIG",
  7645. "homepage": "https://www.php-fig.org/"
  7646. }
  7647. ],
  7648. "description": "Common interfaces for PSR-7 HTTP message factories",
  7649. "keywords": [
  7650. "factory",
  7651. "http",
  7652. "message",
  7653. "psr",
  7654. "psr-17",
  7655. "psr-7",
  7656. "request",
  7657. "response"
  7658. ],
  7659. "support": {
  7660. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  7661. },
  7662. "time": "2023-04-10T20:10:41+00:00"
  7663. },
  7664. {
  7665. "name": "psr/http-message",
  7666. "version": "1.0.1",
  7667. "source": {
  7668. "type": "git",
  7669. "url": "https://github.com/php-fig/http-message.git",
  7670. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7671. },
  7672. "dist": {
  7673. "type": "zip",
  7674. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7675. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7676. "shasum": ""
  7677. },
  7678. "require": {
  7679. "php": ">=5.3.0"
  7680. },
  7681. "type": "library",
  7682. "extra": {
  7683. "branch-alias": {
  7684. "dev-master": "1.0.x-dev"
  7685. }
  7686. },
  7687. "autoload": {
  7688. "psr-4": {
  7689. "Psr\\Http\\Message\\": "src/"
  7690. }
  7691. },
  7692. "notification-url": "https://packagist.org/downloads/",
  7693. "license": [
  7694. "MIT"
  7695. ],
  7696. "authors": [
  7697. {
  7698. "name": "PHP-FIG",
  7699. "homepage": "http://www.php-fig.org/"
  7700. }
  7701. ],
  7702. "description": "Common interface for HTTP messages",
  7703. "homepage": "https://github.com/php-fig/http-message",
  7704. "keywords": [
  7705. "http",
  7706. "http-message",
  7707. "psr",
  7708. "psr-7",
  7709. "request",
  7710. "response"
  7711. ],
  7712. "support": {
  7713. "source": "https://github.com/php-fig/http-message/tree/master"
  7714. },
  7715. "time": "2016-08-06T14:39:51+00:00"
  7716. },
  7717. {
  7718. "name": "psr/log",
  7719. "version": "1.1.4",
  7720. "source": {
  7721. "type": "git",
  7722. "url": "https://github.com/php-fig/log.git",
  7723. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  7724. },
  7725. "dist": {
  7726. "type": "zip",
  7727. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  7728. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  7729. "shasum": ""
  7730. },
  7731. "require": {
  7732. "php": ">=5.3.0"
  7733. },
  7734. "type": "library",
  7735. "extra": {
  7736. "branch-alias": {
  7737. "dev-master": "1.1.x-dev"
  7738. }
  7739. },
  7740. "autoload": {
  7741. "psr-4": {
  7742. "Psr\\Log\\": "Psr/Log/"
  7743. }
  7744. },
  7745. "notification-url": "https://packagist.org/downloads/",
  7746. "license": [
  7747. "MIT"
  7748. ],
  7749. "authors": [
  7750. {
  7751. "name": "PHP-FIG",
  7752. "homepage": "https://www.php-fig.org/"
  7753. }
  7754. ],
  7755. "description": "Common interface for logging libraries",
  7756. "homepage": "https://github.com/php-fig/log",
  7757. "keywords": [
  7758. "log",
  7759. "psr",
  7760. "psr-3"
  7761. ],
  7762. "support": {
  7763. "source": "https://github.com/php-fig/log/tree/1.1.4"
  7764. },
  7765. "time": "2021-05-03T11:20:27+00:00"
  7766. },
  7767. {
  7768. "name": "psy/psysh",
  7769. "version": "v0.10.12",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/bobthecow/psysh.git",
  7773. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7778. "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d",
  7779. "shasum": ""
  7780. },
  7781. "require": {
  7782. "ext-json": "*",
  7783. "ext-tokenizer": "*",
  7784. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7785. "php": "^8.0 || ^7.0 || ^5.5.9",
  7786. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7787. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7788. },
  7789. "require-dev": {
  7790. "bamarni/composer-bin-plugin": "^1.2",
  7791. "hoa/console": "3.17.*"
  7792. },
  7793. "suggest": {
  7794. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7795. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7796. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7797. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7798. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7799. },
  7800. "bin": [
  7801. "bin/psysh"
  7802. ],
  7803. "type": "library",
  7804. "extra": {
  7805. "branch-alias": {
  7806. "dev-main": "0.10.x-dev"
  7807. }
  7808. },
  7809. "autoload": {
  7810. "files": [
  7811. "src/functions.php"
  7812. ],
  7813. "psr-4": {
  7814. "Psy\\": "src/"
  7815. }
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "MIT"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Justin Hileman",
  7824. "email": "justin@justinhileman.info",
  7825. "homepage": "http://justinhileman.com"
  7826. }
  7827. ],
  7828. "description": "An interactive shell for modern PHP.",
  7829. "homepage": "http://psysh.org",
  7830. "keywords": [
  7831. "REPL",
  7832. "console",
  7833. "interactive",
  7834. "shell"
  7835. ],
  7836. "support": {
  7837. "issues": "https://github.com/bobthecow/psysh/issues",
  7838. "source": "https://github.com/bobthecow/psysh/tree/v0.10.12"
  7839. },
  7840. "time": "2021-11-30T14:05:36+00:00"
  7841. },
  7842. {
  7843. "name": "ralouphie/getallheaders",
  7844. "version": "3.0.3",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://github.com/ralouphie/getallheaders.git",
  7848. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7853. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7854. "shasum": ""
  7855. },
  7856. "require": {
  7857. "php": ">=5.6"
  7858. },
  7859. "require-dev": {
  7860. "php-coveralls/php-coveralls": "^2.1",
  7861. "phpunit/phpunit": "^5 || ^6.5"
  7862. },
  7863. "type": "library",
  7864. "autoload": {
  7865. "files": [
  7866. "src/getallheaders.php"
  7867. ]
  7868. },
  7869. "notification-url": "https://packagist.org/downloads/",
  7870. "license": [
  7871. "MIT"
  7872. ],
  7873. "authors": [
  7874. {
  7875. "name": "Ralph Khattar",
  7876. "email": "ralph.khattar@gmail.com"
  7877. }
  7878. ],
  7879. "description": "A polyfill for getallheaders.",
  7880. "support": {
  7881. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7882. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7883. },
  7884. "time": "2019-03-08T08:55:37+00:00"
  7885. },
  7886. {
  7887. "name": "stack/builder",
  7888. "version": "v1.0.6",
  7889. "source": {
  7890. "type": "git",
  7891. "url": "https://github.com/stackphp/builder.git",
  7892. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c"
  7893. },
  7894. "dist": {
  7895. "type": "zip",
  7896. "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7897. "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c",
  7898. "shasum": ""
  7899. },
  7900. "require": {
  7901. "php": ">=7.2.0",
  7902. "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
  7903. "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
  7904. },
  7905. "require-dev": {
  7906. "phpunit/phpunit": "~8.0",
  7907. "symfony/routing": "^5.0"
  7908. },
  7909. "type": "library",
  7910. "extra": {
  7911. "branch-alias": {
  7912. "dev-master": "1.0-dev"
  7913. }
  7914. },
  7915. "autoload": {
  7916. "psr-0": {
  7917. "Stack": "src"
  7918. }
  7919. },
  7920. "notification-url": "https://packagist.org/downloads/",
  7921. "license": [
  7922. "MIT"
  7923. ],
  7924. "authors": [
  7925. {
  7926. "name": "Igor Wiedler",
  7927. "email": "igor@wiedler.ch"
  7928. }
  7929. ],
  7930. "description": "Builder for stack middleware based on HttpKernelInterface.",
  7931. "keywords": [
  7932. "stack"
  7933. ],
  7934. "support": {
  7935. "issues": "https://github.com/stackphp/builder/issues",
  7936. "source": "https://github.com/stackphp/builder/tree/v1.0.6"
  7937. },
  7938. "abandoned": true,
  7939. "time": "2020-01-30T12:17:27+00:00"
  7940. },
  7941. {
  7942. "name": "symfony-cmf/routing",
  7943. "version": "2.3.4",
  7944. "source": {
  7945. "type": "git",
  7946. "url": "https://github.com/symfony-cmf/Routing.git",
  7947. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b"
  7948. },
  7949. "dist": {
  7950. "type": "zip",
  7951. "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7952. "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b",
  7953. "shasum": ""
  7954. },
  7955. "require": {
  7956. "php": "^7.2 || ^8.0",
  7957. "psr/log": "^1.0 || ^2.0 || ^3.0",
  7958. "symfony/http-kernel": "^4.4 || ^5.0",
  7959. "symfony/routing": "^4.4 || ^5.0"
  7960. },
  7961. "require-dev": {
  7962. "symfony-cmf/testing": "^3@dev",
  7963. "symfony/config": "^4.4 || ^5.0",
  7964. "symfony/dependency-injection": "^4.4 || ^5.0",
  7965. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7966. "symfony/phpunit-bridge": "^5.0"
  7967. },
  7968. "suggest": {
  7969. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)"
  7970. },
  7971. "type": "library",
  7972. "extra": {
  7973. "branch-alias": {
  7974. "dev-master": "2.x-dev"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "psr-4": {
  7979. "Symfony\\Cmf\\Component\\Routing\\": "src/"
  7980. }
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "MIT"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Symfony CMF Community",
  7989. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7990. }
  7991. ],
  7992. "description": "Extends the Symfony routing component for dynamic routes and chaining several routers",
  7993. "homepage": "http://cmf.symfony.com",
  7994. "keywords": [
  7995. "database",
  7996. "routing"
  7997. ],
  7998. "support": {
  7999. "issues": "https://github.com/symfony-cmf/Routing/issues",
  8000. "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4"
  8001. },
  8002. "time": "2021-11-08T16:33:10+00:00"
  8003. },
  8004. {
  8005. "name": "symfony/console",
  8006. "version": "v4.4.49",
  8007. "source": {
  8008. "type": "git",
  8009. "url": "https://github.com/symfony/console.git",
  8010. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  8011. },
  8012. "dist": {
  8013. "type": "zip",
  8014. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  8015. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  8016. "shasum": ""
  8017. },
  8018. "require": {
  8019. "php": ">=7.1.3",
  8020. "symfony/polyfill-mbstring": "~1.0",
  8021. "symfony/polyfill-php73": "^1.8",
  8022. "symfony/polyfill-php80": "^1.16",
  8023. "symfony/service-contracts": "^1.1|^2"
  8024. },
  8025. "conflict": {
  8026. "psr/log": ">=3",
  8027. "symfony/dependency-injection": "<3.4",
  8028. "symfony/event-dispatcher": "<4.3|>=5",
  8029. "symfony/lock": "<4.4",
  8030. "symfony/process": "<3.3"
  8031. },
  8032. "provide": {
  8033. "psr/log-implementation": "1.0|2.0"
  8034. },
  8035. "require-dev": {
  8036. "psr/log": "^1|^2",
  8037. "symfony/config": "^3.4|^4.0|^5.0",
  8038. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8039. "symfony/event-dispatcher": "^4.3",
  8040. "symfony/lock": "^4.4|^5.0",
  8041. "symfony/process": "^3.4|^4.0|^5.0",
  8042. "symfony/var-dumper": "^4.3|^5.0"
  8043. },
  8044. "suggest": {
  8045. "psr/log": "For using the console logger",
  8046. "symfony/event-dispatcher": "",
  8047. "symfony/lock": "",
  8048. "symfony/process": ""
  8049. },
  8050. "type": "library",
  8051. "autoload": {
  8052. "psr-4": {
  8053. "Symfony\\Component\\Console\\": ""
  8054. },
  8055. "exclude-from-classmap": [
  8056. "/Tests/"
  8057. ]
  8058. },
  8059. "notification-url": "https://packagist.org/downloads/",
  8060. "license": [
  8061. "MIT"
  8062. ],
  8063. "authors": [
  8064. {
  8065. "name": "Fabien Potencier",
  8066. "email": "fabien@symfony.com"
  8067. },
  8068. {
  8069. "name": "Symfony Community",
  8070. "homepage": "https://symfony.com/contributors"
  8071. }
  8072. ],
  8073. "description": "Eases the creation of beautiful and testable command line interfaces",
  8074. "homepage": "https://symfony.com",
  8075. "support": {
  8076. "source": "https://github.com/symfony/console/tree/v4.4.49"
  8077. },
  8078. "funding": [
  8079. {
  8080. "url": "https://symfony.com/sponsor",
  8081. "type": "custom"
  8082. },
  8083. {
  8084. "url": "https://github.com/fabpot",
  8085. "type": "github"
  8086. },
  8087. {
  8088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8089. "type": "tidelift"
  8090. }
  8091. ],
  8092. "time": "2022-11-05T17:10:16+00:00"
  8093. },
  8094. {
  8095. "name": "symfony/debug",
  8096. "version": "v4.4.44",
  8097. "source": {
  8098. "type": "git",
  8099. "url": "https://github.com/symfony/debug.git",
  8100. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  8101. },
  8102. "dist": {
  8103. "type": "zip",
  8104. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  8105. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  8106. "shasum": ""
  8107. },
  8108. "require": {
  8109. "php": ">=7.1.3",
  8110. "psr/log": "^1|^2|^3"
  8111. },
  8112. "conflict": {
  8113. "symfony/http-kernel": "<3.4"
  8114. },
  8115. "require-dev": {
  8116. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  8117. },
  8118. "type": "library",
  8119. "autoload": {
  8120. "psr-4": {
  8121. "Symfony\\Component\\Debug\\": ""
  8122. },
  8123. "exclude-from-classmap": [
  8124. "/Tests/"
  8125. ]
  8126. },
  8127. "notification-url": "https://packagist.org/downloads/",
  8128. "license": [
  8129. "MIT"
  8130. ],
  8131. "authors": [
  8132. {
  8133. "name": "Fabien Potencier",
  8134. "email": "fabien@symfony.com"
  8135. },
  8136. {
  8137. "name": "Symfony Community",
  8138. "homepage": "https://symfony.com/contributors"
  8139. }
  8140. ],
  8141. "description": "Provides tools to ease debugging PHP code",
  8142. "homepage": "https://symfony.com",
  8143. "support": {
  8144. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  8145. },
  8146. "funding": [
  8147. {
  8148. "url": "https://symfony.com/sponsor",
  8149. "type": "custom"
  8150. },
  8151. {
  8152. "url": "https://github.com/fabpot",
  8153. "type": "github"
  8154. },
  8155. {
  8156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8157. "type": "tidelift"
  8158. }
  8159. ],
  8160. "abandoned": "symfony/error-handler",
  8161. "time": "2022-07-28T16:29:46+00:00"
  8162. },
  8163. {
  8164. "name": "symfony/dependency-injection",
  8165. "version": "v4.4.49",
  8166. "source": {
  8167. "type": "git",
  8168. "url": "https://github.com/symfony/dependency-injection.git",
  8169. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734"
  8170. },
  8171. "dist": {
  8172. "type": "zip",
  8173. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  8174. "reference": "9065fe97dbd38a897e95ea254eb5ddfe1310f734",
  8175. "shasum": ""
  8176. },
  8177. "require": {
  8178. "php": ">=7.1.3",
  8179. "psr/container": "^1.0",
  8180. "symfony/polyfill-php80": "^1.16",
  8181. "symfony/service-contracts": "^1.1.6|^2"
  8182. },
  8183. "conflict": {
  8184. "symfony/config": "<4.3|>=5.0",
  8185. "symfony/finder": "<3.4",
  8186. "symfony/proxy-manager-bridge": "<3.4",
  8187. "symfony/yaml": "<4.4.26"
  8188. },
  8189. "provide": {
  8190. "psr/container-implementation": "1.0",
  8191. "symfony/service-implementation": "1.0|2.0"
  8192. },
  8193. "require-dev": {
  8194. "symfony/config": "^4.3",
  8195. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8196. "symfony/yaml": "^4.4.26|^5.0"
  8197. },
  8198. "suggest": {
  8199. "symfony/config": "",
  8200. "symfony/expression-language": "For using expressions in service container configuration",
  8201. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8202. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8203. "symfony/yaml": ""
  8204. },
  8205. "type": "library",
  8206. "autoload": {
  8207. "psr-4": {
  8208. "Symfony\\Component\\DependencyInjection\\": ""
  8209. },
  8210. "exclude-from-classmap": [
  8211. "/Tests/"
  8212. ]
  8213. },
  8214. "notification-url": "https://packagist.org/downloads/",
  8215. "license": [
  8216. "MIT"
  8217. ],
  8218. "authors": [
  8219. {
  8220. "name": "Fabien Potencier",
  8221. "email": "fabien@symfony.com"
  8222. },
  8223. {
  8224. "name": "Symfony Community",
  8225. "homepage": "https://symfony.com/contributors"
  8226. }
  8227. ],
  8228. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  8229. "homepage": "https://symfony.com",
  8230. "support": {
  8231. "source": "https://github.com/symfony/dependency-injection/tree/v4.4.49"
  8232. },
  8233. "funding": [
  8234. {
  8235. "url": "https://symfony.com/sponsor",
  8236. "type": "custom"
  8237. },
  8238. {
  8239. "url": "https://github.com/fabpot",
  8240. "type": "github"
  8241. },
  8242. {
  8243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8244. "type": "tidelift"
  8245. }
  8246. ],
  8247. "time": "2022-11-16T16:18:09+00:00"
  8248. },
  8249. {
  8250. "name": "symfony/deprecation-contracts",
  8251. "version": "v2.5.3",
  8252. "source": {
  8253. "type": "git",
  8254. "url": "https://github.com/symfony/deprecation-contracts.git",
  8255. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  8256. },
  8257. "dist": {
  8258. "type": "zip",
  8259. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  8260. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  8261. "shasum": ""
  8262. },
  8263. "require": {
  8264. "php": ">=7.1"
  8265. },
  8266. "type": "library",
  8267. "extra": {
  8268. "branch-alias": {
  8269. "dev-main": "2.5-dev"
  8270. },
  8271. "thanks": {
  8272. "name": "symfony/contracts",
  8273. "url": "https://github.com/symfony/contracts"
  8274. }
  8275. },
  8276. "autoload": {
  8277. "files": [
  8278. "function.php"
  8279. ]
  8280. },
  8281. "notification-url": "https://packagist.org/downloads/",
  8282. "license": [
  8283. "MIT"
  8284. ],
  8285. "authors": [
  8286. {
  8287. "name": "Nicolas Grekas",
  8288. "email": "p@tchwork.com"
  8289. },
  8290. {
  8291. "name": "Symfony Community",
  8292. "homepage": "https://symfony.com/contributors"
  8293. }
  8294. ],
  8295. "description": "A generic function and convention to trigger deprecation notices",
  8296. "homepage": "https://symfony.com",
  8297. "support": {
  8298. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  8299. },
  8300. "funding": [
  8301. {
  8302. "url": "https://symfony.com/sponsor",
  8303. "type": "custom"
  8304. },
  8305. {
  8306. "url": "https://github.com/fabpot",
  8307. "type": "github"
  8308. },
  8309. {
  8310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8311. "type": "tidelift"
  8312. }
  8313. ],
  8314. "time": "2023-01-24T14:02:46+00:00"
  8315. },
  8316. {
  8317. "name": "symfony/error-handler",
  8318. "version": "v4.4.44",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/symfony/error-handler.git",
  8322. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  8327. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  8328. "shasum": ""
  8329. },
  8330. "require": {
  8331. "php": ">=7.1.3",
  8332. "psr/log": "^1|^2|^3",
  8333. "symfony/debug": "^4.4.5",
  8334. "symfony/var-dumper": "^4.4|^5.0"
  8335. },
  8336. "require-dev": {
  8337. "symfony/http-kernel": "^4.4|^5.0",
  8338. "symfony/serializer": "^4.4|^5.0"
  8339. },
  8340. "type": "library",
  8341. "autoload": {
  8342. "psr-4": {
  8343. "Symfony\\Component\\ErrorHandler\\": ""
  8344. },
  8345. "exclude-from-classmap": [
  8346. "/Tests/"
  8347. ]
  8348. },
  8349. "notification-url": "https://packagist.org/downloads/",
  8350. "license": [
  8351. "MIT"
  8352. ],
  8353. "authors": [
  8354. {
  8355. "name": "Fabien Potencier",
  8356. "email": "fabien@symfony.com"
  8357. },
  8358. {
  8359. "name": "Symfony Community",
  8360. "homepage": "https://symfony.com/contributors"
  8361. }
  8362. ],
  8363. "description": "Provides tools to manage errors and ease debugging PHP code",
  8364. "homepage": "https://symfony.com",
  8365. "support": {
  8366. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  8367. },
  8368. "funding": [
  8369. {
  8370. "url": "https://symfony.com/sponsor",
  8371. "type": "custom"
  8372. },
  8373. {
  8374. "url": "https://github.com/fabpot",
  8375. "type": "github"
  8376. },
  8377. {
  8378. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8379. "type": "tidelift"
  8380. }
  8381. ],
  8382. "time": "2022-07-28T16:29:46+00:00"
  8383. },
  8384. {
  8385. "name": "symfony/event-dispatcher",
  8386. "version": "v4.4.44",
  8387. "source": {
  8388. "type": "git",
  8389. "url": "https://github.com/symfony/event-dispatcher.git",
  8390. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  8391. },
  8392. "dist": {
  8393. "type": "zip",
  8394. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8395. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  8396. "shasum": ""
  8397. },
  8398. "require": {
  8399. "php": ">=7.1.3",
  8400. "symfony/event-dispatcher-contracts": "^1.1",
  8401. "symfony/polyfill-php80": "^1.16"
  8402. },
  8403. "conflict": {
  8404. "symfony/dependency-injection": "<3.4"
  8405. },
  8406. "provide": {
  8407. "psr/event-dispatcher-implementation": "1.0",
  8408. "symfony/event-dispatcher-implementation": "1.1"
  8409. },
  8410. "require-dev": {
  8411. "psr/log": "^1|^2|^3",
  8412. "symfony/config": "^3.4|^4.0|^5.0",
  8413. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8414. "symfony/error-handler": "~3.4|~4.4",
  8415. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8416. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8417. "symfony/service-contracts": "^1.1|^2",
  8418. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  8419. },
  8420. "suggest": {
  8421. "symfony/dependency-injection": "",
  8422. "symfony/http-kernel": ""
  8423. },
  8424. "type": "library",
  8425. "autoload": {
  8426. "psr-4": {
  8427. "Symfony\\Component\\EventDispatcher\\": ""
  8428. },
  8429. "exclude-from-classmap": [
  8430. "/Tests/"
  8431. ]
  8432. },
  8433. "notification-url": "https://packagist.org/downloads/",
  8434. "license": [
  8435. "MIT"
  8436. ],
  8437. "authors": [
  8438. {
  8439. "name": "Fabien Potencier",
  8440. "email": "fabien@symfony.com"
  8441. },
  8442. {
  8443. "name": "Symfony Community",
  8444. "homepage": "https://symfony.com/contributors"
  8445. }
  8446. ],
  8447. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8448. "homepage": "https://symfony.com",
  8449. "support": {
  8450. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://symfony.com/sponsor",
  8455. "type": "custom"
  8456. },
  8457. {
  8458. "url": "https://github.com/fabpot",
  8459. "type": "github"
  8460. },
  8461. {
  8462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8463. "type": "tidelift"
  8464. }
  8465. ],
  8466. "time": "2022-07-20T09:59:04+00:00"
  8467. },
  8468. {
  8469. "name": "symfony/event-dispatcher-contracts",
  8470. "version": "v1.1.13",
  8471. "source": {
  8472. "type": "git",
  8473. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8474. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  8475. },
  8476. "dist": {
  8477. "type": "zip",
  8478. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8479. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  8480. "shasum": ""
  8481. },
  8482. "require": {
  8483. "php": ">=7.1.3"
  8484. },
  8485. "suggest": {
  8486. "psr/event-dispatcher": "",
  8487. "symfony/event-dispatcher-implementation": ""
  8488. },
  8489. "type": "library",
  8490. "extra": {
  8491. "branch-alias": {
  8492. "dev-main": "1.1-dev"
  8493. },
  8494. "thanks": {
  8495. "name": "symfony/contracts",
  8496. "url": "https://github.com/symfony/contracts"
  8497. }
  8498. },
  8499. "autoload": {
  8500. "psr-4": {
  8501. "Symfony\\Contracts\\EventDispatcher\\": ""
  8502. }
  8503. },
  8504. "notification-url": "https://packagist.org/downloads/",
  8505. "license": [
  8506. "MIT"
  8507. ],
  8508. "authors": [
  8509. {
  8510. "name": "Nicolas Grekas",
  8511. "email": "p@tchwork.com"
  8512. },
  8513. {
  8514. "name": "Symfony Community",
  8515. "homepage": "https://symfony.com/contributors"
  8516. }
  8517. ],
  8518. "description": "Generic abstractions related to dispatching event",
  8519. "homepage": "https://symfony.com",
  8520. "keywords": [
  8521. "abstractions",
  8522. "contracts",
  8523. "decoupling",
  8524. "interfaces",
  8525. "interoperability",
  8526. "standards"
  8527. ],
  8528. "support": {
  8529. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  8530. },
  8531. "funding": [
  8532. {
  8533. "url": "https://symfony.com/sponsor",
  8534. "type": "custom"
  8535. },
  8536. {
  8537. "url": "https://github.com/fabpot",
  8538. "type": "github"
  8539. },
  8540. {
  8541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8542. "type": "tidelift"
  8543. }
  8544. ],
  8545. "time": "2022-01-02T09:41:36+00:00"
  8546. },
  8547. {
  8548. "name": "symfony/filesystem",
  8549. "version": "v4.4.42",
  8550. "source": {
  8551. "type": "git",
  8552. "url": "https://github.com/symfony/filesystem.git",
  8553. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8554. },
  8555. "dist": {
  8556. "type": "zip",
  8557. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8558. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8559. "shasum": ""
  8560. },
  8561. "require": {
  8562. "php": ">=7.1.3",
  8563. "symfony/polyfill-ctype": "~1.8",
  8564. "symfony/polyfill-php80": "^1.16"
  8565. },
  8566. "type": "library",
  8567. "autoload": {
  8568. "psr-4": {
  8569. "Symfony\\Component\\Filesystem\\": ""
  8570. },
  8571. "exclude-from-classmap": [
  8572. "/Tests/"
  8573. ]
  8574. },
  8575. "notification-url": "https://packagist.org/downloads/",
  8576. "license": [
  8577. "MIT"
  8578. ],
  8579. "authors": [
  8580. {
  8581. "name": "Fabien Potencier",
  8582. "email": "fabien@symfony.com"
  8583. },
  8584. {
  8585. "name": "Symfony Community",
  8586. "homepage": "https://symfony.com/contributors"
  8587. }
  8588. ],
  8589. "description": "Provides basic utilities for the filesystem",
  8590. "homepage": "https://symfony.com",
  8591. "support": {
  8592. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8593. },
  8594. "funding": [
  8595. {
  8596. "url": "https://symfony.com/sponsor",
  8597. "type": "custom"
  8598. },
  8599. {
  8600. "url": "https://github.com/fabpot",
  8601. "type": "github"
  8602. },
  8603. {
  8604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8605. "type": "tidelift"
  8606. }
  8607. ],
  8608. "time": "2022-05-20T08:49:14+00:00"
  8609. },
  8610. {
  8611. "name": "symfony/finder",
  8612. "version": "v5.4.43",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/symfony/finder.git",
  8616. "reference": "ae25a9145a900764158d439653d5630191155ca0"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/symfony/finder/zipball/ae25a9145a900764158d439653d5630191155ca0",
  8621. "reference": "ae25a9145a900764158d439653d5630191155ca0",
  8622. "shasum": ""
  8623. },
  8624. "require": {
  8625. "php": ">=7.2.5",
  8626. "symfony/deprecation-contracts": "^2.1|^3",
  8627. "symfony/polyfill-php80": "^1.16"
  8628. },
  8629. "type": "library",
  8630. "autoload": {
  8631. "psr-4": {
  8632. "Symfony\\Component\\Finder\\": ""
  8633. },
  8634. "exclude-from-classmap": [
  8635. "/Tests/"
  8636. ]
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "MIT"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "Fabien Potencier",
  8645. "email": "fabien@symfony.com"
  8646. },
  8647. {
  8648. "name": "Symfony Community",
  8649. "homepage": "https://symfony.com/contributors"
  8650. }
  8651. ],
  8652. "description": "Finds files and directories via an intuitive fluent interface",
  8653. "homepage": "https://symfony.com",
  8654. "support": {
  8655. "source": "https://github.com/symfony/finder/tree/v5.4.43"
  8656. },
  8657. "funding": [
  8658. {
  8659. "url": "https://symfony.com/sponsor",
  8660. "type": "custom"
  8661. },
  8662. {
  8663. "url": "https://github.com/fabpot",
  8664. "type": "github"
  8665. },
  8666. {
  8667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8668. "type": "tidelift"
  8669. }
  8670. ],
  8671. "time": "2024-08-13T14:03:51+00:00"
  8672. },
  8673. {
  8674. "name": "symfony/http-client-contracts",
  8675. "version": "v2.5.3",
  8676. "source": {
  8677. "type": "git",
  8678. "url": "https://github.com/symfony/http-client-contracts.git",
  8679. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  8680. },
  8681. "dist": {
  8682. "type": "zip",
  8683. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8684. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  8685. "shasum": ""
  8686. },
  8687. "require": {
  8688. "php": ">=7.2.5"
  8689. },
  8690. "suggest": {
  8691. "symfony/http-client-implementation": ""
  8692. },
  8693. "type": "library",
  8694. "extra": {
  8695. "branch-alias": {
  8696. "dev-main": "2.5-dev"
  8697. },
  8698. "thanks": {
  8699. "name": "symfony/contracts",
  8700. "url": "https://github.com/symfony/contracts"
  8701. }
  8702. },
  8703. "autoload": {
  8704. "psr-4": {
  8705. "Symfony\\Contracts\\HttpClient\\": ""
  8706. }
  8707. },
  8708. "notification-url": "https://packagist.org/downloads/",
  8709. "license": [
  8710. "MIT"
  8711. ],
  8712. "authors": [
  8713. {
  8714. "name": "Nicolas Grekas",
  8715. "email": "p@tchwork.com"
  8716. },
  8717. {
  8718. "name": "Symfony Community",
  8719. "homepage": "https://symfony.com/contributors"
  8720. }
  8721. ],
  8722. "description": "Generic abstractions related to HTTP clients",
  8723. "homepage": "https://symfony.com",
  8724. "keywords": [
  8725. "abstractions",
  8726. "contracts",
  8727. "decoupling",
  8728. "interfaces",
  8729. "interoperability",
  8730. "standards"
  8731. ],
  8732. "support": {
  8733. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  8734. },
  8735. "funding": [
  8736. {
  8737. "url": "https://symfony.com/sponsor",
  8738. "type": "custom"
  8739. },
  8740. {
  8741. "url": "https://github.com/fabpot",
  8742. "type": "github"
  8743. },
  8744. {
  8745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8746. "type": "tidelift"
  8747. }
  8748. ],
  8749. "time": "2024-03-26T19:42:53+00:00"
  8750. },
  8751. {
  8752. "name": "symfony/http-foundation",
  8753. "version": "v4.4.49",
  8754. "source": {
  8755. "type": "git",
  8756. "url": "https://github.com/symfony/http-foundation.git",
  8757. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  8758. },
  8759. "dist": {
  8760. "type": "zip",
  8761. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  8762. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  8763. "shasum": ""
  8764. },
  8765. "require": {
  8766. "php": ">=7.1.3",
  8767. "symfony/mime": "^4.3|^5.0",
  8768. "symfony/polyfill-mbstring": "~1.1",
  8769. "symfony/polyfill-php80": "^1.16"
  8770. },
  8771. "require-dev": {
  8772. "predis/predis": "~1.0",
  8773. "symfony/expression-language": "^3.4|^4.0|^5.0"
  8774. },
  8775. "type": "library",
  8776. "autoload": {
  8777. "psr-4": {
  8778. "Symfony\\Component\\HttpFoundation\\": ""
  8779. },
  8780. "exclude-from-classmap": [
  8781. "/Tests/"
  8782. ]
  8783. },
  8784. "notification-url": "https://packagist.org/downloads/",
  8785. "license": [
  8786. "MIT"
  8787. ],
  8788. "authors": [
  8789. {
  8790. "name": "Fabien Potencier",
  8791. "email": "fabien@symfony.com"
  8792. },
  8793. {
  8794. "name": "Symfony Community",
  8795. "homepage": "https://symfony.com/contributors"
  8796. }
  8797. ],
  8798. "description": "Defines an object-oriented layer for the HTTP specification",
  8799. "homepage": "https://symfony.com",
  8800. "support": {
  8801. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  8802. },
  8803. "funding": [
  8804. {
  8805. "url": "https://symfony.com/sponsor",
  8806. "type": "custom"
  8807. },
  8808. {
  8809. "url": "https://github.com/fabpot",
  8810. "type": "github"
  8811. },
  8812. {
  8813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8814. "type": "tidelift"
  8815. }
  8816. ],
  8817. "time": "2022-11-04T16:17:57+00:00"
  8818. },
  8819. {
  8820. "name": "symfony/http-kernel",
  8821. "version": "v4.4.51",
  8822. "source": {
  8823. "type": "git",
  8824. "url": "https://github.com/symfony/http-kernel.git",
  8825. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7"
  8826. },
  8827. "dist": {
  8828. "type": "zip",
  8829. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8830. "reference": "ad8ab192cb619ff7285c95d28c69b36d718416c7",
  8831. "shasum": ""
  8832. },
  8833. "require": {
  8834. "php": ">=7.1.3",
  8835. "psr/log": "^1|^2",
  8836. "symfony/error-handler": "^4.4",
  8837. "symfony/event-dispatcher": "^4.4",
  8838. "symfony/http-client-contracts": "^1.1|^2",
  8839. "symfony/http-foundation": "^4.4.30|^5.3.7",
  8840. "symfony/polyfill-ctype": "^1.8",
  8841. "symfony/polyfill-php73": "^1.9",
  8842. "symfony/polyfill-php80": "^1.16"
  8843. },
  8844. "conflict": {
  8845. "symfony/browser-kit": "<4.3",
  8846. "symfony/config": "<3.4",
  8847. "symfony/console": ">=5",
  8848. "symfony/dependency-injection": "<4.3",
  8849. "symfony/translation": "<4.2",
  8850. "twig/twig": "<1.43|<2.13,>=2"
  8851. },
  8852. "provide": {
  8853. "psr/log-implementation": "1.0|2.0"
  8854. },
  8855. "require-dev": {
  8856. "psr/cache": "^1.0|^2.0|^3.0",
  8857. "symfony/browser-kit": "^4.3|^5.0",
  8858. "symfony/config": "^3.4|^4.0|^5.0",
  8859. "symfony/console": "^3.4|^4.0",
  8860. "symfony/css-selector": "^3.4|^4.0|^5.0",
  8861. "symfony/dependency-injection": "^4.3|^5.0",
  8862. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  8863. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8864. "symfony/finder": "^3.4|^4.0|^5.0",
  8865. "symfony/process": "^3.4|^4.0|^5.0",
  8866. "symfony/routing": "^3.4|^4.0|^5.0",
  8867. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  8868. "symfony/templating": "^3.4|^4.0|^5.0",
  8869. "symfony/translation": "^4.2|^5.0",
  8870. "symfony/translation-contracts": "^1.1|^2",
  8871. "twig/twig": "^1.43|^2.13|^3.0.4"
  8872. },
  8873. "suggest": {
  8874. "symfony/browser-kit": "",
  8875. "symfony/config": "",
  8876. "symfony/console": "",
  8877. "symfony/dependency-injection": ""
  8878. },
  8879. "type": "library",
  8880. "autoload": {
  8881. "psr-4": {
  8882. "Symfony\\Component\\HttpKernel\\": ""
  8883. },
  8884. "exclude-from-classmap": [
  8885. "/Tests/"
  8886. ]
  8887. },
  8888. "notification-url": "https://packagist.org/downloads/",
  8889. "license": [
  8890. "MIT"
  8891. ],
  8892. "authors": [
  8893. {
  8894. "name": "Fabien Potencier",
  8895. "email": "fabien@symfony.com"
  8896. },
  8897. {
  8898. "name": "Symfony Community",
  8899. "homepage": "https://symfony.com/contributors"
  8900. }
  8901. ],
  8902. "description": "Provides a structured process for converting a Request into a Response",
  8903. "homepage": "https://symfony.com",
  8904. "support": {
  8905. "source": "https://github.com/symfony/http-kernel/tree/v4.4.51"
  8906. },
  8907. "funding": [
  8908. {
  8909. "url": "https://symfony.com/sponsor",
  8910. "type": "custom"
  8911. },
  8912. {
  8913. "url": "https://github.com/fabpot",
  8914. "type": "github"
  8915. },
  8916. {
  8917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8918. "type": "tidelift"
  8919. }
  8920. ],
  8921. "time": "2023-11-10T13:31:29+00:00"
  8922. },
  8923. {
  8924. "name": "symfony/mime",
  8925. "version": "v5.4.13",
  8926. "source": {
  8927. "type": "git",
  8928. "url": "https://github.com/symfony/mime.git",
  8929. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd"
  8930. },
  8931. "dist": {
  8932. "type": "zip",
  8933. "url": "https://api.github.com/repos/symfony/mime/zipball/bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8934. "reference": "bb2ccf759e2b967dcd11bdee5bdf30dddd2290bd",
  8935. "shasum": ""
  8936. },
  8937. "require": {
  8938. "php": ">=7.2.5",
  8939. "symfony/deprecation-contracts": "^2.1|^3",
  8940. "symfony/polyfill-intl-idn": "^1.10",
  8941. "symfony/polyfill-mbstring": "^1.0",
  8942. "symfony/polyfill-php80": "^1.16"
  8943. },
  8944. "conflict": {
  8945. "egulias/email-validator": "~3.0.0",
  8946. "phpdocumentor/reflection-docblock": "<3.2.2",
  8947. "phpdocumentor/type-resolver": "<1.4.0",
  8948. "symfony/mailer": "<4.4"
  8949. },
  8950. "require-dev": {
  8951. "egulias/email-validator": "^2.1.10|^3.1",
  8952. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8953. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8954. "symfony/property-access": "^4.4|^5.1|^6.0",
  8955. "symfony/property-info": "^4.4|^5.1|^6.0",
  8956. "symfony/serializer": "^5.2|^6.0"
  8957. },
  8958. "type": "library",
  8959. "autoload": {
  8960. "psr-4": {
  8961. "Symfony\\Component\\Mime\\": ""
  8962. },
  8963. "exclude-from-classmap": [
  8964. "/Tests/"
  8965. ]
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "MIT"
  8970. ],
  8971. "authors": [
  8972. {
  8973. "name": "Fabien Potencier",
  8974. "email": "fabien@symfony.com"
  8975. },
  8976. {
  8977. "name": "Symfony Community",
  8978. "homepage": "https://symfony.com/contributors"
  8979. }
  8980. ],
  8981. "description": "Allows manipulating MIME messages",
  8982. "homepage": "https://symfony.com",
  8983. "keywords": [
  8984. "mime",
  8985. "mime-type"
  8986. ],
  8987. "support": {
  8988. "source": "https://github.com/symfony/mime/tree/v5.4.13"
  8989. },
  8990. "funding": [
  8991. {
  8992. "url": "https://symfony.com/sponsor",
  8993. "type": "custom"
  8994. },
  8995. {
  8996. "url": "https://github.com/fabpot",
  8997. "type": "github"
  8998. },
  8999. {
  9000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9001. "type": "tidelift"
  9002. }
  9003. ],
  9004. "time": "2022-09-01T18:18:29+00:00"
  9005. },
  9006. {
  9007. "name": "symfony/polyfill-ctype",
  9008. "version": "v1.27.0",
  9009. "source": {
  9010. "type": "git",
  9011. "url": "https://github.com/symfony/polyfill-ctype.git",
  9012. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  9013. },
  9014. "dist": {
  9015. "type": "zip",
  9016. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  9017. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  9018. "shasum": ""
  9019. },
  9020. "require": {
  9021. "php": ">=7.1"
  9022. },
  9023. "provide": {
  9024. "ext-ctype": "*"
  9025. },
  9026. "suggest": {
  9027. "ext-ctype": "For best performance"
  9028. },
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-main": "1.27-dev"
  9033. },
  9034. "thanks": {
  9035. "name": "symfony/polyfill",
  9036. "url": "https://github.com/symfony/polyfill"
  9037. }
  9038. },
  9039. "autoload": {
  9040. "files": [
  9041. "bootstrap.php"
  9042. ],
  9043. "psr-4": {
  9044. "Symfony\\Polyfill\\Ctype\\": ""
  9045. }
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "MIT"
  9050. ],
  9051. "authors": [
  9052. {
  9053. "name": "Gert de Pagter",
  9054. "email": "BackEndTea@gmail.com"
  9055. },
  9056. {
  9057. "name": "Symfony Community",
  9058. "homepage": "https://symfony.com/contributors"
  9059. }
  9060. ],
  9061. "description": "Symfony polyfill for ctype functions",
  9062. "homepage": "https://symfony.com",
  9063. "keywords": [
  9064. "compatibility",
  9065. "ctype",
  9066. "polyfill",
  9067. "portable"
  9068. ],
  9069. "support": {
  9070. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  9071. },
  9072. "funding": [
  9073. {
  9074. "url": "https://symfony.com/sponsor",
  9075. "type": "custom"
  9076. },
  9077. {
  9078. "url": "https://github.com/fabpot",
  9079. "type": "github"
  9080. },
  9081. {
  9082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9083. "type": "tidelift"
  9084. }
  9085. ],
  9086. "time": "2022-11-03T14:55:06+00:00"
  9087. },
  9088. {
  9089. "name": "symfony/polyfill-iconv",
  9090. "version": "v1.27.0",
  9091. "source": {
  9092. "type": "git",
  9093. "url": "https://github.com/symfony/polyfill-iconv.git",
  9094. "reference": "927013f3aac555983a5059aada98e1907d842695"
  9095. },
  9096. "dist": {
  9097. "type": "zip",
  9098. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  9099. "reference": "927013f3aac555983a5059aada98e1907d842695",
  9100. "shasum": ""
  9101. },
  9102. "require": {
  9103. "php": ">=7.1"
  9104. },
  9105. "provide": {
  9106. "ext-iconv": "*"
  9107. },
  9108. "suggest": {
  9109. "ext-iconv": "For best performance"
  9110. },
  9111. "type": "library",
  9112. "extra": {
  9113. "branch-alias": {
  9114. "dev-main": "1.27-dev"
  9115. },
  9116. "thanks": {
  9117. "name": "symfony/polyfill",
  9118. "url": "https://github.com/symfony/polyfill"
  9119. }
  9120. },
  9121. "autoload": {
  9122. "files": [
  9123. "bootstrap.php"
  9124. ],
  9125. "psr-4": {
  9126. "Symfony\\Polyfill\\Iconv\\": ""
  9127. }
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "MIT"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Nicolas Grekas",
  9136. "email": "p@tchwork.com"
  9137. },
  9138. {
  9139. "name": "Symfony Community",
  9140. "homepage": "https://symfony.com/contributors"
  9141. }
  9142. ],
  9143. "description": "Symfony polyfill for the Iconv extension",
  9144. "homepage": "https://symfony.com",
  9145. "keywords": [
  9146. "compatibility",
  9147. "iconv",
  9148. "polyfill",
  9149. "portable",
  9150. "shim"
  9151. ],
  9152. "support": {
  9153. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  9154. },
  9155. "funding": [
  9156. {
  9157. "url": "https://symfony.com/sponsor",
  9158. "type": "custom"
  9159. },
  9160. {
  9161. "url": "https://github.com/fabpot",
  9162. "type": "github"
  9163. },
  9164. {
  9165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9166. "type": "tidelift"
  9167. }
  9168. ],
  9169. "time": "2022-11-03T14:55:06+00:00"
  9170. },
  9171. {
  9172. "name": "symfony/polyfill-intl-idn",
  9173. "version": "v1.27.0",
  9174. "source": {
  9175. "type": "git",
  9176. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9177. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  9178. },
  9179. "dist": {
  9180. "type": "zip",
  9181. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  9182. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  9183. "shasum": ""
  9184. },
  9185. "require": {
  9186. "php": ">=7.1",
  9187. "symfony/polyfill-intl-normalizer": "^1.10",
  9188. "symfony/polyfill-php72": "^1.10"
  9189. },
  9190. "suggest": {
  9191. "ext-intl": "For best performance"
  9192. },
  9193. "type": "library",
  9194. "extra": {
  9195. "branch-alias": {
  9196. "dev-main": "1.27-dev"
  9197. },
  9198. "thanks": {
  9199. "name": "symfony/polyfill",
  9200. "url": "https://github.com/symfony/polyfill"
  9201. }
  9202. },
  9203. "autoload": {
  9204. "files": [
  9205. "bootstrap.php"
  9206. ],
  9207. "psr-4": {
  9208. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9209. }
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "MIT"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Laurent Bassin",
  9218. "email": "laurent@bassin.info"
  9219. },
  9220. {
  9221. "name": "Trevor Rowbotham",
  9222. "email": "trevor.rowbotham@pm.me"
  9223. },
  9224. {
  9225. "name": "Symfony Community",
  9226. "homepage": "https://symfony.com/contributors"
  9227. }
  9228. ],
  9229. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9230. "homepage": "https://symfony.com",
  9231. "keywords": [
  9232. "compatibility",
  9233. "idn",
  9234. "intl",
  9235. "polyfill",
  9236. "portable",
  9237. "shim"
  9238. ],
  9239. "support": {
  9240. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://symfony.com/sponsor",
  9245. "type": "custom"
  9246. },
  9247. {
  9248. "url": "https://github.com/fabpot",
  9249. "type": "github"
  9250. },
  9251. {
  9252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9253. "type": "tidelift"
  9254. }
  9255. ],
  9256. "time": "2022-11-03T14:55:06+00:00"
  9257. },
  9258. {
  9259. "name": "symfony/polyfill-intl-normalizer",
  9260. "version": "v1.27.0",
  9261. "source": {
  9262. "type": "git",
  9263. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9264. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9265. },
  9266. "dist": {
  9267. "type": "zip",
  9268. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9269. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9270. "shasum": ""
  9271. },
  9272. "require": {
  9273. "php": ">=7.1"
  9274. },
  9275. "suggest": {
  9276. "ext-intl": "For best performance"
  9277. },
  9278. "type": "library",
  9279. "extra": {
  9280. "branch-alias": {
  9281. "dev-main": "1.27-dev"
  9282. },
  9283. "thanks": {
  9284. "name": "symfony/polyfill",
  9285. "url": "https://github.com/symfony/polyfill"
  9286. }
  9287. },
  9288. "autoload": {
  9289. "files": [
  9290. "bootstrap.php"
  9291. ],
  9292. "psr-4": {
  9293. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9294. },
  9295. "classmap": [
  9296. "Resources/stubs"
  9297. ]
  9298. },
  9299. "notification-url": "https://packagist.org/downloads/",
  9300. "license": [
  9301. "MIT"
  9302. ],
  9303. "authors": [
  9304. {
  9305. "name": "Nicolas Grekas",
  9306. "email": "p@tchwork.com"
  9307. },
  9308. {
  9309. "name": "Symfony Community",
  9310. "homepage": "https://symfony.com/contributors"
  9311. }
  9312. ],
  9313. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9314. "homepage": "https://symfony.com",
  9315. "keywords": [
  9316. "compatibility",
  9317. "intl",
  9318. "normalizer",
  9319. "polyfill",
  9320. "portable",
  9321. "shim"
  9322. ],
  9323. "support": {
  9324. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9325. },
  9326. "funding": [
  9327. {
  9328. "url": "https://symfony.com/sponsor",
  9329. "type": "custom"
  9330. },
  9331. {
  9332. "url": "https://github.com/fabpot",
  9333. "type": "github"
  9334. },
  9335. {
  9336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9337. "type": "tidelift"
  9338. }
  9339. ],
  9340. "time": "2022-11-03T14:55:06+00:00"
  9341. },
  9342. {
  9343. "name": "symfony/polyfill-mbstring",
  9344. "version": "v1.27.0",
  9345. "source": {
  9346. "type": "git",
  9347. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9348. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9349. },
  9350. "dist": {
  9351. "type": "zip",
  9352. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9353. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9354. "shasum": ""
  9355. },
  9356. "require": {
  9357. "php": ">=7.1"
  9358. },
  9359. "provide": {
  9360. "ext-mbstring": "*"
  9361. },
  9362. "suggest": {
  9363. "ext-mbstring": "For best performance"
  9364. },
  9365. "type": "library",
  9366. "extra": {
  9367. "branch-alias": {
  9368. "dev-main": "1.27-dev"
  9369. },
  9370. "thanks": {
  9371. "name": "symfony/polyfill",
  9372. "url": "https://github.com/symfony/polyfill"
  9373. }
  9374. },
  9375. "autoload": {
  9376. "files": [
  9377. "bootstrap.php"
  9378. ],
  9379. "psr-4": {
  9380. "Symfony\\Polyfill\\Mbstring\\": ""
  9381. }
  9382. },
  9383. "notification-url": "https://packagist.org/downloads/",
  9384. "license": [
  9385. "MIT"
  9386. ],
  9387. "authors": [
  9388. {
  9389. "name": "Nicolas Grekas",
  9390. "email": "p@tchwork.com"
  9391. },
  9392. {
  9393. "name": "Symfony Community",
  9394. "homepage": "https://symfony.com/contributors"
  9395. }
  9396. ],
  9397. "description": "Symfony polyfill for the Mbstring extension",
  9398. "homepage": "https://symfony.com",
  9399. "keywords": [
  9400. "compatibility",
  9401. "mbstring",
  9402. "polyfill",
  9403. "portable",
  9404. "shim"
  9405. ],
  9406. "support": {
  9407. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  9408. },
  9409. "funding": [
  9410. {
  9411. "url": "https://symfony.com/sponsor",
  9412. "type": "custom"
  9413. },
  9414. {
  9415. "url": "https://github.com/fabpot",
  9416. "type": "github"
  9417. },
  9418. {
  9419. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9420. "type": "tidelift"
  9421. }
  9422. ],
  9423. "time": "2022-11-03T14:55:06+00:00"
  9424. },
  9425. {
  9426. "name": "symfony/polyfill-php72",
  9427. "version": "v1.31.0",
  9428. "source": {
  9429. "type": "git",
  9430. "url": "https://github.com/symfony/polyfill-php72.git",
  9431. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  9432. },
  9433. "dist": {
  9434. "type": "zip",
  9435. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9436. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  9437. "shasum": ""
  9438. },
  9439. "require": {
  9440. "php": ">=7.2"
  9441. },
  9442. "type": "metapackage",
  9443. "extra": {
  9444. "thanks": {
  9445. "name": "symfony/polyfill",
  9446. "url": "https://github.com/symfony/polyfill"
  9447. }
  9448. },
  9449. "notification-url": "https://packagist.org/downloads/",
  9450. "license": [
  9451. "MIT"
  9452. ],
  9453. "authors": [
  9454. {
  9455. "name": "Nicolas Grekas",
  9456. "email": "p@tchwork.com"
  9457. },
  9458. {
  9459. "name": "Symfony Community",
  9460. "homepage": "https://symfony.com/contributors"
  9461. }
  9462. ],
  9463. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9464. "homepage": "https://symfony.com",
  9465. "keywords": [
  9466. "compatibility",
  9467. "polyfill",
  9468. "portable",
  9469. "shim"
  9470. ],
  9471. "support": {
  9472. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  9473. },
  9474. "funding": [
  9475. {
  9476. "url": "https://symfony.com/sponsor",
  9477. "type": "custom"
  9478. },
  9479. {
  9480. "url": "https://github.com/fabpot",
  9481. "type": "github"
  9482. },
  9483. {
  9484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9485. "type": "tidelift"
  9486. }
  9487. ],
  9488. "time": "2024-09-09T11:45:10+00:00"
  9489. },
  9490. {
  9491. "name": "symfony/polyfill-php73",
  9492. "version": "v1.31.0",
  9493. "source": {
  9494. "type": "git",
  9495. "url": "https://github.com/symfony/polyfill-php73.git",
  9496. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  9497. },
  9498. "dist": {
  9499. "type": "zip",
  9500. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9501. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  9502. "shasum": ""
  9503. },
  9504. "require": {
  9505. "php": ">=7.2"
  9506. },
  9507. "type": "library",
  9508. "extra": {
  9509. "thanks": {
  9510. "name": "symfony/polyfill",
  9511. "url": "https://github.com/symfony/polyfill"
  9512. }
  9513. },
  9514. "autoload": {
  9515. "files": [
  9516. "bootstrap.php"
  9517. ],
  9518. "psr-4": {
  9519. "Symfony\\Polyfill\\Php73\\": ""
  9520. },
  9521. "classmap": [
  9522. "Resources/stubs"
  9523. ]
  9524. },
  9525. "notification-url": "https://packagist.org/downloads/",
  9526. "license": [
  9527. "MIT"
  9528. ],
  9529. "authors": [
  9530. {
  9531. "name": "Nicolas Grekas",
  9532. "email": "p@tchwork.com"
  9533. },
  9534. {
  9535. "name": "Symfony Community",
  9536. "homepage": "https://symfony.com/contributors"
  9537. }
  9538. ],
  9539. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9540. "homepage": "https://symfony.com",
  9541. "keywords": [
  9542. "compatibility",
  9543. "polyfill",
  9544. "portable",
  9545. "shim"
  9546. ],
  9547. "support": {
  9548. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  9549. },
  9550. "funding": [
  9551. {
  9552. "url": "https://symfony.com/sponsor",
  9553. "type": "custom"
  9554. },
  9555. {
  9556. "url": "https://github.com/fabpot",
  9557. "type": "github"
  9558. },
  9559. {
  9560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9561. "type": "tidelift"
  9562. }
  9563. ],
  9564. "time": "2024-09-09T11:45:10+00:00"
  9565. },
  9566. {
  9567. "name": "symfony/polyfill-php80",
  9568. "version": "v1.27.0",
  9569. "source": {
  9570. "type": "git",
  9571. "url": "https://github.com/symfony/polyfill-php80.git",
  9572. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  9573. },
  9574. "dist": {
  9575. "type": "zip",
  9576. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9577. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  9578. "shasum": ""
  9579. },
  9580. "require": {
  9581. "php": ">=7.1"
  9582. },
  9583. "type": "library",
  9584. "extra": {
  9585. "branch-alias": {
  9586. "dev-main": "1.27-dev"
  9587. },
  9588. "thanks": {
  9589. "name": "symfony/polyfill",
  9590. "url": "https://github.com/symfony/polyfill"
  9591. }
  9592. },
  9593. "autoload": {
  9594. "files": [
  9595. "bootstrap.php"
  9596. ],
  9597. "psr-4": {
  9598. "Symfony\\Polyfill\\Php80\\": ""
  9599. },
  9600. "classmap": [
  9601. "Resources/stubs"
  9602. ]
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "MIT"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Ion Bazan",
  9611. "email": "ion.bazan@gmail.com"
  9612. },
  9613. {
  9614. "name": "Nicolas Grekas",
  9615. "email": "p@tchwork.com"
  9616. },
  9617. {
  9618. "name": "Symfony Community",
  9619. "homepage": "https://symfony.com/contributors"
  9620. }
  9621. ],
  9622. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9623. "homepage": "https://symfony.com",
  9624. "keywords": [
  9625. "compatibility",
  9626. "polyfill",
  9627. "portable",
  9628. "shim"
  9629. ],
  9630. "support": {
  9631. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  9632. },
  9633. "funding": [
  9634. {
  9635. "url": "https://symfony.com/sponsor",
  9636. "type": "custom"
  9637. },
  9638. {
  9639. "url": "https://github.com/fabpot",
  9640. "type": "github"
  9641. },
  9642. {
  9643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9644. "type": "tidelift"
  9645. }
  9646. ],
  9647. "time": "2022-11-03T14:55:06+00:00"
  9648. },
  9649. {
  9650. "name": "symfony/process",
  9651. "version": "v4.4.44",
  9652. "source": {
  9653. "type": "git",
  9654. "url": "https://github.com/symfony/process.git",
  9655. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  9656. },
  9657. "dist": {
  9658. "type": "zip",
  9659. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9660. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  9661. "shasum": ""
  9662. },
  9663. "require": {
  9664. "php": ">=7.1.3",
  9665. "symfony/polyfill-php80": "^1.16"
  9666. },
  9667. "type": "library",
  9668. "autoload": {
  9669. "psr-4": {
  9670. "Symfony\\Component\\Process\\": ""
  9671. },
  9672. "exclude-from-classmap": [
  9673. "/Tests/"
  9674. ]
  9675. },
  9676. "notification-url": "https://packagist.org/downloads/",
  9677. "license": [
  9678. "MIT"
  9679. ],
  9680. "authors": [
  9681. {
  9682. "name": "Fabien Potencier",
  9683. "email": "fabien@symfony.com"
  9684. },
  9685. {
  9686. "name": "Symfony Community",
  9687. "homepage": "https://symfony.com/contributors"
  9688. }
  9689. ],
  9690. "description": "Executes commands in sub-processes",
  9691. "homepage": "https://symfony.com",
  9692. "support": {
  9693. "source": "https://github.com/symfony/process/tree/v4.4.44"
  9694. },
  9695. "funding": [
  9696. {
  9697. "url": "https://symfony.com/sponsor",
  9698. "type": "custom"
  9699. },
  9700. {
  9701. "url": "https://github.com/fabpot",
  9702. "type": "github"
  9703. },
  9704. {
  9705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9706. "type": "tidelift"
  9707. }
  9708. ],
  9709. "time": "2022-06-27T13:16:42+00:00"
  9710. },
  9711. {
  9712. "name": "symfony/psr-http-message-bridge",
  9713. "version": "v2.1.4",
  9714. "source": {
  9715. "type": "git",
  9716. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9717. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  9718. },
  9719. "dist": {
  9720. "type": "zip",
  9721. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  9722. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  9723. "shasum": ""
  9724. },
  9725. "require": {
  9726. "php": ">=7.1",
  9727. "psr/http-message": "^1.0",
  9728. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9729. },
  9730. "require-dev": {
  9731. "nyholm/psr7": "^1.1",
  9732. "psr/log": "^1.1 || ^2 || ^3",
  9733. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9734. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9735. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9736. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9737. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9738. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9739. },
  9740. "suggest": {
  9741. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9742. },
  9743. "type": "symfony-bridge",
  9744. "extra": {
  9745. "branch-alias": {
  9746. "dev-main": "2.1-dev"
  9747. }
  9748. },
  9749. "autoload": {
  9750. "psr-4": {
  9751. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9752. },
  9753. "exclude-from-classmap": [
  9754. "/Tests/"
  9755. ]
  9756. },
  9757. "notification-url": "https://packagist.org/downloads/",
  9758. "license": [
  9759. "MIT"
  9760. ],
  9761. "authors": [
  9762. {
  9763. "name": "Fabien Potencier",
  9764. "email": "fabien@symfony.com"
  9765. },
  9766. {
  9767. "name": "Symfony Community",
  9768. "homepage": "http://symfony.com/contributors"
  9769. }
  9770. ],
  9771. "description": "PSR HTTP message bridge",
  9772. "homepage": "http://symfony.com",
  9773. "keywords": [
  9774. "http",
  9775. "http-message",
  9776. "psr-17",
  9777. "psr-7"
  9778. ],
  9779. "support": {
  9780. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9781. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  9782. },
  9783. "funding": [
  9784. {
  9785. "url": "https://symfony.com/sponsor",
  9786. "type": "custom"
  9787. },
  9788. {
  9789. "url": "https://github.com/fabpot",
  9790. "type": "github"
  9791. },
  9792. {
  9793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9794. "type": "tidelift"
  9795. }
  9796. ],
  9797. "time": "2022-11-28T22:46:34+00:00"
  9798. },
  9799. {
  9800. "name": "symfony/routing",
  9801. "version": "v4.4.44",
  9802. "source": {
  9803. "type": "git",
  9804. "url": "https://github.com/symfony/routing.git",
  9805. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  9806. },
  9807. "dist": {
  9808. "type": "zip",
  9809. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9810. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  9811. "shasum": ""
  9812. },
  9813. "require": {
  9814. "php": ">=7.1.3",
  9815. "symfony/polyfill-php80": "^1.16"
  9816. },
  9817. "conflict": {
  9818. "symfony/config": "<4.2",
  9819. "symfony/dependency-injection": "<3.4",
  9820. "symfony/yaml": "<3.4"
  9821. },
  9822. "require-dev": {
  9823. "doctrine/annotations": "^1.10.4",
  9824. "psr/log": "^1|^2|^3",
  9825. "symfony/config": "^4.2|^5.0",
  9826. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9827. "symfony/expression-language": "^3.4|^4.0|^5.0",
  9828. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9829. "symfony/yaml": "^3.4|^4.0|^5.0"
  9830. },
  9831. "suggest": {
  9832. "doctrine/annotations": "For using the annotation loader",
  9833. "symfony/config": "For using the all-in-one router or any loader",
  9834. "symfony/expression-language": "For using expression matching",
  9835. "symfony/http-foundation": "For using a Symfony Request object",
  9836. "symfony/yaml": "For using the YAML loader"
  9837. },
  9838. "type": "library",
  9839. "autoload": {
  9840. "psr-4": {
  9841. "Symfony\\Component\\Routing\\": ""
  9842. },
  9843. "exclude-from-classmap": [
  9844. "/Tests/"
  9845. ]
  9846. },
  9847. "notification-url": "https://packagist.org/downloads/",
  9848. "license": [
  9849. "MIT"
  9850. ],
  9851. "authors": [
  9852. {
  9853. "name": "Fabien Potencier",
  9854. "email": "fabien@symfony.com"
  9855. },
  9856. {
  9857. "name": "Symfony Community",
  9858. "homepage": "https://symfony.com/contributors"
  9859. }
  9860. ],
  9861. "description": "Maps an HTTP request to a set of configuration variables",
  9862. "homepage": "https://symfony.com",
  9863. "keywords": [
  9864. "router",
  9865. "routing",
  9866. "uri",
  9867. "url"
  9868. ],
  9869. "support": {
  9870. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  9871. },
  9872. "funding": [
  9873. {
  9874. "url": "https://symfony.com/sponsor",
  9875. "type": "custom"
  9876. },
  9877. {
  9878. "url": "https://github.com/fabpot",
  9879. "type": "github"
  9880. },
  9881. {
  9882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9883. "type": "tidelift"
  9884. }
  9885. ],
  9886. "time": "2022-07-20T09:59:04+00:00"
  9887. },
  9888. {
  9889. "name": "symfony/serializer",
  9890. "version": "v4.4.47",
  9891. "source": {
  9892. "type": "git",
  9893. "url": "https://github.com/symfony/serializer.git",
  9894. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d"
  9895. },
  9896. "dist": {
  9897. "type": "zip",
  9898. "url": "https://api.github.com/repos/symfony/serializer/zipball/6e01d63c55657930a6de03d6e36aae50af98888d",
  9899. "reference": "6e01d63c55657930a6de03d6e36aae50af98888d",
  9900. "shasum": ""
  9901. },
  9902. "require": {
  9903. "php": ">=7.1.3",
  9904. "symfony/polyfill-ctype": "~1.8",
  9905. "symfony/polyfill-php80": "^1.16"
  9906. },
  9907. "conflict": {
  9908. "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2",
  9909. "phpdocumentor/type-resolver": "<0.3.0|1.3.*",
  9910. "symfony/dependency-injection": "<3.4",
  9911. "symfony/property-access": "<3.4",
  9912. "symfony/property-info": "<3.4",
  9913. "symfony/yaml": "<3.4"
  9914. },
  9915. "require-dev": {
  9916. "doctrine/annotations": "^1.10.4",
  9917. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9918. "symfony/cache": "^3.4|^4.0|^5.0",
  9919. "symfony/config": "^3.4|^4.0|^5.0",
  9920. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  9921. "symfony/error-handler": "^4.4|^5.0",
  9922. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  9923. "symfony/mime": "^4.4|^5.0",
  9924. "symfony/property-access": "^4.4.36|^5.3.13",
  9925. "symfony/property-info": "^3.4.13|~4.0|^5.0",
  9926. "symfony/validator": "^3.4|^4.0|^5.0",
  9927. "symfony/yaml": "^3.4|^4.0|^5.0"
  9928. },
  9929. "suggest": {
  9930. "doctrine/annotations": "For using the annotation mapping.",
  9931. "psr/cache-implementation": "For using the metadata cache.",
  9932. "symfony/config": "For using the XML mapping loader.",
  9933. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9934. "symfony/property-access": "For using the ObjectNormalizer.",
  9935. "symfony/property-info": "To deserialize relations.",
  9936. "symfony/yaml": "For using the default YAML mapping loader."
  9937. },
  9938. "type": "library",
  9939. "autoload": {
  9940. "psr-4": {
  9941. "Symfony\\Component\\Serializer\\": ""
  9942. },
  9943. "exclude-from-classmap": [
  9944. "/Tests/"
  9945. ]
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "MIT"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Fabien Potencier",
  9954. "email": "fabien@symfony.com"
  9955. },
  9956. {
  9957. "name": "Symfony Community",
  9958. "homepage": "https://symfony.com/contributors"
  9959. }
  9960. ],
  9961. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9962. "homepage": "https://symfony.com",
  9963. "support": {
  9964. "source": "https://github.com/symfony/serializer/tree/v4.4.47"
  9965. },
  9966. "funding": [
  9967. {
  9968. "url": "https://symfony.com/sponsor",
  9969. "type": "custom"
  9970. },
  9971. {
  9972. "url": "https://github.com/fabpot",
  9973. "type": "github"
  9974. },
  9975. {
  9976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9977. "type": "tidelift"
  9978. }
  9979. ],
  9980. "time": "2022-09-19T08:38:33+00:00"
  9981. },
  9982. {
  9983. "name": "symfony/service-contracts",
  9984. "version": "v2.5.3",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/symfony/service-contracts.git",
  9988. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9993. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  9994. "shasum": ""
  9995. },
  9996. "require": {
  9997. "php": ">=7.2.5",
  9998. "psr/container": "^1.1",
  9999. "symfony/deprecation-contracts": "^2.1|^3"
  10000. },
  10001. "conflict": {
  10002. "ext-psr": "<1.1|>=2"
  10003. },
  10004. "suggest": {
  10005. "symfony/service-implementation": ""
  10006. },
  10007. "type": "library",
  10008. "extra": {
  10009. "branch-alias": {
  10010. "dev-main": "2.5-dev"
  10011. },
  10012. "thanks": {
  10013. "name": "symfony/contracts",
  10014. "url": "https://github.com/symfony/contracts"
  10015. }
  10016. },
  10017. "autoload": {
  10018. "psr-4": {
  10019. "Symfony\\Contracts\\Service\\": ""
  10020. }
  10021. },
  10022. "notification-url": "https://packagist.org/downloads/",
  10023. "license": [
  10024. "MIT"
  10025. ],
  10026. "authors": [
  10027. {
  10028. "name": "Nicolas Grekas",
  10029. "email": "p@tchwork.com"
  10030. },
  10031. {
  10032. "name": "Symfony Community",
  10033. "homepage": "https://symfony.com/contributors"
  10034. }
  10035. ],
  10036. "description": "Generic abstractions related to writing services",
  10037. "homepage": "https://symfony.com",
  10038. "keywords": [
  10039. "abstractions",
  10040. "contracts",
  10041. "decoupling",
  10042. "interfaces",
  10043. "interoperability",
  10044. "standards"
  10045. ],
  10046. "support": {
  10047. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  10048. },
  10049. "funding": [
  10050. {
  10051. "url": "https://symfony.com/sponsor",
  10052. "type": "custom"
  10053. },
  10054. {
  10055. "url": "https://github.com/fabpot",
  10056. "type": "github"
  10057. },
  10058. {
  10059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10060. "type": "tidelift"
  10061. }
  10062. ],
  10063. "time": "2023-04-21T15:04:16+00:00"
  10064. },
  10065. {
  10066. "name": "symfony/translation",
  10067. "version": "v4.4.47",
  10068. "source": {
  10069. "type": "git",
  10070. "url": "https://github.com/symfony/translation.git",
  10071. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  10072. },
  10073. "dist": {
  10074. "type": "zip",
  10075. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  10076. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  10077. "shasum": ""
  10078. },
  10079. "require": {
  10080. "php": ">=7.1.3",
  10081. "symfony/polyfill-mbstring": "~1.0",
  10082. "symfony/polyfill-php80": "^1.16",
  10083. "symfony/translation-contracts": "^1.1.6|^2"
  10084. },
  10085. "conflict": {
  10086. "symfony/config": "<3.4",
  10087. "symfony/dependency-injection": "<3.4",
  10088. "symfony/http-kernel": "<4.4",
  10089. "symfony/yaml": "<3.4"
  10090. },
  10091. "provide": {
  10092. "symfony/translation-implementation": "1.0|2.0"
  10093. },
  10094. "require-dev": {
  10095. "psr/log": "^1|^2|^3",
  10096. "symfony/config": "^3.4|^4.0|^5.0",
  10097. "symfony/console": "^3.4|^4.0|^5.0",
  10098. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10099. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  10100. "symfony/http-kernel": "^4.4",
  10101. "symfony/intl": "^3.4|^4.0|^5.0",
  10102. "symfony/service-contracts": "^1.1.2|^2",
  10103. "symfony/yaml": "^3.4|^4.0|^5.0"
  10104. },
  10105. "suggest": {
  10106. "psr/log-implementation": "To use logging capability in translator",
  10107. "symfony/config": "",
  10108. "symfony/yaml": ""
  10109. },
  10110. "type": "library",
  10111. "autoload": {
  10112. "psr-4": {
  10113. "Symfony\\Component\\Translation\\": ""
  10114. },
  10115. "exclude-from-classmap": [
  10116. "/Tests/"
  10117. ]
  10118. },
  10119. "notification-url": "https://packagist.org/downloads/",
  10120. "license": [
  10121. "MIT"
  10122. ],
  10123. "authors": [
  10124. {
  10125. "name": "Fabien Potencier",
  10126. "email": "fabien@symfony.com"
  10127. },
  10128. {
  10129. "name": "Symfony Community",
  10130. "homepage": "https://symfony.com/contributors"
  10131. }
  10132. ],
  10133. "description": "Provides tools to internationalize your application",
  10134. "homepage": "https://symfony.com",
  10135. "support": {
  10136. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  10137. },
  10138. "funding": [
  10139. {
  10140. "url": "https://symfony.com/sponsor",
  10141. "type": "custom"
  10142. },
  10143. {
  10144. "url": "https://github.com/fabpot",
  10145. "type": "github"
  10146. },
  10147. {
  10148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10149. "type": "tidelift"
  10150. }
  10151. ],
  10152. "time": "2022-10-03T15:15:11+00:00"
  10153. },
  10154. {
  10155. "name": "symfony/translation-contracts",
  10156. "version": "v2.5.3",
  10157. "source": {
  10158. "type": "git",
  10159. "url": "https://github.com/symfony/translation-contracts.git",
  10160. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  10161. },
  10162. "dist": {
  10163. "type": "zip",
  10164. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  10165. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  10166. "shasum": ""
  10167. },
  10168. "require": {
  10169. "php": ">=7.2.5"
  10170. },
  10171. "suggest": {
  10172. "symfony/translation-implementation": ""
  10173. },
  10174. "type": "library",
  10175. "extra": {
  10176. "branch-alias": {
  10177. "dev-main": "2.5-dev"
  10178. },
  10179. "thanks": {
  10180. "name": "symfony/contracts",
  10181. "url": "https://github.com/symfony/contracts"
  10182. }
  10183. },
  10184. "autoload": {
  10185. "psr-4": {
  10186. "Symfony\\Contracts\\Translation\\": ""
  10187. }
  10188. },
  10189. "notification-url": "https://packagist.org/downloads/",
  10190. "license": [
  10191. "MIT"
  10192. ],
  10193. "authors": [
  10194. {
  10195. "name": "Nicolas Grekas",
  10196. "email": "p@tchwork.com"
  10197. },
  10198. {
  10199. "name": "Symfony Community",
  10200. "homepage": "https://symfony.com/contributors"
  10201. }
  10202. ],
  10203. "description": "Generic abstractions related to translation",
  10204. "homepage": "https://symfony.com",
  10205. "keywords": [
  10206. "abstractions",
  10207. "contracts",
  10208. "decoupling",
  10209. "interfaces",
  10210. "interoperability",
  10211. "standards"
  10212. ],
  10213. "support": {
  10214. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  10215. },
  10216. "funding": [
  10217. {
  10218. "url": "https://symfony.com/sponsor",
  10219. "type": "custom"
  10220. },
  10221. {
  10222. "url": "https://github.com/fabpot",
  10223. "type": "github"
  10224. },
  10225. {
  10226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10227. "type": "tidelift"
  10228. }
  10229. ],
  10230. "time": "2024-01-23T13:51:25+00:00"
  10231. },
  10232. {
  10233. "name": "symfony/validator",
  10234. "version": "v4.4.48",
  10235. "source": {
  10236. "type": "git",
  10237. "url": "https://github.com/symfony/validator.git",
  10238. "reference": "54781a4c41efbd283b779110bf8ae7f263737775"
  10239. },
  10240. "dist": {
  10241. "type": "zip",
  10242. "url": "https://api.github.com/repos/symfony/validator/zipball/54781a4c41efbd283b779110bf8ae7f263737775",
  10243. "reference": "54781a4c41efbd283b779110bf8ae7f263737775",
  10244. "shasum": ""
  10245. },
  10246. "require": {
  10247. "php": ">=7.1.3",
  10248. "symfony/polyfill-ctype": "~1.8",
  10249. "symfony/polyfill-mbstring": "~1.0",
  10250. "symfony/polyfill-php80": "^1.16",
  10251. "symfony/translation-contracts": "^1.1|^2"
  10252. },
  10253. "conflict": {
  10254. "doctrine/lexer": "<1.1",
  10255. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10256. "symfony/dependency-injection": "<3.4",
  10257. "symfony/http-kernel": "<4.4",
  10258. "symfony/intl": "<4.3",
  10259. "symfony/translation": ">=5.0",
  10260. "symfony/yaml": "<3.4"
  10261. },
  10262. "require-dev": {
  10263. "doctrine/annotations": "^1.10.4",
  10264. "doctrine/cache": "^1.0|^2.0",
  10265. "egulias/email-validator": "^2.1.10|^3",
  10266. "symfony/cache": "^3.4|^4.0|^5.0",
  10267. "symfony/config": "^3.4|^4.0|^5.0",
  10268. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  10269. "symfony/expression-language": "^3.4|^4.0|^5.0",
  10270. "symfony/http-client": "^4.3|^5.0",
  10271. "symfony/http-foundation": "^4.1|^5.0",
  10272. "symfony/http-kernel": "^4.4",
  10273. "symfony/intl": "^4.3|^5.0",
  10274. "symfony/mime": "^4.4|^5.0",
  10275. "symfony/property-access": "^3.4|^4.0|^5.0",
  10276. "symfony/property-info": "^3.4|^4.0|^5.0",
  10277. "symfony/translation": "^4.2",
  10278. "symfony/yaml": "^3.4|^4.0|^5.0"
  10279. },
  10280. "suggest": {
  10281. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10282. "doctrine/cache": "For using the default cached annotation reader.",
  10283. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10284. "psr/cache-implementation": "For using the mapping cache.",
  10285. "symfony/config": "",
  10286. "symfony/expression-language": "For using the Expression validator",
  10287. "symfony/http-foundation": "",
  10288. "symfony/intl": "",
  10289. "symfony/property-access": "For accessing properties within comparison constraints",
  10290. "symfony/property-info": "To automatically add NotNull and Type constraints",
  10291. "symfony/translation": "For translating validation errors.",
  10292. "symfony/yaml": ""
  10293. },
  10294. "type": "library",
  10295. "autoload": {
  10296. "psr-4": {
  10297. "Symfony\\Component\\Validator\\": ""
  10298. },
  10299. "exclude-from-classmap": [
  10300. "/Tests/"
  10301. ]
  10302. },
  10303. "notification-url": "https://packagist.org/downloads/",
  10304. "license": [
  10305. "MIT"
  10306. ],
  10307. "authors": [
  10308. {
  10309. "name": "Fabien Potencier",
  10310. "email": "fabien@symfony.com"
  10311. },
  10312. {
  10313. "name": "Symfony Community",
  10314. "homepage": "https://symfony.com/contributors"
  10315. }
  10316. ],
  10317. "description": "Provides tools to validate values",
  10318. "homepage": "https://symfony.com",
  10319. "support": {
  10320. "source": "https://github.com/symfony/validator/tree/v4.4.48"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://symfony.com/sponsor",
  10325. "type": "custom"
  10326. },
  10327. {
  10328. "url": "https://github.com/fabpot",
  10329. "type": "github"
  10330. },
  10331. {
  10332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10333. "type": "tidelift"
  10334. }
  10335. ],
  10336. "time": "2022-10-25T13:54:11+00:00"
  10337. },
  10338. {
  10339. "name": "symfony/var-dumper",
  10340. "version": "v5.4.43",
  10341. "source": {
  10342. "type": "git",
  10343. "url": "https://github.com/symfony/var-dumper.git",
  10344. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef"
  10345. },
  10346. "dist": {
  10347. "type": "zip",
  10348. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6be6a6a8af4818564e3726fc65cf936f34743cef",
  10349. "reference": "6be6a6a8af4818564e3726fc65cf936f34743cef",
  10350. "shasum": ""
  10351. },
  10352. "require": {
  10353. "php": ">=7.2.5",
  10354. "symfony/polyfill-mbstring": "~1.0",
  10355. "symfony/polyfill-php80": "^1.16"
  10356. },
  10357. "conflict": {
  10358. "symfony/console": "<4.4"
  10359. },
  10360. "require-dev": {
  10361. "ext-iconv": "*",
  10362. "symfony/console": "^4.4|^5.0|^6.0",
  10363. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  10364. "symfony/process": "^4.4|^5.0|^6.0",
  10365. "symfony/uid": "^5.1|^6.0",
  10366. "twig/twig": "^2.13|^3.0.4"
  10367. },
  10368. "suggest": {
  10369. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10370. "ext-intl": "To show region name in time zone dump",
  10371. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10372. },
  10373. "bin": [
  10374. "Resources/bin/var-dump-server"
  10375. ],
  10376. "type": "library",
  10377. "autoload": {
  10378. "files": [
  10379. "Resources/functions/dump.php"
  10380. ],
  10381. "psr-4": {
  10382. "Symfony\\Component\\VarDumper\\": ""
  10383. },
  10384. "exclude-from-classmap": [
  10385. "/Tests/"
  10386. ]
  10387. },
  10388. "notification-url": "https://packagist.org/downloads/",
  10389. "license": [
  10390. "MIT"
  10391. ],
  10392. "authors": [
  10393. {
  10394. "name": "Nicolas Grekas",
  10395. "email": "p@tchwork.com"
  10396. },
  10397. {
  10398. "name": "Symfony Community",
  10399. "homepage": "https://symfony.com/contributors"
  10400. }
  10401. ],
  10402. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10403. "homepage": "https://symfony.com",
  10404. "keywords": [
  10405. "debug",
  10406. "dump"
  10407. ],
  10408. "support": {
  10409. "source": "https://github.com/symfony/var-dumper/tree/v5.4.43"
  10410. },
  10411. "funding": [
  10412. {
  10413. "url": "https://symfony.com/sponsor",
  10414. "type": "custom"
  10415. },
  10416. {
  10417. "url": "https://github.com/fabpot",
  10418. "type": "github"
  10419. },
  10420. {
  10421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10422. "type": "tidelift"
  10423. }
  10424. ],
  10425. "time": "2024-08-30T16:01:46+00:00"
  10426. },
  10427. {
  10428. "name": "symfony/yaml",
  10429. "version": "v4.4.45",
  10430. "source": {
  10431. "type": "git",
  10432. "url": "https://github.com/symfony/yaml.git",
  10433. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d"
  10434. },
  10435. "dist": {
  10436. "type": "zip",
  10437. "url": "https://api.github.com/repos/symfony/yaml/zipball/aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10438. "reference": "aeccc4dc52a9e634f1d1eebeb21eacfdcff1053d",
  10439. "shasum": ""
  10440. },
  10441. "require": {
  10442. "php": ">=7.1.3",
  10443. "symfony/polyfill-ctype": "~1.8"
  10444. },
  10445. "conflict": {
  10446. "symfony/console": "<3.4"
  10447. },
  10448. "require-dev": {
  10449. "symfony/console": "^3.4|^4.0|^5.0"
  10450. },
  10451. "suggest": {
  10452. "symfony/console": "For validating YAML files using the lint command"
  10453. },
  10454. "type": "library",
  10455. "autoload": {
  10456. "psr-4": {
  10457. "Symfony\\Component\\Yaml\\": ""
  10458. },
  10459. "exclude-from-classmap": [
  10460. "/Tests/"
  10461. ]
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "MIT"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Fabien Potencier",
  10470. "email": "fabien@symfony.com"
  10471. },
  10472. {
  10473. "name": "Symfony Community",
  10474. "homepage": "https://symfony.com/contributors"
  10475. }
  10476. ],
  10477. "description": "Loads and dumps YAML files",
  10478. "homepage": "https://symfony.com",
  10479. "support": {
  10480. "source": "https://github.com/symfony/yaml/tree/v4.4.45"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://symfony.com/sponsor",
  10485. "type": "custom"
  10486. },
  10487. {
  10488. "url": "https://github.com/fabpot",
  10489. "type": "github"
  10490. },
  10491. {
  10492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10493. "type": "tidelift"
  10494. }
  10495. ],
  10496. "time": "2022-08-02T15:47:23+00:00"
  10497. },
  10498. {
  10499. "name": "twig/twig",
  10500. "version": "v2.15.6",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/twigphp/Twig.git",
  10504. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/twigphp/Twig/zipball/ad637405a828601a56f32ccab9a85541c4b66c9d",
  10509. "reference": "ad637405a828601a56f32ccab9a85541c4b66c9d",
  10510. "shasum": ""
  10511. },
  10512. "require": {
  10513. "php": ">=7.1.3",
  10514. "symfony/polyfill-ctype": "^1.8",
  10515. "symfony/polyfill-mbstring": "^1.3",
  10516. "symfony/polyfill-php72": "^1.8"
  10517. },
  10518. "require-dev": {
  10519. "psr/container": "^1.0",
  10520. "symfony/phpunit-bridge": "^5.4.9|^6.3"
  10521. },
  10522. "type": "library",
  10523. "extra": {
  10524. "branch-alias": {
  10525. "dev-master": "2.15-dev"
  10526. }
  10527. },
  10528. "autoload": {
  10529. "psr-0": {
  10530. "Twig_": "lib/"
  10531. },
  10532. "psr-4": {
  10533. "Twig\\": "src/"
  10534. }
  10535. },
  10536. "notification-url": "https://packagist.org/downloads/",
  10537. "license": [
  10538. "BSD-3-Clause"
  10539. ],
  10540. "authors": [
  10541. {
  10542. "name": "Fabien Potencier",
  10543. "email": "fabien@symfony.com",
  10544. "homepage": "http://fabien.potencier.org",
  10545. "role": "Lead Developer"
  10546. },
  10547. {
  10548. "name": "Twig Team",
  10549. "role": "Contributors"
  10550. },
  10551. {
  10552. "name": "Armin Ronacher",
  10553. "email": "armin.ronacher@active-4.com",
  10554. "role": "Project Founder"
  10555. }
  10556. ],
  10557. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10558. "homepage": "https://twig.symfony.com",
  10559. "keywords": [
  10560. "templating"
  10561. ],
  10562. "support": {
  10563. "issues": "https://github.com/twigphp/Twig/issues",
  10564. "source": "https://github.com/twigphp/Twig/tree/v2.15.6"
  10565. },
  10566. "funding": [
  10567. {
  10568. "url": "https://github.com/fabpot",
  10569. "type": "github"
  10570. },
  10571. {
  10572. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10573. "type": "tidelift"
  10574. }
  10575. ],
  10576. "time": "2023-11-21T17:34:48+00:00"
  10577. },
  10578. {
  10579. "name": "typo3/phar-stream-wrapper",
  10580. "version": "v3.1.7",
  10581. "source": {
  10582. "type": "git",
  10583. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10584. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c"
  10585. },
  10586. "dist": {
  10587. "type": "zip",
  10588. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10589. "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c",
  10590. "shasum": ""
  10591. },
  10592. "require": {
  10593. "ext-json": "*",
  10594. "php": "^7.0 || ^8.0"
  10595. },
  10596. "require-dev": {
  10597. "ext-xdebug": "*",
  10598. "phpspec/prophecy": "^1.10",
  10599. "symfony/phpunit-bridge": "^5.1"
  10600. },
  10601. "suggest": {
  10602. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10603. },
  10604. "type": "library",
  10605. "extra": {
  10606. "branch-alias": {
  10607. "dev-master": "v3.x-dev"
  10608. }
  10609. },
  10610. "autoload": {
  10611. "psr-4": {
  10612. "TYPO3\\PharStreamWrapper\\": "src/"
  10613. }
  10614. },
  10615. "notification-url": "https://packagist.org/downloads/",
  10616. "license": [
  10617. "MIT"
  10618. ],
  10619. "description": "Interceptors for PHP's native phar:// stream handling",
  10620. "homepage": "https://typo3.org/",
  10621. "keywords": [
  10622. "phar",
  10623. "php",
  10624. "security",
  10625. "stream-wrapper"
  10626. ],
  10627. "support": {
  10628. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10629. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7"
  10630. },
  10631. "time": "2021-09-20T19:19:13+00:00"
  10632. },
  10633. {
  10634. "name": "vlucas/phpdotenv",
  10635. "version": "v2.6.9",
  10636. "source": {
  10637. "type": "git",
  10638. "url": "https://github.com/vlucas/phpdotenv.git",
  10639. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10640. },
  10641. "dist": {
  10642. "type": "zip",
  10643. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10644. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10645. "shasum": ""
  10646. },
  10647. "require": {
  10648. "php": "^5.3.9 || ^7.0 || ^8.0",
  10649. "symfony/polyfill-ctype": "^1.17"
  10650. },
  10651. "require-dev": {
  10652. "ext-filter": "*",
  10653. "ext-pcre": "*",
  10654. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10655. },
  10656. "suggest": {
  10657. "ext-filter": "Required to use the boolean validator.",
  10658. "ext-pcre": "Required to use most of the library."
  10659. },
  10660. "type": "library",
  10661. "extra": {
  10662. "branch-alias": {
  10663. "dev-master": "2.6-dev"
  10664. }
  10665. },
  10666. "autoload": {
  10667. "psr-4": {
  10668. "Dotenv\\": "src/"
  10669. }
  10670. },
  10671. "notification-url": "https://packagist.org/downloads/",
  10672. "license": [
  10673. "BSD-3-Clause"
  10674. ],
  10675. "authors": [
  10676. {
  10677. "name": "Graham Campbell",
  10678. "email": "hello@gjcampbell.co.uk",
  10679. "homepage": "https://github.com/GrahamCampbell"
  10680. },
  10681. {
  10682. "name": "Vance Lucas",
  10683. "email": "vance@vancelucas.com",
  10684. "homepage": "https://github.com/vlucas"
  10685. }
  10686. ],
  10687. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10688. "keywords": [
  10689. "dotenv",
  10690. "env",
  10691. "environment"
  10692. ],
  10693. "support": {
  10694. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10695. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10696. },
  10697. "funding": [
  10698. {
  10699. "url": "https://github.com/GrahamCampbell",
  10700. "type": "github"
  10701. },
  10702. {
  10703. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10704. "type": "tidelift"
  10705. }
  10706. ],
  10707. "time": "2021-12-12T22:59:22+00:00"
  10708. },
  10709. {
  10710. "name": "webflo/drupal-finder",
  10711. "version": "1.2.2",
  10712. "source": {
  10713. "type": "git",
  10714. "url": "https://github.com/webflo/drupal-finder.git",
  10715. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  10716. },
  10717. "dist": {
  10718. "type": "zip",
  10719. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10720. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  10721. "shasum": ""
  10722. },
  10723. "require": {
  10724. "ext-json": "*"
  10725. },
  10726. "require-dev": {
  10727. "mikey179/vfsstream": "^1.6",
  10728. "phpunit/phpunit": "^4.8"
  10729. },
  10730. "type": "library",
  10731. "autoload": {
  10732. "classmap": [
  10733. "src/DrupalFinder.php"
  10734. ]
  10735. },
  10736. "notification-url": "https://packagist.org/downloads/",
  10737. "license": [
  10738. "GPL-2.0-or-later"
  10739. ],
  10740. "authors": [
  10741. {
  10742. "name": "Florian Weber",
  10743. "email": "florian@webflo.org"
  10744. }
  10745. ],
  10746. "description": "Helper class to locate a Drupal installation from a given path.",
  10747. "support": {
  10748. "issues": "https://github.com/webflo/drupal-finder/issues",
  10749. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  10750. },
  10751. "time": "2020-10-27T09:42:17+00:00"
  10752. },
  10753. {
  10754. "name": "webmozart/assert",
  10755. "version": "1.11.0",
  10756. "source": {
  10757. "type": "git",
  10758. "url": "https://github.com/webmozarts/assert.git",
  10759. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10760. },
  10761. "dist": {
  10762. "type": "zip",
  10763. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10764. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10765. "shasum": ""
  10766. },
  10767. "require": {
  10768. "ext-ctype": "*",
  10769. "php": "^7.2 || ^8.0"
  10770. },
  10771. "conflict": {
  10772. "phpstan/phpstan": "<0.12.20",
  10773. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10774. },
  10775. "require-dev": {
  10776. "phpunit/phpunit": "^8.5.13"
  10777. },
  10778. "type": "library",
  10779. "extra": {
  10780. "branch-alias": {
  10781. "dev-master": "1.10-dev"
  10782. }
  10783. },
  10784. "autoload": {
  10785. "psr-4": {
  10786. "Webmozart\\Assert\\": "src/"
  10787. }
  10788. },
  10789. "notification-url": "https://packagist.org/downloads/",
  10790. "license": [
  10791. "MIT"
  10792. ],
  10793. "authors": [
  10794. {
  10795. "name": "Bernhard Schussek",
  10796. "email": "bschussek@gmail.com"
  10797. }
  10798. ],
  10799. "description": "Assertions to validate method input/output with nice error messages.",
  10800. "keywords": [
  10801. "assert",
  10802. "check",
  10803. "validate"
  10804. ],
  10805. "support": {
  10806. "issues": "https://github.com/webmozarts/assert/issues",
  10807. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10808. },
  10809. "time": "2022-06-03T18:03:27+00:00"
  10810. },
  10811. {
  10812. "name": "webmozart/path-util",
  10813. "version": "2.3.0",
  10814. "source": {
  10815. "type": "git",
  10816. "url": "https://github.com/webmozart/path-util.git",
  10817. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10818. },
  10819. "dist": {
  10820. "type": "zip",
  10821. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10822. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10823. "shasum": ""
  10824. },
  10825. "require": {
  10826. "php": ">=5.3.3",
  10827. "webmozart/assert": "~1.0"
  10828. },
  10829. "require-dev": {
  10830. "phpunit/phpunit": "^4.6",
  10831. "sebastian/version": "^1.0.1"
  10832. },
  10833. "type": "library",
  10834. "extra": {
  10835. "branch-alias": {
  10836. "dev-master": "2.3-dev"
  10837. }
  10838. },
  10839. "autoload": {
  10840. "psr-4": {
  10841. "Webmozart\\PathUtil\\": "src/"
  10842. }
  10843. },
  10844. "notification-url": "https://packagist.org/downloads/",
  10845. "license": [
  10846. "MIT"
  10847. ],
  10848. "authors": [
  10849. {
  10850. "name": "Bernhard Schussek",
  10851. "email": "bschussek@gmail.com"
  10852. }
  10853. ],
  10854. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10855. "support": {
  10856. "issues": "https://github.com/webmozart/path-util/issues",
  10857. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10858. },
  10859. "abandoned": "symfony/filesystem",
  10860. "time": "2015-12-17T08:42:14+00:00"
  10861. }
  10862. ],
  10863. "packages-dev": [],
  10864. "aliases": [],
  10865. "minimum-stability": "dev",
  10866. "stability-flags": {
  10867. "drupal/better_messages": 15,
  10868. "drupal/bulkdelete": 20,
  10869. "drupal/domain": 15,
  10870. "drupal/filefield_sources": 15,
  10871. "drupal/filter_perms": 15,
  10872. "drupal/linkit": 10,
  10873. "drupal/maillog": 10,
  10874. "drupal/synonyms": 15
  10875. },
  10876. "prefer-stable": true,
  10877. "prefer-lowest": false,
  10878. "platform": {
  10879. "php": ">=5.6"
  10880. },
  10881. "platform-dev": [],
  10882. "plugin-api-version": "2.6.0"
  10883. }