composer.lock 393 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090
  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": "1f3e4f9eb6cb2b59a5b4e2acc6bc716e",
  8. "content-hash": "564c53c6d0bd1ccbfc397ceebefb933b",
  9. "packages": [
  10. {
  11. "name": "brick/math",
  12. "version": "0.12.3",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/brick/math.git",
  16. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  21. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": "^8.1"
  26. },
  27. "require-dev": {
  28. "php-coveralls/php-coveralls": "^2.2",
  29. "phpunit/phpunit": "^10.1",
  30. "vimeo/psalm": "6.8.8"
  31. },
  32. "type": "library",
  33. "autoload": {
  34. "psr-4": {
  35. "Brick\\Math\\": "src/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "description": "Arbitrary-precision arithmetic library",
  43. "keywords": [
  44. "Arbitrary-precision",
  45. "BigInteger",
  46. "BigRational",
  47. "arithmetic",
  48. "bigdecimal",
  49. "bignum",
  50. "bignumber",
  51. "brick",
  52. "decimal",
  53. "integer",
  54. "math",
  55. "mathematics",
  56. "rational"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/brick/math/issues",
  60. "source": "https://github.com/brick/math/tree/0.12.3"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/BenMorel",
  65. "type": "github"
  66. }
  67. ],
  68. "time": "2025-02-28T13:11:00+00:00"
  69. },
  70. {
  71. "name": "carbonphp/carbon-doctrine-types",
  72. "version": "3.2.0",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  76. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  81. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": "^8.1"
  86. },
  87. "conflict": {
  88. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  89. },
  90. "require-dev": {
  91. "doctrine/dbal": "^4.0.0",
  92. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  93. "phpunit/phpunit": "^10.3"
  94. },
  95. "type": "library",
  96. "autoload": {
  97. "psr-4": {
  98. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  99. }
  100. },
  101. "notification-url": "https://packagist.org/downloads/",
  102. "license": [
  103. "MIT"
  104. ],
  105. "authors": [
  106. {
  107. "name": "KyleKatarn",
  108. "email": "kylekatarnls@gmail.com"
  109. }
  110. ],
  111. "description": "Types to use Carbon in Doctrine",
  112. "keywords": [
  113. "carbon",
  114. "date",
  115. "datetime",
  116. "doctrine",
  117. "time"
  118. ],
  119. "support": {
  120. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  121. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  122. },
  123. "funding": [
  124. {
  125. "url": "https://github.com/kylekatarnls",
  126. "type": "github"
  127. },
  128. {
  129. "url": "https://opencollective.com/Carbon",
  130. "type": "open_collective"
  131. },
  132. {
  133. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  134. "type": "tidelift"
  135. }
  136. ],
  137. "time": "2024-02-09T16:56:22+00:00"
  138. },
  139. {
  140. "name": "doctrine/annotations",
  141. "version": "2.0.1",
  142. "source": {
  143. "type": "git",
  144. "url": "https://github.com/doctrine/annotations.git",
  145. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  146. },
  147. "dist": {
  148. "type": "zip",
  149. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  150. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  151. "shasum": ""
  152. },
  153. "require": {
  154. "doctrine/lexer": "^2 || ^3",
  155. "ext-tokenizer": "*",
  156. "php": "^7.2 || ^8.0",
  157. "psr/cache": "^1 || ^2 || ^3"
  158. },
  159. "require-dev": {
  160. "doctrine/cache": "^2.0",
  161. "doctrine/coding-standard": "^10",
  162. "phpstan/phpstan": "^1.8.0",
  163. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  164. "symfony/cache": "^5.4 || ^6",
  165. "vimeo/psalm": "^4.10"
  166. },
  167. "suggest": {
  168. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  169. },
  170. "type": "library",
  171. "autoload": {
  172. "psr-4": {
  173. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  174. }
  175. },
  176. "notification-url": "https://packagist.org/downloads/",
  177. "license": [
  178. "MIT"
  179. ],
  180. "authors": [
  181. {
  182. "name": "Guilherme Blanco",
  183. "email": "guilhermeblanco@gmail.com"
  184. },
  185. {
  186. "name": "Roman Borschel",
  187. "email": "roman@code-factory.org"
  188. },
  189. {
  190. "name": "Benjamin Eberlei",
  191. "email": "kontakt@beberlei.de"
  192. },
  193. {
  194. "name": "Jonathan Wage",
  195. "email": "jonwage@gmail.com"
  196. },
  197. {
  198. "name": "Johannes Schmitt",
  199. "email": "schmittjoh@gmail.com"
  200. }
  201. ],
  202. "description": "Docblock Annotations Parser",
  203. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  204. "keywords": [
  205. "annotations",
  206. "docblock",
  207. "parser"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/doctrine/annotations/issues",
  211. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  212. },
  213. "time": "2023-02-02T22:02:53+00:00"
  214. },
  215. {
  216. "name": "doctrine/inflector",
  217. "version": "2.0.10",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/doctrine/inflector.git",
  221. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  226. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^7.2 || ^8.0"
  231. },
  232. "require-dev": {
  233. "doctrine/coding-standard": "^11.0",
  234. "phpstan/phpstan": "^1.8",
  235. "phpstan/phpstan-phpunit": "^1.1",
  236. "phpstan/phpstan-strict-rules": "^1.3",
  237. "phpunit/phpunit": "^8.5 || ^9.5",
  238. "vimeo/psalm": "^4.25 || ^5.4"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "authors": [
  251. {
  252. "name": "Guilherme Blanco",
  253. "email": "guilhermeblanco@gmail.com"
  254. },
  255. {
  256. "name": "Roman Borschel",
  257. "email": "roman@code-factory.org"
  258. },
  259. {
  260. "name": "Benjamin Eberlei",
  261. "email": "kontakt@beberlei.de"
  262. },
  263. {
  264. "name": "Jonathan Wage",
  265. "email": "jonwage@gmail.com"
  266. },
  267. {
  268. "name": "Johannes Schmitt",
  269. "email": "schmittjoh@gmail.com"
  270. }
  271. ],
  272. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  273. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  274. "keywords": [
  275. "inflection",
  276. "inflector",
  277. "lowercase",
  278. "manipulation",
  279. "php",
  280. "plural",
  281. "singular",
  282. "strings",
  283. "uppercase",
  284. "words"
  285. ],
  286. "support": {
  287. "issues": "https://github.com/doctrine/inflector/issues",
  288. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  289. },
  290. "funding": [
  291. {
  292. "url": "https://www.doctrine-project.org/sponsorship.html",
  293. "type": "custom"
  294. },
  295. {
  296. "url": "https://www.patreon.com/phpdoctrine",
  297. "type": "patreon"
  298. },
  299. {
  300. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  301. "type": "tidelift"
  302. }
  303. ],
  304. "time": "2024-02-18T20:23:39+00:00"
  305. },
  306. {
  307. "name": "doctrine/instantiator",
  308. "version": "1.5.0",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/doctrine/instantiator.git",
  312. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  317. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  318. "shasum": ""
  319. },
  320. "require": {
  321. "php": "^7.1 || ^8.0"
  322. },
  323. "require-dev": {
  324. "doctrine/coding-standard": "^9 || ^11",
  325. "ext-pdo": "*",
  326. "ext-phar": "*",
  327. "phpbench/phpbench": "^0.16 || ^1",
  328. "phpstan/phpstan": "^1.4",
  329. "phpstan/phpstan-phpunit": "^1",
  330. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  331. "vimeo/psalm": "^4.30 || ^5.4"
  332. },
  333. "type": "library",
  334. "autoload": {
  335. "psr-4": {
  336. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  337. }
  338. },
  339. "notification-url": "https://packagist.org/downloads/",
  340. "license": [
  341. "MIT"
  342. ],
  343. "authors": [
  344. {
  345. "name": "Marco Pivetta",
  346. "email": "ocramius@gmail.com",
  347. "homepage": "https://ocramius.github.io/"
  348. }
  349. ],
  350. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  351. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  352. "keywords": [
  353. "constructor",
  354. "instantiate"
  355. ],
  356. "support": {
  357. "issues": "https://github.com/doctrine/instantiator/issues",
  358. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  359. },
  360. "funding": [
  361. {
  362. "url": "https://www.doctrine-project.org/sponsorship.html",
  363. "type": "custom"
  364. },
  365. {
  366. "url": "https://www.patreon.com/phpdoctrine",
  367. "type": "patreon"
  368. },
  369. {
  370. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  371. "type": "tidelift"
  372. }
  373. ],
  374. "time": "2022-12-30T00:15:36+00:00"
  375. },
  376. {
  377. "name": "doctrine/lexer",
  378. "version": "3.0.1",
  379. "source": {
  380. "type": "git",
  381. "url": "https://github.com/doctrine/lexer.git",
  382. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  383. },
  384. "dist": {
  385. "type": "zip",
  386. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  387. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  388. "shasum": ""
  389. },
  390. "require": {
  391. "php": "^8.1"
  392. },
  393. "require-dev": {
  394. "doctrine/coding-standard": "^12",
  395. "phpstan/phpstan": "^1.10",
  396. "phpunit/phpunit": "^10.5",
  397. "psalm/plugin-phpunit": "^0.18.3",
  398. "vimeo/psalm": "^5.21"
  399. },
  400. "type": "library",
  401. "autoload": {
  402. "psr-4": {
  403. "Doctrine\\Common\\Lexer\\": "src"
  404. }
  405. },
  406. "notification-url": "https://packagist.org/downloads/",
  407. "license": [
  408. "MIT"
  409. ],
  410. "authors": [
  411. {
  412. "name": "Guilherme Blanco",
  413. "email": "guilhermeblanco@gmail.com"
  414. },
  415. {
  416. "name": "Roman Borschel",
  417. "email": "roman@code-factory.org"
  418. },
  419. {
  420. "name": "Johannes Schmitt",
  421. "email": "schmittjoh@gmail.com"
  422. }
  423. ],
  424. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  425. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  426. "keywords": [
  427. "annotations",
  428. "docblock",
  429. "lexer",
  430. "parser",
  431. "php"
  432. ],
  433. "support": {
  434. "issues": "https://github.com/doctrine/lexer/issues",
  435. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  436. },
  437. "funding": [
  438. {
  439. "url": "https://www.doctrine-project.org/sponsorship.html",
  440. "type": "custom"
  441. },
  442. {
  443. "url": "https://www.patreon.com/phpdoctrine",
  444. "type": "patreon"
  445. },
  446. {
  447. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  448. "type": "tidelift"
  449. }
  450. ],
  451. "time": "2024-02-05T11:56:58+00:00"
  452. },
  453. {
  454. "name": "fig/http-message-util",
  455. "version": "1.1.5",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/php-fig/http-message-util.git",
  459. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  464. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  465. "shasum": ""
  466. },
  467. "require": {
  468. "php": "^5.3 || ^7.0 || ^8.0"
  469. },
  470. "suggest": {
  471. "psr/http-message": "The package containing the PSR-7 interfaces"
  472. },
  473. "type": "library",
  474. "extra": {
  475. "branch-alias": {
  476. "dev-master": "1.1.x-dev"
  477. }
  478. },
  479. "autoload": {
  480. "psr-4": {
  481. "Fig\\Http\\Message\\": "src/"
  482. }
  483. },
  484. "notification-url": "https://packagist.org/downloads/",
  485. "license": [
  486. "MIT"
  487. ],
  488. "authors": [
  489. {
  490. "name": "PHP-FIG",
  491. "homepage": "https://www.php-fig.org/"
  492. }
  493. ],
  494. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  495. "keywords": [
  496. "http",
  497. "http-message",
  498. "psr",
  499. "psr-7",
  500. "request",
  501. "response"
  502. ],
  503. "support": {
  504. "issues": "https://github.com/php-fig/http-message-util/issues",
  505. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  506. },
  507. "time": "2020-11-24T22:02:12+00:00"
  508. },
  509. {
  510. "name": "fukuball/jieba-php",
  511. "version": "0.34",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/fukuball/jieba-php.git",
  515. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/44d62bda8b80fe07ff59e8fc654f477685109a66",
  520. "reference": "44d62bda8b80fe07ff59e8fc654f477685109a66",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "php": ">= 5.3"
  525. },
  526. "require-dev": {
  527. "php-coveralls/php-coveralls": "dev-master",
  528. "phpunit/phpunit": "~9.0",
  529. "squizlabs/php_codesniffer": "4.0.x-dev"
  530. },
  531. "type": "library",
  532. "autoload": {
  533. "files": [
  534. "src/vendor/multi-array/MultiArray.php",
  535. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  536. ],
  537. "psr-4": {
  538. "Fukuball\\Jieba\\": "src/class/"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "fukuball",
  548. "email": "fukuball@gmail.com"
  549. }
  550. ],
  551. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  552. "keywords": [
  553. "Jieba",
  554. "php"
  555. ],
  556. "support": {
  557. "issues": "https://github.com/fukuball/jieba-php/issues",
  558. "source": "https://github.com/fukuball/jieba-php/tree/0.34"
  559. },
  560. "time": "2022-08-15T06:26:03+00:00"
  561. },
  562. {
  563. "name": "graham-campbell/result-type",
  564. "version": "v1.1.2",
  565. "source": {
  566. "type": "git",
  567. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  568. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  569. },
  570. "dist": {
  571. "type": "zip",
  572. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  573. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  574. "shasum": ""
  575. },
  576. "require": {
  577. "php": "^7.2.5 || ^8.0",
  578. "phpoption/phpoption": "^1.9.2"
  579. },
  580. "require-dev": {
  581. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  582. },
  583. "type": "library",
  584. "autoload": {
  585. "psr-4": {
  586. "GrahamCampbell\\ResultType\\": "src/"
  587. }
  588. },
  589. "notification-url": "https://packagist.org/downloads/",
  590. "license": [
  591. "MIT"
  592. ],
  593. "authors": [
  594. {
  595. "name": "Graham Campbell",
  596. "email": "hello@gjcampbell.co.uk",
  597. "homepage": "https://github.com/GrahamCampbell"
  598. }
  599. ],
  600. "description": "An Implementation Of The Result Type",
  601. "keywords": [
  602. "Graham Campbell",
  603. "GrahamCampbell",
  604. "Result Type",
  605. "Result-Type",
  606. "result"
  607. ],
  608. "support": {
  609. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  610. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  611. },
  612. "funding": [
  613. {
  614. "url": "https://github.com/GrahamCampbell",
  615. "type": "github"
  616. },
  617. {
  618. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  619. "type": "tidelift"
  620. }
  621. ],
  622. "time": "2023-11-12T22:16:48+00:00"
  623. },
  624. {
  625. "name": "guzzlehttp/guzzle",
  626. "version": "7.8.1",
  627. "source": {
  628. "type": "git",
  629. "url": "https://github.com/guzzle/guzzle.git",
  630. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  631. },
  632. "dist": {
  633. "type": "zip",
  634. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  635. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  636. "shasum": ""
  637. },
  638. "require": {
  639. "ext-json": "*",
  640. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  641. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  642. "php": "^7.2.5 || ^8.0",
  643. "psr/http-client": "^1.0",
  644. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  645. },
  646. "provide": {
  647. "psr/http-client-implementation": "1.0"
  648. },
  649. "require-dev": {
  650. "bamarni/composer-bin-plugin": "^1.8.2",
  651. "ext-curl": "*",
  652. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  653. "php-http/message-factory": "^1.1",
  654. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  655. "psr/log": "^1.1 || ^2.0 || ^3.0"
  656. },
  657. "suggest": {
  658. "ext-curl": "Required for CURL handler support",
  659. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  660. "psr/log": "Required for using the Log middleware"
  661. },
  662. "type": "library",
  663. "extra": {
  664. "bamarni-bin": {
  665. "bin-links": true,
  666. "forward-command": false
  667. }
  668. },
  669. "autoload": {
  670. "files": [
  671. "src/functions_include.php"
  672. ],
  673. "psr-4": {
  674. "GuzzleHttp\\": "src/"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Graham Campbell",
  684. "email": "hello@gjcampbell.co.uk",
  685. "homepage": "https://github.com/GrahamCampbell"
  686. },
  687. {
  688. "name": "Michael Dowling",
  689. "email": "mtdowling@gmail.com",
  690. "homepage": "https://github.com/mtdowling"
  691. },
  692. {
  693. "name": "Jeremy Lindblom",
  694. "email": "jeremeamia@gmail.com",
  695. "homepage": "https://github.com/jeremeamia"
  696. },
  697. {
  698. "name": "George Mponos",
  699. "email": "gmponos@gmail.com",
  700. "homepage": "https://github.com/gmponos"
  701. },
  702. {
  703. "name": "Tobias Nyholm",
  704. "email": "tobias.nyholm@gmail.com",
  705. "homepage": "https://github.com/Nyholm"
  706. },
  707. {
  708. "name": "Márk Sági-Kazár",
  709. "email": "mark.sagikazar@gmail.com",
  710. "homepage": "https://github.com/sagikazarmark"
  711. },
  712. {
  713. "name": "Tobias Schultze",
  714. "email": "webmaster@tubo-world.de",
  715. "homepage": "https://github.com/Tobion"
  716. }
  717. ],
  718. "description": "Guzzle is a PHP HTTP client library",
  719. "keywords": [
  720. "client",
  721. "curl",
  722. "framework",
  723. "http",
  724. "http client",
  725. "psr-18",
  726. "psr-7",
  727. "rest",
  728. "web service"
  729. ],
  730. "support": {
  731. "issues": "https://github.com/guzzle/guzzle/issues",
  732. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  733. },
  734. "funding": [
  735. {
  736. "url": "https://github.com/GrahamCampbell",
  737. "type": "github"
  738. },
  739. {
  740. "url": "https://github.com/Nyholm",
  741. "type": "github"
  742. },
  743. {
  744. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  745. "type": "tidelift"
  746. }
  747. ],
  748. "time": "2023-12-03T20:35:24+00:00"
  749. },
  750. {
  751. "name": "guzzlehttp/promises",
  752. "version": "2.0.2",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/guzzle/promises.git",
  756. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  761. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  762. "shasum": ""
  763. },
  764. "require": {
  765. "php": "^7.2.5 || ^8.0"
  766. },
  767. "require-dev": {
  768. "bamarni/composer-bin-plugin": "^1.8.2",
  769. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  770. },
  771. "type": "library",
  772. "extra": {
  773. "bamarni-bin": {
  774. "bin-links": true,
  775. "forward-command": false
  776. }
  777. },
  778. "autoload": {
  779. "psr-4": {
  780. "GuzzleHttp\\Promise\\": "src/"
  781. }
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "MIT"
  786. ],
  787. "authors": [
  788. {
  789. "name": "Graham Campbell",
  790. "email": "hello@gjcampbell.co.uk",
  791. "homepage": "https://github.com/GrahamCampbell"
  792. },
  793. {
  794. "name": "Michael Dowling",
  795. "email": "mtdowling@gmail.com",
  796. "homepage": "https://github.com/mtdowling"
  797. },
  798. {
  799. "name": "Tobias Nyholm",
  800. "email": "tobias.nyholm@gmail.com",
  801. "homepage": "https://github.com/Nyholm"
  802. },
  803. {
  804. "name": "Tobias Schultze",
  805. "email": "webmaster@tubo-world.de",
  806. "homepage": "https://github.com/Tobion"
  807. }
  808. ],
  809. "description": "Guzzle promises library",
  810. "keywords": [
  811. "promise"
  812. ],
  813. "support": {
  814. "issues": "https://github.com/guzzle/promises/issues",
  815. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  816. },
  817. "funding": [
  818. {
  819. "url": "https://github.com/GrahamCampbell",
  820. "type": "github"
  821. },
  822. {
  823. "url": "https://github.com/Nyholm",
  824. "type": "github"
  825. },
  826. {
  827. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  828. "type": "tidelift"
  829. }
  830. ],
  831. "time": "2023-12-03T20:19:20+00:00"
  832. },
  833. {
  834. "name": "guzzlehttp/psr7",
  835. "version": "2.6.2",
  836. "source": {
  837. "type": "git",
  838. "url": "https://github.com/guzzle/psr7.git",
  839. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  840. },
  841. "dist": {
  842. "type": "zip",
  843. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  844. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  845. "shasum": ""
  846. },
  847. "require": {
  848. "php": "^7.2.5 || ^8.0",
  849. "psr/http-factory": "^1.0",
  850. "psr/http-message": "^1.1 || ^2.0",
  851. "ralouphie/getallheaders": "^3.0"
  852. },
  853. "provide": {
  854. "psr/http-factory-implementation": "1.0",
  855. "psr/http-message-implementation": "1.0"
  856. },
  857. "require-dev": {
  858. "bamarni/composer-bin-plugin": "^1.8.2",
  859. "http-interop/http-factory-tests": "^0.9",
  860. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  861. },
  862. "suggest": {
  863. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  864. },
  865. "type": "library",
  866. "extra": {
  867. "bamarni-bin": {
  868. "bin-links": true,
  869. "forward-command": false
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "GuzzleHttp\\Psr7\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "authors": [
  882. {
  883. "name": "Graham Campbell",
  884. "email": "hello@gjcampbell.co.uk",
  885. "homepage": "https://github.com/GrahamCampbell"
  886. },
  887. {
  888. "name": "Michael Dowling",
  889. "email": "mtdowling@gmail.com",
  890. "homepage": "https://github.com/mtdowling"
  891. },
  892. {
  893. "name": "George Mponos",
  894. "email": "gmponos@gmail.com",
  895. "homepage": "https://github.com/gmponos"
  896. },
  897. {
  898. "name": "Tobias Nyholm",
  899. "email": "tobias.nyholm@gmail.com",
  900. "homepage": "https://github.com/Nyholm"
  901. },
  902. {
  903. "name": "Márk Sági-Kazár",
  904. "email": "mark.sagikazar@gmail.com",
  905. "homepage": "https://github.com/sagikazarmark"
  906. },
  907. {
  908. "name": "Tobias Schultze",
  909. "email": "webmaster@tubo-world.de",
  910. "homepage": "https://github.com/Tobion"
  911. },
  912. {
  913. "name": "Márk Sági-Kazár",
  914. "email": "mark.sagikazar@gmail.com",
  915. "homepage": "https://sagikazarmark.hu"
  916. }
  917. ],
  918. "description": "PSR-7 message implementation that also provides common utility methods",
  919. "keywords": [
  920. "http",
  921. "message",
  922. "psr-7",
  923. "request",
  924. "response",
  925. "stream",
  926. "uri",
  927. "url"
  928. ],
  929. "support": {
  930. "issues": "https://github.com/guzzle/psr7/issues",
  931. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  932. },
  933. "funding": [
  934. {
  935. "url": "https://github.com/GrahamCampbell",
  936. "type": "github"
  937. },
  938. {
  939. "url": "https://github.com/Nyholm",
  940. "type": "github"
  941. },
  942. {
  943. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  944. "type": "tidelift"
  945. }
  946. ],
  947. "time": "2023-12-03T20:05:35+00:00"
  948. },
  949. {
  950. "name": "hyperf/cache",
  951. "version": "v3.1.23",
  952. "source": {
  953. "type": "git",
  954. "url": "https://github.com/hyperf/cache.git",
  955. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  956. },
  957. "dist": {
  958. "type": "zip",
  959. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  960. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  961. "shasum": ""
  962. },
  963. "require": {
  964. "hyperf/codec": "~3.1.0",
  965. "hyperf/collection": "~3.1.0",
  966. "hyperf/contract": "~3.1.0",
  967. "hyperf/support": "~3.1.0",
  968. "hyperf/utils": "~3.1.0",
  969. "php": ">=8.1",
  970. "psr/container": "^1.0|^2.0",
  971. "psr/simple-cache": "^1.0|^2.0|^3.0"
  972. },
  973. "suggest": {
  974. "hyperf/di": "Use cache annotations.",
  975. "hyperf/event": "Use listener to delete annotation cache."
  976. },
  977. "type": "library",
  978. "extra": {
  979. "branch-alias": {
  980. "dev-master": "3.1-dev"
  981. },
  982. "hyperf": {
  983. "config": "Hyperf\\Cache\\ConfigProvider"
  984. }
  985. },
  986. "autoload": {
  987. "psr-4": {
  988. "Hyperf\\Cache\\": "src/"
  989. }
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "MIT"
  994. ],
  995. "description": "A cache component for hyperf.",
  996. "homepage": "https://hyperf.io",
  997. "keywords": [
  998. "cache",
  999. "hyperf",
  1000. "php"
  1001. ],
  1002. "support": {
  1003. "docs": "https://hyperf.wiki",
  1004. "issues": "https://github.com/hyperf/hyperf/issues",
  1005. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1006. "source": "https://github.com/hyperf/hyperf"
  1007. },
  1008. "funding": [
  1009. {
  1010. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1011. "type": "custom"
  1012. },
  1013. {
  1014. "url": "https://opencollective.com/hyperf",
  1015. "type": "open_collective"
  1016. }
  1017. ],
  1018. "time": "2024-05-23T03:43:58+00:00"
  1019. },
  1020. {
  1021. "name": "hyperf/code-parser",
  1022. "version": "v3.1.15",
  1023. "source": {
  1024. "type": "git",
  1025. "url": "https://github.com/hyperf/code-parser.git",
  1026. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1027. },
  1028. "dist": {
  1029. "type": "zip",
  1030. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1031. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1032. "shasum": ""
  1033. },
  1034. "require": {
  1035. "hyperf/collection": "~3.1.0",
  1036. "hyperf/stringable": "~3.1.0",
  1037. "hyperf/support": "~3.1.0",
  1038. "php": ">=8.1"
  1039. },
  1040. "suggest": {
  1041. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1042. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1043. },
  1044. "type": "library",
  1045. "extra": {
  1046. "branch-alias": {
  1047. "dev-master": "3.1-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "psr-4": {
  1052. "Hyperf\\CodeParser\\": "src/"
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "description": "A code parser component for Hyperf.",
  1060. "homepage": "https://hyperf.io",
  1061. "keywords": [
  1062. "code-parser",
  1063. "hyperf",
  1064. "php",
  1065. "swoole"
  1066. ],
  1067. "support": {
  1068. "docs": "https://hyperf.wiki",
  1069. "issues": "https://github.com/hyperf/hyperf/issues",
  1070. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1071. "source": "https://github.com/hyperf/hyperf"
  1072. },
  1073. "funding": [
  1074. {
  1075. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1076. "type": "custom"
  1077. },
  1078. {
  1079. "url": "https://opencollective.com/hyperf",
  1080. "type": "open_collective"
  1081. }
  1082. ],
  1083. "time": "2024-03-23T11:28:51+00:00"
  1084. },
  1085. {
  1086. "name": "hyperf/codec",
  1087. "version": "v3.1.15",
  1088. "source": {
  1089. "type": "git",
  1090. "url": "https://github.com/hyperf/codec.git",
  1091. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1092. },
  1093. "dist": {
  1094. "type": "zip",
  1095. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1096. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1097. "shasum": ""
  1098. },
  1099. "require": {
  1100. "ext-json": "*",
  1101. "ext-xml": "*",
  1102. "hyperf/contract": "~3.1.0",
  1103. "php": ">=8.1"
  1104. },
  1105. "suggest": {
  1106. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1107. },
  1108. "type": "library",
  1109. "extra": {
  1110. "branch-alias": {
  1111. "dev-master": "3.1-dev"
  1112. }
  1113. },
  1114. "autoload": {
  1115. "psr-4": {
  1116. "Hyperf\\Codec\\": "src/"
  1117. }
  1118. },
  1119. "notification-url": "https://packagist.org/downloads/",
  1120. "license": [
  1121. "MIT"
  1122. ],
  1123. "description": "A codec component for Hyperf.",
  1124. "homepage": "https://hyperf.io",
  1125. "keywords": [
  1126. "codec",
  1127. "hyperf",
  1128. "php",
  1129. "swoole"
  1130. ],
  1131. "support": {
  1132. "docs": "https://hyperf.wiki",
  1133. "issues": "https://github.com/hyperf/hyperf/issues",
  1134. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1135. "source": "https://github.com/hyperf/hyperf"
  1136. },
  1137. "funding": [
  1138. {
  1139. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1140. "type": "custom"
  1141. },
  1142. {
  1143. "url": "https://opencollective.com/hyperf",
  1144. "type": "open_collective"
  1145. }
  1146. ],
  1147. "time": "2024-03-23T11:28:51+00:00"
  1148. },
  1149. {
  1150. "name": "hyperf/collection",
  1151. "version": "v3.1.23.2",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/hyperf/collection.git",
  1155. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1160. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "hyperf/conditionable": "~3.1.0",
  1165. "hyperf/contract": "~3.1.0",
  1166. "hyperf/macroable": "~3.1.0",
  1167. "hyperf/stringable": "~3.1.0",
  1168. "php": ">=8.1"
  1169. },
  1170. "type": "library",
  1171. "extra": {
  1172. "branch-alias": {
  1173. "dev-master": "3.1-dev"
  1174. }
  1175. },
  1176. "autoload": {
  1177. "files": [
  1178. "src/Functions.php"
  1179. ],
  1180. "psr-4": {
  1181. "Hyperf\\Collection\\": "src/"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "description": "Hyperf Collection package which come from illuminate/collections",
  1189. "homepage": "https://hyperf.io",
  1190. "keywords": [
  1191. "collection",
  1192. "hyperf",
  1193. "php",
  1194. "swoole"
  1195. ],
  1196. "support": {
  1197. "docs": "https://hyperf.wiki",
  1198. "issues": "https://github.com/hyperf/hyperf/issues",
  1199. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1200. "source": "https://github.com/hyperf/hyperf"
  1201. },
  1202. "funding": [
  1203. {
  1204. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1205. "type": "custom"
  1206. },
  1207. {
  1208. "url": "https://opencollective.com/hyperf",
  1209. "type": "open_collective"
  1210. }
  1211. ],
  1212. "time": "2024-05-24T08:33:42+00:00"
  1213. },
  1214. {
  1215. "name": "hyperf/command",
  1216. "version": "v3.1.24",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/hyperf/command.git",
  1220. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1225. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "hyperf/collection": "~3.1.0",
  1230. "hyperf/context": "~3.1.0",
  1231. "hyperf/contract": "~3.1.0",
  1232. "hyperf/coroutine": "~3.1.0",
  1233. "hyperf/di": "~3.1.0",
  1234. "hyperf/stringable": "~3.1.0",
  1235. "hyperf/support": "~3.1.0",
  1236. "hyperf/tappable": "~3.1.0",
  1237. "php": ">=8.1",
  1238. "psr/event-dispatcher": "^1.0",
  1239. "symfony/console": "^5.0|^6.0|^7.0"
  1240. },
  1241. "suggest": {
  1242. "hyperf/di": "Required to use annotations.",
  1243. "hyperf/event": "Required to use listeners."
  1244. },
  1245. "type": "library",
  1246. "extra": {
  1247. "branch-alias": {
  1248. "dev-master": "3.1-dev"
  1249. },
  1250. "hyperf": {
  1251. "config": "Hyperf\\Command\\ConfigProvider"
  1252. }
  1253. },
  1254. "autoload": {
  1255. "psr-4": {
  1256. "Hyperf\\Command\\": "src/"
  1257. }
  1258. },
  1259. "notification-url": "https://packagist.org/downloads/",
  1260. "license": [
  1261. "MIT"
  1262. ],
  1263. "description": "Command for hyperf",
  1264. "keywords": [
  1265. "command",
  1266. "php",
  1267. "swoole"
  1268. ],
  1269. "support": {
  1270. "issues": "https://github.com/hyperf/command/issues",
  1271. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1272. },
  1273. "funding": [
  1274. {
  1275. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1276. "type": "custom"
  1277. },
  1278. {
  1279. "url": "https://opencollective.com/hyperf",
  1280. "type": "open_collective"
  1281. }
  1282. ],
  1283. "time": "2024-05-27T12:37:07+00:00"
  1284. },
  1285. {
  1286. "name": "hyperf/conditionable",
  1287. "version": "v3.1.15",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/hyperf/conditionable.git",
  1291. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1296. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "php": ">=8.1"
  1301. },
  1302. "type": "library",
  1303. "extra": {
  1304. "branch-alias": {
  1305. "dev-master": "3.1-dev"
  1306. }
  1307. },
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Hyperf\\Conditionable\\": "src/"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1318. "homepage": "https://hyperf.io",
  1319. "keywords": [
  1320. "conditionable",
  1321. "hyperf",
  1322. "php",
  1323. "swoole"
  1324. ],
  1325. "support": {
  1326. "docs": "https://hyperf.wiki",
  1327. "issues": "https://github.com/hyperf/hyperf/issues",
  1328. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1329. "source": "https://github.com/hyperf/hyperf"
  1330. },
  1331. "funding": [
  1332. {
  1333. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1334. "type": "custom"
  1335. },
  1336. {
  1337. "url": "https://opencollective.com/hyperf",
  1338. "type": "open_collective"
  1339. }
  1340. ],
  1341. "time": "2024-03-23T11:28:51+00:00"
  1342. },
  1343. {
  1344. "name": "hyperf/config",
  1345. "version": "v3.1.15",
  1346. "source": {
  1347. "type": "git",
  1348. "url": "https://github.com/hyperf/config.git",
  1349. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1350. },
  1351. "dist": {
  1352. "type": "zip",
  1353. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1354. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1355. "shasum": ""
  1356. },
  1357. "require": {
  1358. "hyperf/collection": "~3.1.0",
  1359. "hyperf/contract": "~3.1.0",
  1360. "hyperf/support": "~3.1.0",
  1361. "php": ">=8.1",
  1362. "psr/container": "^1.0|^2.0",
  1363. "symfony/finder": "^5.0|^6.0|^7.0"
  1364. },
  1365. "suggest": {
  1366. "hyperf/context": "Required to use config()",
  1367. "hyperf/di": "Allows using @Value annotation",
  1368. "hyperf/event": "Allows using @Value annotation",
  1369. "hyperf/framework": "Allows using @Value annotation",
  1370. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1371. },
  1372. "type": "library",
  1373. "extra": {
  1374. "branch-alias": {
  1375. "dev-master": "3.1-dev"
  1376. },
  1377. "hyperf": {
  1378. "config": "Hyperf\\Config\\ConfigProvider"
  1379. }
  1380. },
  1381. "autoload": {
  1382. "files": [
  1383. "./src/Functions.php"
  1384. ],
  1385. "psr-4": {
  1386. "Hyperf\\Config\\": "src/"
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "MIT"
  1392. ],
  1393. "description": "An independent component that provides configuration container.",
  1394. "homepage": "https://hyperf.io",
  1395. "keywords": [
  1396. "config",
  1397. "configuration",
  1398. "hyperf",
  1399. "php",
  1400. "swoole"
  1401. ],
  1402. "support": {
  1403. "docs": "https://hyperf.wiki",
  1404. "issues": "https://github.com/hyperf/hyperf/issues",
  1405. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1406. "source": "https://github.com/hyperf/hyperf"
  1407. },
  1408. "funding": [
  1409. {
  1410. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1411. "type": "custom"
  1412. },
  1413. {
  1414. "url": "https://opencollective.com/hyperf",
  1415. "type": "open_collective"
  1416. }
  1417. ],
  1418. "time": "2024-03-23T11:28:51+00:00"
  1419. },
  1420. {
  1421. "name": "hyperf/config-center",
  1422. "version": "v3.1.15",
  1423. "source": {
  1424. "type": "git",
  1425. "url": "https://github.com/hyperf/config-center.git",
  1426. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1427. },
  1428. "dist": {
  1429. "type": "zip",
  1430. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1431. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1432. "shasum": ""
  1433. },
  1434. "require": {
  1435. "hyperf/support": "~3.1.0",
  1436. "php": ">=8.1"
  1437. },
  1438. "suggest": {
  1439. "hyperf/process": "^2.1"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "3.1-dev"
  1445. },
  1446. "hyperf": {
  1447. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1448. }
  1449. },
  1450. "autoload": {
  1451. "psr-4": {
  1452. "Hyperf\\ConfigCenter\\": "src/"
  1453. }
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "MIT"
  1458. ],
  1459. "description": "The abstraction component of config center",
  1460. "homepage": "https://hyperf.io",
  1461. "keywords": [
  1462. "config-center",
  1463. "hyperf",
  1464. "php"
  1465. ],
  1466. "support": {
  1467. "docs": "https://hyperf.wiki",
  1468. "issues": "https://github.com/hyperf/hyperf/issues",
  1469. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1470. "source": "https://github.com/hyperf/hyperf"
  1471. },
  1472. "funding": [
  1473. {
  1474. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1475. "type": "custom"
  1476. },
  1477. {
  1478. "url": "https://opencollective.com/hyperf",
  1479. "type": "open_collective"
  1480. }
  1481. ],
  1482. "time": "2024-03-23T11:28:51+00:00"
  1483. },
  1484. {
  1485. "name": "hyperf/config-nacos",
  1486. "version": "v3.1.15",
  1487. "source": {
  1488. "type": "git",
  1489. "url": "https://github.com/hyperf/config-nacos.git",
  1490. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1491. },
  1492. "dist": {
  1493. "type": "zip",
  1494. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1495. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1496. "shasum": ""
  1497. },
  1498. "require": {
  1499. "hyperf/codec": "~3.1.0",
  1500. "hyperf/config-center": "~3.1.0",
  1501. "hyperf/contract": "~3.1.0",
  1502. "hyperf/guzzle": "~3.1.0",
  1503. "hyperf/nacos": "~3.1.0",
  1504. "hyperf/support": "~3.1.0",
  1505. "hyperf/utils": "~3.1.0",
  1506. "jetbrains/phpstorm-attributes": "^1.0",
  1507. "php": ">=8.1"
  1508. },
  1509. "suggest": {
  1510. "ext-json": "*",
  1511. "ext-simplexml": "*",
  1512. "ext-yaml": "*",
  1513. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1514. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1515. "hyperf/process": "Required to use processes. (~2.2.0)"
  1516. },
  1517. "type": "library",
  1518. "extra": {
  1519. "branch-alias": {
  1520. "dev-master": "3.1-dev"
  1521. },
  1522. "hyperf": {
  1523. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1524. }
  1525. },
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Hyperf\\ConfigNacos\\": "src/"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "description": "A nacos adapter for config center component.",
  1536. "homepage": "https://hyperf.io",
  1537. "keywords": [
  1538. "hyperf",
  1539. "nacos",
  1540. "php",
  1541. "swoole"
  1542. ],
  1543. "support": {
  1544. "docs": "https://hyperf.wiki",
  1545. "issues": "https://github.com/hyperf/hyperf/issues",
  1546. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1547. "source": "https://github.com/hyperf/hyperf"
  1548. },
  1549. "funding": [
  1550. {
  1551. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1552. "type": "custom"
  1553. },
  1554. {
  1555. "url": "https://opencollective.com/hyperf",
  1556. "type": "open_collective"
  1557. }
  1558. ],
  1559. "time": "2024-03-23T11:28:51+00:00"
  1560. },
  1561. {
  1562. "name": "hyperf/constants",
  1563. "version": "v3.1.16",
  1564. "source": {
  1565. "type": "git",
  1566. "url": "https://github.com/hyperf/constants.git",
  1567. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1568. },
  1569. "dist": {
  1570. "type": "zip",
  1571. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1572. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1573. "shasum": ""
  1574. },
  1575. "require": {
  1576. "hyperf/di": "~3.1.0",
  1577. "hyperf/support": "~3.1.0",
  1578. "hyperf/utils": "~3.1.0",
  1579. "php": ">=8.1"
  1580. },
  1581. "suggest": {
  1582. "hyperf/translation": "Required to use translation."
  1583. },
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-master": "3.1-dev"
  1588. },
  1589. "hyperf": {
  1590. "config": "Hyperf\\Constants\\ConfigProvider"
  1591. }
  1592. },
  1593. "autoload": {
  1594. "psr-4": {
  1595. "Hyperf\\Constants\\": "src/"
  1596. }
  1597. },
  1598. "notification-url": "https://packagist.org/downloads/",
  1599. "license": [
  1600. "MIT"
  1601. ],
  1602. "description": "A constants component for hyperf.",
  1603. "homepage": "https://hyperf.io",
  1604. "keywords": [
  1605. "constants",
  1606. "hyperf",
  1607. "php"
  1608. ],
  1609. "support": {
  1610. "docs": "https://hyperf.wiki",
  1611. "issues": "https://github.com/hyperf/hyperf/issues",
  1612. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1613. "source": "https://github.com/hyperf/hyperf"
  1614. },
  1615. "funding": [
  1616. {
  1617. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1618. "type": "custom"
  1619. },
  1620. {
  1621. "url": "https://opencollective.com/hyperf",
  1622. "type": "open_collective"
  1623. }
  1624. ],
  1625. "time": "2024-03-31T11:35:28+00:00"
  1626. },
  1627. {
  1628. "name": "hyperf/consul",
  1629. "version": "v3.1.22",
  1630. "source": {
  1631. "type": "git",
  1632. "url": "https://github.com/hyperf/consul.git",
  1633. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1634. },
  1635. "dist": {
  1636. "type": "zip",
  1637. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1638. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1639. "shasum": ""
  1640. },
  1641. "require": {
  1642. "guzzlehttp/guzzle": "^6.3|^7.0",
  1643. "php": ">=8.1"
  1644. },
  1645. "require-dev": {
  1646. "hyperf/guzzle": "~3.1.0"
  1647. },
  1648. "type": "library",
  1649. "extra": {
  1650. "branch-alias": {
  1651. "dev-master": "3.1-dev"
  1652. },
  1653. "hyperf": {
  1654. "config": "Hyperf\\Consul\\ConfigProvider"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-4": {
  1659. "Hyperf\\Consul\\": "src/"
  1660. }
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "MIT"
  1665. ],
  1666. "description": "A Consul Client for Hyperf.",
  1667. "homepage": "https://hyperf.io",
  1668. "keywords": [
  1669. "consul",
  1670. "consul-client",
  1671. "hyperf",
  1672. "php",
  1673. "swoole"
  1674. ],
  1675. "support": {
  1676. "docs": "https://hyperf.wiki",
  1677. "issues": "https://github.com/hyperf/hyperf/issues",
  1678. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1679. "source": "https://github.com/hyperf/hyperf"
  1680. },
  1681. "funding": [
  1682. {
  1683. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1684. "type": "custom"
  1685. },
  1686. {
  1687. "url": "https://opencollective.com/hyperf",
  1688. "type": "open_collective"
  1689. }
  1690. ],
  1691. "time": "2024-05-15T06:42:24+00:00"
  1692. },
  1693. {
  1694. "name": "hyperf/context",
  1695. "version": "v3.1.15",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/hyperf/context.git",
  1699. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1704. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1705. "shasum": ""
  1706. },
  1707. "require": {
  1708. "hyperf/engine": "^2.0",
  1709. "php": ">=8.1"
  1710. },
  1711. "suggest": {
  1712. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1713. },
  1714. "type": "library",
  1715. "extra": {
  1716. "branch-alias": {
  1717. "dev-master": "3.1-dev"
  1718. }
  1719. },
  1720. "autoload": {
  1721. "psr-4": {
  1722. "Hyperf\\Context\\": "src/"
  1723. }
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "description": "A coroutine/application context library.",
  1730. "homepage": "https://hyperf.io",
  1731. "keywords": [
  1732. "Context",
  1733. "hyperf",
  1734. "php",
  1735. "swoole"
  1736. ],
  1737. "support": {
  1738. "docs": "https://hyperf.wiki",
  1739. "issues": "https://github.com/hyperf/hyperf/issues",
  1740. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1741. "source": "https://github.com/hyperf/hyperf"
  1742. },
  1743. "funding": [
  1744. {
  1745. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1746. "type": "custom"
  1747. },
  1748. {
  1749. "url": "https://opencollective.com/hyperf",
  1750. "type": "open_collective"
  1751. }
  1752. ],
  1753. "time": "2024-03-23T11:28:51+00:00"
  1754. },
  1755. {
  1756. "name": "hyperf/contract",
  1757. "version": "v3.1.15",
  1758. "source": {
  1759. "type": "git",
  1760. "url": "https://github.com/hyperf/contract.git",
  1761. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1762. },
  1763. "dist": {
  1764. "type": "zip",
  1765. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1766. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1767. "shasum": ""
  1768. },
  1769. "require": {
  1770. "php": ">=8.1"
  1771. },
  1772. "type": "library",
  1773. "extra": {
  1774. "branch-alias": {
  1775. "dev-master": "3.1-dev"
  1776. }
  1777. },
  1778. "autoload": {
  1779. "psr-4": {
  1780. "Hyperf\\Contract\\": "src/"
  1781. }
  1782. },
  1783. "notification-url": "https://packagist.org/downloads/",
  1784. "license": [
  1785. "MIT"
  1786. ],
  1787. "description": "The contracts of Hyperf.",
  1788. "homepage": "https://hyperf.io",
  1789. "keywords": [
  1790. "hyperf",
  1791. "php",
  1792. "swoole"
  1793. ],
  1794. "support": {
  1795. "docs": "https://hyperf.wiki",
  1796. "issues": "https://github.com/hyperf/hyperf/issues",
  1797. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1798. "source": "https://github.com/hyperf/hyperf"
  1799. },
  1800. "funding": [
  1801. {
  1802. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1803. "type": "custom"
  1804. },
  1805. {
  1806. "url": "https://opencollective.com/hyperf",
  1807. "type": "open_collective"
  1808. }
  1809. ],
  1810. "time": "2024-03-23T11:28:51+00:00"
  1811. },
  1812. {
  1813. "name": "hyperf/coordinator",
  1814. "version": "v3.1.21",
  1815. "source": {
  1816. "type": "git",
  1817. "url": "https://github.com/hyperf/coordinator.git",
  1818. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1819. },
  1820. "dist": {
  1821. "type": "zip",
  1822. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1823. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1824. "shasum": ""
  1825. },
  1826. "require": {
  1827. "hyperf/engine": "^2.0",
  1828. "php": ">=8.1"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "3.1-dev"
  1834. }
  1835. },
  1836. "autoload": {
  1837. "files": [
  1838. "src/Functions.php"
  1839. ],
  1840. "psr-4": {
  1841. "Hyperf\\Coordinator\\": "src/"
  1842. }
  1843. },
  1844. "notification-url": "https://packagist.org/downloads/",
  1845. "license": [
  1846. "MIT"
  1847. ],
  1848. "description": "Hyperf Coordinator",
  1849. "homepage": "https://hyperf.io",
  1850. "keywords": [
  1851. "Coordinator",
  1852. "hyperf",
  1853. "php",
  1854. "swoole"
  1855. ],
  1856. "support": {
  1857. "docs": "https://hyperf.wiki",
  1858. "issues": "https://github.com/hyperf/hyperf/issues",
  1859. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1860. "source": "https://github.com/hyperf/hyperf"
  1861. },
  1862. "funding": [
  1863. {
  1864. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1865. "type": "custom"
  1866. },
  1867. {
  1868. "url": "https://opencollective.com/hyperf",
  1869. "type": "open_collective"
  1870. }
  1871. ],
  1872. "time": "2024-05-09T02:35:08+00:00"
  1873. },
  1874. {
  1875. "name": "hyperf/coroutine",
  1876. "version": "v3.1.15",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/hyperf/coroutine.git",
  1880. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1885. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "hyperf/context": "~3.1.0",
  1890. "hyperf/contract": "~3.1.0",
  1891. "hyperf/engine": "^2.0",
  1892. "php": ">=8.1"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "branch-alias": {
  1897. "dev-master": "3.1-dev"
  1898. }
  1899. },
  1900. "autoload": {
  1901. "files": [
  1902. "src/Functions.php"
  1903. ],
  1904. "psr-4": {
  1905. "Hyperf\\Coroutine\\": "src/"
  1906. }
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "description": "Hyperf Coroutine",
  1913. "homepage": "https://hyperf.io",
  1914. "keywords": [
  1915. "coroutine",
  1916. "hyperf",
  1917. "php",
  1918. "swoole"
  1919. ],
  1920. "support": {
  1921. "docs": "https://hyperf.wiki",
  1922. "issues": "https://github.com/hyperf/hyperf/issues",
  1923. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1924. "source": "https://github.com/hyperf/hyperf"
  1925. },
  1926. "funding": [
  1927. {
  1928. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1929. "type": "custom"
  1930. },
  1931. {
  1932. "url": "https://opencollective.com/hyperf",
  1933. "type": "open_collective"
  1934. }
  1935. ],
  1936. "time": "2024-03-23T11:28:51+00:00"
  1937. },
  1938. {
  1939. "name": "hyperf/database",
  1940. "version": "v3.1.24",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/hyperf/database.git",
  1944. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1949. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "hyperf/code-parser": "~3.1.0",
  1954. "hyperf/collection": "~3.1.0",
  1955. "hyperf/macroable": "~3.1.0",
  1956. "hyperf/support": "~3.1.0",
  1957. "hyperf/tappable": "~3.1.0",
  1958. "hyperf/utils": "~3.1.0",
  1959. "nesbot/carbon": "^2.0",
  1960. "php": ">=8.1",
  1961. "psr/container": "^1.0|^2.0",
  1962. "psr/event-dispatcher": "^1.0"
  1963. },
  1964. "suggest": {
  1965. "doctrine/dbal": "Required to rename columns (^3.0).",
  1966. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1967. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1968. },
  1969. "type": "library",
  1970. "extra": {
  1971. "branch-alias": {
  1972. "dev-master": "3.1-dev"
  1973. }
  1974. },
  1975. "autoload": {
  1976. "psr-4": {
  1977. "Hyperf\\Database\\": "src/"
  1978. }
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "MIT"
  1983. ],
  1984. "description": "A flexible database library.",
  1985. "homepage": "https://hyperf.io",
  1986. "keywords": [
  1987. "database",
  1988. "hyperf",
  1989. "php"
  1990. ],
  1991. "support": {
  1992. "docs": "https://hyperf.wiki",
  1993. "issues": "https://github.com/hyperf/hyperf/issues",
  1994. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1995. "source": "https://github.com/hyperf/hyperf"
  1996. },
  1997. "funding": [
  1998. {
  1999. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2000. "type": "custom"
  2001. },
  2002. {
  2003. "url": "https://opencollective.com/hyperf",
  2004. "type": "open_collective"
  2005. }
  2006. ],
  2007. "time": "2024-05-24T06:14:27+00:00"
  2008. },
  2009. {
  2010. "name": "hyperf/db-connection",
  2011. "version": "v3.1.15",
  2012. "source": {
  2013. "type": "git",
  2014. "url": "https://github.com/hyperf/db-connection.git",
  2015. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2016. },
  2017. "dist": {
  2018. "type": "zip",
  2019. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2020. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2021. "shasum": ""
  2022. },
  2023. "require": {
  2024. "hyperf/database": "~3.1.0",
  2025. "hyperf/di": "~3.1.0",
  2026. "hyperf/framework": "~3.1.0",
  2027. "hyperf/model-listener": "~3.1.0",
  2028. "hyperf/pool": "~3.1.0",
  2029. "hyperf/support": "~3.1.0",
  2030. "hyperf/utils": "~3.1.0",
  2031. "php": ">=8.1",
  2032. "psr/container": "^1.0|^2.0"
  2033. },
  2034. "type": "library",
  2035. "extra": {
  2036. "branch-alias": {
  2037. "dev-master": "3.1-dev"
  2038. },
  2039. "hyperf": {
  2040. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2041. }
  2042. },
  2043. "autoload": {
  2044. "psr-4": {
  2045. "Hyperf\\DbConnection\\": "src/"
  2046. }
  2047. },
  2048. "notification-url": "https://packagist.org/downloads/",
  2049. "license": [
  2050. "MIT"
  2051. ],
  2052. "description": "A hyperf db connection handler for hyperf/database.",
  2053. "homepage": "https://hyperf.io",
  2054. "keywords": [
  2055. "Connection",
  2056. "database",
  2057. "hyperf",
  2058. "php"
  2059. ],
  2060. "support": {
  2061. "docs": "https://hyperf.wiki",
  2062. "issues": "https://github.com/hyperf/hyperf/issues",
  2063. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2064. "source": "https://github.com/hyperf/hyperf"
  2065. },
  2066. "funding": [
  2067. {
  2068. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2069. "type": "custom"
  2070. },
  2071. {
  2072. "url": "https://opencollective.com/hyperf",
  2073. "type": "open_collective"
  2074. }
  2075. ],
  2076. "time": "2024-03-23T11:28:51+00:00"
  2077. },
  2078. {
  2079. "name": "hyperf/di",
  2080. "version": "v3.1.28",
  2081. "source": {
  2082. "type": "git",
  2083. "url": "https://github.com/hyperf/di.git",
  2084. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb"
  2085. },
  2086. "dist": {
  2087. "type": "zip",
  2088. "url": "https://api.github.com/repos/hyperf/di/zipball/6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2089. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2090. "shasum": ""
  2091. },
  2092. "require": {
  2093. "doctrine/instantiator": "^1.0",
  2094. "hyperf/code-parser": "~3.1.0",
  2095. "hyperf/pipeline": "~3.1.0",
  2096. "hyperf/stdlib": "~3.1.0",
  2097. "hyperf/support": "~3.1.0",
  2098. "nikic/php-parser": "^4.1",
  2099. "php": ">=8.1",
  2100. "php-di/phpdoc-reader": "^2.2",
  2101. "psr/container": "^1.0 || ^2.0",
  2102. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2103. "vlucas/phpdotenv": "^5.0"
  2104. },
  2105. "suggest": {
  2106. "ext-pcntl": "Required to scan annotations.",
  2107. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2108. },
  2109. "type": "library",
  2110. "extra": {
  2111. "branch-alias": {
  2112. "dev-master": "3.1-dev"
  2113. },
  2114. "hyperf": {
  2115. "config": "Hyperf\\Di\\ConfigProvider"
  2116. }
  2117. },
  2118. "autoload": {
  2119. "psr-4": {
  2120. "Hyperf\\Di\\": "src/"
  2121. }
  2122. },
  2123. "notification-url": "https://packagist.org/downloads/",
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "description": "A DI for Hyperf.",
  2128. "homepage": "https://hyperf.io",
  2129. "keywords": [
  2130. "annotation",
  2131. "di",
  2132. "hyperf",
  2133. "php",
  2134. "swoole"
  2135. ],
  2136. "support": {
  2137. "docs": "https://hyperf.wiki",
  2138. "issues": "https://github.com/hyperf/hyperf/issues",
  2139. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2140. "source": "https://github.com/hyperf/hyperf"
  2141. },
  2142. "funding": [
  2143. {
  2144. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2145. "type": "custom"
  2146. },
  2147. {
  2148. "url": "https://opencollective.com/hyperf",
  2149. "type": "open_collective"
  2150. }
  2151. ],
  2152. "time": "2024-06-26T03:31:21+00:00"
  2153. },
  2154. {
  2155. "name": "hyperf/dispatcher",
  2156. "version": "v3.1.15",
  2157. "source": {
  2158. "type": "git",
  2159. "url": "https://github.com/hyperf/dispatcher.git",
  2160. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2161. },
  2162. "dist": {
  2163. "type": "zip",
  2164. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2165. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2166. "shasum": ""
  2167. },
  2168. "require": {
  2169. "hyperf/contract": "~3.1.0",
  2170. "php": ">=8.1",
  2171. "psr/container": "^1.0|^2.0",
  2172. "psr/http-message": "^1.0|^2.0",
  2173. "psr/http-server-middleware": "^1.0"
  2174. },
  2175. "type": "library",
  2176. "extra": {
  2177. "branch-alias": {
  2178. "dev-master": "3.1-dev"
  2179. },
  2180. "hyperf": {
  2181. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2182. }
  2183. },
  2184. "autoload": {
  2185. "psr-4": {
  2186. "Hyperf\\Dispatcher\\": "src/"
  2187. }
  2188. },
  2189. "notification-url": "https://packagist.org/downloads/",
  2190. "license": [
  2191. "MIT"
  2192. ],
  2193. "description": "A HTTP Server for Hyperf.",
  2194. "homepage": "https://hyperf.io",
  2195. "keywords": [
  2196. "dispatcher",
  2197. "filter",
  2198. "hyperf",
  2199. "middleware",
  2200. "php",
  2201. "swoole"
  2202. ],
  2203. "support": {
  2204. "docs": "https://hyperf.wiki",
  2205. "issues": "https://github.com/hyperf/hyperf/issues",
  2206. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2207. "source": "https://github.com/hyperf/hyperf"
  2208. },
  2209. "funding": [
  2210. {
  2211. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2212. "type": "custom"
  2213. },
  2214. {
  2215. "url": "https://opencollective.com/hyperf",
  2216. "type": "open_collective"
  2217. }
  2218. ],
  2219. "time": "2024-03-23T11:28:51+00:00"
  2220. },
  2221. {
  2222. "name": "hyperf/engine",
  2223. "version": "v2.11.0",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/hyperf/engine.git",
  2227. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2232. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2233. "shasum": ""
  2234. },
  2235. "require": {
  2236. "hyperf/engine-contract": "~1.10.0",
  2237. "php": ">=8.0"
  2238. },
  2239. "conflict": {
  2240. "ext-swoole": "<5.0"
  2241. },
  2242. "require-dev": {
  2243. "friendsofphp/php-cs-fixer": "^3.0",
  2244. "hyperf/guzzle": "^3.0",
  2245. "hyperf/http-message": "^3.0",
  2246. "mockery/mockery": "^1.5",
  2247. "phpstan/phpstan": "^1.0",
  2248. "phpunit/phpunit": "^9.4",
  2249. "swoole/ide-helper": "5.*"
  2250. },
  2251. "suggest": {
  2252. "ext-sockets": "*",
  2253. "ext-swoole": ">=5.0",
  2254. "hyperf/http-message": "Required to use ResponseEmitter.",
  2255. "psr/http-message": "Required to use WebSocket Frame."
  2256. },
  2257. "type": "library",
  2258. "extra": {
  2259. "branch-alias": {
  2260. "dev-master": "2.11-dev"
  2261. },
  2262. "hyperf": {
  2263. "config": "Hyperf\\Engine\\ConfigProvider"
  2264. }
  2265. },
  2266. "autoload": {
  2267. "files": [
  2268. "src/Functions.php"
  2269. ],
  2270. "psr-4": {
  2271. "Hyperf\\Engine\\": "src/"
  2272. }
  2273. },
  2274. "notification-url": "https://packagist.org/downloads/",
  2275. "license": [
  2276. "MIT"
  2277. ],
  2278. "description": "Coroutine engine provided by swoole.",
  2279. "keywords": [
  2280. "engine",
  2281. "hyperf",
  2282. "php",
  2283. "swoole"
  2284. ],
  2285. "support": {
  2286. "issues": "https://github.com/hyperf/engine/issues",
  2287. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2288. },
  2289. "funding": [
  2290. {
  2291. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2292. "type": "custom"
  2293. },
  2294. {
  2295. "url": "https://opencollective.com/hyperf",
  2296. "type": "open_collective"
  2297. }
  2298. ],
  2299. "time": "2024-04-17T13:36:28+00:00"
  2300. },
  2301. {
  2302. "name": "hyperf/engine-contract",
  2303. "version": "v1.10.1",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/hyperf/engine-contract.git",
  2307. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2312. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "php": ">=8.0"
  2317. },
  2318. "require-dev": {
  2319. "friendsofphp/php-cs-fixer": "^3.0",
  2320. "mockery/mockery": "^1.0",
  2321. "phpstan/phpstan": "^1.0",
  2322. "phpunit/phpunit": ">=7.0",
  2323. "psr/http-message": "^1.0",
  2324. "swoole/ide-helper": "^4.5"
  2325. },
  2326. "suggest": {
  2327. "psr/http-message": "Required to use WebSocket Frame."
  2328. },
  2329. "type": "library",
  2330. "extra": {
  2331. "branch-alias": {
  2332. "dev-master": "1.9-dev"
  2333. }
  2334. },
  2335. "autoload": {
  2336. "psr-4": {
  2337. "Hyperf\\Engine\\Contract\\": "src/"
  2338. }
  2339. },
  2340. "notification-url": "https://packagist.org/downloads/",
  2341. "license": [
  2342. "MIT"
  2343. ],
  2344. "description": "Contract for Coroutine Engine",
  2345. "keywords": [
  2346. "contract",
  2347. "coroutine",
  2348. "engine",
  2349. "hyperf",
  2350. "php"
  2351. ],
  2352. "support": {
  2353. "issues": "https://github.com/hyperf/engine-contract/issues",
  2354. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2355. },
  2356. "funding": [
  2357. {
  2358. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2359. "type": "custom"
  2360. },
  2361. {
  2362. "url": "https://opencollective.com/hyperf",
  2363. "type": "open_collective"
  2364. }
  2365. ],
  2366. "time": "2024-04-17T13:34:51+00:00"
  2367. },
  2368. {
  2369. "name": "hyperf/event",
  2370. "version": "v3.1.15",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://github.com/hyperf/event.git",
  2374. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2379. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2380. "shasum": ""
  2381. },
  2382. "require": {
  2383. "hyperf/contract": "~3.1.0",
  2384. "hyperf/stdlib": "~3.1.0",
  2385. "php": ">=8.1",
  2386. "psr/event-dispatcher": "^1.0"
  2387. },
  2388. "suggest": {
  2389. "hyperf/di": "Required to use annotatioins."
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "branch-alias": {
  2394. "dev-master": "3.1-dev"
  2395. },
  2396. "hyperf": {
  2397. "config": "Hyperf\\Event\\ConfigProvider"
  2398. }
  2399. },
  2400. "autoload": {
  2401. "psr-4": {
  2402. "Hyperf\\Event\\": "src/"
  2403. }
  2404. },
  2405. "notification-url": "https://packagist.org/downloads/",
  2406. "license": [
  2407. "MIT"
  2408. ],
  2409. "description": "an event manager that implements PSR-14.",
  2410. "homepage": "https://hyperf.io",
  2411. "keywords": [
  2412. "event",
  2413. "hyperf",
  2414. "php",
  2415. "swoole"
  2416. ],
  2417. "support": {
  2418. "docs": "https://hyperf.wiki",
  2419. "issues": "https://github.com/hyperf/hyperf/issues",
  2420. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2421. "source": "https://github.com/hyperf/hyperf"
  2422. },
  2423. "funding": [
  2424. {
  2425. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2426. "type": "custom"
  2427. },
  2428. {
  2429. "url": "https://opencollective.com/hyperf",
  2430. "type": "open_collective"
  2431. }
  2432. ],
  2433. "time": "2024-03-23T11:28:51+00:00"
  2434. },
  2435. {
  2436. "name": "hyperf/exception-handler",
  2437. "version": "v3.1.22",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/hyperf/exception-handler.git",
  2441. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2446. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2447. "shasum": ""
  2448. },
  2449. "require": {
  2450. "hyperf/context": "~3.1.0",
  2451. "hyperf/contract": "~3.1.0",
  2452. "hyperf/dispatcher": "~3.1.0",
  2453. "hyperf/http-message": "~3.1.0",
  2454. "hyperf/stdlib": "~3.1.0",
  2455. "hyperf/support": "~3.1.0",
  2456. "php": ">=8.1",
  2457. "psr/container": "^1.0|^2.0",
  2458. "psr/http-message": "^1.0|^2.0",
  2459. "swow/psr7-plus": "^1.0"
  2460. },
  2461. "suggest": {
  2462. "hyperf/di": "Required to use #[ExceptionHandler]",
  2463. "hyperf/event": "Required to use listeners",
  2464. "hyperf/framework": "Required to use listeners",
  2465. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2466. },
  2467. "type": "library",
  2468. "extra": {
  2469. "branch-alias": {
  2470. "dev-master": "3.1-dev"
  2471. },
  2472. "hyperf": {
  2473. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2474. }
  2475. },
  2476. "autoload": {
  2477. "psr-4": {
  2478. "Hyperf\\ExceptionHandler\\": "src/"
  2479. }
  2480. },
  2481. "notification-url": "https://packagist.org/downloads/",
  2482. "license": [
  2483. "MIT"
  2484. ],
  2485. "description": "Exception handler for hyperf",
  2486. "homepage": "https://hyperf.io",
  2487. "keywords": [
  2488. "exception-handler",
  2489. "php",
  2490. "swoole"
  2491. ],
  2492. "support": {
  2493. "docs": "https://hyperf.wiki",
  2494. "issues": "https://github.com/hyperf/hyperf/issues",
  2495. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2496. "source": "https://github.com/hyperf/hyperf"
  2497. },
  2498. "funding": [
  2499. {
  2500. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2501. "type": "custom"
  2502. },
  2503. {
  2504. "url": "https://opencollective.com/hyperf",
  2505. "type": "open_collective"
  2506. }
  2507. ],
  2508. "time": "2024-05-15T07:12:41+00:00"
  2509. },
  2510. {
  2511. "name": "hyperf/framework",
  2512. "version": "v3.1.23",
  2513. "source": {
  2514. "type": "git",
  2515. "url": "https://github.com/hyperf/framework.git",
  2516. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2517. },
  2518. "dist": {
  2519. "type": "zip",
  2520. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2521. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2522. "shasum": ""
  2523. },
  2524. "require": {
  2525. "fig/http-message-util": "^1.1.2",
  2526. "hyperf/contract": "~3.1.0",
  2527. "hyperf/coordinator": "~3.1.0",
  2528. "hyperf/coroutine": "~3.1.0",
  2529. "php": ">=8.1",
  2530. "psr/container": "^1.0|^2.0",
  2531. "psr/event-dispatcher": "^1.0",
  2532. "psr/log": "^1.0|^2.0|^3.0"
  2533. },
  2534. "suggest": {
  2535. "ext-swoole": "Required to use swoole engine.",
  2536. "hyperf/command": "Required to use Command annotation.",
  2537. "hyperf/di": "Required to use Command annotation.",
  2538. "hyperf/dispatcher": "Required to use BootApplication event.",
  2539. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "branch-alias": {
  2544. "dev-master": "3.1-dev"
  2545. },
  2546. "hyperf": {
  2547. "config": "Hyperf\\Framework\\ConfigProvider"
  2548. }
  2549. },
  2550. "autoload": {
  2551. "psr-4": {
  2552. "Hyperf\\Framework\\": "src/"
  2553. }
  2554. },
  2555. "notification-url": "https://packagist.org/downloads/",
  2556. "license": [
  2557. "MIT"
  2558. ],
  2559. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2560. "homepage": "https://hyperf.io",
  2561. "keywords": [
  2562. "Microservice",
  2563. "framework",
  2564. "hyperf",
  2565. "middleware",
  2566. "php",
  2567. "swoole"
  2568. ],
  2569. "support": {
  2570. "docs": "https://hyperf.wiki",
  2571. "issues": "https://github.com/hyperf/hyperf/issues",
  2572. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2573. "source": "https://github.com/hyperf/hyperf"
  2574. },
  2575. "funding": [
  2576. {
  2577. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2578. "type": "custom"
  2579. },
  2580. {
  2581. "url": "https://opencollective.com/hyperf",
  2582. "type": "open_collective"
  2583. }
  2584. ],
  2585. "time": "2024-05-21T05:43:48+00:00"
  2586. },
  2587. {
  2588. "name": "hyperf/guzzle",
  2589. "version": "v3.1.15",
  2590. "source": {
  2591. "type": "git",
  2592. "url": "https://github.com/hyperf/guzzle.git",
  2593. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2594. },
  2595. "dist": {
  2596. "type": "zip",
  2597. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2598. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2599. "shasum": ""
  2600. },
  2601. "require": {
  2602. "guzzlehttp/guzzle": "^6.3|^7.0",
  2603. "php": ">=8.1",
  2604. "psr/container": "^1.0|^2.0",
  2605. "psr/http-message": "^1.0|^2.0"
  2606. },
  2607. "suggest": {
  2608. "ext-curl": "Required for CURL handler support",
  2609. "hyperf/pool": "Required to use pool handler."
  2610. },
  2611. "type": "library",
  2612. "extra": {
  2613. "branch-alias": {
  2614. "dev-master": "3.1-dev"
  2615. },
  2616. "hyperf": {
  2617. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2618. }
  2619. },
  2620. "autoload": {
  2621. "psr-4": {
  2622. "Hyperf\\Guzzle\\": "src/"
  2623. }
  2624. },
  2625. "notification-url": "https://packagist.org/downloads/",
  2626. "license": [
  2627. "MIT"
  2628. ],
  2629. "description": "Swoole coroutine handler for guzzle",
  2630. "keywords": [
  2631. "Guzzle",
  2632. "handler",
  2633. "php",
  2634. "swoole"
  2635. ],
  2636. "support": {
  2637. "issues": "https://github.com/hyperf/guzzle/issues",
  2638. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2639. },
  2640. "funding": [
  2641. {
  2642. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2643. "type": "custom"
  2644. },
  2645. {
  2646. "url": "https://opencollective.com/hyperf",
  2647. "type": "open_collective"
  2648. }
  2649. ],
  2650. "time": "2024-03-23T11:28:51+00:00"
  2651. },
  2652. {
  2653. "name": "hyperf/http-message",
  2654. "version": "v3.1.19",
  2655. "source": {
  2656. "type": "git",
  2657. "url": "https://github.com/hyperf/http-message.git",
  2658. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2659. },
  2660. "dist": {
  2661. "type": "zip",
  2662. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2663. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2664. "shasum": ""
  2665. },
  2666. "require": {
  2667. "hyperf/codec": "~3.1.0",
  2668. "hyperf/engine": "^2.11",
  2669. "hyperf/support": "~3.1.0",
  2670. "laminas/laminas-mime": "^2.7",
  2671. "php": ">=8.1",
  2672. "psr/http-message": "^1.0|^2.0",
  2673. "swow/psr7-plus": "^1.0"
  2674. },
  2675. "suggest": {
  2676. "psr/container": "Required to replace RequestParserInterface."
  2677. },
  2678. "type": "library",
  2679. "extra": {
  2680. "branch-alias": {
  2681. "dev-master": "3.1-dev"
  2682. },
  2683. "hyperf": {
  2684. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2685. }
  2686. },
  2687. "autoload": {
  2688. "psr-4": {
  2689. "Hyperf\\HttpMessage\\": "src/"
  2690. }
  2691. },
  2692. "notification-url": "https://packagist.org/downloads/",
  2693. "license": [
  2694. "MIT"
  2695. ],
  2696. "description": "microservice framework base on swoole",
  2697. "keywords": [
  2698. "http-message",
  2699. "hyperf",
  2700. "php",
  2701. "swoole"
  2702. ],
  2703. "support": {
  2704. "issues": "https://github.com/hyperf/http-message/issues",
  2705. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2706. },
  2707. "funding": [
  2708. {
  2709. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2710. "type": "custom"
  2711. },
  2712. {
  2713. "url": "https://opencollective.com/hyperf",
  2714. "type": "open_collective"
  2715. }
  2716. ],
  2717. "time": "2024-04-17T13:55:51+00:00"
  2718. },
  2719. {
  2720. "name": "hyperf/http-server",
  2721. "version": "v3.1.17",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/hyperf/http-server.git",
  2725. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2730. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2731. "shasum": ""
  2732. },
  2733. "require": {
  2734. "hyperf/codec": "~3.1.0",
  2735. "hyperf/collection": "~3.1.0",
  2736. "hyperf/context": "~3.1.0",
  2737. "hyperf/contract": "~3.1.0",
  2738. "hyperf/coroutine": "~3.1.0",
  2739. "hyperf/dispatcher": "~3.1.0",
  2740. "hyperf/event": "~3.1.0",
  2741. "hyperf/exception-handler": "~3.1.0",
  2742. "hyperf/http-message": "~3.1.0",
  2743. "hyperf/macroable": "~3.1.0",
  2744. "hyperf/serializer": "~3.1.0",
  2745. "hyperf/server": "~3.1.0",
  2746. "hyperf/stdlib": "~3.1.0",
  2747. "hyperf/support": "~3.1.0",
  2748. "nikic/fast-route": "^1.3",
  2749. "php": ">=8.1",
  2750. "psr/container": "^1.0|^2.0",
  2751. "swow/psr7-plus": "^1.0"
  2752. },
  2753. "suggest": {
  2754. "hyperf/di": "Required to use annotations."
  2755. },
  2756. "type": "library",
  2757. "extra": {
  2758. "branch-alias": {
  2759. "dev-master": "3.1-dev"
  2760. },
  2761. "hyperf": {
  2762. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2763. }
  2764. },
  2765. "autoload": {
  2766. "psr-4": {
  2767. "Hyperf\\HttpServer\\": "src/"
  2768. }
  2769. },
  2770. "notification-url": "https://packagist.org/downloads/",
  2771. "license": [
  2772. "MIT"
  2773. ],
  2774. "description": "A HTTP Server for Hyperf.",
  2775. "homepage": "https://hyperf.io",
  2776. "keywords": [
  2777. "http",
  2778. "http-server",
  2779. "hyperf",
  2780. "php",
  2781. "swoole"
  2782. ],
  2783. "support": {
  2784. "docs": "https://hyperf.wiki",
  2785. "issues": "https://github.com/hyperf/hyperf/issues",
  2786. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2787. "source": "https://github.com/hyperf/hyperf"
  2788. },
  2789. "funding": [
  2790. {
  2791. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2792. "type": "custom"
  2793. },
  2794. {
  2795. "url": "https://opencollective.com/hyperf",
  2796. "type": "open_collective"
  2797. }
  2798. ],
  2799. "time": "2024-04-08T07:53:54+00:00"
  2800. },
  2801. {
  2802. "name": "hyperf/json-rpc",
  2803. "version": "v3.1.23",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/hyperf/json-rpc.git",
  2807. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2812. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2813. "shasum": ""
  2814. },
  2815. "require": {
  2816. "hyperf/codec": "~3.1.0",
  2817. "hyperf/context": "~3.1.0",
  2818. "hyperf/contract": "~3.1.0",
  2819. "hyperf/engine": "^2.0",
  2820. "hyperf/http-message": "~3.1.0",
  2821. "hyperf/load-balancer": "~3.1.0",
  2822. "hyperf/rpc": "~3.1.0",
  2823. "hyperf/serializer": "~3.1.0",
  2824. "hyperf/support": "~3.1.0",
  2825. "hyperf/utils": "~3.1.0",
  2826. "php": ">=8.1",
  2827. "psr/container": "^1.0|^2.0",
  2828. "swow/psr7-plus": "^1.0"
  2829. },
  2830. "suggest": {
  2831. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2832. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2833. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2834. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2835. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2836. },
  2837. "type": "library",
  2838. "extra": {
  2839. "branch-alias": {
  2840. "dev-master": "3.1-dev"
  2841. },
  2842. "hyperf": {
  2843. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2844. }
  2845. },
  2846. "autoload": {
  2847. "psr-4": {
  2848. "Hyperf\\JsonRpc\\": "src/"
  2849. }
  2850. },
  2851. "notification-url": "https://packagist.org/downloads/",
  2852. "license": [
  2853. "MIT"
  2854. ],
  2855. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2856. "homepage": "https://hyperf.io",
  2857. "keywords": [
  2858. "hyperf",
  2859. "json-rpc",
  2860. "php",
  2861. "swoole"
  2862. ],
  2863. "support": {
  2864. "docs": "https://hyperf.wiki",
  2865. "issues": "https://github.com/hyperf/hyperf/issues",
  2866. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2867. "source": "https://github.com/hyperf/hyperf"
  2868. },
  2869. "funding": [
  2870. {
  2871. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2872. "type": "custom"
  2873. },
  2874. {
  2875. "url": "https://opencollective.com/hyperf",
  2876. "type": "open_collective"
  2877. }
  2878. ],
  2879. "time": "2024-05-23T03:43:58+00:00"
  2880. },
  2881. {
  2882. "name": "hyperf/load-balancer",
  2883. "version": "v3.1.15",
  2884. "source": {
  2885. "type": "git",
  2886. "url": "https://github.com/hyperf/load-balancer.git",
  2887. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2888. },
  2889. "dist": {
  2890. "type": "zip",
  2891. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2892. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2893. "shasum": ""
  2894. },
  2895. "require": {
  2896. "hyperf/coordinator": "~3.1.0",
  2897. "hyperf/coroutine": "~3.1.0",
  2898. "markrogoyski/math-php": "^2.0",
  2899. "php": ">=8.1",
  2900. "psr/log": "^1.0|^2.0|^3.0"
  2901. },
  2902. "type": "library",
  2903. "extra": {
  2904. "branch-alias": {
  2905. "dev-master": "3.1-dev"
  2906. },
  2907. "hyperf": {
  2908. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2909. }
  2910. },
  2911. "autoload": {
  2912. "psr-4": {
  2913. "Hyperf\\LoadBalancer\\": "src/"
  2914. }
  2915. },
  2916. "notification-url": "https://packagist.org/downloads/",
  2917. "license": [
  2918. "MIT"
  2919. ],
  2920. "description": "A load balancer library for Hyperf.",
  2921. "homepage": "https://hyperf.io",
  2922. "keywords": [
  2923. "hyperf",
  2924. "load-balancer",
  2925. "php",
  2926. "swoole"
  2927. ],
  2928. "support": {
  2929. "docs": "https://hyperf.wiki",
  2930. "issues": "https://github.com/hyperf/hyperf/issues",
  2931. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2932. "source": "https://github.com/hyperf/hyperf"
  2933. },
  2934. "funding": [
  2935. {
  2936. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2937. "type": "custom"
  2938. },
  2939. {
  2940. "url": "https://opencollective.com/hyperf",
  2941. "type": "open_collective"
  2942. }
  2943. ],
  2944. "time": "2024-03-23T11:28:51+00:00"
  2945. },
  2946. {
  2947. "name": "hyperf/logger",
  2948. "version": "v3.1.15",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/hyperf/logger.git",
  2952. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2957. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2958. "shasum": ""
  2959. },
  2960. "require": {
  2961. "hyperf/contract": "~3.1.0",
  2962. "hyperf/support": "~3.1.0",
  2963. "hyperf/utils": "~3.1.0",
  2964. "monolog/monolog": "^2.7|^3.1",
  2965. "php": ">=8.1",
  2966. "psr/container": "^1.0|^2.0",
  2967. "psr/log": "^1.0|^2.0|^3.0"
  2968. },
  2969. "type": "library",
  2970. "extra": {
  2971. "branch-alias": {
  2972. "dev-master": "3.1-dev"
  2973. },
  2974. "hyperf": {
  2975. "config": "Hyperf\\Logger\\ConfigProvider"
  2976. }
  2977. },
  2978. "autoload": {
  2979. "psr-4": {
  2980. "Hyperf\\Logger\\": "src/"
  2981. }
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "MIT"
  2986. ],
  2987. "description": "A logger component for hyperf.",
  2988. "homepage": "https://hyperf.io",
  2989. "keywords": [
  2990. "hyperf",
  2991. "logger",
  2992. "php"
  2993. ],
  2994. "support": {
  2995. "docs": "https://hyperf.wiki",
  2996. "issues": "https://github.com/hyperf/hyperf/issues",
  2997. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2998. "source": "https://github.com/hyperf/hyperf"
  2999. },
  3000. "funding": [
  3001. {
  3002. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3003. "type": "custom"
  3004. },
  3005. {
  3006. "url": "https://opencollective.com/hyperf",
  3007. "type": "open_collective"
  3008. }
  3009. ],
  3010. "time": "2024-03-23T11:28:51+00:00"
  3011. },
  3012. {
  3013. "name": "hyperf/macroable",
  3014. "version": "v3.1.23",
  3015. "source": {
  3016. "type": "git",
  3017. "url": "https://github.com/hyperf/macroable.git",
  3018. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3019. },
  3020. "dist": {
  3021. "type": "zip",
  3022. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3023. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3024. "shasum": ""
  3025. },
  3026. "require": {
  3027. "php": ">=8.1"
  3028. },
  3029. "type": "library",
  3030. "extra": {
  3031. "branch-alias": {
  3032. "dev-master": "3.1-dev"
  3033. }
  3034. },
  3035. "autoload": {
  3036. "psr-4": {
  3037. "Hyperf\\Macroable\\": "src/"
  3038. }
  3039. },
  3040. "notification-url": "https://packagist.org/downloads/",
  3041. "license": [
  3042. "MIT"
  3043. ],
  3044. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3045. "homepage": "https://hyperf.io",
  3046. "keywords": [
  3047. "hyperf",
  3048. "macroable",
  3049. "php",
  3050. "swoole"
  3051. ],
  3052. "support": {
  3053. "docs": "https://hyperf.wiki",
  3054. "issues": "https://github.com/hyperf/hyperf/issues",
  3055. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3056. "source": "https://github.com/hyperf/hyperf"
  3057. },
  3058. "funding": [
  3059. {
  3060. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3061. "type": "custom"
  3062. },
  3063. {
  3064. "url": "https://opencollective.com/hyperf",
  3065. "type": "open_collective"
  3066. }
  3067. ],
  3068. "time": "2024-05-20T09:55:40+00:00"
  3069. },
  3070. {
  3071. "name": "hyperf/memory",
  3072. "version": "v3.1.15",
  3073. "source": {
  3074. "type": "git",
  3075. "url": "https://github.com/hyperf/memory.git",
  3076. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3077. },
  3078. "dist": {
  3079. "type": "zip",
  3080. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3081. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3082. "shasum": ""
  3083. },
  3084. "require": {
  3085. "php": ">=8.1"
  3086. },
  3087. "type": "library",
  3088. "extra": {
  3089. "branch-alias": {
  3090. "dev-master": "3.1-dev"
  3091. },
  3092. "hyperf": {
  3093. "config": "Hyperf\\Memory\\ConfigProvider"
  3094. }
  3095. },
  3096. "autoload": {
  3097. "psr-4": {
  3098. "Hyperf\\Memory\\": "src/"
  3099. }
  3100. },
  3101. "notification-url": "https://packagist.org/downloads/",
  3102. "license": [
  3103. "MIT"
  3104. ],
  3105. "description": "An independent component that use to operate and manage memory.",
  3106. "homepage": "https://hyperf.io",
  3107. "keywords": [
  3108. "hyperf",
  3109. "memory",
  3110. "php",
  3111. "swoole"
  3112. ],
  3113. "support": {
  3114. "docs": "https://hyperf.wiki",
  3115. "issues": "https://github.com/hyperf/hyperf/issues",
  3116. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3117. "source": "https://github.com/hyperf/hyperf"
  3118. },
  3119. "funding": [
  3120. {
  3121. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3122. "type": "custom"
  3123. },
  3124. {
  3125. "url": "https://opencollective.com/hyperf",
  3126. "type": "open_collective"
  3127. }
  3128. ],
  3129. "time": "2024-03-23T11:28:51+00:00"
  3130. },
  3131. {
  3132. "name": "hyperf/model-listener",
  3133. "version": "v3.1.15",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://github.com/hyperf/model-listener.git",
  3137. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3142. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3143. "shasum": ""
  3144. },
  3145. "require": {
  3146. "hyperf/contract": "~3.1.0",
  3147. "hyperf/database": "~3.1.0",
  3148. "hyperf/di": "~3.1.0",
  3149. "hyperf/event": "~3.1.0",
  3150. "hyperf/support": "~3.1.0",
  3151. "hyperf/utils": "~3.1.0",
  3152. "php": ">=8.1",
  3153. "psr/container": "^1.0|^2.0"
  3154. },
  3155. "type": "library",
  3156. "extra": {
  3157. "branch-alias": {
  3158. "dev-master": "3.1-dev"
  3159. },
  3160. "hyperf": {
  3161. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3162. }
  3163. },
  3164. "autoload": {
  3165. "psr-4": {
  3166. "Hyperf\\ModelListener\\": "src/"
  3167. }
  3168. },
  3169. "notification-url": "https://packagist.org/downloads/",
  3170. "license": [
  3171. "MIT"
  3172. ],
  3173. "description": "A model listener for Hyperf.",
  3174. "homepage": "https://hyperf.io",
  3175. "keywords": [
  3176. "hyperf",
  3177. "model-listener",
  3178. "php",
  3179. "swoole"
  3180. ],
  3181. "support": {
  3182. "docs": "https://hyperf.wiki",
  3183. "issues": "https://github.com/hyperf/hyperf/issues",
  3184. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3185. "source": "https://github.com/hyperf/hyperf"
  3186. },
  3187. "funding": [
  3188. {
  3189. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3190. "type": "custom"
  3191. },
  3192. {
  3193. "url": "https://opencollective.com/hyperf",
  3194. "type": "open_collective"
  3195. }
  3196. ],
  3197. "time": "2024-03-23T11:28:51+00:00"
  3198. },
  3199. {
  3200. "name": "hyperf/nacos",
  3201. "version": "v3.1.15",
  3202. "source": {
  3203. "type": "git",
  3204. "url": "https://github.com/hyperf/nacos.git",
  3205. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3206. },
  3207. "dist": {
  3208. "type": "zip",
  3209. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3210. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3211. "shasum": ""
  3212. },
  3213. "require": {
  3214. "guzzlehttp/guzzle": "^6.5|^7.0",
  3215. "hyperf/codec": "~3.1.0",
  3216. "hyperf/contract": "~3.1.0",
  3217. "hyperf/support": "~3.1.0",
  3218. "hyperf/utils": "~3.1.0",
  3219. "jetbrains/phpstorm-attributes": "^1.0",
  3220. "php": ">=8.1"
  3221. },
  3222. "type": "library",
  3223. "extra": {
  3224. "branch-alias": {
  3225. "dev-master": "3.1-dev"
  3226. },
  3227. "hyperf": {
  3228. "config": "Hyperf\\Nacos\\ConfigProvider"
  3229. }
  3230. },
  3231. "autoload": {
  3232. "psr-4": {
  3233. "Hyperf\\Nacos\\": "src/"
  3234. }
  3235. },
  3236. "notification-url": "https://packagist.org/downloads/",
  3237. "license": [
  3238. "MIT"
  3239. ],
  3240. "description": "Nacos SDK",
  3241. "keywords": [
  3242. "hyperf",
  3243. "nacos",
  3244. "php"
  3245. ],
  3246. "support": {
  3247. "issues": "https://github.com/hyperf/nacos/issues",
  3248. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3249. },
  3250. "funding": [
  3251. {
  3252. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3253. "type": "custom"
  3254. },
  3255. {
  3256. "url": "https://opencollective.com/hyperf",
  3257. "type": "open_collective"
  3258. }
  3259. ],
  3260. "time": "2024-03-23T11:28:51+00:00"
  3261. },
  3262. {
  3263. "name": "hyperf/paginator",
  3264. "version": "v3.1.49",
  3265. "source": {
  3266. "type": "git",
  3267. "url": "https://github.com/hyperf/paginator.git",
  3268. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3269. },
  3270. "dist": {
  3271. "type": "zip",
  3272. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3273. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3274. "shasum": ""
  3275. },
  3276. "require": {
  3277. "hyperf/contract": "~3.1.0",
  3278. "hyperf/support": "~3.1.0",
  3279. "hyperf/utils": "~3.1.0",
  3280. "php": ">=8.1"
  3281. },
  3282. "suggest": {
  3283. "hyperf/event": "Reqiured to use PageResolverListener.",
  3284. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3285. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3286. },
  3287. "type": "library",
  3288. "extra": {
  3289. "hyperf": {
  3290. "config": "Hyperf\\Paginator\\ConfigProvider"
  3291. },
  3292. "branch-alias": {
  3293. "dev-master": "3.1-dev"
  3294. }
  3295. },
  3296. "autoload": {
  3297. "psr-4": {
  3298. "Hyperf\\Paginator\\": "src/"
  3299. }
  3300. },
  3301. "notification-url": "https://packagist.org/downloads/",
  3302. "license": [
  3303. "MIT"
  3304. ],
  3305. "description": "A paginator component for hyperf.",
  3306. "homepage": "https://hyperf.io",
  3307. "keywords": [
  3308. "hyperf",
  3309. "paginator",
  3310. "php"
  3311. ],
  3312. "support": {
  3313. "docs": "https://hyperf.wiki",
  3314. "issues": "https://github.com/hyperf/hyperf/issues",
  3315. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3316. "source": "https://github.com/hyperf/hyperf"
  3317. },
  3318. "funding": [
  3319. {
  3320. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3321. "type": "custom"
  3322. },
  3323. {
  3324. "url": "https://opencollective.com/hyperf",
  3325. "type": "open_collective"
  3326. }
  3327. ],
  3328. "time": "2024-12-17T09:42:13+00:00"
  3329. },
  3330. {
  3331. "name": "hyperf/pipeline",
  3332. "version": "v3.1.15",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/hyperf/pipeline.git",
  3336. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3341. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": ">=8.1",
  3346. "psr/container": "^1.0|^2.0"
  3347. },
  3348. "type": "library",
  3349. "extra": {
  3350. "branch-alias": {
  3351. "dev-master": "3.1-dev"
  3352. }
  3353. },
  3354. "autoload": {
  3355. "psr-4": {
  3356. "Hyperf\\Pipeline\\": "src/"
  3357. }
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "MIT"
  3362. ],
  3363. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3364. "homepage": "https://hyperf.io",
  3365. "keywords": [
  3366. "hyperf",
  3367. "php",
  3368. "pipeline",
  3369. "swoole"
  3370. ],
  3371. "support": {
  3372. "docs": "https://hyperf.wiki",
  3373. "issues": "https://github.com/hyperf/hyperf/issues",
  3374. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3375. "source": "https://github.com/hyperf/hyperf"
  3376. },
  3377. "funding": [
  3378. {
  3379. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3380. "type": "custom"
  3381. },
  3382. {
  3383. "url": "https://opencollective.com/hyperf",
  3384. "type": "open_collective"
  3385. }
  3386. ],
  3387. "time": "2024-03-23T11:28:51+00:00"
  3388. },
  3389. {
  3390. "name": "hyperf/pool",
  3391. "version": "v3.1.15",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/hyperf/pool.git",
  3395. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3400. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3401. "shasum": ""
  3402. },
  3403. "require": {
  3404. "hyperf/contract": "~3.1.0",
  3405. "hyperf/support": "~3.1.0",
  3406. "hyperf/utils": "~3.1.0",
  3407. "php": ">=8.1",
  3408. "psr/container": "^1.0|^2.0"
  3409. },
  3410. "suggest": {
  3411. "psr/event-dispatcher": "Required to use events."
  3412. },
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "3.1-dev"
  3417. },
  3418. "hyperf": {
  3419. "config": "Hyperf\\Pool\\ConfigProvider"
  3420. }
  3421. },
  3422. "autoload": {
  3423. "psr-4": {
  3424. "Hyperf\\Pool\\": "src/"
  3425. }
  3426. },
  3427. "notification-url": "https://packagist.org/downloads/",
  3428. "license": [
  3429. "MIT"
  3430. ],
  3431. "description": "An independent universal connection pool component.",
  3432. "homepage": "https://hyperf.io",
  3433. "keywords": [
  3434. "connection-pool",
  3435. "hyperf",
  3436. "php",
  3437. "swoole"
  3438. ],
  3439. "support": {
  3440. "docs": "https://hyperf.wiki",
  3441. "issues": "https://github.com/hyperf/hyperf/issues",
  3442. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3443. "source": "https://github.com/hyperf/hyperf"
  3444. },
  3445. "funding": [
  3446. {
  3447. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3448. "type": "custom"
  3449. },
  3450. {
  3451. "url": "https://opencollective.com/hyperf",
  3452. "type": "open_collective"
  3453. }
  3454. ],
  3455. "time": "2024-03-23T11:28:51+00:00"
  3456. },
  3457. {
  3458. "name": "hyperf/process",
  3459. "version": "v3.1.15",
  3460. "source": {
  3461. "type": "git",
  3462. "url": "https://github.com/hyperf/process.git",
  3463. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3464. },
  3465. "dist": {
  3466. "type": "zip",
  3467. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3468. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3469. "shasum": ""
  3470. },
  3471. "require": {
  3472. "hyperf/contract": "~3.1.0",
  3473. "hyperf/support": "~3.1.0",
  3474. "hyperf/utils": "~3.1.0",
  3475. "php": ">=8.1",
  3476. "psr/container": "^1.0|^2.0",
  3477. "psr/event-dispatcher": "^1.0"
  3478. },
  3479. "suggest": {
  3480. "hyperf/di": "Required to use annotations.",
  3481. "hyperf/event": "Required to dump the message before and after process.",
  3482. "hyperf/framework": "Required to use BootProcessListener."
  3483. },
  3484. "type": "library",
  3485. "extra": {
  3486. "branch-alias": {
  3487. "dev-master": "3.1-dev"
  3488. },
  3489. "hyperf": {
  3490. "config": "Hyperf\\Process\\ConfigProvider"
  3491. }
  3492. },
  3493. "autoload": {
  3494. "psr-4": {
  3495. "Hyperf\\Process\\": "src/"
  3496. }
  3497. },
  3498. "notification-url": "https://packagist.org/downloads/",
  3499. "license": [
  3500. "MIT"
  3501. ],
  3502. "description": "A process component for hyperf.",
  3503. "homepage": "https://hyperf.io",
  3504. "keywords": [
  3505. "hyperf",
  3506. "php",
  3507. "process"
  3508. ],
  3509. "support": {
  3510. "docs": "https://hyperf.wiki",
  3511. "issues": "https://github.com/hyperf/hyperf/issues",
  3512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3513. "source": "https://github.com/hyperf/hyperf"
  3514. },
  3515. "funding": [
  3516. {
  3517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3518. "type": "custom"
  3519. },
  3520. {
  3521. "url": "https://opencollective.com/hyperf",
  3522. "type": "open_collective"
  3523. }
  3524. ],
  3525. "time": "2024-03-23T11:28:51+00:00"
  3526. },
  3527. {
  3528. "name": "hyperf/redis",
  3529. "version": "v3.1.18",
  3530. "source": {
  3531. "type": "git",
  3532. "url": "https://github.com/hyperf/redis.git",
  3533. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3534. },
  3535. "dist": {
  3536. "type": "zip",
  3537. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3538. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3539. "shasum": ""
  3540. },
  3541. "require": {
  3542. "ext-redis": "^5.0|^6.0",
  3543. "hyperf/contract": "~3.1.0",
  3544. "hyperf/pool": "~3.1.0",
  3545. "hyperf/support": "~3.1.0",
  3546. "hyperf/tappable": "~3.1.0",
  3547. "hyperf/utils": "~3.1.0",
  3548. "php": ">=8.1",
  3549. "psr/container": "^1.0|^2.0"
  3550. },
  3551. "suggest": {
  3552. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3553. "hyperf/di": "Create the RedisPool via dependency injection."
  3554. },
  3555. "type": "library",
  3556. "extra": {
  3557. "branch-alias": {
  3558. "dev-master": "3.1-dev"
  3559. },
  3560. "hyperf": {
  3561. "config": "Hyperf\\Redis\\ConfigProvider"
  3562. }
  3563. },
  3564. "autoload": {
  3565. "psr-4": {
  3566. "Hyperf\\Redis\\": "src/"
  3567. }
  3568. },
  3569. "notification-url": "https://packagist.org/downloads/",
  3570. "license": [
  3571. "MIT"
  3572. ],
  3573. "description": "A redis component for hyperf.",
  3574. "homepage": "https://hyperf.io",
  3575. "keywords": [
  3576. "hyperf",
  3577. "php",
  3578. "pool",
  3579. "redis"
  3580. ],
  3581. "support": {
  3582. "docs": "https://hyperf.wiki",
  3583. "issues": "https://github.com/hyperf/hyperf/issues",
  3584. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3585. "source": "https://github.com/hyperf/hyperf"
  3586. },
  3587. "funding": [
  3588. {
  3589. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3590. "type": "custom"
  3591. },
  3592. {
  3593. "url": "https://opencollective.com/hyperf",
  3594. "type": "open_collective"
  3595. }
  3596. ],
  3597. "time": "2024-04-11T10:18:35+00:00"
  3598. },
  3599. {
  3600. "name": "hyperf/rpc",
  3601. "version": "v3.1.15",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "https://github.com/hyperf/rpc.git",
  3605. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3606. },
  3607. "dist": {
  3608. "type": "zip",
  3609. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3610. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3611. "shasum": ""
  3612. },
  3613. "require": {
  3614. "hyperf/codec": "~3.1.0",
  3615. "hyperf/contract": "~3.1.0",
  3616. "hyperf/support": "~3.1.0",
  3617. "jetbrains/phpstorm-attributes": "^1.0",
  3618. "php": ">=8.1"
  3619. },
  3620. "type": "library",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-master": "3.1-dev"
  3624. },
  3625. "hyperf": []
  3626. },
  3627. "autoload": {
  3628. "psr-4": {
  3629. "Hyperf\\Rpc\\": "src/"
  3630. }
  3631. },
  3632. "notification-url": "https://packagist.org/downloads/",
  3633. "license": [
  3634. "MIT"
  3635. ],
  3636. "description": "A rpc basic library for Hyperf.",
  3637. "homepage": "https://hyperf.io",
  3638. "keywords": [
  3639. "hyperf",
  3640. "php",
  3641. "rpc",
  3642. "swoole"
  3643. ],
  3644. "support": {
  3645. "docs": "https://hyperf.wiki",
  3646. "issues": "https://github.com/hyperf/hyperf/issues",
  3647. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3648. "source": "https://github.com/hyperf/hyperf"
  3649. },
  3650. "funding": [
  3651. {
  3652. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3653. "type": "custom"
  3654. },
  3655. {
  3656. "url": "https://opencollective.com/hyperf",
  3657. "type": "open_collective"
  3658. }
  3659. ],
  3660. "time": "2024-03-23T11:28:51+00:00"
  3661. },
  3662. {
  3663. "name": "hyperf/rpc-server",
  3664. "version": "v3.1.20",
  3665. "source": {
  3666. "type": "git",
  3667. "url": "https://github.com/hyperf/rpc-server.git",
  3668. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3669. },
  3670. "dist": {
  3671. "type": "zip",
  3672. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3673. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3674. "shasum": ""
  3675. },
  3676. "require": {
  3677. "hyperf/http-server": "~3.1.0",
  3678. "hyperf/rpc": "~3.1.0",
  3679. "php": ">=8.1"
  3680. },
  3681. "suggest": {
  3682. "hyperf/di": "Required to use annotations."
  3683. },
  3684. "type": "library",
  3685. "extra": {
  3686. "branch-alias": {
  3687. "dev-master": "3.1-dev"
  3688. },
  3689. "hyperf": {
  3690. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3691. }
  3692. },
  3693. "autoload": {
  3694. "psr-4": {
  3695. "Hyperf\\RpcServer\\": "src/"
  3696. }
  3697. },
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "MIT"
  3701. ],
  3702. "description": "An abstract rpc server component for Hyperf.",
  3703. "homepage": "https://hyperf.io",
  3704. "keywords": [
  3705. "hyperf",
  3706. "php",
  3707. "rpc",
  3708. "rpc-server",
  3709. "swoole"
  3710. ],
  3711. "support": {
  3712. "docs": "https://hyperf.wiki",
  3713. "issues": "https://github.com/hyperf/hyperf/issues",
  3714. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3715. "source": "https://github.com/hyperf/hyperf"
  3716. },
  3717. "funding": [
  3718. {
  3719. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3720. "type": "custom"
  3721. },
  3722. {
  3723. "url": "https://opencollective.com/hyperf",
  3724. "type": "open_collective"
  3725. }
  3726. ],
  3727. "time": "2024-04-22T01:46:29+00:00"
  3728. },
  3729. {
  3730. "name": "hyperf/serializer",
  3731. "version": "v3.1.23",
  3732. "source": {
  3733. "type": "git",
  3734. "url": "https://github.com/hyperf/serializer.git",
  3735. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3736. },
  3737. "dist": {
  3738. "type": "zip",
  3739. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3740. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3741. "shasum": ""
  3742. },
  3743. "require": {
  3744. "hyperf/contract": "~3.1.0",
  3745. "php": ">=8.1"
  3746. },
  3747. "suggest": {
  3748. "hyperf/di": "Required to use ExceptionNormalizer",
  3749. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3750. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3751. },
  3752. "type": "library",
  3753. "extra": {
  3754. "branch-alias": {
  3755. "dev-master": "3.1-dev"
  3756. },
  3757. "hyperf": {
  3758. "config": "Hyperf\\Serializer\\ConfigProvider"
  3759. }
  3760. },
  3761. "autoload": {
  3762. "psr-4": {
  3763. "Hyperf\\Serializer\\": "src/"
  3764. }
  3765. },
  3766. "notification-url": "https://packagist.org/downloads/",
  3767. "license": [
  3768. "MIT"
  3769. ],
  3770. "description": "A serializer component for Hyperf.",
  3771. "homepage": "https://hyperf.io",
  3772. "keywords": [
  3773. "hyperf",
  3774. "php",
  3775. "swoole",
  3776. "tappable"
  3777. ],
  3778. "support": {
  3779. "docs": "https://hyperf.wiki",
  3780. "issues": "https://github.com/hyperf/hyperf/issues",
  3781. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3782. "source": "https://github.com/hyperf/hyperf"
  3783. },
  3784. "funding": [
  3785. {
  3786. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3787. "type": "custom"
  3788. },
  3789. {
  3790. "url": "https://opencollective.com/hyperf",
  3791. "type": "open_collective"
  3792. }
  3793. ],
  3794. "time": "2024-05-23T03:43:58+00:00"
  3795. },
  3796. {
  3797. "name": "hyperf/server",
  3798. "version": "v3.1.23",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/hyperf/server.git",
  3802. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3807. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3808. "shasum": ""
  3809. },
  3810. "require": {
  3811. "hyperf/contract": "~3.1.0",
  3812. "hyperf/coordinator": "~3.1.0",
  3813. "hyperf/engine": "^2.8",
  3814. "hyperf/support": "~3.1.0",
  3815. "hyperf/tappable": "~3.1.0",
  3816. "php": ">=8.1",
  3817. "psr/container": "^1.0|^2.0",
  3818. "psr/event-dispatcher": "^1.0",
  3819. "psr/log": "^1.0|^2.0|^3.0",
  3820. "symfony/console": "^5.0|^6.0|^7.0"
  3821. },
  3822. "suggest": {
  3823. "hyperf/event": "Dump the info after server start.",
  3824. "hyperf/framework": "Dump the info after server start."
  3825. },
  3826. "type": "library",
  3827. "extra": {
  3828. "branch-alias": {
  3829. "dev-master": "3.1-dev"
  3830. },
  3831. "hyperf": {
  3832. "config": "Hyperf\\Server\\ConfigProvider"
  3833. }
  3834. },
  3835. "autoload": {
  3836. "psr-4": {
  3837. "Hyperf\\Server\\": "src/"
  3838. }
  3839. },
  3840. "notification-url": "https://packagist.org/downloads/",
  3841. "license": [
  3842. "MIT"
  3843. ],
  3844. "description": "A base server library for Hyperf.",
  3845. "homepage": "https://hyperf.io",
  3846. "keywords": [
  3847. "hyperf",
  3848. "php",
  3849. "server",
  3850. "swoole"
  3851. ],
  3852. "support": {
  3853. "docs": "https://hyperf.wiki",
  3854. "issues": "https://github.com/hyperf/hyperf/issues",
  3855. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3856. "source": "https://github.com/hyperf/hyperf"
  3857. },
  3858. "funding": [
  3859. {
  3860. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3861. "type": "custom"
  3862. },
  3863. {
  3864. "url": "https://opencollective.com/hyperf",
  3865. "type": "open_collective"
  3866. }
  3867. ],
  3868. "time": "2024-05-23T03:43:58+00:00"
  3869. },
  3870. {
  3871. "name": "hyperf/service-governance",
  3872. "version": "v3.1.15",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/hyperf/service-governance.git",
  3876. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3881. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "hyperf/contract": "~3.1.0",
  3886. "hyperf/support": "~3.1.0",
  3887. "jetbrains/phpstorm-attributes": "^1.0",
  3888. "php": ">=8.1"
  3889. },
  3890. "suggest": {
  3891. "hyperf/event": "Required to use RegisterServiceListener.",
  3892. "hyperf/framework": "Required to use RegisterServiceListener.",
  3893. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3894. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3895. },
  3896. "type": "library",
  3897. "extra": {
  3898. "branch-alias": {
  3899. "dev-master": "3.1-dev"
  3900. },
  3901. "hyperf": {
  3902. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3903. }
  3904. },
  3905. "autoload": {
  3906. "psr-4": {
  3907. "Hyperf\\ServiceGovernance\\": "src/"
  3908. }
  3909. },
  3910. "notification-url": "https://packagist.org/downloads/",
  3911. "license": [
  3912. "MIT"
  3913. ],
  3914. "description": "A service governance component for Hyperf.",
  3915. "homepage": "https://hyperf.io",
  3916. "keywords": [
  3917. "hyperf",
  3918. "php",
  3919. "service-governance",
  3920. "swoole"
  3921. ],
  3922. "support": {
  3923. "docs": "https://hyperf.wiki",
  3924. "issues": "https://github.com/hyperf/hyperf/issues",
  3925. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3926. "source": "https://github.com/hyperf/hyperf"
  3927. },
  3928. "funding": [
  3929. {
  3930. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3931. "type": "custom"
  3932. },
  3933. {
  3934. "url": "https://opencollective.com/hyperf",
  3935. "type": "open_collective"
  3936. }
  3937. ],
  3938. "time": "2024-03-23T11:28:51+00:00"
  3939. },
  3940. {
  3941. "name": "hyperf/service-governance-consul",
  3942. "version": "v3.1.15",
  3943. "source": {
  3944. "type": "git",
  3945. "url": "https://github.com/hyperf/service-governance-consul.git",
  3946. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3947. },
  3948. "dist": {
  3949. "type": "zip",
  3950. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3951. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3952. "shasum": ""
  3953. },
  3954. "require": {
  3955. "hyperf/consul": "~3.1.0",
  3956. "hyperf/contract": "~3.1.0",
  3957. "hyperf/service-governance": "~3.1.0",
  3958. "hyperf/support": "~3.1.0",
  3959. "hyperf/utils": "~3.1.0",
  3960. "php": ">=8.1"
  3961. },
  3962. "type": "library",
  3963. "extra": {
  3964. "branch-alias": {
  3965. "dev-master": "3.1-dev"
  3966. },
  3967. "hyperf": {
  3968. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3969. }
  3970. },
  3971. "autoload": {
  3972. "psr-4": {
  3973. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3974. }
  3975. },
  3976. "notification-url": "https://packagist.org/downloads/",
  3977. "license": [
  3978. "MIT"
  3979. ],
  3980. "description": "A consul adapter for service governance.",
  3981. "homepage": "https://hyperf.io",
  3982. "keywords": [
  3983. "consul-adapter",
  3984. "hyperf",
  3985. "php",
  3986. "service-governance",
  3987. "swoole"
  3988. ],
  3989. "support": {
  3990. "docs": "https://hyperf.wiki",
  3991. "issues": "https://github.com/hyperf/hyperf/issues",
  3992. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3993. "source": "https://github.com/hyperf/hyperf"
  3994. },
  3995. "funding": [
  3996. {
  3997. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3998. "type": "custom"
  3999. },
  4000. {
  4001. "url": "https://opencollective.com/hyperf",
  4002. "type": "open_collective"
  4003. }
  4004. ],
  4005. "time": "2024-03-23T11:28:51+00:00"
  4006. },
  4007. {
  4008. "name": "hyperf/service-governance-nacos",
  4009. "version": "v3.1.15",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4013. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4018. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4019. "shasum": ""
  4020. },
  4021. "require": {
  4022. "hyperf/codec": "~3.1.0",
  4023. "hyperf/contract": "~3.1.0",
  4024. "hyperf/nacos": "~3.1.0",
  4025. "hyperf/service-governance": "~3.1.0",
  4026. "hyperf/support": "~3.1.0",
  4027. "hyperf/utils": "~3.1.0",
  4028. "php": ">=8.1"
  4029. },
  4030. "type": "library",
  4031. "extra": {
  4032. "branch-alias": {
  4033. "dev-master": "3.1-dev"
  4034. },
  4035. "hyperf": {
  4036. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4037. }
  4038. },
  4039. "autoload": {
  4040. "psr-4": {
  4041. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "description": "A nacos adapter for service governance.",
  4049. "homepage": "https://hyperf.io",
  4050. "keywords": [
  4051. "hyperf",
  4052. "nacos-adapter",
  4053. "php",
  4054. "service-governance",
  4055. "swoole"
  4056. ],
  4057. "support": {
  4058. "docs": "https://hyperf.wiki",
  4059. "issues": "https://github.com/hyperf/hyperf/issues",
  4060. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4061. "source": "https://github.com/hyperf/hyperf"
  4062. },
  4063. "funding": [
  4064. {
  4065. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4066. "type": "custom"
  4067. },
  4068. {
  4069. "url": "https://opencollective.com/hyperf",
  4070. "type": "open_collective"
  4071. }
  4072. ],
  4073. "time": "2024-03-23T11:28:51+00:00"
  4074. },
  4075. {
  4076. "name": "hyperf/snowflake",
  4077. "version": "v3.1.42",
  4078. "source": {
  4079. "type": "git",
  4080. "url": "https://github.com/hyperf/snowflake.git",
  4081. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4082. },
  4083. "dist": {
  4084. "type": "zip",
  4085. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4086. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4087. "shasum": ""
  4088. },
  4089. "require": {
  4090. "hyperf/contract": "~3.1.0",
  4091. "php": ">=8.1"
  4092. },
  4093. "suggest": {
  4094. "hyperf/config": "Required to read snowflake config.",
  4095. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4096. "psr/container": "Required to use MetaGeneratorFactory."
  4097. },
  4098. "type": "library",
  4099. "extra": {
  4100. "hyperf": {
  4101. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4102. },
  4103. "branch-alias": {
  4104. "dev-master": "3.1-dev"
  4105. }
  4106. },
  4107. "autoload": {
  4108. "psr-4": {
  4109. "Hyperf\\Snowflake\\": "src/"
  4110. }
  4111. },
  4112. "notification-url": "https://packagist.org/downloads/",
  4113. "license": [
  4114. "MIT"
  4115. ],
  4116. "description": "A snowflake library",
  4117. "homepage": "https://hyperf.io",
  4118. "keywords": [
  4119. "php",
  4120. "snowflake"
  4121. ],
  4122. "support": {
  4123. "docs": "https://hyperf.wiki",
  4124. "issues": "https://github.com/hyperf/hyperf/issues",
  4125. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4126. "source": "https://github.com/hyperf/hyperf"
  4127. },
  4128. "funding": [
  4129. {
  4130. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4131. "type": "custom"
  4132. },
  4133. {
  4134. "url": "https://opencollective.com/hyperf",
  4135. "type": "open_collective"
  4136. }
  4137. ],
  4138. "time": "2024-09-25T02:54:12+00:00"
  4139. },
  4140. {
  4141. "name": "hyperf/stdlib",
  4142. "version": "v3.1.15",
  4143. "source": {
  4144. "type": "git",
  4145. "url": "https://github.com/hyperf/stdlib.git",
  4146. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4147. },
  4148. "dist": {
  4149. "type": "zip",
  4150. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4151. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4152. "shasum": ""
  4153. },
  4154. "require": {
  4155. "php": ">=8.1"
  4156. },
  4157. "type": "library",
  4158. "extra": {
  4159. "branch-alias": {
  4160. "dev-master": "3.1-dev"
  4161. }
  4162. },
  4163. "autoload": {
  4164. "psr-4": {
  4165. "Hyperf\\Stdlib\\": "src/"
  4166. }
  4167. },
  4168. "notification-url": "https://packagist.org/downloads/",
  4169. "license": [
  4170. "MIT"
  4171. ],
  4172. "description": "A stdlib component for Hyperf.",
  4173. "homepage": "https://hyperf.io",
  4174. "keywords": [
  4175. "hyperf",
  4176. "php",
  4177. "stdlib",
  4178. "swoole"
  4179. ],
  4180. "support": {
  4181. "docs": "https://hyperf.wiki",
  4182. "issues": "https://github.com/hyperf/hyperf/issues",
  4183. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4184. "source": "https://github.com/hyperf/hyperf"
  4185. },
  4186. "funding": [
  4187. {
  4188. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4189. "type": "custom"
  4190. },
  4191. {
  4192. "url": "https://opencollective.com/hyperf",
  4193. "type": "open_collective"
  4194. }
  4195. ],
  4196. "time": "2024-03-23T11:28:51+00:00"
  4197. },
  4198. {
  4199. "name": "hyperf/stringable",
  4200. "version": "v3.1.24",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/hyperf/stringable.git",
  4204. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4209. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4210. "shasum": ""
  4211. },
  4212. "require": {
  4213. "ext-mbstring": "*",
  4214. "hyperf/collection": "~3.1.0",
  4215. "hyperf/conditionable": "~3.1.0",
  4216. "hyperf/macroable": "~3.1.0",
  4217. "hyperf/tappable": "~3.1.0",
  4218. "php": ">=8.1"
  4219. },
  4220. "suggest": {
  4221. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4222. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4223. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4224. },
  4225. "type": "library",
  4226. "extra": {
  4227. "branch-alias": {
  4228. "dev-master": "3.1-dev"
  4229. }
  4230. },
  4231. "autoload": {
  4232. "files": [
  4233. "src/Functions.php"
  4234. ],
  4235. "psr-4": {
  4236. "Hyperf\\Stringable\\": "src/"
  4237. }
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "MIT"
  4242. ],
  4243. "description": "Hyperf Stringable package which come from illuminate/support",
  4244. "homepage": "https://hyperf.io",
  4245. "keywords": [
  4246. "hyperf",
  4247. "php",
  4248. "stringable",
  4249. "swoole"
  4250. ],
  4251. "support": {
  4252. "docs": "https://hyperf.wiki",
  4253. "issues": "https://github.com/hyperf/hyperf/issues",
  4254. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4255. "source": "https://github.com/hyperf/hyperf"
  4256. },
  4257. "funding": [
  4258. {
  4259. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4260. "type": "custom"
  4261. },
  4262. {
  4263. "url": "https://opencollective.com/hyperf",
  4264. "type": "open_collective"
  4265. }
  4266. ],
  4267. "time": "2024-05-27T03:20:24+00:00"
  4268. },
  4269. {
  4270. "name": "hyperf/support",
  4271. "version": "v3.1.15",
  4272. "source": {
  4273. "type": "git",
  4274. "url": "https://github.com/hyperf/support.git",
  4275. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4276. },
  4277. "dist": {
  4278. "type": "zip",
  4279. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4280. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4281. "shasum": ""
  4282. },
  4283. "require": {
  4284. "hyperf/collection": "~3.1.0",
  4285. "hyperf/context": "~3.1.0",
  4286. "hyperf/contract": "~3.1.0",
  4287. "hyperf/coroutine": "~3.1.0",
  4288. "hyperf/macroable": "~3.1.0",
  4289. "hyperf/stringable": "~3.1.0",
  4290. "php": ">=8.1"
  4291. },
  4292. "suggest": {
  4293. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4294. },
  4295. "type": "library",
  4296. "extra": {
  4297. "branch-alias": {
  4298. "dev-master": "3.1-dev"
  4299. }
  4300. },
  4301. "autoload": {
  4302. "files": [
  4303. "src/Functions.php"
  4304. ],
  4305. "psr-4": {
  4306. "Hyperf\\Support\\": "src/"
  4307. }
  4308. },
  4309. "notification-url": "https://packagist.org/downloads/",
  4310. "license": [
  4311. "MIT"
  4312. ],
  4313. "description": "A support component for Hyperf.",
  4314. "homepage": "https://hyperf.io",
  4315. "keywords": [
  4316. "hyperf",
  4317. "php",
  4318. "support",
  4319. "swoole"
  4320. ],
  4321. "support": {
  4322. "docs": "https://hyperf.wiki",
  4323. "issues": "https://github.com/hyperf/hyperf/issues",
  4324. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4325. "source": "https://github.com/hyperf/hyperf"
  4326. },
  4327. "funding": [
  4328. {
  4329. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4330. "type": "custom"
  4331. },
  4332. {
  4333. "url": "https://opencollective.com/hyperf",
  4334. "type": "open_collective"
  4335. }
  4336. ],
  4337. "time": "2024-03-23T11:28:51+00:00"
  4338. },
  4339. {
  4340. "name": "hyperf/tappable",
  4341. "version": "v3.1.15",
  4342. "source": {
  4343. "type": "git",
  4344. "url": "https://github.com/hyperf/tappable.git",
  4345. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4346. },
  4347. "dist": {
  4348. "type": "zip",
  4349. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4350. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4351. "shasum": ""
  4352. },
  4353. "require": {
  4354. "php": ">=8.1"
  4355. },
  4356. "type": "library",
  4357. "extra": {
  4358. "branch-alias": {
  4359. "dev-master": "3.1-dev"
  4360. }
  4361. },
  4362. "autoload": {
  4363. "files": [
  4364. "src/Functions.php"
  4365. ],
  4366. "psr-4": {
  4367. "Hyperf\\Tappable\\": "src/"
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4375. "homepage": "https://hyperf.io",
  4376. "keywords": [
  4377. "hyperf",
  4378. "php",
  4379. "swoole",
  4380. "tappable"
  4381. ],
  4382. "support": {
  4383. "docs": "https://hyperf.wiki",
  4384. "issues": "https://github.com/hyperf/hyperf/issues",
  4385. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4386. "source": "https://github.com/hyperf/hyperf"
  4387. },
  4388. "funding": [
  4389. {
  4390. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4391. "type": "custom"
  4392. },
  4393. {
  4394. "url": "https://opencollective.com/hyperf",
  4395. "type": "open_collective"
  4396. }
  4397. ],
  4398. "time": "2024-03-23T11:28:51+00:00"
  4399. },
  4400. {
  4401. "name": "hyperf/utils",
  4402. "version": "v3.1.0",
  4403. "source": {
  4404. "type": "git",
  4405. "url": "https://github.com/hyperf/utils.git",
  4406. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4407. },
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4411. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4412. "shasum": ""
  4413. },
  4414. "require": {
  4415. "doctrine/inflector": "^2.0",
  4416. "hyperf/code-parser": "~3.1.0",
  4417. "hyperf/codec": "~3.1.0",
  4418. "hyperf/collection": "~3.1.0",
  4419. "hyperf/context": "~3.1.0",
  4420. "hyperf/contract": "~3.1.0",
  4421. "hyperf/coordinator": "~3.1.0",
  4422. "hyperf/coroutine": "~3.1.0",
  4423. "hyperf/engine": "^2.0",
  4424. "hyperf/macroable": "~3.1.0",
  4425. "hyperf/serializer": "~3.1.0",
  4426. "hyperf/stringable": "~3.1.0",
  4427. "hyperf/support": "~3.1.0",
  4428. "php": ">=8.1"
  4429. },
  4430. "type": "library",
  4431. "extra": {
  4432. "branch-alias": {
  4433. "dev-master": "3.1-dev"
  4434. }
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "description": "A tools package that could help developer solved the problem quickly.",
  4441. "homepage": "https://hyperf.io",
  4442. "keywords": [
  4443. "hyperf",
  4444. "php",
  4445. "swoole",
  4446. "utils"
  4447. ],
  4448. "support": {
  4449. "docs": "https://hyperf.wiki",
  4450. "issues": "https://github.com/hyperf/hyperf/issues",
  4451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4452. "source": "https://github.com/hyperf/hyperf"
  4453. },
  4454. "funding": [
  4455. {
  4456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4457. "type": "custom"
  4458. },
  4459. {
  4460. "url": "https://opencollective.com/hyperf",
  4461. "type": "open_collective"
  4462. }
  4463. ],
  4464. "time": "2023-11-24T03:10:53+00:00"
  4465. },
  4466. {
  4467. "name": "illuminate/cache",
  4468. "version": "v10.48.28",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://github.com/illuminate/cache.git",
  4472. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://api.github.com/repos/illuminate/cache/zipball/20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4477. "reference": "20f36c3209107ee5c8c646f88a0562a2c1b05a6c",
  4478. "shasum": ""
  4479. },
  4480. "require": {
  4481. "illuminate/collections": "^10.0",
  4482. "illuminate/contracts": "^10.0",
  4483. "illuminate/macroable": "^10.0",
  4484. "illuminate/support": "^10.0",
  4485. "php": "^8.1"
  4486. },
  4487. "provide": {
  4488. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  4489. },
  4490. "suggest": {
  4491. "ext-apcu": "Required to use the APC cache driver.",
  4492. "ext-filter": "Required to use the DynamoDb cache driver.",
  4493. "ext-memcached": "Required to use the memcache cache driver.",
  4494. "illuminate/database": "Required to use the database cache driver (^10.0).",
  4495. "illuminate/filesystem": "Required to use the file cache driver (^10.0).",
  4496. "illuminate/redis": "Required to use the redis cache driver (^10.0).",
  4497. "symfony/cache": "Required to use PSR-6 cache bridge (^6.2)."
  4498. },
  4499. "type": "library",
  4500. "extra": {
  4501. "branch-alias": {
  4502. "dev-master": "10.x-dev"
  4503. }
  4504. },
  4505. "autoload": {
  4506. "psr-4": {
  4507. "Illuminate\\Cache\\": ""
  4508. }
  4509. },
  4510. "notification-url": "https://packagist.org/downloads/",
  4511. "license": [
  4512. "MIT"
  4513. ],
  4514. "authors": [
  4515. {
  4516. "name": "Taylor Otwell",
  4517. "email": "taylor@laravel.com"
  4518. }
  4519. ],
  4520. "description": "The Illuminate Cache package.",
  4521. "homepage": "https://laravel.com",
  4522. "support": {
  4523. "issues": "https://github.com/laravel/framework/issues",
  4524. "source": "https://github.com/laravel/framework"
  4525. },
  4526. "time": "2024-11-21T14:02:44+00:00"
  4527. },
  4528. {
  4529. "name": "illuminate/collections",
  4530. "version": "v10.48.28",
  4531. "source": {
  4532. "type": "git",
  4533. "url": "https://github.com/illuminate/collections.git",
  4534. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8"
  4535. },
  4536. "dist": {
  4537. "type": "zip",
  4538. "url": "https://api.github.com/repos/illuminate/collections/zipball/48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4539. "reference": "48de3d6bc6aa779112ddcb608a3a96fc975d89d8",
  4540. "shasum": ""
  4541. },
  4542. "require": {
  4543. "illuminate/conditionable": "^10.0",
  4544. "illuminate/contracts": "^10.0",
  4545. "illuminate/macroable": "^10.0",
  4546. "php": "^8.1"
  4547. },
  4548. "suggest": {
  4549. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  4550. },
  4551. "type": "library",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-master": "10.x-dev"
  4555. }
  4556. },
  4557. "autoload": {
  4558. "files": [
  4559. "helpers.php"
  4560. ],
  4561. "psr-4": {
  4562. "Illuminate\\Support\\": ""
  4563. }
  4564. },
  4565. "notification-url": "https://packagist.org/downloads/",
  4566. "license": [
  4567. "MIT"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "Taylor Otwell",
  4572. "email": "taylor@laravel.com"
  4573. }
  4574. ],
  4575. "description": "The Illuminate Collections package.",
  4576. "homepage": "https://laravel.com",
  4577. "support": {
  4578. "issues": "https://github.com/laravel/framework/issues",
  4579. "source": "https://github.com/laravel/framework"
  4580. },
  4581. "time": "2024-11-21T14:02:44+00:00"
  4582. },
  4583. {
  4584. "name": "illuminate/conditionable",
  4585. "version": "v10.48.28",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/illuminate/conditionable.git",
  4589. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4594. "reference": "3ee34ac306fafc2a6f19cd7cd68c9af389e432a5",
  4595. "shasum": ""
  4596. },
  4597. "require": {
  4598. "php": "^8.0.2"
  4599. },
  4600. "type": "library",
  4601. "extra": {
  4602. "branch-alias": {
  4603. "dev-master": "10.x-dev"
  4604. }
  4605. },
  4606. "autoload": {
  4607. "psr-4": {
  4608. "Illuminate\\Support\\": ""
  4609. }
  4610. },
  4611. "notification-url": "https://packagist.org/downloads/",
  4612. "license": [
  4613. "MIT"
  4614. ],
  4615. "authors": [
  4616. {
  4617. "name": "Taylor Otwell",
  4618. "email": "taylor@laravel.com"
  4619. }
  4620. ],
  4621. "description": "The Illuminate Conditionable package.",
  4622. "homepage": "https://laravel.com",
  4623. "support": {
  4624. "issues": "https://github.com/laravel/framework/issues",
  4625. "source": "https://github.com/laravel/framework"
  4626. },
  4627. "time": "2024-11-21T14:02:44+00:00"
  4628. },
  4629. {
  4630. "name": "illuminate/contracts",
  4631. "version": "v10.48.28",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/illuminate/contracts.git",
  4635. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/illuminate/contracts/zipball/f90663a69f926105a70b78060a31f3c64e2d1c74",
  4640. "reference": "f90663a69f926105a70b78060a31f3c64e2d1c74",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": "^8.1",
  4645. "psr/container": "^1.1.1|^2.0.1",
  4646. "psr/simple-cache": "^1.0|^2.0|^3.0"
  4647. },
  4648. "type": "library",
  4649. "extra": {
  4650. "branch-alias": {
  4651. "dev-master": "10.x-dev"
  4652. }
  4653. },
  4654. "autoload": {
  4655. "psr-4": {
  4656. "Illuminate\\Contracts\\": ""
  4657. }
  4658. },
  4659. "notification-url": "https://packagist.org/downloads/",
  4660. "license": [
  4661. "MIT"
  4662. ],
  4663. "authors": [
  4664. {
  4665. "name": "Taylor Otwell",
  4666. "email": "taylor@laravel.com"
  4667. }
  4668. ],
  4669. "description": "The Illuminate Contracts package.",
  4670. "homepage": "https://laravel.com",
  4671. "support": {
  4672. "issues": "https://github.com/laravel/framework/issues",
  4673. "source": "https://github.com/laravel/framework"
  4674. },
  4675. "time": "2024-11-21T14:02:44+00:00"
  4676. },
  4677. {
  4678. "name": "illuminate/macroable",
  4679. "version": "v10.48.28",
  4680. "source": {
  4681. "type": "git",
  4682. "url": "https://github.com/illuminate/macroable.git",
  4683. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  4684. },
  4685. "dist": {
  4686. "type": "zip",
  4687. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  4688. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  4689. "shasum": ""
  4690. },
  4691. "require": {
  4692. "php": "^8.1"
  4693. },
  4694. "type": "library",
  4695. "extra": {
  4696. "branch-alias": {
  4697. "dev-master": "10.x-dev"
  4698. }
  4699. },
  4700. "autoload": {
  4701. "psr-4": {
  4702. "Illuminate\\Support\\": ""
  4703. }
  4704. },
  4705. "notification-url": "https://packagist.org/downloads/",
  4706. "license": [
  4707. "MIT"
  4708. ],
  4709. "authors": [
  4710. {
  4711. "name": "Taylor Otwell",
  4712. "email": "taylor@laravel.com"
  4713. }
  4714. ],
  4715. "description": "The Illuminate Macroable package.",
  4716. "homepage": "https://laravel.com",
  4717. "support": {
  4718. "issues": "https://github.com/laravel/framework/issues",
  4719. "source": "https://github.com/laravel/framework"
  4720. },
  4721. "time": "2023-06-05T12:46:42+00:00"
  4722. },
  4723. {
  4724. "name": "illuminate/support",
  4725. "version": "v10.48.28",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://github.com/illuminate/support.git",
  4729. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://api.github.com/repos/illuminate/support/zipball/6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  4734. "reference": "6d09b480d34846245d9288f4dcefb17a73ce6e6a",
  4735. "shasum": ""
  4736. },
  4737. "require": {
  4738. "doctrine/inflector": "^2.0",
  4739. "ext-ctype": "*",
  4740. "ext-filter": "*",
  4741. "ext-mbstring": "*",
  4742. "illuminate/collections": "^10.0",
  4743. "illuminate/conditionable": "^10.0",
  4744. "illuminate/contracts": "^10.0",
  4745. "illuminate/macroable": "^10.0",
  4746. "nesbot/carbon": "^2.67",
  4747. "php": "^8.1",
  4748. "voku/portable-ascii": "^2.0"
  4749. },
  4750. "conflict": {
  4751. "tightenco/collect": "<5.5.33"
  4752. },
  4753. "suggest": {
  4754. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  4755. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.6).",
  4756. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  4757. "symfony/process": "Required to use the composer class (^6.2).",
  4758. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  4759. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  4760. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  4761. },
  4762. "type": "library",
  4763. "extra": {
  4764. "branch-alias": {
  4765. "dev-master": "10.x-dev"
  4766. }
  4767. },
  4768. "autoload": {
  4769. "files": [
  4770. "helpers.php"
  4771. ],
  4772. "psr-4": {
  4773. "Illuminate\\Support\\": ""
  4774. }
  4775. },
  4776. "notification-url": "https://packagist.org/downloads/",
  4777. "license": [
  4778. "MIT"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "Taylor Otwell",
  4783. "email": "taylor@laravel.com"
  4784. }
  4785. ],
  4786. "description": "The Illuminate Support package.",
  4787. "homepage": "https://laravel.com",
  4788. "support": {
  4789. "issues": "https://github.com/laravel/framework/issues",
  4790. "source": "https://github.com/laravel/framework"
  4791. },
  4792. "time": "2024-12-10T14:47:55+00:00"
  4793. },
  4794. {
  4795. "name": "jetbrains/phpstorm-attributes",
  4796. "version": "1.1",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4800. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4805. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4806. "shasum": ""
  4807. },
  4808. "type": "library",
  4809. "autoload": {
  4810. "psr-4": {
  4811. "JetBrains\\PhpStorm\\": "src/"
  4812. }
  4813. },
  4814. "notification-url": "https://packagist.org/downloads/",
  4815. "license": [
  4816. "Apache-2.0"
  4817. ],
  4818. "authors": [
  4819. {
  4820. "name": "JetBrains",
  4821. "homepage": "https://www.jetbrains.com"
  4822. }
  4823. ],
  4824. "description": "PhpStorm specific attributes",
  4825. "keywords": [
  4826. "attributes",
  4827. "jetbrains",
  4828. "phpstorm"
  4829. ],
  4830. "support": {
  4831. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4832. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4833. },
  4834. "time": "2023-09-01T08:50:25+00:00"
  4835. },
  4836. {
  4837. "name": "laminas/laminas-mime",
  4838. "version": "2.12.0",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/laminas/laminas-mime.git",
  4842. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4847. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4852. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4853. },
  4854. "conflict": {
  4855. "zendframework/zend-mime": "*"
  4856. },
  4857. "require-dev": {
  4858. "laminas/laminas-coding-standard": "~2.4.0",
  4859. "laminas/laminas-mail": "^2.19.0",
  4860. "phpunit/phpunit": "~9.5.25"
  4861. },
  4862. "suggest": {
  4863. "laminas/laminas-mail": "Laminas\\Mail component"
  4864. },
  4865. "type": "library",
  4866. "autoload": {
  4867. "psr-4": {
  4868. "Laminas\\Mime\\": "src/"
  4869. }
  4870. },
  4871. "notification-url": "https://packagist.org/downloads/",
  4872. "license": [
  4873. "BSD-3-Clause"
  4874. ],
  4875. "description": "Create and parse MIME messages and parts",
  4876. "homepage": "https://laminas.dev",
  4877. "keywords": [
  4878. "laminas",
  4879. "mime"
  4880. ],
  4881. "support": {
  4882. "chat": "https://laminas.dev/chat",
  4883. "docs": "https://docs.laminas.dev/laminas-mime/",
  4884. "forum": "https://discourse.laminas.dev",
  4885. "issues": "https://github.com/laminas/laminas-mime/issues",
  4886. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4887. "source": "https://github.com/laminas/laminas-mime"
  4888. },
  4889. "funding": [
  4890. {
  4891. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4892. "type": "community_bridge"
  4893. }
  4894. ],
  4895. "time": "2023-11-02T16:47:19+00:00"
  4896. },
  4897. {
  4898. "name": "laminas/laminas-stdlib",
  4899. "version": "3.19.0",
  4900. "source": {
  4901. "type": "git",
  4902. "url": "https://github.com/laminas/laminas-stdlib.git",
  4903. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4904. },
  4905. "dist": {
  4906. "type": "zip",
  4907. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4908. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4909. "shasum": ""
  4910. },
  4911. "require": {
  4912. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4913. },
  4914. "conflict": {
  4915. "zendframework/zend-stdlib": "*"
  4916. },
  4917. "require-dev": {
  4918. "laminas/laminas-coding-standard": "^2.5",
  4919. "phpbench/phpbench": "^1.2.15",
  4920. "phpunit/phpunit": "^10.5.8",
  4921. "psalm/plugin-phpunit": "^0.18.4",
  4922. "vimeo/psalm": "^5.20.0"
  4923. },
  4924. "type": "library",
  4925. "autoload": {
  4926. "psr-4": {
  4927. "Laminas\\Stdlib\\": "src/"
  4928. }
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "BSD-3-Clause"
  4933. ],
  4934. "description": "SPL extensions, array utilities, error handlers, and more",
  4935. "homepage": "https://laminas.dev",
  4936. "keywords": [
  4937. "laminas",
  4938. "stdlib"
  4939. ],
  4940. "support": {
  4941. "chat": "https://laminas.dev/chat",
  4942. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4943. "forum": "https://discourse.laminas.dev",
  4944. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4945. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4946. "source": "https://github.com/laminas/laminas-stdlib"
  4947. },
  4948. "funding": [
  4949. {
  4950. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4951. "type": "community_bridge"
  4952. }
  4953. ],
  4954. "time": "2024-01-19T12:39:49+00:00"
  4955. },
  4956. {
  4957. "name": "markrogoyski/math-php",
  4958. "version": "v2.10.0",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/markrogoyski/math-php.git",
  4962. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4967. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4968. "shasum": ""
  4969. },
  4970. "require": {
  4971. "ext-json": "*",
  4972. "php": ">=7.2.0"
  4973. },
  4974. "require-dev": {
  4975. "php-coveralls/php-coveralls": "^2.0",
  4976. "php-parallel-lint/php-parallel-lint": "^1.2",
  4977. "phploc/phploc": "*",
  4978. "phpmd/phpmd": "^2.6",
  4979. "phpstan/phpstan": "^1.10",
  4980. "phpunit/phpunit": "^8.5",
  4981. "squizlabs/php_codesniffer": "3.*"
  4982. },
  4983. "type": "library",
  4984. "autoload": {
  4985. "psr-4": {
  4986. "MathPHP\\": "src/"
  4987. }
  4988. },
  4989. "notification-url": "https://packagist.org/downloads/",
  4990. "license": [
  4991. "MIT"
  4992. ],
  4993. "authors": [
  4994. {
  4995. "name": "Mark Rogoyski",
  4996. "email": "mark@rogoyski.com",
  4997. "homepage": "https://github.com/markrogoyski",
  4998. "role": "Lead developer"
  4999. },
  5000. {
  5001. "name": "Kevin Nowaczyk",
  5002. "homepage": "https://github.com/Beakerboy",
  5003. "role": "Developer"
  5004. },
  5005. {
  5006. "name": "MathPHP Community of Contributors",
  5007. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5008. }
  5009. ],
  5010. "description": "Math Library for PHP. Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra",
  5011. "homepage": "https://github.com/markrogoyski/math-php/",
  5012. "keywords": [
  5013. "algebra",
  5014. "combinatorics",
  5015. "distributions",
  5016. "linear algebra",
  5017. "math",
  5018. "mathematics",
  5019. "matrix",
  5020. "numerical analysis",
  5021. "probability",
  5022. "regressions",
  5023. "statistics"
  5024. ],
  5025. "support": {
  5026. "issues": "https://github.com/markrogoyski/math-php/issues",
  5027. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5028. },
  5029. "time": "2024-04-17T00:09:51+00:00"
  5030. },
  5031. {
  5032. "name": "monolog/monolog",
  5033. "version": "3.6.0",
  5034. "source": {
  5035. "type": "git",
  5036. "url": "https://github.com/Seldaek/monolog.git",
  5037. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  5038. },
  5039. "dist": {
  5040. "type": "zip",
  5041. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5042. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5043. "shasum": ""
  5044. },
  5045. "require": {
  5046. "php": ">=8.1",
  5047. "psr/log": "^2.0 || ^3.0"
  5048. },
  5049. "provide": {
  5050. "psr/log-implementation": "3.0.0"
  5051. },
  5052. "require-dev": {
  5053. "aws/aws-sdk-php": "^3.0",
  5054. "doctrine/couchdb": "~1.0@dev",
  5055. "elasticsearch/elasticsearch": "^7 || ^8",
  5056. "ext-json": "*",
  5057. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5058. "guzzlehttp/guzzle": "^7.4.5",
  5059. "guzzlehttp/psr7": "^2.2",
  5060. "mongodb/mongodb": "^1.8",
  5061. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5062. "phpstan/phpstan": "^1.9",
  5063. "phpstan/phpstan-deprecation-rules": "^1.0",
  5064. "phpstan/phpstan-strict-rules": "^1.4",
  5065. "phpunit/phpunit": "^10.5.17",
  5066. "predis/predis": "^1.1 || ^2",
  5067. "ruflin/elastica": "^7",
  5068. "symfony/mailer": "^5.4 || ^6",
  5069. "symfony/mime": "^5.4 || ^6"
  5070. },
  5071. "suggest": {
  5072. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5073. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5074. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5075. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5076. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5077. "ext-mbstring": "Allow to work properly with unicode symbols",
  5078. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5079. "ext-openssl": "Required to send log messages using SSL",
  5080. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5081. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5082. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5083. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5084. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5085. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5086. },
  5087. "type": "library",
  5088. "extra": {
  5089. "branch-alias": {
  5090. "dev-main": "3.x-dev"
  5091. }
  5092. },
  5093. "autoload": {
  5094. "psr-4": {
  5095. "Monolog\\": "src/Monolog"
  5096. }
  5097. },
  5098. "notification-url": "https://packagist.org/downloads/",
  5099. "license": [
  5100. "MIT"
  5101. ],
  5102. "authors": [
  5103. {
  5104. "name": "Jordi Boggiano",
  5105. "email": "j.boggiano@seld.be",
  5106. "homepage": "https://seld.be"
  5107. }
  5108. ],
  5109. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5110. "homepage": "https://github.com/Seldaek/monolog",
  5111. "keywords": [
  5112. "log",
  5113. "logging",
  5114. "psr-3"
  5115. ],
  5116. "support": {
  5117. "issues": "https://github.com/Seldaek/monolog/issues",
  5118. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  5119. },
  5120. "funding": [
  5121. {
  5122. "url": "https://github.com/Seldaek",
  5123. "type": "github"
  5124. },
  5125. {
  5126. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5127. "type": "tidelift"
  5128. }
  5129. ],
  5130. "time": "2024-04-12T21:02:21+00:00"
  5131. },
  5132. {
  5133. "name": "nesbot/carbon",
  5134. "version": "2.72.5",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/briannesbitt/Carbon.git",
  5138. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5143. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5144. "shasum": ""
  5145. },
  5146. "require": {
  5147. "carbonphp/carbon-doctrine-types": "*",
  5148. "ext-json": "*",
  5149. "php": "^7.1.8 || ^8.0",
  5150. "psr/clock": "^1.0",
  5151. "symfony/polyfill-mbstring": "^1.0",
  5152. "symfony/polyfill-php80": "^1.16",
  5153. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5154. },
  5155. "provide": {
  5156. "psr/clock-implementation": "1.0"
  5157. },
  5158. "require-dev": {
  5159. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5160. "doctrine/orm": "^2.7 || ^3.0",
  5161. "friendsofphp/php-cs-fixer": "^3.0",
  5162. "kylekatarnls/multi-tester": "^2.0",
  5163. "ondrejmirtes/better-reflection": "*",
  5164. "phpmd/phpmd": "^2.9",
  5165. "phpstan/extension-installer": "^1.0",
  5166. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5167. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5168. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5169. "squizlabs/php_codesniffer": "^3.4"
  5170. },
  5171. "bin": [
  5172. "bin/carbon"
  5173. ],
  5174. "type": "library",
  5175. "extra": {
  5176. "branch-alias": {
  5177. "dev-master": "3.x-dev",
  5178. "dev-2.x": "2.x-dev"
  5179. },
  5180. "laravel": {
  5181. "providers": [
  5182. "Carbon\\Laravel\\ServiceProvider"
  5183. ]
  5184. },
  5185. "phpstan": {
  5186. "includes": [
  5187. "extension.neon"
  5188. ]
  5189. }
  5190. },
  5191. "autoload": {
  5192. "psr-4": {
  5193. "Carbon\\": "src/Carbon/"
  5194. }
  5195. },
  5196. "notification-url": "https://packagist.org/downloads/",
  5197. "license": [
  5198. "MIT"
  5199. ],
  5200. "authors": [
  5201. {
  5202. "name": "Brian Nesbitt",
  5203. "email": "brian@nesbot.com",
  5204. "homepage": "https://markido.com"
  5205. },
  5206. {
  5207. "name": "kylekatarnls",
  5208. "homepage": "https://github.com/kylekatarnls"
  5209. }
  5210. ],
  5211. "description": "An API extension for DateTime that supports 281 different languages.",
  5212. "homepage": "https://carbon.nesbot.com",
  5213. "keywords": [
  5214. "date",
  5215. "datetime",
  5216. "time"
  5217. ],
  5218. "support": {
  5219. "docs": "https://carbon.nesbot.com/docs",
  5220. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5221. "source": "https://github.com/briannesbitt/Carbon"
  5222. },
  5223. "funding": [
  5224. {
  5225. "url": "https://github.com/sponsors/kylekatarnls",
  5226. "type": "github"
  5227. },
  5228. {
  5229. "url": "https://opencollective.com/Carbon#sponsor",
  5230. "type": "opencollective"
  5231. },
  5232. {
  5233. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5234. "type": "tidelift"
  5235. }
  5236. ],
  5237. "time": "2024-06-03T19:18:41+00:00"
  5238. },
  5239. {
  5240. "name": "nikic/fast-route",
  5241. "version": "v1.3.0",
  5242. "source": {
  5243. "type": "git",
  5244. "url": "https://github.com/nikic/FastRoute.git",
  5245. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5246. },
  5247. "dist": {
  5248. "type": "zip",
  5249. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5250. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5251. "shasum": ""
  5252. },
  5253. "require": {
  5254. "php": ">=5.4.0"
  5255. },
  5256. "require-dev": {
  5257. "phpunit/phpunit": "^4.8.35|~5.7"
  5258. },
  5259. "type": "library",
  5260. "autoload": {
  5261. "files": [
  5262. "src/functions.php"
  5263. ],
  5264. "psr-4": {
  5265. "FastRoute\\": "src/"
  5266. }
  5267. },
  5268. "notification-url": "https://packagist.org/downloads/",
  5269. "license": [
  5270. "BSD-3-Clause"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Nikita Popov",
  5275. "email": "nikic@php.net"
  5276. }
  5277. ],
  5278. "description": "Fast request router for PHP",
  5279. "keywords": [
  5280. "router",
  5281. "routing"
  5282. ],
  5283. "support": {
  5284. "issues": "https://github.com/nikic/FastRoute/issues",
  5285. "source": "https://github.com/nikic/FastRoute/tree/master"
  5286. },
  5287. "time": "2018-02-13T20:26:39+00:00"
  5288. },
  5289. {
  5290. "name": "nikic/php-parser",
  5291. "version": "v4.19.1",
  5292. "source": {
  5293. "type": "git",
  5294. "url": "https://github.com/nikic/PHP-Parser.git",
  5295. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5296. },
  5297. "dist": {
  5298. "type": "zip",
  5299. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5300. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5301. "shasum": ""
  5302. },
  5303. "require": {
  5304. "ext-tokenizer": "*",
  5305. "php": ">=7.1"
  5306. },
  5307. "require-dev": {
  5308. "ircmaxell/php-yacc": "^0.0.7",
  5309. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5310. },
  5311. "bin": [
  5312. "bin/php-parse"
  5313. ],
  5314. "type": "library",
  5315. "extra": {
  5316. "branch-alias": {
  5317. "dev-master": "4.9-dev"
  5318. }
  5319. },
  5320. "autoload": {
  5321. "psr-4": {
  5322. "PhpParser\\": "lib/PhpParser"
  5323. }
  5324. },
  5325. "notification-url": "https://packagist.org/downloads/",
  5326. "license": [
  5327. "BSD-3-Clause"
  5328. ],
  5329. "authors": [
  5330. {
  5331. "name": "Nikita Popov"
  5332. }
  5333. ],
  5334. "description": "A PHP parser written in PHP",
  5335. "keywords": [
  5336. "parser",
  5337. "php"
  5338. ],
  5339. "support": {
  5340. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5341. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5342. },
  5343. "time": "2024-03-17T08:10:35+00:00"
  5344. },
  5345. {
  5346. "name": "php-di/phpdoc-reader",
  5347. "version": "2.2.1",
  5348. "source": {
  5349. "type": "git",
  5350. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5351. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5352. },
  5353. "dist": {
  5354. "type": "zip",
  5355. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5356. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5357. "shasum": ""
  5358. },
  5359. "require": {
  5360. "php": ">=7.2.0"
  5361. },
  5362. "require-dev": {
  5363. "mnapoli/hard-mode": "~0.3.0",
  5364. "phpunit/phpunit": "^8.5|^9.0"
  5365. },
  5366. "type": "library",
  5367. "autoload": {
  5368. "psr-4": {
  5369. "PhpDocReader\\": "src/PhpDocReader"
  5370. }
  5371. },
  5372. "notification-url": "https://packagist.org/downloads/",
  5373. "license": [
  5374. "MIT"
  5375. ],
  5376. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5377. "keywords": [
  5378. "phpdoc",
  5379. "reflection"
  5380. ],
  5381. "support": {
  5382. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5383. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5384. },
  5385. "time": "2020-10-12T12:39:22+00:00"
  5386. },
  5387. {
  5388. "name": "phpoption/phpoption",
  5389. "version": "1.9.2",
  5390. "source": {
  5391. "type": "git",
  5392. "url": "https://github.com/schmittjoh/php-option.git",
  5393. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5394. },
  5395. "dist": {
  5396. "type": "zip",
  5397. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5398. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5399. "shasum": ""
  5400. },
  5401. "require": {
  5402. "php": "^7.2.5 || ^8.0"
  5403. },
  5404. "require-dev": {
  5405. "bamarni/composer-bin-plugin": "^1.8.2",
  5406. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5407. },
  5408. "type": "library",
  5409. "extra": {
  5410. "bamarni-bin": {
  5411. "bin-links": true,
  5412. "forward-command": true
  5413. },
  5414. "branch-alias": {
  5415. "dev-master": "1.9-dev"
  5416. }
  5417. },
  5418. "autoload": {
  5419. "psr-4": {
  5420. "PhpOption\\": "src/PhpOption/"
  5421. }
  5422. },
  5423. "notification-url": "https://packagist.org/downloads/",
  5424. "license": [
  5425. "Apache-2.0"
  5426. ],
  5427. "authors": [
  5428. {
  5429. "name": "Johannes M. Schmitt",
  5430. "email": "schmittjoh@gmail.com",
  5431. "homepage": "https://github.com/schmittjoh"
  5432. },
  5433. {
  5434. "name": "Graham Campbell",
  5435. "email": "hello@gjcampbell.co.uk",
  5436. "homepage": "https://github.com/GrahamCampbell"
  5437. }
  5438. ],
  5439. "description": "Option Type for PHP",
  5440. "keywords": [
  5441. "language",
  5442. "option",
  5443. "php",
  5444. "type"
  5445. ],
  5446. "support": {
  5447. "issues": "https://github.com/schmittjoh/php-option/issues",
  5448. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5449. },
  5450. "funding": [
  5451. {
  5452. "url": "https://github.com/GrahamCampbell",
  5453. "type": "github"
  5454. },
  5455. {
  5456. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5457. "type": "tidelift"
  5458. }
  5459. ],
  5460. "time": "2023-11-12T21:59:55+00:00"
  5461. },
  5462. {
  5463. "name": "psr/cache",
  5464. "version": "3.0.0",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/php-fig/cache.git",
  5468. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5473. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5474. "shasum": ""
  5475. },
  5476. "require": {
  5477. "php": ">=8.0.0"
  5478. },
  5479. "type": "library",
  5480. "extra": {
  5481. "branch-alias": {
  5482. "dev-master": "1.0.x-dev"
  5483. }
  5484. },
  5485. "autoload": {
  5486. "psr-4": {
  5487. "Psr\\Cache\\": "src/"
  5488. }
  5489. },
  5490. "notification-url": "https://packagist.org/downloads/",
  5491. "license": [
  5492. "MIT"
  5493. ],
  5494. "authors": [
  5495. {
  5496. "name": "PHP-FIG",
  5497. "homepage": "https://www.php-fig.org/"
  5498. }
  5499. ],
  5500. "description": "Common interface for caching libraries",
  5501. "keywords": [
  5502. "cache",
  5503. "psr",
  5504. "psr-6"
  5505. ],
  5506. "support": {
  5507. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5508. },
  5509. "time": "2021-02-03T23:26:27+00:00"
  5510. },
  5511. {
  5512. "name": "psr/clock",
  5513. "version": "1.0.0",
  5514. "source": {
  5515. "type": "git",
  5516. "url": "https://github.com/php-fig/clock.git",
  5517. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5518. },
  5519. "dist": {
  5520. "type": "zip",
  5521. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5522. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5523. "shasum": ""
  5524. },
  5525. "require": {
  5526. "php": "^7.0 || ^8.0"
  5527. },
  5528. "type": "library",
  5529. "autoload": {
  5530. "psr-4": {
  5531. "Psr\\Clock\\": "src/"
  5532. }
  5533. },
  5534. "notification-url": "https://packagist.org/downloads/",
  5535. "license": [
  5536. "MIT"
  5537. ],
  5538. "authors": [
  5539. {
  5540. "name": "PHP-FIG",
  5541. "homepage": "https://www.php-fig.org/"
  5542. }
  5543. ],
  5544. "description": "Common interface for reading the clock.",
  5545. "homepage": "https://github.com/php-fig/clock",
  5546. "keywords": [
  5547. "clock",
  5548. "now",
  5549. "psr",
  5550. "psr-20",
  5551. "time"
  5552. ],
  5553. "support": {
  5554. "issues": "https://github.com/php-fig/clock/issues",
  5555. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5556. },
  5557. "time": "2022-11-25T14:36:26+00:00"
  5558. },
  5559. {
  5560. "name": "psr/container",
  5561. "version": "2.0.2",
  5562. "source": {
  5563. "type": "git",
  5564. "url": "https://github.com/php-fig/container.git",
  5565. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5566. },
  5567. "dist": {
  5568. "type": "zip",
  5569. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5570. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5571. "shasum": ""
  5572. },
  5573. "require": {
  5574. "php": ">=7.4.0"
  5575. },
  5576. "type": "library",
  5577. "extra": {
  5578. "branch-alias": {
  5579. "dev-master": "2.0.x-dev"
  5580. }
  5581. },
  5582. "autoload": {
  5583. "psr-4": {
  5584. "Psr\\Container\\": "src/"
  5585. }
  5586. },
  5587. "notification-url": "https://packagist.org/downloads/",
  5588. "license": [
  5589. "MIT"
  5590. ],
  5591. "authors": [
  5592. {
  5593. "name": "PHP-FIG",
  5594. "homepage": "https://www.php-fig.org/"
  5595. }
  5596. ],
  5597. "description": "Common Container Interface (PHP FIG PSR-11)",
  5598. "homepage": "https://github.com/php-fig/container",
  5599. "keywords": [
  5600. "PSR-11",
  5601. "container",
  5602. "container-interface",
  5603. "container-interop",
  5604. "psr"
  5605. ],
  5606. "support": {
  5607. "issues": "https://github.com/php-fig/container/issues",
  5608. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5609. },
  5610. "time": "2021-11-05T16:47:00+00:00"
  5611. },
  5612. {
  5613. "name": "psr/event-dispatcher",
  5614. "version": "1.0.0",
  5615. "source": {
  5616. "type": "git",
  5617. "url": "https://github.com/php-fig/event-dispatcher.git",
  5618. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5619. },
  5620. "dist": {
  5621. "type": "zip",
  5622. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5623. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5624. "shasum": ""
  5625. },
  5626. "require": {
  5627. "php": ">=7.2.0"
  5628. },
  5629. "type": "library",
  5630. "extra": {
  5631. "branch-alias": {
  5632. "dev-master": "1.0.x-dev"
  5633. }
  5634. },
  5635. "autoload": {
  5636. "psr-4": {
  5637. "Psr\\EventDispatcher\\": "src/"
  5638. }
  5639. },
  5640. "notification-url": "https://packagist.org/downloads/",
  5641. "license": [
  5642. "MIT"
  5643. ],
  5644. "authors": [
  5645. {
  5646. "name": "PHP-FIG",
  5647. "homepage": "http://www.php-fig.org/"
  5648. }
  5649. ],
  5650. "description": "Standard interfaces for event handling.",
  5651. "keywords": [
  5652. "events",
  5653. "psr",
  5654. "psr-14"
  5655. ],
  5656. "support": {
  5657. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5658. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5659. },
  5660. "time": "2019-01-08T18:20:26+00:00"
  5661. },
  5662. {
  5663. "name": "psr/http-client",
  5664. "version": "1.0.3",
  5665. "source": {
  5666. "type": "git",
  5667. "url": "https://github.com/php-fig/http-client.git",
  5668. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5669. },
  5670. "dist": {
  5671. "type": "zip",
  5672. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5673. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5674. "shasum": ""
  5675. },
  5676. "require": {
  5677. "php": "^7.0 || ^8.0",
  5678. "psr/http-message": "^1.0 || ^2.0"
  5679. },
  5680. "type": "library",
  5681. "extra": {
  5682. "branch-alias": {
  5683. "dev-master": "1.0.x-dev"
  5684. }
  5685. },
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Psr\\Http\\Client\\": "src/"
  5689. }
  5690. },
  5691. "notification-url": "https://packagist.org/downloads/",
  5692. "license": [
  5693. "MIT"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "PHP-FIG",
  5698. "homepage": "https://www.php-fig.org/"
  5699. }
  5700. ],
  5701. "description": "Common interface for HTTP clients",
  5702. "homepage": "https://github.com/php-fig/http-client",
  5703. "keywords": [
  5704. "http",
  5705. "http-client",
  5706. "psr",
  5707. "psr-18"
  5708. ],
  5709. "support": {
  5710. "source": "https://github.com/php-fig/http-client"
  5711. },
  5712. "time": "2023-09-23T14:17:50+00:00"
  5713. },
  5714. {
  5715. "name": "psr/http-factory",
  5716. "version": "1.1.0",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://github.com/php-fig/http-factory.git",
  5720. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5721. },
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5725. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5726. "shasum": ""
  5727. },
  5728. "require": {
  5729. "php": ">=7.1",
  5730. "psr/http-message": "^1.0 || ^2.0"
  5731. },
  5732. "type": "library",
  5733. "extra": {
  5734. "branch-alias": {
  5735. "dev-master": "1.0.x-dev"
  5736. }
  5737. },
  5738. "autoload": {
  5739. "psr-4": {
  5740. "Psr\\Http\\Message\\": "src/"
  5741. }
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "PHP-FIG",
  5750. "homepage": "https://www.php-fig.org/"
  5751. }
  5752. ],
  5753. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5754. "keywords": [
  5755. "factory",
  5756. "http",
  5757. "message",
  5758. "psr",
  5759. "psr-17",
  5760. "psr-7",
  5761. "request",
  5762. "response"
  5763. ],
  5764. "support": {
  5765. "source": "https://github.com/php-fig/http-factory"
  5766. },
  5767. "time": "2024-04-15T12:06:14+00:00"
  5768. },
  5769. {
  5770. "name": "psr/http-message",
  5771. "version": "2.0",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/php-fig/http-message.git",
  5775. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5780. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5781. "shasum": ""
  5782. },
  5783. "require": {
  5784. "php": "^7.2 || ^8.0"
  5785. },
  5786. "type": "library",
  5787. "extra": {
  5788. "branch-alias": {
  5789. "dev-master": "2.0.x-dev"
  5790. }
  5791. },
  5792. "autoload": {
  5793. "psr-4": {
  5794. "Psr\\Http\\Message\\": "src/"
  5795. }
  5796. },
  5797. "notification-url": "https://packagist.org/downloads/",
  5798. "license": [
  5799. "MIT"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "PHP-FIG",
  5804. "homepage": "https://www.php-fig.org/"
  5805. }
  5806. ],
  5807. "description": "Common interface for HTTP messages",
  5808. "homepage": "https://github.com/php-fig/http-message",
  5809. "keywords": [
  5810. "http",
  5811. "http-message",
  5812. "psr",
  5813. "psr-7",
  5814. "request",
  5815. "response"
  5816. ],
  5817. "support": {
  5818. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5819. },
  5820. "time": "2023-04-04T09:54:51+00:00"
  5821. },
  5822. {
  5823. "name": "psr/http-server-handler",
  5824. "version": "1.0.2",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://github.com/php-fig/http-server-handler.git",
  5828. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5833. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5834. "shasum": ""
  5835. },
  5836. "require": {
  5837. "php": ">=7.0",
  5838. "psr/http-message": "^1.0 || ^2.0"
  5839. },
  5840. "type": "library",
  5841. "extra": {
  5842. "branch-alias": {
  5843. "dev-master": "1.0.x-dev"
  5844. }
  5845. },
  5846. "autoload": {
  5847. "psr-4": {
  5848. "Psr\\Http\\Server\\": "src/"
  5849. }
  5850. },
  5851. "notification-url": "https://packagist.org/downloads/",
  5852. "license": [
  5853. "MIT"
  5854. ],
  5855. "authors": [
  5856. {
  5857. "name": "PHP-FIG",
  5858. "homepage": "https://www.php-fig.org/"
  5859. }
  5860. ],
  5861. "description": "Common interface for HTTP server-side request handler",
  5862. "keywords": [
  5863. "handler",
  5864. "http",
  5865. "http-interop",
  5866. "psr",
  5867. "psr-15",
  5868. "psr-7",
  5869. "request",
  5870. "response",
  5871. "server"
  5872. ],
  5873. "support": {
  5874. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5875. },
  5876. "time": "2023-04-10T20:06:20+00:00"
  5877. },
  5878. {
  5879. "name": "psr/http-server-middleware",
  5880. "version": "1.0.2",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/php-fig/http-server-middleware.git",
  5884. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5889. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5890. "shasum": ""
  5891. },
  5892. "require": {
  5893. "php": ">=7.0",
  5894. "psr/http-message": "^1.0 || ^2.0",
  5895. "psr/http-server-handler": "^1.0"
  5896. },
  5897. "type": "library",
  5898. "extra": {
  5899. "branch-alias": {
  5900. "dev-master": "1.0.x-dev"
  5901. }
  5902. },
  5903. "autoload": {
  5904. "psr-4": {
  5905. "Psr\\Http\\Server\\": "src/"
  5906. }
  5907. },
  5908. "notification-url": "https://packagist.org/downloads/",
  5909. "license": [
  5910. "MIT"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "PHP-FIG",
  5915. "homepage": "https://www.php-fig.org/"
  5916. }
  5917. ],
  5918. "description": "Common interface for HTTP server-side middleware",
  5919. "keywords": [
  5920. "http",
  5921. "http-interop",
  5922. "middleware",
  5923. "psr",
  5924. "psr-15",
  5925. "psr-7",
  5926. "request",
  5927. "response"
  5928. ],
  5929. "support": {
  5930. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5931. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5932. },
  5933. "time": "2023-04-11T06:14:47+00:00"
  5934. },
  5935. {
  5936. "name": "psr/log",
  5937. "version": "3.0.0",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/php-fig/log.git",
  5941. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5946. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "php": ">=8.0.0"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-master": "3.x-dev"
  5956. }
  5957. },
  5958. "autoload": {
  5959. "psr-4": {
  5960. "Psr\\Log\\": "src"
  5961. }
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "PHP-FIG",
  5970. "homepage": "https://www.php-fig.org/"
  5971. }
  5972. ],
  5973. "description": "Common interface for logging libraries",
  5974. "homepage": "https://github.com/php-fig/log",
  5975. "keywords": [
  5976. "log",
  5977. "psr",
  5978. "psr-3"
  5979. ],
  5980. "support": {
  5981. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5982. },
  5983. "time": "2021-07-14T16:46:02+00:00"
  5984. },
  5985. {
  5986. "name": "psr/simple-cache",
  5987. "version": "3.0.0",
  5988. "source": {
  5989. "type": "git",
  5990. "url": "https://github.com/php-fig/simple-cache.git",
  5991. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5992. },
  5993. "dist": {
  5994. "type": "zip",
  5995. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5996. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5997. "shasum": ""
  5998. },
  5999. "require": {
  6000. "php": ">=8.0.0"
  6001. },
  6002. "type": "library",
  6003. "extra": {
  6004. "branch-alias": {
  6005. "dev-master": "3.0.x-dev"
  6006. }
  6007. },
  6008. "autoload": {
  6009. "psr-4": {
  6010. "Psr\\SimpleCache\\": "src/"
  6011. }
  6012. },
  6013. "notification-url": "https://packagist.org/downloads/",
  6014. "license": [
  6015. "MIT"
  6016. ],
  6017. "authors": [
  6018. {
  6019. "name": "PHP-FIG",
  6020. "homepage": "https://www.php-fig.org/"
  6021. }
  6022. ],
  6023. "description": "Common interfaces for simple caching",
  6024. "keywords": [
  6025. "cache",
  6026. "caching",
  6027. "psr",
  6028. "psr-16",
  6029. "simple-cache"
  6030. ],
  6031. "support": {
  6032. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6033. },
  6034. "time": "2021-10-29T13:26:27+00:00"
  6035. },
  6036. {
  6037. "name": "ralouphie/getallheaders",
  6038. "version": "3.0.3",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://github.com/ralouphie/getallheaders.git",
  6042. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6043. },
  6044. "dist": {
  6045. "type": "zip",
  6046. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6047. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6048. "shasum": ""
  6049. },
  6050. "require": {
  6051. "php": ">=5.6"
  6052. },
  6053. "require-dev": {
  6054. "php-coveralls/php-coveralls": "^2.1",
  6055. "phpunit/phpunit": "^5 || ^6.5"
  6056. },
  6057. "type": "library",
  6058. "autoload": {
  6059. "files": [
  6060. "src/getallheaders.php"
  6061. ]
  6062. },
  6063. "notification-url": "https://packagist.org/downloads/",
  6064. "license": [
  6065. "MIT"
  6066. ],
  6067. "authors": [
  6068. {
  6069. "name": "Ralph Khattar",
  6070. "email": "ralph.khattar@gmail.com"
  6071. }
  6072. ],
  6073. "description": "A polyfill for getallheaders.",
  6074. "support": {
  6075. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6076. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6077. },
  6078. "time": "2019-03-08T08:55:37+00:00"
  6079. },
  6080. {
  6081. "name": "ramsey/collection",
  6082. "version": "2.1.1",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://github.com/ramsey/collection.git",
  6086. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  6091. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  6092. "shasum": ""
  6093. },
  6094. "require": {
  6095. "php": "^8.1"
  6096. },
  6097. "require-dev": {
  6098. "captainhook/plugin-composer": "^5.3",
  6099. "ergebnis/composer-normalize": "^2.45",
  6100. "fakerphp/faker": "^1.24",
  6101. "hamcrest/hamcrest-php": "^2.0",
  6102. "jangregor/phpstan-prophecy": "^2.1",
  6103. "mockery/mockery": "^1.6",
  6104. "php-parallel-lint/php-console-highlighter": "^1.0",
  6105. "php-parallel-lint/php-parallel-lint": "^1.4",
  6106. "phpspec/prophecy-phpunit": "^2.3",
  6107. "phpstan/extension-installer": "^1.4",
  6108. "phpstan/phpstan": "^2.1",
  6109. "phpstan/phpstan-mockery": "^2.0",
  6110. "phpstan/phpstan-phpunit": "^2.0",
  6111. "phpunit/phpunit": "^10.5",
  6112. "ramsey/coding-standard": "^2.3",
  6113. "ramsey/conventional-commits": "^1.6",
  6114. "roave/security-advisories": "dev-latest"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "captainhook": {
  6119. "force-install": true
  6120. },
  6121. "ramsey/conventional-commits": {
  6122. "configFile": "conventional-commits.json"
  6123. }
  6124. },
  6125. "autoload": {
  6126. "psr-4": {
  6127. "Ramsey\\Collection\\": "src/"
  6128. }
  6129. },
  6130. "notification-url": "https://packagist.org/downloads/",
  6131. "license": [
  6132. "MIT"
  6133. ],
  6134. "authors": [
  6135. {
  6136. "name": "Ben Ramsey",
  6137. "email": "ben@benramsey.com",
  6138. "homepage": "https://benramsey.com"
  6139. }
  6140. ],
  6141. "description": "A PHP library for representing and manipulating collections.",
  6142. "keywords": [
  6143. "array",
  6144. "collection",
  6145. "hash",
  6146. "map",
  6147. "queue",
  6148. "set"
  6149. ],
  6150. "support": {
  6151. "issues": "https://github.com/ramsey/collection/issues",
  6152. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  6153. },
  6154. "time": "2025-03-22T05:38:12+00:00"
  6155. },
  6156. {
  6157. "name": "ramsey/uuid",
  6158. "version": "4.7.6",
  6159. "source": {
  6160. "type": "git",
  6161. "url": "https://github.com/ramsey/uuid.git",
  6162. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6163. },
  6164. "dist": {
  6165. "type": "zip",
  6166. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6167. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6168. "shasum": ""
  6169. },
  6170. "require": {
  6171. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6172. "ext-json": "*",
  6173. "php": "^8.0",
  6174. "ramsey/collection": "^1.2 || ^2.0"
  6175. },
  6176. "replace": {
  6177. "rhumsaa/uuid": "self.version"
  6178. },
  6179. "require-dev": {
  6180. "captainhook/captainhook": "^5.10",
  6181. "captainhook/plugin-composer": "^5.3",
  6182. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6183. "doctrine/annotations": "^1.8",
  6184. "ergebnis/composer-normalize": "^2.15",
  6185. "mockery/mockery": "^1.3",
  6186. "paragonie/random-lib": "^2",
  6187. "php-mock/php-mock": "^2.2",
  6188. "php-mock/php-mock-mockery": "^1.3",
  6189. "php-parallel-lint/php-parallel-lint": "^1.1",
  6190. "phpbench/phpbench": "^1.0",
  6191. "phpstan/extension-installer": "^1.1",
  6192. "phpstan/phpstan": "^1.8",
  6193. "phpstan/phpstan-mockery": "^1.1",
  6194. "phpstan/phpstan-phpunit": "^1.1",
  6195. "phpunit/phpunit": "^8.5 || ^9",
  6196. "ramsey/composer-repl": "^1.4",
  6197. "slevomat/coding-standard": "^8.4",
  6198. "squizlabs/php_codesniffer": "^3.5",
  6199. "vimeo/psalm": "^4.9"
  6200. },
  6201. "suggest": {
  6202. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6203. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6204. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6205. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6206. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6207. },
  6208. "type": "library",
  6209. "extra": {
  6210. "captainhook": {
  6211. "force-install": true
  6212. }
  6213. },
  6214. "autoload": {
  6215. "files": [
  6216. "src/functions.php"
  6217. ],
  6218. "psr-4": {
  6219. "Ramsey\\Uuid\\": "src/"
  6220. }
  6221. },
  6222. "notification-url": "https://packagist.org/downloads/",
  6223. "license": [
  6224. "MIT"
  6225. ],
  6226. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6227. "keywords": [
  6228. "guid",
  6229. "identifier",
  6230. "uuid"
  6231. ],
  6232. "support": {
  6233. "issues": "https://github.com/ramsey/uuid/issues",
  6234. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6235. },
  6236. "funding": [
  6237. {
  6238. "url": "https://github.com/ramsey",
  6239. "type": "github"
  6240. },
  6241. {
  6242. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6243. "type": "tidelift"
  6244. }
  6245. ],
  6246. "time": "2024-04-27T21:32:50+00:00"
  6247. },
  6248. {
  6249. "name": "swow/psr7-plus",
  6250. "version": "v1.1.2",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/swow/psr7-plus.git",
  6254. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6259. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=8.0",
  6264. "psr/http-client": "^1.0",
  6265. "psr/http-factory": "^1.0",
  6266. "psr/http-message": "^1.1|^2.0"
  6267. },
  6268. "type": "library",
  6269. "autoload": {
  6270. "psr-4": {
  6271. "Swow\\Psr7\\Message\\": "src/Message/"
  6272. }
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "Apache-2.0"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "twose",
  6281. "email": "twosee@php.net"
  6282. }
  6283. ],
  6284. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6285. "keywords": [
  6286. "http",
  6287. "psr17",
  6288. "psr7",
  6289. "swow",
  6290. "websocket"
  6291. ],
  6292. "support": {
  6293. "issues": "https://github.com/swow/swow",
  6294. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6295. },
  6296. "time": "2023-06-15T09:18:11+00:00"
  6297. },
  6298. {
  6299. "name": "symfony/console",
  6300. "version": "v6.4.8",
  6301. "source": {
  6302. "type": "git",
  6303. "url": "https://github.com/symfony/console.git",
  6304. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  6305. },
  6306. "dist": {
  6307. "type": "zip",
  6308. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6309. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6310. "shasum": ""
  6311. },
  6312. "require": {
  6313. "php": ">=8.1",
  6314. "symfony/deprecation-contracts": "^2.5|^3",
  6315. "symfony/polyfill-mbstring": "~1.0",
  6316. "symfony/service-contracts": "^2.5|^3",
  6317. "symfony/string": "^5.4|^6.0|^7.0"
  6318. },
  6319. "conflict": {
  6320. "symfony/dependency-injection": "<5.4",
  6321. "symfony/dotenv": "<5.4",
  6322. "symfony/event-dispatcher": "<5.4",
  6323. "symfony/lock": "<5.4",
  6324. "symfony/process": "<5.4"
  6325. },
  6326. "provide": {
  6327. "psr/log-implementation": "1.0|2.0|3.0"
  6328. },
  6329. "require-dev": {
  6330. "psr/log": "^1|^2|^3",
  6331. "symfony/config": "^5.4|^6.0|^7.0",
  6332. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6333. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6334. "symfony/http-foundation": "^6.4|^7.0",
  6335. "symfony/http-kernel": "^6.4|^7.0",
  6336. "symfony/lock": "^5.4|^6.0|^7.0",
  6337. "symfony/messenger": "^5.4|^6.0|^7.0",
  6338. "symfony/process": "^5.4|^6.0|^7.0",
  6339. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6340. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6341. },
  6342. "type": "library",
  6343. "autoload": {
  6344. "psr-4": {
  6345. "Symfony\\Component\\Console\\": ""
  6346. },
  6347. "exclude-from-classmap": [
  6348. "/Tests/"
  6349. ]
  6350. },
  6351. "notification-url": "https://packagist.org/downloads/",
  6352. "license": [
  6353. "MIT"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "Fabien Potencier",
  6358. "email": "fabien@symfony.com"
  6359. },
  6360. {
  6361. "name": "Symfony Community",
  6362. "homepage": "https://symfony.com/contributors"
  6363. }
  6364. ],
  6365. "description": "Eases the creation of beautiful and testable command line interfaces",
  6366. "homepage": "https://symfony.com",
  6367. "keywords": [
  6368. "cli",
  6369. "command-line",
  6370. "console",
  6371. "terminal"
  6372. ],
  6373. "support": {
  6374. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6375. },
  6376. "funding": [
  6377. {
  6378. "url": "https://symfony.com/sponsor",
  6379. "type": "custom"
  6380. },
  6381. {
  6382. "url": "https://github.com/fabpot",
  6383. "type": "github"
  6384. },
  6385. {
  6386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6387. "type": "tidelift"
  6388. }
  6389. ],
  6390. "time": "2024-05-31T14:49:08+00:00"
  6391. },
  6392. {
  6393. "name": "symfony/deprecation-contracts",
  6394. "version": "v3.5.0",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://github.com/symfony/deprecation-contracts.git",
  6398. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6403. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6404. "shasum": ""
  6405. },
  6406. "require": {
  6407. "php": ">=8.1"
  6408. },
  6409. "type": "library",
  6410. "extra": {
  6411. "branch-alias": {
  6412. "dev-main": "3.5-dev"
  6413. },
  6414. "thanks": {
  6415. "name": "symfony/contracts",
  6416. "url": "https://github.com/symfony/contracts"
  6417. }
  6418. },
  6419. "autoload": {
  6420. "files": [
  6421. "function.php"
  6422. ]
  6423. },
  6424. "notification-url": "https://packagist.org/downloads/",
  6425. "license": [
  6426. "MIT"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Nicolas Grekas",
  6431. "email": "p@tchwork.com"
  6432. },
  6433. {
  6434. "name": "Symfony Community",
  6435. "homepage": "https://symfony.com/contributors"
  6436. }
  6437. ],
  6438. "description": "A generic function and convention to trigger deprecation notices",
  6439. "homepage": "https://symfony.com",
  6440. "support": {
  6441. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6442. },
  6443. "funding": [
  6444. {
  6445. "url": "https://symfony.com/sponsor",
  6446. "type": "custom"
  6447. },
  6448. {
  6449. "url": "https://github.com/fabpot",
  6450. "type": "github"
  6451. },
  6452. {
  6453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6454. "type": "tidelift"
  6455. }
  6456. ],
  6457. "time": "2024-04-18T09:32:20+00:00"
  6458. },
  6459. {
  6460. "name": "symfony/finder",
  6461. "version": "v6.4.8",
  6462. "source": {
  6463. "type": "git",
  6464. "url": "https://github.com/symfony/finder.git",
  6465. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6466. },
  6467. "dist": {
  6468. "type": "zip",
  6469. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6470. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6471. "shasum": ""
  6472. },
  6473. "require": {
  6474. "php": ">=8.1"
  6475. },
  6476. "require-dev": {
  6477. "symfony/filesystem": "^6.0|^7.0"
  6478. },
  6479. "type": "library",
  6480. "autoload": {
  6481. "psr-4": {
  6482. "Symfony\\Component\\Finder\\": ""
  6483. },
  6484. "exclude-from-classmap": [
  6485. "/Tests/"
  6486. ]
  6487. },
  6488. "notification-url": "https://packagist.org/downloads/",
  6489. "license": [
  6490. "MIT"
  6491. ],
  6492. "authors": [
  6493. {
  6494. "name": "Fabien Potencier",
  6495. "email": "fabien@symfony.com"
  6496. },
  6497. {
  6498. "name": "Symfony Community",
  6499. "homepage": "https://symfony.com/contributors"
  6500. }
  6501. ],
  6502. "description": "Finds files and directories via an intuitive fluent interface",
  6503. "homepage": "https://symfony.com",
  6504. "support": {
  6505. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6506. },
  6507. "funding": [
  6508. {
  6509. "url": "https://symfony.com/sponsor",
  6510. "type": "custom"
  6511. },
  6512. {
  6513. "url": "https://github.com/fabpot",
  6514. "type": "github"
  6515. },
  6516. {
  6517. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6518. "type": "tidelift"
  6519. }
  6520. ],
  6521. "time": "2024-05-31T14:49:08+00:00"
  6522. },
  6523. {
  6524. "name": "symfony/polyfill-ctype",
  6525. "version": "v1.29.0",
  6526. "source": {
  6527. "type": "git",
  6528. "url": "https://github.com/symfony/polyfill-ctype.git",
  6529. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6530. },
  6531. "dist": {
  6532. "type": "zip",
  6533. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6534. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6535. "shasum": ""
  6536. },
  6537. "require": {
  6538. "php": ">=7.1"
  6539. },
  6540. "provide": {
  6541. "ext-ctype": "*"
  6542. },
  6543. "suggest": {
  6544. "ext-ctype": "For best performance"
  6545. },
  6546. "type": "library",
  6547. "extra": {
  6548. "thanks": {
  6549. "name": "symfony/polyfill",
  6550. "url": "https://github.com/symfony/polyfill"
  6551. }
  6552. },
  6553. "autoload": {
  6554. "files": [
  6555. "bootstrap.php"
  6556. ],
  6557. "psr-4": {
  6558. "Symfony\\Polyfill\\Ctype\\": ""
  6559. }
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "Gert de Pagter",
  6568. "email": "BackEndTea@gmail.com"
  6569. },
  6570. {
  6571. "name": "Symfony Community",
  6572. "homepage": "https://symfony.com/contributors"
  6573. }
  6574. ],
  6575. "description": "Symfony polyfill for ctype functions",
  6576. "homepage": "https://symfony.com",
  6577. "keywords": [
  6578. "compatibility",
  6579. "ctype",
  6580. "polyfill",
  6581. "portable"
  6582. ],
  6583. "support": {
  6584. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://symfony.com/sponsor",
  6589. "type": "custom"
  6590. },
  6591. {
  6592. "url": "https://github.com/fabpot",
  6593. "type": "github"
  6594. },
  6595. {
  6596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6597. "type": "tidelift"
  6598. }
  6599. ],
  6600. "time": "2024-01-29T20:11:03+00:00"
  6601. },
  6602. {
  6603. "name": "symfony/polyfill-intl-grapheme",
  6604. "version": "v1.29.0",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6608. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6613. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6614. "shasum": ""
  6615. },
  6616. "require": {
  6617. "php": ">=7.1"
  6618. },
  6619. "suggest": {
  6620. "ext-intl": "For best performance"
  6621. },
  6622. "type": "library",
  6623. "extra": {
  6624. "thanks": {
  6625. "name": "symfony/polyfill",
  6626. "url": "https://github.com/symfony/polyfill"
  6627. }
  6628. },
  6629. "autoload": {
  6630. "files": [
  6631. "bootstrap.php"
  6632. ],
  6633. "psr-4": {
  6634. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6635. }
  6636. },
  6637. "notification-url": "https://packagist.org/downloads/",
  6638. "license": [
  6639. "MIT"
  6640. ],
  6641. "authors": [
  6642. {
  6643. "name": "Nicolas Grekas",
  6644. "email": "p@tchwork.com"
  6645. },
  6646. {
  6647. "name": "Symfony Community",
  6648. "homepage": "https://symfony.com/contributors"
  6649. }
  6650. ],
  6651. "description": "Symfony polyfill for intl's grapheme_* functions",
  6652. "homepage": "https://symfony.com",
  6653. "keywords": [
  6654. "compatibility",
  6655. "grapheme",
  6656. "intl",
  6657. "polyfill",
  6658. "portable",
  6659. "shim"
  6660. ],
  6661. "support": {
  6662. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6663. },
  6664. "funding": [
  6665. {
  6666. "url": "https://symfony.com/sponsor",
  6667. "type": "custom"
  6668. },
  6669. {
  6670. "url": "https://github.com/fabpot",
  6671. "type": "github"
  6672. },
  6673. {
  6674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6675. "type": "tidelift"
  6676. }
  6677. ],
  6678. "time": "2024-01-29T20:11:03+00:00"
  6679. },
  6680. {
  6681. "name": "symfony/polyfill-intl-normalizer",
  6682. "version": "v1.29.0",
  6683. "source": {
  6684. "type": "git",
  6685. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6686. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6687. },
  6688. "dist": {
  6689. "type": "zip",
  6690. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6691. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6692. "shasum": ""
  6693. },
  6694. "require": {
  6695. "php": ">=7.1"
  6696. },
  6697. "suggest": {
  6698. "ext-intl": "For best performance"
  6699. },
  6700. "type": "library",
  6701. "extra": {
  6702. "thanks": {
  6703. "name": "symfony/polyfill",
  6704. "url": "https://github.com/symfony/polyfill"
  6705. }
  6706. },
  6707. "autoload": {
  6708. "files": [
  6709. "bootstrap.php"
  6710. ],
  6711. "psr-4": {
  6712. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6713. },
  6714. "classmap": [
  6715. "Resources/stubs"
  6716. ]
  6717. },
  6718. "notification-url": "https://packagist.org/downloads/",
  6719. "license": [
  6720. "MIT"
  6721. ],
  6722. "authors": [
  6723. {
  6724. "name": "Nicolas Grekas",
  6725. "email": "p@tchwork.com"
  6726. },
  6727. {
  6728. "name": "Symfony Community",
  6729. "homepage": "https://symfony.com/contributors"
  6730. }
  6731. ],
  6732. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6733. "homepage": "https://symfony.com",
  6734. "keywords": [
  6735. "compatibility",
  6736. "intl",
  6737. "normalizer",
  6738. "polyfill",
  6739. "portable",
  6740. "shim"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2024-01-29T20:11:03+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/polyfill-mbstring",
  6763. "version": "v1.29.0",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6767. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6772. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "php": ">=7.1"
  6777. },
  6778. "provide": {
  6779. "ext-mbstring": "*"
  6780. },
  6781. "suggest": {
  6782. "ext-mbstring": "For best performance"
  6783. },
  6784. "type": "library",
  6785. "extra": {
  6786. "thanks": {
  6787. "name": "symfony/polyfill",
  6788. "url": "https://github.com/symfony/polyfill"
  6789. }
  6790. },
  6791. "autoload": {
  6792. "files": [
  6793. "bootstrap.php"
  6794. ],
  6795. "psr-4": {
  6796. "Symfony\\Polyfill\\Mbstring\\": ""
  6797. }
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Nicolas Grekas",
  6806. "email": "p@tchwork.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Symfony polyfill for the Mbstring extension",
  6814. "homepage": "https://symfony.com",
  6815. "keywords": [
  6816. "compatibility",
  6817. "mbstring",
  6818. "polyfill",
  6819. "portable",
  6820. "shim"
  6821. ],
  6822. "support": {
  6823. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6824. },
  6825. "funding": [
  6826. {
  6827. "url": "https://symfony.com/sponsor",
  6828. "type": "custom"
  6829. },
  6830. {
  6831. "url": "https://github.com/fabpot",
  6832. "type": "github"
  6833. },
  6834. {
  6835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6836. "type": "tidelift"
  6837. }
  6838. ],
  6839. "time": "2024-01-29T20:11:03+00:00"
  6840. },
  6841. {
  6842. "name": "symfony/polyfill-php80",
  6843. "version": "v1.29.0",
  6844. "source": {
  6845. "type": "git",
  6846. "url": "https://github.com/symfony/polyfill-php80.git",
  6847. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6848. },
  6849. "dist": {
  6850. "type": "zip",
  6851. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6852. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6853. "shasum": ""
  6854. },
  6855. "require": {
  6856. "php": ">=7.1"
  6857. },
  6858. "type": "library",
  6859. "extra": {
  6860. "thanks": {
  6861. "name": "symfony/polyfill",
  6862. "url": "https://github.com/symfony/polyfill"
  6863. }
  6864. },
  6865. "autoload": {
  6866. "files": [
  6867. "bootstrap.php"
  6868. ],
  6869. "psr-4": {
  6870. "Symfony\\Polyfill\\Php80\\": ""
  6871. },
  6872. "classmap": [
  6873. "Resources/stubs"
  6874. ]
  6875. },
  6876. "notification-url": "https://packagist.org/downloads/",
  6877. "license": [
  6878. "MIT"
  6879. ],
  6880. "authors": [
  6881. {
  6882. "name": "Ion Bazan",
  6883. "email": "ion.bazan@gmail.com"
  6884. },
  6885. {
  6886. "name": "Nicolas Grekas",
  6887. "email": "p@tchwork.com"
  6888. },
  6889. {
  6890. "name": "Symfony Community",
  6891. "homepage": "https://symfony.com/contributors"
  6892. }
  6893. ],
  6894. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6895. "homepage": "https://symfony.com",
  6896. "keywords": [
  6897. "compatibility",
  6898. "polyfill",
  6899. "portable",
  6900. "shim"
  6901. ],
  6902. "support": {
  6903. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6904. },
  6905. "funding": [
  6906. {
  6907. "url": "https://symfony.com/sponsor",
  6908. "type": "custom"
  6909. },
  6910. {
  6911. "url": "https://github.com/fabpot",
  6912. "type": "github"
  6913. },
  6914. {
  6915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6916. "type": "tidelift"
  6917. }
  6918. ],
  6919. "time": "2024-01-29T20:11:03+00:00"
  6920. },
  6921. {
  6922. "name": "symfony/service-contracts",
  6923. "version": "v3.5.0",
  6924. "source": {
  6925. "type": "git",
  6926. "url": "https://github.com/symfony/service-contracts.git",
  6927. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6928. },
  6929. "dist": {
  6930. "type": "zip",
  6931. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6932. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6933. "shasum": ""
  6934. },
  6935. "require": {
  6936. "php": ">=8.1",
  6937. "psr/container": "^1.1|^2.0",
  6938. "symfony/deprecation-contracts": "^2.5|^3"
  6939. },
  6940. "conflict": {
  6941. "ext-psr": "<1.1|>=2"
  6942. },
  6943. "type": "library",
  6944. "extra": {
  6945. "branch-alias": {
  6946. "dev-main": "3.5-dev"
  6947. },
  6948. "thanks": {
  6949. "name": "symfony/contracts",
  6950. "url": "https://github.com/symfony/contracts"
  6951. }
  6952. },
  6953. "autoload": {
  6954. "psr-4": {
  6955. "Symfony\\Contracts\\Service\\": ""
  6956. },
  6957. "exclude-from-classmap": [
  6958. "/Test/"
  6959. ]
  6960. },
  6961. "notification-url": "https://packagist.org/downloads/",
  6962. "license": [
  6963. "MIT"
  6964. ],
  6965. "authors": [
  6966. {
  6967. "name": "Nicolas Grekas",
  6968. "email": "p@tchwork.com"
  6969. },
  6970. {
  6971. "name": "Symfony Community",
  6972. "homepage": "https://symfony.com/contributors"
  6973. }
  6974. ],
  6975. "description": "Generic abstractions related to writing services",
  6976. "homepage": "https://symfony.com",
  6977. "keywords": [
  6978. "abstractions",
  6979. "contracts",
  6980. "decoupling",
  6981. "interfaces",
  6982. "interoperability",
  6983. "standards"
  6984. ],
  6985. "support": {
  6986. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6987. },
  6988. "funding": [
  6989. {
  6990. "url": "https://symfony.com/sponsor",
  6991. "type": "custom"
  6992. },
  6993. {
  6994. "url": "https://github.com/fabpot",
  6995. "type": "github"
  6996. },
  6997. {
  6998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6999. "type": "tidelift"
  7000. }
  7001. ],
  7002. "time": "2024-04-18T09:32:20+00:00"
  7003. },
  7004. {
  7005. "name": "symfony/string",
  7006. "version": "v6.4.8",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/symfony/string.git",
  7010. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7015. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7016. "shasum": ""
  7017. },
  7018. "require": {
  7019. "php": ">=8.1",
  7020. "symfony/polyfill-ctype": "~1.8",
  7021. "symfony/polyfill-intl-grapheme": "~1.0",
  7022. "symfony/polyfill-intl-normalizer": "~1.0",
  7023. "symfony/polyfill-mbstring": "~1.0"
  7024. },
  7025. "conflict": {
  7026. "symfony/translation-contracts": "<2.5"
  7027. },
  7028. "require-dev": {
  7029. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7030. "symfony/http-client": "^5.4|^6.0|^7.0",
  7031. "symfony/intl": "^6.2|^7.0",
  7032. "symfony/translation-contracts": "^2.5|^3.0",
  7033. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7034. },
  7035. "type": "library",
  7036. "autoload": {
  7037. "files": [
  7038. "Resources/functions.php"
  7039. ],
  7040. "psr-4": {
  7041. "Symfony\\Component\\String\\": ""
  7042. },
  7043. "exclude-from-classmap": [
  7044. "/Tests/"
  7045. ]
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Nicolas Grekas",
  7054. "email": "p@tchwork.com"
  7055. },
  7056. {
  7057. "name": "Symfony Community",
  7058. "homepage": "https://symfony.com/contributors"
  7059. }
  7060. ],
  7061. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7062. "homepage": "https://symfony.com",
  7063. "keywords": [
  7064. "grapheme",
  7065. "i18n",
  7066. "string",
  7067. "unicode",
  7068. "utf-8",
  7069. "utf8"
  7070. ],
  7071. "support": {
  7072. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7073. },
  7074. "funding": [
  7075. {
  7076. "url": "https://symfony.com/sponsor",
  7077. "type": "custom"
  7078. },
  7079. {
  7080. "url": "https://github.com/fabpot",
  7081. "type": "github"
  7082. },
  7083. {
  7084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7085. "type": "tidelift"
  7086. }
  7087. ],
  7088. "time": "2024-05-31T14:49:08+00:00"
  7089. },
  7090. {
  7091. "name": "symfony/translation",
  7092. "version": "v6.4.8",
  7093. "source": {
  7094. "type": "git",
  7095. "url": "https://github.com/symfony/translation.git",
  7096. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7097. },
  7098. "dist": {
  7099. "type": "zip",
  7100. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7101. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7102. "shasum": ""
  7103. },
  7104. "require": {
  7105. "php": ">=8.1",
  7106. "symfony/deprecation-contracts": "^2.5|^3",
  7107. "symfony/polyfill-mbstring": "~1.0",
  7108. "symfony/translation-contracts": "^2.5|^3.0"
  7109. },
  7110. "conflict": {
  7111. "symfony/config": "<5.4",
  7112. "symfony/console": "<5.4",
  7113. "symfony/dependency-injection": "<5.4",
  7114. "symfony/http-client-contracts": "<2.5",
  7115. "symfony/http-kernel": "<5.4",
  7116. "symfony/service-contracts": "<2.5",
  7117. "symfony/twig-bundle": "<5.4",
  7118. "symfony/yaml": "<5.4"
  7119. },
  7120. "provide": {
  7121. "symfony/translation-implementation": "2.3|3.0"
  7122. },
  7123. "require-dev": {
  7124. "nikic/php-parser": "^4.18|^5.0",
  7125. "psr/log": "^1|^2|^3",
  7126. "symfony/config": "^5.4|^6.0|^7.0",
  7127. "symfony/console": "^5.4|^6.0|^7.0",
  7128. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7129. "symfony/finder": "^5.4|^6.0|^7.0",
  7130. "symfony/http-client-contracts": "^2.5|^3.0",
  7131. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7132. "symfony/intl": "^5.4|^6.0|^7.0",
  7133. "symfony/polyfill-intl-icu": "^1.21",
  7134. "symfony/routing": "^5.4|^6.0|^7.0",
  7135. "symfony/service-contracts": "^2.5|^3",
  7136. "symfony/yaml": "^5.4|^6.0|^7.0"
  7137. },
  7138. "type": "library",
  7139. "autoload": {
  7140. "files": [
  7141. "Resources/functions.php"
  7142. ],
  7143. "psr-4": {
  7144. "Symfony\\Component\\Translation\\": ""
  7145. },
  7146. "exclude-from-classmap": [
  7147. "/Tests/"
  7148. ]
  7149. },
  7150. "notification-url": "https://packagist.org/downloads/",
  7151. "license": [
  7152. "MIT"
  7153. ],
  7154. "authors": [
  7155. {
  7156. "name": "Fabien Potencier",
  7157. "email": "fabien@symfony.com"
  7158. },
  7159. {
  7160. "name": "Symfony Community",
  7161. "homepage": "https://symfony.com/contributors"
  7162. }
  7163. ],
  7164. "description": "Provides tools to internationalize your application",
  7165. "homepage": "https://symfony.com",
  7166. "support": {
  7167. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7168. },
  7169. "funding": [
  7170. {
  7171. "url": "https://symfony.com/sponsor",
  7172. "type": "custom"
  7173. },
  7174. {
  7175. "url": "https://github.com/fabpot",
  7176. "type": "github"
  7177. },
  7178. {
  7179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7180. "type": "tidelift"
  7181. }
  7182. ],
  7183. "time": "2024-05-31T14:49:08+00:00"
  7184. },
  7185. {
  7186. "name": "symfony/translation-contracts",
  7187. "version": "v3.5.0",
  7188. "source": {
  7189. "type": "git",
  7190. "url": "https://github.com/symfony/translation-contracts.git",
  7191. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7192. },
  7193. "dist": {
  7194. "type": "zip",
  7195. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7196. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7197. "shasum": ""
  7198. },
  7199. "require": {
  7200. "php": ">=8.1"
  7201. },
  7202. "type": "library",
  7203. "extra": {
  7204. "branch-alias": {
  7205. "dev-main": "3.5-dev"
  7206. },
  7207. "thanks": {
  7208. "name": "symfony/contracts",
  7209. "url": "https://github.com/symfony/contracts"
  7210. }
  7211. },
  7212. "autoload": {
  7213. "psr-4": {
  7214. "Symfony\\Contracts\\Translation\\": ""
  7215. },
  7216. "exclude-from-classmap": [
  7217. "/Test/"
  7218. ]
  7219. },
  7220. "notification-url": "https://packagist.org/downloads/",
  7221. "license": [
  7222. "MIT"
  7223. ],
  7224. "authors": [
  7225. {
  7226. "name": "Nicolas Grekas",
  7227. "email": "p@tchwork.com"
  7228. },
  7229. {
  7230. "name": "Symfony Community",
  7231. "homepage": "https://symfony.com/contributors"
  7232. }
  7233. ],
  7234. "description": "Generic abstractions related to translation",
  7235. "homepage": "https://symfony.com",
  7236. "keywords": [
  7237. "abstractions",
  7238. "contracts",
  7239. "decoupling",
  7240. "interfaces",
  7241. "interoperability",
  7242. "standards"
  7243. ],
  7244. "support": {
  7245. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7246. },
  7247. "funding": [
  7248. {
  7249. "url": "https://symfony.com/sponsor",
  7250. "type": "custom"
  7251. },
  7252. {
  7253. "url": "https://github.com/fabpot",
  7254. "type": "github"
  7255. },
  7256. {
  7257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7258. "type": "tidelift"
  7259. }
  7260. ],
  7261. "time": "2024-04-18T09:32:20+00:00"
  7262. },
  7263. {
  7264. "name": "vlucas/phpdotenv",
  7265. "version": "v5.6.0",
  7266. "source": {
  7267. "type": "git",
  7268. "url": "https://github.com/vlucas/phpdotenv.git",
  7269. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7270. },
  7271. "dist": {
  7272. "type": "zip",
  7273. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7274. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7275. "shasum": ""
  7276. },
  7277. "require": {
  7278. "ext-pcre": "*",
  7279. "graham-campbell/result-type": "^1.1.2",
  7280. "php": "^7.2.5 || ^8.0",
  7281. "phpoption/phpoption": "^1.9.2",
  7282. "symfony/polyfill-ctype": "^1.24",
  7283. "symfony/polyfill-mbstring": "^1.24",
  7284. "symfony/polyfill-php80": "^1.24"
  7285. },
  7286. "require-dev": {
  7287. "bamarni/composer-bin-plugin": "^1.8.2",
  7288. "ext-filter": "*",
  7289. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7290. },
  7291. "suggest": {
  7292. "ext-filter": "Required to use the boolean validator."
  7293. },
  7294. "type": "library",
  7295. "extra": {
  7296. "bamarni-bin": {
  7297. "bin-links": true,
  7298. "forward-command": true
  7299. },
  7300. "branch-alias": {
  7301. "dev-master": "5.6-dev"
  7302. }
  7303. },
  7304. "autoload": {
  7305. "psr-4": {
  7306. "Dotenv\\": "src/"
  7307. }
  7308. },
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "BSD-3-Clause"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "Graham Campbell",
  7316. "email": "hello@gjcampbell.co.uk",
  7317. "homepage": "https://github.com/GrahamCampbell"
  7318. },
  7319. {
  7320. "name": "Vance Lucas",
  7321. "email": "vance@vancelucas.com",
  7322. "homepage": "https://github.com/vlucas"
  7323. }
  7324. ],
  7325. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7326. "keywords": [
  7327. "dotenv",
  7328. "env",
  7329. "environment"
  7330. ],
  7331. "support": {
  7332. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7333. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7334. },
  7335. "funding": [
  7336. {
  7337. "url": "https://github.com/GrahamCampbell",
  7338. "type": "github"
  7339. },
  7340. {
  7341. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7342. "type": "tidelift"
  7343. }
  7344. ],
  7345. "time": "2023-11-12T22:43:29+00:00"
  7346. },
  7347. {
  7348. "name": "voku/portable-ascii",
  7349. "version": "2.0.3",
  7350. "source": {
  7351. "type": "git",
  7352. "url": "https://github.com/voku/portable-ascii.git",
  7353. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  7354. },
  7355. "dist": {
  7356. "type": "zip",
  7357. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7358. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7359. "shasum": ""
  7360. },
  7361. "require": {
  7362. "php": ">=7.0.0"
  7363. },
  7364. "require-dev": {
  7365. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7366. },
  7367. "suggest": {
  7368. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7369. },
  7370. "type": "library",
  7371. "autoload": {
  7372. "psr-4": {
  7373. "voku\\": "src/voku/"
  7374. }
  7375. },
  7376. "notification-url": "https://packagist.org/downloads/",
  7377. "license": [
  7378. "MIT"
  7379. ],
  7380. "authors": [
  7381. {
  7382. "name": "Lars Moelleken",
  7383. "homepage": "https://www.moelleken.org/"
  7384. }
  7385. ],
  7386. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7387. "homepage": "https://github.com/voku/portable-ascii",
  7388. "keywords": [
  7389. "ascii",
  7390. "clean",
  7391. "php"
  7392. ],
  7393. "support": {
  7394. "issues": "https://github.com/voku/portable-ascii/issues",
  7395. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  7396. },
  7397. "funding": [
  7398. {
  7399. "url": "https://www.paypal.me/moelleken",
  7400. "type": "custom"
  7401. },
  7402. {
  7403. "url": "https://github.com/voku",
  7404. "type": "github"
  7405. },
  7406. {
  7407. "url": "https://opencollective.com/portable-ascii",
  7408. "type": "open_collective"
  7409. },
  7410. {
  7411. "url": "https://www.patreon.com/voku",
  7412. "type": "patreon"
  7413. },
  7414. {
  7415. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7416. "type": "tidelift"
  7417. }
  7418. ],
  7419. "time": "2024-11-21T01:49:47+00:00"
  7420. }
  7421. ],
  7422. "packages-dev": [
  7423. {
  7424. "name": "clue/ndjson-react",
  7425. "version": "v1.3.0",
  7426. "source": {
  7427. "type": "git",
  7428. "url": "https://github.com/clue/reactphp-ndjson.git",
  7429. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7430. },
  7431. "dist": {
  7432. "type": "zip",
  7433. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7434. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7435. "shasum": ""
  7436. },
  7437. "require": {
  7438. "php": ">=5.3",
  7439. "react/stream": "^1.2"
  7440. },
  7441. "require-dev": {
  7442. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7443. "react/event-loop": "^1.2"
  7444. },
  7445. "type": "library",
  7446. "autoload": {
  7447. "psr-4": {
  7448. "Clue\\React\\NDJson\\": "src/"
  7449. }
  7450. },
  7451. "notification-url": "https://packagist.org/downloads/",
  7452. "license": [
  7453. "MIT"
  7454. ],
  7455. "authors": [
  7456. {
  7457. "name": "Christian Lück",
  7458. "email": "christian@clue.engineering"
  7459. }
  7460. ],
  7461. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7462. "homepage": "https://github.com/clue/reactphp-ndjson",
  7463. "keywords": [
  7464. "NDJSON",
  7465. "json",
  7466. "jsonlines",
  7467. "newline",
  7468. "reactphp",
  7469. "streaming"
  7470. ],
  7471. "support": {
  7472. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7473. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7474. },
  7475. "funding": [
  7476. {
  7477. "url": "https://clue.engineering/support",
  7478. "type": "custom"
  7479. },
  7480. {
  7481. "url": "https://github.com/clue",
  7482. "type": "github"
  7483. }
  7484. ],
  7485. "time": "2022-12-23T10:58:28+00:00"
  7486. },
  7487. {
  7488. "name": "composer/pcre",
  7489. "version": "3.1.4",
  7490. "source": {
  7491. "type": "git",
  7492. "url": "https://github.com/composer/pcre.git",
  7493. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7494. },
  7495. "dist": {
  7496. "type": "zip",
  7497. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7498. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7499. "shasum": ""
  7500. },
  7501. "require": {
  7502. "php": "^7.4 || ^8.0"
  7503. },
  7504. "require-dev": {
  7505. "phpstan/phpstan": "^1.3",
  7506. "phpstan/phpstan-strict-rules": "^1.1",
  7507. "symfony/phpunit-bridge": "^5"
  7508. },
  7509. "type": "library",
  7510. "extra": {
  7511. "branch-alias": {
  7512. "dev-main": "3.x-dev"
  7513. }
  7514. },
  7515. "autoload": {
  7516. "psr-4": {
  7517. "Composer\\Pcre\\": "src"
  7518. }
  7519. },
  7520. "notification-url": "https://packagist.org/downloads/",
  7521. "license": [
  7522. "MIT"
  7523. ],
  7524. "authors": [
  7525. {
  7526. "name": "Jordi Boggiano",
  7527. "email": "j.boggiano@seld.be",
  7528. "homepage": "http://seld.be"
  7529. }
  7530. ],
  7531. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7532. "keywords": [
  7533. "PCRE",
  7534. "preg",
  7535. "regex",
  7536. "regular expression"
  7537. ],
  7538. "support": {
  7539. "issues": "https://github.com/composer/pcre/issues",
  7540. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7541. },
  7542. "funding": [
  7543. {
  7544. "url": "https://packagist.com",
  7545. "type": "custom"
  7546. },
  7547. {
  7548. "url": "https://github.com/composer",
  7549. "type": "github"
  7550. },
  7551. {
  7552. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7553. "type": "tidelift"
  7554. }
  7555. ],
  7556. "time": "2024-05-27T13:40:54+00:00"
  7557. },
  7558. {
  7559. "name": "composer/semver",
  7560. "version": "3.4.0",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/composer/semver.git",
  7564. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7569. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7570. "shasum": ""
  7571. },
  7572. "require": {
  7573. "php": "^5.3.2 || ^7.0 || ^8.0"
  7574. },
  7575. "require-dev": {
  7576. "phpstan/phpstan": "^1.4",
  7577. "symfony/phpunit-bridge": "^4.2 || ^5"
  7578. },
  7579. "type": "library",
  7580. "extra": {
  7581. "branch-alias": {
  7582. "dev-main": "3.x-dev"
  7583. }
  7584. },
  7585. "autoload": {
  7586. "psr-4": {
  7587. "Composer\\Semver\\": "src"
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Nils Adermann",
  7597. "email": "naderman@naderman.de",
  7598. "homepage": "http://www.naderman.de"
  7599. },
  7600. {
  7601. "name": "Jordi Boggiano",
  7602. "email": "j.boggiano@seld.be",
  7603. "homepage": "http://seld.be"
  7604. },
  7605. {
  7606. "name": "Rob Bast",
  7607. "email": "rob.bast@gmail.com",
  7608. "homepage": "http://robbast.nl"
  7609. }
  7610. ],
  7611. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7612. "keywords": [
  7613. "semantic",
  7614. "semver",
  7615. "validation",
  7616. "versioning"
  7617. ],
  7618. "support": {
  7619. "irc": "ircs://irc.libera.chat:6697/composer",
  7620. "issues": "https://github.com/composer/semver/issues",
  7621. "source": "https://github.com/composer/semver/tree/3.4.0"
  7622. },
  7623. "funding": [
  7624. {
  7625. "url": "https://packagist.com",
  7626. "type": "custom"
  7627. },
  7628. {
  7629. "url": "https://github.com/composer",
  7630. "type": "github"
  7631. },
  7632. {
  7633. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7634. "type": "tidelift"
  7635. }
  7636. ],
  7637. "time": "2023-08-31T09:50:34+00:00"
  7638. },
  7639. {
  7640. "name": "composer/xdebug-handler",
  7641. "version": "3.0.5",
  7642. "source": {
  7643. "type": "git",
  7644. "url": "https://github.com/composer/xdebug-handler.git",
  7645. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7646. },
  7647. "dist": {
  7648. "type": "zip",
  7649. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7650. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7651. "shasum": ""
  7652. },
  7653. "require": {
  7654. "composer/pcre": "^1 || ^2 || ^3",
  7655. "php": "^7.2.5 || ^8.0",
  7656. "psr/log": "^1 || ^2 || ^3"
  7657. },
  7658. "require-dev": {
  7659. "phpstan/phpstan": "^1.0",
  7660. "phpstan/phpstan-strict-rules": "^1.1",
  7661. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7662. },
  7663. "type": "library",
  7664. "autoload": {
  7665. "psr-4": {
  7666. "Composer\\XdebugHandler\\": "src"
  7667. }
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "John Stevenson",
  7676. "email": "john-stevenson@blueyonder.co.uk"
  7677. }
  7678. ],
  7679. "description": "Restarts a process without Xdebug.",
  7680. "keywords": [
  7681. "Xdebug",
  7682. "performance"
  7683. ],
  7684. "support": {
  7685. "irc": "ircs://irc.libera.chat:6697/composer",
  7686. "issues": "https://github.com/composer/xdebug-handler/issues",
  7687. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7688. },
  7689. "funding": [
  7690. {
  7691. "url": "https://packagist.com",
  7692. "type": "custom"
  7693. },
  7694. {
  7695. "url": "https://github.com/composer",
  7696. "type": "github"
  7697. },
  7698. {
  7699. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7700. "type": "tidelift"
  7701. }
  7702. ],
  7703. "time": "2024-05-06T16:37:16+00:00"
  7704. },
  7705. {
  7706. "name": "evenement/evenement",
  7707. "version": "v3.0.2",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/igorw/evenement.git",
  7711. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7716. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7717. "shasum": ""
  7718. },
  7719. "require": {
  7720. "php": ">=7.0"
  7721. },
  7722. "require-dev": {
  7723. "phpunit/phpunit": "^9 || ^6"
  7724. },
  7725. "type": "library",
  7726. "autoload": {
  7727. "psr-4": {
  7728. "Evenement\\": "src/"
  7729. }
  7730. },
  7731. "notification-url": "https://packagist.org/downloads/",
  7732. "license": [
  7733. "MIT"
  7734. ],
  7735. "authors": [
  7736. {
  7737. "name": "Igor Wiedler",
  7738. "email": "igor@wiedler.ch"
  7739. }
  7740. ],
  7741. "description": "Événement is a very simple event dispatching library for PHP",
  7742. "keywords": [
  7743. "event-dispatcher",
  7744. "event-emitter"
  7745. ],
  7746. "support": {
  7747. "issues": "https://github.com/igorw/evenement/issues",
  7748. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7749. },
  7750. "time": "2023-08-08T05:53:35+00:00"
  7751. },
  7752. {
  7753. "name": "fidry/cpu-core-counter",
  7754. "version": "1.1.0",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7758. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7763. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "php": "^7.2 || ^8.0"
  7768. },
  7769. "require-dev": {
  7770. "fidry/makefile": "^0.2.0",
  7771. "fidry/php-cs-fixer-config": "^1.1.2",
  7772. "phpstan/extension-installer": "^1.2.0",
  7773. "phpstan/phpstan": "^1.9.2",
  7774. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7775. "phpstan/phpstan-phpunit": "^1.2.2",
  7776. "phpstan/phpstan-strict-rules": "^1.4.4",
  7777. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7778. "webmozarts/strict-phpunit": "^7.5"
  7779. },
  7780. "type": "library",
  7781. "autoload": {
  7782. "psr-4": {
  7783. "Fidry\\CpuCoreCounter\\": "src/"
  7784. }
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "MIT"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Théo FIDRY",
  7793. "email": "theo.fidry@gmail.com"
  7794. }
  7795. ],
  7796. "description": "Tiny utility to get the number of CPU cores.",
  7797. "keywords": [
  7798. "CPU",
  7799. "core"
  7800. ],
  7801. "support": {
  7802. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7803. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7804. },
  7805. "funding": [
  7806. {
  7807. "url": "https://github.com/theofidry",
  7808. "type": "github"
  7809. }
  7810. ],
  7811. "time": "2024-02-07T09:43:46+00:00"
  7812. },
  7813. {
  7814. "name": "friendsofphp/php-cs-fixer",
  7815. "version": "v3.58.1",
  7816. "source": {
  7817. "type": "git",
  7818. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7819. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7820. },
  7821. "dist": {
  7822. "type": "zip",
  7823. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7824. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7825. "shasum": ""
  7826. },
  7827. "require": {
  7828. "clue/ndjson-react": "^1.0",
  7829. "composer/semver": "^3.4",
  7830. "composer/xdebug-handler": "^3.0.3",
  7831. "ext-filter": "*",
  7832. "ext-json": "*",
  7833. "ext-tokenizer": "*",
  7834. "fidry/cpu-core-counter": "^1.0",
  7835. "php": "^7.4 || ^8.0",
  7836. "react/child-process": "^0.6.5",
  7837. "react/event-loop": "^1.0",
  7838. "react/promise": "^2.0 || ^3.0",
  7839. "react/socket": "^1.0",
  7840. "react/stream": "^1.0",
  7841. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7842. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7843. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7844. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7845. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7846. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7847. "symfony/polyfill-mbstring": "^1.28",
  7848. "symfony/polyfill-php80": "^1.28",
  7849. "symfony/polyfill-php81": "^1.28",
  7850. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7851. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7852. },
  7853. "require-dev": {
  7854. "facile-it/paraunit": "^1.3 || ^2.0",
  7855. "infection/infection": "^0.27.11",
  7856. "justinrainbow/json-schema": "^5.2",
  7857. "keradus/cli-executor": "^2.1",
  7858. "mikey179/vfsstream": "^1.6.11",
  7859. "php-coveralls/php-coveralls": "^2.7",
  7860. "php-cs-fixer/accessible-object": "^1.1",
  7861. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7862. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7863. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7864. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7865. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7866. },
  7867. "suggest": {
  7868. "ext-dom": "For handling output formats in XML",
  7869. "ext-mbstring": "For handling non-UTF8 characters."
  7870. },
  7871. "bin": [
  7872. "php-cs-fixer"
  7873. ],
  7874. "type": "application",
  7875. "autoload": {
  7876. "psr-4": {
  7877. "PhpCsFixer\\": "src/"
  7878. }
  7879. },
  7880. "notification-url": "https://packagist.org/downloads/",
  7881. "license": [
  7882. "MIT"
  7883. ],
  7884. "authors": [
  7885. {
  7886. "name": "Fabien Potencier",
  7887. "email": "fabien@symfony.com"
  7888. },
  7889. {
  7890. "name": "Dariusz Rumiński",
  7891. "email": "dariusz.ruminski@gmail.com"
  7892. }
  7893. ],
  7894. "description": "A tool to automatically fix PHP code style",
  7895. "keywords": [
  7896. "Static code analysis",
  7897. "fixer",
  7898. "standards",
  7899. "static analysis"
  7900. ],
  7901. "support": {
  7902. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7903. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7904. },
  7905. "funding": [
  7906. {
  7907. "url": "https://github.com/keradus",
  7908. "type": "github"
  7909. }
  7910. ],
  7911. "time": "2024-05-29T16:39:07+00:00"
  7912. },
  7913. {
  7914. "name": "hamcrest/hamcrest-php",
  7915. "version": "v2.0.1",
  7916. "source": {
  7917. "type": "git",
  7918. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7919. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7920. },
  7921. "dist": {
  7922. "type": "zip",
  7923. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7924. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7925. "shasum": ""
  7926. },
  7927. "require": {
  7928. "php": "^5.3|^7.0|^8.0"
  7929. },
  7930. "replace": {
  7931. "cordoval/hamcrest-php": "*",
  7932. "davedevelopment/hamcrest-php": "*",
  7933. "kodova/hamcrest-php": "*"
  7934. },
  7935. "require-dev": {
  7936. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7937. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7938. },
  7939. "type": "library",
  7940. "extra": {
  7941. "branch-alias": {
  7942. "dev-master": "2.1-dev"
  7943. }
  7944. },
  7945. "autoload": {
  7946. "classmap": [
  7947. "hamcrest"
  7948. ]
  7949. },
  7950. "notification-url": "https://packagist.org/downloads/",
  7951. "license": [
  7952. "BSD-3-Clause"
  7953. ],
  7954. "description": "This is the PHP port of Hamcrest Matchers",
  7955. "keywords": [
  7956. "test"
  7957. ],
  7958. "support": {
  7959. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7960. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7961. },
  7962. "time": "2020-07-09T08:09:16+00:00"
  7963. },
  7964. {
  7965. "name": "hyperf/devtool",
  7966. "version": "v3.1.19",
  7967. "source": {
  7968. "type": "git",
  7969. "url": "https://github.com/hyperf/devtool.git",
  7970. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7971. },
  7972. "dist": {
  7973. "type": "zip",
  7974. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7975. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7976. "shasum": ""
  7977. },
  7978. "require": {
  7979. "hyperf/code-parser": "~3.1.0",
  7980. "hyperf/command": "~3.1.0",
  7981. "hyperf/contract": "~3.1.0",
  7982. "hyperf/di": "~3.1.0",
  7983. "hyperf/support": "~3.1.0",
  7984. "hyperf/utils": "~3.1.0",
  7985. "php": ">=8.1"
  7986. },
  7987. "type": "library",
  7988. "extra": {
  7989. "branch-alias": {
  7990. "dev-master": "3.1-dev"
  7991. },
  7992. "hyperf": {
  7993. "config": "Hyperf\\Devtool\\ConfigProvider"
  7994. }
  7995. },
  7996. "autoload": {
  7997. "psr-4": {
  7998. "Hyperf\\Devtool\\": "src/"
  7999. }
  8000. },
  8001. "notification-url": "https://packagist.org/downloads/",
  8002. "license": [
  8003. "MIT"
  8004. ],
  8005. "description": "A Devtool for Hyperf.",
  8006. "homepage": "https://hyperf.io",
  8007. "keywords": [
  8008. "dev",
  8009. "devtool",
  8010. "hyperf",
  8011. "php",
  8012. "swoole"
  8013. ],
  8014. "support": {
  8015. "docs": "https://hyperf.wiki",
  8016. "issues": "https://github.com/hyperf/hyperf/issues",
  8017. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8018. "source": "https://github.com/hyperf/hyperf"
  8019. },
  8020. "funding": [
  8021. {
  8022. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8023. "type": "custom"
  8024. },
  8025. {
  8026. "url": "https://opencollective.com/hyperf",
  8027. "type": "open_collective"
  8028. }
  8029. ],
  8030. "time": "2024-04-13T06:53:08+00:00"
  8031. },
  8032. {
  8033. "name": "hyperf/testing",
  8034. "version": "v3.1.21",
  8035. "source": {
  8036. "type": "git",
  8037. "url": "https://github.com/hyperf/testing.git",
  8038. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  8039. },
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8043. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8044. "shasum": ""
  8045. },
  8046. "require": {
  8047. "hyperf/codec": "~3.1.0",
  8048. "hyperf/collection": "~3.1.0",
  8049. "hyperf/contract": "~3.1.0",
  8050. "hyperf/coroutine": "~3.1.0",
  8051. "hyperf/http-message": "~3.1.0",
  8052. "hyperf/http-server": "~3.1.0",
  8053. "hyperf/support": "~3.1.0",
  8054. "hyperf/utils": "~3.1.0",
  8055. "php": ">=8.1",
  8056. "phpunit/phpunit": "^10.0",
  8057. "psr/container": "^1.0|^2.0",
  8058. "symfony/http-foundation": "^5.4|^6.0"
  8059. },
  8060. "suggest": {
  8061. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8062. },
  8063. "bin": [
  8064. "co-phpunit"
  8065. ],
  8066. "type": "library",
  8067. "extra": {
  8068. "branch-alias": {
  8069. "dev-master": "3.1-dev"
  8070. }
  8071. },
  8072. "autoload": {
  8073. "psr-4": {
  8074. "Hyperf\\Testing\\": "src/"
  8075. }
  8076. },
  8077. "notification-url": "https://packagist.org/downloads/",
  8078. "license": [
  8079. "MIT"
  8080. ],
  8081. "description": "Testing for hyperf",
  8082. "keywords": [
  8083. "dev",
  8084. "php",
  8085. "swoole",
  8086. "testing"
  8087. ],
  8088. "support": {
  8089. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  8090. },
  8091. "funding": [
  8092. {
  8093. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8094. "type": "custom"
  8095. },
  8096. {
  8097. "url": "https://opencollective.com/hyperf",
  8098. "type": "open_collective"
  8099. }
  8100. ],
  8101. "time": "2024-05-07T05:34:51+00:00"
  8102. },
  8103. {
  8104. "name": "hyperf/watcher",
  8105. "version": "v3.1.21",
  8106. "source": {
  8107. "type": "git",
  8108. "url": "https://github.com/hyperf/watcher.git",
  8109. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  8110. },
  8111. "dist": {
  8112. "type": "zip",
  8113. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8114. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8115. "shasum": ""
  8116. },
  8117. "require": {
  8118. "ext-posix": "*",
  8119. "hyperf/codec": "~3.1.0",
  8120. "hyperf/command": "~3.1.0",
  8121. "hyperf/di": "~3.1.0",
  8122. "hyperf/framework": "~3.1.0",
  8123. "hyperf/support": "~3.1.0",
  8124. "php": ">=8.1"
  8125. },
  8126. "type": "library",
  8127. "extra": {
  8128. "branch-alias": {
  8129. "dev-master": "3.1-dev"
  8130. },
  8131. "hyperf": {
  8132. "config": "Hyperf\\Watcher\\ConfigProvider"
  8133. }
  8134. },
  8135. "autoload": {
  8136. "files": [
  8137. "src/Functions.php"
  8138. ],
  8139. "psr-4": {
  8140. "Hyperf\\Watcher\\": "src/"
  8141. }
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "MIT"
  8146. ],
  8147. "description": "Hot reload watcher for Hyperf",
  8148. "keywords": [
  8149. "dev",
  8150. "hyperf",
  8151. "php"
  8152. ],
  8153. "support": {
  8154. "issues": "https://github.com/hyperf/watcher/issues",
  8155. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  8156. },
  8157. "funding": [
  8158. {
  8159. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8160. "type": "custom"
  8161. },
  8162. {
  8163. "url": "https://opencollective.com/hyperf",
  8164. "type": "open_collective"
  8165. }
  8166. ],
  8167. "time": "2024-05-09T13:40:44+00:00"
  8168. },
  8169. {
  8170. "name": "mockery/mockery",
  8171. "version": "1.6.12",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/mockery/mockery.git",
  8175. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8180. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "hamcrest/hamcrest-php": "^2.0.1",
  8185. "lib-pcre": ">=7.0",
  8186. "php": ">=7.3"
  8187. },
  8188. "conflict": {
  8189. "phpunit/phpunit": "<8.0"
  8190. },
  8191. "require-dev": {
  8192. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8193. "symplify/easy-coding-standard": "^12.1.14"
  8194. },
  8195. "type": "library",
  8196. "autoload": {
  8197. "files": [
  8198. "library/helpers.php",
  8199. "library/Mockery.php"
  8200. ],
  8201. "psr-4": {
  8202. "Mockery\\": "library/Mockery"
  8203. }
  8204. },
  8205. "notification-url": "https://packagist.org/downloads/",
  8206. "license": [
  8207. "BSD-3-Clause"
  8208. ],
  8209. "authors": [
  8210. {
  8211. "name": "Pádraic Brady",
  8212. "email": "padraic.brady@gmail.com",
  8213. "homepage": "https://github.com/padraic",
  8214. "role": "Author"
  8215. },
  8216. {
  8217. "name": "Dave Marshall",
  8218. "email": "dave.marshall@atstsolutions.co.uk",
  8219. "homepage": "https://davedevelopment.co.uk",
  8220. "role": "Developer"
  8221. },
  8222. {
  8223. "name": "Nathanael Esayeas",
  8224. "email": "nathanael.esayeas@protonmail.com",
  8225. "homepage": "https://github.com/ghostwriter",
  8226. "role": "Lead Developer"
  8227. }
  8228. ],
  8229. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8230. "homepage": "https://github.com/mockery/mockery",
  8231. "keywords": [
  8232. "BDD",
  8233. "TDD",
  8234. "library",
  8235. "mock",
  8236. "mock objects",
  8237. "mockery",
  8238. "stub",
  8239. "test",
  8240. "test double",
  8241. "testing"
  8242. ],
  8243. "support": {
  8244. "docs": "https://docs.mockery.io/",
  8245. "issues": "https://github.com/mockery/mockery/issues",
  8246. "rss": "https://github.com/mockery/mockery/releases.atom",
  8247. "security": "https://github.com/mockery/mockery/security/advisories",
  8248. "source": "https://github.com/mockery/mockery"
  8249. },
  8250. "time": "2024-05-16T03:13:13+00:00"
  8251. },
  8252. {
  8253. "name": "myclabs/deep-copy",
  8254. "version": "1.11.1",
  8255. "source": {
  8256. "type": "git",
  8257. "url": "https://github.com/myclabs/DeepCopy.git",
  8258. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8259. },
  8260. "dist": {
  8261. "type": "zip",
  8262. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8263. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8264. "shasum": ""
  8265. },
  8266. "require": {
  8267. "php": "^7.1 || ^8.0"
  8268. },
  8269. "conflict": {
  8270. "doctrine/collections": "<1.6.8",
  8271. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8272. },
  8273. "require-dev": {
  8274. "doctrine/collections": "^1.6.8",
  8275. "doctrine/common": "^2.13.3 || ^3.2.2",
  8276. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8277. },
  8278. "type": "library",
  8279. "autoload": {
  8280. "files": [
  8281. "src/DeepCopy/deep_copy.php"
  8282. ],
  8283. "psr-4": {
  8284. "DeepCopy\\": "src/DeepCopy/"
  8285. }
  8286. },
  8287. "notification-url": "https://packagist.org/downloads/",
  8288. "license": [
  8289. "MIT"
  8290. ],
  8291. "description": "Create deep copies (clones) of your objects",
  8292. "keywords": [
  8293. "clone",
  8294. "copy",
  8295. "duplicate",
  8296. "object",
  8297. "object graph"
  8298. ],
  8299. "support": {
  8300. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8301. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8302. },
  8303. "funding": [
  8304. {
  8305. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8306. "type": "tidelift"
  8307. }
  8308. ],
  8309. "time": "2023-03-08T13:26:56+00:00"
  8310. },
  8311. {
  8312. "name": "phar-io/manifest",
  8313. "version": "2.0.4",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/phar-io/manifest.git",
  8317. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8322. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8323. "shasum": ""
  8324. },
  8325. "require": {
  8326. "ext-dom": "*",
  8327. "ext-libxml": "*",
  8328. "ext-phar": "*",
  8329. "ext-xmlwriter": "*",
  8330. "phar-io/version": "^3.0.1",
  8331. "php": "^7.2 || ^8.0"
  8332. },
  8333. "type": "library",
  8334. "extra": {
  8335. "branch-alias": {
  8336. "dev-master": "2.0.x-dev"
  8337. }
  8338. },
  8339. "autoload": {
  8340. "classmap": [
  8341. "src/"
  8342. ]
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "BSD-3-Clause"
  8347. ],
  8348. "authors": [
  8349. {
  8350. "name": "Arne Blankerts",
  8351. "email": "arne@blankerts.de",
  8352. "role": "Developer"
  8353. },
  8354. {
  8355. "name": "Sebastian Heuer",
  8356. "email": "sebastian@phpeople.de",
  8357. "role": "Developer"
  8358. },
  8359. {
  8360. "name": "Sebastian Bergmann",
  8361. "email": "sebastian@phpunit.de",
  8362. "role": "Developer"
  8363. }
  8364. ],
  8365. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8366. "support": {
  8367. "issues": "https://github.com/phar-io/manifest/issues",
  8368. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8369. },
  8370. "funding": [
  8371. {
  8372. "url": "https://github.com/theseer",
  8373. "type": "github"
  8374. }
  8375. ],
  8376. "time": "2024-03-03T12:33:53+00:00"
  8377. },
  8378. {
  8379. "name": "phar-io/version",
  8380. "version": "3.2.1",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/phar-io/version.git",
  8384. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8389. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8390. "shasum": ""
  8391. },
  8392. "require": {
  8393. "php": "^7.2 || ^8.0"
  8394. },
  8395. "type": "library",
  8396. "autoload": {
  8397. "classmap": [
  8398. "src/"
  8399. ]
  8400. },
  8401. "notification-url": "https://packagist.org/downloads/",
  8402. "license": [
  8403. "BSD-3-Clause"
  8404. ],
  8405. "authors": [
  8406. {
  8407. "name": "Arne Blankerts",
  8408. "email": "arne@blankerts.de",
  8409. "role": "Developer"
  8410. },
  8411. {
  8412. "name": "Sebastian Heuer",
  8413. "email": "sebastian@phpeople.de",
  8414. "role": "Developer"
  8415. },
  8416. {
  8417. "name": "Sebastian Bergmann",
  8418. "email": "sebastian@phpunit.de",
  8419. "role": "Developer"
  8420. }
  8421. ],
  8422. "description": "Library for handling version information and constraints",
  8423. "support": {
  8424. "issues": "https://github.com/phar-io/version/issues",
  8425. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8426. },
  8427. "time": "2022-02-21T01:04:05+00:00"
  8428. },
  8429. {
  8430. "name": "phpstan/phpstan",
  8431. "version": "1.11.3",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/phpstan/phpstan.git",
  8435. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8440. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "php": "^7.2|^8.0"
  8445. },
  8446. "conflict": {
  8447. "phpstan/phpstan-shim": "*"
  8448. },
  8449. "bin": [
  8450. "phpstan",
  8451. "phpstan.phar"
  8452. ],
  8453. "type": "library",
  8454. "autoload": {
  8455. "files": [
  8456. "bootstrap.php"
  8457. ]
  8458. },
  8459. "notification-url": "https://packagist.org/downloads/",
  8460. "license": [
  8461. "MIT"
  8462. ],
  8463. "description": "PHPStan - PHP Static Analysis Tool",
  8464. "keywords": [
  8465. "dev",
  8466. "static analysis"
  8467. ],
  8468. "support": {
  8469. "docs": "https://phpstan.org/user-guide/getting-started",
  8470. "forum": "https://github.com/phpstan/phpstan/discussions",
  8471. "issues": "https://github.com/phpstan/phpstan/issues",
  8472. "security": "https://github.com/phpstan/phpstan/security/policy",
  8473. "source": "https://github.com/phpstan/phpstan-src"
  8474. },
  8475. "funding": [
  8476. {
  8477. "url": "https://github.com/ondrejmirtes",
  8478. "type": "github"
  8479. },
  8480. {
  8481. "url": "https://github.com/phpstan",
  8482. "type": "github"
  8483. }
  8484. ],
  8485. "time": "2024-05-31T13:53:37+00:00"
  8486. },
  8487. {
  8488. "name": "phpunit/php-code-coverage",
  8489. "version": "10.1.14",
  8490. "source": {
  8491. "type": "git",
  8492. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8493. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8494. },
  8495. "dist": {
  8496. "type": "zip",
  8497. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8498. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8499. "shasum": ""
  8500. },
  8501. "require": {
  8502. "ext-dom": "*",
  8503. "ext-libxml": "*",
  8504. "ext-xmlwriter": "*",
  8505. "nikic/php-parser": "^4.18 || ^5.0",
  8506. "php": ">=8.1",
  8507. "phpunit/php-file-iterator": "^4.0",
  8508. "phpunit/php-text-template": "^3.0",
  8509. "sebastian/code-unit-reverse-lookup": "^3.0",
  8510. "sebastian/complexity": "^3.0",
  8511. "sebastian/environment": "^6.0",
  8512. "sebastian/lines-of-code": "^2.0",
  8513. "sebastian/version": "^4.0",
  8514. "theseer/tokenizer": "^1.2.0"
  8515. },
  8516. "require-dev": {
  8517. "phpunit/phpunit": "^10.1"
  8518. },
  8519. "suggest": {
  8520. "ext-pcov": "PHP extension that provides line coverage",
  8521. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8522. },
  8523. "type": "library",
  8524. "extra": {
  8525. "branch-alias": {
  8526. "dev-main": "10.1-dev"
  8527. }
  8528. },
  8529. "autoload": {
  8530. "classmap": [
  8531. "src/"
  8532. ]
  8533. },
  8534. "notification-url": "https://packagist.org/downloads/",
  8535. "license": [
  8536. "BSD-3-Clause"
  8537. ],
  8538. "authors": [
  8539. {
  8540. "name": "Sebastian Bergmann",
  8541. "email": "sebastian@phpunit.de",
  8542. "role": "lead"
  8543. }
  8544. ],
  8545. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8546. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8547. "keywords": [
  8548. "coverage",
  8549. "testing",
  8550. "xunit"
  8551. ],
  8552. "support": {
  8553. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8554. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8555. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8556. },
  8557. "funding": [
  8558. {
  8559. "url": "https://github.com/sebastianbergmann",
  8560. "type": "github"
  8561. }
  8562. ],
  8563. "time": "2024-03-12T15:33:41+00:00"
  8564. },
  8565. {
  8566. "name": "phpunit/php-file-iterator",
  8567. "version": "4.1.0",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8571. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8576. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8577. "shasum": ""
  8578. },
  8579. "require": {
  8580. "php": ">=8.1"
  8581. },
  8582. "require-dev": {
  8583. "phpunit/phpunit": "^10.0"
  8584. },
  8585. "type": "library",
  8586. "extra": {
  8587. "branch-alias": {
  8588. "dev-main": "4.0-dev"
  8589. }
  8590. },
  8591. "autoload": {
  8592. "classmap": [
  8593. "src/"
  8594. ]
  8595. },
  8596. "notification-url": "https://packagist.org/downloads/",
  8597. "license": [
  8598. "BSD-3-Clause"
  8599. ],
  8600. "authors": [
  8601. {
  8602. "name": "Sebastian Bergmann",
  8603. "email": "sebastian@phpunit.de",
  8604. "role": "lead"
  8605. }
  8606. ],
  8607. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8608. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8609. "keywords": [
  8610. "filesystem",
  8611. "iterator"
  8612. ],
  8613. "support": {
  8614. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8615. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8616. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8617. },
  8618. "funding": [
  8619. {
  8620. "url": "https://github.com/sebastianbergmann",
  8621. "type": "github"
  8622. }
  8623. ],
  8624. "time": "2023-08-31T06:24:48+00:00"
  8625. },
  8626. {
  8627. "name": "phpunit/php-invoker",
  8628. "version": "4.0.0",
  8629. "source": {
  8630. "type": "git",
  8631. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8632. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8633. },
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8637. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8638. "shasum": ""
  8639. },
  8640. "require": {
  8641. "php": ">=8.1"
  8642. },
  8643. "require-dev": {
  8644. "ext-pcntl": "*",
  8645. "phpunit/phpunit": "^10.0"
  8646. },
  8647. "suggest": {
  8648. "ext-pcntl": "*"
  8649. },
  8650. "type": "library",
  8651. "extra": {
  8652. "branch-alias": {
  8653. "dev-main": "4.0-dev"
  8654. }
  8655. },
  8656. "autoload": {
  8657. "classmap": [
  8658. "src/"
  8659. ]
  8660. },
  8661. "notification-url": "https://packagist.org/downloads/",
  8662. "license": [
  8663. "BSD-3-Clause"
  8664. ],
  8665. "authors": [
  8666. {
  8667. "name": "Sebastian Bergmann",
  8668. "email": "sebastian@phpunit.de",
  8669. "role": "lead"
  8670. }
  8671. ],
  8672. "description": "Invoke callables with a timeout",
  8673. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8674. "keywords": [
  8675. "process"
  8676. ],
  8677. "support": {
  8678. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8679. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8680. },
  8681. "funding": [
  8682. {
  8683. "url": "https://github.com/sebastianbergmann",
  8684. "type": "github"
  8685. }
  8686. ],
  8687. "time": "2023-02-03T06:56:09+00:00"
  8688. },
  8689. {
  8690. "name": "phpunit/php-text-template",
  8691. "version": "3.0.1",
  8692. "source": {
  8693. "type": "git",
  8694. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8695. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8696. },
  8697. "dist": {
  8698. "type": "zip",
  8699. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8700. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8701. "shasum": ""
  8702. },
  8703. "require": {
  8704. "php": ">=8.1"
  8705. },
  8706. "require-dev": {
  8707. "phpunit/phpunit": "^10.0"
  8708. },
  8709. "type": "library",
  8710. "extra": {
  8711. "branch-alias": {
  8712. "dev-main": "3.0-dev"
  8713. }
  8714. },
  8715. "autoload": {
  8716. "classmap": [
  8717. "src/"
  8718. ]
  8719. },
  8720. "notification-url": "https://packagist.org/downloads/",
  8721. "license": [
  8722. "BSD-3-Clause"
  8723. ],
  8724. "authors": [
  8725. {
  8726. "name": "Sebastian Bergmann",
  8727. "email": "sebastian@phpunit.de",
  8728. "role": "lead"
  8729. }
  8730. ],
  8731. "description": "Simple template engine.",
  8732. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8733. "keywords": [
  8734. "template"
  8735. ],
  8736. "support": {
  8737. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8738. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8739. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8740. },
  8741. "funding": [
  8742. {
  8743. "url": "https://github.com/sebastianbergmann",
  8744. "type": "github"
  8745. }
  8746. ],
  8747. "time": "2023-08-31T14:07:24+00:00"
  8748. },
  8749. {
  8750. "name": "phpunit/php-timer",
  8751. "version": "6.0.0",
  8752. "source": {
  8753. "type": "git",
  8754. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8755. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8756. },
  8757. "dist": {
  8758. "type": "zip",
  8759. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8760. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8761. "shasum": ""
  8762. },
  8763. "require": {
  8764. "php": ">=8.1"
  8765. },
  8766. "require-dev": {
  8767. "phpunit/phpunit": "^10.0"
  8768. },
  8769. "type": "library",
  8770. "extra": {
  8771. "branch-alias": {
  8772. "dev-main": "6.0-dev"
  8773. }
  8774. },
  8775. "autoload": {
  8776. "classmap": [
  8777. "src/"
  8778. ]
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "BSD-3-Clause"
  8783. ],
  8784. "authors": [
  8785. {
  8786. "name": "Sebastian Bergmann",
  8787. "email": "sebastian@phpunit.de",
  8788. "role": "lead"
  8789. }
  8790. ],
  8791. "description": "Utility class for timing",
  8792. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8793. "keywords": [
  8794. "timer"
  8795. ],
  8796. "support": {
  8797. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8798. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8799. },
  8800. "funding": [
  8801. {
  8802. "url": "https://github.com/sebastianbergmann",
  8803. "type": "github"
  8804. }
  8805. ],
  8806. "time": "2023-02-03T06:57:52+00:00"
  8807. },
  8808. {
  8809. "name": "phpunit/phpunit",
  8810. "version": "10.5.20",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8814. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8819. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "ext-dom": "*",
  8824. "ext-json": "*",
  8825. "ext-libxml": "*",
  8826. "ext-mbstring": "*",
  8827. "ext-xml": "*",
  8828. "ext-xmlwriter": "*",
  8829. "myclabs/deep-copy": "^1.10.1",
  8830. "phar-io/manifest": "^2.0.3",
  8831. "phar-io/version": "^3.0.2",
  8832. "php": ">=8.1",
  8833. "phpunit/php-code-coverage": "^10.1.5",
  8834. "phpunit/php-file-iterator": "^4.0",
  8835. "phpunit/php-invoker": "^4.0",
  8836. "phpunit/php-text-template": "^3.0",
  8837. "phpunit/php-timer": "^6.0",
  8838. "sebastian/cli-parser": "^2.0",
  8839. "sebastian/code-unit": "^2.0",
  8840. "sebastian/comparator": "^5.0",
  8841. "sebastian/diff": "^5.0",
  8842. "sebastian/environment": "^6.0",
  8843. "sebastian/exporter": "^5.1",
  8844. "sebastian/global-state": "^6.0.1",
  8845. "sebastian/object-enumerator": "^5.0",
  8846. "sebastian/recursion-context": "^5.0",
  8847. "sebastian/type": "^4.0",
  8848. "sebastian/version": "^4.0"
  8849. },
  8850. "suggest": {
  8851. "ext-soap": "To be able to generate mocks based on WSDL files"
  8852. },
  8853. "bin": [
  8854. "phpunit"
  8855. ],
  8856. "type": "library",
  8857. "extra": {
  8858. "branch-alias": {
  8859. "dev-main": "10.5-dev"
  8860. }
  8861. },
  8862. "autoload": {
  8863. "files": [
  8864. "src/Framework/Assert/Functions.php"
  8865. ],
  8866. "classmap": [
  8867. "src/"
  8868. ]
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "BSD-3-Clause"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Sebastian Bergmann",
  8877. "email": "sebastian@phpunit.de",
  8878. "role": "lead"
  8879. }
  8880. ],
  8881. "description": "The PHP Unit Testing framework.",
  8882. "homepage": "https://phpunit.de/",
  8883. "keywords": [
  8884. "phpunit",
  8885. "testing",
  8886. "xunit"
  8887. ],
  8888. "support": {
  8889. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8890. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8891. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8892. },
  8893. "funding": [
  8894. {
  8895. "url": "https://phpunit.de/sponsors.html",
  8896. "type": "custom"
  8897. },
  8898. {
  8899. "url": "https://github.com/sebastianbergmann",
  8900. "type": "github"
  8901. },
  8902. {
  8903. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8904. "type": "tidelift"
  8905. }
  8906. ],
  8907. "time": "2024-04-24T06:32:35+00:00"
  8908. },
  8909. {
  8910. "name": "react/cache",
  8911. "version": "v1.2.0",
  8912. "source": {
  8913. "type": "git",
  8914. "url": "https://github.com/reactphp/cache.git",
  8915. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8916. },
  8917. "dist": {
  8918. "type": "zip",
  8919. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8920. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8921. "shasum": ""
  8922. },
  8923. "require": {
  8924. "php": ">=5.3.0",
  8925. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8926. },
  8927. "require-dev": {
  8928. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8929. },
  8930. "type": "library",
  8931. "autoload": {
  8932. "psr-4": {
  8933. "React\\Cache\\": "src/"
  8934. }
  8935. },
  8936. "notification-url": "https://packagist.org/downloads/",
  8937. "license": [
  8938. "MIT"
  8939. ],
  8940. "authors": [
  8941. {
  8942. "name": "Christian Lück",
  8943. "email": "christian@clue.engineering",
  8944. "homepage": "https://clue.engineering/"
  8945. },
  8946. {
  8947. "name": "Cees-Jan Kiewiet",
  8948. "email": "reactphp@ceesjankiewiet.nl",
  8949. "homepage": "https://wyrihaximus.net/"
  8950. },
  8951. {
  8952. "name": "Jan Sorgalla",
  8953. "email": "jsorgalla@gmail.com",
  8954. "homepage": "https://sorgalla.com/"
  8955. },
  8956. {
  8957. "name": "Chris Boden",
  8958. "email": "cboden@gmail.com",
  8959. "homepage": "https://cboden.dev/"
  8960. }
  8961. ],
  8962. "description": "Async, Promise-based cache interface for ReactPHP",
  8963. "keywords": [
  8964. "cache",
  8965. "caching",
  8966. "promise",
  8967. "reactphp"
  8968. ],
  8969. "support": {
  8970. "issues": "https://github.com/reactphp/cache/issues",
  8971. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8972. },
  8973. "funding": [
  8974. {
  8975. "url": "https://opencollective.com/reactphp",
  8976. "type": "open_collective"
  8977. }
  8978. ],
  8979. "time": "2022-11-30T15:59:55+00:00"
  8980. },
  8981. {
  8982. "name": "react/child-process",
  8983. "version": "v0.6.5",
  8984. "source": {
  8985. "type": "git",
  8986. "url": "https://github.com/reactphp/child-process.git",
  8987. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8988. },
  8989. "dist": {
  8990. "type": "zip",
  8991. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8992. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8993. "shasum": ""
  8994. },
  8995. "require": {
  8996. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8997. "php": ">=5.3.0",
  8998. "react/event-loop": "^1.2",
  8999. "react/stream": "^1.2"
  9000. },
  9001. "require-dev": {
  9002. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9003. "react/socket": "^1.8",
  9004. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9005. },
  9006. "type": "library",
  9007. "autoload": {
  9008. "psr-4": {
  9009. "React\\ChildProcess\\": "src"
  9010. }
  9011. },
  9012. "notification-url": "https://packagist.org/downloads/",
  9013. "license": [
  9014. "MIT"
  9015. ],
  9016. "authors": [
  9017. {
  9018. "name": "Christian Lück",
  9019. "email": "christian@clue.engineering",
  9020. "homepage": "https://clue.engineering/"
  9021. },
  9022. {
  9023. "name": "Cees-Jan Kiewiet",
  9024. "email": "reactphp@ceesjankiewiet.nl",
  9025. "homepage": "https://wyrihaximus.net/"
  9026. },
  9027. {
  9028. "name": "Jan Sorgalla",
  9029. "email": "jsorgalla@gmail.com",
  9030. "homepage": "https://sorgalla.com/"
  9031. },
  9032. {
  9033. "name": "Chris Boden",
  9034. "email": "cboden@gmail.com",
  9035. "homepage": "https://cboden.dev/"
  9036. }
  9037. ],
  9038. "description": "Event-driven library for executing child processes with ReactPHP.",
  9039. "keywords": [
  9040. "event-driven",
  9041. "process",
  9042. "reactphp"
  9043. ],
  9044. "support": {
  9045. "issues": "https://github.com/reactphp/child-process/issues",
  9046. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9047. },
  9048. "funding": [
  9049. {
  9050. "url": "https://github.com/WyriHaximus",
  9051. "type": "github"
  9052. },
  9053. {
  9054. "url": "https://github.com/clue",
  9055. "type": "github"
  9056. }
  9057. ],
  9058. "time": "2022-09-16T13:41:56+00:00"
  9059. },
  9060. {
  9061. "name": "react/dns",
  9062. "version": "v1.12.0",
  9063. "source": {
  9064. "type": "git",
  9065. "url": "https://github.com/reactphp/dns.git",
  9066. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9067. },
  9068. "dist": {
  9069. "type": "zip",
  9070. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9071. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9072. "shasum": ""
  9073. },
  9074. "require": {
  9075. "php": ">=5.3.0",
  9076. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9077. "react/event-loop": "^1.2",
  9078. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9079. },
  9080. "require-dev": {
  9081. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9082. "react/async": "^4 || ^3 || ^2",
  9083. "react/promise-timer": "^1.9"
  9084. },
  9085. "type": "library",
  9086. "autoload": {
  9087. "psr-4": {
  9088. "React\\Dns\\": "src/"
  9089. }
  9090. },
  9091. "notification-url": "https://packagist.org/downloads/",
  9092. "license": [
  9093. "MIT"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "Christian Lück",
  9098. "email": "christian@clue.engineering",
  9099. "homepage": "https://clue.engineering/"
  9100. },
  9101. {
  9102. "name": "Cees-Jan Kiewiet",
  9103. "email": "reactphp@ceesjankiewiet.nl",
  9104. "homepage": "https://wyrihaximus.net/"
  9105. },
  9106. {
  9107. "name": "Jan Sorgalla",
  9108. "email": "jsorgalla@gmail.com",
  9109. "homepage": "https://sorgalla.com/"
  9110. },
  9111. {
  9112. "name": "Chris Boden",
  9113. "email": "cboden@gmail.com",
  9114. "homepage": "https://cboden.dev/"
  9115. }
  9116. ],
  9117. "description": "Async DNS resolver for ReactPHP",
  9118. "keywords": [
  9119. "async",
  9120. "dns",
  9121. "dns-resolver",
  9122. "reactphp"
  9123. ],
  9124. "support": {
  9125. "issues": "https://github.com/reactphp/dns/issues",
  9126. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9127. },
  9128. "funding": [
  9129. {
  9130. "url": "https://opencollective.com/reactphp",
  9131. "type": "open_collective"
  9132. }
  9133. ],
  9134. "time": "2023-11-29T12:41:06+00:00"
  9135. },
  9136. {
  9137. "name": "react/event-loop",
  9138. "version": "v1.5.0",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/reactphp/event-loop.git",
  9142. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9147. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "php": ">=5.3.0"
  9152. },
  9153. "require-dev": {
  9154. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9155. },
  9156. "suggest": {
  9157. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9158. },
  9159. "type": "library",
  9160. "autoload": {
  9161. "psr-4": {
  9162. "React\\EventLoop\\": "src/"
  9163. }
  9164. },
  9165. "notification-url": "https://packagist.org/downloads/",
  9166. "license": [
  9167. "MIT"
  9168. ],
  9169. "authors": [
  9170. {
  9171. "name": "Christian Lück",
  9172. "email": "christian@clue.engineering",
  9173. "homepage": "https://clue.engineering/"
  9174. },
  9175. {
  9176. "name": "Cees-Jan Kiewiet",
  9177. "email": "reactphp@ceesjankiewiet.nl",
  9178. "homepage": "https://wyrihaximus.net/"
  9179. },
  9180. {
  9181. "name": "Jan Sorgalla",
  9182. "email": "jsorgalla@gmail.com",
  9183. "homepage": "https://sorgalla.com/"
  9184. },
  9185. {
  9186. "name": "Chris Boden",
  9187. "email": "cboden@gmail.com",
  9188. "homepage": "https://cboden.dev/"
  9189. }
  9190. ],
  9191. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9192. "keywords": [
  9193. "asynchronous",
  9194. "event-loop"
  9195. ],
  9196. "support": {
  9197. "issues": "https://github.com/reactphp/event-loop/issues",
  9198. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9199. },
  9200. "funding": [
  9201. {
  9202. "url": "https://opencollective.com/reactphp",
  9203. "type": "open_collective"
  9204. }
  9205. ],
  9206. "time": "2023-11-13T13:48:05+00:00"
  9207. },
  9208. {
  9209. "name": "react/promise",
  9210. "version": "v3.2.0",
  9211. "source": {
  9212. "type": "git",
  9213. "url": "https://github.com/reactphp/promise.git",
  9214. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9215. },
  9216. "dist": {
  9217. "type": "zip",
  9218. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9219. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9220. "shasum": ""
  9221. },
  9222. "require": {
  9223. "php": ">=7.1.0"
  9224. },
  9225. "require-dev": {
  9226. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9227. "phpunit/phpunit": "^9.6 || ^7.5"
  9228. },
  9229. "type": "library",
  9230. "autoload": {
  9231. "files": [
  9232. "src/functions_include.php"
  9233. ],
  9234. "psr-4": {
  9235. "React\\Promise\\": "src/"
  9236. }
  9237. },
  9238. "notification-url": "https://packagist.org/downloads/",
  9239. "license": [
  9240. "MIT"
  9241. ],
  9242. "authors": [
  9243. {
  9244. "name": "Jan Sorgalla",
  9245. "email": "jsorgalla@gmail.com",
  9246. "homepage": "https://sorgalla.com/"
  9247. },
  9248. {
  9249. "name": "Christian Lück",
  9250. "email": "christian@clue.engineering",
  9251. "homepage": "https://clue.engineering/"
  9252. },
  9253. {
  9254. "name": "Cees-Jan Kiewiet",
  9255. "email": "reactphp@ceesjankiewiet.nl",
  9256. "homepage": "https://wyrihaximus.net/"
  9257. },
  9258. {
  9259. "name": "Chris Boden",
  9260. "email": "cboden@gmail.com",
  9261. "homepage": "https://cboden.dev/"
  9262. }
  9263. ],
  9264. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9265. "keywords": [
  9266. "promise",
  9267. "promises"
  9268. ],
  9269. "support": {
  9270. "issues": "https://github.com/reactphp/promise/issues",
  9271. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9272. },
  9273. "funding": [
  9274. {
  9275. "url": "https://opencollective.com/reactphp",
  9276. "type": "open_collective"
  9277. }
  9278. ],
  9279. "time": "2024-05-24T10:39:05+00:00"
  9280. },
  9281. {
  9282. "name": "react/socket",
  9283. "version": "v1.15.0",
  9284. "source": {
  9285. "type": "git",
  9286. "url": "https://github.com/reactphp/socket.git",
  9287. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9288. },
  9289. "dist": {
  9290. "type": "zip",
  9291. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9292. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9293. "shasum": ""
  9294. },
  9295. "require": {
  9296. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9297. "php": ">=5.3.0",
  9298. "react/dns": "^1.11",
  9299. "react/event-loop": "^1.2",
  9300. "react/promise": "^3 || ^2.6 || ^1.2.1",
  9301. "react/stream": "^1.2"
  9302. },
  9303. "require-dev": {
  9304. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9305. "react/async": "^4 || ^3 || ^2",
  9306. "react/promise-stream": "^1.4",
  9307. "react/promise-timer": "^1.10"
  9308. },
  9309. "type": "library",
  9310. "autoload": {
  9311. "psr-4": {
  9312. "React\\Socket\\": "src/"
  9313. }
  9314. },
  9315. "notification-url": "https://packagist.org/downloads/",
  9316. "license": [
  9317. "MIT"
  9318. ],
  9319. "authors": [
  9320. {
  9321. "name": "Christian Lück",
  9322. "email": "christian@clue.engineering",
  9323. "homepage": "https://clue.engineering/"
  9324. },
  9325. {
  9326. "name": "Cees-Jan Kiewiet",
  9327. "email": "reactphp@ceesjankiewiet.nl",
  9328. "homepage": "https://wyrihaximus.net/"
  9329. },
  9330. {
  9331. "name": "Jan Sorgalla",
  9332. "email": "jsorgalla@gmail.com",
  9333. "homepage": "https://sorgalla.com/"
  9334. },
  9335. {
  9336. "name": "Chris Boden",
  9337. "email": "cboden@gmail.com",
  9338. "homepage": "https://cboden.dev/"
  9339. }
  9340. ],
  9341. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9342. "keywords": [
  9343. "Connection",
  9344. "Socket",
  9345. "async",
  9346. "reactphp",
  9347. "stream"
  9348. ],
  9349. "support": {
  9350. "issues": "https://github.com/reactphp/socket/issues",
  9351. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  9352. },
  9353. "funding": [
  9354. {
  9355. "url": "https://opencollective.com/reactphp",
  9356. "type": "open_collective"
  9357. }
  9358. ],
  9359. "time": "2023-12-15T11:02:10+00:00"
  9360. },
  9361. {
  9362. "name": "react/stream",
  9363. "version": "v1.3.0",
  9364. "source": {
  9365. "type": "git",
  9366. "url": "https://github.com/reactphp/stream.git",
  9367. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  9368. },
  9369. "dist": {
  9370. "type": "zip",
  9371. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9372. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  9373. "shasum": ""
  9374. },
  9375. "require": {
  9376. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9377. "php": ">=5.3.8",
  9378. "react/event-loop": "^1.2"
  9379. },
  9380. "require-dev": {
  9381. "clue/stream-filter": "~1.2",
  9382. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9383. },
  9384. "type": "library",
  9385. "autoload": {
  9386. "psr-4": {
  9387. "React\\Stream\\": "src/"
  9388. }
  9389. },
  9390. "notification-url": "https://packagist.org/downloads/",
  9391. "license": [
  9392. "MIT"
  9393. ],
  9394. "authors": [
  9395. {
  9396. "name": "Christian Lück",
  9397. "email": "christian@clue.engineering",
  9398. "homepage": "https://clue.engineering/"
  9399. },
  9400. {
  9401. "name": "Cees-Jan Kiewiet",
  9402. "email": "reactphp@ceesjankiewiet.nl",
  9403. "homepage": "https://wyrihaximus.net/"
  9404. },
  9405. {
  9406. "name": "Jan Sorgalla",
  9407. "email": "jsorgalla@gmail.com",
  9408. "homepage": "https://sorgalla.com/"
  9409. },
  9410. {
  9411. "name": "Chris Boden",
  9412. "email": "cboden@gmail.com",
  9413. "homepage": "https://cboden.dev/"
  9414. }
  9415. ],
  9416. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9417. "keywords": [
  9418. "event-driven",
  9419. "io",
  9420. "non-blocking",
  9421. "pipe",
  9422. "reactphp",
  9423. "readable",
  9424. "stream",
  9425. "writable"
  9426. ],
  9427. "support": {
  9428. "issues": "https://github.com/reactphp/stream/issues",
  9429. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  9430. },
  9431. "funding": [
  9432. {
  9433. "url": "https://opencollective.com/reactphp",
  9434. "type": "open_collective"
  9435. }
  9436. ],
  9437. "time": "2023-06-16T10:52:11+00:00"
  9438. },
  9439. {
  9440. "name": "sebastian/cli-parser",
  9441. "version": "2.0.1",
  9442. "source": {
  9443. "type": "git",
  9444. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9445. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9446. },
  9447. "dist": {
  9448. "type": "zip",
  9449. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9450. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9451. "shasum": ""
  9452. },
  9453. "require": {
  9454. "php": ">=8.1"
  9455. },
  9456. "require-dev": {
  9457. "phpunit/phpunit": "^10.0"
  9458. },
  9459. "type": "library",
  9460. "extra": {
  9461. "branch-alias": {
  9462. "dev-main": "2.0-dev"
  9463. }
  9464. },
  9465. "autoload": {
  9466. "classmap": [
  9467. "src/"
  9468. ]
  9469. },
  9470. "notification-url": "https://packagist.org/downloads/",
  9471. "license": [
  9472. "BSD-3-Clause"
  9473. ],
  9474. "authors": [
  9475. {
  9476. "name": "Sebastian Bergmann",
  9477. "email": "sebastian@phpunit.de",
  9478. "role": "lead"
  9479. }
  9480. ],
  9481. "description": "Library for parsing CLI options",
  9482. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9483. "support": {
  9484. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9485. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9486. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9487. },
  9488. "funding": [
  9489. {
  9490. "url": "https://github.com/sebastianbergmann",
  9491. "type": "github"
  9492. }
  9493. ],
  9494. "time": "2024-03-02T07:12:49+00:00"
  9495. },
  9496. {
  9497. "name": "sebastian/code-unit",
  9498. "version": "2.0.0",
  9499. "source": {
  9500. "type": "git",
  9501. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9502. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9503. },
  9504. "dist": {
  9505. "type": "zip",
  9506. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9507. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9508. "shasum": ""
  9509. },
  9510. "require": {
  9511. "php": ">=8.1"
  9512. },
  9513. "require-dev": {
  9514. "phpunit/phpunit": "^10.0"
  9515. },
  9516. "type": "library",
  9517. "extra": {
  9518. "branch-alias": {
  9519. "dev-main": "2.0-dev"
  9520. }
  9521. },
  9522. "autoload": {
  9523. "classmap": [
  9524. "src/"
  9525. ]
  9526. },
  9527. "notification-url": "https://packagist.org/downloads/",
  9528. "license": [
  9529. "BSD-3-Clause"
  9530. ],
  9531. "authors": [
  9532. {
  9533. "name": "Sebastian Bergmann",
  9534. "email": "sebastian@phpunit.de",
  9535. "role": "lead"
  9536. }
  9537. ],
  9538. "description": "Collection of value objects that represent the PHP code units",
  9539. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9540. "support": {
  9541. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9542. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9543. },
  9544. "funding": [
  9545. {
  9546. "url": "https://github.com/sebastianbergmann",
  9547. "type": "github"
  9548. }
  9549. ],
  9550. "time": "2023-02-03T06:58:43+00:00"
  9551. },
  9552. {
  9553. "name": "sebastian/code-unit-reverse-lookup",
  9554. "version": "3.0.0",
  9555. "source": {
  9556. "type": "git",
  9557. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9558. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9559. },
  9560. "dist": {
  9561. "type": "zip",
  9562. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9563. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9564. "shasum": ""
  9565. },
  9566. "require": {
  9567. "php": ">=8.1"
  9568. },
  9569. "require-dev": {
  9570. "phpunit/phpunit": "^10.0"
  9571. },
  9572. "type": "library",
  9573. "extra": {
  9574. "branch-alias": {
  9575. "dev-main": "3.0-dev"
  9576. }
  9577. },
  9578. "autoload": {
  9579. "classmap": [
  9580. "src/"
  9581. ]
  9582. },
  9583. "notification-url": "https://packagist.org/downloads/",
  9584. "license": [
  9585. "BSD-3-Clause"
  9586. ],
  9587. "authors": [
  9588. {
  9589. "name": "Sebastian Bergmann",
  9590. "email": "sebastian@phpunit.de"
  9591. }
  9592. ],
  9593. "description": "Looks up which function or method a line of code belongs to",
  9594. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9595. "support": {
  9596. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9597. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9598. },
  9599. "funding": [
  9600. {
  9601. "url": "https://github.com/sebastianbergmann",
  9602. "type": "github"
  9603. }
  9604. ],
  9605. "time": "2023-02-03T06:59:15+00:00"
  9606. },
  9607. {
  9608. "name": "sebastian/comparator",
  9609. "version": "5.0.1",
  9610. "source": {
  9611. "type": "git",
  9612. "url": "https://github.com/sebastianbergmann/comparator.git",
  9613. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9614. },
  9615. "dist": {
  9616. "type": "zip",
  9617. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9618. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9619. "shasum": ""
  9620. },
  9621. "require": {
  9622. "ext-dom": "*",
  9623. "ext-mbstring": "*",
  9624. "php": ">=8.1",
  9625. "sebastian/diff": "^5.0",
  9626. "sebastian/exporter": "^5.0"
  9627. },
  9628. "require-dev": {
  9629. "phpunit/phpunit": "^10.3"
  9630. },
  9631. "type": "library",
  9632. "extra": {
  9633. "branch-alias": {
  9634. "dev-main": "5.0-dev"
  9635. }
  9636. },
  9637. "autoload": {
  9638. "classmap": [
  9639. "src/"
  9640. ]
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "BSD-3-Clause"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Sebastian Bergmann",
  9649. "email": "sebastian@phpunit.de"
  9650. },
  9651. {
  9652. "name": "Jeff Welch",
  9653. "email": "whatthejeff@gmail.com"
  9654. },
  9655. {
  9656. "name": "Volker Dusch",
  9657. "email": "github@wallbash.com"
  9658. },
  9659. {
  9660. "name": "Bernhard Schussek",
  9661. "email": "bschussek@2bepublished.at"
  9662. }
  9663. ],
  9664. "description": "Provides the functionality to compare PHP values for equality",
  9665. "homepage": "https://github.com/sebastianbergmann/comparator",
  9666. "keywords": [
  9667. "comparator",
  9668. "compare",
  9669. "equality"
  9670. ],
  9671. "support": {
  9672. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9673. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9674. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9675. },
  9676. "funding": [
  9677. {
  9678. "url": "https://github.com/sebastianbergmann",
  9679. "type": "github"
  9680. }
  9681. ],
  9682. "time": "2023-08-14T13:18:12+00:00"
  9683. },
  9684. {
  9685. "name": "sebastian/complexity",
  9686. "version": "3.2.0",
  9687. "source": {
  9688. "type": "git",
  9689. "url": "https://github.com/sebastianbergmann/complexity.git",
  9690. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9691. },
  9692. "dist": {
  9693. "type": "zip",
  9694. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9695. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9696. "shasum": ""
  9697. },
  9698. "require": {
  9699. "nikic/php-parser": "^4.18 || ^5.0",
  9700. "php": ">=8.1"
  9701. },
  9702. "require-dev": {
  9703. "phpunit/phpunit": "^10.0"
  9704. },
  9705. "type": "library",
  9706. "extra": {
  9707. "branch-alias": {
  9708. "dev-main": "3.2-dev"
  9709. }
  9710. },
  9711. "autoload": {
  9712. "classmap": [
  9713. "src/"
  9714. ]
  9715. },
  9716. "notification-url": "https://packagist.org/downloads/",
  9717. "license": [
  9718. "BSD-3-Clause"
  9719. ],
  9720. "authors": [
  9721. {
  9722. "name": "Sebastian Bergmann",
  9723. "email": "sebastian@phpunit.de",
  9724. "role": "lead"
  9725. }
  9726. ],
  9727. "description": "Library for calculating the complexity of PHP code units",
  9728. "homepage": "https://github.com/sebastianbergmann/complexity",
  9729. "support": {
  9730. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9731. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9732. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9733. },
  9734. "funding": [
  9735. {
  9736. "url": "https://github.com/sebastianbergmann",
  9737. "type": "github"
  9738. }
  9739. ],
  9740. "time": "2023-12-21T08:37:17+00:00"
  9741. },
  9742. {
  9743. "name": "sebastian/diff",
  9744. "version": "5.1.1",
  9745. "source": {
  9746. "type": "git",
  9747. "url": "https://github.com/sebastianbergmann/diff.git",
  9748. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9749. },
  9750. "dist": {
  9751. "type": "zip",
  9752. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9753. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9754. "shasum": ""
  9755. },
  9756. "require": {
  9757. "php": ">=8.1"
  9758. },
  9759. "require-dev": {
  9760. "phpunit/phpunit": "^10.0",
  9761. "symfony/process": "^6.4"
  9762. },
  9763. "type": "library",
  9764. "extra": {
  9765. "branch-alias": {
  9766. "dev-main": "5.1-dev"
  9767. }
  9768. },
  9769. "autoload": {
  9770. "classmap": [
  9771. "src/"
  9772. ]
  9773. },
  9774. "notification-url": "https://packagist.org/downloads/",
  9775. "license": [
  9776. "BSD-3-Clause"
  9777. ],
  9778. "authors": [
  9779. {
  9780. "name": "Sebastian Bergmann",
  9781. "email": "sebastian@phpunit.de"
  9782. },
  9783. {
  9784. "name": "Kore Nordmann",
  9785. "email": "mail@kore-nordmann.de"
  9786. }
  9787. ],
  9788. "description": "Diff implementation",
  9789. "homepage": "https://github.com/sebastianbergmann/diff",
  9790. "keywords": [
  9791. "diff",
  9792. "udiff",
  9793. "unidiff",
  9794. "unified diff"
  9795. ],
  9796. "support": {
  9797. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9798. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9799. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9800. },
  9801. "funding": [
  9802. {
  9803. "url": "https://github.com/sebastianbergmann",
  9804. "type": "github"
  9805. }
  9806. ],
  9807. "time": "2024-03-02T07:15:17+00:00"
  9808. },
  9809. {
  9810. "name": "sebastian/environment",
  9811. "version": "6.1.0",
  9812. "source": {
  9813. "type": "git",
  9814. "url": "https://github.com/sebastianbergmann/environment.git",
  9815. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9816. },
  9817. "dist": {
  9818. "type": "zip",
  9819. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9820. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9821. "shasum": ""
  9822. },
  9823. "require": {
  9824. "php": ">=8.1"
  9825. },
  9826. "require-dev": {
  9827. "phpunit/phpunit": "^10.0"
  9828. },
  9829. "suggest": {
  9830. "ext-posix": "*"
  9831. },
  9832. "type": "library",
  9833. "extra": {
  9834. "branch-alias": {
  9835. "dev-main": "6.1-dev"
  9836. }
  9837. },
  9838. "autoload": {
  9839. "classmap": [
  9840. "src/"
  9841. ]
  9842. },
  9843. "notification-url": "https://packagist.org/downloads/",
  9844. "license": [
  9845. "BSD-3-Clause"
  9846. ],
  9847. "authors": [
  9848. {
  9849. "name": "Sebastian Bergmann",
  9850. "email": "sebastian@phpunit.de"
  9851. }
  9852. ],
  9853. "description": "Provides functionality to handle HHVM/PHP environments",
  9854. "homepage": "https://github.com/sebastianbergmann/environment",
  9855. "keywords": [
  9856. "Xdebug",
  9857. "environment",
  9858. "hhvm"
  9859. ],
  9860. "support": {
  9861. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9862. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9863. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9864. },
  9865. "funding": [
  9866. {
  9867. "url": "https://github.com/sebastianbergmann",
  9868. "type": "github"
  9869. }
  9870. ],
  9871. "time": "2024-03-23T08:47:14+00:00"
  9872. },
  9873. {
  9874. "name": "sebastian/exporter",
  9875. "version": "5.1.2",
  9876. "source": {
  9877. "type": "git",
  9878. "url": "https://github.com/sebastianbergmann/exporter.git",
  9879. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9880. },
  9881. "dist": {
  9882. "type": "zip",
  9883. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9884. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9885. "shasum": ""
  9886. },
  9887. "require": {
  9888. "ext-mbstring": "*",
  9889. "php": ">=8.1",
  9890. "sebastian/recursion-context": "^5.0"
  9891. },
  9892. "require-dev": {
  9893. "phpunit/phpunit": "^10.0"
  9894. },
  9895. "type": "library",
  9896. "extra": {
  9897. "branch-alias": {
  9898. "dev-main": "5.1-dev"
  9899. }
  9900. },
  9901. "autoload": {
  9902. "classmap": [
  9903. "src/"
  9904. ]
  9905. },
  9906. "notification-url": "https://packagist.org/downloads/",
  9907. "license": [
  9908. "BSD-3-Clause"
  9909. ],
  9910. "authors": [
  9911. {
  9912. "name": "Sebastian Bergmann",
  9913. "email": "sebastian@phpunit.de"
  9914. },
  9915. {
  9916. "name": "Jeff Welch",
  9917. "email": "whatthejeff@gmail.com"
  9918. },
  9919. {
  9920. "name": "Volker Dusch",
  9921. "email": "github@wallbash.com"
  9922. },
  9923. {
  9924. "name": "Adam Harvey",
  9925. "email": "aharvey@php.net"
  9926. },
  9927. {
  9928. "name": "Bernhard Schussek",
  9929. "email": "bschussek@gmail.com"
  9930. }
  9931. ],
  9932. "description": "Provides the functionality to export PHP variables for visualization",
  9933. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9934. "keywords": [
  9935. "export",
  9936. "exporter"
  9937. ],
  9938. "support": {
  9939. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9940. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9941. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9942. },
  9943. "funding": [
  9944. {
  9945. "url": "https://github.com/sebastianbergmann",
  9946. "type": "github"
  9947. }
  9948. ],
  9949. "time": "2024-03-02T07:17:12+00:00"
  9950. },
  9951. {
  9952. "name": "sebastian/global-state",
  9953. "version": "6.0.2",
  9954. "source": {
  9955. "type": "git",
  9956. "url": "https://github.com/sebastianbergmann/global-state.git",
  9957. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9958. },
  9959. "dist": {
  9960. "type": "zip",
  9961. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9962. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9963. "shasum": ""
  9964. },
  9965. "require": {
  9966. "php": ">=8.1",
  9967. "sebastian/object-reflector": "^3.0",
  9968. "sebastian/recursion-context": "^5.0"
  9969. },
  9970. "require-dev": {
  9971. "ext-dom": "*",
  9972. "phpunit/phpunit": "^10.0"
  9973. },
  9974. "type": "library",
  9975. "extra": {
  9976. "branch-alias": {
  9977. "dev-main": "6.0-dev"
  9978. }
  9979. },
  9980. "autoload": {
  9981. "classmap": [
  9982. "src/"
  9983. ]
  9984. },
  9985. "notification-url": "https://packagist.org/downloads/",
  9986. "license": [
  9987. "BSD-3-Clause"
  9988. ],
  9989. "authors": [
  9990. {
  9991. "name": "Sebastian Bergmann",
  9992. "email": "sebastian@phpunit.de"
  9993. }
  9994. ],
  9995. "description": "Snapshotting of global state",
  9996. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9997. "keywords": [
  9998. "global state"
  9999. ],
  10000. "support": {
  10001. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10002. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10003. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10004. },
  10005. "funding": [
  10006. {
  10007. "url": "https://github.com/sebastianbergmann",
  10008. "type": "github"
  10009. }
  10010. ],
  10011. "time": "2024-03-02T07:19:19+00:00"
  10012. },
  10013. {
  10014. "name": "sebastian/lines-of-code",
  10015. "version": "2.0.2",
  10016. "source": {
  10017. "type": "git",
  10018. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10019. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10020. },
  10021. "dist": {
  10022. "type": "zip",
  10023. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10024. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10025. "shasum": ""
  10026. },
  10027. "require": {
  10028. "nikic/php-parser": "^4.18 || ^5.0",
  10029. "php": ">=8.1"
  10030. },
  10031. "require-dev": {
  10032. "phpunit/phpunit": "^10.0"
  10033. },
  10034. "type": "library",
  10035. "extra": {
  10036. "branch-alias": {
  10037. "dev-main": "2.0-dev"
  10038. }
  10039. },
  10040. "autoload": {
  10041. "classmap": [
  10042. "src/"
  10043. ]
  10044. },
  10045. "notification-url": "https://packagist.org/downloads/",
  10046. "license": [
  10047. "BSD-3-Clause"
  10048. ],
  10049. "authors": [
  10050. {
  10051. "name": "Sebastian Bergmann",
  10052. "email": "sebastian@phpunit.de",
  10053. "role": "lead"
  10054. }
  10055. ],
  10056. "description": "Library for counting the lines of code in PHP source code",
  10057. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10058. "support": {
  10059. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10060. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10061. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10062. },
  10063. "funding": [
  10064. {
  10065. "url": "https://github.com/sebastianbergmann",
  10066. "type": "github"
  10067. }
  10068. ],
  10069. "time": "2023-12-21T08:38:20+00:00"
  10070. },
  10071. {
  10072. "name": "sebastian/object-enumerator",
  10073. "version": "5.0.0",
  10074. "source": {
  10075. "type": "git",
  10076. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10077. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10078. },
  10079. "dist": {
  10080. "type": "zip",
  10081. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10082. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10083. "shasum": ""
  10084. },
  10085. "require": {
  10086. "php": ">=8.1",
  10087. "sebastian/object-reflector": "^3.0",
  10088. "sebastian/recursion-context": "^5.0"
  10089. },
  10090. "require-dev": {
  10091. "phpunit/phpunit": "^10.0"
  10092. },
  10093. "type": "library",
  10094. "extra": {
  10095. "branch-alias": {
  10096. "dev-main": "5.0-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "classmap": [
  10101. "src/"
  10102. ]
  10103. },
  10104. "notification-url": "https://packagist.org/downloads/",
  10105. "license": [
  10106. "BSD-3-Clause"
  10107. ],
  10108. "authors": [
  10109. {
  10110. "name": "Sebastian Bergmann",
  10111. "email": "sebastian@phpunit.de"
  10112. }
  10113. ],
  10114. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10115. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10116. "support": {
  10117. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10118. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10119. },
  10120. "funding": [
  10121. {
  10122. "url": "https://github.com/sebastianbergmann",
  10123. "type": "github"
  10124. }
  10125. ],
  10126. "time": "2023-02-03T07:08:32+00:00"
  10127. },
  10128. {
  10129. "name": "sebastian/object-reflector",
  10130. "version": "3.0.0",
  10131. "source": {
  10132. "type": "git",
  10133. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10134. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10135. },
  10136. "dist": {
  10137. "type": "zip",
  10138. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10139. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10140. "shasum": ""
  10141. },
  10142. "require": {
  10143. "php": ">=8.1"
  10144. },
  10145. "require-dev": {
  10146. "phpunit/phpunit": "^10.0"
  10147. },
  10148. "type": "library",
  10149. "extra": {
  10150. "branch-alias": {
  10151. "dev-main": "3.0-dev"
  10152. }
  10153. },
  10154. "autoload": {
  10155. "classmap": [
  10156. "src/"
  10157. ]
  10158. },
  10159. "notification-url": "https://packagist.org/downloads/",
  10160. "license": [
  10161. "BSD-3-Clause"
  10162. ],
  10163. "authors": [
  10164. {
  10165. "name": "Sebastian Bergmann",
  10166. "email": "sebastian@phpunit.de"
  10167. }
  10168. ],
  10169. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10170. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10171. "support": {
  10172. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10173. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10174. },
  10175. "funding": [
  10176. {
  10177. "url": "https://github.com/sebastianbergmann",
  10178. "type": "github"
  10179. }
  10180. ],
  10181. "time": "2023-02-03T07:06:18+00:00"
  10182. },
  10183. {
  10184. "name": "sebastian/recursion-context",
  10185. "version": "5.0.0",
  10186. "source": {
  10187. "type": "git",
  10188. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10189. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10190. },
  10191. "dist": {
  10192. "type": "zip",
  10193. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10194. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10195. "shasum": ""
  10196. },
  10197. "require": {
  10198. "php": ">=8.1"
  10199. },
  10200. "require-dev": {
  10201. "phpunit/phpunit": "^10.0"
  10202. },
  10203. "type": "library",
  10204. "extra": {
  10205. "branch-alias": {
  10206. "dev-main": "5.0-dev"
  10207. }
  10208. },
  10209. "autoload": {
  10210. "classmap": [
  10211. "src/"
  10212. ]
  10213. },
  10214. "notification-url": "https://packagist.org/downloads/",
  10215. "license": [
  10216. "BSD-3-Clause"
  10217. ],
  10218. "authors": [
  10219. {
  10220. "name": "Sebastian Bergmann",
  10221. "email": "sebastian@phpunit.de"
  10222. },
  10223. {
  10224. "name": "Jeff Welch",
  10225. "email": "whatthejeff@gmail.com"
  10226. },
  10227. {
  10228. "name": "Adam Harvey",
  10229. "email": "aharvey@php.net"
  10230. }
  10231. ],
  10232. "description": "Provides functionality to recursively process PHP variables",
  10233. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10234. "support": {
  10235. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10236. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10237. },
  10238. "funding": [
  10239. {
  10240. "url": "https://github.com/sebastianbergmann",
  10241. "type": "github"
  10242. }
  10243. ],
  10244. "time": "2023-02-03T07:05:40+00:00"
  10245. },
  10246. {
  10247. "name": "sebastian/type",
  10248. "version": "4.0.0",
  10249. "source": {
  10250. "type": "git",
  10251. "url": "https://github.com/sebastianbergmann/type.git",
  10252. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10253. },
  10254. "dist": {
  10255. "type": "zip",
  10256. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10257. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10258. "shasum": ""
  10259. },
  10260. "require": {
  10261. "php": ">=8.1"
  10262. },
  10263. "require-dev": {
  10264. "phpunit/phpunit": "^10.0"
  10265. },
  10266. "type": "library",
  10267. "extra": {
  10268. "branch-alias": {
  10269. "dev-main": "4.0-dev"
  10270. }
  10271. },
  10272. "autoload": {
  10273. "classmap": [
  10274. "src/"
  10275. ]
  10276. },
  10277. "notification-url": "https://packagist.org/downloads/",
  10278. "license": [
  10279. "BSD-3-Clause"
  10280. ],
  10281. "authors": [
  10282. {
  10283. "name": "Sebastian Bergmann",
  10284. "email": "sebastian@phpunit.de",
  10285. "role": "lead"
  10286. }
  10287. ],
  10288. "description": "Collection of value objects that represent the types of the PHP type system",
  10289. "homepage": "https://github.com/sebastianbergmann/type",
  10290. "support": {
  10291. "issues": "https://github.com/sebastianbergmann/type/issues",
  10292. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10293. },
  10294. "funding": [
  10295. {
  10296. "url": "https://github.com/sebastianbergmann",
  10297. "type": "github"
  10298. }
  10299. ],
  10300. "time": "2023-02-03T07:10:45+00:00"
  10301. },
  10302. {
  10303. "name": "sebastian/version",
  10304. "version": "4.0.1",
  10305. "source": {
  10306. "type": "git",
  10307. "url": "https://github.com/sebastianbergmann/version.git",
  10308. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10309. },
  10310. "dist": {
  10311. "type": "zip",
  10312. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10313. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10314. "shasum": ""
  10315. },
  10316. "require": {
  10317. "php": ">=8.1"
  10318. },
  10319. "type": "library",
  10320. "extra": {
  10321. "branch-alias": {
  10322. "dev-main": "4.0-dev"
  10323. }
  10324. },
  10325. "autoload": {
  10326. "classmap": [
  10327. "src/"
  10328. ]
  10329. },
  10330. "notification-url": "https://packagist.org/downloads/",
  10331. "license": [
  10332. "BSD-3-Clause"
  10333. ],
  10334. "authors": [
  10335. {
  10336. "name": "Sebastian Bergmann",
  10337. "email": "sebastian@phpunit.de",
  10338. "role": "lead"
  10339. }
  10340. ],
  10341. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10342. "homepage": "https://github.com/sebastianbergmann/version",
  10343. "support": {
  10344. "issues": "https://github.com/sebastianbergmann/version/issues",
  10345. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10346. },
  10347. "funding": [
  10348. {
  10349. "url": "https://github.com/sebastianbergmann",
  10350. "type": "github"
  10351. }
  10352. ],
  10353. "time": "2023-02-07T11:34:05+00:00"
  10354. },
  10355. {
  10356. "name": "swoole/ide-helper",
  10357. "version": "5.1.2",
  10358. "source": {
  10359. "type": "git",
  10360. "url": "https://github.com/swoole/ide-helper.git",
  10361. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  10362. },
  10363. "dist": {
  10364. "type": "zip",
  10365. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  10366. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  10367. "shasum": ""
  10368. },
  10369. "type": "library",
  10370. "notification-url": "https://packagist.org/downloads/",
  10371. "license": [
  10372. "Apache-2.0"
  10373. ],
  10374. "authors": [
  10375. {
  10376. "name": "Team Swoole",
  10377. "email": "team@swoole.com"
  10378. }
  10379. ],
  10380. "description": "IDE help files for Swoole.",
  10381. "support": {
  10382. "issues": "https://github.com/swoole/ide-helper/issues",
  10383. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  10384. },
  10385. "time": "2024-02-01T22:28:11+00:00"
  10386. },
  10387. {
  10388. "name": "symfony/event-dispatcher",
  10389. "version": "v6.4.8",
  10390. "source": {
  10391. "type": "git",
  10392. "url": "https://github.com/symfony/event-dispatcher.git",
  10393. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10394. },
  10395. "dist": {
  10396. "type": "zip",
  10397. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10398. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10399. "shasum": ""
  10400. },
  10401. "require": {
  10402. "php": ">=8.1",
  10403. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10404. },
  10405. "conflict": {
  10406. "symfony/dependency-injection": "<5.4",
  10407. "symfony/service-contracts": "<2.5"
  10408. },
  10409. "provide": {
  10410. "psr/event-dispatcher-implementation": "1.0",
  10411. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10412. },
  10413. "require-dev": {
  10414. "psr/log": "^1|^2|^3",
  10415. "symfony/config": "^5.4|^6.0|^7.0",
  10416. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10417. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10418. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10419. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10420. "symfony/service-contracts": "^2.5|^3",
  10421. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10422. },
  10423. "type": "library",
  10424. "autoload": {
  10425. "psr-4": {
  10426. "Symfony\\Component\\EventDispatcher\\": ""
  10427. },
  10428. "exclude-from-classmap": [
  10429. "/Tests/"
  10430. ]
  10431. },
  10432. "notification-url": "https://packagist.org/downloads/",
  10433. "license": [
  10434. "MIT"
  10435. ],
  10436. "authors": [
  10437. {
  10438. "name": "Fabien Potencier",
  10439. "email": "fabien@symfony.com"
  10440. },
  10441. {
  10442. "name": "Symfony Community",
  10443. "homepage": "https://symfony.com/contributors"
  10444. }
  10445. ],
  10446. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10447. "homepage": "https://symfony.com",
  10448. "support": {
  10449. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10450. },
  10451. "funding": [
  10452. {
  10453. "url": "https://symfony.com/sponsor",
  10454. "type": "custom"
  10455. },
  10456. {
  10457. "url": "https://github.com/fabpot",
  10458. "type": "github"
  10459. },
  10460. {
  10461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10462. "type": "tidelift"
  10463. }
  10464. ],
  10465. "time": "2024-05-31T14:49:08+00:00"
  10466. },
  10467. {
  10468. "name": "symfony/event-dispatcher-contracts",
  10469. "version": "v3.5.0",
  10470. "source": {
  10471. "type": "git",
  10472. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10473. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10474. },
  10475. "dist": {
  10476. "type": "zip",
  10477. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10478. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10479. "shasum": ""
  10480. },
  10481. "require": {
  10482. "php": ">=8.1",
  10483. "psr/event-dispatcher": "^1"
  10484. },
  10485. "type": "library",
  10486. "extra": {
  10487. "branch-alias": {
  10488. "dev-main": "3.5-dev"
  10489. },
  10490. "thanks": {
  10491. "name": "symfony/contracts",
  10492. "url": "https://github.com/symfony/contracts"
  10493. }
  10494. },
  10495. "autoload": {
  10496. "psr-4": {
  10497. "Symfony\\Contracts\\EventDispatcher\\": ""
  10498. }
  10499. },
  10500. "notification-url": "https://packagist.org/downloads/",
  10501. "license": [
  10502. "MIT"
  10503. ],
  10504. "authors": [
  10505. {
  10506. "name": "Nicolas Grekas",
  10507. "email": "p@tchwork.com"
  10508. },
  10509. {
  10510. "name": "Symfony Community",
  10511. "homepage": "https://symfony.com/contributors"
  10512. }
  10513. ],
  10514. "description": "Generic abstractions related to dispatching event",
  10515. "homepage": "https://symfony.com",
  10516. "keywords": [
  10517. "abstractions",
  10518. "contracts",
  10519. "decoupling",
  10520. "interfaces",
  10521. "interoperability",
  10522. "standards"
  10523. ],
  10524. "support": {
  10525. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10526. },
  10527. "funding": [
  10528. {
  10529. "url": "https://symfony.com/sponsor",
  10530. "type": "custom"
  10531. },
  10532. {
  10533. "url": "https://github.com/fabpot",
  10534. "type": "github"
  10535. },
  10536. {
  10537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10538. "type": "tidelift"
  10539. }
  10540. ],
  10541. "time": "2024-04-18T09:32:20+00:00"
  10542. },
  10543. {
  10544. "name": "symfony/filesystem",
  10545. "version": "v6.4.8",
  10546. "source": {
  10547. "type": "git",
  10548. "url": "https://github.com/symfony/filesystem.git",
  10549. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10550. },
  10551. "dist": {
  10552. "type": "zip",
  10553. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10554. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10555. "shasum": ""
  10556. },
  10557. "require": {
  10558. "php": ">=8.1",
  10559. "symfony/polyfill-ctype": "~1.8",
  10560. "symfony/polyfill-mbstring": "~1.8"
  10561. },
  10562. "require-dev": {
  10563. "symfony/process": "^5.4|^6.4|^7.0"
  10564. },
  10565. "type": "library",
  10566. "autoload": {
  10567. "psr-4": {
  10568. "Symfony\\Component\\Filesystem\\": ""
  10569. },
  10570. "exclude-from-classmap": [
  10571. "/Tests/"
  10572. ]
  10573. },
  10574. "notification-url": "https://packagist.org/downloads/",
  10575. "license": [
  10576. "MIT"
  10577. ],
  10578. "authors": [
  10579. {
  10580. "name": "Fabien Potencier",
  10581. "email": "fabien@symfony.com"
  10582. },
  10583. {
  10584. "name": "Symfony Community",
  10585. "homepage": "https://symfony.com/contributors"
  10586. }
  10587. ],
  10588. "description": "Provides basic utilities for the filesystem",
  10589. "homepage": "https://symfony.com",
  10590. "support": {
  10591. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://symfony.com/sponsor",
  10596. "type": "custom"
  10597. },
  10598. {
  10599. "url": "https://github.com/fabpot",
  10600. "type": "github"
  10601. },
  10602. {
  10603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10604. "type": "tidelift"
  10605. }
  10606. ],
  10607. "time": "2024-05-31T14:49:08+00:00"
  10608. },
  10609. {
  10610. "name": "symfony/http-foundation",
  10611. "version": "v6.4.8",
  10612. "source": {
  10613. "type": "git",
  10614. "url": "https://github.com/symfony/http-foundation.git",
  10615. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10616. },
  10617. "dist": {
  10618. "type": "zip",
  10619. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10620. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10621. "shasum": ""
  10622. },
  10623. "require": {
  10624. "php": ">=8.1",
  10625. "symfony/deprecation-contracts": "^2.5|^3",
  10626. "symfony/polyfill-mbstring": "~1.1",
  10627. "symfony/polyfill-php83": "^1.27"
  10628. },
  10629. "conflict": {
  10630. "symfony/cache": "<6.3"
  10631. },
  10632. "require-dev": {
  10633. "doctrine/dbal": "^2.13.1|^3|^4",
  10634. "predis/predis": "^1.1|^2.0",
  10635. "symfony/cache": "^6.3|^7.0",
  10636. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10637. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10638. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10639. "symfony/mime": "^5.4|^6.0|^7.0",
  10640. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10641. },
  10642. "type": "library",
  10643. "autoload": {
  10644. "psr-4": {
  10645. "Symfony\\Component\\HttpFoundation\\": ""
  10646. },
  10647. "exclude-from-classmap": [
  10648. "/Tests/"
  10649. ]
  10650. },
  10651. "notification-url": "https://packagist.org/downloads/",
  10652. "license": [
  10653. "MIT"
  10654. ],
  10655. "authors": [
  10656. {
  10657. "name": "Fabien Potencier",
  10658. "email": "fabien@symfony.com"
  10659. },
  10660. {
  10661. "name": "Symfony Community",
  10662. "homepage": "https://symfony.com/contributors"
  10663. }
  10664. ],
  10665. "description": "Defines an object-oriented layer for the HTTP specification",
  10666. "homepage": "https://symfony.com",
  10667. "support": {
  10668. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10669. },
  10670. "funding": [
  10671. {
  10672. "url": "https://symfony.com/sponsor",
  10673. "type": "custom"
  10674. },
  10675. {
  10676. "url": "https://github.com/fabpot",
  10677. "type": "github"
  10678. },
  10679. {
  10680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10681. "type": "tidelift"
  10682. }
  10683. ],
  10684. "time": "2024-05-31T14:49:08+00:00"
  10685. },
  10686. {
  10687. "name": "symfony/options-resolver",
  10688. "version": "v6.4.8",
  10689. "source": {
  10690. "type": "git",
  10691. "url": "https://github.com/symfony/options-resolver.git",
  10692. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10693. },
  10694. "dist": {
  10695. "type": "zip",
  10696. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10697. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10698. "shasum": ""
  10699. },
  10700. "require": {
  10701. "php": ">=8.1",
  10702. "symfony/deprecation-contracts": "^2.5|^3"
  10703. },
  10704. "type": "library",
  10705. "autoload": {
  10706. "psr-4": {
  10707. "Symfony\\Component\\OptionsResolver\\": ""
  10708. },
  10709. "exclude-from-classmap": [
  10710. "/Tests/"
  10711. ]
  10712. },
  10713. "notification-url": "https://packagist.org/downloads/",
  10714. "license": [
  10715. "MIT"
  10716. ],
  10717. "authors": [
  10718. {
  10719. "name": "Fabien Potencier",
  10720. "email": "fabien@symfony.com"
  10721. },
  10722. {
  10723. "name": "Symfony Community",
  10724. "homepage": "https://symfony.com/contributors"
  10725. }
  10726. ],
  10727. "description": "Provides an improved replacement for the array_replace PHP function",
  10728. "homepage": "https://symfony.com",
  10729. "keywords": [
  10730. "config",
  10731. "configuration",
  10732. "options"
  10733. ],
  10734. "support": {
  10735. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10736. },
  10737. "funding": [
  10738. {
  10739. "url": "https://symfony.com/sponsor",
  10740. "type": "custom"
  10741. },
  10742. {
  10743. "url": "https://github.com/fabpot",
  10744. "type": "github"
  10745. },
  10746. {
  10747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10748. "type": "tidelift"
  10749. }
  10750. ],
  10751. "time": "2024-05-31T14:49:08+00:00"
  10752. },
  10753. {
  10754. "name": "symfony/polyfill-php81",
  10755. "version": "v1.29.0",
  10756. "source": {
  10757. "type": "git",
  10758. "url": "https://github.com/symfony/polyfill-php81.git",
  10759. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10760. },
  10761. "dist": {
  10762. "type": "zip",
  10763. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10764. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10765. "shasum": ""
  10766. },
  10767. "require": {
  10768. "php": ">=7.1"
  10769. },
  10770. "type": "library",
  10771. "extra": {
  10772. "thanks": {
  10773. "name": "symfony/polyfill",
  10774. "url": "https://github.com/symfony/polyfill"
  10775. }
  10776. },
  10777. "autoload": {
  10778. "files": [
  10779. "bootstrap.php"
  10780. ],
  10781. "psr-4": {
  10782. "Symfony\\Polyfill\\Php81\\": ""
  10783. },
  10784. "classmap": [
  10785. "Resources/stubs"
  10786. ]
  10787. },
  10788. "notification-url": "https://packagist.org/downloads/",
  10789. "license": [
  10790. "MIT"
  10791. ],
  10792. "authors": [
  10793. {
  10794. "name": "Nicolas Grekas",
  10795. "email": "p@tchwork.com"
  10796. },
  10797. {
  10798. "name": "Symfony Community",
  10799. "homepage": "https://symfony.com/contributors"
  10800. }
  10801. ],
  10802. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10803. "homepage": "https://symfony.com",
  10804. "keywords": [
  10805. "compatibility",
  10806. "polyfill",
  10807. "portable",
  10808. "shim"
  10809. ],
  10810. "support": {
  10811. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10812. },
  10813. "funding": [
  10814. {
  10815. "url": "https://symfony.com/sponsor",
  10816. "type": "custom"
  10817. },
  10818. {
  10819. "url": "https://github.com/fabpot",
  10820. "type": "github"
  10821. },
  10822. {
  10823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10824. "type": "tidelift"
  10825. }
  10826. ],
  10827. "time": "2024-01-29T20:11:03+00:00"
  10828. },
  10829. {
  10830. "name": "symfony/polyfill-php83",
  10831. "version": "v1.29.0",
  10832. "source": {
  10833. "type": "git",
  10834. "url": "https://github.com/symfony/polyfill-php83.git",
  10835. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10836. },
  10837. "dist": {
  10838. "type": "zip",
  10839. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10840. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10841. "shasum": ""
  10842. },
  10843. "require": {
  10844. "php": ">=7.1",
  10845. "symfony/polyfill-php80": "^1.14"
  10846. },
  10847. "type": "library",
  10848. "extra": {
  10849. "thanks": {
  10850. "name": "symfony/polyfill",
  10851. "url": "https://github.com/symfony/polyfill"
  10852. }
  10853. },
  10854. "autoload": {
  10855. "files": [
  10856. "bootstrap.php"
  10857. ],
  10858. "psr-4": {
  10859. "Symfony\\Polyfill\\Php83\\": ""
  10860. },
  10861. "classmap": [
  10862. "Resources/stubs"
  10863. ]
  10864. },
  10865. "notification-url": "https://packagist.org/downloads/",
  10866. "license": [
  10867. "MIT"
  10868. ],
  10869. "authors": [
  10870. {
  10871. "name": "Nicolas Grekas",
  10872. "email": "p@tchwork.com"
  10873. },
  10874. {
  10875. "name": "Symfony Community",
  10876. "homepage": "https://symfony.com/contributors"
  10877. }
  10878. ],
  10879. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10880. "homepage": "https://symfony.com",
  10881. "keywords": [
  10882. "compatibility",
  10883. "polyfill",
  10884. "portable",
  10885. "shim"
  10886. ],
  10887. "support": {
  10888. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10889. },
  10890. "funding": [
  10891. {
  10892. "url": "https://symfony.com/sponsor",
  10893. "type": "custom"
  10894. },
  10895. {
  10896. "url": "https://github.com/fabpot",
  10897. "type": "github"
  10898. },
  10899. {
  10900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10901. "type": "tidelift"
  10902. }
  10903. ],
  10904. "time": "2024-01-29T20:11:03+00:00"
  10905. },
  10906. {
  10907. "name": "symfony/process",
  10908. "version": "v6.4.8",
  10909. "source": {
  10910. "type": "git",
  10911. "url": "https://github.com/symfony/process.git",
  10912. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10913. },
  10914. "dist": {
  10915. "type": "zip",
  10916. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10917. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10918. "shasum": ""
  10919. },
  10920. "require": {
  10921. "php": ">=8.1"
  10922. },
  10923. "type": "library",
  10924. "autoload": {
  10925. "psr-4": {
  10926. "Symfony\\Component\\Process\\": ""
  10927. },
  10928. "exclude-from-classmap": [
  10929. "/Tests/"
  10930. ]
  10931. },
  10932. "notification-url": "https://packagist.org/downloads/",
  10933. "license": [
  10934. "MIT"
  10935. ],
  10936. "authors": [
  10937. {
  10938. "name": "Fabien Potencier",
  10939. "email": "fabien@symfony.com"
  10940. },
  10941. {
  10942. "name": "Symfony Community",
  10943. "homepage": "https://symfony.com/contributors"
  10944. }
  10945. ],
  10946. "description": "Executes commands in sub-processes",
  10947. "homepage": "https://symfony.com",
  10948. "support": {
  10949. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10950. },
  10951. "funding": [
  10952. {
  10953. "url": "https://symfony.com/sponsor",
  10954. "type": "custom"
  10955. },
  10956. {
  10957. "url": "https://github.com/fabpot",
  10958. "type": "github"
  10959. },
  10960. {
  10961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10962. "type": "tidelift"
  10963. }
  10964. ],
  10965. "time": "2024-05-31T14:49:08+00:00"
  10966. },
  10967. {
  10968. "name": "symfony/stopwatch",
  10969. "version": "v6.4.8",
  10970. "source": {
  10971. "type": "git",
  10972. "url": "https://github.com/symfony/stopwatch.git",
  10973. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10974. },
  10975. "dist": {
  10976. "type": "zip",
  10977. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10978. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10979. "shasum": ""
  10980. },
  10981. "require": {
  10982. "php": ">=8.1",
  10983. "symfony/service-contracts": "^2.5|^3"
  10984. },
  10985. "type": "library",
  10986. "autoload": {
  10987. "psr-4": {
  10988. "Symfony\\Component\\Stopwatch\\": ""
  10989. },
  10990. "exclude-from-classmap": [
  10991. "/Tests/"
  10992. ]
  10993. },
  10994. "notification-url": "https://packagist.org/downloads/",
  10995. "license": [
  10996. "MIT"
  10997. ],
  10998. "authors": [
  10999. {
  11000. "name": "Fabien Potencier",
  11001. "email": "fabien@symfony.com"
  11002. },
  11003. {
  11004. "name": "Symfony Community",
  11005. "homepage": "https://symfony.com/contributors"
  11006. }
  11007. ],
  11008. "description": "Provides a way to profile code",
  11009. "homepage": "https://symfony.com",
  11010. "support": {
  11011. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  11012. },
  11013. "funding": [
  11014. {
  11015. "url": "https://symfony.com/sponsor",
  11016. "type": "custom"
  11017. },
  11018. {
  11019. "url": "https://github.com/fabpot",
  11020. "type": "github"
  11021. },
  11022. {
  11023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11024. "type": "tidelift"
  11025. }
  11026. ],
  11027. "time": "2024-05-31T14:49:08+00:00"
  11028. },
  11029. {
  11030. "name": "theseer/tokenizer",
  11031. "version": "1.2.3",
  11032. "source": {
  11033. "type": "git",
  11034. "url": "https://github.com/theseer/tokenizer.git",
  11035. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11036. },
  11037. "dist": {
  11038. "type": "zip",
  11039. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11040. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11041. "shasum": ""
  11042. },
  11043. "require": {
  11044. "ext-dom": "*",
  11045. "ext-tokenizer": "*",
  11046. "ext-xmlwriter": "*",
  11047. "php": "^7.2 || ^8.0"
  11048. },
  11049. "type": "library",
  11050. "autoload": {
  11051. "classmap": [
  11052. "src/"
  11053. ]
  11054. },
  11055. "notification-url": "https://packagist.org/downloads/",
  11056. "license": [
  11057. "BSD-3-Clause"
  11058. ],
  11059. "authors": [
  11060. {
  11061. "name": "Arne Blankerts",
  11062. "email": "arne@blankerts.de",
  11063. "role": "Developer"
  11064. }
  11065. ],
  11066. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11067. "support": {
  11068. "issues": "https://github.com/theseer/tokenizer/issues",
  11069. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11070. },
  11071. "funding": [
  11072. {
  11073. "url": "https://github.com/theseer",
  11074. "type": "github"
  11075. }
  11076. ],
  11077. "time": "2024-03-03T12:36:25+00:00"
  11078. }
  11079. ],
  11080. "aliases": [],
  11081. "minimum-stability": "dev",
  11082. "stability-flags": {},
  11083. "prefer-stable": true,
  11084. "prefer-lowest": false,
  11085. "platform": {
  11086. "php": ">=8.1"
  11087. },
  11088. "platform-dev": {},
  11089. "plugin-api-version": "2.6.0"
  11090. }