composer.lock 235 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601
  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": "1707572c0f900c2df05fe3a3b81d0153",
  8. "packages": [
  9. {
  10. "name": "cakephp/chronos",
  11. "version": "3.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/cakephp/chronos.git",
  15. "reference": "e6e777b534244911566face8a5dbdbd7f7bda5a6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/cakephp/chronos/zipball/e6e777b534244911566face8a5dbdbd7f7bda5a6",
  20. "reference": "e6e777b534244911566face8a5dbdbd7f7bda5a6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=8.1",
  25. "psr/clock": "^1.0"
  26. },
  27. "provide": {
  28. "psr/clock-implementation": "1.0"
  29. },
  30. "require-dev": {
  31. "cakephp/cakephp-codesniffer": "^5.0",
  32. "phpunit/phpunit": "^10.5.58 || ^11.5.3 || ^12.1.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Cake\\Chronos\\": "src/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Brian Nesbitt",
  47. "email": "brian@nesbot.com",
  48. "homepage": "http://nesbot.com"
  49. },
  50. {
  51. "name": "The CakePHP Team",
  52. "homepage": "https://cakephp.org"
  53. }
  54. ],
  55. "description": "A simple API extension for DateTime.",
  56. "homepage": "https://cakephp.org",
  57. "keywords": [
  58. "date",
  59. "datetime",
  60. "time"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/cakephp/chronos/issues",
  64. "source": "https://github.com/cakephp/chronos"
  65. },
  66. "time": "2026-04-10T02:50:39+00:00"
  67. },
  68. {
  69. "name": "cakephp/core",
  70. "version": "5.3.4",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/cakephp/core.git",
  74. "reference": "eb012517900ed288f580aa3487e9a09f28ea85f9"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/cakephp/core/zipball/eb012517900ed288f580aa3487e9a09f28ea85f9",
  79. "reference": "eb012517900ed288f580aa3487e9a09f28ea85f9",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "cakephp/utility": "^5.3.0",
  84. "league/container": "^5.1",
  85. "php": ">=8.2",
  86. "psr/container": "^1.1 || ^2.0"
  87. },
  88. "provide": {
  89. "psr/container-implementation": "^2.0"
  90. },
  91. "suggest": {
  92. "cakephp/cache": "To use Configure::store() and restore().",
  93. "cakephp/event": "To use PluginApplicationInterface or plugin applications.",
  94. "league/container": "To use Container and ServiceProvider classes"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-5.next": "5.4.x-dev"
  100. }
  101. },
  102. "autoload": {
  103. "files": [
  104. "functions.php"
  105. ],
  106. "psr-4": {
  107. "Cake\\Core\\": "."
  108. }
  109. },
  110. "notification-url": "https://packagist.org/downloads/",
  111. "license": [
  112. "MIT"
  113. ],
  114. "authors": [
  115. {
  116. "name": "CakePHP Community",
  117. "homepage": "https://github.com/cakephp/core/graphs/contributors"
  118. }
  119. ],
  120. "description": "CakePHP Framework Core classes",
  121. "homepage": "https://cakephp.org",
  122. "keywords": [
  123. "cakephp",
  124. "core",
  125. "framework"
  126. ],
  127. "support": {
  128. "forum": "https://stackoverflow.com/tags/cakephp",
  129. "irc": "irc://irc.freenode.org/cakephp",
  130. "issues": "https://github.com/cakephp/cakephp/issues",
  131. "source": "https://github.com/cakephp/core"
  132. },
  133. "time": "2026-03-31T06:25:23+00:00"
  134. },
  135. {
  136. "name": "cakephp/database",
  137. "version": "5.3.4",
  138. "source": {
  139. "type": "git",
  140. "url": "https://github.com/cakephp/database.git",
  141. "reference": "cf94dcb57c54a1a308fd866b038cd6995910e36e"
  142. },
  143. "dist": {
  144. "type": "zip",
  145. "url": "https://api.github.com/repos/cakephp/database/zipball/cf94dcb57c54a1a308fd866b038cd6995910e36e",
  146. "reference": "cf94dcb57c54a1a308fd866b038cd6995910e36e",
  147. "shasum": ""
  148. },
  149. "require": {
  150. "cakephp/chronos": "^3.3",
  151. "cakephp/core": "^5.3.0",
  152. "cakephp/datasource": "^5.3.0",
  153. "php": ">=8.2",
  154. "psr/log": "^3.0"
  155. },
  156. "require-dev": {
  157. "cakephp/i18n": "^5.3.0",
  158. "cakephp/log": "^5.3.0"
  159. },
  160. "suggest": {
  161. "cakephp/i18n": "If you are using locale-aware datetime formats.",
  162. "cakephp/log": "If you want to use query logging without providing a logger yourself."
  163. },
  164. "type": "library",
  165. "extra": {
  166. "branch-alias": {
  167. "dev-5.next": "5.4.x-dev"
  168. }
  169. },
  170. "autoload": {
  171. "psr-4": {
  172. "Cake\\Database\\": "."
  173. }
  174. },
  175. "notification-url": "https://packagist.org/downloads/",
  176. "license": [
  177. "MIT"
  178. ],
  179. "authors": [
  180. {
  181. "name": "CakePHP Community",
  182. "homepage": "https://github.com/cakephp/database/graphs/contributors"
  183. }
  184. ],
  185. "description": "Flexible and powerful Database abstraction library with a familiar PDO-like API",
  186. "homepage": "https://cakephp.org",
  187. "keywords": [
  188. "abstraction",
  189. "cakephp",
  190. "database",
  191. "database abstraction",
  192. "pdo"
  193. ],
  194. "support": {
  195. "forum": "https://stackoverflow.com/tags/cakephp",
  196. "irc": "irc://irc.freenode.org/cakephp",
  197. "issues": "https://github.com/cakephp/cakephp/issues",
  198. "source": "https://github.com/cakephp/database"
  199. },
  200. "time": "2026-03-31T06:25:23+00:00"
  201. },
  202. {
  203. "name": "cakephp/datasource",
  204. "version": "5.3.4",
  205. "source": {
  206. "type": "git",
  207. "url": "https://github.com/cakephp/datasource.git",
  208. "reference": "512464eb27b19316b515ec338089b83822c9ab5a"
  209. },
  210. "dist": {
  211. "type": "zip",
  212. "url": "https://api.github.com/repos/cakephp/datasource/zipball/512464eb27b19316b515ec338089b83822c9ab5a",
  213. "reference": "512464eb27b19316b515ec338089b83822c9ab5a",
  214. "shasum": ""
  215. },
  216. "require": {
  217. "cakephp/core": "^5.3.0",
  218. "php": ">=8.2",
  219. "psr/simple-cache": "^2.0 || ^3.0"
  220. },
  221. "require-dev": {
  222. "cakephp/cache": "^5.3.0",
  223. "cakephp/collection": "^5.3.0",
  224. "cakephp/utility": "^5.3.0"
  225. },
  226. "suggest": {
  227. "cakephp/cache": "If you decide to use Query caching.",
  228. "cakephp/collection": "If you decide to use ResultSetInterface.",
  229. "cakephp/utility": "If you decide to use EntityTrait."
  230. },
  231. "type": "library",
  232. "extra": {
  233. "branch-alias": {
  234. "dev-5.next": "5.4.x-dev"
  235. }
  236. },
  237. "autoload": {
  238. "psr-4": {
  239. "Cake\\Datasource\\": "."
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "authors": [
  247. {
  248. "name": "CakePHP Community",
  249. "homepage": "https://github.com/cakephp/datasource/graphs/contributors"
  250. }
  251. ],
  252. "description": "Provides connection managing and traits for Entities and Queries that can be reused for different datastores",
  253. "homepage": "https://cakephp.org",
  254. "keywords": [
  255. "cakephp",
  256. "connection management",
  257. "datasource",
  258. "entity",
  259. "query"
  260. ],
  261. "support": {
  262. "forum": "https://stackoverflow.com/tags/cakephp",
  263. "irc": "irc://irc.freenode.org/cakephp",
  264. "issues": "https://github.com/cakephp/cakephp/issues",
  265. "source": "https://github.com/cakephp/datasource"
  266. },
  267. "time": "2026-04-04T08:08:42+00:00"
  268. },
  269. {
  270. "name": "cakephp/utility",
  271. "version": "5.3.4",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/cakephp/utility.git",
  275. "reference": "4ac9826fe5faa1505ec5aa3c171d6b58b6ab4e99"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/cakephp/utility/zipball/4ac9826fe5faa1505ec5aa3c171d6b58b6ab4e99",
  280. "reference": "4ac9826fe5faa1505ec5aa3c171d6b58b6ab4e99",
  281. "shasum": ""
  282. },
  283. "require": {
  284. "cakephp/core": "^5.3.0",
  285. "php": ">=8.2"
  286. },
  287. "suggest": {
  288. "ext-intl": "To use Text::transliterate() or Text::slug()",
  289. "lib-ICU": "To use Text::transliterate() or Text::slug()"
  290. },
  291. "type": "library",
  292. "extra": {
  293. "branch-alias": {
  294. "dev-5.next": "5.4.x-dev"
  295. }
  296. },
  297. "autoload": {
  298. "files": [
  299. "bootstrap.php"
  300. ],
  301. "psr-4": {
  302. "Cake\\Utility\\": "."
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "CakePHP Community",
  312. "homepage": "https://github.com/cakephp/utility/graphs/contributors"
  313. }
  314. ],
  315. "description": "CakePHP Utility classes such as Inflector, String, Hash, and Security",
  316. "homepage": "https://cakephp.org",
  317. "keywords": [
  318. "cakephp",
  319. "hash",
  320. "inflector",
  321. "security",
  322. "string",
  323. "utility"
  324. ],
  325. "support": {
  326. "forum": "https://stackoverflow.com/tags/cakephp",
  327. "irc": "irc://irc.freenode.org/cakephp",
  328. "issues": "https://github.com/cakephp/cakephp/issues",
  329. "source": "https://github.com/cakephp/utility"
  330. },
  331. "time": "2026-03-09T09:38:36+00:00"
  332. },
  333. {
  334. "name": "doctrine/dbal",
  335. "version": "4.4.3",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/doctrine/dbal.git",
  339. "reference": "61e730f1658814821a85f2402c945f3883407dec"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61e730f1658814821a85f2402c945f3883407dec",
  344. "reference": "61e730f1658814821a85f2402c945f3883407dec",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "doctrine/deprecations": "^1.1.5",
  349. "php": "^8.2",
  350. "psr/cache": "^1|^2|^3",
  351. "psr/log": "^1|^2|^3"
  352. },
  353. "require-dev": {
  354. "doctrine/coding-standard": "14.0.0",
  355. "fig/log-test": "^1",
  356. "jetbrains/phpstorm-stubs": "2023.2",
  357. "phpstan/phpstan": "2.1.30",
  358. "phpstan/phpstan-phpunit": "2.0.7",
  359. "phpstan/phpstan-strict-rules": "^2",
  360. "phpunit/phpunit": "11.5.50",
  361. "slevomat/coding-standard": "8.27.1",
  362. "squizlabs/php_codesniffer": "4.0.1",
  363. "symfony/cache": "^6.3.8|^7.0|^8.0",
  364. "symfony/console": "^5.4|^6.3|^7.0|^8.0"
  365. },
  366. "suggest": {
  367. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  368. },
  369. "type": "library",
  370. "autoload": {
  371. "psr-4": {
  372. "Doctrine\\DBAL\\": "src"
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "MIT"
  378. ],
  379. "authors": [
  380. {
  381. "name": "Guilherme Blanco",
  382. "email": "guilhermeblanco@gmail.com"
  383. },
  384. {
  385. "name": "Roman Borschel",
  386. "email": "roman@code-factory.org"
  387. },
  388. {
  389. "name": "Benjamin Eberlei",
  390. "email": "kontakt@beberlei.de"
  391. },
  392. {
  393. "name": "Jonathan Wage",
  394. "email": "jonwage@gmail.com"
  395. }
  396. ],
  397. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  398. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  399. "keywords": [
  400. "abstraction",
  401. "database",
  402. "db2",
  403. "dbal",
  404. "mariadb",
  405. "mssql",
  406. "mysql",
  407. "oci8",
  408. "oracle",
  409. "pdo",
  410. "pgsql",
  411. "postgresql",
  412. "queryobject",
  413. "sasql",
  414. "sql",
  415. "sqlite",
  416. "sqlserver",
  417. "sqlsrv"
  418. ],
  419. "support": {
  420. "issues": "https://github.com/doctrine/dbal/issues",
  421. "source": "https://github.com/doctrine/dbal/tree/4.4.3"
  422. },
  423. "funding": [
  424. {
  425. "url": "https://www.doctrine-project.org/sponsorship.html",
  426. "type": "custom"
  427. },
  428. {
  429. "url": "https://www.patreon.com/phpdoctrine",
  430. "type": "patreon"
  431. },
  432. {
  433. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  434. "type": "tidelift"
  435. }
  436. ],
  437. "time": "2026-03-20T08:52:12+00:00"
  438. },
  439. {
  440. "name": "doctrine/deprecations",
  441. "version": "1.1.6",
  442. "source": {
  443. "type": "git",
  444. "url": "https://github.com/doctrine/deprecations.git",
  445. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  446. },
  447. "dist": {
  448. "type": "zip",
  449. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  450. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  451. "shasum": ""
  452. },
  453. "require": {
  454. "php": "^7.1 || ^8.0"
  455. },
  456. "conflict": {
  457. "phpunit/phpunit": "<=7.5 || >=14"
  458. },
  459. "require-dev": {
  460. "doctrine/coding-standard": "^9 || ^12 || ^14",
  461. "phpstan/phpstan": "1.4.10 || 2.1.30",
  462. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  463. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  464. "psr/log": "^1 || ^2 || ^3"
  465. },
  466. "suggest": {
  467. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "Doctrine\\Deprecations\\": "src"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "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.",
  480. "homepage": "https://www.doctrine-project.org/",
  481. "support": {
  482. "issues": "https://github.com/doctrine/deprecations/issues",
  483. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  484. },
  485. "time": "2026-02-07T07:09:04+00:00"
  486. },
  487. {
  488. "name": "fig/http-message-util",
  489. "version": "1.1.5",
  490. "source": {
  491. "type": "git",
  492. "url": "https://github.com/php-fig/http-message-util.git",
  493. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  494. },
  495. "dist": {
  496. "type": "zip",
  497. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  498. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  499. "shasum": ""
  500. },
  501. "require": {
  502. "php": "^5.3 || ^7.0 || ^8.0"
  503. },
  504. "suggest": {
  505. "psr/http-message": "The package containing the PSR-7 interfaces"
  506. },
  507. "type": "library",
  508. "extra": {
  509. "branch-alias": {
  510. "dev-master": "1.1.x-dev"
  511. }
  512. },
  513. "autoload": {
  514. "psr-4": {
  515. "Fig\\Http\\Message\\": "src/"
  516. }
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "MIT"
  521. ],
  522. "authors": [
  523. {
  524. "name": "PHP-FIG",
  525. "homepage": "https://www.php-fig.org/"
  526. }
  527. ],
  528. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  529. "keywords": [
  530. "http",
  531. "http-message",
  532. "psr",
  533. "psr-7",
  534. "request",
  535. "response"
  536. ],
  537. "support": {
  538. "issues": "https://github.com/php-fig/http-message-util/issues",
  539. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  540. },
  541. "time": "2020-11-24T22:02:12+00:00"
  542. },
  543. {
  544. "name": "guzzlehttp/psr7",
  545. "version": "2.9.0",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/guzzle/psr7.git",
  549. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884",
  554. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884",
  555. "shasum": ""
  556. },
  557. "require": {
  558. "php": "^7.2.5 || ^8.0",
  559. "psr/http-factory": "^1.0",
  560. "psr/http-message": "^1.1 || ^2.0",
  561. "ralouphie/getallheaders": "^3.0"
  562. },
  563. "provide": {
  564. "psr/http-factory-implementation": "1.0",
  565. "psr/http-message-implementation": "1.0"
  566. },
  567. "require-dev": {
  568. "bamarni/composer-bin-plugin": "^1.8.2",
  569. "http-interop/http-factory-tests": "0.9.0",
  570. "jshttp/mime-db": "1.54.0.1",
  571. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  572. },
  573. "suggest": {
  574. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  575. },
  576. "type": "library",
  577. "extra": {
  578. "bamarni-bin": {
  579. "bin-links": true,
  580. "forward-command": false
  581. }
  582. },
  583. "autoload": {
  584. "psr-4": {
  585. "GuzzleHttp\\Psr7\\": "src/"
  586. }
  587. },
  588. "notification-url": "https://packagist.org/downloads/",
  589. "license": [
  590. "MIT"
  591. ],
  592. "authors": [
  593. {
  594. "name": "Graham Campbell",
  595. "email": "hello@gjcampbell.co.uk",
  596. "homepage": "https://github.com/GrahamCampbell"
  597. },
  598. {
  599. "name": "Michael Dowling",
  600. "email": "mtdowling@gmail.com",
  601. "homepage": "https://github.com/mtdowling"
  602. },
  603. {
  604. "name": "George Mponos",
  605. "email": "gmponos@gmail.com",
  606. "homepage": "https://github.com/gmponos"
  607. },
  608. {
  609. "name": "Tobias Nyholm",
  610. "email": "tobias.nyholm@gmail.com",
  611. "homepage": "https://github.com/Nyholm"
  612. },
  613. {
  614. "name": "Márk Sági-Kazár",
  615. "email": "mark.sagikazar@gmail.com",
  616. "homepage": "https://github.com/sagikazarmark"
  617. },
  618. {
  619. "name": "Tobias Schultze",
  620. "email": "webmaster@tubo-world.de",
  621. "homepage": "https://github.com/Tobion"
  622. },
  623. {
  624. "name": "Márk Sági-Kazár",
  625. "email": "mark.sagikazar@gmail.com",
  626. "homepage": "https://sagikazarmark.hu"
  627. }
  628. ],
  629. "description": "PSR-7 message implementation that also provides common utility methods",
  630. "keywords": [
  631. "http",
  632. "message",
  633. "psr-7",
  634. "request",
  635. "response",
  636. "stream",
  637. "uri",
  638. "url"
  639. ],
  640. "support": {
  641. "issues": "https://github.com/guzzle/psr7/issues",
  642. "source": "https://github.com/guzzle/psr7/tree/2.9.0"
  643. },
  644. "funding": [
  645. {
  646. "url": "https://github.com/GrahamCampbell",
  647. "type": "github"
  648. },
  649. {
  650. "url": "https://github.com/Nyholm",
  651. "type": "github"
  652. },
  653. {
  654. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  655. "type": "tidelift"
  656. }
  657. ],
  658. "time": "2026-03-10T16:41:02+00:00"
  659. },
  660. {
  661. "name": "laravel/serializable-closure",
  662. "version": "v2.0.12",
  663. "source": {
  664. "type": "git",
  665. "url": "https://github.com/laravel/serializable-closure.git",
  666. "reference": "a6abb4e54f6fcd3138120b9ad497f0bd146f9919"
  667. },
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/a6abb4e54f6fcd3138120b9ad497f0bd146f9919",
  671. "reference": "a6abb4e54f6fcd3138120b9ad497f0bd146f9919",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "php": "^8.1"
  676. },
  677. "require-dev": {
  678. "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
  679. "nesbot/carbon": "^2.67|^3.0",
  680. "pestphp/pest": "^2.36|^3.0|^4.0",
  681. "phpstan/phpstan": "^2.0",
  682. "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-master": "2.x-dev"
  688. }
  689. },
  690. "autoload": {
  691. "psr-4": {
  692. "Laravel\\SerializableClosure\\": "src/"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "Taylor Otwell",
  702. "email": "taylor@laravel.com"
  703. },
  704. {
  705. "name": "Nuno Maduro",
  706. "email": "nuno@laravel.com"
  707. }
  708. ],
  709. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  710. "keywords": [
  711. "closure",
  712. "laravel",
  713. "serializable"
  714. ],
  715. "support": {
  716. "issues": "https://github.com/laravel/serializable-closure/issues",
  717. "source": "https://github.com/laravel/serializable-closure"
  718. },
  719. "time": "2026-04-14T13:33:34+00:00"
  720. },
  721. {
  722. "name": "league/container",
  723. "version": "5.2.0",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/thephpleague/container.git",
  727. "reference": "58accbc032f0090a9bd08326f93062c5a658b2c5"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/thephpleague/container/zipball/58accbc032f0090a9bd08326f93062c5a658b2c5",
  732. "reference": "58accbc032f0090a9bd08326f93062c5a658b2c5",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "php": "^8.1",
  737. "psr/container": "^2.0.2",
  738. "psr/event-dispatcher": "^1.0"
  739. },
  740. "provide": {
  741. "psr/container-implementation": "^1.0"
  742. },
  743. "replace": {
  744. "orno/di": "~2.0"
  745. },
  746. "require-dev": {
  747. "nette/php-generator": "^4.1",
  748. "nikic/php-parser": "^5.0",
  749. "phpstan/phpstan": "^2.1.11",
  750. "phpunit/phpunit": "^10.5.45|^11.5.15|^12.0",
  751. "roave/security-advisories": "dev-latest",
  752. "scrutinizer/ocular": "^1.9",
  753. "squizlabs/php_codesniffer": "^3.9"
  754. },
  755. "type": "library",
  756. "extra": {
  757. "branch-alias": {
  758. "dev-1.x": "1.x-dev",
  759. "dev-2.x": "2.x-dev",
  760. "dev-3.x": "3.x-dev",
  761. "dev-4.x": "4.x-dev",
  762. "dev-5.x": "5.x-dev",
  763. "dev-master": "5.x-dev"
  764. }
  765. },
  766. "autoload": {
  767. "psr-4": {
  768. "League\\Container\\": "src"
  769. }
  770. },
  771. "notification-url": "https://packagist.org/downloads/",
  772. "license": [
  773. "MIT"
  774. ],
  775. "authors": [
  776. {
  777. "name": "Phil Bennett",
  778. "email": "mail@philbennett.co.uk",
  779. "role": "Developer"
  780. }
  781. ],
  782. "description": "A fast and intuitive dependency injection container.",
  783. "homepage": "https://github.com/thephpleague/container",
  784. "keywords": [
  785. "container",
  786. "dependency",
  787. "di",
  788. "injection",
  789. "league",
  790. "provider",
  791. "service"
  792. ],
  793. "support": {
  794. "issues": "https://github.com/thephpleague/container/issues",
  795. "source": "https://github.com/thephpleague/container/tree/5.2.0"
  796. },
  797. "funding": [
  798. {
  799. "url": "https://github.com/philipobenito",
  800. "type": "github"
  801. }
  802. ],
  803. "time": "2026-03-19T18:52:39+00:00"
  804. },
  805. {
  806. "name": "monolog/monolog",
  807. "version": "3.10.0",
  808. "source": {
  809. "type": "git",
  810. "url": "https://github.com/Seldaek/monolog.git",
  811. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  812. },
  813. "dist": {
  814. "type": "zip",
  815. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  816. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  817. "shasum": ""
  818. },
  819. "require": {
  820. "php": ">=8.1",
  821. "psr/log": "^2.0 || ^3.0"
  822. },
  823. "provide": {
  824. "psr/log-implementation": "3.0.0"
  825. },
  826. "require-dev": {
  827. "aws/aws-sdk-php": "^3.0",
  828. "doctrine/couchdb": "~1.0@dev",
  829. "elasticsearch/elasticsearch": "^7 || ^8",
  830. "ext-json": "*",
  831. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  832. "guzzlehttp/guzzle": "^7.4.5",
  833. "guzzlehttp/psr7": "^2.2",
  834. "mongodb/mongodb": "^1.8 || ^2.0",
  835. "php-amqplib/php-amqplib": "~2.4 || ^3",
  836. "php-console/php-console": "^3.1.8",
  837. "phpstan/phpstan": "^2",
  838. "phpstan/phpstan-deprecation-rules": "^2",
  839. "phpstan/phpstan-strict-rules": "^2",
  840. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  841. "predis/predis": "^1.1 || ^2",
  842. "rollbar/rollbar": "^4.0",
  843. "ruflin/elastica": "^7 || ^8",
  844. "symfony/mailer": "^5.4 || ^6",
  845. "symfony/mime": "^5.4 || ^6"
  846. },
  847. "suggest": {
  848. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  849. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  850. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  851. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  852. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  853. "ext-mbstring": "Allow to work properly with unicode symbols",
  854. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  855. "ext-openssl": "Required to send log messages using SSL",
  856. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  857. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  858. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  859. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  860. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  861. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-main": "3.x-dev"
  867. }
  868. },
  869. "autoload": {
  870. "psr-4": {
  871. "Monolog\\": "src/Monolog"
  872. }
  873. },
  874. "notification-url": "https://packagist.org/downloads/",
  875. "license": [
  876. "MIT"
  877. ],
  878. "authors": [
  879. {
  880. "name": "Jordi Boggiano",
  881. "email": "j.boggiano@seld.be",
  882. "homepage": "https://seld.be"
  883. }
  884. ],
  885. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  886. "homepage": "https://github.com/Seldaek/monolog",
  887. "keywords": [
  888. "log",
  889. "logging",
  890. "psr-3"
  891. ],
  892. "support": {
  893. "issues": "https://github.com/Seldaek/monolog/issues",
  894. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  895. },
  896. "funding": [
  897. {
  898. "url": "https://github.com/Seldaek",
  899. "type": "github"
  900. },
  901. {
  902. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  903. "type": "tidelift"
  904. }
  905. ],
  906. "time": "2026-01-02T08:56:05+00:00"
  907. },
  908. {
  909. "name": "nikic/fast-route",
  910. "version": "v1.3.0",
  911. "source": {
  912. "type": "git",
  913. "url": "https://github.com/nikic/FastRoute.git",
  914. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  915. },
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  919. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "php": ">=5.4.0"
  924. },
  925. "require-dev": {
  926. "phpunit/phpunit": "^4.8.35|~5.7"
  927. },
  928. "type": "library",
  929. "autoload": {
  930. "files": [
  931. "src/functions.php"
  932. ],
  933. "psr-4": {
  934. "FastRoute\\": "src/"
  935. }
  936. },
  937. "notification-url": "https://packagist.org/downloads/",
  938. "license": [
  939. "BSD-3-Clause"
  940. ],
  941. "authors": [
  942. {
  943. "name": "Nikita Popov",
  944. "email": "nikic@php.net"
  945. }
  946. ],
  947. "description": "Fast request router for PHP",
  948. "keywords": [
  949. "router",
  950. "routing"
  951. ],
  952. "support": {
  953. "issues": "https://github.com/nikic/FastRoute/issues",
  954. "source": "https://github.com/nikic/FastRoute/tree/master"
  955. },
  956. "time": "2018-02-13T20:26:39+00:00"
  957. },
  958. {
  959. "name": "php-di/invoker",
  960. "version": "2.3.7",
  961. "source": {
  962. "type": "git",
  963. "url": "https://github.com/PHP-DI/Invoker.git",
  964. "reference": "3c1ddfdef181431fbc4be83378f6d036d59e81e1"
  965. },
  966. "dist": {
  967. "type": "zip",
  968. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/3c1ddfdef181431fbc4be83378f6d036d59e81e1",
  969. "reference": "3c1ddfdef181431fbc4be83378f6d036d59e81e1",
  970. "shasum": ""
  971. },
  972. "require": {
  973. "php": ">=7.3",
  974. "psr/container": "^1.0|^2.0"
  975. },
  976. "require-dev": {
  977. "athletic/athletic": "~0.1.8",
  978. "mnapoli/hard-mode": "~0.3.0",
  979. "phpunit/phpunit": "^9.0 || ^10 || ^11 || ^12"
  980. },
  981. "type": "library",
  982. "autoload": {
  983. "psr-4": {
  984. "Invoker\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "description": "Generic and extensible callable invoker",
  992. "homepage": "https://github.com/PHP-DI/Invoker",
  993. "keywords": [
  994. "callable",
  995. "dependency",
  996. "dependency-injection",
  997. "injection",
  998. "invoke",
  999. "invoker"
  1000. ],
  1001. "support": {
  1002. "issues": "https://github.com/PHP-DI/Invoker/issues",
  1003. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.7"
  1004. },
  1005. "funding": [
  1006. {
  1007. "url": "https://github.com/mnapoli",
  1008. "type": "github"
  1009. }
  1010. ],
  1011. "time": "2025-08-30T10:22:22+00:00"
  1012. },
  1013. {
  1014. "name": "php-di/php-di",
  1015. "version": "7.1.1",
  1016. "source": {
  1017. "type": "git",
  1018. "url": "https://github.com/PHP-DI/PHP-DI.git",
  1019. "reference": "f88054cc052e40dbe7b383c8817c19442d480352"
  1020. },
  1021. "dist": {
  1022. "type": "zip",
  1023. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/f88054cc052e40dbe7b383c8817c19442d480352",
  1024. "reference": "f88054cc052e40dbe7b383c8817c19442d480352",
  1025. "shasum": ""
  1026. },
  1027. "require": {
  1028. "laravel/serializable-closure": "^1.0 || ^2.0",
  1029. "php": ">=8.0",
  1030. "php-di/invoker": "^2.0",
  1031. "psr/container": "^1.1 || ^2.0"
  1032. },
  1033. "provide": {
  1034. "psr/container-implementation": "^1.0"
  1035. },
  1036. "require-dev": {
  1037. "friendsofphp/php-cs-fixer": "^3",
  1038. "friendsofphp/proxy-manager-lts": "^1",
  1039. "mnapoli/phpunit-easymock": "^1.3",
  1040. "phpunit/phpunit": "^9.6 || ^10 || ^11",
  1041. "vimeo/psalm": "^5|^6"
  1042. },
  1043. "suggest": {
  1044. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  1045. },
  1046. "type": "library",
  1047. "autoload": {
  1048. "files": [
  1049. "src/functions.php"
  1050. ],
  1051. "psr-4": {
  1052. "DI\\": "src/"
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "description": "The dependency injection container for humans",
  1060. "homepage": "https://php-di.org/",
  1061. "keywords": [
  1062. "PSR-11",
  1063. "container",
  1064. "container-interop",
  1065. "dependency injection",
  1066. "di",
  1067. "ioc",
  1068. "psr11"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  1072. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.1.1"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://github.com/mnapoli",
  1077. "type": "github"
  1078. },
  1079. {
  1080. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  1081. "type": "tidelift"
  1082. }
  1083. ],
  1084. "time": "2025-08-16T11:10:48+00:00"
  1085. },
  1086. {
  1087. "name": "psr/cache",
  1088. "version": "3.0.0",
  1089. "source": {
  1090. "type": "git",
  1091. "url": "https://github.com/php-fig/cache.git",
  1092. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1093. },
  1094. "dist": {
  1095. "type": "zip",
  1096. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1097. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1098. "shasum": ""
  1099. },
  1100. "require": {
  1101. "php": ">=8.0.0"
  1102. },
  1103. "type": "library",
  1104. "extra": {
  1105. "branch-alias": {
  1106. "dev-master": "1.0.x-dev"
  1107. }
  1108. },
  1109. "autoload": {
  1110. "psr-4": {
  1111. "Psr\\Cache\\": "src/"
  1112. }
  1113. },
  1114. "notification-url": "https://packagist.org/downloads/",
  1115. "license": [
  1116. "MIT"
  1117. ],
  1118. "authors": [
  1119. {
  1120. "name": "PHP-FIG",
  1121. "homepage": "https://www.php-fig.org/"
  1122. }
  1123. ],
  1124. "description": "Common interface for caching libraries",
  1125. "keywords": [
  1126. "cache",
  1127. "psr",
  1128. "psr-6"
  1129. ],
  1130. "support": {
  1131. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1132. },
  1133. "time": "2021-02-03T23:26:27+00:00"
  1134. },
  1135. {
  1136. "name": "psr/clock",
  1137. "version": "1.0.0",
  1138. "source": {
  1139. "type": "git",
  1140. "url": "https://github.com/php-fig/clock.git",
  1141. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1142. },
  1143. "dist": {
  1144. "type": "zip",
  1145. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1146. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1147. "shasum": ""
  1148. },
  1149. "require": {
  1150. "php": "^7.0 || ^8.0"
  1151. },
  1152. "type": "library",
  1153. "autoload": {
  1154. "psr-4": {
  1155. "Psr\\Clock\\": "src/"
  1156. }
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "MIT"
  1161. ],
  1162. "authors": [
  1163. {
  1164. "name": "PHP-FIG",
  1165. "homepage": "https://www.php-fig.org/"
  1166. }
  1167. ],
  1168. "description": "Common interface for reading the clock.",
  1169. "homepage": "https://github.com/php-fig/clock",
  1170. "keywords": [
  1171. "clock",
  1172. "now",
  1173. "psr",
  1174. "psr-20",
  1175. "time"
  1176. ],
  1177. "support": {
  1178. "issues": "https://github.com/php-fig/clock/issues",
  1179. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1180. },
  1181. "time": "2022-11-25T14:36:26+00:00"
  1182. },
  1183. {
  1184. "name": "psr/container",
  1185. "version": "2.0.2",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/php-fig/container.git",
  1189. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1194. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1195. "shasum": ""
  1196. },
  1197. "require": {
  1198. "php": ">=7.4.0"
  1199. },
  1200. "type": "library",
  1201. "extra": {
  1202. "branch-alias": {
  1203. "dev-master": "2.0.x-dev"
  1204. }
  1205. },
  1206. "autoload": {
  1207. "psr-4": {
  1208. "Psr\\Container\\": "src/"
  1209. }
  1210. },
  1211. "notification-url": "https://packagist.org/downloads/",
  1212. "license": [
  1213. "MIT"
  1214. ],
  1215. "authors": [
  1216. {
  1217. "name": "PHP-FIG",
  1218. "homepage": "https://www.php-fig.org/"
  1219. }
  1220. ],
  1221. "description": "Common Container Interface (PHP FIG PSR-11)",
  1222. "homepage": "https://github.com/php-fig/container",
  1223. "keywords": [
  1224. "PSR-11",
  1225. "container",
  1226. "container-interface",
  1227. "container-interop",
  1228. "psr"
  1229. ],
  1230. "support": {
  1231. "issues": "https://github.com/php-fig/container/issues",
  1232. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1233. },
  1234. "time": "2021-11-05T16:47:00+00:00"
  1235. },
  1236. {
  1237. "name": "psr/event-dispatcher",
  1238. "version": "1.0.0",
  1239. "source": {
  1240. "type": "git",
  1241. "url": "https://github.com/php-fig/event-dispatcher.git",
  1242. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1243. },
  1244. "dist": {
  1245. "type": "zip",
  1246. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1247. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1248. "shasum": ""
  1249. },
  1250. "require": {
  1251. "php": ">=7.2.0"
  1252. },
  1253. "type": "library",
  1254. "extra": {
  1255. "branch-alias": {
  1256. "dev-master": "1.0.x-dev"
  1257. }
  1258. },
  1259. "autoload": {
  1260. "psr-4": {
  1261. "Psr\\EventDispatcher\\": "src/"
  1262. }
  1263. },
  1264. "notification-url": "https://packagist.org/downloads/",
  1265. "license": [
  1266. "MIT"
  1267. ],
  1268. "authors": [
  1269. {
  1270. "name": "PHP-FIG",
  1271. "homepage": "http://www.php-fig.org/"
  1272. }
  1273. ],
  1274. "description": "Standard interfaces for event handling.",
  1275. "keywords": [
  1276. "events",
  1277. "psr",
  1278. "psr-14"
  1279. ],
  1280. "support": {
  1281. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1282. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1283. },
  1284. "time": "2019-01-08T18:20:26+00:00"
  1285. },
  1286. {
  1287. "name": "psr/http-factory",
  1288. "version": "1.1.0",
  1289. "source": {
  1290. "type": "git",
  1291. "url": "https://github.com/php-fig/http-factory.git",
  1292. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  1293. },
  1294. "dist": {
  1295. "type": "zip",
  1296. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1297. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1298. "shasum": ""
  1299. },
  1300. "require": {
  1301. "php": ">=7.1",
  1302. "psr/http-message": "^1.0 || ^2.0"
  1303. },
  1304. "type": "library",
  1305. "extra": {
  1306. "branch-alias": {
  1307. "dev-master": "1.0.x-dev"
  1308. }
  1309. },
  1310. "autoload": {
  1311. "psr-4": {
  1312. "Psr\\Http\\Message\\": "src/"
  1313. }
  1314. },
  1315. "notification-url": "https://packagist.org/downloads/",
  1316. "license": [
  1317. "MIT"
  1318. ],
  1319. "authors": [
  1320. {
  1321. "name": "PHP-FIG",
  1322. "homepage": "https://www.php-fig.org/"
  1323. }
  1324. ],
  1325. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  1326. "keywords": [
  1327. "factory",
  1328. "http",
  1329. "message",
  1330. "psr",
  1331. "psr-17",
  1332. "psr-7",
  1333. "request",
  1334. "response"
  1335. ],
  1336. "support": {
  1337. "source": "https://github.com/php-fig/http-factory"
  1338. },
  1339. "time": "2024-04-15T12:06:14+00:00"
  1340. },
  1341. {
  1342. "name": "psr/http-message",
  1343. "version": "2.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/php-fig/http-message.git",
  1347. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1352. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "php": "^7.2 || ^8.0"
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "branch-alias": {
  1361. "dev-master": "2.0.x-dev"
  1362. }
  1363. },
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Psr\\Http\\Message\\": "src/"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "PHP-FIG",
  1376. "homepage": "https://www.php-fig.org/"
  1377. }
  1378. ],
  1379. "description": "Common interface for HTTP messages",
  1380. "homepage": "https://github.com/php-fig/http-message",
  1381. "keywords": [
  1382. "http",
  1383. "http-message",
  1384. "psr",
  1385. "psr-7",
  1386. "request",
  1387. "response"
  1388. ],
  1389. "support": {
  1390. "source": "https://github.com/php-fig/http-message/tree/2.0"
  1391. },
  1392. "time": "2023-04-04T09:54:51+00:00"
  1393. },
  1394. {
  1395. "name": "psr/http-server-handler",
  1396. "version": "1.0.2",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/php-fig/http-server-handler.git",
  1400. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  1405. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  1406. "shasum": ""
  1407. },
  1408. "require": {
  1409. "php": ">=7.0",
  1410. "psr/http-message": "^1.0 || ^2.0"
  1411. },
  1412. "type": "library",
  1413. "extra": {
  1414. "branch-alias": {
  1415. "dev-master": "1.0.x-dev"
  1416. }
  1417. },
  1418. "autoload": {
  1419. "psr-4": {
  1420. "Psr\\Http\\Server\\": "src/"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "PHP-FIG",
  1430. "homepage": "https://www.php-fig.org/"
  1431. }
  1432. ],
  1433. "description": "Common interface for HTTP server-side request handler",
  1434. "keywords": [
  1435. "handler",
  1436. "http",
  1437. "http-interop",
  1438. "psr",
  1439. "psr-15",
  1440. "psr-7",
  1441. "request",
  1442. "response",
  1443. "server"
  1444. ],
  1445. "support": {
  1446. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  1447. },
  1448. "time": "2023-04-10T20:06:20+00:00"
  1449. },
  1450. {
  1451. "name": "psr/http-server-middleware",
  1452. "version": "1.0.2",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/php-fig/http-server-middleware.git",
  1456. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  1461. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  1462. "shasum": ""
  1463. },
  1464. "require": {
  1465. "php": ">=7.0",
  1466. "psr/http-message": "^1.0 || ^2.0",
  1467. "psr/http-server-handler": "^1.0"
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "1.0.x-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Psr\\Http\\Server\\": "src/"
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "PHP-FIG",
  1487. "homepage": "https://www.php-fig.org/"
  1488. }
  1489. ],
  1490. "description": "Common interface for HTTP server-side middleware",
  1491. "keywords": [
  1492. "http",
  1493. "http-interop",
  1494. "middleware",
  1495. "psr",
  1496. "psr-15",
  1497. "psr-7",
  1498. "request",
  1499. "response"
  1500. ],
  1501. "support": {
  1502. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  1503. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  1504. },
  1505. "time": "2023-04-11T06:14:47+00:00"
  1506. },
  1507. {
  1508. "name": "psr/log",
  1509. "version": "3.0.2",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/php-fig/log.git",
  1513. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1518. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1519. "shasum": ""
  1520. },
  1521. "require": {
  1522. "php": ">=8.0.0"
  1523. },
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-master": "3.x-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "psr-4": {
  1532. "Psr\\Log\\": "src"
  1533. }
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "MIT"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "PHP-FIG",
  1542. "homepage": "https://www.php-fig.org/"
  1543. }
  1544. ],
  1545. "description": "Common interface for logging libraries",
  1546. "homepage": "https://github.com/php-fig/log",
  1547. "keywords": [
  1548. "log",
  1549. "psr",
  1550. "psr-3"
  1551. ],
  1552. "support": {
  1553. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1554. },
  1555. "time": "2024-09-11T13:17:53+00:00"
  1556. },
  1557. {
  1558. "name": "psr/simple-cache",
  1559. "version": "3.0.0",
  1560. "source": {
  1561. "type": "git",
  1562. "url": "https://github.com/php-fig/simple-cache.git",
  1563. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  1564. },
  1565. "dist": {
  1566. "type": "zip",
  1567. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1568. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1569. "shasum": ""
  1570. },
  1571. "require": {
  1572. "php": ">=8.0.0"
  1573. },
  1574. "type": "library",
  1575. "extra": {
  1576. "branch-alias": {
  1577. "dev-master": "3.0.x-dev"
  1578. }
  1579. },
  1580. "autoload": {
  1581. "psr-4": {
  1582. "Psr\\SimpleCache\\": "src/"
  1583. }
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "PHP-FIG",
  1592. "homepage": "https://www.php-fig.org/"
  1593. }
  1594. ],
  1595. "description": "Common interfaces for simple caching",
  1596. "keywords": [
  1597. "cache",
  1598. "caching",
  1599. "psr",
  1600. "psr-16",
  1601. "simple-cache"
  1602. ],
  1603. "support": {
  1604. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  1605. },
  1606. "time": "2021-10-29T13:26:27+00:00"
  1607. },
  1608. {
  1609. "name": "ralouphie/getallheaders",
  1610. "version": "3.0.3",
  1611. "source": {
  1612. "type": "git",
  1613. "url": "https://github.com/ralouphie/getallheaders.git",
  1614. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1615. },
  1616. "dist": {
  1617. "type": "zip",
  1618. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1619. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1620. "shasum": ""
  1621. },
  1622. "require": {
  1623. "php": ">=5.6"
  1624. },
  1625. "require-dev": {
  1626. "php-coveralls/php-coveralls": "^2.1",
  1627. "phpunit/phpunit": "^5 || ^6.5"
  1628. },
  1629. "type": "library",
  1630. "autoload": {
  1631. "files": [
  1632. "src/getallheaders.php"
  1633. ]
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Ralph Khattar",
  1642. "email": "ralph.khattar@gmail.com"
  1643. }
  1644. ],
  1645. "description": "A polyfill for getallheaders.",
  1646. "support": {
  1647. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1648. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1649. },
  1650. "time": "2019-03-08T08:55:37+00:00"
  1651. },
  1652. {
  1653. "name": "robmorgan/phinx",
  1654. "version": "0.16.11",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/cakephp/phinx.git",
  1658. "reference": "a03014fea316ba021fc0776982e5bed2d10228d4"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/cakephp/phinx/zipball/a03014fea316ba021fc0776982e5bed2d10228d4",
  1663. "reference": "a03014fea316ba021fc0776982e5bed2d10228d4",
  1664. "shasum": ""
  1665. },
  1666. "require": {
  1667. "cakephp/database": "^5.0.2",
  1668. "composer-runtime-api": "^2.0",
  1669. "php-64bit": ">=8.1",
  1670. "psr/container": "^1.1|^2.0",
  1671. "symfony/config": "^4.0|^5.0|^6.0|^7.0|^8.0",
  1672. "symfony/console": "^6.0|^7.0|^8.0"
  1673. },
  1674. "require-dev": {
  1675. "cakephp/cakephp-codesniffer": "^5.0",
  1676. "cakephp/i18n": "^5.0",
  1677. "ext-json": "*",
  1678. "ext-pdo": "*",
  1679. "phpunit/phpunit": "^10.5",
  1680. "symfony/yaml": "^4.0|^5.0|^6.0|^7.0|^8.0"
  1681. },
  1682. "suggest": {
  1683. "ext-json": "Install if using JSON configuration format",
  1684. "ext-pdo": "PDO extension is needed",
  1685. "symfony/yaml": "Install if using YAML configuration format"
  1686. },
  1687. "bin": [
  1688. "bin/phinx"
  1689. ],
  1690. "type": "library",
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Phinx\\": "src/Phinx/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Rob Morgan",
  1703. "email": "robbym@gmail.com",
  1704. "homepage": "https://robmorgan.id.au",
  1705. "role": "Lead Developer"
  1706. },
  1707. {
  1708. "name": "Woody Gilk",
  1709. "email": "woody.gilk@gmail.com",
  1710. "homepage": "https://shadowhand.me",
  1711. "role": "Developer"
  1712. },
  1713. {
  1714. "name": "Richard Quadling",
  1715. "email": "rquadling@gmail.com",
  1716. "role": "Developer"
  1717. },
  1718. {
  1719. "name": "CakePHP Community",
  1720. "homepage": "https://github.com/cakephp/phinx/graphs/contributors",
  1721. "role": "Developer"
  1722. }
  1723. ],
  1724. "description": "Phinx makes it ridiculously easy to manage the database migrations for your PHP app.",
  1725. "homepage": "https://phinx.org",
  1726. "keywords": [
  1727. "database",
  1728. "database migrations",
  1729. "db",
  1730. "migrations",
  1731. "phinx"
  1732. ],
  1733. "support": {
  1734. "issues": "https://github.com/cakephp/phinx/issues",
  1735. "source": "https://github.com/cakephp/phinx/tree/0.16.11"
  1736. },
  1737. "time": "2026-03-15T00:04:32+00:00"
  1738. },
  1739. {
  1740. "name": "slim/psr7",
  1741. "version": "1.8.0",
  1742. "source": {
  1743. "type": "git",
  1744. "url": "https://github.com/slimphp/Slim-Psr7.git",
  1745. "reference": "76e7e3b1cdfd583e9035c4c966c08e01e45ce959"
  1746. },
  1747. "dist": {
  1748. "type": "zip",
  1749. "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/76e7e3b1cdfd583e9035c4c966c08e01e45ce959",
  1750. "reference": "76e7e3b1cdfd583e9035c4c966c08e01e45ce959",
  1751. "shasum": ""
  1752. },
  1753. "require": {
  1754. "fig/http-message-util": "^1.1.5",
  1755. "php": "^8.0",
  1756. "psr/http-factory": "^1.1",
  1757. "psr/http-message": "^1.0 || ^2.0",
  1758. "ralouphie/getallheaders": "^3.0"
  1759. },
  1760. "provide": {
  1761. "psr/http-factory-implementation": "^1.0",
  1762. "psr/http-message-implementation": "^1.0 || ^2.0"
  1763. },
  1764. "require-dev": {
  1765. "adriansuter/php-autoload-override": "^1.5|| ^2.0",
  1766. "ext-json": "*",
  1767. "http-interop/http-factory-tests": "^1.0 || ^2.0",
  1768. "php-http/psr7-integration-tests": "^1.5",
  1769. "phpstan/phpstan": "^2.1",
  1770. "phpunit/phpunit": "^9.6 || ^10",
  1771. "squizlabs/php_codesniffer": "^3.13"
  1772. },
  1773. "type": "library",
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Slim\\Psr7\\": "src"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Josh Lockhart",
  1786. "email": "hello@joshlockhart.com",
  1787. "homepage": "https://joshlockhart.com"
  1788. },
  1789. {
  1790. "name": "Andrew Smith",
  1791. "email": "a.smith@silentworks.co.uk",
  1792. "homepage": "https://silentworks.co.uk"
  1793. },
  1794. {
  1795. "name": "Rob Allen",
  1796. "email": "rob@akrabat.com",
  1797. "homepage": "https://akrabat.com"
  1798. },
  1799. {
  1800. "name": "Pierre Berube",
  1801. "email": "pierre@lgse.com",
  1802. "homepage": "https://www.lgse.com"
  1803. }
  1804. ],
  1805. "description": "Strict PSR-7 implementation",
  1806. "homepage": "https://www.slimframework.com",
  1807. "keywords": [
  1808. "http",
  1809. "psr-7",
  1810. "psr7"
  1811. ],
  1812. "support": {
  1813. "issues": "https://github.com/slimphp/Slim-Psr7/issues",
  1814. "source": "https://github.com/slimphp/Slim-Psr7/tree/1.8.0"
  1815. },
  1816. "time": "2025-11-02T17:51:19+00:00"
  1817. },
  1818. {
  1819. "name": "slim/slim",
  1820. "version": "4.15.1",
  1821. "source": {
  1822. "type": "git",
  1823. "url": "https://github.com/slimphp/Slim.git",
  1824. "reference": "887893516557506f254d950425ce7f5387a26970"
  1825. },
  1826. "dist": {
  1827. "type": "zip",
  1828. "url": "https://api.github.com/repos/slimphp/Slim/zipball/887893516557506f254d950425ce7f5387a26970",
  1829. "reference": "887893516557506f254d950425ce7f5387a26970",
  1830. "shasum": ""
  1831. },
  1832. "require": {
  1833. "ext-json": "*",
  1834. "nikic/fast-route": "^1.3",
  1835. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  1836. "psr/container": "^1.0 || ^2.0",
  1837. "psr/http-factory": "^1.1",
  1838. "psr/http-message": "^1.1 || ^2.0",
  1839. "psr/http-server-handler": "^1.0",
  1840. "psr/http-server-middleware": "^1.0",
  1841. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1842. },
  1843. "require-dev": {
  1844. "adriansuter/php-autoload-override": "^1.4 || ^2",
  1845. "ext-simplexml": "*",
  1846. "guzzlehttp/psr7": "^2.6",
  1847. "httpsoft/http-message": "^1.1",
  1848. "httpsoft/http-server-request": "^1.1",
  1849. "laminas/laminas-diactoros": "^2.17 || ^3",
  1850. "nyholm/psr7": "^1.8",
  1851. "nyholm/psr7-server": "^1.1",
  1852. "phpspec/prophecy": "^1.19",
  1853. "phpspec/prophecy-phpunit": "^2.1",
  1854. "phpstan/phpstan": "^1 || ^2",
  1855. "phpunit/phpunit": "^9.6 || ^10 || ^11 || ^12",
  1856. "slim/http": "^1.3",
  1857. "slim/psr7": "^1.6",
  1858. "squizlabs/php_codesniffer": "^3.10",
  1859. "vimeo/psalm": "^5 || ^6"
  1860. },
  1861. "suggest": {
  1862. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  1863. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  1864. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  1865. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  1866. },
  1867. "type": "library",
  1868. "autoload": {
  1869. "psr-4": {
  1870. "Slim\\": "Slim"
  1871. }
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "Josh Lockhart",
  1880. "email": "hello@joshlockhart.com",
  1881. "homepage": "https://joshlockhart.com"
  1882. },
  1883. {
  1884. "name": "Andrew Smith",
  1885. "email": "a.smith@silentworks.co.uk",
  1886. "homepage": "https://silentworks.co.uk"
  1887. },
  1888. {
  1889. "name": "Rob Allen",
  1890. "email": "rob@akrabat.com",
  1891. "homepage": "https://akrabat.com"
  1892. },
  1893. {
  1894. "name": "Pierre Berube",
  1895. "email": "pierre@lgse.com",
  1896. "homepage": "https://www.lgse.com"
  1897. },
  1898. {
  1899. "name": "Gabriel Manricks",
  1900. "email": "gmanricks@me.com",
  1901. "homepage": "http://gabrielmanricks.com"
  1902. }
  1903. ],
  1904. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  1905. "homepage": "https://www.slimframework.com",
  1906. "keywords": [
  1907. "api",
  1908. "framework",
  1909. "micro",
  1910. "router"
  1911. ],
  1912. "support": {
  1913. "docs": "https://www.slimframework.com/docs/v4/",
  1914. "forum": "https://discourse.slimframework.com/",
  1915. "irc": "irc://irc.freenode.net:6667/slimphp",
  1916. "issues": "https://github.com/slimphp/Slim/issues",
  1917. "rss": "https://www.slimframework.com/blog/feed.rss",
  1918. "slack": "https://slimphp.slack.com/",
  1919. "source": "https://github.com/slimphp/Slim",
  1920. "wiki": "https://github.com/slimphp/Slim/wiki"
  1921. },
  1922. "funding": [
  1923. {
  1924. "url": "https://opencollective.com/slimphp",
  1925. "type": "open_collective"
  1926. },
  1927. {
  1928. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  1929. "type": "tidelift"
  1930. }
  1931. ],
  1932. "time": "2025-11-21T12:23:44+00:00"
  1933. },
  1934. {
  1935. "name": "symfony/config",
  1936. "version": "v7.4.8",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/symfony/config.git",
  1940. "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/symfony/config/zipball/2d19dde43fa2ff720b9a40763ace7226594f503b",
  1945. "reference": "2d19dde43fa2ff720b9a40763ace7226594f503b",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "php": ">=8.2",
  1950. "symfony/deprecation-contracts": "^2.5|^3",
  1951. "symfony/filesystem": "^7.1|^8.0",
  1952. "symfony/polyfill-ctype": "~1.8"
  1953. },
  1954. "conflict": {
  1955. "symfony/finder": "<6.4",
  1956. "symfony/service-contracts": "<2.5"
  1957. },
  1958. "require-dev": {
  1959. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  1960. "symfony/finder": "^6.4|^7.0|^8.0",
  1961. "symfony/messenger": "^6.4|^7.0|^8.0",
  1962. "symfony/service-contracts": "^2.5|^3",
  1963. "symfony/yaml": "^6.4|^7.0|^8.0"
  1964. },
  1965. "type": "library",
  1966. "autoload": {
  1967. "psr-4": {
  1968. "Symfony\\Component\\Config\\": ""
  1969. },
  1970. "exclude-from-classmap": [
  1971. "/Tests/"
  1972. ]
  1973. },
  1974. "notification-url": "https://packagist.org/downloads/",
  1975. "license": [
  1976. "MIT"
  1977. ],
  1978. "authors": [
  1979. {
  1980. "name": "Fabien Potencier",
  1981. "email": "fabien@symfony.com"
  1982. },
  1983. {
  1984. "name": "Symfony Community",
  1985. "homepage": "https://symfony.com/contributors"
  1986. }
  1987. ],
  1988. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  1989. "homepage": "https://symfony.com",
  1990. "support": {
  1991. "source": "https://github.com/symfony/config/tree/v7.4.8"
  1992. },
  1993. "funding": [
  1994. {
  1995. "url": "https://symfony.com/sponsor",
  1996. "type": "custom"
  1997. },
  1998. {
  1999. "url": "https://github.com/fabpot",
  2000. "type": "github"
  2001. },
  2002. {
  2003. "url": "https://github.com/nicolas-grekas",
  2004. "type": "github"
  2005. },
  2006. {
  2007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2008. "type": "tidelift"
  2009. }
  2010. ],
  2011. "time": "2026-03-24T13:12:05+00:00"
  2012. },
  2013. {
  2014. "name": "symfony/console",
  2015. "version": "v7.4.8",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/symfony/console.git",
  2019. "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/symfony/console/zipball/1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707",
  2024. "reference": "1e92e39c51f95b88e3d66fa2d9f06d1fb45dd707",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "php": ">=8.2",
  2029. "symfony/deprecation-contracts": "^2.5|^3",
  2030. "symfony/polyfill-mbstring": "~1.0",
  2031. "symfony/service-contracts": "^2.5|^3",
  2032. "symfony/string": "^7.2|^8.0"
  2033. },
  2034. "conflict": {
  2035. "symfony/dependency-injection": "<6.4",
  2036. "symfony/dotenv": "<6.4",
  2037. "symfony/event-dispatcher": "<6.4",
  2038. "symfony/lock": "<6.4",
  2039. "symfony/process": "<6.4"
  2040. },
  2041. "provide": {
  2042. "psr/log-implementation": "1.0|2.0|3.0"
  2043. },
  2044. "require-dev": {
  2045. "psr/log": "^1|^2|^3",
  2046. "symfony/config": "^6.4|^7.0|^8.0",
  2047. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  2048. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  2049. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  2050. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  2051. "symfony/lock": "^6.4|^7.0|^8.0",
  2052. "symfony/messenger": "^6.4|^7.0|^8.0",
  2053. "symfony/process": "^6.4|^7.0|^8.0",
  2054. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  2055. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  2056. },
  2057. "type": "library",
  2058. "autoload": {
  2059. "psr-4": {
  2060. "Symfony\\Component\\Console\\": ""
  2061. },
  2062. "exclude-from-classmap": [
  2063. "/Tests/"
  2064. ]
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "MIT"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "Fabien Potencier",
  2073. "email": "fabien@symfony.com"
  2074. },
  2075. {
  2076. "name": "Symfony Community",
  2077. "homepage": "https://symfony.com/contributors"
  2078. }
  2079. ],
  2080. "description": "Eases the creation of beautiful and testable command line interfaces",
  2081. "homepage": "https://symfony.com",
  2082. "keywords": [
  2083. "cli",
  2084. "command-line",
  2085. "console",
  2086. "terminal"
  2087. ],
  2088. "support": {
  2089. "source": "https://github.com/symfony/console/tree/v7.4.8"
  2090. },
  2091. "funding": [
  2092. {
  2093. "url": "https://symfony.com/sponsor",
  2094. "type": "custom"
  2095. },
  2096. {
  2097. "url": "https://github.com/fabpot",
  2098. "type": "github"
  2099. },
  2100. {
  2101. "url": "https://github.com/nicolas-grekas",
  2102. "type": "github"
  2103. },
  2104. {
  2105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2106. "type": "tidelift"
  2107. }
  2108. ],
  2109. "time": "2026-03-30T13:54:39+00:00"
  2110. },
  2111. {
  2112. "name": "symfony/deprecation-contracts",
  2113. "version": "v3.6.0",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://github.com/symfony/deprecation-contracts.git",
  2117. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2122. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2123. "shasum": ""
  2124. },
  2125. "require": {
  2126. "php": ">=8.1"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "thanks": {
  2131. "url": "https://github.com/symfony/contracts",
  2132. "name": "symfony/contracts"
  2133. },
  2134. "branch-alias": {
  2135. "dev-main": "3.6-dev"
  2136. }
  2137. },
  2138. "autoload": {
  2139. "files": [
  2140. "function.php"
  2141. ]
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "MIT"
  2146. ],
  2147. "authors": [
  2148. {
  2149. "name": "Nicolas Grekas",
  2150. "email": "p@tchwork.com"
  2151. },
  2152. {
  2153. "name": "Symfony Community",
  2154. "homepage": "https://symfony.com/contributors"
  2155. }
  2156. ],
  2157. "description": "A generic function and convention to trigger deprecation notices",
  2158. "homepage": "https://symfony.com",
  2159. "support": {
  2160. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  2161. },
  2162. "funding": [
  2163. {
  2164. "url": "https://symfony.com/sponsor",
  2165. "type": "custom"
  2166. },
  2167. {
  2168. "url": "https://github.com/fabpot",
  2169. "type": "github"
  2170. },
  2171. {
  2172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2173. "type": "tidelift"
  2174. }
  2175. ],
  2176. "time": "2024-09-25T14:21:43+00:00"
  2177. },
  2178. {
  2179. "name": "symfony/filesystem",
  2180. "version": "v7.4.8",
  2181. "source": {
  2182. "type": "git",
  2183. "url": "https://github.com/symfony/filesystem.git",
  2184. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5"
  2185. },
  2186. "dist": {
  2187. "type": "zip",
  2188. "url": "https://api.github.com/repos/symfony/filesystem/zipball/58b9790d12f9670b7f53a1c1738febd3108970a5",
  2189. "reference": "58b9790d12f9670b7f53a1c1738febd3108970a5",
  2190. "shasum": ""
  2191. },
  2192. "require": {
  2193. "php": ">=8.2",
  2194. "symfony/polyfill-ctype": "~1.8",
  2195. "symfony/polyfill-mbstring": "~1.8"
  2196. },
  2197. "require-dev": {
  2198. "symfony/process": "^6.4|^7.0|^8.0"
  2199. },
  2200. "type": "library",
  2201. "autoload": {
  2202. "psr-4": {
  2203. "Symfony\\Component\\Filesystem\\": ""
  2204. },
  2205. "exclude-from-classmap": [
  2206. "/Tests/"
  2207. ]
  2208. },
  2209. "notification-url": "https://packagist.org/downloads/",
  2210. "license": [
  2211. "MIT"
  2212. ],
  2213. "authors": [
  2214. {
  2215. "name": "Fabien Potencier",
  2216. "email": "fabien@symfony.com"
  2217. },
  2218. {
  2219. "name": "Symfony Community",
  2220. "homepage": "https://symfony.com/contributors"
  2221. }
  2222. ],
  2223. "description": "Provides basic utilities for the filesystem",
  2224. "homepage": "https://symfony.com",
  2225. "support": {
  2226. "source": "https://github.com/symfony/filesystem/tree/v7.4.8"
  2227. },
  2228. "funding": [
  2229. {
  2230. "url": "https://symfony.com/sponsor",
  2231. "type": "custom"
  2232. },
  2233. {
  2234. "url": "https://github.com/fabpot",
  2235. "type": "github"
  2236. },
  2237. {
  2238. "url": "https://github.com/nicolas-grekas",
  2239. "type": "github"
  2240. },
  2241. {
  2242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2243. "type": "tidelift"
  2244. }
  2245. ],
  2246. "time": "2026-03-24T13:12:05+00:00"
  2247. },
  2248. {
  2249. "name": "symfony/polyfill-ctype",
  2250. "version": "v1.37.0",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/symfony/polyfill-ctype.git",
  2254. "reference": "141046a8f9477948ff284fa65be2095baafb94f2"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
  2259. "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "php": ">=7.2"
  2264. },
  2265. "provide": {
  2266. "ext-ctype": "*"
  2267. },
  2268. "suggest": {
  2269. "ext-ctype": "For best performance"
  2270. },
  2271. "type": "library",
  2272. "extra": {
  2273. "thanks": {
  2274. "url": "https://github.com/symfony/polyfill",
  2275. "name": "symfony/polyfill"
  2276. }
  2277. },
  2278. "autoload": {
  2279. "files": [
  2280. "bootstrap.php"
  2281. ],
  2282. "psr-4": {
  2283. "Symfony\\Polyfill\\Ctype\\": ""
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Gert de Pagter",
  2293. "email": "BackEndTea@gmail.com"
  2294. },
  2295. {
  2296. "name": "Symfony Community",
  2297. "homepage": "https://symfony.com/contributors"
  2298. }
  2299. ],
  2300. "description": "Symfony polyfill for ctype functions",
  2301. "homepage": "https://symfony.com",
  2302. "keywords": [
  2303. "compatibility",
  2304. "ctype",
  2305. "polyfill",
  2306. "portable"
  2307. ],
  2308. "support": {
  2309. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
  2310. },
  2311. "funding": [
  2312. {
  2313. "url": "https://symfony.com/sponsor",
  2314. "type": "custom"
  2315. },
  2316. {
  2317. "url": "https://github.com/fabpot",
  2318. "type": "github"
  2319. },
  2320. {
  2321. "url": "https://github.com/nicolas-grekas",
  2322. "type": "github"
  2323. },
  2324. {
  2325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2326. "type": "tidelift"
  2327. }
  2328. ],
  2329. "time": "2026-04-10T16:19:22+00:00"
  2330. },
  2331. {
  2332. "name": "symfony/polyfill-intl-grapheme",
  2333. "version": "v1.37.0",
  2334. "source": {
  2335. "type": "git",
  2336. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  2337. "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e"
  2338. },
  2339. "dist": {
  2340. "type": "zip",
  2341. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/4864388bfbd3001ce88e234fab652acd91fdc57e",
  2342. "reference": "4864388bfbd3001ce88e234fab652acd91fdc57e",
  2343. "shasum": ""
  2344. },
  2345. "require": {
  2346. "php": ">=7.2"
  2347. },
  2348. "suggest": {
  2349. "ext-intl": "For best performance"
  2350. },
  2351. "type": "library",
  2352. "extra": {
  2353. "thanks": {
  2354. "url": "https://github.com/symfony/polyfill",
  2355. "name": "symfony/polyfill"
  2356. }
  2357. },
  2358. "autoload": {
  2359. "files": [
  2360. "bootstrap.php"
  2361. ],
  2362. "psr-4": {
  2363. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Nicolas Grekas",
  2373. "email": "p@tchwork.com"
  2374. },
  2375. {
  2376. "name": "Symfony Community",
  2377. "homepage": "https://symfony.com/contributors"
  2378. }
  2379. ],
  2380. "description": "Symfony polyfill for intl's grapheme_* functions",
  2381. "homepage": "https://symfony.com",
  2382. "keywords": [
  2383. "compatibility",
  2384. "grapheme",
  2385. "intl",
  2386. "polyfill",
  2387. "portable",
  2388. "shim"
  2389. ],
  2390. "support": {
  2391. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.37.0"
  2392. },
  2393. "funding": [
  2394. {
  2395. "url": "https://symfony.com/sponsor",
  2396. "type": "custom"
  2397. },
  2398. {
  2399. "url": "https://github.com/fabpot",
  2400. "type": "github"
  2401. },
  2402. {
  2403. "url": "https://github.com/nicolas-grekas",
  2404. "type": "github"
  2405. },
  2406. {
  2407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2408. "type": "tidelift"
  2409. }
  2410. ],
  2411. "time": "2026-04-26T13:13:48+00:00"
  2412. },
  2413. {
  2414. "name": "symfony/polyfill-intl-normalizer",
  2415. "version": "v1.37.0",
  2416. "source": {
  2417. "type": "git",
  2418. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2419. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  2420. },
  2421. "dist": {
  2422. "type": "zip",
  2423. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  2424. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  2425. "shasum": ""
  2426. },
  2427. "require": {
  2428. "php": ">=7.2"
  2429. },
  2430. "suggest": {
  2431. "ext-intl": "For best performance"
  2432. },
  2433. "type": "library",
  2434. "extra": {
  2435. "thanks": {
  2436. "url": "https://github.com/symfony/polyfill",
  2437. "name": "symfony/polyfill"
  2438. }
  2439. },
  2440. "autoload": {
  2441. "files": [
  2442. "bootstrap.php"
  2443. ],
  2444. "psr-4": {
  2445. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2446. },
  2447. "classmap": [
  2448. "Resources/stubs"
  2449. ]
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Nicolas Grekas",
  2458. "email": "p@tchwork.com"
  2459. },
  2460. {
  2461. "name": "Symfony Community",
  2462. "homepage": "https://symfony.com/contributors"
  2463. }
  2464. ],
  2465. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2466. "homepage": "https://symfony.com",
  2467. "keywords": [
  2468. "compatibility",
  2469. "intl",
  2470. "normalizer",
  2471. "polyfill",
  2472. "portable",
  2473. "shim"
  2474. ],
  2475. "support": {
  2476. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.37.0"
  2477. },
  2478. "funding": [
  2479. {
  2480. "url": "https://symfony.com/sponsor",
  2481. "type": "custom"
  2482. },
  2483. {
  2484. "url": "https://github.com/fabpot",
  2485. "type": "github"
  2486. },
  2487. {
  2488. "url": "https://github.com/nicolas-grekas",
  2489. "type": "github"
  2490. },
  2491. {
  2492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2493. "type": "tidelift"
  2494. }
  2495. ],
  2496. "time": "2024-09-09T11:45:10+00:00"
  2497. },
  2498. {
  2499. "name": "symfony/polyfill-mbstring",
  2500. "version": "v1.37.0",
  2501. "source": {
  2502. "type": "git",
  2503. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2504. "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315"
  2505. },
  2506. "dist": {
  2507. "type": "zip",
  2508. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6a21eb99c6973357967f6ce3708cd55a6bec6315",
  2509. "reference": "6a21eb99c6973357967f6ce3708cd55a6bec6315",
  2510. "shasum": ""
  2511. },
  2512. "require": {
  2513. "ext-iconv": "*",
  2514. "php": ">=7.2"
  2515. },
  2516. "provide": {
  2517. "ext-mbstring": "*"
  2518. },
  2519. "suggest": {
  2520. "ext-mbstring": "For best performance"
  2521. },
  2522. "type": "library",
  2523. "extra": {
  2524. "thanks": {
  2525. "url": "https://github.com/symfony/polyfill",
  2526. "name": "symfony/polyfill"
  2527. }
  2528. },
  2529. "autoload": {
  2530. "files": [
  2531. "bootstrap.php"
  2532. ],
  2533. "psr-4": {
  2534. "Symfony\\Polyfill\\Mbstring\\": ""
  2535. }
  2536. },
  2537. "notification-url": "https://packagist.org/downloads/",
  2538. "license": [
  2539. "MIT"
  2540. ],
  2541. "authors": [
  2542. {
  2543. "name": "Nicolas Grekas",
  2544. "email": "p@tchwork.com"
  2545. },
  2546. {
  2547. "name": "Symfony Community",
  2548. "homepage": "https://symfony.com/contributors"
  2549. }
  2550. ],
  2551. "description": "Symfony polyfill for the Mbstring extension",
  2552. "homepage": "https://symfony.com",
  2553. "keywords": [
  2554. "compatibility",
  2555. "mbstring",
  2556. "polyfill",
  2557. "portable",
  2558. "shim"
  2559. ],
  2560. "support": {
  2561. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.37.0"
  2562. },
  2563. "funding": [
  2564. {
  2565. "url": "https://symfony.com/sponsor",
  2566. "type": "custom"
  2567. },
  2568. {
  2569. "url": "https://github.com/fabpot",
  2570. "type": "github"
  2571. },
  2572. {
  2573. "url": "https://github.com/nicolas-grekas",
  2574. "type": "github"
  2575. },
  2576. {
  2577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2578. "type": "tidelift"
  2579. }
  2580. ],
  2581. "time": "2026-04-10T17:25:58+00:00"
  2582. },
  2583. {
  2584. "name": "symfony/service-contracts",
  2585. "version": "v3.6.1",
  2586. "source": {
  2587. "type": "git",
  2588. "url": "https://github.com/symfony/service-contracts.git",
  2589. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  2590. },
  2591. "dist": {
  2592. "type": "zip",
  2593. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  2594. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  2595. "shasum": ""
  2596. },
  2597. "require": {
  2598. "php": ">=8.1",
  2599. "psr/container": "^1.1|^2.0",
  2600. "symfony/deprecation-contracts": "^2.5|^3"
  2601. },
  2602. "conflict": {
  2603. "ext-psr": "<1.1|>=2"
  2604. },
  2605. "type": "library",
  2606. "extra": {
  2607. "thanks": {
  2608. "url": "https://github.com/symfony/contracts",
  2609. "name": "symfony/contracts"
  2610. },
  2611. "branch-alias": {
  2612. "dev-main": "3.6-dev"
  2613. }
  2614. },
  2615. "autoload": {
  2616. "psr-4": {
  2617. "Symfony\\Contracts\\Service\\": ""
  2618. },
  2619. "exclude-from-classmap": [
  2620. "/Test/"
  2621. ]
  2622. },
  2623. "notification-url": "https://packagist.org/downloads/",
  2624. "license": [
  2625. "MIT"
  2626. ],
  2627. "authors": [
  2628. {
  2629. "name": "Nicolas Grekas",
  2630. "email": "p@tchwork.com"
  2631. },
  2632. {
  2633. "name": "Symfony Community",
  2634. "homepage": "https://symfony.com/contributors"
  2635. }
  2636. ],
  2637. "description": "Generic abstractions related to writing services",
  2638. "homepage": "https://symfony.com",
  2639. "keywords": [
  2640. "abstractions",
  2641. "contracts",
  2642. "decoupling",
  2643. "interfaces",
  2644. "interoperability",
  2645. "standards"
  2646. ],
  2647. "support": {
  2648. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  2649. },
  2650. "funding": [
  2651. {
  2652. "url": "https://symfony.com/sponsor",
  2653. "type": "custom"
  2654. },
  2655. {
  2656. "url": "https://github.com/fabpot",
  2657. "type": "github"
  2658. },
  2659. {
  2660. "url": "https://github.com/nicolas-grekas",
  2661. "type": "github"
  2662. },
  2663. {
  2664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2665. "type": "tidelift"
  2666. }
  2667. ],
  2668. "time": "2025-07-15T11:30:57+00:00"
  2669. },
  2670. {
  2671. "name": "symfony/string",
  2672. "version": "v7.4.8",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/symfony/string.git",
  2676. "reference": "114ac57257d75df748eda23dd003878080b8e688"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/symfony/string/zipball/114ac57257d75df748eda23dd003878080b8e688",
  2681. "reference": "114ac57257d75df748eda23dd003878080b8e688",
  2682. "shasum": ""
  2683. },
  2684. "require": {
  2685. "php": ">=8.2",
  2686. "symfony/deprecation-contracts": "^2.5|^3.0",
  2687. "symfony/polyfill-ctype": "~1.8",
  2688. "symfony/polyfill-intl-grapheme": "~1.33",
  2689. "symfony/polyfill-intl-normalizer": "~1.0",
  2690. "symfony/polyfill-mbstring": "~1.0"
  2691. },
  2692. "conflict": {
  2693. "symfony/translation-contracts": "<2.5"
  2694. },
  2695. "require-dev": {
  2696. "symfony/emoji": "^7.1|^8.0",
  2697. "symfony/http-client": "^6.4|^7.0|^8.0",
  2698. "symfony/intl": "^6.4|^7.0|^8.0",
  2699. "symfony/translation-contracts": "^2.5|^3.0",
  2700. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  2701. },
  2702. "type": "library",
  2703. "autoload": {
  2704. "files": [
  2705. "Resources/functions.php"
  2706. ],
  2707. "psr-4": {
  2708. "Symfony\\Component\\String\\": ""
  2709. },
  2710. "exclude-from-classmap": [
  2711. "/Tests/"
  2712. ]
  2713. },
  2714. "notification-url": "https://packagist.org/downloads/",
  2715. "license": [
  2716. "MIT"
  2717. ],
  2718. "authors": [
  2719. {
  2720. "name": "Nicolas Grekas",
  2721. "email": "p@tchwork.com"
  2722. },
  2723. {
  2724. "name": "Symfony Community",
  2725. "homepage": "https://symfony.com/contributors"
  2726. }
  2727. ],
  2728. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2729. "homepage": "https://symfony.com",
  2730. "keywords": [
  2731. "grapheme",
  2732. "i18n",
  2733. "string",
  2734. "unicode",
  2735. "utf-8",
  2736. "utf8"
  2737. ],
  2738. "support": {
  2739. "source": "https://github.com/symfony/string/tree/v7.4.8"
  2740. },
  2741. "funding": [
  2742. {
  2743. "url": "https://symfony.com/sponsor",
  2744. "type": "custom"
  2745. },
  2746. {
  2747. "url": "https://github.com/fabpot",
  2748. "type": "github"
  2749. },
  2750. {
  2751. "url": "https://github.com/nicolas-grekas",
  2752. "type": "github"
  2753. },
  2754. {
  2755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2756. "type": "tidelift"
  2757. }
  2758. ],
  2759. "time": "2026-03-24T13:12:05+00:00"
  2760. }
  2761. ],
  2762. "packages-dev": [
  2763. {
  2764. "name": "clue/ndjson-react",
  2765. "version": "v1.3.0",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/clue/reactphp-ndjson.git",
  2769. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  2774. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "php": ">=5.3",
  2779. "react/stream": "^1.2"
  2780. },
  2781. "require-dev": {
  2782. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  2783. "react/event-loop": "^1.2"
  2784. },
  2785. "type": "library",
  2786. "autoload": {
  2787. "psr-4": {
  2788. "Clue\\React\\NDJson\\": "src/"
  2789. }
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "Christian Lück",
  2798. "email": "christian@clue.engineering"
  2799. }
  2800. ],
  2801. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  2802. "homepage": "https://github.com/clue/reactphp-ndjson",
  2803. "keywords": [
  2804. "NDJSON",
  2805. "json",
  2806. "jsonlines",
  2807. "newline",
  2808. "reactphp",
  2809. "streaming"
  2810. ],
  2811. "support": {
  2812. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  2813. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  2814. },
  2815. "funding": [
  2816. {
  2817. "url": "https://clue.engineering/support",
  2818. "type": "custom"
  2819. },
  2820. {
  2821. "url": "https://github.com/clue",
  2822. "type": "github"
  2823. }
  2824. ],
  2825. "time": "2022-12-23T10:58:28+00:00"
  2826. },
  2827. {
  2828. "name": "composer/pcre",
  2829. "version": "3.3.2",
  2830. "source": {
  2831. "type": "git",
  2832. "url": "https://github.com/composer/pcre.git",
  2833. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  2834. },
  2835. "dist": {
  2836. "type": "zip",
  2837. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  2838. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  2839. "shasum": ""
  2840. },
  2841. "require": {
  2842. "php": "^7.4 || ^8.0"
  2843. },
  2844. "conflict": {
  2845. "phpstan/phpstan": "<1.11.10"
  2846. },
  2847. "require-dev": {
  2848. "phpstan/phpstan": "^1.12 || ^2",
  2849. "phpstan/phpstan-strict-rules": "^1 || ^2",
  2850. "phpunit/phpunit": "^8 || ^9"
  2851. },
  2852. "type": "library",
  2853. "extra": {
  2854. "phpstan": {
  2855. "includes": [
  2856. "extension.neon"
  2857. ]
  2858. },
  2859. "branch-alias": {
  2860. "dev-main": "3.x-dev"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "psr-4": {
  2865. "Composer\\Pcre\\": "src"
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Jordi Boggiano",
  2875. "email": "j.boggiano@seld.be",
  2876. "homepage": "http://seld.be"
  2877. }
  2878. ],
  2879. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  2880. "keywords": [
  2881. "PCRE",
  2882. "preg",
  2883. "regex",
  2884. "regular expression"
  2885. ],
  2886. "support": {
  2887. "issues": "https://github.com/composer/pcre/issues",
  2888. "source": "https://github.com/composer/pcre/tree/3.3.2"
  2889. },
  2890. "funding": [
  2891. {
  2892. "url": "https://packagist.com",
  2893. "type": "custom"
  2894. },
  2895. {
  2896. "url": "https://github.com/composer",
  2897. "type": "github"
  2898. },
  2899. {
  2900. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2901. "type": "tidelift"
  2902. }
  2903. ],
  2904. "time": "2024-11-12T16:29:46+00:00"
  2905. },
  2906. {
  2907. "name": "composer/semver",
  2908. "version": "3.4.4",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/composer/semver.git",
  2912. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  2917. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "php": "^5.3.2 || ^7.0 || ^8.0"
  2922. },
  2923. "require-dev": {
  2924. "phpstan/phpstan": "^1.11",
  2925. "symfony/phpunit-bridge": "^3 || ^7"
  2926. },
  2927. "type": "library",
  2928. "extra": {
  2929. "branch-alias": {
  2930. "dev-main": "3.x-dev"
  2931. }
  2932. },
  2933. "autoload": {
  2934. "psr-4": {
  2935. "Composer\\Semver\\": "src"
  2936. }
  2937. },
  2938. "notification-url": "https://packagist.org/downloads/",
  2939. "license": [
  2940. "MIT"
  2941. ],
  2942. "authors": [
  2943. {
  2944. "name": "Nils Adermann",
  2945. "email": "naderman@naderman.de",
  2946. "homepage": "http://www.naderman.de"
  2947. },
  2948. {
  2949. "name": "Jordi Boggiano",
  2950. "email": "j.boggiano@seld.be",
  2951. "homepage": "http://seld.be"
  2952. },
  2953. {
  2954. "name": "Rob Bast",
  2955. "email": "rob.bast@gmail.com",
  2956. "homepage": "http://robbast.nl"
  2957. }
  2958. ],
  2959. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  2960. "keywords": [
  2961. "semantic",
  2962. "semver",
  2963. "validation",
  2964. "versioning"
  2965. ],
  2966. "support": {
  2967. "irc": "ircs://irc.libera.chat:6697/composer",
  2968. "issues": "https://github.com/composer/semver/issues",
  2969. "source": "https://github.com/composer/semver/tree/3.4.4"
  2970. },
  2971. "funding": [
  2972. {
  2973. "url": "https://packagist.com",
  2974. "type": "custom"
  2975. },
  2976. {
  2977. "url": "https://github.com/composer",
  2978. "type": "github"
  2979. }
  2980. ],
  2981. "time": "2025-08-20T19:15:30+00:00"
  2982. },
  2983. {
  2984. "name": "composer/xdebug-handler",
  2985. "version": "3.0.5",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://github.com/composer/xdebug-handler.git",
  2989. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  2994. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  2995. "shasum": ""
  2996. },
  2997. "require": {
  2998. "composer/pcre": "^1 || ^2 || ^3",
  2999. "php": "^7.2.5 || ^8.0",
  3000. "psr/log": "^1 || ^2 || ^3"
  3001. },
  3002. "require-dev": {
  3003. "phpstan/phpstan": "^1.0",
  3004. "phpstan/phpstan-strict-rules": "^1.1",
  3005. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  3006. },
  3007. "type": "library",
  3008. "autoload": {
  3009. "psr-4": {
  3010. "Composer\\XdebugHandler\\": "src"
  3011. }
  3012. },
  3013. "notification-url": "https://packagist.org/downloads/",
  3014. "license": [
  3015. "MIT"
  3016. ],
  3017. "authors": [
  3018. {
  3019. "name": "John Stevenson",
  3020. "email": "john-stevenson@blueyonder.co.uk"
  3021. }
  3022. ],
  3023. "description": "Restarts a process without Xdebug.",
  3024. "keywords": [
  3025. "Xdebug",
  3026. "performance"
  3027. ],
  3028. "support": {
  3029. "irc": "ircs://irc.libera.chat:6697/composer",
  3030. "issues": "https://github.com/composer/xdebug-handler/issues",
  3031. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  3032. },
  3033. "funding": [
  3034. {
  3035. "url": "https://packagist.com",
  3036. "type": "custom"
  3037. },
  3038. {
  3039. "url": "https://github.com/composer",
  3040. "type": "github"
  3041. },
  3042. {
  3043. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  3044. "type": "tidelift"
  3045. }
  3046. ],
  3047. "time": "2024-05-06T16:37:16+00:00"
  3048. },
  3049. {
  3050. "name": "ergebnis/agent-detector",
  3051. "version": "1.1.1",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://github.com/ergebnis/agent-detector.git",
  3055. "reference": "5b654a9f1ff8a5d2ce6a57568df5ae8801c87f64"
  3056. },
  3057. "dist": {
  3058. "type": "zip",
  3059. "url": "https://api.github.com/repos/ergebnis/agent-detector/zipball/5b654a9f1ff8a5d2ce6a57568df5ae8801c87f64",
  3060. "reference": "5b654a9f1ff8a5d2ce6a57568df5ae8801c87f64",
  3061. "shasum": ""
  3062. },
  3063. "require": {
  3064. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0 || ~8.6.0"
  3065. },
  3066. "require-dev": {
  3067. "ergebnis/composer-normalize": "^2.50.0",
  3068. "ergebnis/license": "^2.7.0",
  3069. "ergebnis/php-cs-fixer-config": "^6.60.2",
  3070. "ergebnis/phpstan-rules": "^2.13.1",
  3071. "ergebnis/phpunit-slow-test-detector": "^2.24.0",
  3072. "ergebnis/rector-rules": "^1.16.0",
  3073. "fakerphp/faker": "^1.24.1",
  3074. "infection/infection": "^0.26.6",
  3075. "phpstan/extension-installer": "^1.4.3",
  3076. "phpstan/phpstan": "^2.1.46",
  3077. "phpstan/phpstan-deprecation-rules": "^2.0.4",
  3078. "phpstan/phpstan-phpunit": "^2.0.16",
  3079. "phpstan/phpstan-strict-rules": "^2.0.10",
  3080. "phpunit/phpunit": "^9.6.34",
  3081. "rector/rector": "^2.4.1"
  3082. },
  3083. "type": "library",
  3084. "extra": {
  3085. "branch-alias": {
  3086. "dev-main": "1.0-dev"
  3087. },
  3088. "composer-normalize": {
  3089. "indent-size": 2,
  3090. "indent-style": "space"
  3091. }
  3092. },
  3093. "autoload": {
  3094. "psr-4": {
  3095. "Ergebnis\\AgentDetector\\": "src/"
  3096. }
  3097. },
  3098. "notification-url": "https://packagist.org/downloads/",
  3099. "license": [
  3100. "MIT"
  3101. ],
  3102. "authors": [
  3103. {
  3104. "name": "Andreas Möller",
  3105. "email": "am@localheinz.com",
  3106. "homepage": "https://localheinz.com"
  3107. }
  3108. ],
  3109. "description": "Provides a detector for detecting the presence of an agent.",
  3110. "homepage": "https://github.com/ergebnis/agent-detector",
  3111. "support": {
  3112. "issues": "https://github.com/ergebnis/agent-detector/issues",
  3113. "security": "https://github.com/ergebnis/agent-detector/blob/main/.github/SECURITY.md",
  3114. "source": "https://github.com/ergebnis/agent-detector"
  3115. },
  3116. "time": "2026-04-10T13:45:13+00:00"
  3117. },
  3118. {
  3119. "name": "evenement/evenement",
  3120. "version": "v3.0.2",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/igorw/evenement.git",
  3124. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  3129. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "php": ">=7.0"
  3134. },
  3135. "require-dev": {
  3136. "phpunit/phpunit": "^9 || ^6"
  3137. },
  3138. "type": "library",
  3139. "autoload": {
  3140. "psr-4": {
  3141. "Evenement\\": "src/"
  3142. }
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "authors": [
  3149. {
  3150. "name": "Igor Wiedler",
  3151. "email": "igor@wiedler.ch"
  3152. }
  3153. ],
  3154. "description": "Événement is a very simple event dispatching library for PHP",
  3155. "keywords": [
  3156. "event-dispatcher",
  3157. "event-emitter"
  3158. ],
  3159. "support": {
  3160. "issues": "https://github.com/igorw/evenement/issues",
  3161. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  3162. },
  3163. "time": "2023-08-08T05:53:35+00:00"
  3164. },
  3165. {
  3166. "name": "fidry/cpu-core-counter",
  3167. "version": "1.3.0",
  3168. "source": {
  3169. "type": "git",
  3170. "url": "https://github.com/theofidry/cpu-core-counter.git",
  3171. "reference": "db9508f7b1474469d9d3c53b86f817e344732678"
  3172. },
  3173. "dist": {
  3174. "type": "zip",
  3175. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678",
  3176. "reference": "db9508f7b1474469d9d3c53b86f817e344732678",
  3177. "shasum": ""
  3178. },
  3179. "require": {
  3180. "php": "^7.2 || ^8.0"
  3181. },
  3182. "require-dev": {
  3183. "fidry/makefile": "^0.2.0",
  3184. "fidry/php-cs-fixer-config": "^1.1.2",
  3185. "phpstan/extension-installer": "^1.2.0",
  3186. "phpstan/phpstan": "^2.0",
  3187. "phpstan/phpstan-deprecation-rules": "^2.0.0",
  3188. "phpstan/phpstan-phpunit": "^2.0",
  3189. "phpstan/phpstan-strict-rules": "^2.0",
  3190. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  3191. "webmozarts/strict-phpunit": "^7.5"
  3192. },
  3193. "type": "library",
  3194. "autoload": {
  3195. "psr-4": {
  3196. "Fidry\\CpuCoreCounter\\": "src/"
  3197. }
  3198. },
  3199. "notification-url": "https://packagist.org/downloads/",
  3200. "license": [
  3201. "MIT"
  3202. ],
  3203. "authors": [
  3204. {
  3205. "name": "Théo FIDRY",
  3206. "email": "theo.fidry@gmail.com"
  3207. }
  3208. ],
  3209. "description": "Tiny utility to get the number of CPU cores.",
  3210. "keywords": [
  3211. "CPU",
  3212. "core"
  3213. ],
  3214. "support": {
  3215. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  3216. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0"
  3217. },
  3218. "funding": [
  3219. {
  3220. "url": "https://github.com/theofidry",
  3221. "type": "github"
  3222. }
  3223. ],
  3224. "time": "2025-08-14T07:29:31+00:00"
  3225. },
  3226. {
  3227. "name": "friendsofphp/php-cs-fixer",
  3228. "version": "v3.95.1",
  3229. "source": {
  3230. "type": "git",
  3231. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  3232. "reference": "a9727678fbd12997f1d9de8f4a37824ed9df1065"
  3233. },
  3234. "dist": {
  3235. "type": "zip",
  3236. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/a9727678fbd12997f1d9de8f4a37824ed9df1065",
  3237. "reference": "a9727678fbd12997f1d9de8f4a37824ed9df1065",
  3238. "shasum": ""
  3239. },
  3240. "require": {
  3241. "clue/ndjson-react": "^1.3",
  3242. "composer/semver": "^3.4",
  3243. "composer/xdebug-handler": "^3.0.5",
  3244. "ergebnis/agent-detector": "^1.1.1",
  3245. "ext-filter": "*",
  3246. "ext-hash": "*",
  3247. "ext-json": "*",
  3248. "ext-tokenizer": "*",
  3249. "fidry/cpu-core-counter": "^1.3",
  3250. "php": "^7.4 || ^8.0",
  3251. "react/child-process": "^0.6.6",
  3252. "react/event-loop": "^1.5",
  3253. "react/socket": "^1.16",
  3254. "react/stream": "^1.4",
  3255. "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0 || ^8.0",
  3256. "symfony/console": "^5.4.47 || ^6.4.24 || ^7.0 || ^8.0",
  3257. "symfony/event-dispatcher": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3258. "symfony/filesystem": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3259. "symfony/finder": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3260. "symfony/options-resolver": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0",
  3261. "symfony/polyfill-mbstring": "^1.33",
  3262. "symfony/polyfill-php80": "^1.33",
  3263. "symfony/polyfill-php81": "^1.33",
  3264. "symfony/polyfill-php84": "^1.33",
  3265. "symfony/process": "^5.4.47 || ^6.4.24 || ^7.2 || ^8.0",
  3266. "symfony/stopwatch": "^5.4.45 || ^6.4.24 || ^7.0 || ^8.0"
  3267. },
  3268. "require-dev": {
  3269. "facile-it/paraunit": "^1.3.1 || ^2.8.0",
  3270. "infection/infection": "^0.32.6",
  3271. "justinrainbow/json-schema": "^6.8.0",
  3272. "keradus/cli-executor": "^2.3",
  3273. "mikey179/vfsstream": "^1.6.12",
  3274. "php-coveralls/php-coveralls": "^2.9.1",
  3275. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.8",
  3276. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.8",
  3277. "phpunit/phpunit": "^9.6.34 || ^10.5.63 || ^11.5.55",
  3278. "symfony/polyfill-php85": "^1.33",
  3279. "symfony/var-dumper": "^5.4.48 || ^6.4.32 || ^7.4.4 || ^8.0.8",
  3280. "symfony/yaml": "^5.4.45 || ^6.4.30 || ^7.4.1 || ^8.0.8"
  3281. },
  3282. "suggest": {
  3283. "ext-dom": "For handling output formats in XML",
  3284. "ext-mbstring": "For handling non-UTF8 characters."
  3285. },
  3286. "bin": [
  3287. "php-cs-fixer"
  3288. ],
  3289. "type": "application",
  3290. "autoload": {
  3291. "psr-4": {
  3292. "PhpCsFixer\\": "src/"
  3293. },
  3294. "exclude-from-classmap": [
  3295. "src/**/Internal/"
  3296. ]
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Fabien Potencier",
  3305. "email": "fabien@symfony.com"
  3306. },
  3307. {
  3308. "name": "Dariusz Rumiński",
  3309. "email": "dariusz.ruminski@gmail.com"
  3310. }
  3311. ],
  3312. "description": "A tool to automatically fix PHP code style",
  3313. "keywords": [
  3314. "Static code analysis",
  3315. "fixer",
  3316. "standards",
  3317. "static analysis"
  3318. ],
  3319. "support": {
  3320. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  3321. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.95.1"
  3322. },
  3323. "funding": [
  3324. {
  3325. "url": "https://github.com/keradus",
  3326. "type": "github"
  3327. }
  3328. ],
  3329. "time": "2026-04-12T17:00:09+00:00"
  3330. },
  3331. {
  3332. "name": "graham-campbell/result-type",
  3333. "version": "v1.1.4",
  3334. "source": {
  3335. "type": "git",
  3336. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  3337. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  3338. },
  3339. "dist": {
  3340. "type": "zip",
  3341. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  3342. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  3343. "shasum": ""
  3344. },
  3345. "require": {
  3346. "php": "^7.2.5 || ^8.0",
  3347. "phpoption/phpoption": "^1.9.5"
  3348. },
  3349. "require-dev": {
  3350. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  3351. },
  3352. "type": "library",
  3353. "autoload": {
  3354. "psr-4": {
  3355. "GrahamCampbell\\ResultType\\": "src/"
  3356. }
  3357. },
  3358. "notification-url": "https://packagist.org/downloads/",
  3359. "license": [
  3360. "MIT"
  3361. ],
  3362. "authors": [
  3363. {
  3364. "name": "Graham Campbell",
  3365. "email": "hello@gjcampbell.co.uk",
  3366. "homepage": "https://github.com/GrahamCampbell"
  3367. }
  3368. ],
  3369. "description": "An Implementation Of The Result Type",
  3370. "keywords": [
  3371. "Graham Campbell",
  3372. "GrahamCampbell",
  3373. "Result Type",
  3374. "Result-Type",
  3375. "result"
  3376. ],
  3377. "support": {
  3378. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  3379. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  3380. },
  3381. "funding": [
  3382. {
  3383. "url": "https://github.com/GrahamCampbell",
  3384. "type": "github"
  3385. },
  3386. {
  3387. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  3388. "type": "tidelift"
  3389. }
  3390. ],
  3391. "time": "2025-12-27T19:43:20+00:00"
  3392. },
  3393. {
  3394. "name": "myclabs/deep-copy",
  3395. "version": "1.13.4",
  3396. "source": {
  3397. "type": "git",
  3398. "url": "https://github.com/myclabs/DeepCopy.git",
  3399. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  3400. },
  3401. "dist": {
  3402. "type": "zip",
  3403. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  3404. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  3405. "shasum": ""
  3406. },
  3407. "require": {
  3408. "php": "^7.1 || ^8.0"
  3409. },
  3410. "conflict": {
  3411. "doctrine/collections": "<1.6.8",
  3412. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  3413. },
  3414. "require-dev": {
  3415. "doctrine/collections": "^1.6.8",
  3416. "doctrine/common": "^2.13.3 || ^3.2.2",
  3417. "phpspec/prophecy": "^1.10",
  3418. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  3419. },
  3420. "type": "library",
  3421. "autoload": {
  3422. "files": [
  3423. "src/DeepCopy/deep_copy.php"
  3424. ],
  3425. "psr-4": {
  3426. "DeepCopy\\": "src/DeepCopy/"
  3427. }
  3428. },
  3429. "notification-url": "https://packagist.org/downloads/",
  3430. "license": [
  3431. "MIT"
  3432. ],
  3433. "description": "Create deep copies (clones) of your objects",
  3434. "keywords": [
  3435. "clone",
  3436. "copy",
  3437. "duplicate",
  3438. "object",
  3439. "object graph"
  3440. ],
  3441. "support": {
  3442. "issues": "https://github.com/myclabs/DeepCopy/issues",
  3443. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  3444. },
  3445. "funding": [
  3446. {
  3447. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3448. "type": "tidelift"
  3449. }
  3450. ],
  3451. "time": "2025-08-01T08:46:24+00:00"
  3452. },
  3453. {
  3454. "name": "nikic/php-parser",
  3455. "version": "v5.7.0",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://github.com/nikic/PHP-Parser.git",
  3459. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3464. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3465. "shasum": ""
  3466. },
  3467. "require": {
  3468. "ext-ctype": "*",
  3469. "ext-json": "*",
  3470. "ext-tokenizer": "*",
  3471. "php": ">=7.4"
  3472. },
  3473. "require-dev": {
  3474. "ircmaxell/php-yacc": "^0.0.7",
  3475. "phpunit/phpunit": "^9.0"
  3476. },
  3477. "bin": [
  3478. "bin/php-parse"
  3479. ],
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-master": "5.x-dev"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "psr-4": {
  3488. "PhpParser\\": "lib/PhpParser"
  3489. }
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "BSD-3-Clause"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Nikita Popov"
  3498. }
  3499. ],
  3500. "description": "A PHP parser written in PHP",
  3501. "keywords": [
  3502. "parser",
  3503. "php"
  3504. ],
  3505. "support": {
  3506. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3507. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  3508. },
  3509. "time": "2025-12-06T11:56:16+00:00"
  3510. },
  3511. {
  3512. "name": "phar-io/manifest",
  3513. "version": "2.0.4",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/phar-io/manifest.git",
  3517. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  3522. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "ext-dom": "*",
  3527. "ext-libxml": "*",
  3528. "ext-phar": "*",
  3529. "ext-xmlwriter": "*",
  3530. "phar-io/version": "^3.0.1",
  3531. "php": "^7.2 || ^8.0"
  3532. },
  3533. "type": "library",
  3534. "extra": {
  3535. "branch-alias": {
  3536. "dev-master": "2.0.x-dev"
  3537. }
  3538. },
  3539. "autoload": {
  3540. "classmap": [
  3541. "src/"
  3542. ]
  3543. },
  3544. "notification-url": "https://packagist.org/downloads/",
  3545. "license": [
  3546. "BSD-3-Clause"
  3547. ],
  3548. "authors": [
  3549. {
  3550. "name": "Arne Blankerts",
  3551. "email": "arne@blankerts.de",
  3552. "role": "Developer"
  3553. },
  3554. {
  3555. "name": "Sebastian Heuer",
  3556. "email": "sebastian@phpeople.de",
  3557. "role": "Developer"
  3558. },
  3559. {
  3560. "name": "Sebastian Bergmann",
  3561. "email": "sebastian@phpunit.de",
  3562. "role": "Developer"
  3563. }
  3564. ],
  3565. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3566. "support": {
  3567. "issues": "https://github.com/phar-io/manifest/issues",
  3568. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  3569. },
  3570. "funding": [
  3571. {
  3572. "url": "https://github.com/theseer",
  3573. "type": "github"
  3574. }
  3575. ],
  3576. "time": "2024-03-03T12:33:53+00:00"
  3577. },
  3578. {
  3579. "name": "phar-io/version",
  3580. "version": "3.2.1",
  3581. "source": {
  3582. "type": "git",
  3583. "url": "https://github.com/phar-io/version.git",
  3584. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  3585. },
  3586. "dist": {
  3587. "type": "zip",
  3588. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3589. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  3590. "shasum": ""
  3591. },
  3592. "require": {
  3593. "php": "^7.2 || ^8.0"
  3594. },
  3595. "type": "library",
  3596. "autoload": {
  3597. "classmap": [
  3598. "src/"
  3599. ]
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "BSD-3-Clause"
  3604. ],
  3605. "authors": [
  3606. {
  3607. "name": "Arne Blankerts",
  3608. "email": "arne@blankerts.de",
  3609. "role": "Developer"
  3610. },
  3611. {
  3612. "name": "Sebastian Heuer",
  3613. "email": "sebastian@phpeople.de",
  3614. "role": "Developer"
  3615. },
  3616. {
  3617. "name": "Sebastian Bergmann",
  3618. "email": "sebastian@phpunit.de",
  3619. "role": "Developer"
  3620. }
  3621. ],
  3622. "description": "Library for handling version information and constraints",
  3623. "support": {
  3624. "issues": "https://github.com/phar-io/version/issues",
  3625. "source": "https://github.com/phar-io/version/tree/3.2.1"
  3626. },
  3627. "time": "2022-02-21T01:04:05+00:00"
  3628. },
  3629. {
  3630. "name": "phpoption/phpoption",
  3631. "version": "1.9.5",
  3632. "source": {
  3633. "type": "git",
  3634. "url": "https://github.com/schmittjoh/php-option.git",
  3635. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
  3636. },
  3637. "dist": {
  3638. "type": "zip",
  3639. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
  3640. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
  3641. "shasum": ""
  3642. },
  3643. "require": {
  3644. "php": "^7.2.5 || ^8.0"
  3645. },
  3646. "require-dev": {
  3647. "bamarni/composer-bin-plugin": "^1.8.2",
  3648. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  3649. },
  3650. "type": "library",
  3651. "extra": {
  3652. "bamarni-bin": {
  3653. "bin-links": true,
  3654. "forward-command": false
  3655. },
  3656. "branch-alias": {
  3657. "dev-master": "1.9-dev"
  3658. }
  3659. },
  3660. "autoload": {
  3661. "psr-4": {
  3662. "PhpOption\\": "src/PhpOption/"
  3663. }
  3664. },
  3665. "notification-url": "https://packagist.org/downloads/",
  3666. "license": [
  3667. "Apache-2.0"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Johannes M. Schmitt",
  3672. "email": "schmittjoh@gmail.com",
  3673. "homepage": "https://github.com/schmittjoh"
  3674. },
  3675. {
  3676. "name": "Graham Campbell",
  3677. "email": "hello@gjcampbell.co.uk",
  3678. "homepage": "https://github.com/GrahamCampbell"
  3679. }
  3680. ],
  3681. "description": "Option Type for PHP",
  3682. "keywords": [
  3683. "language",
  3684. "option",
  3685. "php",
  3686. "type"
  3687. ],
  3688. "support": {
  3689. "issues": "https://github.com/schmittjoh/php-option/issues",
  3690. "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
  3691. },
  3692. "funding": [
  3693. {
  3694. "url": "https://github.com/GrahamCampbell",
  3695. "type": "github"
  3696. },
  3697. {
  3698. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3699. "type": "tidelift"
  3700. }
  3701. ],
  3702. "time": "2025-12-27T19:41:33+00:00"
  3703. },
  3704. {
  3705. "name": "phpstan/phpstan",
  3706. "version": "1.12.33",
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/37982d6fc7cbb746dda7773530cda557cdf119e1",
  3710. "reference": "37982d6fc7cbb746dda7773530cda557cdf119e1",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "php": "^7.2|^8.0"
  3715. },
  3716. "conflict": {
  3717. "phpstan/phpstan-shim": "*"
  3718. },
  3719. "bin": [
  3720. "phpstan",
  3721. "phpstan.phar"
  3722. ],
  3723. "type": "library",
  3724. "autoload": {
  3725. "files": [
  3726. "bootstrap.php"
  3727. ]
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "description": "PHPStan - PHP Static Analysis Tool",
  3734. "keywords": [
  3735. "dev",
  3736. "static analysis"
  3737. ],
  3738. "support": {
  3739. "docs": "https://phpstan.org/user-guide/getting-started",
  3740. "forum": "https://github.com/phpstan/phpstan/discussions",
  3741. "issues": "https://github.com/phpstan/phpstan/issues",
  3742. "security": "https://github.com/phpstan/phpstan/security/policy",
  3743. "source": "https://github.com/phpstan/phpstan-src"
  3744. },
  3745. "funding": [
  3746. {
  3747. "url": "https://github.com/ondrejmirtes",
  3748. "type": "github"
  3749. },
  3750. {
  3751. "url": "https://github.com/phpstan",
  3752. "type": "github"
  3753. }
  3754. ],
  3755. "time": "2026-02-28T20:30:03+00:00"
  3756. },
  3757. {
  3758. "name": "phpunit/php-code-coverage",
  3759. "version": "11.0.12",
  3760. "source": {
  3761. "type": "git",
  3762. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3763. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56"
  3764. },
  3765. "dist": {
  3766. "type": "zip",
  3767. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56",
  3768. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56",
  3769. "shasum": ""
  3770. },
  3771. "require": {
  3772. "ext-dom": "*",
  3773. "ext-libxml": "*",
  3774. "ext-xmlwriter": "*",
  3775. "nikic/php-parser": "^5.7.0",
  3776. "php": ">=8.2",
  3777. "phpunit/php-file-iterator": "^5.1.0",
  3778. "phpunit/php-text-template": "^4.0.1",
  3779. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  3780. "sebastian/complexity": "^4.0.1",
  3781. "sebastian/environment": "^7.2.1",
  3782. "sebastian/lines-of-code": "^3.0.1",
  3783. "sebastian/version": "^5.0.2",
  3784. "theseer/tokenizer": "^1.3.1"
  3785. },
  3786. "require-dev": {
  3787. "phpunit/phpunit": "^11.5.46"
  3788. },
  3789. "suggest": {
  3790. "ext-pcov": "PHP extension that provides line coverage",
  3791. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  3792. },
  3793. "type": "library",
  3794. "extra": {
  3795. "branch-alias": {
  3796. "dev-main": "11.0.x-dev"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "classmap": [
  3801. "src/"
  3802. ]
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "BSD-3-Clause"
  3807. ],
  3808. "authors": [
  3809. {
  3810. "name": "Sebastian Bergmann",
  3811. "email": "sebastian@phpunit.de",
  3812. "role": "lead"
  3813. }
  3814. ],
  3815. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3816. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3817. "keywords": [
  3818. "coverage",
  3819. "testing",
  3820. "xunit"
  3821. ],
  3822. "support": {
  3823. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3824. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  3825. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12"
  3826. },
  3827. "funding": [
  3828. {
  3829. "url": "https://github.com/sebastianbergmann",
  3830. "type": "github"
  3831. },
  3832. {
  3833. "url": "https://liberapay.com/sebastianbergmann",
  3834. "type": "liberapay"
  3835. },
  3836. {
  3837. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  3838. "type": "thanks_dev"
  3839. },
  3840. {
  3841. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  3842. "type": "tidelift"
  3843. }
  3844. ],
  3845. "time": "2025-12-24T07:01:01+00:00"
  3846. },
  3847. {
  3848. "name": "phpunit/php-file-iterator",
  3849. "version": "5.1.1",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3853. "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/2f3a64888c814fc235386b7387dd5b5ed92ad903",
  3858. "reference": "2f3a64888c814fc235386b7387dd5b5ed92ad903",
  3859. "shasum": ""
  3860. },
  3861. "require": {
  3862. "php": ">=8.2"
  3863. },
  3864. "require-dev": {
  3865. "phpunit/phpunit": "^11.3"
  3866. },
  3867. "type": "library",
  3868. "extra": {
  3869. "branch-alias": {
  3870. "dev-main": "5.1-dev"
  3871. }
  3872. },
  3873. "autoload": {
  3874. "classmap": [
  3875. "src/"
  3876. ]
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "BSD-3-Clause"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Sebastian Bergmann",
  3885. "email": "sebastian@phpunit.de",
  3886. "role": "lead"
  3887. }
  3888. ],
  3889. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3890. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3891. "keywords": [
  3892. "filesystem",
  3893. "iterator"
  3894. ],
  3895. "support": {
  3896. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3897. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  3898. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.1"
  3899. },
  3900. "funding": [
  3901. {
  3902. "url": "https://github.com/sebastianbergmann",
  3903. "type": "github"
  3904. },
  3905. {
  3906. "url": "https://liberapay.com/sebastianbergmann",
  3907. "type": "liberapay"
  3908. },
  3909. {
  3910. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  3911. "type": "thanks_dev"
  3912. },
  3913. {
  3914. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-file-iterator",
  3915. "type": "tidelift"
  3916. }
  3917. ],
  3918. "time": "2026-02-02T13:52:54+00:00"
  3919. },
  3920. {
  3921. "name": "phpunit/php-invoker",
  3922. "version": "5.0.1",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  3926. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  3931. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "php": ">=8.2"
  3936. },
  3937. "require-dev": {
  3938. "ext-pcntl": "*",
  3939. "phpunit/phpunit": "^11.0"
  3940. },
  3941. "suggest": {
  3942. "ext-pcntl": "*"
  3943. },
  3944. "type": "library",
  3945. "extra": {
  3946. "branch-alias": {
  3947. "dev-main": "5.0-dev"
  3948. }
  3949. },
  3950. "autoload": {
  3951. "classmap": [
  3952. "src/"
  3953. ]
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "BSD-3-Clause"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Sebastian Bergmann",
  3962. "email": "sebastian@phpunit.de",
  3963. "role": "lead"
  3964. }
  3965. ],
  3966. "description": "Invoke callables with a timeout",
  3967. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  3968. "keywords": [
  3969. "process"
  3970. ],
  3971. "support": {
  3972. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  3973. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  3974. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  3975. },
  3976. "funding": [
  3977. {
  3978. "url": "https://github.com/sebastianbergmann",
  3979. "type": "github"
  3980. }
  3981. ],
  3982. "time": "2024-07-03T05:07:44+00:00"
  3983. },
  3984. {
  3985. "name": "phpunit/php-text-template",
  3986. "version": "4.0.1",
  3987. "source": {
  3988. "type": "git",
  3989. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3990. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  3991. },
  3992. "dist": {
  3993. "type": "zip",
  3994. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  3995. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  3996. "shasum": ""
  3997. },
  3998. "require": {
  3999. "php": ">=8.2"
  4000. },
  4001. "require-dev": {
  4002. "phpunit/phpunit": "^11.0"
  4003. },
  4004. "type": "library",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-main": "4.0-dev"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "classmap": [
  4012. "src/"
  4013. ]
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "BSD-3-Clause"
  4018. ],
  4019. "authors": [
  4020. {
  4021. "name": "Sebastian Bergmann",
  4022. "email": "sebastian@phpunit.de",
  4023. "role": "lead"
  4024. }
  4025. ],
  4026. "description": "Simple template engine.",
  4027. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4028. "keywords": [
  4029. "template"
  4030. ],
  4031. "support": {
  4032. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4033. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  4034. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  4035. },
  4036. "funding": [
  4037. {
  4038. "url": "https://github.com/sebastianbergmann",
  4039. "type": "github"
  4040. }
  4041. ],
  4042. "time": "2024-07-03T05:08:43+00:00"
  4043. },
  4044. {
  4045. "name": "phpunit/php-timer",
  4046. "version": "7.0.1",
  4047. "source": {
  4048. "type": "git",
  4049. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4050. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  4051. },
  4052. "dist": {
  4053. "type": "zip",
  4054. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  4055. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  4056. "shasum": ""
  4057. },
  4058. "require": {
  4059. "php": ">=8.2"
  4060. },
  4061. "require-dev": {
  4062. "phpunit/phpunit": "^11.0"
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-main": "7.0-dev"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "classmap": [
  4072. "src/"
  4073. ]
  4074. },
  4075. "notification-url": "https://packagist.org/downloads/",
  4076. "license": [
  4077. "BSD-3-Clause"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "Sebastian Bergmann",
  4082. "email": "sebastian@phpunit.de",
  4083. "role": "lead"
  4084. }
  4085. ],
  4086. "description": "Utility class for timing",
  4087. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4088. "keywords": [
  4089. "timer"
  4090. ],
  4091. "support": {
  4092. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4093. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  4094. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  4095. },
  4096. "funding": [
  4097. {
  4098. "url": "https://github.com/sebastianbergmann",
  4099. "type": "github"
  4100. }
  4101. ],
  4102. "time": "2024-07-03T05:09:35+00:00"
  4103. },
  4104. {
  4105. "name": "phpunit/phpunit",
  4106. "version": "11.5.55",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4110. "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/adc7262fccc12de2b30f12a8aa0b33775d814f00",
  4115. "reference": "adc7262fccc12de2b30f12a8aa0b33775d814f00",
  4116. "shasum": ""
  4117. },
  4118. "require": {
  4119. "ext-dom": "*",
  4120. "ext-json": "*",
  4121. "ext-libxml": "*",
  4122. "ext-mbstring": "*",
  4123. "ext-xml": "*",
  4124. "ext-xmlwriter": "*",
  4125. "myclabs/deep-copy": "^1.13.4",
  4126. "phar-io/manifest": "^2.0.4",
  4127. "phar-io/version": "^3.2.1",
  4128. "php": ">=8.2",
  4129. "phpunit/php-code-coverage": "^11.0.12",
  4130. "phpunit/php-file-iterator": "^5.1.1",
  4131. "phpunit/php-invoker": "^5.0.1",
  4132. "phpunit/php-text-template": "^4.0.1",
  4133. "phpunit/php-timer": "^7.0.1",
  4134. "sebastian/cli-parser": "^3.0.2",
  4135. "sebastian/code-unit": "^3.0.3",
  4136. "sebastian/comparator": "^6.3.3",
  4137. "sebastian/diff": "^6.0.2",
  4138. "sebastian/environment": "^7.2.1",
  4139. "sebastian/exporter": "^6.3.2",
  4140. "sebastian/global-state": "^7.0.2",
  4141. "sebastian/object-enumerator": "^6.0.1",
  4142. "sebastian/recursion-context": "^6.0.3",
  4143. "sebastian/type": "^5.1.3",
  4144. "sebastian/version": "^5.0.2",
  4145. "staabm/side-effects-detector": "^1.0.5"
  4146. },
  4147. "suggest": {
  4148. "ext-soap": "To be able to generate mocks based on WSDL files"
  4149. },
  4150. "bin": [
  4151. "phpunit"
  4152. ],
  4153. "type": "library",
  4154. "extra": {
  4155. "branch-alias": {
  4156. "dev-main": "11.5-dev"
  4157. }
  4158. },
  4159. "autoload": {
  4160. "files": [
  4161. "src/Framework/Assert/Functions.php"
  4162. ],
  4163. "classmap": [
  4164. "src/"
  4165. ]
  4166. },
  4167. "notification-url": "https://packagist.org/downloads/",
  4168. "license": [
  4169. "BSD-3-Clause"
  4170. ],
  4171. "authors": [
  4172. {
  4173. "name": "Sebastian Bergmann",
  4174. "email": "sebastian@phpunit.de",
  4175. "role": "lead"
  4176. }
  4177. ],
  4178. "description": "The PHP Unit Testing framework.",
  4179. "homepage": "https://phpunit.de/",
  4180. "keywords": [
  4181. "phpunit",
  4182. "testing",
  4183. "xunit"
  4184. ],
  4185. "support": {
  4186. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4187. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  4188. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.55"
  4189. },
  4190. "funding": [
  4191. {
  4192. "url": "https://phpunit.de/sponsors.html",
  4193. "type": "custom"
  4194. },
  4195. {
  4196. "url": "https://github.com/sebastianbergmann",
  4197. "type": "github"
  4198. },
  4199. {
  4200. "url": "https://liberapay.com/sebastianbergmann",
  4201. "type": "liberapay"
  4202. },
  4203. {
  4204. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4205. "type": "thanks_dev"
  4206. },
  4207. {
  4208. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  4209. "type": "tidelift"
  4210. }
  4211. ],
  4212. "time": "2026-02-18T12:37:06+00:00"
  4213. },
  4214. {
  4215. "name": "react/cache",
  4216. "version": "v1.2.0",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/reactphp/cache.git",
  4220. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4225. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4226. "shasum": ""
  4227. },
  4228. "require": {
  4229. "php": ">=5.3.0",
  4230. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4231. },
  4232. "require-dev": {
  4233. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4234. },
  4235. "type": "library",
  4236. "autoload": {
  4237. "psr-4": {
  4238. "React\\Cache\\": "src/"
  4239. }
  4240. },
  4241. "notification-url": "https://packagist.org/downloads/",
  4242. "license": [
  4243. "MIT"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Christian Lück",
  4248. "email": "christian@clue.engineering",
  4249. "homepage": "https://clue.engineering/"
  4250. },
  4251. {
  4252. "name": "Cees-Jan Kiewiet",
  4253. "email": "reactphp@ceesjankiewiet.nl",
  4254. "homepage": "https://wyrihaximus.net/"
  4255. },
  4256. {
  4257. "name": "Jan Sorgalla",
  4258. "email": "jsorgalla@gmail.com",
  4259. "homepage": "https://sorgalla.com/"
  4260. },
  4261. {
  4262. "name": "Chris Boden",
  4263. "email": "cboden@gmail.com",
  4264. "homepage": "https://cboden.dev/"
  4265. }
  4266. ],
  4267. "description": "Async, Promise-based cache interface for ReactPHP",
  4268. "keywords": [
  4269. "cache",
  4270. "caching",
  4271. "promise",
  4272. "reactphp"
  4273. ],
  4274. "support": {
  4275. "issues": "https://github.com/reactphp/cache/issues",
  4276. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4277. },
  4278. "funding": [
  4279. {
  4280. "url": "https://opencollective.com/reactphp",
  4281. "type": "open_collective"
  4282. }
  4283. ],
  4284. "time": "2022-11-30T15:59:55+00:00"
  4285. },
  4286. {
  4287. "name": "react/child-process",
  4288. "version": "v0.6.7",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://github.com/reactphp/child-process.git",
  4292. "reference": "970f0e71945556422ee4570ccbabaedc3cf04ad3"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://api.github.com/repos/reactphp/child-process/zipball/970f0e71945556422ee4570ccbabaedc3cf04ad3",
  4297. "reference": "970f0e71945556422ee4570ccbabaedc3cf04ad3",
  4298. "shasum": ""
  4299. },
  4300. "require": {
  4301. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4302. "php": ">=5.3.0",
  4303. "react/event-loop": "^1.2",
  4304. "react/stream": "^1.4"
  4305. },
  4306. "require-dev": {
  4307. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4308. "react/socket": "^1.16",
  4309. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  4310. },
  4311. "type": "library",
  4312. "autoload": {
  4313. "psr-4": {
  4314. "React\\ChildProcess\\": "src/"
  4315. }
  4316. },
  4317. "notification-url": "https://packagist.org/downloads/",
  4318. "license": [
  4319. "MIT"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "Christian Lück",
  4324. "email": "christian@clue.engineering",
  4325. "homepage": "https://clue.engineering/"
  4326. },
  4327. {
  4328. "name": "Cees-Jan Kiewiet",
  4329. "email": "reactphp@ceesjankiewiet.nl",
  4330. "homepage": "https://wyrihaximus.net/"
  4331. },
  4332. {
  4333. "name": "Jan Sorgalla",
  4334. "email": "jsorgalla@gmail.com",
  4335. "homepage": "https://sorgalla.com/"
  4336. },
  4337. {
  4338. "name": "Chris Boden",
  4339. "email": "cboden@gmail.com",
  4340. "homepage": "https://cboden.dev/"
  4341. }
  4342. ],
  4343. "description": "Event-driven library for executing child processes with ReactPHP.",
  4344. "keywords": [
  4345. "event-driven",
  4346. "process",
  4347. "reactphp"
  4348. ],
  4349. "support": {
  4350. "issues": "https://github.com/reactphp/child-process/issues",
  4351. "source": "https://github.com/reactphp/child-process/tree/v0.6.7"
  4352. },
  4353. "funding": [
  4354. {
  4355. "url": "https://opencollective.com/reactphp",
  4356. "type": "open_collective"
  4357. }
  4358. ],
  4359. "time": "2025-12-23T15:25:20+00:00"
  4360. },
  4361. {
  4362. "name": "react/dns",
  4363. "version": "v1.14.0",
  4364. "source": {
  4365. "type": "git",
  4366. "url": "https://github.com/reactphp/dns.git",
  4367. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3"
  4368. },
  4369. "dist": {
  4370. "type": "zip",
  4371. "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3",
  4372. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3",
  4373. "shasum": ""
  4374. },
  4375. "require": {
  4376. "php": ">=5.3.0",
  4377. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4378. "react/event-loop": "^1.2",
  4379. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4380. },
  4381. "require-dev": {
  4382. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4383. "react/async": "^4.3 || ^3 || ^2",
  4384. "react/promise-timer": "^1.11"
  4385. },
  4386. "type": "library",
  4387. "autoload": {
  4388. "psr-4": {
  4389. "React\\Dns\\": "src/"
  4390. }
  4391. },
  4392. "notification-url": "https://packagist.org/downloads/",
  4393. "license": [
  4394. "MIT"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "Christian Lück",
  4399. "email": "christian@clue.engineering",
  4400. "homepage": "https://clue.engineering/"
  4401. },
  4402. {
  4403. "name": "Cees-Jan Kiewiet",
  4404. "email": "reactphp@ceesjankiewiet.nl",
  4405. "homepage": "https://wyrihaximus.net/"
  4406. },
  4407. {
  4408. "name": "Jan Sorgalla",
  4409. "email": "jsorgalla@gmail.com",
  4410. "homepage": "https://sorgalla.com/"
  4411. },
  4412. {
  4413. "name": "Chris Boden",
  4414. "email": "cboden@gmail.com",
  4415. "homepage": "https://cboden.dev/"
  4416. }
  4417. ],
  4418. "description": "Async DNS resolver for ReactPHP",
  4419. "keywords": [
  4420. "async",
  4421. "dns",
  4422. "dns-resolver",
  4423. "reactphp"
  4424. ],
  4425. "support": {
  4426. "issues": "https://github.com/reactphp/dns/issues",
  4427. "source": "https://github.com/reactphp/dns/tree/v1.14.0"
  4428. },
  4429. "funding": [
  4430. {
  4431. "url": "https://opencollective.com/reactphp",
  4432. "type": "open_collective"
  4433. }
  4434. ],
  4435. "time": "2025-11-18T19:34:28+00:00"
  4436. },
  4437. {
  4438. "name": "react/event-loop",
  4439. "version": "v1.6.0",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://github.com/reactphp/event-loop.git",
  4443. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4448. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4449. "shasum": ""
  4450. },
  4451. "require": {
  4452. "php": ">=5.3.0"
  4453. },
  4454. "require-dev": {
  4455. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4456. },
  4457. "suggest": {
  4458. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4459. },
  4460. "type": "library",
  4461. "autoload": {
  4462. "psr-4": {
  4463. "React\\EventLoop\\": "src/"
  4464. }
  4465. },
  4466. "notification-url": "https://packagist.org/downloads/",
  4467. "license": [
  4468. "MIT"
  4469. ],
  4470. "authors": [
  4471. {
  4472. "name": "Christian Lück",
  4473. "email": "christian@clue.engineering",
  4474. "homepage": "https://clue.engineering/"
  4475. },
  4476. {
  4477. "name": "Cees-Jan Kiewiet",
  4478. "email": "reactphp@ceesjankiewiet.nl",
  4479. "homepage": "https://wyrihaximus.net/"
  4480. },
  4481. {
  4482. "name": "Jan Sorgalla",
  4483. "email": "jsorgalla@gmail.com",
  4484. "homepage": "https://sorgalla.com/"
  4485. },
  4486. {
  4487. "name": "Chris Boden",
  4488. "email": "cboden@gmail.com",
  4489. "homepage": "https://cboden.dev/"
  4490. }
  4491. ],
  4492. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4493. "keywords": [
  4494. "asynchronous",
  4495. "event-loop"
  4496. ],
  4497. "support": {
  4498. "issues": "https://github.com/reactphp/event-loop/issues",
  4499. "source": "https://github.com/reactphp/event-loop/tree/v1.6.0"
  4500. },
  4501. "funding": [
  4502. {
  4503. "url": "https://opencollective.com/reactphp",
  4504. "type": "open_collective"
  4505. }
  4506. ],
  4507. "time": "2025-11-17T20:46:25+00:00"
  4508. },
  4509. {
  4510. "name": "react/promise",
  4511. "version": "v3.3.0",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://github.com/reactphp/promise.git",
  4515. "reference": "23444f53a813a3296c1368bb104793ce8d88f04a"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a",
  4520. "reference": "23444f53a813a3296c1368bb104793ce8d88f04a",
  4521. "shasum": ""
  4522. },
  4523. "require": {
  4524. "php": ">=7.1.0"
  4525. },
  4526. "require-dev": {
  4527. "phpstan/phpstan": "1.12.28 || 1.4.10",
  4528. "phpunit/phpunit": "^9.6 || ^7.5"
  4529. },
  4530. "type": "library",
  4531. "autoload": {
  4532. "files": [
  4533. "src/functions_include.php"
  4534. ],
  4535. "psr-4": {
  4536. "React\\Promise\\": "src/"
  4537. }
  4538. },
  4539. "notification-url": "https://packagist.org/downloads/",
  4540. "license": [
  4541. "MIT"
  4542. ],
  4543. "authors": [
  4544. {
  4545. "name": "Jan Sorgalla",
  4546. "email": "jsorgalla@gmail.com",
  4547. "homepage": "https://sorgalla.com/"
  4548. },
  4549. {
  4550. "name": "Christian Lück",
  4551. "email": "christian@clue.engineering",
  4552. "homepage": "https://clue.engineering/"
  4553. },
  4554. {
  4555. "name": "Cees-Jan Kiewiet",
  4556. "email": "reactphp@ceesjankiewiet.nl",
  4557. "homepage": "https://wyrihaximus.net/"
  4558. },
  4559. {
  4560. "name": "Chris Boden",
  4561. "email": "cboden@gmail.com",
  4562. "homepage": "https://cboden.dev/"
  4563. }
  4564. ],
  4565. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4566. "keywords": [
  4567. "promise",
  4568. "promises"
  4569. ],
  4570. "support": {
  4571. "issues": "https://github.com/reactphp/promise/issues",
  4572. "source": "https://github.com/reactphp/promise/tree/v3.3.0"
  4573. },
  4574. "funding": [
  4575. {
  4576. "url": "https://opencollective.com/reactphp",
  4577. "type": "open_collective"
  4578. }
  4579. ],
  4580. "time": "2025-08-19T18:57:03+00:00"
  4581. },
  4582. {
  4583. "name": "react/socket",
  4584. "version": "v1.17.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/reactphp/socket.git",
  4588. "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/reactphp/socket/zipball/ef5b17b81f6f60504c539313f94f2d826c5faa08",
  4593. "reference": "ef5b17b81f6f60504c539313f94f2d826c5faa08",
  4594. "shasum": ""
  4595. },
  4596. "require": {
  4597. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4598. "php": ">=5.3.0",
  4599. "react/dns": "^1.13",
  4600. "react/event-loop": "^1.2",
  4601. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  4602. "react/stream": "^1.4"
  4603. },
  4604. "require-dev": {
  4605. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4606. "react/async": "^4.3 || ^3.3 || ^2",
  4607. "react/promise-stream": "^1.4",
  4608. "react/promise-timer": "^1.11"
  4609. },
  4610. "type": "library",
  4611. "autoload": {
  4612. "psr-4": {
  4613. "React\\Socket\\": "src/"
  4614. }
  4615. },
  4616. "notification-url": "https://packagist.org/downloads/",
  4617. "license": [
  4618. "MIT"
  4619. ],
  4620. "authors": [
  4621. {
  4622. "name": "Christian Lück",
  4623. "email": "christian@clue.engineering",
  4624. "homepage": "https://clue.engineering/"
  4625. },
  4626. {
  4627. "name": "Cees-Jan Kiewiet",
  4628. "email": "reactphp@ceesjankiewiet.nl",
  4629. "homepage": "https://wyrihaximus.net/"
  4630. },
  4631. {
  4632. "name": "Jan Sorgalla",
  4633. "email": "jsorgalla@gmail.com",
  4634. "homepage": "https://sorgalla.com/"
  4635. },
  4636. {
  4637. "name": "Chris Boden",
  4638. "email": "cboden@gmail.com",
  4639. "homepage": "https://cboden.dev/"
  4640. }
  4641. ],
  4642. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  4643. "keywords": [
  4644. "Connection",
  4645. "Socket",
  4646. "async",
  4647. "reactphp",
  4648. "stream"
  4649. ],
  4650. "support": {
  4651. "issues": "https://github.com/reactphp/socket/issues",
  4652. "source": "https://github.com/reactphp/socket/tree/v1.17.0"
  4653. },
  4654. "funding": [
  4655. {
  4656. "url": "https://opencollective.com/reactphp",
  4657. "type": "open_collective"
  4658. }
  4659. ],
  4660. "time": "2025-11-19T20:47:34+00:00"
  4661. },
  4662. {
  4663. "name": "react/stream",
  4664. "version": "v1.4.0",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/reactphp/stream.git",
  4668. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  4673. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  4674. "shasum": ""
  4675. },
  4676. "require": {
  4677. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  4678. "php": ">=5.3.8",
  4679. "react/event-loop": "^1.2"
  4680. },
  4681. "require-dev": {
  4682. "clue/stream-filter": "~1.2",
  4683. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4684. },
  4685. "type": "library",
  4686. "autoload": {
  4687. "psr-4": {
  4688. "React\\Stream\\": "src/"
  4689. }
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Christian Lück",
  4698. "email": "christian@clue.engineering",
  4699. "homepage": "https://clue.engineering/"
  4700. },
  4701. {
  4702. "name": "Cees-Jan Kiewiet",
  4703. "email": "reactphp@ceesjankiewiet.nl",
  4704. "homepage": "https://wyrihaximus.net/"
  4705. },
  4706. {
  4707. "name": "Jan Sorgalla",
  4708. "email": "jsorgalla@gmail.com",
  4709. "homepage": "https://sorgalla.com/"
  4710. },
  4711. {
  4712. "name": "Chris Boden",
  4713. "email": "cboden@gmail.com",
  4714. "homepage": "https://cboden.dev/"
  4715. }
  4716. ],
  4717. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  4718. "keywords": [
  4719. "event-driven",
  4720. "io",
  4721. "non-blocking",
  4722. "pipe",
  4723. "reactphp",
  4724. "readable",
  4725. "stream",
  4726. "writable"
  4727. ],
  4728. "support": {
  4729. "issues": "https://github.com/reactphp/stream/issues",
  4730. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  4731. },
  4732. "funding": [
  4733. {
  4734. "url": "https://opencollective.com/reactphp",
  4735. "type": "open_collective"
  4736. }
  4737. ],
  4738. "time": "2024-06-11T12:45:25+00:00"
  4739. },
  4740. {
  4741. "name": "sebastian/cli-parser",
  4742. "version": "3.0.2",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  4746. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  4751. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  4752. "shasum": ""
  4753. },
  4754. "require": {
  4755. "php": ">=8.2"
  4756. },
  4757. "require-dev": {
  4758. "phpunit/phpunit": "^11.0"
  4759. },
  4760. "type": "library",
  4761. "extra": {
  4762. "branch-alias": {
  4763. "dev-main": "3.0-dev"
  4764. }
  4765. },
  4766. "autoload": {
  4767. "classmap": [
  4768. "src/"
  4769. ]
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "BSD-3-Clause"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Sebastian Bergmann",
  4778. "email": "sebastian@phpunit.de",
  4779. "role": "lead"
  4780. }
  4781. ],
  4782. "description": "Library for parsing CLI options",
  4783. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  4784. "support": {
  4785. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  4786. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  4787. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  4788. },
  4789. "funding": [
  4790. {
  4791. "url": "https://github.com/sebastianbergmann",
  4792. "type": "github"
  4793. }
  4794. ],
  4795. "time": "2024-07-03T04:41:36+00:00"
  4796. },
  4797. {
  4798. "name": "sebastian/code-unit",
  4799. "version": "3.0.3",
  4800. "source": {
  4801. "type": "git",
  4802. "url": "https://github.com/sebastianbergmann/code-unit.git",
  4803. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  4804. },
  4805. "dist": {
  4806. "type": "zip",
  4807. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  4808. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  4809. "shasum": ""
  4810. },
  4811. "require": {
  4812. "php": ">=8.2"
  4813. },
  4814. "require-dev": {
  4815. "phpunit/phpunit": "^11.5"
  4816. },
  4817. "type": "library",
  4818. "extra": {
  4819. "branch-alias": {
  4820. "dev-main": "3.0-dev"
  4821. }
  4822. },
  4823. "autoload": {
  4824. "classmap": [
  4825. "src/"
  4826. ]
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "BSD-3-Clause"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Sebastian Bergmann",
  4835. "email": "sebastian@phpunit.de",
  4836. "role": "lead"
  4837. }
  4838. ],
  4839. "description": "Collection of value objects that represent the PHP code units",
  4840. "homepage": "https://github.com/sebastianbergmann/code-unit",
  4841. "support": {
  4842. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  4843. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  4844. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  4845. },
  4846. "funding": [
  4847. {
  4848. "url": "https://github.com/sebastianbergmann",
  4849. "type": "github"
  4850. }
  4851. ],
  4852. "time": "2025-03-19T07:56:08+00:00"
  4853. },
  4854. {
  4855. "name": "sebastian/code-unit-reverse-lookup",
  4856. "version": "4.0.1",
  4857. "source": {
  4858. "type": "git",
  4859. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4860. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  4861. },
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  4865. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  4866. "shasum": ""
  4867. },
  4868. "require": {
  4869. "php": ">=8.2"
  4870. },
  4871. "require-dev": {
  4872. "phpunit/phpunit": "^11.0"
  4873. },
  4874. "type": "library",
  4875. "extra": {
  4876. "branch-alias": {
  4877. "dev-main": "4.0-dev"
  4878. }
  4879. },
  4880. "autoload": {
  4881. "classmap": [
  4882. "src/"
  4883. ]
  4884. },
  4885. "notification-url": "https://packagist.org/downloads/",
  4886. "license": [
  4887. "BSD-3-Clause"
  4888. ],
  4889. "authors": [
  4890. {
  4891. "name": "Sebastian Bergmann",
  4892. "email": "sebastian@phpunit.de"
  4893. }
  4894. ],
  4895. "description": "Looks up which function or method a line of code belongs to",
  4896. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4897. "support": {
  4898. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4899. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  4900. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  4901. },
  4902. "funding": [
  4903. {
  4904. "url": "https://github.com/sebastianbergmann",
  4905. "type": "github"
  4906. }
  4907. ],
  4908. "time": "2024-07-03T04:45:54+00:00"
  4909. },
  4910. {
  4911. "name": "sebastian/comparator",
  4912. "version": "6.3.3",
  4913. "source": {
  4914. "type": "git",
  4915. "url": "https://github.com/sebastianbergmann/comparator.git",
  4916. "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9"
  4917. },
  4918. "dist": {
  4919. "type": "zip",
  4920. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
  4921. "reference": "2c95e1e86cb8dd41beb8d502057d1081ccc8eca9",
  4922. "shasum": ""
  4923. },
  4924. "require": {
  4925. "ext-dom": "*",
  4926. "ext-mbstring": "*",
  4927. "php": ">=8.2",
  4928. "sebastian/diff": "^6.0",
  4929. "sebastian/exporter": "^6.0"
  4930. },
  4931. "require-dev": {
  4932. "phpunit/phpunit": "^11.4"
  4933. },
  4934. "suggest": {
  4935. "ext-bcmath": "For comparing BcMath\\Number objects"
  4936. },
  4937. "type": "library",
  4938. "extra": {
  4939. "branch-alias": {
  4940. "dev-main": "6.3-dev"
  4941. }
  4942. },
  4943. "autoload": {
  4944. "classmap": [
  4945. "src/"
  4946. ]
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "BSD-3-Clause"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "Sebastian Bergmann",
  4955. "email": "sebastian@phpunit.de"
  4956. },
  4957. {
  4958. "name": "Jeff Welch",
  4959. "email": "whatthejeff@gmail.com"
  4960. },
  4961. {
  4962. "name": "Volker Dusch",
  4963. "email": "github@wallbash.com"
  4964. },
  4965. {
  4966. "name": "Bernhard Schussek",
  4967. "email": "bschussek@2bepublished.at"
  4968. }
  4969. ],
  4970. "description": "Provides the functionality to compare PHP values for equality",
  4971. "homepage": "https://github.com/sebastianbergmann/comparator",
  4972. "keywords": [
  4973. "comparator",
  4974. "compare",
  4975. "equality"
  4976. ],
  4977. "support": {
  4978. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4979. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  4980. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.3"
  4981. },
  4982. "funding": [
  4983. {
  4984. "url": "https://github.com/sebastianbergmann",
  4985. "type": "github"
  4986. },
  4987. {
  4988. "url": "https://liberapay.com/sebastianbergmann",
  4989. "type": "liberapay"
  4990. },
  4991. {
  4992. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  4993. "type": "thanks_dev"
  4994. },
  4995. {
  4996. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  4997. "type": "tidelift"
  4998. }
  4999. ],
  5000. "time": "2026-01-24T09:26:40+00:00"
  5001. },
  5002. {
  5003. "name": "sebastian/complexity",
  5004. "version": "4.0.1",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/sebastianbergmann/complexity.git",
  5008. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  5013. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  5014. "shasum": ""
  5015. },
  5016. "require": {
  5017. "nikic/php-parser": "^5.0",
  5018. "php": ">=8.2"
  5019. },
  5020. "require-dev": {
  5021. "phpunit/phpunit": "^11.0"
  5022. },
  5023. "type": "library",
  5024. "extra": {
  5025. "branch-alias": {
  5026. "dev-main": "4.0-dev"
  5027. }
  5028. },
  5029. "autoload": {
  5030. "classmap": [
  5031. "src/"
  5032. ]
  5033. },
  5034. "notification-url": "https://packagist.org/downloads/",
  5035. "license": [
  5036. "BSD-3-Clause"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Sebastian Bergmann",
  5041. "email": "sebastian@phpunit.de",
  5042. "role": "lead"
  5043. }
  5044. ],
  5045. "description": "Library for calculating the complexity of PHP code units",
  5046. "homepage": "https://github.com/sebastianbergmann/complexity",
  5047. "support": {
  5048. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  5049. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  5050. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  5051. },
  5052. "funding": [
  5053. {
  5054. "url": "https://github.com/sebastianbergmann",
  5055. "type": "github"
  5056. }
  5057. ],
  5058. "time": "2024-07-03T04:49:50+00:00"
  5059. },
  5060. {
  5061. "name": "sebastian/diff",
  5062. "version": "6.0.2",
  5063. "source": {
  5064. "type": "git",
  5065. "url": "https://github.com/sebastianbergmann/diff.git",
  5066. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  5067. },
  5068. "dist": {
  5069. "type": "zip",
  5070. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  5071. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  5072. "shasum": ""
  5073. },
  5074. "require": {
  5075. "php": ">=8.2"
  5076. },
  5077. "require-dev": {
  5078. "phpunit/phpunit": "^11.0",
  5079. "symfony/process": "^4.2 || ^5"
  5080. },
  5081. "type": "library",
  5082. "extra": {
  5083. "branch-alias": {
  5084. "dev-main": "6.0-dev"
  5085. }
  5086. },
  5087. "autoload": {
  5088. "classmap": [
  5089. "src/"
  5090. ]
  5091. },
  5092. "notification-url": "https://packagist.org/downloads/",
  5093. "license": [
  5094. "BSD-3-Clause"
  5095. ],
  5096. "authors": [
  5097. {
  5098. "name": "Sebastian Bergmann",
  5099. "email": "sebastian@phpunit.de"
  5100. },
  5101. {
  5102. "name": "Kore Nordmann",
  5103. "email": "mail@kore-nordmann.de"
  5104. }
  5105. ],
  5106. "description": "Diff implementation",
  5107. "homepage": "https://github.com/sebastianbergmann/diff",
  5108. "keywords": [
  5109. "diff",
  5110. "udiff",
  5111. "unidiff",
  5112. "unified diff"
  5113. ],
  5114. "support": {
  5115. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5116. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  5117. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  5118. },
  5119. "funding": [
  5120. {
  5121. "url": "https://github.com/sebastianbergmann",
  5122. "type": "github"
  5123. }
  5124. ],
  5125. "time": "2024-07-03T04:53:05+00:00"
  5126. },
  5127. {
  5128. "name": "sebastian/environment",
  5129. "version": "7.2.1",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/sebastianbergmann/environment.git",
  5133. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  5138. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  5139. "shasum": ""
  5140. },
  5141. "require": {
  5142. "php": ">=8.2"
  5143. },
  5144. "require-dev": {
  5145. "phpunit/phpunit": "^11.3"
  5146. },
  5147. "suggest": {
  5148. "ext-posix": "*"
  5149. },
  5150. "type": "library",
  5151. "extra": {
  5152. "branch-alias": {
  5153. "dev-main": "7.2-dev"
  5154. }
  5155. },
  5156. "autoload": {
  5157. "classmap": [
  5158. "src/"
  5159. ]
  5160. },
  5161. "notification-url": "https://packagist.org/downloads/",
  5162. "license": [
  5163. "BSD-3-Clause"
  5164. ],
  5165. "authors": [
  5166. {
  5167. "name": "Sebastian Bergmann",
  5168. "email": "sebastian@phpunit.de"
  5169. }
  5170. ],
  5171. "description": "Provides functionality to handle HHVM/PHP environments",
  5172. "homepage": "https://github.com/sebastianbergmann/environment",
  5173. "keywords": [
  5174. "Xdebug",
  5175. "environment",
  5176. "hhvm"
  5177. ],
  5178. "support": {
  5179. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5180. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  5181. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  5182. },
  5183. "funding": [
  5184. {
  5185. "url": "https://github.com/sebastianbergmann",
  5186. "type": "github"
  5187. },
  5188. {
  5189. "url": "https://liberapay.com/sebastianbergmann",
  5190. "type": "liberapay"
  5191. },
  5192. {
  5193. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5194. "type": "thanks_dev"
  5195. },
  5196. {
  5197. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  5198. "type": "tidelift"
  5199. }
  5200. ],
  5201. "time": "2025-05-21T11:55:47+00:00"
  5202. },
  5203. {
  5204. "name": "sebastian/exporter",
  5205. "version": "6.3.2",
  5206. "source": {
  5207. "type": "git",
  5208. "url": "https://github.com/sebastianbergmann/exporter.git",
  5209. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74"
  5210. },
  5211. "dist": {
  5212. "type": "zip",
  5213. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74",
  5214. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74",
  5215. "shasum": ""
  5216. },
  5217. "require": {
  5218. "ext-mbstring": "*",
  5219. "php": ">=8.2",
  5220. "sebastian/recursion-context": "^6.0"
  5221. },
  5222. "require-dev": {
  5223. "phpunit/phpunit": "^11.3"
  5224. },
  5225. "type": "library",
  5226. "extra": {
  5227. "branch-alias": {
  5228. "dev-main": "6.3-dev"
  5229. }
  5230. },
  5231. "autoload": {
  5232. "classmap": [
  5233. "src/"
  5234. ]
  5235. },
  5236. "notification-url": "https://packagist.org/downloads/",
  5237. "license": [
  5238. "BSD-3-Clause"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "Sebastian Bergmann",
  5243. "email": "sebastian@phpunit.de"
  5244. },
  5245. {
  5246. "name": "Jeff Welch",
  5247. "email": "whatthejeff@gmail.com"
  5248. },
  5249. {
  5250. "name": "Volker Dusch",
  5251. "email": "github@wallbash.com"
  5252. },
  5253. {
  5254. "name": "Adam Harvey",
  5255. "email": "aharvey@php.net"
  5256. },
  5257. {
  5258. "name": "Bernhard Schussek",
  5259. "email": "bschussek@gmail.com"
  5260. }
  5261. ],
  5262. "description": "Provides the functionality to export PHP variables for visualization",
  5263. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  5264. "keywords": [
  5265. "export",
  5266. "exporter"
  5267. ],
  5268. "support": {
  5269. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5270. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  5271. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2"
  5272. },
  5273. "funding": [
  5274. {
  5275. "url": "https://github.com/sebastianbergmann",
  5276. "type": "github"
  5277. },
  5278. {
  5279. "url": "https://liberapay.com/sebastianbergmann",
  5280. "type": "liberapay"
  5281. },
  5282. {
  5283. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5284. "type": "thanks_dev"
  5285. },
  5286. {
  5287. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  5288. "type": "tidelift"
  5289. }
  5290. ],
  5291. "time": "2025-09-24T06:12:51+00:00"
  5292. },
  5293. {
  5294. "name": "sebastian/global-state",
  5295. "version": "7.0.2",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/sebastianbergmann/global-state.git",
  5299. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  5304. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  5305. "shasum": ""
  5306. },
  5307. "require": {
  5308. "php": ">=8.2",
  5309. "sebastian/object-reflector": "^4.0",
  5310. "sebastian/recursion-context": "^6.0"
  5311. },
  5312. "require-dev": {
  5313. "ext-dom": "*",
  5314. "phpunit/phpunit": "^11.0"
  5315. },
  5316. "type": "library",
  5317. "extra": {
  5318. "branch-alias": {
  5319. "dev-main": "7.0-dev"
  5320. }
  5321. },
  5322. "autoload": {
  5323. "classmap": [
  5324. "src/"
  5325. ]
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "BSD-3-Clause"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Sebastian Bergmann",
  5334. "email": "sebastian@phpunit.de"
  5335. }
  5336. ],
  5337. "description": "Snapshotting of global state",
  5338. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  5339. "keywords": [
  5340. "global state"
  5341. ],
  5342. "support": {
  5343. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5344. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  5345. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  5346. },
  5347. "funding": [
  5348. {
  5349. "url": "https://github.com/sebastianbergmann",
  5350. "type": "github"
  5351. }
  5352. ],
  5353. "time": "2024-07-03T04:57:36+00:00"
  5354. },
  5355. {
  5356. "name": "sebastian/lines-of-code",
  5357. "version": "3.0.1",
  5358. "source": {
  5359. "type": "git",
  5360. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5361. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  5362. },
  5363. "dist": {
  5364. "type": "zip",
  5365. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  5366. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  5367. "shasum": ""
  5368. },
  5369. "require": {
  5370. "nikic/php-parser": "^5.0",
  5371. "php": ">=8.2"
  5372. },
  5373. "require-dev": {
  5374. "phpunit/phpunit": "^11.0"
  5375. },
  5376. "type": "library",
  5377. "extra": {
  5378. "branch-alias": {
  5379. "dev-main": "3.0-dev"
  5380. }
  5381. },
  5382. "autoload": {
  5383. "classmap": [
  5384. "src/"
  5385. ]
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "BSD-3-Clause"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Sebastian Bergmann",
  5394. "email": "sebastian@phpunit.de",
  5395. "role": "lead"
  5396. }
  5397. ],
  5398. "description": "Library for counting the lines of code in PHP source code",
  5399. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  5400. "support": {
  5401. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  5402. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  5403. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  5404. },
  5405. "funding": [
  5406. {
  5407. "url": "https://github.com/sebastianbergmann",
  5408. "type": "github"
  5409. }
  5410. ],
  5411. "time": "2024-07-03T04:58:38+00:00"
  5412. },
  5413. {
  5414. "name": "sebastian/object-enumerator",
  5415. "version": "6.0.1",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5419. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  5424. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  5425. "shasum": ""
  5426. },
  5427. "require": {
  5428. "php": ">=8.2",
  5429. "sebastian/object-reflector": "^4.0",
  5430. "sebastian/recursion-context": "^6.0"
  5431. },
  5432. "require-dev": {
  5433. "phpunit/phpunit": "^11.0"
  5434. },
  5435. "type": "library",
  5436. "extra": {
  5437. "branch-alias": {
  5438. "dev-main": "6.0-dev"
  5439. }
  5440. },
  5441. "autoload": {
  5442. "classmap": [
  5443. "src/"
  5444. ]
  5445. },
  5446. "notification-url": "https://packagist.org/downloads/",
  5447. "license": [
  5448. "BSD-3-Clause"
  5449. ],
  5450. "authors": [
  5451. {
  5452. "name": "Sebastian Bergmann",
  5453. "email": "sebastian@phpunit.de"
  5454. }
  5455. ],
  5456. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5457. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5458. "support": {
  5459. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5460. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  5461. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  5462. },
  5463. "funding": [
  5464. {
  5465. "url": "https://github.com/sebastianbergmann",
  5466. "type": "github"
  5467. }
  5468. ],
  5469. "time": "2024-07-03T05:00:13+00:00"
  5470. },
  5471. {
  5472. "name": "sebastian/object-reflector",
  5473. "version": "4.0.1",
  5474. "source": {
  5475. "type": "git",
  5476. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5477. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  5478. },
  5479. "dist": {
  5480. "type": "zip",
  5481. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  5482. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  5483. "shasum": ""
  5484. },
  5485. "require": {
  5486. "php": ">=8.2"
  5487. },
  5488. "require-dev": {
  5489. "phpunit/phpunit": "^11.0"
  5490. },
  5491. "type": "library",
  5492. "extra": {
  5493. "branch-alias": {
  5494. "dev-main": "4.0-dev"
  5495. }
  5496. },
  5497. "autoload": {
  5498. "classmap": [
  5499. "src/"
  5500. ]
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "BSD-3-Clause"
  5505. ],
  5506. "authors": [
  5507. {
  5508. "name": "Sebastian Bergmann",
  5509. "email": "sebastian@phpunit.de"
  5510. }
  5511. ],
  5512. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5513. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5514. "support": {
  5515. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5516. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  5517. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  5518. },
  5519. "funding": [
  5520. {
  5521. "url": "https://github.com/sebastianbergmann",
  5522. "type": "github"
  5523. }
  5524. ],
  5525. "time": "2024-07-03T05:01:32+00:00"
  5526. },
  5527. {
  5528. "name": "sebastian/recursion-context",
  5529. "version": "6.0.3",
  5530. "source": {
  5531. "type": "git",
  5532. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5533. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc"
  5534. },
  5535. "dist": {
  5536. "type": "zip",
  5537. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  5538. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  5539. "shasum": ""
  5540. },
  5541. "require": {
  5542. "php": ">=8.2"
  5543. },
  5544. "require-dev": {
  5545. "phpunit/phpunit": "^11.3"
  5546. },
  5547. "type": "library",
  5548. "extra": {
  5549. "branch-alias": {
  5550. "dev-main": "6.0-dev"
  5551. }
  5552. },
  5553. "autoload": {
  5554. "classmap": [
  5555. "src/"
  5556. ]
  5557. },
  5558. "notification-url": "https://packagist.org/downloads/",
  5559. "license": [
  5560. "BSD-3-Clause"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "Sebastian Bergmann",
  5565. "email": "sebastian@phpunit.de"
  5566. },
  5567. {
  5568. "name": "Jeff Welch",
  5569. "email": "whatthejeff@gmail.com"
  5570. },
  5571. {
  5572. "name": "Adam Harvey",
  5573. "email": "aharvey@php.net"
  5574. }
  5575. ],
  5576. "description": "Provides functionality to recursively process PHP variables",
  5577. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  5578. "support": {
  5579. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5580. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  5581. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3"
  5582. },
  5583. "funding": [
  5584. {
  5585. "url": "https://github.com/sebastianbergmann",
  5586. "type": "github"
  5587. },
  5588. {
  5589. "url": "https://liberapay.com/sebastianbergmann",
  5590. "type": "liberapay"
  5591. },
  5592. {
  5593. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5594. "type": "thanks_dev"
  5595. },
  5596. {
  5597. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  5598. "type": "tidelift"
  5599. }
  5600. ],
  5601. "time": "2025-08-13T04:42:22+00:00"
  5602. },
  5603. {
  5604. "name": "sebastian/type",
  5605. "version": "5.1.3",
  5606. "source": {
  5607. "type": "git",
  5608. "url": "https://github.com/sebastianbergmann/type.git",
  5609. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449"
  5610. },
  5611. "dist": {
  5612. "type": "zip",
  5613. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  5614. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  5615. "shasum": ""
  5616. },
  5617. "require": {
  5618. "php": ">=8.2"
  5619. },
  5620. "require-dev": {
  5621. "phpunit/phpunit": "^11.3"
  5622. },
  5623. "type": "library",
  5624. "extra": {
  5625. "branch-alias": {
  5626. "dev-main": "5.1-dev"
  5627. }
  5628. },
  5629. "autoload": {
  5630. "classmap": [
  5631. "src/"
  5632. ]
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "BSD-3-Clause"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "Sebastian Bergmann",
  5641. "email": "sebastian@phpunit.de",
  5642. "role": "lead"
  5643. }
  5644. ],
  5645. "description": "Collection of value objects that represent the types of the PHP type system",
  5646. "homepage": "https://github.com/sebastianbergmann/type",
  5647. "support": {
  5648. "issues": "https://github.com/sebastianbergmann/type/issues",
  5649. "security": "https://github.com/sebastianbergmann/type/security/policy",
  5650. "source": "https://github.com/sebastianbergmann/type/tree/5.1.3"
  5651. },
  5652. "funding": [
  5653. {
  5654. "url": "https://github.com/sebastianbergmann",
  5655. "type": "github"
  5656. },
  5657. {
  5658. "url": "https://liberapay.com/sebastianbergmann",
  5659. "type": "liberapay"
  5660. },
  5661. {
  5662. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5663. "type": "thanks_dev"
  5664. },
  5665. {
  5666. "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
  5667. "type": "tidelift"
  5668. }
  5669. ],
  5670. "time": "2025-08-09T06:55:48+00:00"
  5671. },
  5672. {
  5673. "name": "sebastian/version",
  5674. "version": "5.0.2",
  5675. "source": {
  5676. "type": "git",
  5677. "url": "https://github.com/sebastianbergmann/version.git",
  5678. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  5679. },
  5680. "dist": {
  5681. "type": "zip",
  5682. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  5683. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  5684. "shasum": ""
  5685. },
  5686. "require": {
  5687. "php": ">=8.2"
  5688. },
  5689. "type": "library",
  5690. "extra": {
  5691. "branch-alias": {
  5692. "dev-main": "5.0-dev"
  5693. }
  5694. },
  5695. "autoload": {
  5696. "classmap": [
  5697. "src/"
  5698. ]
  5699. },
  5700. "notification-url": "https://packagist.org/downloads/",
  5701. "license": [
  5702. "BSD-3-Clause"
  5703. ],
  5704. "authors": [
  5705. {
  5706. "name": "Sebastian Bergmann",
  5707. "email": "sebastian@phpunit.de",
  5708. "role": "lead"
  5709. }
  5710. ],
  5711. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5712. "homepage": "https://github.com/sebastianbergmann/version",
  5713. "support": {
  5714. "issues": "https://github.com/sebastianbergmann/version/issues",
  5715. "security": "https://github.com/sebastianbergmann/version/security/policy",
  5716. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  5717. },
  5718. "funding": [
  5719. {
  5720. "url": "https://github.com/sebastianbergmann",
  5721. "type": "github"
  5722. }
  5723. ],
  5724. "time": "2024-10-09T05:16:32+00:00"
  5725. },
  5726. {
  5727. "name": "staabm/side-effects-detector",
  5728. "version": "1.0.5",
  5729. "source": {
  5730. "type": "git",
  5731. "url": "https://github.com/staabm/side-effects-detector.git",
  5732. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  5733. },
  5734. "dist": {
  5735. "type": "zip",
  5736. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  5737. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  5738. "shasum": ""
  5739. },
  5740. "require": {
  5741. "ext-tokenizer": "*",
  5742. "php": "^7.4 || ^8.0"
  5743. },
  5744. "require-dev": {
  5745. "phpstan/extension-installer": "^1.4.3",
  5746. "phpstan/phpstan": "^1.12.6",
  5747. "phpunit/phpunit": "^9.6.21",
  5748. "symfony/var-dumper": "^5.4.43",
  5749. "tomasvotruba/type-coverage": "1.0.0",
  5750. "tomasvotruba/unused-public": "1.0.0"
  5751. },
  5752. "type": "library",
  5753. "autoload": {
  5754. "classmap": [
  5755. "lib/"
  5756. ]
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "MIT"
  5761. ],
  5762. "description": "A static analysis tool to detect side effects in PHP code",
  5763. "keywords": [
  5764. "static analysis"
  5765. ],
  5766. "support": {
  5767. "issues": "https://github.com/staabm/side-effects-detector/issues",
  5768. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  5769. },
  5770. "funding": [
  5771. {
  5772. "url": "https://github.com/staabm",
  5773. "type": "github"
  5774. }
  5775. ],
  5776. "time": "2024-10-20T05:08:20+00:00"
  5777. },
  5778. {
  5779. "name": "symfony/event-dispatcher",
  5780. "version": "v7.4.8",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/symfony/event-dispatcher.git",
  5784. "reference": "f57b899fa736fd71121168ef268f23c206083f0a"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f57b899fa736fd71121168ef268f23c206083f0a",
  5789. "reference": "f57b899fa736fd71121168ef268f23c206083f0a",
  5790. "shasum": ""
  5791. },
  5792. "require": {
  5793. "php": ">=8.2",
  5794. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5795. },
  5796. "conflict": {
  5797. "symfony/dependency-injection": "<6.4",
  5798. "symfony/service-contracts": "<2.5"
  5799. },
  5800. "provide": {
  5801. "psr/event-dispatcher-implementation": "1.0",
  5802. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5803. },
  5804. "require-dev": {
  5805. "psr/log": "^1|^2|^3",
  5806. "symfony/config": "^6.4|^7.0|^8.0",
  5807. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  5808. "symfony/error-handler": "^6.4|^7.0|^8.0",
  5809. "symfony/expression-language": "^6.4|^7.0|^8.0",
  5810. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  5811. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  5812. "symfony/service-contracts": "^2.5|^3",
  5813. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  5814. },
  5815. "type": "library",
  5816. "autoload": {
  5817. "psr-4": {
  5818. "Symfony\\Component\\EventDispatcher\\": ""
  5819. },
  5820. "exclude-from-classmap": [
  5821. "/Tests/"
  5822. ]
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "Fabien Potencier",
  5831. "email": "fabien@symfony.com"
  5832. },
  5833. {
  5834. "name": "Symfony Community",
  5835. "homepage": "https://symfony.com/contributors"
  5836. }
  5837. ],
  5838. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5839. "homepage": "https://symfony.com",
  5840. "support": {
  5841. "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.8"
  5842. },
  5843. "funding": [
  5844. {
  5845. "url": "https://symfony.com/sponsor",
  5846. "type": "custom"
  5847. },
  5848. {
  5849. "url": "https://github.com/fabpot",
  5850. "type": "github"
  5851. },
  5852. {
  5853. "url": "https://github.com/nicolas-grekas",
  5854. "type": "github"
  5855. },
  5856. {
  5857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5858. "type": "tidelift"
  5859. }
  5860. ],
  5861. "time": "2026-03-30T13:54:39+00:00"
  5862. },
  5863. {
  5864. "name": "symfony/event-dispatcher-contracts",
  5865. "version": "v3.6.0",
  5866. "source": {
  5867. "type": "git",
  5868. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5869. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  5870. },
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  5874. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  5875. "shasum": ""
  5876. },
  5877. "require": {
  5878. "php": ">=8.1",
  5879. "psr/event-dispatcher": "^1"
  5880. },
  5881. "type": "library",
  5882. "extra": {
  5883. "thanks": {
  5884. "url": "https://github.com/symfony/contracts",
  5885. "name": "symfony/contracts"
  5886. },
  5887. "branch-alias": {
  5888. "dev-main": "3.6-dev"
  5889. }
  5890. },
  5891. "autoload": {
  5892. "psr-4": {
  5893. "Symfony\\Contracts\\EventDispatcher\\": ""
  5894. }
  5895. },
  5896. "notification-url": "https://packagist.org/downloads/",
  5897. "license": [
  5898. "MIT"
  5899. ],
  5900. "authors": [
  5901. {
  5902. "name": "Nicolas Grekas",
  5903. "email": "p@tchwork.com"
  5904. },
  5905. {
  5906. "name": "Symfony Community",
  5907. "homepage": "https://symfony.com/contributors"
  5908. }
  5909. ],
  5910. "description": "Generic abstractions related to dispatching event",
  5911. "homepage": "https://symfony.com",
  5912. "keywords": [
  5913. "abstractions",
  5914. "contracts",
  5915. "decoupling",
  5916. "interfaces",
  5917. "interoperability",
  5918. "standards"
  5919. ],
  5920. "support": {
  5921. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  5922. },
  5923. "funding": [
  5924. {
  5925. "url": "https://symfony.com/sponsor",
  5926. "type": "custom"
  5927. },
  5928. {
  5929. "url": "https://github.com/fabpot",
  5930. "type": "github"
  5931. },
  5932. {
  5933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5934. "type": "tidelift"
  5935. }
  5936. ],
  5937. "time": "2024-09-25T14:21:43+00:00"
  5938. },
  5939. {
  5940. "name": "symfony/finder",
  5941. "version": "v7.4.8",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://github.com/symfony/finder.git",
  5945. "reference": "e0be088d22278583a82da281886e8c3592fbf149"
  5946. },
  5947. "dist": {
  5948. "type": "zip",
  5949. "url": "https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149",
  5950. "reference": "e0be088d22278583a82da281886e8c3592fbf149",
  5951. "shasum": ""
  5952. },
  5953. "require": {
  5954. "php": ">=8.2"
  5955. },
  5956. "require-dev": {
  5957. "symfony/filesystem": "^6.4|^7.0|^8.0"
  5958. },
  5959. "type": "library",
  5960. "autoload": {
  5961. "psr-4": {
  5962. "Symfony\\Component\\Finder\\": ""
  5963. },
  5964. "exclude-from-classmap": [
  5965. "/Tests/"
  5966. ]
  5967. },
  5968. "notification-url": "https://packagist.org/downloads/",
  5969. "license": [
  5970. "MIT"
  5971. ],
  5972. "authors": [
  5973. {
  5974. "name": "Fabien Potencier",
  5975. "email": "fabien@symfony.com"
  5976. },
  5977. {
  5978. "name": "Symfony Community",
  5979. "homepage": "https://symfony.com/contributors"
  5980. }
  5981. ],
  5982. "description": "Finds files and directories via an intuitive fluent interface",
  5983. "homepage": "https://symfony.com",
  5984. "support": {
  5985. "source": "https://github.com/symfony/finder/tree/v7.4.8"
  5986. },
  5987. "funding": [
  5988. {
  5989. "url": "https://symfony.com/sponsor",
  5990. "type": "custom"
  5991. },
  5992. {
  5993. "url": "https://github.com/fabpot",
  5994. "type": "github"
  5995. },
  5996. {
  5997. "url": "https://github.com/nicolas-grekas",
  5998. "type": "github"
  5999. },
  6000. {
  6001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6002. "type": "tidelift"
  6003. }
  6004. ],
  6005. "time": "2026-03-24T13:12:05+00:00"
  6006. },
  6007. {
  6008. "name": "symfony/options-resolver",
  6009. "version": "v7.4.8",
  6010. "source": {
  6011. "type": "git",
  6012. "url": "https://github.com/symfony/options-resolver.git",
  6013. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4"
  6014. },
  6015. "dist": {
  6016. "type": "zip",
  6017. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  6018. "reference": "2888fcdc4dc2fd5f7c7397be78631e8af12e02b4",
  6019. "shasum": ""
  6020. },
  6021. "require": {
  6022. "php": ">=8.2",
  6023. "symfony/deprecation-contracts": "^2.5|^3"
  6024. },
  6025. "type": "library",
  6026. "autoload": {
  6027. "psr-4": {
  6028. "Symfony\\Component\\OptionsResolver\\": ""
  6029. },
  6030. "exclude-from-classmap": [
  6031. "/Tests/"
  6032. ]
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "Fabien Potencier",
  6041. "email": "fabien@symfony.com"
  6042. },
  6043. {
  6044. "name": "Symfony Community",
  6045. "homepage": "https://symfony.com/contributors"
  6046. }
  6047. ],
  6048. "description": "Provides an improved replacement for the array_replace PHP function",
  6049. "homepage": "https://symfony.com",
  6050. "keywords": [
  6051. "config",
  6052. "configuration",
  6053. "options"
  6054. ],
  6055. "support": {
  6056. "source": "https://github.com/symfony/options-resolver/tree/v7.4.8"
  6057. },
  6058. "funding": [
  6059. {
  6060. "url": "https://symfony.com/sponsor",
  6061. "type": "custom"
  6062. },
  6063. {
  6064. "url": "https://github.com/fabpot",
  6065. "type": "github"
  6066. },
  6067. {
  6068. "url": "https://github.com/nicolas-grekas",
  6069. "type": "github"
  6070. },
  6071. {
  6072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6073. "type": "tidelift"
  6074. }
  6075. ],
  6076. "time": "2026-03-24T13:12:05+00:00"
  6077. },
  6078. {
  6079. "name": "symfony/polyfill-php80",
  6080. "version": "v1.37.0",
  6081. "source": {
  6082. "type": "git",
  6083. "url": "https://github.com/symfony/polyfill-php80.git",
  6084. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
  6085. },
  6086. "dist": {
  6087. "type": "zip",
  6088. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  6089. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  6090. "shasum": ""
  6091. },
  6092. "require": {
  6093. "php": ">=7.2"
  6094. },
  6095. "type": "library",
  6096. "extra": {
  6097. "thanks": {
  6098. "url": "https://github.com/symfony/polyfill",
  6099. "name": "symfony/polyfill"
  6100. }
  6101. },
  6102. "autoload": {
  6103. "files": [
  6104. "bootstrap.php"
  6105. ],
  6106. "psr-4": {
  6107. "Symfony\\Polyfill\\Php80\\": ""
  6108. },
  6109. "classmap": [
  6110. "Resources/stubs"
  6111. ]
  6112. },
  6113. "notification-url": "https://packagist.org/downloads/",
  6114. "license": [
  6115. "MIT"
  6116. ],
  6117. "authors": [
  6118. {
  6119. "name": "Ion Bazan",
  6120. "email": "ion.bazan@gmail.com"
  6121. },
  6122. {
  6123. "name": "Nicolas Grekas",
  6124. "email": "p@tchwork.com"
  6125. },
  6126. {
  6127. "name": "Symfony Community",
  6128. "homepage": "https://symfony.com/contributors"
  6129. }
  6130. ],
  6131. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6132. "homepage": "https://symfony.com",
  6133. "keywords": [
  6134. "compatibility",
  6135. "polyfill",
  6136. "portable",
  6137. "shim"
  6138. ],
  6139. "support": {
  6140. "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
  6141. },
  6142. "funding": [
  6143. {
  6144. "url": "https://symfony.com/sponsor",
  6145. "type": "custom"
  6146. },
  6147. {
  6148. "url": "https://github.com/fabpot",
  6149. "type": "github"
  6150. },
  6151. {
  6152. "url": "https://github.com/nicolas-grekas",
  6153. "type": "github"
  6154. },
  6155. {
  6156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6157. "type": "tidelift"
  6158. }
  6159. ],
  6160. "time": "2026-04-10T16:19:22+00:00"
  6161. },
  6162. {
  6163. "name": "symfony/polyfill-php81",
  6164. "version": "v1.37.0",
  6165. "source": {
  6166. "type": "git",
  6167. "url": "https://github.com/symfony/polyfill-php81.git",
  6168. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6169. },
  6170. "dist": {
  6171. "type": "zip",
  6172. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6173. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6174. "shasum": ""
  6175. },
  6176. "require": {
  6177. "php": ">=7.2"
  6178. },
  6179. "type": "library",
  6180. "extra": {
  6181. "thanks": {
  6182. "url": "https://github.com/symfony/polyfill",
  6183. "name": "symfony/polyfill"
  6184. }
  6185. },
  6186. "autoload": {
  6187. "files": [
  6188. "bootstrap.php"
  6189. ],
  6190. "psr-4": {
  6191. "Symfony\\Polyfill\\Php81\\": ""
  6192. },
  6193. "classmap": [
  6194. "Resources/stubs"
  6195. ]
  6196. },
  6197. "notification-url": "https://packagist.org/downloads/",
  6198. "license": [
  6199. "MIT"
  6200. ],
  6201. "authors": [
  6202. {
  6203. "name": "Nicolas Grekas",
  6204. "email": "p@tchwork.com"
  6205. },
  6206. {
  6207. "name": "Symfony Community",
  6208. "homepage": "https://symfony.com/contributors"
  6209. }
  6210. ],
  6211. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6212. "homepage": "https://symfony.com",
  6213. "keywords": [
  6214. "compatibility",
  6215. "polyfill",
  6216. "portable",
  6217. "shim"
  6218. ],
  6219. "support": {
  6220. "source": "https://github.com/symfony/polyfill-php81/tree/v1.37.0"
  6221. },
  6222. "funding": [
  6223. {
  6224. "url": "https://symfony.com/sponsor",
  6225. "type": "custom"
  6226. },
  6227. {
  6228. "url": "https://github.com/fabpot",
  6229. "type": "github"
  6230. },
  6231. {
  6232. "url": "https://github.com/nicolas-grekas",
  6233. "type": "github"
  6234. },
  6235. {
  6236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6237. "type": "tidelift"
  6238. }
  6239. ],
  6240. "time": "2024-09-09T11:45:10+00:00"
  6241. },
  6242. {
  6243. "name": "symfony/polyfill-php84",
  6244. "version": "v1.37.0",
  6245. "source": {
  6246. "type": "git",
  6247. "url": "https://github.com/symfony/polyfill-php84.git",
  6248. "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06"
  6249. },
  6250. "dist": {
  6251. "type": "zip",
  6252. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/88486db2c389b290bf87ff1de7ebc1e13e42bb06",
  6253. "reference": "88486db2c389b290bf87ff1de7ebc1e13e42bb06",
  6254. "shasum": ""
  6255. },
  6256. "require": {
  6257. "php": ">=7.2"
  6258. },
  6259. "type": "library",
  6260. "extra": {
  6261. "thanks": {
  6262. "url": "https://github.com/symfony/polyfill",
  6263. "name": "symfony/polyfill"
  6264. }
  6265. },
  6266. "autoload": {
  6267. "files": [
  6268. "bootstrap.php"
  6269. ],
  6270. "psr-4": {
  6271. "Symfony\\Polyfill\\Php84\\": ""
  6272. },
  6273. "classmap": [
  6274. "Resources/stubs"
  6275. ]
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Nicolas Grekas",
  6284. "email": "p@tchwork.com"
  6285. },
  6286. {
  6287. "name": "Symfony Community",
  6288. "homepage": "https://symfony.com/contributors"
  6289. }
  6290. ],
  6291. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  6292. "homepage": "https://symfony.com",
  6293. "keywords": [
  6294. "compatibility",
  6295. "polyfill",
  6296. "portable",
  6297. "shim"
  6298. ],
  6299. "support": {
  6300. "source": "https://github.com/symfony/polyfill-php84/tree/v1.37.0"
  6301. },
  6302. "funding": [
  6303. {
  6304. "url": "https://symfony.com/sponsor",
  6305. "type": "custom"
  6306. },
  6307. {
  6308. "url": "https://github.com/fabpot",
  6309. "type": "github"
  6310. },
  6311. {
  6312. "url": "https://github.com/nicolas-grekas",
  6313. "type": "github"
  6314. },
  6315. {
  6316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6317. "type": "tidelift"
  6318. }
  6319. ],
  6320. "time": "2026-04-10T18:47:49+00:00"
  6321. },
  6322. {
  6323. "name": "symfony/process",
  6324. "version": "v7.4.8",
  6325. "source": {
  6326. "type": "git",
  6327. "url": "https://github.com/symfony/process.git",
  6328. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a"
  6329. },
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://api.github.com/repos/symfony/process/zipball/60f19cd3badc8de688421e21e4305eba50f8089a",
  6333. "reference": "60f19cd3badc8de688421e21e4305eba50f8089a",
  6334. "shasum": ""
  6335. },
  6336. "require": {
  6337. "php": ">=8.2"
  6338. },
  6339. "type": "library",
  6340. "autoload": {
  6341. "psr-4": {
  6342. "Symfony\\Component\\Process\\": ""
  6343. },
  6344. "exclude-from-classmap": [
  6345. "/Tests/"
  6346. ]
  6347. },
  6348. "notification-url": "https://packagist.org/downloads/",
  6349. "license": [
  6350. "MIT"
  6351. ],
  6352. "authors": [
  6353. {
  6354. "name": "Fabien Potencier",
  6355. "email": "fabien@symfony.com"
  6356. },
  6357. {
  6358. "name": "Symfony Community",
  6359. "homepage": "https://symfony.com/contributors"
  6360. }
  6361. ],
  6362. "description": "Executes commands in sub-processes",
  6363. "homepage": "https://symfony.com",
  6364. "support": {
  6365. "source": "https://github.com/symfony/process/tree/v7.4.8"
  6366. },
  6367. "funding": [
  6368. {
  6369. "url": "https://symfony.com/sponsor",
  6370. "type": "custom"
  6371. },
  6372. {
  6373. "url": "https://github.com/fabpot",
  6374. "type": "github"
  6375. },
  6376. {
  6377. "url": "https://github.com/nicolas-grekas",
  6378. "type": "github"
  6379. },
  6380. {
  6381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6382. "type": "tidelift"
  6383. }
  6384. ],
  6385. "time": "2026-03-24T13:12:05+00:00"
  6386. },
  6387. {
  6388. "name": "symfony/stopwatch",
  6389. "version": "v7.4.8",
  6390. "source": {
  6391. "type": "git",
  6392. "url": "https://github.com/symfony/stopwatch.git",
  6393. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89"
  6394. },
  6395. "dist": {
  6396. "type": "zip",
  6397. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  6398. "reference": "70a852d72fec4d51efb1f48dcd968efcaf5ccb89",
  6399. "shasum": ""
  6400. },
  6401. "require": {
  6402. "php": ">=8.2",
  6403. "symfony/service-contracts": "^2.5|^3"
  6404. },
  6405. "type": "library",
  6406. "autoload": {
  6407. "psr-4": {
  6408. "Symfony\\Component\\Stopwatch\\": ""
  6409. },
  6410. "exclude-from-classmap": [
  6411. "/Tests/"
  6412. ]
  6413. },
  6414. "notification-url": "https://packagist.org/downloads/",
  6415. "license": [
  6416. "MIT"
  6417. ],
  6418. "authors": [
  6419. {
  6420. "name": "Fabien Potencier",
  6421. "email": "fabien@symfony.com"
  6422. },
  6423. {
  6424. "name": "Symfony Community",
  6425. "homepage": "https://symfony.com/contributors"
  6426. }
  6427. ],
  6428. "description": "Provides a way to profile code",
  6429. "homepage": "https://symfony.com",
  6430. "support": {
  6431. "source": "https://github.com/symfony/stopwatch/tree/v7.4.8"
  6432. },
  6433. "funding": [
  6434. {
  6435. "url": "https://symfony.com/sponsor",
  6436. "type": "custom"
  6437. },
  6438. {
  6439. "url": "https://github.com/fabpot",
  6440. "type": "github"
  6441. },
  6442. {
  6443. "url": "https://github.com/nicolas-grekas",
  6444. "type": "github"
  6445. },
  6446. {
  6447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6448. "type": "tidelift"
  6449. }
  6450. ],
  6451. "time": "2026-03-24T13:12:05+00:00"
  6452. },
  6453. {
  6454. "name": "theseer/tokenizer",
  6455. "version": "1.3.1",
  6456. "source": {
  6457. "type": "git",
  6458. "url": "https://github.com/theseer/tokenizer.git",
  6459. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  6460. },
  6461. "dist": {
  6462. "type": "zip",
  6463. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  6464. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  6465. "shasum": ""
  6466. },
  6467. "require": {
  6468. "ext-dom": "*",
  6469. "ext-tokenizer": "*",
  6470. "ext-xmlwriter": "*",
  6471. "php": "^7.2 || ^8.0"
  6472. },
  6473. "type": "library",
  6474. "autoload": {
  6475. "classmap": [
  6476. "src/"
  6477. ]
  6478. },
  6479. "notification-url": "https://packagist.org/downloads/",
  6480. "license": [
  6481. "BSD-3-Clause"
  6482. ],
  6483. "authors": [
  6484. {
  6485. "name": "Arne Blankerts",
  6486. "email": "arne@blankerts.de",
  6487. "role": "Developer"
  6488. }
  6489. ],
  6490. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6491. "support": {
  6492. "issues": "https://github.com/theseer/tokenizer/issues",
  6493. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  6494. },
  6495. "funding": [
  6496. {
  6497. "url": "https://github.com/theseer",
  6498. "type": "github"
  6499. }
  6500. ],
  6501. "time": "2025-11-17T20:03:58+00:00"
  6502. },
  6503. {
  6504. "name": "vlucas/phpdotenv",
  6505. "version": "v5.6.3",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/vlucas/phpdotenv.git",
  6509. "reference": "955e7815d677a3eaa7075231212f2110983adecc"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
  6514. "reference": "955e7815d677a3eaa7075231212f2110983adecc",
  6515. "shasum": ""
  6516. },
  6517. "require": {
  6518. "ext-pcre": "*",
  6519. "graham-campbell/result-type": "^1.1.4",
  6520. "php": "^7.2.5 || ^8.0",
  6521. "phpoption/phpoption": "^1.9.5",
  6522. "symfony/polyfill-ctype": "^1.26",
  6523. "symfony/polyfill-mbstring": "^1.26",
  6524. "symfony/polyfill-php80": "^1.26"
  6525. },
  6526. "require-dev": {
  6527. "bamarni/composer-bin-plugin": "^1.8.2",
  6528. "ext-filter": "*",
  6529. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6530. },
  6531. "suggest": {
  6532. "ext-filter": "Required to use the boolean validator."
  6533. },
  6534. "type": "library",
  6535. "extra": {
  6536. "bamarni-bin": {
  6537. "bin-links": true,
  6538. "forward-command": false
  6539. },
  6540. "branch-alias": {
  6541. "dev-master": "5.6-dev"
  6542. }
  6543. },
  6544. "autoload": {
  6545. "psr-4": {
  6546. "Dotenv\\": "src/"
  6547. }
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "BSD-3-Clause"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Graham Campbell",
  6556. "email": "hello@gjcampbell.co.uk",
  6557. "homepage": "https://github.com/GrahamCampbell"
  6558. },
  6559. {
  6560. "name": "Vance Lucas",
  6561. "email": "vance@vancelucas.com",
  6562. "homepage": "https://github.com/vlucas"
  6563. }
  6564. ],
  6565. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6566. "keywords": [
  6567. "dotenv",
  6568. "env",
  6569. "environment"
  6570. ],
  6571. "support": {
  6572. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6573. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
  6574. },
  6575. "funding": [
  6576. {
  6577. "url": "https://github.com/GrahamCampbell",
  6578. "type": "github"
  6579. },
  6580. {
  6581. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6582. "type": "tidelift"
  6583. }
  6584. ],
  6585. "time": "2025-12-27T19:49:13+00:00"
  6586. }
  6587. ],
  6588. "aliases": [],
  6589. "minimum-stability": "stable",
  6590. "stability-flags": {},
  6591. "prefer-stable": false,
  6592. "prefer-lowest": false,
  6593. "platform": {
  6594. "php": "^8.3"
  6595. },
  6596. "platform-dev": {},
  6597. "platform-overrides": {
  6598. "php": "8.3"
  6599. },
  6600. "plugin-api-version": "2.9.0"
  6601. }