composer.lock 399 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243
  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": "07e3fe8a845725aabc81b8158ccf8c3f",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/inflector",
  80. "version": "2.0.10",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/inflector.git",
  84. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  89. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "php": "^7.2 || ^8.0"
  94. },
  95. "require-dev": {
  96. "doctrine/coding-standard": "^11.0",
  97. "phpstan/phpstan": "^1.8",
  98. "phpstan/phpstan-phpunit": "^1.1",
  99. "phpstan/phpstan-strict-rules": "^1.3",
  100. "phpunit/phpunit": "^8.5 || ^9.5",
  101. "vimeo/psalm": "^4.25 || ^5.4"
  102. },
  103. "type": "library",
  104. "autoload": {
  105. "psr-4": {
  106. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Guilherme Blanco",
  116. "email": "guilhermeblanco@gmail.com"
  117. },
  118. {
  119. "name": "Roman Borschel",
  120. "email": "roman@code-factory.org"
  121. },
  122. {
  123. "name": "Benjamin Eberlei",
  124. "email": "kontakt@beberlei.de"
  125. },
  126. {
  127. "name": "Jonathan Wage",
  128. "email": "jonwage@gmail.com"
  129. },
  130. {
  131. "name": "Johannes Schmitt",
  132. "email": "schmittjoh@gmail.com"
  133. }
  134. ],
  135. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  136. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  137. "keywords": [
  138. "inflection",
  139. "inflector",
  140. "lowercase",
  141. "manipulation",
  142. "php",
  143. "plural",
  144. "singular",
  145. "strings",
  146. "uppercase",
  147. "words"
  148. ],
  149. "support": {
  150. "issues": "https://github.com/doctrine/inflector/issues",
  151. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  152. },
  153. "funding": [
  154. {
  155. "url": "https://www.doctrine-project.org/sponsorship.html",
  156. "type": "custom"
  157. },
  158. {
  159. "url": "https://www.patreon.com/phpdoctrine",
  160. "type": "patreon"
  161. },
  162. {
  163. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  164. "type": "tidelift"
  165. }
  166. ],
  167. "time": "2024-02-18T20:23:39+00:00"
  168. },
  169. {
  170. "name": "doctrine/instantiator",
  171. "version": "1.5.0",
  172. "source": {
  173. "type": "git",
  174. "url": "https://github.com/doctrine/instantiator.git",
  175. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  176. },
  177. "dist": {
  178. "type": "zip",
  179. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  180. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  181. "shasum": ""
  182. },
  183. "require": {
  184. "php": "^7.1 || ^8.0"
  185. },
  186. "require-dev": {
  187. "doctrine/coding-standard": "^9 || ^11",
  188. "ext-pdo": "*",
  189. "ext-phar": "*",
  190. "phpbench/phpbench": "^0.16 || ^1",
  191. "phpstan/phpstan": "^1.4",
  192. "phpstan/phpstan-phpunit": "^1",
  193. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  194. "vimeo/psalm": "^4.30 || ^5.4"
  195. },
  196. "type": "library",
  197. "autoload": {
  198. "psr-4": {
  199. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "authors": [
  207. {
  208. "name": "Marco Pivetta",
  209. "email": "ocramius@gmail.com",
  210. "homepage": "https://ocramius.github.io/"
  211. }
  212. ],
  213. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  214. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  215. "keywords": [
  216. "constructor",
  217. "instantiate"
  218. ],
  219. "support": {
  220. "issues": "https://github.com/doctrine/instantiator/issues",
  221. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  222. },
  223. "funding": [
  224. {
  225. "url": "https://www.doctrine-project.org/sponsorship.html",
  226. "type": "custom"
  227. },
  228. {
  229. "url": "https://www.patreon.com/phpdoctrine",
  230. "type": "patreon"
  231. },
  232. {
  233. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  234. "type": "tidelift"
  235. }
  236. ],
  237. "time": "2022-12-30T00:15:36+00:00"
  238. },
  239. {
  240. "name": "elasticsearch/elasticsearch",
  241. "version": "v7.17.2",
  242. "source": {
  243. "type": "git",
  244. "url": "https://github.com/elastic/elasticsearch-php.git",
  245. "reference": "2d302233f2bb0926812d82823bb820d405e130fc"
  246. },
  247. "dist": {
  248. "type": "zip",
  249. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/2d302233f2bb0926812d82823bb820d405e130fc",
  250. "reference": "2d302233f2bb0926812d82823bb820d405e130fc",
  251. "shasum": ""
  252. },
  253. "require": {
  254. "ext-json": ">=1.3.7",
  255. "ezimuel/ringphp": "^1.1.2",
  256. "php": "^7.3 || ^8.0",
  257. "psr/log": "^1|^2|^3"
  258. },
  259. "require-dev": {
  260. "ext-yaml": "*",
  261. "ext-zip": "*",
  262. "mockery/mockery": "^1.2",
  263. "phpstan/phpstan": "^1.10",
  264. "phpunit/phpunit": "^9.3",
  265. "squizlabs/php_codesniffer": "^3.4",
  266. "symfony/finder": "~4.0"
  267. },
  268. "suggest": {
  269. "ext-curl": "*",
  270. "monolog/monolog": "Allows for client-level logging and tracing"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "files": [
  275. "src/autoload.php"
  276. ],
  277. "psr-4": {
  278. "Elasticsearch\\": "src/Elasticsearch/"
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "Apache-2.0",
  284. "LGPL-2.1-only"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Zachary Tong"
  289. },
  290. {
  291. "name": "Enrico Zimuel"
  292. }
  293. ],
  294. "description": "PHP Client for Elasticsearch",
  295. "keywords": [
  296. "client",
  297. "elasticsearch",
  298. "search"
  299. ],
  300. "support": {
  301. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  302. "source": "https://github.com/elastic/elasticsearch-php/tree/v7.17.2"
  303. },
  304. "time": "2023-04-21T15:31:12+00:00"
  305. },
  306. {
  307. "name": "ezimuel/guzzlestreams",
  308. "version": "3.1.0",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/ezimuel/guzzlestreams.git",
  312. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  317. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  318. "shasum": ""
  319. },
  320. "require": {
  321. "php": ">=5.4.0"
  322. },
  323. "require-dev": {
  324. "phpunit/phpunit": "~9.0"
  325. },
  326. "type": "library",
  327. "extra": {
  328. "branch-alias": {
  329. "dev-master": "3.0-dev"
  330. }
  331. },
  332. "autoload": {
  333. "psr-4": {
  334. "GuzzleHttp\\Stream\\": "src/"
  335. }
  336. },
  337. "notification-url": "https://packagist.org/downloads/",
  338. "license": [
  339. "MIT"
  340. ],
  341. "authors": [
  342. {
  343. "name": "Michael Dowling",
  344. "email": "mtdowling@gmail.com",
  345. "homepage": "https://github.com/mtdowling"
  346. }
  347. ],
  348. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  349. "homepage": "http://guzzlephp.org/",
  350. "keywords": [
  351. "Guzzle",
  352. "stream"
  353. ],
  354. "support": {
  355. "source": "https://github.com/ezimuel/guzzlestreams/tree/3.1.0"
  356. },
  357. "time": "2022-10-24T12:58:50+00:00"
  358. },
  359. {
  360. "name": "ezimuel/ringphp",
  361. "version": "1.2.2",
  362. "source": {
  363. "type": "git",
  364. "url": "https://github.com/ezimuel/ringphp.git",
  365. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4"
  366. },
  367. "dist": {
  368. "type": "zip",
  369. "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/7887fc8488013065f72f977dcb281994f5fde9f4",
  370. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4",
  371. "shasum": ""
  372. },
  373. "require": {
  374. "ezimuel/guzzlestreams": "^3.0.1",
  375. "php": ">=5.4.0",
  376. "react/promise": "~2.0"
  377. },
  378. "replace": {
  379. "guzzlehttp/ringphp": "self.version"
  380. },
  381. "require-dev": {
  382. "ext-curl": "*",
  383. "phpunit/phpunit": "~9.0"
  384. },
  385. "suggest": {
  386. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-master": "1.1-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "GuzzleHttp\\Ring\\": "src/"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Michael Dowling",
  406. "email": "mtdowling@gmail.com",
  407. "homepage": "https://github.com/mtdowling"
  408. }
  409. ],
  410. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  411. "support": {
  412. "source": "https://github.com/ezimuel/ringphp/tree/1.2.2"
  413. },
  414. "time": "2022-12-07T11:28:53+00:00"
  415. },
  416. {
  417. "name": "fig/http-message-util",
  418. "version": "1.1.5",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/php-fig/http-message-util.git",
  422. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  427. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": "^5.3 || ^7.0 || ^8.0"
  432. },
  433. "suggest": {
  434. "psr/http-message": "The package containing the PSR-7 interfaces"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-master": "1.1.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Fig\\Http\\Message\\": "src/"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "PHP-FIG",
  454. "homepage": "https://www.php-fig.org/"
  455. }
  456. ],
  457. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  458. "keywords": [
  459. "http",
  460. "http-message",
  461. "psr",
  462. "psr-7",
  463. "request",
  464. "response"
  465. ],
  466. "support": {
  467. "issues": "https://github.com/php-fig/http-message-util/issues",
  468. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  469. },
  470. "time": "2020-11-24T22:02:12+00:00"
  471. },
  472. {
  473. "name": "graham-campbell/result-type",
  474. "version": "v1.1.3",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  478. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  483. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  484. "shasum": ""
  485. },
  486. "require": {
  487. "php": "^7.2.5 || ^8.0",
  488. "phpoption/phpoption": "^1.9.3"
  489. },
  490. "require-dev": {
  491. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  492. },
  493. "type": "library",
  494. "autoload": {
  495. "psr-4": {
  496. "GrahamCampbell\\ResultType\\": "src/"
  497. }
  498. },
  499. "notification-url": "https://packagist.org/downloads/",
  500. "license": [
  501. "MIT"
  502. ],
  503. "authors": [
  504. {
  505. "name": "Graham Campbell",
  506. "email": "hello@gjcampbell.co.uk",
  507. "homepage": "https://github.com/GrahamCampbell"
  508. }
  509. ],
  510. "description": "An Implementation Of The Result Type",
  511. "keywords": [
  512. "Graham Campbell",
  513. "GrahamCampbell",
  514. "Result Type",
  515. "Result-Type",
  516. "result"
  517. ],
  518. "support": {
  519. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  520. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  521. },
  522. "funding": [
  523. {
  524. "url": "https://github.com/GrahamCampbell",
  525. "type": "github"
  526. },
  527. {
  528. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  529. "type": "tidelift"
  530. }
  531. ],
  532. "time": "2024-07-20T21:45:45+00:00"
  533. },
  534. {
  535. "name": "guzzlehttp/guzzle",
  536. "version": "7.9.2",
  537. "source": {
  538. "type": "git",
  539. "url": "https://github.com/guzzle/guzzle.git",
  540. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  541. },
  542. "dist": {
  543. "type": "zip",
  544. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  545. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  546. "shasum": ""
  547. },
  548. "require": {
  549. "ext-json": "*",
  550. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  551. "guzzlehttp/psr7": "^2.7.0",
  552. "php": "^7.2.5 || ^8.0",
  553. "psr/http-client": "^1.0",
  554. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  555. },
  556. "provide": {
  557. "psr/http-client-implementation": "1.0"
  558. },
  559. "require-dev": {
  560. "bamarni/composer-bin-plugin": "^1.8.2",
  561. "ext-curl": "*",
  562. "guzzle/client-integration-tests": "3.0.2",
  563. "php-http/message-factory": "^1.1",
  564. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  565. "psr/log": "^1.1 || ^2.0 || ^3.0"
  566. },
  567. "suggest": {
  568. "ext-curl": "Required for CURL handler support",
  569. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  570. "psr/log": "Required for using the Log middleware"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "bamarni-bin": {
  575. "bin-links": true,
  576. "forward-command": false
  577. }
  578. },
  579. "autoload": {
  580. "files": [
  581. "src/functions_include.php"
  582. ],
  583. "psr-4": {
  584. "GuzzleHttp\\": "src/"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Graham Campbell",
  594. "email": "hello@gjcampbell.co.uk",
  595. "homepage": "https://github.com/GrahamCampbell"
  596. },
  597. {
  598. "name": "Michael Dowling",
  599. "email": "mtdowling@gmail.com",
  600. "homepage": "https://github.com/mtdowling"
  601. },
  602. {
  603. "name": "Jeremy Lindblom",
  604. "email": "jeremeamia@gmail.com",
  605. "homepage": "https://github.com/jeremeamia"
  606. },
  607. {
  608. "name": "George Mponos",
  609. "email": "gmponos@gmail.com",
  610. "homepage": "https://github.com/gmponos"
  611. },
  612. {
  613. "name": "Tobias Nyholm",
  614. "email": "tobias.nyholm@gmail.com",
  615. "homepage": "https://github.com/Nyholm"
  616. },
  617. {
  618. "name": "Márk Sági-Kazár",
  619. "email": "mark.sagikazar@gmail.com",
  620. "homepage": "https://github.com/sagikazarmark"
  621. },
  622. {
  623. "name": "Tobias Schultze",
  624. "email": "webmaster@tubo-world.de",
  625. "homepage": "https://github.com/Tobion"
  626. }
  627. ],
  628. "description": "Guzzle is a PHP HTTP client library",
  629. "keywords": [
  630. "client",
  631. "curl",
  632. "framework",
  633. "http",
  634. "http client",
  635. "psr-18",
  636. "psr-7",
  637. "rest",
  638. "web service"
  639. ],
  640. "support": {
  641. "issues": "https://github.com/guzzle/guzzle/issues",
  642. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  643. },
  644. "funding": [
  645. {
  646. "url": "https://github.com/GrahamCampbell",
  647. "type": "github"
  648. },
  649. {
  650. "url": "https://github.com/Nyholm",
  651. "type": "github"
  652. },
  653. {
  654. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  655. "type": "tidelift"
  656. }
  657. ],
  658. "time": "2024-07-24T11:22:20+00:00"
  659. },
  660. {
  661. "name": "guzzlehttp/promises",
  662. "version": "2.0.4",
  663. "source": {
  664. "type": "git",
  665. "url": "https://github.com/guzzle/promises.git",
  666. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  667. },
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  671. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "php": "^7.2.5 || ^8.0"
  676. },
  677. "require-dev": {
  678. "bamarni/composer-bin-plugin": "^1.8.2",
  679. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  680. },
  681. "type": "library",
  682. "extra": {
  683. "bamarni-bin": {
  684. "bin-links": true,
  685. "forward-command": false
  686. }
  687. },
  688. "autoload": {
  689. "psr-4": {
  690. "GuzzleHttp\\Promise\\": "src/"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Graham Campbell",
  700. "email": "hello@gjcampbell.co.uk",
  701. "homepage": "https://github.com/GrahamCampbell"
  702. },
  703. {
  704. "name": "Michael Dowling",
  705. "email": "mtdowling@gmail.com",
  706. "homepage": "https://github.com/mtdowling"
  707. },
  708. {
  709. "name": "Tobias Nyholm",
  710. "email": "tobias.nyholm@gmail.com",
  711. "homepage": "https://github.com/Nyholm"
  712. },
  713. {
  714. "name": "Tobias Schultze",
  715. "email": "webmaster@tubo-world.de",
  716. "homepage": "https://github.com/Tobion"
  717. }
  718. ],
  719. "description": "Guzzle promises library",
  720. "keywords": [
  721. "promise"
  722. ],
  723. "support": {
  724. "issues": "https://github.com/guzzle/promises/issues",
  725. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  726. },
  727. "funding": [
  728. {
  729. "url": "https://github.com/GrahamCampbell",
  730. "type": "github"
  731. },
  732. {
  733. "url": "https://github.com/Nyholm",
  734. "type": "github"
  735. },
  736. {
  737. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  738. "type": "tidelift"
  739. }
  740. ],
  741. "time": "2024-10-17T10:06:22+00:00"
  742. },
  743. {
  744. "name": "guzzlehttp/psr7",
  745. "version": "2.7.0",
  746. "source": {
  747. "type": "git",
  748. "url": "https://github.com/guzzle/psr7.git",
  749. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  750. },
  751. "dist": {
  752. "type": "zip",
  753. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  754. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  755. "shasum": ""
  756. },
  757. "require": {
  758. "php": "^7.2.5 || ^8.0",
  759. "psr/http-factory": "^1.0",
  760. "psr/http-message": "^1.1 || ^2.0",
  761. "ralouphie/getallheaders": "^3.0"
  762. },
  763. "provide": {
  764. "psr/http-factory-implementation": "1.0",
  765. "psr/http-message-implementation": "1.0"
  766. },
  767. "require-dev": {
  768. "bamarni/composer-bin-plugin": "^1.8.2",
  769. "http-interop/http-factory-tests": "0.9.0",
  770. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  771. },
  772. "suggest": {
  773. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  774. },
  775. "type": "library",
  776. "extra": {
  777. "bamarni-bin": {
  778. "bin-links": true,
  779. "forward-command": false
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "GuzzleHttp\\Psr7\\": "src/"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Graham Campbell",
  794. "email": "hello@gjcampbell.co.uk",
  795. "homepage": "https://github.com/GrahamCampbell"
  796. },
  797. {
  798. "name": "Michael Dowling",
  799. "email": "mtdowling@gmail.com",
  800. "homepage": "https://github.com/mtdowling"
  801. },
  802. {
  803. "name": "George Mponos",
  804. "email": "gmponos@gmail.com",
  805. "homepage": "https://github.com/gmponos"
  806. },
  807. {
  808. "name": "Tobias Nyholm",
  809. "email": "tobias.nyholm@gmail.com",
  810. "homepage": "https://github.com/Nyholm"
  811. },
  812. {
  813. "name": "Márk Sági-Kazár",
  814. "email": "mark.sagikazar@gmail.com",
  815. "homepage": "https://github.com/sagikazarmark"
  816. },
  817. {
  818. "name": "Tobias Schultze",
  819. "email": "webmaster@tubo-world.de",
  820. "homepage": "https://github.com/Tobion"
  821. },
  822. {
  823. "name": "Márk Sági-Kazár",
  824. "email": "mark.sagikazar@gmail.com",
  825. "homepage": "https://sagikazarmark.hu"
  826. }
  827. ],
  828. "description": "PSR-7 message implementation that also provides common utility methods",
  829. "keywords": [
  830. "http",
  831. "message",
  832. "psr-7",
  833. "request",
  834. "response",
  835. "stream",
  836. "uri",
  837. "url"
  838. ],
  839. "support": {
  840. "issues": "https://github.com/guzzle/psr7/issues",
  841. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  842. },
  843. "funding": [
  844. {
  845. "url": "https://github.com/GrahamCampbell",
  846. "type": "github"
  847. },
  848. {
  849. "url": "https://github.com/Nyholm",
  850. "type": "github"
  851. },
  852. {
  853. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  854. "type": "tidelift"
  855. }
  856. ],
  857. "time": "2024-07-18T11:15:46+00:00"
  858. },
  859. {
  860. "name": "hyperf/amqp",
  861. "version": "v3.1.42",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/hyperf/amqp.git",
  865. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  870. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  871. "shasum": ""
  872. },
  873. "require": {
  874. "doctrine/instantiator": "^1.2.0",
  875. "hyperf/codec": "~3.1.0",
  876. "hyperf/contract": "~3.1.0",
  877. "hyperf/coroutine": "~3.1.0",
  878. "hyperf/pool": "~3.1.0",
  879. "hyperf/process": "~3.1.0",
  880. "hyperf/support": "~3.1.0",
  881. "hyperf/utils": "~3.1.0",
  882. "php": ">=8.1",
  883. "php-amqplib/php-amqplib": "^3.5",
  884. "psr/container": "^1.0 || ^2.0",
  885. "psr/event-dispatcher": "^1.0",
  886. "psr/log": "^1.0 || ^2.0 || ^3.0"
  887. },
  888. "suggest": {
  889. "hyperf/di": "Required to use annotations.",
  890. "hyperf/event": "Declare queue and start consumers automatically."
  891. },
  892. "type": "library",
  893. "extra": {
  894. "branch-alias": {
  895. "dev-master": "3.1-dev"
  896. },
  897. "hyperf": {
  898. "config": "Hyperf\\Amqp\\ConfigProvider"
  899. }
  900. },
  901. "autoload": {
  902. "psr-4": {
  903. "Hyperf\\Amqp\\": "src/"
  904. }
  905. },
  906. "notification-url": "https://packagist.org/downloads/",
  907. "license": [
  908. "MIT"
  909. ],
  910. "description": "A amqplib for hyperf.",
  911. "homepage": "https://hyperf.io",
  912. "keywords": [
  913. "AMQP",
  914. "hyperf",
  915. "php"
  916. ],
  917. "support": {
  918. "docs": "https://hyperf.wiki",
  919. "issues": "https://github.com/hyperf/hyperf/issues",
  920. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  921. "source": "https://github.com/hyperf/hyperf"
  922. },
  923. "funding": [
  924. {
  925. "url": "https://hyperf.wiki/#/zh-cn/donate",
  926. "type": "custom"
  927. },
  928. {
  929. "url": "https://opencollective.com/hyperf",
  930. "type": "open_collective"
  931. }
  932. ],
  933. "time": "2024-09-25T02:54:12+00:00"
  934. },
  935. {
  936. "name": "hyperf/async-queue",
  937. "version": "v3.1.42",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/hyperf/async-queue.git",
  941. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  946. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "hyperf/codec": "~3.1.0",
  951. "hyperf/collection": "~3.1.0",
  952. "hyperf/command": "~3.1.0",
  953. "hyperf/contract": "~3.1.0",
  954. "hyperf/support": "~3.1.0",
  955. "hyperf/utils": "~3.1.0",
  956. "php": ">=8.1",
  957. "psr/container": "^1.0 || ^2.0",
  958. "psr/event-dispatcher": "^1.0"
  959. },
  960. "suggest": {
  961. "hyperf/di": "Required to use annotations.",
  962. "hyperf/event": "Required to dispatch a event.",
  963. "hyperf/logger": "Required to use QueueHandleListener.",
  964. "hyperf/process": "Auto register the consumer process for server."
  965. },
  966. "type": "library",
  967. "extra": {
  968. "branch-alias": {
  969. "dev-master": "3.1-dev"
  970. },
  971. "hyperf": {
  972. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  973. }
  974. },
  975. "autoload": {
  976. "files": [
  977. "src/Functions.php"
  978. ],
  979. "psr-4": {
  980. "Hyperf\\AsyncQueue\\": "src/"
  981. }
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "MIT"
  986. ],
  987. "description": "A async queue component for hyperf.",
  988. "homepage": "https://hyperf.io",
  989. "keywords": [
  990. "async-queue",
  991. "hyperf",
  992. "php"
  993. ],
  994. "support": {
  995. "docs": "https://hyperf.wiki",
  996. "issues": "https://github.com/hyperf/hyperf/issues",
  997. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  998. "source": "https://github.com/hyperf/hyperf"
  999. },
  1000. "funding": [
  1001. {
  1002. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1003. "type": "custom"
  1004. },
  1005. {
  1006. "url": "https://opencollective.com/hyperf",
  1007. "type": "open_collective"
  1008. }
  1009. ],
  1010. "time": "2024-09-25T02:54:12+00:00"
  1011. },
  1012. {
  1013. "name": "hyperf/cache",
  1014. "version": "v3.1.43",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/hyperf/cache.git",
  1018. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1023. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "hyperf/codec": "~3.1.0",
  1028. "hyperf/collection": "~3.1.0",
  1029. "hyperf/contract": "~3.1.0",
  1030. "hyperf/support": "~3.1.0",
  1031. "hyperf/utils": "~3.1.0",
  1032. "php": ">=8.1",
  1033. "psr/container": "^1.0 || ^2.0",
  1034. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1035. },
  1036. "suggest": {
  1037. "hyperf/di": "Use cache annotations.",
  1038. "hyperf/event": "Use listener to delete annotation cache."
  1039. },
  1040. "type": "library",
  1041. "extra": {
  1042. "branch-alias": {
  1043. "dev-master": "3.1-dev"
  1044. },
  1045. "hyperf": {
  1046. "config": "Hyperf\\Cache\\ConfigProvider"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-4": {
  1051. "Hyperf\\Cache\\": "src/"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "description": "A cache component for hyperf.",
  1059. "homepage": "https://hyperf.io",
  1060. "keywords": [
  1061. "cache",
  1062. "hyperf",
  1063. "php"
  1064. ],
  1065. "support": {
  1066. "docs": "https://hyperf.wiki",
  1067. "issues": "https://github.com/hyperf/hyperf/issues",
  1068. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1069. "source": "https://github.com/hyperf/hyperf"
  1070. },
  1071. "funding": [
  1072. {
  1073. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1074. "type": "custom"
  1075. },
  1076. {
  1077. "url": "https://opencollective.com/hyperf",
  1078. "type": "open_collective"
  1079. }
  1080. ],
  1081. "time": "2024-10-09T10:22:39+00:00"
  1082. },
  1083. {
  1084. "name": "hyperf/code-parser",
  1085. "version": "v3.1.42",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/hyperf/code-parser.git",
  1089. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1094. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1095. "shasum": ""
  1096. },
  1097. "require": {
  1098. "hyperf/collection": "~3.1.0",
  1099. "hyperf/stringable": "~3.1.0",
  1100. "hyperf/support": "~3.1.0",
  1101. "php": ">=8.1"
  1102. },
  1103. "suggest": {
  1104. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1105. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "branch-alias": {
  1110. "dev-master": "3.1-dev"
  1111. }
  1112. },
  1113. "autoload": {
  1114. "psr-4": {
  1115. "Hyperf\\CodeParser\\": "src/"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "description": "A code parser component for Hyperf.",
  1123. "homepage": "https://hyperf.io",
  1124. "keywords": [
  1125. "code-parser",
  1126. "hyperf",
  1127. "php",
  1128. "swoole"
  1129. ],
  1130. "support": {
  1131. "docs": "https://hyperf.wiki",
  1132. "issues": "https://github.com/hyperf/hyperf/issues",
  1133. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1134. "source": "https://github.com/hyperf/hyperf"
  1135. },
  1136. "funding": [
  1137. {
  1138. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1139. "type": "custom"
  1140. },
  1141. {
  1142. "url": "https://opencollective.com/hyperf",
  1143. "type": "open_collective"
  1144. }
  1145. ],
  1146. "time": "2024-09-25T02:54:12+00:00"
  1147. },
  1148. {
  1149. "name": "hyperf/codec",
  1150. "version": "v3.1.42",
  1151. "source": {
  1152. "type": "git",
  1153. "url": "https://github.com/hyperf/codec.git",
  1154. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1155. },
  1156. "dist": {
  1157. "type": "zip",
  1158. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1159. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1160. "shasum": ""
  1161. },
  1162. "require": {
  1163. "ext-json": "*",
  1164. "ext-xml": "*",
  1165. "hyperf/contract": "~3.1.0",
  1166. "php": ">=8.1"
  1167. },
  1168. "suggest": {
  1169. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1170. },
  1171. "type": "library",
  1172. "extra": {
  1173. "branch-alias": {
  1174. "dev-master": "3.1-dev"
  1175. }
  1176. },
  1177. "autoload": {
  1178. "psr-4": {
  1179. "Hyperf\\Codec\\": "src/"
  1180. }
  1181. },
  1182. "notification-url": "https://packagist.org/downloads/",
  1183. "license": [
  1184. "MIT"
  1185. ],
  1186. "description": "A codec component for Hyperf.",
  1187. "homepage": "https://hyperf.io",
  1188. "keywords": [
  1189. "codec",
  1190. "hyperf",
  1191. "php",
  1192. "swoole"
  1193. ],
  1194. "support": {
  1195. "docs": "https://hyperf.wiki",
  1196. "issues": "https://github.com/hyperf/hyperf/issues",
  1197. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1198. "source": "https://github.com/hyperf/hyperf"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1203. "type": "custom"
  1204. },
  1205. {
  1206. "url": "https://opencollective.com/hyperf",
  1207. "type": "open_collective"
  1208. }
  1209. ],
  1210. "time": "2024-09-25T02:54:12+00:00"
  1211. },
  1212. {
  1213. "name": "hyperf/collection",
  1214. "version": "v3.1.44",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/hyperf/collection.git",
  1218. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1223. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "hyperf/conditionable": "~3.1.0",
  1228. "hyperf/contract": "~3.1.0",
  1229. "hyperf/macroable": "~3.1.0",
  1230. "hyperf/stringable": "~3.1.0",
  1231. "php": ">=8.1"
  1232. },
  1233. "type": "library",
  1234. "extra": {
  1235. "branch-alias": {
  1236. "dev-master": "3.1-dev"
  1237. }
  1238. },
  1239. "autoload": {
  1240. "files": [
  1241. "src/Functions.php"
  1242. ],
  1243. "psr-4": {
  1244. "Hyperf\\Collection\\": "src/"
  1245. }
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "MIT"
  1250. ],
  1251. "description": "Hyperf Collection package which come from illuminate/collections",
  1252. "homepage": "https://hyperf.io",
  1253. "keywords": [
  1254. "collection",
  1255. "hyperf",
  1256. "php",
  1257. "swoole"
  1258. ],
  1259. "support": {
  1260. "docs": "https://hyperf.wiki",
  1261. "issues": "https://github.com/hyperf/hyperf/issues",
  1262. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1263. "source": "https://github.com/hyperf/hyperf"
  1264. },
  1265. "funding": [
  1266. {
  1267. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1268. "type": "custom"
  1269. },
  1270. {
  1271. "url": "https://opencollective.com/hyperf",
  1272. "type": "open_collective"
  1273. }
  1274. ],
  1275. "time": "2024-10-23T10:12:23+00:00"
  1276. },
  1277. {
  1278. "name": "hyperf/command",
  1279. "version": "v3.1.42",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/hyperf/command.git",
  1283. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1288. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "hyperf/collection": "~3.1.0",
  1293. "hyperf/context": "~3.1.0",
  1294. "hyperf/contract": "~3.1.0",
  1295. "hyperf/coroutine": "~3.1.0",
  1296. "hyperf/di": "~3.1.0",
  1297. "hyperf/stringable": "~3.1.0",
  1298. "hyperf/support": "~3.1.0",
  1299. "hyperf/tappable": "~3.1.0",
  1300. "php": ">=8.1",
  1301. "psr/event-dispatcher": "^1.0",
  1302. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1303. },
  1304. "suggest": {
  1305. "hyperf/di": "Required to use annotations.",
  1306. "hyperf/event": "Required to use listeners."
  1307. },
  1308. "type": "library",
  1309. "extra": {
  1310. "branch-alias": {
  1311. "dev-master": "3.1-dev"
  1312. },
  1313. "hyperf": {
  1314. "config": "Hyperf\\Command\\ConfigProvider"
  1315. }
  1316. },
  1317. "autoload": {
  1318. "psr-4": {
  1319. "Hyperf\\Command\\": "src/"
  1320. }
  1321. },
  1322. "notification-url": "https://packagist.org/downloads/",
  1323. "license": [
  1324. "MIT"
  1325. ],
  1326. "description": "Command for hyperf",
  1327. "keywords": [
  1328. "command",
  1329. "php",
  1330. "swoole"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/hyperf/command/issues",
  1334. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1335. },
  1336. "funding": [
  1337. {
  1338. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1339. "type": "custom"
  1340. },
  1341. {
  1342. "url": "https://opencollective.com/hyperf",
  1343. "type": "open_collective"
  1344. }
  1345. ],
  1346. "time": "2024-09-25T02:54:12+00:00"
  1347. },
  1348. {
  1349. "name": "hyperf/conditionable",
  1350. "version": "v3.1.42",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/hyperf/conditionable.git",
  1354. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1359. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "php": ">=8.1"
  1364. },
  1365. "type": "library",
  1366. "extra": {
  1367. "branch-alias": {
  1368. "dev-master": "3.1-dev"
  1369. }
  1370. },
  1371. "autoload": {
  1372. "psr-4": {
  1373. "Hyperf\\Conditionable\\": "src/"
  1374. }
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1381. "homepage": "https://hyperf.io",
  1382. "keywords": [
  1383. "conditionable",
  1384. "hyperf",
  1385. "php",
  1386. "swoole"
  1387. ],
  1388. "support": {
  1389. "docs": "https://hyperf.wiki",
  1390. "issues": "https://github.com/hyperf/hyperf/issues",
  1391. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1392. "source": "https://github.com/hyperf/hyperf"
  1393. },
  1394. "funding": [
  1395. {
  1396. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1397. "type": "custom"
  1398. },
  1399. {
  1400. "url": "https://opencollective.com/hyperf",
  1401. "type": "open_collective"
  1402. }
  1403. ],
  1404. "time": "2024-09-25T02:54:12+00:00"
  1405. },
  1406. {
  1407. "name": "hyperf/config",
  1408. "version": "v3.1.42",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/hyperf/config.git",
  1412. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1417. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "hyperf/collection": "~3.1.0",
  1422. "hyperf/contract": "~3.1.0",
  1423. "hyperf/support": "~3.1.0",
  1424. "php": ">=8.1",
  1425. "psr/container": "^1.0 || ^2.0",
  1426. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1427. },
  1428. "suggest": {
  1429. "hyperf/context": "Required to use config()",
  1430. "hyperf/di": "Allows using @Value annotation",
  1431. "hyperf/event": "Allows using @Value annotation",
  1432. "hyperf/framework": "Allows using @Value annotation",
  1433. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-master": "3.1-dev"
  1439. },
  1440. "hyperf": {
  1441. "config": "Hyperf\\Config\\ConfigProvider"
  1442. }
  1443. },
  1444. "autoload": {
  1445. "files": [
  1446. "./src/Functions.php"
  1447. ],
  1448. "psr-4": {
  1449. "Hyperf\\Config\\": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "description": "An independent component that provides configuration container.",
  1457. "homepage": "https://hyperf.io",
  1458. "keywords": [
  1459. "config",
  1460. "configuration",
  1461. "hyperf",
  1462. "php",
  1463. "swoole"
  1464. ],
  1465. "support": {
  1466. "docs": "https://hyperf.wiki",
  1467. "issues": "https://github.com/hyperf/hyperf/issues",
  1468. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1469. "source": "https://github.com/hyperf/hyperf"
  1470. },
  1471. "funding": [
  1472. {
  1473. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1474. "type": "custom"
  1475. },
  1476. {
  1477. "url": "https://opencollective.com/hyperf",
  1478. "type": "open_collective"
  1479. }
  1480. ],
  1481. "time": "2024-09-25T02:54:12+00:00"
  1482. },
  1483. {
  1484. "name": "hyperf/constants",
  1485. "version": "v3.1.42",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/hyperf/constants.git",
  1489. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1494. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1495. "shasum": ""
  1496. },
  1497. "require": {
  1498. "hyperf/di": "~3.1.0",
  1499. "hyperf/support": "~3.1.0",
  1500. "hyperf/utils": "~3.1.0",
  1501. "php": ">=8.1"
  1502. },
  1503. "suggest": {
  1504. "hyperf/translation": "Required to use translation."
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "3.1-dev"
  1510. },
  1511. "hyperf": {
  1512. "config": "Hyperf\\Constants\\ConfigProvider"
  1513. }
  1514. },
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Hyperf\\Constants\\": "src/"
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "description": "A constants component for hyperf.",
  1525. "homepage": "https://hyperf.io",
  1526. "keywords": [
  1527. "constants",
  1528. "hyperf",
  1529. "php"
  1530. ],
  1531. "support": {
  1532. "docs": "https://hyperf.wiki",
  1533. "issues": "https://github.com/hyperf/hyperf/issues",
  1534. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1535. "source": "https://github.com/hyperf/hyperf"
  1536. },
  1537. "funding": [
  1538. {
  1539. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1540. "type": "custom"
  1541. },
  1542. {
  1543. "url": "https://opencollective.com/hyperf",
  1544. "type": "open_collective"
  1545. }
  1546. ],
  1547. "time": "2024-09-25T02:54:12+00:00"
  1548. },
  1549. {
  1550. "name": "hyperf/context",
  1551. "version": "v3.1.42",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/hyperf/context.git",
  1555. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1560. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "hyperf/engine": "^2.0",
  1565. "php": ">=8.1"
  1566. },
  1567. "suggest": {
  1568. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1569. },
  1570. "type": "library",
  1571. "extra": {
  1572. "branch-alias": {
  1573. "dev-master": "3.1-dev"
  1574. }
  1575. },
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Hyperf\\Context\\": "src/"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "description": "A coroutine/application context library.",
  1586. "homepage": "https://hyperf.io",
  1587. "keywords": [
  1588. "Context",
  1589. "hyperf",
  1590. "php",
  1591. "swoole"
  1592. ],
  1593. "support": {
  1594. "docs": "https://hyperf.wiki",
  1595. "issues": "https://github.com/hyperf/hyperf/issues",
  1596. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1597. "source": "https://github.com/hyperf/hyperf"
  1598. },
  1599. "funding": [
  1600. {
  1601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1602. "type": "custom"
  1603. },
  1604. {
  1605. "url": "https://opencollective.com/hyperf",
  1606. "type": "open_collective"
  1607. }
  1608. ],
  1609. "time": "2024-09-25T02:54:12+00:00"
  1610. },
  1611. {
  1612. "name": "hyperf/contract",
  1613. "version": "v3.1.42",
  1614. "source": {
  1615. "type": "git",
  1616. "url": "https://github.com/hyperf/contract.git",
  1617. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1618. },
  1619. "dist": {
  1620. "type": "zip",
  1621. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1622. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1623. "shasum": ""
  1624. },
  1625. "require": {
  1626. "php": ">=8.1"
  1627. },
  1628. "type": "library",
  1629. "extra": {
  1630. "branch-alias": {
  1631. "dev-master": "3.1-dev"
  1632. }
  1633. },
  1634. "autoload": {
  1635. "psr-4": {
  1636. "Hyperf\\Contract\\": "src/"
  1637. }
  1638. },
  1639. "notification-url": "https://packagist.org/downloads/",
  1640. "license": [
  1641. "MIT"
  1642. ],
  1643. "description": "The contracts of Hyperf.",
  1644. "homepage": "https://hyperf.io",
  1645. "keywords": [
  1646. "hyperf",
  1647. "php",
  1648. "swoole"
  1649. ],
  1650. "support": {
  1651. "docs": "https://hyperf.wiki",
  1652. "issues": "https://github.com/hyperf/hyperf/issues",
  1653. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1654. "source": "https://github.com/hyperf/hyperf"
  1655. },
  1656. "funding": [
  1657. {
  1658. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1659. "type": "custom"
  1660. },
  1661. {
  1662. "url": "https://opencollective.com/hyperf",
  1663. "type": "open_collective"
  1664. }
  1665. ],
  1666. "time": "2024-09-25T02:54:12+00:00"
  1667. },
  1668. {
  1669. "name": "hyperf/coordinator",
  1670. "version": "v3.1.42",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/hyperf/coordinator.git",
  1674. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1679. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "hyperf/engine": "^2.0",
  1684. "php": ">=8.1"
  1685. },
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-master": "3.1-dev"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "files": [
  1694. "src/Functions.php"
  1695. ],
  1696. "psr-4": {
  1697. "Hyperf\\Coordinator\\": "src/"
  1698. }
  1699. },
  1700. "notification-url": "https://packagist.org/downloads/",
  1701. "license": [
  1702. "MIT"
  1703. ],
  1704. "description": "Hyperf Coordinator",
  1705. "homepage": "https://hyperf.io",
  1706. "keywords": [
  1707. "Coordinator",
  1708. "hyperf",
  1709. "php",
  1710. "swoole"
  1711. ],
  1712. "support": {
  1713. "docs": "https://hyperf.wiki",
  1714. "issues": "https://github.com/hyperf/hyperf/issues",
  1715. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1716. "source": "https://github.com/hyperf/hyperf"
  1717. },
  1718. "funding": [
  1719. {
  1720. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1721. "type": "custom"
  1722. },
  1723. {
  1724. "url": "https://opencollective.com/hyperf",
  1725. "type": "open_collective"
  1726. }
  1727. ],
  1728. "time": "2024-09-25T02:54:12+00:00"
  1729. },
  1730. {
  1731. "name": "hyperf/coroutine",
  1732. "version": "v3.1.42",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/hyperf/coroutine.git",
  1736. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1741. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1742. "shasum": ""
  1743. },
  1744. "require": {
  1745. "hyperf/context": "~3.1.0",
  1746. "hyperf/contract": "~3.1.0",
  1747. "hyperf/engine": "^2.0",
  1748. "php": ">=8.1"
  1749. },
  1750. "type": "library",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-master": "3.1-dev"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "files": [
  1758. "src/Functions.php"
  1759. ],
  1760. "psr-4": {
  1761. "Hyperf\\Coroutine\\": "src/"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "MIT"
  1767. ],
  1768. "description": "Hyperf Coroutine",
  1769. "homepage": "https://hyperf.io",
  1770. "keywords": [
  1771. "coroutine",
  1772. "hyperf",
  1773. "php",
  1774. "swoole"
  1775. ],
  1776. "support": {
  1777. "docs": "https://hyperf.wiki",
  1778. "issues": "https://github.com/hyperf/hyperf/issues",
  1779. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1780. "source": "https://github.com/hyperf/hyperf"
  1781. },
  1782. "funding": [
  1783. {
  1784. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1785. "type": "custom"
  1786. },
  1787. {
  1788. "url": "https://opencollective.com/hyperf",
  1789. "type": "open_collective"
  1790. }
  1791. ],
  1792. "time": "2024-09-25T02:54:12+00:00"
  1793. },
  1794. {
  1795. "name": "hyperf/crontab",
  1796. "version": "v3.1.42",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://github.com/hyperf/crontab.git",
  1800. "reference": "be1187515aabbfe96b2f6a5330b4ddd742e971c7"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://api.github.com/repos/hyperf/crontab/zipball/be1187515aabbfe96b2f6a5330b4ddd742e971c7",
  1805. "reference": "be1187515aabbfe96b2f6a5330b4ddd742e971c7",
  1806. "shasum": ""
  1807. },
  1808. "require": {
  1809. "hyperf/conditionable": "~3.1.0",
  1810. "hyperf/framework": "~3.1.0",
  1811. "hyperf/support": "~3.1.0",
  1812. "hyperf/tappable": "~3.1.0",
  1813. "hyperf/utils": "~3.1.0",
  1814. "nesbot/carbon": "^2.0",
  1815. "php": ">=8.1"
  1816. },
  1817. "suggest": {
  1818. "hyperf/command": "Required to use command trigger.",
  1819. "hyperf/process": "Auto register the Crontab process for server."
  1820. },
  1821. "type": "library",
  1822. "extra": {
  1823. "branch-alias": {
  1824. "dev-master": "3.1-dev"
  1825. },
  1826. "hyperf": {
  1827. "config": "Hyperf\\Crontab\\ConfigProvider"
  1828. }
  1829. },
  1830. "autoload": {
  1831. "psr-4": {
  1832. "Hyperf\\Crontab\\": "src/"
  1833. }
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "description": "A crontab component for Hyperf.",
  1840. "homepage": "https://hyperf.io",
  1841. "keywords": [
  1842. "crontab",
  1843. "hyperf",
  1844. "php",
  1845. "swoole"
  1846. ],
  1847. "support": {
  1848. "docs": "https://hyperf.wiki",
  1849. "issues": "https://github.com/hyperf/hyperf/issues",
  1850. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1851. "source": "https://github.com/hyperf/hyperf"
  1852. },
  1853. "funding": [
  1854. {
  1855. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1856. "type": "custom"
  1857. },
  1858. {
  1859. "url": "https://opencollective.com/hyperf",
  1860. "type": "open_collective"
  1861. }
  1862. ],
  1863. "time": "2024-09-25T02:54:12+00:00"
  1864. },
  1865. {
  1866. "name": "hyperf/database",
  1867. "version": "v3.1.44",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/hyperf/database.git",
  1871. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1876. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "hyperf/code-parser": "~3.1.0",
  1881. "hyperf/collection": "~3.1.23",
  1882. "hyperf/conditionable": "~3.1.0",
  1883. "hyperf/macroable": "~3.1.0",
  1884. "hyperf/support": "~3.1.0",
  1885. "hyperf/tappable": "~3.1.0",
  1886. "hyperf/utils": "~3.1.0",
  1887. "nesbot/carbon": "^2.0",
  1888. "php": ">=8.1",
  1889. "psr/container": "^1.0 || ^2.0",
  1890. "psr/event-dispatcher": "^1.0"
  1891. },
  1892. "suggest": {
  1893. "doctrine/dbal": "Required to rename columns (^3.0).",
  1894. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1895. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1896. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "branch-alias": {
  1901. "dev-master": "3.1-dev"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Hyperf\\Database\\": "src/"
  1907. }
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "description": "A flexible database library.",
  1914. "homepage": "https://hyperf.io",
  1915. "keywords": [
  1916. "database",
  1917. "hyperf",
  1918. "php"
  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-10-11T10:25:57+00:00"
  1937. },
  1938. {
  1939. "name": "hyperf/db-connection",
  1940. "version": "v3.1.44",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/hyperf/db-connection.git",
  1944. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  1949. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "hyperf/database": "~3.1.0",
  1954. "hyperf/di": "~3.1.0",
  1955. "hyperf/framework": "~3.1.0",
  1956. "hyperf/model-listener": "~3.1.0",
  1957. "hyperf/pool": "~3.1.0",
  1958. "hyperf/support": "~3.1.0",
  1959. "hyperf/utils": "~3.1.0",
  1960. "php": ">=8.1",
  1961. "psr/container": "^1.0 || ^2.0"
  1962. },
  1963. "type": "library",
  1964. "extra": {
  1965. "branch-alias": {
  1966. "dev-master": "3.1-dev"
  1967. },
  1968. "hyperf": {
  1969. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "Hyperf\\DbConnection\\": "src/"
  1975. }
  1976. },
  1977. "notification-url": "https://packagist.org/downloads/",
  1978. "license": [
  1979. "MIT"
  1980. ],
  1981. "description": "A hyperf db connection handler for hyperf/database.",
  1982. "homepage": "https://hyperf.io",
  1983. "keywords": [
  1984. "Connection",
  1985. "database",
  1986. "hyperf",
  1987. "php"
  1988. ],
  1989. "support": {
  1990. "docs": "https://hyperf.wiki",
  1991. "issues": "https://github.com/hyperf/hyperf/issues",
  1992. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1993. "source": "https://github.com/hyperf/hyperf"
  1994. },
  1995. "funding": [
  1996. {
  1997. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1998. "type": "custom"
  1999. },
  2000. {
  2001. "url": "https://opencollective.com/hyperf",
  2002. "type": "open_collective"
  2003. }
  2004. ],
  2005. "time": "2024-10-11T08:58:16+00:00"
  2006. },
  2007. {
  2008. "name": "hyperf/di",
  2009. "version": "v3.1.42",
  2010. "source": {
  2011. "type": "git",
  2012. "url": "https://github.com/hyperf/di.git",
  2013. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2014. },
  2015. "dist": {
  2016. "type": "zip",
  2017. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2018. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2019. "shasum": ""
  2020. },
  2021. "require": {
  2022. "doctrine/instantiator": "^1.0",
  2023. "hyperf/code-parser": "~3.1.0",
  2024. "hyperf/pipeline": "~3.1.0",
  2025. "hyperf/stdlib": "~3.1.0",
  2026. "hyperf/support": "~3.1.0",
  2027. "nikic/php-parser": "^4.1",
  2028. "php": ">=8.1",
  2029. "php-di/phpdoc-reader": "^2.2",
  2030. "psr/container": "^1.0 || ^2.0",
  2031. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2032. "vlucas/phpdotenv": "^5.0"
  2033. },
  2034. "suggest": {
  2035. "ext-pcntl": "Required to scan annotations.",
  2036. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2037. },
  2038. "type": "library",
  2039. "extra": {
  2040. "branch-alias": {
  2041. "dev-master": "3.1-dev"
  2042. },
  2043. "hyperf": {
  2044. "config": "Hyperf\\Di\\ConfigProvider"
  2045. }
  2046. },
  2047. "autoload": {
  2048. "psr-4": {
  2049. "Hyperf\\Di\\": "src/"
  2050. }
  2051. },
  2052. "notification-url": "https://packagist.org/downloads/",
  2053. "license": [
  2054. "MIT"
  2055. ],
  2056. "description": "A DI for Hyperf.",
  2057. "homepage": "https://hyperf.io",
  2058. "keywords": [
  2059. "annotation",
  2060. "di",
  2061. "hyperf",
  2062. "php",
  2063. "swoole"
  2064. ],
  2065. "support": {
  2066. "docs": "https://hyperf.wiki",
  2067. "issues": "https://github.com/hyperf/hyperf/issues",
  2068. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2069. "source": "https://github.com/hyperf/hyperf"
  2070. },
  2071. "funding": [
  2072. {
  2073. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2074. "type": "custom"
  2075. },
  2076. {
  2077. "url": "https://opencollective.com/hyperf",
  2078. "type": "open_collective"
  2079. }
  2080. ],
  2081. "time": "2024-09-25T02:54:12+00:00"
  2082. },
  2083. {
  2084. "name": "hyperf/dispatcher",
  2085. "version": "v3.1.42",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/hyperf/dispatcher.git",
  2089. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2094. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "hyperf/contract": "~3.1.0",
  2099. "php": ">=8.1",
  2100. "psr/container": "^1.0 || ^2.0",
  2101. "psr/http-message": "^1.0 || ^2.0",
  2102. "psr/http-server-middleware": "^1.0"
  2103. },
  2104. "type": "library",
  2105. "extra": {
  2106. "branch-alias": {
  2107. "dev-master": "3.1-dev"
  2108. },
  2109. "hyperf": {
  2110. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2111. }
  2112. },
  2113. "autoload": {
  2114. "psr-4": {
  2115. "Hyperf\\Dispatcher\\": "src/"
  2116. }
  2117. },
  2118. "notification-url": "https://packagist.org/downloads/",
  2119. "license": [
  2120. "MIT"
  2121. ],
  2122. "description": "A HTTP Server for Hyperf.",
  2123. "homepage": "https://hyperf.io",
  2124. "keywords": [
  2125. "dispatcher",
  2126. "filter",
  2127. "hyperf",
  2128. "middleware",
  2129. "php",
  2130. "swoole"
  2131. ],
  2132. "support": {
  2133. "docs": "https://hyperf.wiki",
  2134. "issues": "https://github.com/hyperf/hyperf/issues",
  2135. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2136. "source": "https://github.com/hyperf/hyperf"
  2137. },
  2138. "funding": [
  2139. {
  2140. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2141. "type": "custom"
  2142. },
  2143. {
  2144. "url": "https://opencollective.com/hyperf",
  2145. "type": "open_collective"
  2146. }
  2147. ],
  2148. "time": "2024-09-25T02:54:12+00:00"
  2149. },
  2150. {
  2151. "name": "hyperf/elasticsearch",
  2152. "version": "v3.1.42",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/hyperf/elasticsearch.git",
  2156. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/hyperf/elasticsearch/zipball/ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2161. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2162. "shasum": ""
  2163. },
  2164. "require": {
  2165. "elasticsearch/elasticsearch": "^7.0",
  2166. "hyperf/guzzle": "~3.1.0",
  2167. "php": ">=8.1"
  2168. },
  2169. "type": "library",
  2170. "extra": {
  2171. "branch-alias": {
  2172. "dev-master": "3.1-dev"
  2173. }
  2174. },
  2175. "autoload": {
  2176. "psr-4": {
  2177. "Hyperf\\Elasticsearch\\": "src/"
  2178. }
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "description": "Elasticsearch client for hyperf",
  2185. "keywords": [
  2186. "elasticsearch",
  2187. "php",
  2188. "swoole"
  2189. ],
  2190. "support": {
  2191. "issues": "https://github.com/hyperf/elasticsearch/issues",
  2192. "source": "https://github.com/hyperf/elasticsearch/tree/v3.1.42"
  2193. },
  2194. "funding": [
  2195. {
  2196. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2197. "type": "custom"
  2198. },
  2199. {
  2200. "url": "https://opencollective.com/hyperf",
  2201. "type": "open_collective"
  2202. }
  2203. ],
  2204. "time": "2024-09-25T02:54:12+00:00"
  2205. },
  2206. {
  2207. "name": "hyperf/engine",
  2208. "version": "v2.11.0",
  2209. "source": {
  2210. "type": "git",
  2211. "url": "https://github.com/hyperf/engine.git",
  2212. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2213. },
  2214. "dist": {
  2215. "type": "zip",
  2216. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2217. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2218. "shasum": ""
  2219. },
  2220. "require": {
  2221. "hyperf/engine-contract": "~1.10.0",
  2222. "php": ">=8.0"
  2223. },
  2224. "conflict": {
  2225. "ext-swoole": "<5.0"
  2226. },
  2227. "require-dev": {
  2228. "friendsofphp/php-cs-fixer": "^3.0",
  2229. "hyperf/guzzle": "^3.0",
  2230. "hyperf/http-message": "^3.0",
  2231. "mockery/mockery": "^1.5",
  2232. "phpstan/phpstan": "^1.0",
  2233. "phpunit/phpunit": "^9.4",
  2234. "swoole/ide-helper": "5.*"
  2235. },
  2236. "suggest": {
  2237. "ext-sockets": "*",
  2238. "ext-swoole": ">=5.0",
  2239. "hyperf/http-message": "Required to use ResponseEmitter.",
  2240. "psr/http-message": "Required to use WebSocket Frame."
  2241. },
  2242. "type": "library",
  2243. "extra": {
  2244. "branch-alias": {
  2245. "dev-master": "2.11-dev"
  2246. },
  2247. "hyperf": {
  2248. "config": "Hyperf\\Engine\\ConfigProvider"
  2249. }
  2250. },
  2251. "autoload": {
  2252. "files": [
  2253. "src/Functions.php"
  2254. ],
  2255. "psr-4": {
  2256. "Hyperf\\Engine\\": "src/"
  2257. }
  2258. },
  2259. "notification-url": "https://packagist.org/downloads/",
  2260. "license": [
  2261. "MIT"
  2262. ],
  2263. "description": "Coroutine engine provided by swoole.",
  2264. "keywords": [
  2265. "engine",
  2266. "hyperf",
  2267. "php",
  2268. "swoole"
  2269. ],
  2270. "support": {
  2271. "issues": "https://github.com/hyperf/engine/issues",
  2272. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2273. },
  2274. "funding": [
  2275. {
  2276. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2277. "type": "custom"
  2278. },
  2279. {
  2280. "url": "https://opencollective.com/hyperf",
  2281. "type": "open_collective"
  2282. }
  2283. ],
  2284. "time": "2024-04-17T13:36:28+00:00"
  2285. },
  2286. {
  2287. "name": "hyperf/engine-contract",
  2288. "version": "v1.10.1",
  2289. "source": {
  2290. "type": "git",
  2291. "url": "https://github.com/hyperf/engine-contract.git",
  2292. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2293. },
  2294. "dist": {
  2295. "type": "zip",
  2296. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2297. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2298. "shasum": ""
  2299. },
  2300. "require": {
  2301. "php": ">=8.0"
  2302. },
  2303. "require-dev": {
  2304. "friendsofphp/php-cs-fixer": "^3.0",
  2305. "mockery/mockery": "^1.0",
  2306. "phpstan/phpstan": "^1.0",
  2307. "phpunit/phpunit": ">=7.0",
  2308. "psr/http-message": "^1.0",
  2309. "swoole/ide-helper": "^4.5"
  2310. },
  2311. "suggest": {
  2312. "psr/http-message": "Required to use WebSocket Frame."
  2313. },
  2314. "type": "library",
  2315. "extra": {
  2316. "branch-alias": {
  2317. "dev-master": "1.9-dev"
  2318. }
  2319. },
  2320. "autoload": {
  2321. "psr-4": {
  2322. "Hyperf\\Engine\\Contract\\": "src/"
  2323. }
  2324. },
  2325. "notification-url": "https://packagist.org/downloads/",
  2326. "license": [
  2327. "MIT"
  2328. ],
  2329. "description": "Contract for Coroutine Engine",
  2330. "keywords": [
  2331. "contract",
  2332. "coroutine",
  2333. "engine",
  2334. "hyperf",
  2335. "php"
  2336. ],
  2337. "support": {
  2338. "issues": "https://github.com/hyperf/engine-contract/issues",
  2339. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2340. },
  2341. "funding": [
  2342. {
  2343. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2344. "type": "custom"
  2345. },
  2346. {
  2347. "url": "https://opencollective.com/hyperf",
  2348. "type": "open_collective"
  2349. }
  2350. ],
  2351. "time": "2024-04-17T13:34:51+00:00"
  2352. },
  2353. {
  2354. "name": "hyperf/event",
  2355. "version": "v3.1.42",
  2356. "source": {
  2357. "type": "git",
  2358. "url": "https://github.com/hyperf/event.git",
  2359. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2360. },
  2361. "dist": {
  2362. "type": "zip",
  2363. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2364. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2365. "shasum": ""
  2366. },
  2367. "require": {
  2368. "hyperf/contract": "~3.1.0",
  2369. "hyperf/stdlib": "~3.1.0",
  2370. "php": ">=8.1",
  2371. "psr/event-dispatcher": "^1.0"
  2372. },
  2373. "suggest": {
  2374. "hyperf/di": "Required to use annotatioins."
  2375. },
  2376. "type": "library",
  2377. "extra": {
  2378. "branch-alias": {
  2379. "dev-master": "3.1-dev"
  2380. },
  2381. "hyperf": {
  2382. "config": "Hyperf\\Event\\ConfigProvider"
  2383. }
  2384. },
  2385. "autoload": {
  2386. "psr-4": {
  2387. "Hyperf\\Event\\": "src/"
  2388. }
  2389. },
  2390. "notification-url": "https://packagist.org/downloads/",
  2391. "license": [
  2392. "MIT"
  2393. ],
  2394. "description": "an event manager that implements PSR-14.",
  2395. "homepage": "https://hyperf.io",
  2396. "keywords": [
  2397. "event",
  2398. "hyperf",
  2399. "php",
  2400. "swoole"
  2401. ],
  2402. "support": {
  2403. "docs": "https://hyperf.wiki",
  2404. "issues": "https://github.com/hyperf/hyperf/issues",
  2405. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2406. "source": "https://github.com/hyperf/hyperf"
  2407. },
  2408. "funding": [
  2409. {
  2410. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2411. "type": "custom"
  2412. },
  2413. {
  2414. "url": "https://opencollective.com/hyperf",
  2415. "type": "open_collective"
  2416. }
  2417. ],
  2418. "time": "2024-09-25T02:54:12+00:00"
  2419. },
  2420. {
  2421. "name": "hyperf/exception-handler",
  2422. "version": "v3.1.42",
  2423. "source": {
  2424. "type": "git",
  2425. "url": "https://github.com/hyperf/exception-handler.git",
  2426. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2427. },
  2428. "dist": {
  2429. "type": "zip",
  2430. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2431. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2432. "shasum": ""
  2433. },
  2434. "require": {
  2435. "hyperf/context": "~3.1.0",
  2436. "hyperf/contract": "~3.1.0",
  2437. "hyperf/dispatcher": "~3.1.0",
  2438. "hyperf/http-message": "~3.1.0",
  2439. "hyperf/stdlib": "~3.1.0",
  2440. "hyperf/support": "~3.1.0",
  2441. "php": ">=8.1",
  2442. "psr/container": "^1.0 || ^2.0",
  2443. "psr/http-message": "^1.0 || ^2.0",
  2444. "swow/psr7-plus": "^1.0"
  2445. },
  2446. "suggest": {
  2447. "hyperf/di": "Required to use #[ExceptionHandler]",
  2448. "hyperf/event": "Required to use listeners",
  2449. "hyperf/framework": "Required to use listeners",
  2450. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2451. },
  2452. "type": "library",
  2453. "extra": {
  2454. "branch-alias": {
  2455. "dev-master": "3.1-dev"
  2456. },
  2457. "hyperf": {
  2458. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2459. }
  2460. },
  2461. "autoload": {
  2462. "psr-4": {
  2463. "Hyperf\\ExceptionHandler\\": "src/"
  2464. }
  2465. },
  2466. "notification-url": "https://packagist.org/downloads/",
  2467. "license": [
  2468. "MIT"
  2469. ],
  2470. "description": "Exception handler for hyperf",
  2471. "homepage": "https://hyperf.io",
  2472. "keywords": [
  2473. "exception-handler",
  2474. "php",
  2475. "swoole"
  2476. ],
  2477. "support": {
  2478. "docs": "https://hyperf.wiki",
  2479. "issues": "https://github.com/hyperf/hyperf/issues",
  2480. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2481. "source": "https://github.com/hyperf/hyperf"
  2482. },
  2483. "funding": [
  2484. {
  2485. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2486. "type": "custom"
  2487. },
  2488. {
  2489. "url": "https://opencollective.com/hyperf",
  2490. "type": "open_collective"
  2491. }
  2492. ],
  2493. "time": "2024-09-25T02:54:12+00:00"
  2494. },
  2495. {
  2496. "name": "hyperf/framework",
  2497. "version": "v3.1.42",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/hyperf/framework.git",
  2501. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2506. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2507. "shasum": ""
  2508. },
  2509. "require": {
  2510. "fig/http-message-util": "^1.1.2",
  2511. "hyperf/contract": "~3.1.0",
  2512. "hyperf/coordinator": "~3.1.0",
  2513. "hyperf/coroutine": "~3.1.0",
  2514. "php": ">=8.1",
  2515. "psr/container": "^1.0 || ^2.0",
  2516. "psr/event-dispatcher": "^1.0",
  2517. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2518. },
  2519. "suggest": {
  2520. "ext-swoole": "Required to use swoole engine.",
  2521. "hyperf/command": "Required to use Command annotation.",
  2522. "hyperf/di": "Required to use Command annotation.",
  2523. "hyperf/dispatcher": "Required to use BootApplication event.",
  2524. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2525. },
  2526. "type": "library",
  2527. "extra": {
  2528. "branch-alias": {
  2529. "dev-master": "3.1-dev"
  2530. },
  2531. "hyperf": {
  2532. "config": "Hyperf\\Framework\\ConfigProvider"
  2533. }
  2534. },
  2535. "autoload": {
  2536. "psr-4": {
  2537. "Hyperf\\Framework\\": "src/"
  2538. }
  2539. },
  2540. "notification-url": "https://packagist.org/downloads/",
  2541. "license": [
  2542. "MIT"
  2543. ],
  2544. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2545. "homepage": "https://hyperf.io",
  2546. "keywords": [
  2547. "Microservice",
  2548. "framework",
  2549. "hyperf",
  2550. "middleware",
  2551. "php",
  2552. "swoole"
  2553. ],
  2554. "support": {
  2555. "docs": "https://hyperf.wiki",
  2556. "issues": "https://github.com/hyperf/hyperf/issues",
  2557. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2558. "source": "https://github.com/hyperf/hyperf"
  2559. },
  2560. "funding": [
  2561. {
  2562. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2563. "type": "custom"
  2564. },
  2565. {
  2566. "url": "https://opencollective.com/hyperf",
  2567. "type": "open_collective"
  2568. }
  2569. ],
  2570. "time": "2024-09-25T02:54:12+00:00"
  2571. },
  2572. {
  2573. "name": "hyperf/guzzle",
  2574. "version": "v3.1.42",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/hyperf/guzzle.git",
  2578. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2583. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2588. "php": ">=8.1",
  2589. "psr/container": "^1.0 || ^2.0",
  2590. "psr/http-message": "^1.0 || ^2.0"
  2591. },
  2592. "suggest": {
  2593. "ext-curl": "Required for CURL handler support",
  2594. "hyperf/pool": "Required to use pool handler."
  2595. },
  2596. "type": "library",
  2597. "extra": {
  2598. "branch-alias": {
  2599. "dev-master": "3.1-dev"
  2600. },
  2601. "hyperf": {
  2602. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2603. }
  2604. },
  2605. "autoload": {
  2606. "psr-4": {
  2607. "Hyperf\\Guzzle\\": "src/"
  2608. }
  2609. },
  2610. "notification-url": "https://packagist.org/downloads/",
  2611. "license": [
  2612. "MIT"
  2613. ],
  2614. "description": "Swoole coroutine handler for guzzle",
  2615. "keywords": [
  2616. "Guzzle",
  2617. "handler",
  2618. "php",
  2619. "swoole"
  2620. ],
  2621. "support": {
  2622. "issues": "https://github.com/hyperf/guzzle/issues",
  2623. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2624. },
  2625. "funding": [
  2626. {
  2627. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2628. "type": "custom"
  2629. },
  2630. {
  2631. "url": "https://opencollective.com/hyperf",
  2632. "type": "open_collective"
  2633. }
  2634. ],
  2635. "time": "2024-09-25T02:54:12+00:00"
  2636. },
  2637. {
  2638. "name": "hyperf/http-message",
  2639. "version": "v3.1.42",
  2640. "source": {
  2641. "type": "git",
  2642. "url": "https://github.com/hyperf/http-message.git",
  2643. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2644. },
  2645. "dist": {
  2646. "type": "zip",
  2647. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2648. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2649. "shasum": ""
  2650. },
  2651. "require": {
  2652. "hyperf/codec": "~3.1.0",
  2653. "hyperf/engine": "^2.11",
  2654. "hyperf/support": "~3.1.0",
  2655. "laminas/laminas-mime": "^2.7",
  2656. "php": ">=8.1",
  2657. "psr/http-message": "^1.0 || ^2.0",
  2658. "swow/psr7-plus": "^1.0"
  2659. },
  2660. "suggest": {
  2661. "psr/container": "Required to replace RequestParserInterface."
  2662. },
  2663. "type": "library",
  2664. "extra": {
  2665. "branch-alias": {
  2666. "dev-master": "3.1-dev"
  2667. },
  2668. "hyperf": {
  2669. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2670. }
  2671. },
  2672. "autoload": {
  2673. "psr-4": {
  2674. "Hyperf\\HttpMessage\\": "src/"
  2675. }
  2676. },
  2677. "notification-url": "https://packagist.org/downloads/",
  2678. "license": [
  2679. "MIT"
  2680. ],
  2681. "description": "microservice framework base on swoole",
  2682. "keywords": [
  2683. "http-message",
  2684. "hyperf",
  2685. "php",
  2686. "swoole"
  2687. ],
  2688. "support": {
  2689. "issues": "https://github.com/hyperf/http-message/issues",
  2690. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  2691. },
  2692. "funding": [
  2693. {
  2694. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2695. "type": "custom"
  2696. },
  2697. {
  2698. "url": "https://opencollective.com/hyperf",
  2699. "type": "open_collective"
  2700. }
  2701. ],
  2702. "time": "2024-09-25T02:54:12+00:00"
  2703. },
  2704. {
  2705. "name": "hyperf/http-server",
  2706. "version": "v3.1.42",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/hyperf/http-server.git",
  2710. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2715. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2716. "shasum": ""
  2717. },
  2718. "require": {
  2719. "hyperf/codec": "~3.1.0",
  2720. "hyperf/collection": "~3.1.0",
  2721. "hyperf/context": "~3.1.0",
  2722. "hyperf/contract": "~3.1.0",
  2723. "hyperf/coroutine": "~3.1.0",
  2724. "hyperf/dispatcher": "~3.1.0",
  2725. "hyperf/event": "~3.1.0",
  2726. "hyperf/exception-handler": "~3.1.0",
  2727. "hyperf/http-message": "~3.1.0",
  2728. "hyperf/macroable": "~3.1.0",
  2729. "hyperf/serializer": "~3.1.0",
  2730. "hyperf/server": "~3.1.0",
  2731. "hyperf/stdlib": "~3.1.0",
  2732. "hyperf/support": "~3.1.0",
  2733. "nikic/fast-route": "^1.3",
  2734. "php": ">=8.1",
  2735. "psr/container": "^1.0 || ^2.0",
  2736. "swow/psr7-plus": "^1.0"
  2737. },
  2738. "suggest": {
  2739. "hyperf/di": "Required to use annotations."
  2740. },
  2741. "type": "library",
  2742. "extra": {
  2743. "branch-alias": {
  2744. "dev-master": "3.1-dev"
  2745. },
  2746. "hyperf": {
  2747. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2748. }
  2749. },
  2750. "autoload": {
  2751. "psr-4": {
  2752. "Hyperf\\HttpServer\\": "src/"
  2753. }
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "MIT"
  2758. ],
  2759. "description": "A HTTP Server for Hyperf.",
  2760. "homepage": "https://hyperf.io",
  2761. "keywords": [
  2762. "http",
  2763. "http-server",
  2764. "hyperf",
  2765. "php",
  2766. "swoole"
  2767. ],
  2768. "support": {
  2769. "docs": "https://hyperf.wiki",
  2770. "issues": "https://github.com/hyperf/hyperf/issues",
  2771. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2772. "source": "https://github.com/hyperf/hyperf"
  2773. },
  2774. "funding": [
  2775. {
  2776. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2777. "type": "custom"
  2778. },
  2779. {
  2780. "url": "https://opencollective.com/hyperf",
  2781. "type": "open_collective"
  2782. }
  2783. ],
  2784. "time": "2024-09-25T02:54:12+00:00"
  2785. },
  2786. {
  2787. "name": "hyperf/json-rpc",
  2788. "version": "v3.1.42",
  2789. "source": {
  2790. "type": "git",
  2791. "url": "https://github.com/hyperf/json-rpc.git",
  2792. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  2793. },
  2794. "dist": {
  2795. "type": "zip",
  2796. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2797. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2798. "shasum": ""
  2799. },
  2800. "require": {
  2801. "hyperf/codec": "~3.1.0",
  2802. "hyperf/context": "~3.1.0",
  2803. "hyperf/contract": "~3.1.0",
  2804. "hyperf/engine": "^2.0",
  2805. "hyperf/http-message": "~3.1.0",
  2806. "hyperf/load-balancer": "~3.1.0",
  2807. "hyperf/rpc": "~3.1.0",
  2808. "hyperf/serializer": "~3.1.0",
  2809. "hyperf/support": "~3.1.0",
  2810. "hyperf/utils": "~3.1.0",
  2811. "php": ">=8.1",
  2812. "psr/container": "^1.0 || ^2.0",
  2813. "swow/psr7-plus": "^1.0"
  2814. },
  2815. "suggest": {
  2816. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2817. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2818. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2819. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2820. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2821. },
  2822. "type": "library",
  2823. "extra": {
  2824. "branch-alias": {
  2825. "dev-master": "3.1-dev"
  2826. },
  2827. "hyperf": {
  2828. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2829. }
  2830. },
  2831. "autoload": {
  2832. "psr-4": {
  2833. "Hyperf\\JsonRpc\\": "src/"
  2834. }
  2835. },
  2836. "notification-url": "https://packagist.org/downloads/",
  2837. "license": [
  2838. "MIT"
  2839. ],
  2840. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2841. "homepage": "https://hyperf.io",
  2842. "keywords": [
  2843. "hyperf",
  2844. "json-rpc",
  2845. "php",
  2846. "swoole"
  2847. ],
  2848. "support": {
  2849. "docs": "https://hyperf.wiki",
  2850. "issues": "https://github.com/hyperf/hyperf/issues",
  2851. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2852. "source": "https://github.com/hyperf/hyperf"
  2853. },
  2854. "funding": [
  2855. {
  2856. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2857. "type": "custom"
  2858. },
  2859. {
  2860. "url": "https://opencollective.com/hyperf",
  2861. "type": "open_collective"
  2862. }
  2863. ],
  2864. "time": "2024-09-25T02:54:12+00:00"
  2865. },
  2866. {
  2867. "name": "hyperf/load-balancer",
  2868. "version": "v3.1.42",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/hyperf/load-balancer.git",
  2872. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2877. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "hyperf/coordinator": "~3.1.0",
  2882. "hyperf/coroutine": "~3.1.0",
  2883. "markrogoyski/math-php": "^2.0",
  2884. "php": ">=8.1",
  2885. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2886. },
  2887. "type": "library",
  2888. "extra": {
  2889. "branch-alias": {
  2890. "dev-master": "3.1-dev"
  2891. },
  2892. "hyperf": {
  2893. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2894. }
  2895. },
  2896. "autoload": {
  2897. "psr-4": {
  2898. "Hyperf\\LoadBalancer\\": "src/"
  2899. }
  2900. },
  2901. "notification-url": "https://packagist.org/downloads/",
  2902. "license": [
  2903. "MIT"
  2904. ],
  2905. "description": "A load balancer library for Hyperf.",
  2906. "homepage": "https://hyperf.io",
  2907. "keywords": [
  2908. "hyperf",
  2909. "load-balancer",
  2910. "php",
  2911. "swoole"
  2912. ],
  2913. "support": {
  2914. "docs": "https://hyperf.wiki",
  2915. "issues": "https://github.com/hyperf/hyperf/issues",
  2916. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2917. "source": "https://github.com/hyperf/hyperf"
  2918. },
  2919. "funding": [
  2920. {
  2921. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2922. "type": "custom"
  2923. },
  2924. {
  2925. "url": "https://opencollective.com/hyperf",
  2926. "type": "open_collective"
  2927. }
  2928. ],
  2929. "time": "2024-09-25T02:54:12+00:00"
  2930. },
  2931. {
  2932. "name": "hyperf/logger",
  2933. "version": "v3.1.42",
  2934. "source": {
  2935. "type": "git",
  2936. "url": "https://github.com/hyperf/logger.git",
  2937. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2938. },
  2939. "dist": {
  2940. "type": "zip",
  2941. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2942. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  2943. "shasum": ""
  2944. },
  2945. "require": {
  2946. "hyperf/contract": "~3.1.0",
  2947. "hyperf/support": "~3.1.0",
  2948. "hyperf/utils": "~3.1.0",
  2949. "monolog/monolog": "^2.7 || ^3.1",
  2950. "php": ">=8.1",
  2951. "psr/container": "^1.0 || ^2.0",
  2952. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2953. },
  2954. "type": "library",
  2955. "extra": {
  2956. "branch-alias": {
  2957. "dev-master": "3.1-dev"
  2958. },
  2959. "hyperf": {
  2960. "config": "Hyperf\\Logger\\ConfigProvider"
  2961. }
  2962. },
  2963. "autoload": {
  2964. "psr-4": {
  2965. "Hyperf\\Logger\\": "src/"
  2966. }
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "description": "A logger component for hyperf.",
  2973. "homepage": "https://hyperf.io",
  2974. "keywords": [
  2975. "hyperf",
  2976. "logger",
  2977. "php"
  2978. ],
  2979. "support": {
  2980. "docs": "https://hyperf.wiki",
  2981. "issues": "https://github.com/hyperf/hyperf/issues",
  2982. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2983. "source": "https://github.com/hyperf/hyperf"
  2984. },
  2985. "funding": [
  2986. {
  2987. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2988. "type": "custom"
  2989. },
  2990. {
  2991. "url": "https://opencollective.com/hyperf",
  2992. "type": "open_collective"
  2993. }
  2994. ],
  2995. "time": "2024-09-25T02:54:12+00:00"
  2996. },
  2997. {
  2998. "name": "hyperf/macroable",
  2999. "version": "v3.1.42",
  3000. "source": {
  3001. "type": "git",
  3002. "url": "https://github.com/hyperf/macroable.git",
  3003. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3004. },
  3005. "dist": {
  3006. "type": "zip",
  3007. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3008. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3009. "shasum": ""
  3010. },
  3011. "require": {
  3012. "php": ">=8.1"
  3013. },
  3014. "type": "library",
  3015. "extra": {
  3016. "branch-alias": {
  3017. "dev-master": "3.1-dev"
  3018. }
  3019. },
  3020. "autoload": {
  3021. "psr-4": {
  3022. "Hyperf\\Macroable\\": "src/"
  3023. }
  3024. },
  3025. "notification-url": "https://packagist.org/downloads/",
  3026. "license": [
  3027. "MIT"
  3028. ],
  3029. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3030. "homepage": "https://hyperf.io",
  3031. "keywords": [
  3032. "hyperf",
  3033. "macroable",
  3034. "php",
  3035. "swoole"
  3036. ],
  3037. "support": {
  3038. "docs": "https://hyperf.wiki",
  3039. "issues": "https://github.com/hyperf/hyperf/issues",
  3040. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3041. "source": "https://github.com/hyperf/hyperf"
  3042. },
  3043. "funding": [
  3044. {
  3045. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3046. "type": "custom"
  3047. },
  3048. {
  3049. "url": "https://opencollective.com/hyperf",
  3050. "type": "open_collective"
  3051. }
  3052. ],
  3053. "time": "2024-09-25T02:54:12+00:00"
  3054. },
  3055. {
  3056. "name": "hyperf/memory",
  3057. "version": "v3.1.42",
  3058. "source": {
  3059. "type": "git",
  3060. "url": "https://github.com/hyperf/memory.git",
  3061. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3062. },
  3063. "dist": {
  3064. "type": "zip",
  3065. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3066. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3067. "shasum": ""
  3068. },
  3069. "require": {
  3070. "php": ">=8.1"
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "3.1-dev"
  3076. },
  3077. "hyperf": {
  3078. "config": "Hyperf\\Memory\\ConfigProvider"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Hyperf\\Memory\\": "src/"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "description": "An independent component that use to operate and manage memory.",
  3091. "homepage": "https://hyperf.io",
  3092. "keywords": [
  3093. "hyperf",
  3094. "memory",
  3095. "php",
  3096. "swoole"
  3097. ],
  3098. "support": {
  3099. "docs": "https://hyperf.wiki",
  3100. "issues": "https://github.com/hyperf/hyperf/issues",
  3101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3102. "source": "https://github.com/hyperf/hyperf"
  3103. },
  3104. "funding": [
  3105. {
  3106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3107. "type": "custom"
  3108. },
  3109. {
  3110. "url": "https://opencollective.com/hyperf",
  3111. "type": "open_collective"
  3112. }
  3113. ],
  3114. "time": "2024-09-25T02:54:12+00:00"
  3115. },
  3116. {
  3117. "name": "hyperf/model-cache",
  3118. "version": "v3.1.42",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/hyperf/model-cache.git",
  3122. "reference": "f1af97e63d12f9e2149bdef478541689cd31775f"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/hyperf/model-cache/zipball/f1af97e63d12f9e2149bdef478541689cd31775f",
  3127. "reference": "f1af97e63d12f9e2149bdef478541689cd31775f",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "hyperf/codec": "~3.1.0",
  3132. "hyperf/contract": "~3.1.0",
  3133. "hyperf/db-connection": "~3.1.0",
  3134. "hyperf/support": "~3.1.0",
  3135. "hyperf/utils": "~3.1.0",
  3136. "php": ">=8.1",
  3137. "psr/container": "^1.0 || ^2.0",
  3138. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3139. },
  3140. "suggest": {
  3141. "hyperf/event": "Required to use DeleteCacheListener."
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "branch-alias": {
  3146. "dev-master": "3.1-dev"
  3147. },
  3148. "hyperf": {
  3149. "config": "Hyperf\\ModelCache\\ConfigProvider"
  3150. }
  3151. },
  3152. "autoload": {
  3153. "psr-4": {
  3154. "Hyperf\\ModelCache\\": "src/"
  3155. }
  3156. },
  3157. "notification-url": "https://packagist.org/downloads/",
  3158. "license": [
  3159. "MIT"
  3160. ],
  3161. "description": "A model cache component for hyperf.",
  3162. "homepage": "https://hyperf.io",
  3163. "keywords": [
  3164. "hyperf",
  3165. "model-cache",
  3166. "php"
  3167. ],
  3168. "support": {
  3169. "docs": "https://hyperf.wiki",
  3170. "issues": "https://github.com/hyperf/hyperf/issues",
  3171. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3172. "source": "https://github.com/hyperf/hyperf"
  3173. },
  3174. "funding": [
  3175. {
  3176. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3177. "type": "custom"
  3178. },
  3179. {
  3180. "url": "https://opencollective.com/hyperf",
  3181. "type": "open_collective"
  3182. }
  3183. ],
  3184. "time": "2024-09-25T02:54:12+00:00"
  3185. },
  3186. {
  3187. "name": "hyperf/model-listener",
  3188. "version": "v3.1.42",
  3189. "source": {
  3190. "type": "git",
  3191. "url": "https://github.com/hyperf/model-listener.git",
  3192. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3193. },
  3194. "dist": {
  3195. "type": "zip",
  3196. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3197. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3198. "shasum": ""
  3199. },
  3200. "require": {
  3201. "hyperf/contract": "~3.1.0",
  3202. "hyperf/database": "~3.1.0",
  3203. "hyperf/di": "~3.1.0",
  3204. "hyperf/event": "~3.1.0",
  3205. "hyperf/support": "~3.1.0",
  3206. "hyperf/utils": "~3.1.0",
  3207. "php": ">=8.1",
  3208. "psr/container": "^1.0 || ^2.0"
  3209. },
  3210. "type": "library",
  3211. "extra": {
  3212. "branch-alias": {
  3213. "dev-master": "3.1-dev"
  3214. },
  3215. "hyperf": {
  3216. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3217. }
  3218. },
  3219. "autoload": {
  3220. "psr-4": {
  3221. "Hyperf\\ModelListener\\": "src/"
  3222. }
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "MIT"
  3227. ],
  3228. "description": "A model listener for Hyperf.",
  3229. "homepage": "https://hyperf.io",
  3230. "keywords": [
  3231. "hyperf",
  3232. "model-listener",
  3233. "php",
  3234. "swoole"
  3235. ],
  3236. "support": {
  3237. "docs": "https://hyperf.wiki",
  3238. "issues": "https://github.com/hyperf/hyperf/issues",
  3239. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3240. "source": "https://github.com/hyperf/hyperf"
  3241. },
  3242. "funding": [
  3243. {
  3244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3245. "type": "custom"
  3246. },
  3247. {
  3248. "url": "https://opencollective.com/hyperf",
  3249. "type": "open_collective"
  3250. }
  3251. ],
  3252. "time": "2024-09-25T02:54:12+00:00"
  3253. },
  3254. {
  3255. "name": "hyperf/paginator",
  3256. "version": "v3.1.42",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/hyperf/paginator.git",
  3260. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3265. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3266. "shasum": ""
  3267. },
  3268. "require": {
  3269. "hyperf/contract": "~3.1.0",
  3270. "hyperf/support": "~3.1.0",
  3271. "hyperf/utils": "~3.1.0",
  3272. "php": ">=8.1"
  3273. },
  3274. "suggest": {
  3275. "hyperf/event": "Reqiured to use PageResolverListener.",
  3276. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3277. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "3.1-dev"
  3283. },
  3284. "hyperf": {
  3285. "config": "Hyperf\\Paginator\\ConfigProvider"
  3286. }
  3287. },
  3288. "autoload": {
  3289. "psr-4": {
  3290. "Hyperf\\Paginator\\": "src/"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "description": "A paginator component for hyperf.",
  3298. "homepage": "https://hyperf.io",
  3299. "keywords": [
  3300. "hyperf",
  3301. "paginator",
  3302. "php"
  3303. ],
  3304. "support": {
  3305. "docs": "https://hyperf.wiki",
  3306. "issues": "https://github.com/hyperf/hyperf/issues",
  3307. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3308. "source": "https://github.com/hyperf/hyperf"
  3309. },
  3310. "funding": [
  3311. {
  3312. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3313. "type": "custom"
  3314. },
  3315. {
  3316. "url": "https://opencollective.com/hyperf",
  3317. "type": "open_collective"
  3318. }
  3319. ],
  3320. "time": "2024-09-25T02:54:12+00:00"
  3321. },
  3322. {
  3323. "name": "hyperf/pipeline",
  3324. "version": "v3.1.42",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/hyperf/pipeline.git",
  3328. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3333. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": ">=8.1",
  3338. "psr/container": "^1.0 || ^2.0"
  3339. },
  3340. "type": "library",
  3341. "extra": {
  3342. "branch-alias": {
  3343. "dev-master": "3.1-dev"
  3344. }
  3345. },
  3346. "autoload": {
  3347. "psr-4": {
  3348. "Hyperf\\Pipeline\\": "src/"
  3349. }
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3356. "homepage": "https://hyperf.io",
  3357. "keywords": [
  3358. "hyperf",
  3359. "php",
  3360. "pipeline",
  3361. "swoole"
  3362. ],
  3363. "support": {
  3364. "docs": "https://hyperf.wiki",
  3365. "issues": "https://github.com/hyperf/hyperf/issues",
  3366. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3367. "source": "https://github.com/hyperf/hyperf"
  3368. },
  3369. "funding": [
  3370. {
  3371. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3372. "type": "custom"
  3373. },
  3374. {
  3375. "url": "https://opencollective.com/hyperf",
  3376. "type": "open_collective"
  3377. }
  3378. ],
  3379. "time": "2024-09-25T02:54:12+00:00"
  3380. },
  3381. {
  3382. "name": "hyperf/pool",
  3383. "version": "v3.1.42",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://github.com/hyperf/pool.git",
  3387. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3392. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3393. "shasum": ""
  3394. },
  3395. "require": {
  3396. "hyperf/contract": "~3.1.0",
  3397. "hyperf/support": "~3.1.0",
  3398. "hyperf/utils": "~3.1.0",
  3399. "php": ">=8.1",
  3400. "psr/container": "^1.0 || ^2.0"
  3401. },
  3402. "suggest": {
  3403. "psr/event-dispatcher": "Required to use events."
  3404. },
  3405. "type": "library",
  3406. "extra": {
  3407. "branch-alias": {
  3408. "dev-master": "3.1-dev"
  3409. },
  3410. "hyperf": {
  3411. "config": "Hyperf\\Pool\\ConfigProvider"
  3412. }
  3413. },
  3414. "autoload": {
  3415. "psr-4": {
  3416. "Hyperf\\Pool\\": "src/"
  3417. }
  3418. },
  3419. "notification-url": "https://packagist.org/downloads/",
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "description": "An independent universal connection pool component.",
  3424. "homepage": "https://hyperf.io",
  3425. "keywords": [
  3426. "connection-pool",
  3427. "hyperf",
  3428. "php",
  3429. "swoole"
  3430. ],
  3431. "support": {
  3432. "docs": "https://hyperf.wiki",
  3433. "issues": "https://github.com/hyperf/hyperf/issues",
  3434. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3435. "source": "https://github.com/hyperf/hyperf"
  3436. },
  3437. "funding": [
  3438. {
  3439. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3440. "type": "custom"
  3441. },
  3442. {
  3443. "url": "https://opencollective.com/hyperf",
  3444. "type": "open_collective"
  3445. }
  3446. ],
  3447. "time": "2024-09-25T02:54:12+00:00"
  3448. },
  3449. {
  3450. "name": "hyperf/process",
  3451. "version": "v3.1.42",
  3452. "source": {
  3453. "type": "git",
  3454. "url": "https://github.com/hyperf/process.git",
  3455. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3456. },
  3457. "dist": {
  3458. "type": "zip",
  3459. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3460. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3461. "shasum": ""
  3462. },
  3463. "require": {
  3464. "hyperf/contract": "~3.1.0",
  3465. "hyperf/support": "~3.1.0",
  3466. "hyperf/utils": "~3.1.0",
  3467. "php": ">=8.1",
  3468. "psr/container": "^1.0 || ^2.0",
  3469. "psr/event-dispatcher": "^1.0"
  3470. },
  3471. "suggest": {
  3472. "hyperf/di": "Required to use annotations.",
  3473. "hyperf/event": "Required to dump the message before and after process.",
  3474. "hyperf/framework": "Required to use BootProcessListener."
  3475. },
  3476. "type": "library",
  3477. "extra": {
  3478. "branch-alias": {
  3479. "dev-master": "3.1-dev"
  3480. },
  3481. "hyperf": {
  3482. "config": "Hyperf\\Process\\ConfigProvider"
  3483. }
  3484. },
  3485. "autoload": {
  3486. "psr-4": {
  3487. "Hyperf\\Process\\": "src/"
  3488. }
  3489. },
  3490. "notification-url": "https://packagist.org/downloads/",
  3491. "license": [
  3492. "MIT"
  3493. ],
  3494. "description": "A process component for hyperf.",
  3495. "homepage": "https://hyperf.io",
  3496. "keywords": [
  3497. "hyperf",
  3498. "php",
  3499. "process"
  3500. ],
  3501. "support": {
  3502. "docs": "https://hyperf.wiki",
  3503. "issues": "https://github.com/hyperf/hyperf/issues",
  3504. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3505. "source": "https://github.com/hyperf/hyperf"
  3506. },
  3507. "funding": [
  3508. {
  3509. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3510. "type": "custom"
  3511. },
  3512. {
  3513. "url": "https://opencollective.com/hyperf",
  3514. "type": "open_collective"
  3515. }
  3516. ],
  3517. "time": "2024-09-25T02:54:12+00:00"
  3518. },
  3519. {
  3520. "name": "hyperf/redis",
  3521. "version": "v3.1.42",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://github.com/hyperf/redis.git",
  3525. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3530. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3531. "shasum": ""
  3532. },
  3533. "require": {
  3534. "ext-redis": "^5.0 || ^6.0",
  3535. "hyperf/contract": "~3.1.0",
  3536. "hyperf/pool": "~3.1.0",
  3537. "hyperf/support": "~3.1.0",
  3538. "hyperf/tappable": "~3.1.0",
  3539. "hyperf/utils": "~3.1.0",
  3540. "php": ">=8.1",
  3541. "psr/container": "^1.0 || ^2.0"
  3542. },
  3543. "suggest": {
  3544. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3545. "hyperf/di": "Create the RedisPool via dependency injection."
  3546. },
  3547. "type": "library",
  3548. "extra": {
  3549. "branch-alias": {
  3550. "dev-master": "3.1-dev"
  3551. },
  3552. "hyperf": {
  3553. "config": "Hyperf\\Redis\\ConfigProvider"
  3554. }
  3555. },
  3556. "autoload": {
  3557. "psr-4": {
  3558. "Hyperf\\Redis\\": "src/"
  3559. }
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "MIT"
  3564. ],
  3565. "description": "A redis component for hyperf.",
  3566. "homepage": "https://hyperf.io",
  3567. "keywords": [
  3568. "hyperf",
  3569. "php",
  3570. "pool",
  3571. "redis"
  3572. ],
  3573. "support": {
  3574. "docs": "https://hyperf.wiki",
  3575. "issues": "https://github.com/hyperf/hyperf/issues",
  3576. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3577. "source": "https://github.com/hyperf/hyperf"
  3578. },
  3579. "funding": [
  3580. {
  3581. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3582. "type": "custom"
  3583. },
  3584. {
  3585. "url": "https://opencollective.com/hyperf",
  3586. "type": "open_collective"
  3587. }
  3588. ],
  3589. "time": "2024-09-25T02:54:12+00:00"
  3590. },
  3591. {
  3592. "name": "hyperf/rpc",
  3593. "version": "v3.1.42",
  3594. "source": {
  3595. "type": "git",
  3596. "url": "https://github.com/hyperf/rpc.git",
  3597. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3598. },
  3599. "dist": {
  3600. "type": "zip",
  3601. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3602. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3603. "shasum": ""
  3604. },
  3605. "require": {
  3606. "hyperf/codec": "~3.1.0",
  3607. "hyperf/contract": "~3.1.0",
  3608. "hyperf/support": "~3.1.0",
  3609. "jetbrains/phpstorm-attributes": "^1.0",
  3610. "php": ">=8.1"
  3611. },
  3612. "type": "library",
  3613. "extra": {
  3614. "branch-alias": {
  3615. "dev-master": "3.1-dev"
  3616. },
  3617. "hyperf": []
  3618. },
  3619. "autoload": {
  3620. "psr-4": {
  3621. "Hyperf\\Rpc\\": "src/"
  3622. }
  3623. },
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "MIT"
  3627. ],
  3628. "description": "A rpc basic library for Hyperf.",
  3629. "homepage": "https://hyperf.io",
  3630. "keywords": [
  3631. "hyperf",
  3632. "php",
  3633. "rpc",
  3634. "swoole"
  3635. ],
  3636. "support": {
  3637. "docs": "https://hyperf.wiki",
  3638. "issues": "https://github.com/hyperf/hyperf/issues",
  3639. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3640. "source": "https://github.com/hyperf/hyperf"
  3641. },
  3642. "funding": [
  3643. {
  3644. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3645. "type": "custom"
  3646. },
  3647. {
  3648. "url": "https://opencollective.com/hyperf",
  3649. "type": "open_collective"
  3650. }
  3651. ],
  3652. "time": "2024-09-25T02:54:12+00:00"
  3653. },
  3654. {
  3655. "name": "hyperf/rpc-client",
  3656. "version": "v3.1.42",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/hyperf/rpc-client.git",
  3660. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3665. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3666. "shasum": ""
  3667. },
  3668. "require": {
  3669. "hyperf/code-parser": "~3.1.0",
  3670. "hyperf/load-balancer": "~3.1.0",
  3671. "hyperf/rpc": "~3.1.0",
  3672. "hyperf/support": "~3.1.0",
  3673. "hyperf/utils": "~3.1.0",
  3674. "jetbrains/phpstorm-attributes": "^1.0",
  3675. "php": ">=8.1",
  3676. "psr/container": "^1.0 || ^2.0"
  3677. },
  3678. "suggest": {
  3679. "hyperf/di": "For better container experience.",
  3680. "hyperf/pool": "Required to use connection pool.",
  3681. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3682. },
  3683. "type": "library",
  3684. "extra": {
  3685. "branch-alias": {
  3686. "dev-master": "3.1-dev"
  3687. },
  3688. "hyperf": {
  3689. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3690. }
  3691. },
  3692. "autoload": {
  3693. "psr-4": {
  3694. "Hyperf\\RpcClient\\": "src/"
  3695. }
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "MIT"
  3700. ],
  3701. "description": "An abstract rpc server component for Hyperf.",
  3702. "homepage": "https://hyperf.io",
  3703. "keywords": [
  3704. "hyperf",
  3705. "json-rpc",
  3706. "php",
  3707. "rpc",
  3708. "rpc-client",
  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-09-25T02:54:12+00:00"
  3728. },
  3729. {
  3730. "name": "hyperf/rpc-server",
  3731. "version": "v3.1.42",
  3732. "source": {
  3733. "type": "git",
  3734. "url": "https://github.com/hyperf/rpc-server.git",
  3735. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3736. },
  3737. "dist": {
  3738. "type": "zip",
  3739. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3740. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3741. "shasum": ""
  3742. },
  3743. "require": {
  3744. "hyperf/http-server": "~3.1.0",
  3745. "hyperf/rpc": "~3.1.0",
  3746. "php": ">=8.1"
  3747. },
  3748. "suggest": {
  3749. "hyperf/di": "Required to use annotations."
  3750. },
  3751. "type": "library",
  3752. "extra": {
  3753. "branch-alias": {
  3754. "dev-master": "3.1-dev"
  3755. },
  3756. "hyperf": {
  3757. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3758. }
  3759. },
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Hyperf\\RpcServer\\": "src/"
  3763. }
  3764. },
  3765. "notification-url": "https://packagist.org/downloads/",
  3766. "license": [
  3767. "MIT"
  3768. ],
  3769. "description": "An abstract rpc server component for Hyperf.",
  3770. "homepage": "https://hyperf.io",
  3771. "keywords": [
  3772. "hyperf",
  3773. "php",
  3774. "rpc",
  3775. "rpc-server",
  3776. "swoole"
  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-09-25T02:54:12+00:00"
  3795. },
  3796. {
  3797. "name": "hyperf/serializer",
  3798. "version": "v3.1.42",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/hyperf/serializer.git",
  3802. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3807. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3808. "shasum": ""
  3809. },
  3810. "require": {
  3811. "hyperf/contract": "~3.1.0",
  3812. "php": ">=8.1"
  3813. },
  3814. "suggest": {
  3815. "hyperf/di": "Required to use ExceptionNormalizer",
  3816. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3817. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3818. },
  3819. "type": "library",
  3820. "extra": {
  3821. "branch-alias": {
  3822. "dev-master": "3.1-dev"
  3823. },
  3824. "hyperf": {
  3825. "config": "Hyperf\\Serializer\\ConfigProvider"
  3826. }
  3827. },
  3828. "autoload": {
  3829. "psr-4": {
  3830. "Hyperf\\Serializer\\": "src/"
  3831. }
  3832. },
  3833. "notification-url": "https://packagist.org/downloads/",
  3834. "license": [
  3835. "MIT"
  3836. ],
  3837. "description": "A serializer component for Hyperf.",
  3838. "homepage": "https://hyperf.io",
  3839. "keywords": [
  3840. "hyperf",
  3841. "php",
  3842. "swoole",
  3843. "tappable"
  3844. ],
  3845. "support": {
  3846. "docs": "https://hyperf.wiki",
  3847. "issues": "https://github.com/hyperf/hyperf/issues",
  3848. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3849. "source": "https://github.com/hyperf/hyperf"
  3850. },
  3851. "funding": [
  3852. {
  3853. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3854. "type": "custom"
  3855. },
  3856. {
  3857. "url": "https://opencollective.com/hyperf",
  3858. "type": "open_collective"
  3859. }
  3860. ],
  3861. "time": "2024-09-25T02:54:12+00:00"
  3862. },
  3863. {
  3864. "name": "hyperf/server",
  3865. "version": "v3.1.42",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/hyperf/server.git",
  3869. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3874. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3875. "shasum": ""
  3876. },
  3877. "require": {
  3878. "hyperf/contract": "~3.1.0",
  3879. "hyperf/coordinator": "~3.1.0",
  3880. "hyperf/engine": "^2.8",
  3881. "hyperf/support": "~3.1.0",
  3882. "hyperf/tappable": "~3.1.0",
  3883. "php": ">=8.1",
  3884. "psr/container": "^1.0 || ^2.0",
  3885. "psr/event-dispatcher": "^1.0",
  3886. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3887. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3888. },
  3889. "suggest": {
  3890. "hyperf/event": "Dump the info after server start.",
  3891. "hyperf/framework": "Dump the info after server start."
  3892. },
  3893. "type": "library",
  3894. "extra": {
  3895. "branch-alias": {
  3896. "dev-master": "3.1-dev"
  3897. },
  3898. "hyperf": {
  3899. "config": "Hyperf\\Server\\ConfigProvider"
  3900. }
  3901. },
  3902. "autoload": {
  3903. "psr-4": {
  3904. "Hyperf\\Server\\": "src/"
  3905. }
  3906. },
  3907. "notification-url": "https://packagist.org/downloads/",
  3908. "license": [
  3909. "MIT"
  3910. ],
  3911. "description": "A base server library for Hyperf.",
  3912. "homepage": "https://hyperf.io",
  3913. "keywords": [
  3914. "hyperf",
  3915. "php",
  3916. "server",
  3917. "swoole"
  3918. ],
  3919. "support": {
  3920. "docs": "https://hyperf.wiki",
  3921. "issues": "https://github.com/hyperf/hyperf/issues",
  3922. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3923. "source": "https://github.com/hyperf/hyperf"
  3924. },
  3925. "funding": [
  3926. {
  3927. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3928. "type": "custom"
  3929. },
  3930. {
  3931. "url": "https://opencollective.com/hyperf",
  3932. "type": "open_collective"
  3933. }
  3934. ],
  3935. "time": "2024-09-25T02:54:12+00:00"
  3936. },
  3937. {
  3938. "name": "hyperf/service-governance",
  3939. "version": "v3.1.42",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/hyperf/service-governance.git",
  3943. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3948. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3949. "shasum": ""
  3950. },
  3951. "require": {
  3952. "hyperf/contract": "~3.1.0",
  3953. "hyperf/support": "~3.1.0",
  3954. "jetbrains/phpstorm-attributes": "^1.0",
  3955. "php": ">=8.1"
  3956. },
  3957. "suggest": {
  3958. "hyperf/event": "Required to use RegisterServiceListener.",
  3959. "hyperf/framework": "Required to use RegisterServiceListener.",
  3960. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3961. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3962. },
  3963. "type": "library",
  3964. "extra": {
  3965. "branch-alias": {
  3966. "dev-master": "3.1-dev"
  3967. },
  3968. "hyperf": {
  3969. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3970. }
  3971. },
  3972. "autoload": {
  3973. "psr-4": {
  3974. "Hyperf\\ServiceGovernance\\": "src/"
  3975. }
  3976. },
  3977. "notification-url": "https://packagist.org/downloads/",
  3978. "license": [
  3979. "MIT"
  3980. ],
  3981. "description": "A service governance component for Hyperf.",
  3982. "homepage": "https://hyperf.io",
  3983. "keywords": [
  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-09-25T02:54:12+00:00"
  4006. },
  4007. {
  4008. "name": "hyperf/stdlib",
  4009. "version": "v3.1.42",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/hyperf/stdlib.git",
  4013. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4018. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4019. "shasum": ""
  4020. },
  4021. "require": {
  4022. "php": ">=8.1"
  4023. },
  4024. "type": "library",
  4025. "extra": {
  4026. "branch-alias": {
  4027. "dev-master": "3.1-dev"
  4028. }
  4029. },
  4030. "autoload": {
  4031. "psr-4": {
  4032. "Hyperf\\Stdlib\\": "src/"
  4033. }
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "MIT"
  4038. ],
  4039. "description": "A stdlib component for Hyperf.",
  4040. "homepage": "https://hyperf.io",
  4041. "keywords": [
  4042. "hyperf",
  4043. "php",
  4044. "stdlib",
  4045. "swoole"
  4046. ],
  4047. "support": {
  4048. "docs": "https://hyperf.wiki",
  4049. "issues": "https://github.com/hyperf/hyperf/issues",
  4050. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4051. "source": "https://github.com/hyperf/hyperf"
  4052. },
  4053. "funding": [
  4054. {
  4055. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4056. "type": "custom"
  4057. },
  4058. {
  4059. "url": "https://opencollective.com/hyperf",
  4060. "type": "open_collective"
  4061. }
  4062. ],
  4063. "time": "2024-09-25T02:54:12+00:00"
  4064. },
  4065. {
  4066. "name": "hyperf/stringable",
  4067. "version": "v3.1.43",
  4068. "source": {
  4069. "type": "git",
  4070. "url": "https://github.com/hyperf/stringable.git",
  4071. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4072. },
  4073. "dist": {
  4074. "type": "zip",
  4075. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4076. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4077. "shasum": ""
  4078. },
  4079. "require": {
  4080. "ext-mbstring": "*",
  4081. "hyperf/collection": "~3.1.0",
  4082. "hyperf/conditionable": "~3.1.0",
  4083. "hyperf/macroable": "~3.1.0",
  4084. "hyperf/tappable": "~3.1.0",
  4085. "php": ">=8.1"
  4086. },
  4087. "suggest": {
  4088. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4089. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4090. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4091. },
  4092. "type": "library",
  4093. "extra": {
  4094. "branch-alias": {
  4095. "dev-master": "3.1-dev"
  4096. }
  4097. },
  4098. "autoload": {
  4099. "files": [
  4100. "src/Functions.php"
  4101. ],
  4102. "psr-4": {
  4103. "Hyperf\\Stringable\\": "src/"
  4104. }
  4105. },
  4106. "notification-url": "https://packagist.org/downloads/",
  4107. "license": [
  4108. "MIT"
  4109. ],
  4110. "description": "Hyperf Stringable package which come from illuminate/support",
  4111. "homepage": "https://hyperf.io",
  4112. "keywords": [
  4113. "hyperf",
  4114. "php",
  4115. "stringable",
  4116. "swoole"
  4117. ],
  4118. "support": {
  4119. "docs": "https://hyperf.wiki",
  4120. "issues": "https://github.com/hyperf/hyperf/issues",
  4121. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4122. "source": "https://github.com/hyperf/hyperf"
  4123. },
  4124. "funding": [
  4125. {
  4126. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4127. "type": "custom"
  4128. },
  4129. {
  4130. "url": "https://opencollective.com/hyperf",
  4131. "type": "open_collective"
  4132. }
  4133. ],
  4134. "time": "2024-10-09T02:28:40+00:00"
  4135. },
  4136. {
  4137. "name": "hyperf/support",
  4138. "version": "v3.1.42",
  4139. "source": {
  4140. "type": "git",
  4141. "url": "https://github.com/hyperf/support.git",
  4142. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4143. },
  4144. "dist": {
  4145. "type": "zip",
  4146. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4147. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4148. "shasum": ""
  4149. },
  4150. "require": {
  4151. "hyperf/collection": "~3.1.0",
  4152. "hyperf/context": "~3.1.0",
  4153. "hyperf/contract": "~3.1.0",
  4154. "hyperf/coroutine": "~3.1.0",
  4155. "hyperf/macroable": "~3.1.0",
  4156. "hyperf/stringable": "~3.1.0",
  4157. "php": ">=8.1"
  4158. },
  4159. "suggest": {
  4160. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4161. },
  4162. "type": "library",
  4163. "extra": {
  4164. "branch-alias": {
  4165. "dev-master": "3.1-dev"
  4166. }
  4167. },
  4168. "autoload": {
  4169. "files": [
  4170. "src/Functions.php"
  4171. ],
  4172. "psr-4": {
  4173. "Hyperf\\Support\\": "src/"
  4174. }
  4175. },
  4176. "notification-url": "https://packagist.org/downloads/",
  4177. "license": [
  4178. "MIT"
  4179. ],
  4180. "description": "A support component for Hyperf.",
  4181. "homepage": "https://hyperf.io",
  4182. "keywords": [
  4183. "hyperf",
  4184. "php",
  4185. "support",
  4186. "swoole"
  4187. ],
  4188. "support": {
  4189. "docs": "https://hyperf.wiki",
  4190. "issues": "https://github.com/hyperf/hyperf/issues",
  4191. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4192. "source": "https://github.com/hyperf/hyperf"
  4193. },
  4194. "funding": [
  4195. {
  4196. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4197. "type": "custom"
  4198. },
  4199. {
  4200. "url": "https://opencollective.com/hyperf",
  4201. "type": "open_collective"
  4202. }
  4203. ],
  4204. "time": "2024-09-25T02:54:12+00:00"
  4205. },
  4206. {
  4207. "name": "hyperf/tappable",
  4208. "version": "v3.1.42",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://github.com/hyperf/tappable.git",
  4212. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4213. },
  4214. "dist": {
  4215. "type": "zip",
  4216. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4217. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4218. "shasum": ""
  4219. },
  4220. "require": {
  4221. "php": ">=8.1"
  4222. },
  4223. "type": "library",
  4224. "extra": {
  4225. "branch-alias": {
  4226. "dev-master": "3.1-dev"
  4227. }
  4228. },
  4229. "autoload": {
  4230. "files": [
  4231. "src/Functions.php"
  4232. ],
  4233. "psr-4": {
  4234. "Hyperf\\Tappable\\": "src/"
  4235. }
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "MIT"
  4240. ],
  4241. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4242. "homepage": "https://hyperf.io",
  4243. "keywords": [
  4244. "hyperf",
  4245. "php",
  4246. "swoole",
  4247. "tappable"
  4248. ],
  4249. "support": {
  4250. "docs": "https://hyperf.wiki",
  4251. "issues": "https://github.com/hyperf/hyperf/issues",
  4252. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4253. "source": "https://github.com/hyperf/hyperf"
  4254. },
  4255. "funding": [
  4256. {
  4257. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4258. "type": "custom"
  4259. },
  4260. {
  4261. "url": "https://opencollective.com/hyperf",
  4262. "type": "open_collective"
  4263. }
  4264. ],
  4265. "time": "2024-09-25T02:54:12+00:00"
  4266. },
  4267. {
  4268. "name": "hyperf/task",
  4269. "version": "v3.1.42",
  4270. "source": {
  4271. "type": "git",
  4272. "url": "https://github.com/hyperf/task.git",
  4273. "reference": "c764c465cb9a03a2ccc9d10fce639c2a9d493901"
  4274. },
  4275. "dist": {
  4276. "type": "zip",
  4277. "url": "https://api.github.com/repos/hyperf/task/zipball/c764c465cb9a03a2ccc9d10fce639c2a9d493901",
  4278. "reference": "c764c465cb9a03a2ccc9d10fce639c2a9d493901",
  4279. "shasum": ""
  4280. },
  4281. "require": {
  4282. "hyperf/contract": "~3.1.0",
  4283. "hyperf/framework": "~3.1.0",
  4284. "hyperf/serializer": "~3.1.0",
  4285. "hyperf/support": "~3.1.0",
  4286. "hyperf/utils": "~3.1.0",
  4287. "php": ">=8.1",
  4288. "psr/container": "^1.0 || ^2.0",
  4289. "psr/event-dispatcher": "^1.0",
  4290. "symfony/property-access": "^5.0 || ^6.0",
  4291. "symfony/serializer": "^5.0 || ^6.0"
  4292. },
  4293. "suggest": {
  4294. "hyperf/di": "Required to use annotation."
  4295. },
  4296. "type": "library",
  4297. "extra": {
  4298. "branch-alias": {
  4299. "dev-master": "3.1-dev"
  4300. },
  4301. "hyperf": {
  4302. "config": "Hyperf\\Task\\ConfigProvider"
  4303. }
  4304. },
  4305. "autoload": {
  4306. "psr-4": {
  4307. "Hyperf\\Task\\": "src/"
  4308. }
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "MIT"
  4313. ],
  4314. "description": "A task library for Hyperf.",
  4315. "homepage": "https://hyperf.io",
  4316. "keywords": [
  4317. "hyperf",
  4318. "php",
  4319. "swoole",
  4320. "task"
  4321. ],
  4322. "support": {
  4323. "docs": "https://hyperf.wiki",
  4324. "issues": "https://github.com/hyperf/hyperf/issues",
  4325. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4326. "source": "https://github.com/hyperf/hyperf"
  4327. },
  4328. "funding": [
  4329. {
  4330. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4331. "type": "custom"
  4332. },
  4333. {
  4334. "url": "https://opencollective.com/hyperf",
  4335. "type": "open_collective"
  4336. }
  4337. ],
  4338. "time": "2024-09-25T02:54:12+00:00"
  4339. },
  4340. {
  4341. "name": "hyperf/tracer",
  4342. "version": "v3.1.42",
  4343. "source": {
  4344. "type": "git",
  4345. "url": "https://github.com/hyperf/tracer.git",
  4346. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883"
  4347. },
  4348. "dist": {
  4349. "type": "zip",
  4350. "url": "https://api.github.com/repos/hyperf/tracer/zipball/8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4351. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4352. "shasum": ""
  4353. },
  4354. "require": {
  4355. "hyperf/contract": "~3.1.0",
  4356. "hyperf/di": "~3.1.0",
  4357. "hyperf/guzzle": "~3.1.0",
  4358. "hyperf/support": "~3.1.0",
  4359. "hyperf/utils": "~3.1.0",
  4360. "jcchavezs/zipkin-opentracing": "^2.0",
  4361. "opentracing/opentracing": "^1.0",
  4362. "php": ">=8.1",
  4363. "psr/http-message": "^1.0 || ^2.0"
  4364. },
  4365. "suggest": {
  4366. "hyperf/event": "Required to use DbQueryExecutedListener.",
  4367. "jonahgeorge/jaeger-client-php": "Required (^0.6) to use jaeger tracing.",
  4368. "longlang/phpkafka": "Required (^1.2) to use Kafka Producer."
  4369. },
  4370. "type": "library",
  4371. "extra": {
  4372. "branch-alias": {
  4373. "dev-master": "3.1-dev"
  4374. },
  4375. "hyperf": {
  4376. "config": "Hyperf\\Tracer\\ConfigProvider"
  4377. }
  4378. },
  4379. "autoload": {
  4380. "psr-4": {
  4381. "Hyperf\\Tracer\\": "src/"
  4382. }
  4383. },
  4384. "notification-url": "https://packagist.org/downloads/",
  4385. "license": [
  4386. "MIT"
  4387. ],
  4388. "description": "A open tracing system implemented for Hyperf or other coroutine framework",
  4389. "homepage": "https://hyperf.io",
  4390. "keywords": [
  4391. "hyperf",
  4392. "open-tracing",
  4393. "php",
  4394. "zipkin"
  4395. ],
  4396. "support": {
  4397. "docs": "https://hyperf.wiki",
  4398. "issues": "https://github.com/hyperf/hyperf/issues",
  4399. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4400. "source": "https://github.com/hyperf/hyperf"
  4401. },
  4402. "funding": [
  4403. {
  4404. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4405. "type": "custom"
  4406. },
  4407. {
  4408. "url": "https://opencollective.com/hyperf",
  4409. "type": "open_collective"
  4410. }
  4411. ],
  4412. "time": "2024-09-25T02:54:12+00:00"
  4413. },
  4414. {
  4415. "name": "hyperf/utils",
  4416. "version": "v3.1.42",
  4417. "source": {
  4418. "type": "git",
  4419. "url": "https://github.com/hyperf/utils.git",
  4420. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4421. },
  4422. "dist": {
  4423. "type": "zip",
  4424. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4425. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4426. "shasum": ""
  4427. },
  4428. "require": {
  4429. "doctrine/inflector": "^2.0",
  4430. "hyperf/code-parser": "~3.1.0",
  4431. "hyperf/codec": "~3.1.0",
  4432. "hyperf/collection": "~3.1.0",
  4433. "hyperf/context": "~3.1.0",
  4434. "hyperf/contract": "~3.1.0",
  4435. "hyperf/coordinator": "~3.1.0",
  4436. "hyperf/coroutine": "~3.1.0",
  4437. "hyperf/engine": "^2.0",
  4438. "hyperf/macroable": "~3.1.0",
  4439. "hyperf/serializer": "~3.1.0",
  4440. "hyperf/stringable": "~3.1.0",
  4441. "hyperf/support": "~3.1.0",
  4442. "php": ">=8.1"
  4443. },
  4444. "type": "library",
  4445. "extra": {
  4446. "branch-alias": {
  4447. "dev-master": "3.1-dev"
  4448. }
  4449. },
  4450. "notification-url": "https://packagist.org/downloads/",
  4451. "license": [
  4452. "MIT"
  4453. ],
  4454. "description": "A tools package that could help developer solved the problem quickly.",
  4455. "homepage": "https://hyperf.io",
  4456. "keywords": [
  4457. "hyperf",
  4458. "php",
  4459. "swoole",
  4460. "utils"
  4461. ],
  4462. "support": {
  4463. "docs": "https://hyperf.wiki",
  4464. "issues": "https://github.com/hyperf/hyperf/issues",
  4465. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4466. "source": "https://github.com/hyperf/hyperf"
  4467. },
  4468. "funding": [
  4469. {
  4470. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4471. "type": "custom"
  4472. },
  4473. {
  4474. "url": "https://opencollective.com/hyperf",
  4475. "type": "open_collective"
  4476. }
  4477. ],
  4478. "time": "2024-09-25T02:54:12+00:00"
  4479. },
  4480. {
  4481. "name": "jcchavezs/zipkin-opentracing",
  4482. "version": "2.0.4",
  4483. "source": {
  4484. "type": "git",
  4485. "url": "https://github.com/jcchavezs/zipkin-php-opentracing.git",
  4486. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575"
  4487. },
  4488. "dist": {
  4489. "type": "zip",
  4490. "url": "https://api.github.com/repos/jcchavezs/zipkin-php-opentracing/zipball/6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  4491. "reference": "6bd908f84ff611dff4d64c5e7d510bd6a1107575",
  4492. "shasum": ""
  4493. },
  4494. "require": {
  4495. "opentracing/opentracing": "^1.0.1",
  4496. "openzipkin/zipkin": "^3.0.0",
  4497. "php": ">=7.4 || ^8.0"
  4498. },
  4499. "provide": {
  4500. "opentracing/opentracing": "1.0.0"
  4501. },
  4502. "require-dev": {
  4503. "phpspec/prophecy-phpunit": "^2.0",
  4504. "phpstan/phpstan": "^0.12.26",
  4505. "phpunit/phpunit": "^9.0",
  4506. "squizlabs/php_codesniffer": "3.*"
  4507. },
  4508. "type": "library",
  4509. "autoload": {
  4510. "psr-4": {
  4511. "ZipkinOpenTracing\\": "./src/ZipkinOpenTracing/"
  4512. }
  4513. },
  4514. "notification-url": "https://packagist.org/downloads/",
  4515. "license": [
  4516. "MIT"
  4517. ],
  4518. "authors": [
  4519. {
  4520. "name": "José Carlos Chávez",
  4521. "email": "jcchavezs@gmail.com"
  4522. }
  4523. ],
  4524. "description": "A Zipkin bridge with OpenTracing",
  4525. "support": {
  4526. "issues": "https://github.com/jcchavezs/zipkin-php-opentracing/issues",
  4527. "source": "https://github.com/jcchavezs/zipkin-php-opentracing/tree/2.0.4"
  4528. },
  4529. "funding": [
  4530. {
  4531. "url": "https://www.paypal.me/jcchavezs",
  4532. "type": "paypal"
  4533. }
  4534. ],
  4535. "time": "2023-11-03T22:38:29+00:00"
  4536. },
  4537. {
  4538. "name": "jetbrains/phpstorm-attributes",
  4539. "version": "1.1",
  4540. "source": {
  4541. "type": "git",
  4542. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4543. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4544. },
  4545. "dist": {
  4546. "type": "zip",
  4547. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4548. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4549. "shasum": ""
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-4": {
  4554. "JetBrains\\PhpStorm\\": "src/"
  4555. }
  4556. },
  4557. "notification-url": "https://packagist.org/downloads/",
  4558. "license": [
  4559. "Apache-2.0"
  4560. ],
  4561. "authors": [
  4562. {
  4563. "name": "JetBrains",
  4564. "homepage": "https://www.jetbrains.com"
  4565. }
  4566. ],
  4567. "description": "PhpStorm specific attributes",
  4568. "keywords": [
  4569. "attributes",
  4570. "jetbrains",
  4571. "phpstorm"
  4572. ],
  4573. "support": {
  4574. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4575. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4576. },
  4577. "time": "2023-09-01T08:50:25+00:00"
  4578. },
  4579. {
  4580. "name": "laminas/laminas-mime",
  4581. "version": "2.12.0",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/laminas/laminas-mime.git",
  4585. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4590. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4595. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4596. },
  4597. "conflict": {
  4598. "zendframework/zend-mime": "*"
  4599. },
  4600. "require-dev": {
  4601. "laminas/laminas-coding-standard": "~2.4.0",
  4602. "laminas/laminas-mail": "^2.19.0",
  4603. "phpunit/phpunit": "~9.5.25"
  4604. },
  4605. "suggest": {
  4606. "laminas/laminas-mail": "Laminas\\Mail component"
  4607. },
  4608. "type": "library",
  4609. "autoload": {
  4610. "psr-4": {
  4611. "Laminas\\Mime\\": "src/"
  4612. }
  4613. },
  4614. "notification-url": "https://packagist.org/downloads/",
  4615. "license": [
  4616. "BSD-3-Clause"
  4617. ],
  4618. "description": "Create and parse MIME messages and parts",
  4619. "homepage": "https://laminas.dev",
  4620. "keywords": [
  4621. "laminas",
  4622. "mime"
  4623. ],
  4624. "support": {
  4625. "chat": "https://laminas.dev/chat",
  4626. "docs": "https://docs.laminas.dev/laminas-mime/",
  4627. "forum": "https://discourse.laminas.dev",
  4628. "issues": "https://github.com/laminas/laminas-mime/issues",
  4629. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4630. "source": "https://github.com/laminas/laminas-mime"
  4631. },
  4632. "funding": [
  4633. {
  4634. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4635. "type": "community_bridge"
  4636. }
  4637. ],
  4638. "time": "2023-11-02T16:47:19+00:00"
  4639. },
  4640. {
  4641. "name": "laminas/laminas-stdlib",
  4642. "version": "3.19.0",
  4643. "source": {
  4644. "type": "git",
  4645. "url": "https://github.com/laminas/laminas-stdlib.git",
  4646. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4647. },
  4648. "dist": {
  4649. "type": "zip",
  4650. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4651. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4652. "shasum": ""
  4653. },
  4654. "require": {
  4655. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4656. },
  4657. "conflict": {
  4658. "zendframework/zend-stdlib": "*"
  4659. },
  4660. "require-dev": {
  4661. "laminas/laminas-coding-standard": "^2.5",
  4662. "phpbench/phpbench": "^1.2.15",
  4663. "phpunit/phpunit": "^10.5.8",
  4664. "psalm/plugin-phpunit": "^0.18.4",
  4665. "vimeo/psalm": "^5.20.0"
  4666. },
  4667. "type": "library",
  4668. "autoload": {
  4669. "psr-4": {
  4670. "Laminas\\Stdlib\\": "src/"
  4671. }
  4672. },
  4673. "notification-url": "https://packagist.org/downloads/",
  4674. "license": [
  4675. "BSD-3-Clause"
  4676. ],
  4677. "description": "SPL extensions, array utilities, error handlers, and more",
  4678. "homepage": "https://laminas.dev",
  4679. "keywords": [
  4680. "laminas",
  4681. "stdlib"
  4682. ],
  4683. "support": {
  4684. "chat": "https://laminas.dev/chat",
  4685. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4686. "forum": "https://discourse.laminas.dev",
  4687. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4688. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4689. "source": "https://github.com/laminas/laminas-stdlib"
  4690. },
  4691. "funding": [
  4692. {
  4693. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4694. "type": "community_bridge"
  4695. }
  4696. ],
  4697. "time": "2024-01-19T12:39:49+00:00"
  4698. },
  4699. {
  4700. "name": "markrogoyski/math-php",
  4701. "version": "v2.10.0",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/markrogoyski/math-php.git",
  4705. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4710. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4711. "shasum": ""
  4712. },
  4713. "require": {
  4714. "ext-json": "*",
  4715. "php": ">=7.2.0"
  4716. },
  4717. "require-dev": {
  4718. "php-coveralls/php-coveralls": "^2.0",
  4719. "php-parallel-lint/php-parallel-lint": "^1.2",
  4720. "phploc/phploc": "*",
  4721. "phpmd/phpmd": "^2.6",
  4722. "phpstan/phpstan": "^1.10",
  4723. "phpunit/phpunit": "^8.5",
  4724. "squizlabs/php_codesniffer": "3.*"
  4725. },
  4726. "type": "library",
  4727. "autoload": {
  4728. "psr-4": {
  4729. "MathPHP\\": "src/"
  4730. }
  4731. },
  4732. "notification-url": "https://packagist.org/downloads/",
  4733. "license": [
  4734. "MIT"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "Mark Rogoyski",
  4739. "email": "mark@rogoyski.com",
  4740. "homepage": "https://github.com/markrogoyski",
  4741. "role": "Lead developer"
  4742. },
  4743. {
  4744. "name": "Kevin Nowaczyk",
  4745. "homepage": "https://github.com/Beakerboy",
  4746. "role": "Developer"
  4747. },
  4748. {
  4749. "name": "MathPHP Community of Contributors",
  4750. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4751. }
  4752. ],
  4753. "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",
  4754. "homepage": "https://github.com/markrogoyski/math-php/",
  4755. "keywords": [
  4756. "algebra",
  4757. "combinatorics",
  4758. "distributions",
  4759. "linear algebra",
  4760. "math",
  4761. "mathematics",
  4762. "matrix",
  4763. "numerical analysis",
  4764. "probability",
  4765. "regressions",
  4766. "statistics"
  4767. ],
  4768. "support": {
  4769. "issues": "https://github.com/markrogoyski/math-php/issues",
  4770. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4771. },
  4772. "time": "2024-04-17T00:09:51+00:00"
  4773. },
  4774. {
  4775. "name": "monolog/monolog",
  4776. "version": "3.7.0",
  4777. "source": {
  4778. "type": "git",
  4779. "url": "https://github.com/Seldaek/monolog.git",
  4780. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4781. },
  4782. "dist": {
  4783. "type": "zip",
  4784. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4785. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4786. "shasum": ""
  4787. },
  4788. "require": {
  4789. "php": ">=8.1",
  4790. "psr/log": "^2.0 || ^3.0"
  4791. },
  4792. "provide": {
  4793. "psr/log-implementation": "3.0.0"
  4794. },
  4795. "require-dev": {
  4796. "aws/aws-sdk-php": "^3.0",
  4797. "doctrine/couchdb": "~1.0@dev",
  4798. "elasticsearch/elasticsearch": "^7 || ^8",
  4799. "ext-json": "*",
  4800. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4801. "guzzlehttp/guzzle": "^7.4.5",
  4802. "guzzlehttp/psr7": "^2.2",
  4803. "mongodb/mongodb": "^1.8",
  4804. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4805. "phpstan/phpstan": "^1.9",
  4806. "phpstan/phpstan-deprecation-rules": "^1.0",
  4807. "phpstan/phpstan-strict-rules": "^1.4",
  4808. "phpunit/phpunit": "^10.5.17",
  4809. "predis/predis": "^1.1 || ^2",
  4810. "ruflin/elastica": "^7",
  4811. "symfony/mailer": "^5.4 || ^6",
  4812. "symfony/mime": "^5.4 || ^6"
  4813. },
  4814. "suggest": {
  4815. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4816. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4817. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4818. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4819. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4820. "ext-mbstring": "Allow to work properly with unicode symbols",
  4821. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4822. "ext-openssl": "Required to send log messages using SSL",
  4823. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4824. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4825. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4826. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4827. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4828. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4829. },
  4830. "type": "library",
  4831. "extra": {
  4832. "branch-alias": {
  4833. "dev-main": "3.x-dev"
  4834. }
  4835. },
  4836. "autoload": {
  4837. "psr-4": {
  4838. "Monolog\\": "src/Monolog"
  4839. }
  4840. },
  4841. "notification-url": "https://packagist.org/downloads/",
  4842. "license": [
  4843. "MIT"
  4844. ],
  4845. "authors": [
  4846. {
  4847. "name": "Jordi Boggiano",
  4848. "email": "j.boggiano@seld.be",
  4849. "homepage": "https://seld.be"
  4850. }
  4851. ],
  4852. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4853. "homepage": "https://github.com/Seldaek/monolog",
  4854. "keywords": [
  4855. "log",
  4856. "logging",
  4857. "psr-3"
  4858. ],
  4859. "support": {
  4860. "issues": "https://github.com/Seldaek/monolog/issues",
  4861. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4862. },
  4863. "funding": [
  4864. {
  4865. "url": "https://github.com/Seldaek",
  4866. "type": "github"
  4867. },
  4868. {
  4869. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4870. "type": "tidelift"
  4871. }
  4872. ],
  4873. "time": "2024-06-28T09:40:51+00:00"
  4874. },
  4875. {
  4876. "name": "nesbot/carbon",
  4877. "version": "2.72.5",
  4878. "source": {
  4879. "type": "git",
  4880. "url": "https://github.com/briannesbitt/Carbon.git",
  4881. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4882. },
  4883. "dist": {
  4884. "type": "zip",
  4885. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4886. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4887. "shasum": ""
  4888. },
  4889. "require": {
  4890. "carbonphp/carbon-doctrine-types": "*",
  4891. "ext-json": "*",
  4892. "php": "^7.1.8 || ^8.0",
  4893. "psr/clock": "^1.0",
  4894. "symfony/polyfill-mbstring": "^1.0",
  4895. "symfony/polyfill-php80": "^1.16",
  4896. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4897. },
  4898. "provide": {
  4899. "psr/clock-implementation": "1.0"
  4900. },
  4901. "require-dev": {
  4902. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4903. "doctrine/orm": "^2.7 || ^3.0",
  4904. "friendsofphp/php-cs-fixer": "^3.0",
  4905. "kylekatarnls/multi-tester": "^2.0",
  4906. "ondrejmirtes/better-reflection": "*",
  4907. "phpmd/phpmd": "^2.9",
  4908. "phpstan/extension-installer": "^1.0",
  4909. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4910. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4911. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4912. "squizlabs/php_codesniffer": "^3.4"
  4913. },
  4914. "bin": [
  4915. "bin/carbon"
  4916. ],
  4917. "type": "library",
  4918. "extra": {
  4919. "branch-alias": {
  4920. "dev-master": "3.x-dev",
  4921. "dev-2.x": "2.x-dev"
  4922. },
  4923. "laravel": {
  4924. "providers": [
  4925. "Carbon\\Laravel\\ServiceProvider"
  4926. ]
  4927. },
  4928. "phpstan": {
  4929. "includes": [
  4930. "extension.neon"
  4931. ]
  4932. }
  4933. },
  4934. "autoload": {
  4935. "psr-4": {
  4936. "Carbon\\": "src/Carbon/"
  4937. }
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "MIT"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "Brian Nesbitt",
  4946. "email": "brian@nesbot.com",
  4947. "homepage": "https://markido.com"
  4948. },
  4949. {
  4950. "name": "kylekatarnls",
  4951. "homepage": "https://github.com/kylekatarnls"
  4952. }
  4953. ],
  4954. "description": "An API extension for DateTime that supports 281 different languages.",
  4955. "homepage": "https://carbon.nesbot.com",
  4956. "keywords": [
  4957. "date",
  4958. "datetime",
  4959. "time"
  4960. ],
  4961. "support": {
  4962. "docs": "https://carbon.nesbot.com/docs",
  4963. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4964. "source": "https://github.com/briannesbitt/Carbon"
  4965. },
  4966. "funding": [
  4967. {
  4968. "url": "https://github.com/sponsors/kylekatarnls",
  4969. "type": "github"
  4970. },
  4971. {
  4972. "url": "https://opencollective.com/Carbon#sponsor",
  4973. "type": "opencollective"
  4974. },
  4975. {
  4976. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4977. "type": "tidelift"
  4978. }
  4979. ],
  4980. "time": "2024-06-03T19:18:41+00:00"
  4981. },
  4982. {
  4983. "name": "nikic/fast-route",
  4984. "version": "v1.3.0",
  4985. "source": {
  4986. "type": "git",
  4987. "url": "https://github.com/nikic/FastRoute.git",
  4988. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4989. },
  4990. "dist": {
  4991. "type": "zip",
  4992. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4993. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4994. "shasum": ""
  4995. },
  4996. "require": {
  4997. "php": ">=5.4.0"
  4998. },
  4999. "require-dev": {
  5000. "phpunit/phpunit": "^4.8.35|~5.7"
  5001. },
  5002. "type": "library",
  5003. "autoload": {
  5004. "files": [
  5005. "src/functions.php"
  5006. ],
  5007. "psr-4": {
  5008. "FastRoute\\": "src/"
  5009. }
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "BSD-3-Clause"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "Nikita Popov",
  5018. "email": "nikic@php.net"
  5019. }
  5020. ],
  5021. "description": "Fast request router for PHP",
  5022. "keywords": [
  5023. "router",
  5024. "routing"
  5025. ],
  5026. "support": {
  5027. "issues": "https://github.com/nikic/FastRoute/issues",
  5028. "source": "https://github.com/nikic/FastRoute/tree/master"
  5029. },
  5030. "time": "2018-02-13T20:26:39+00:00"
  5031. },
  5032. {
  5033. "name": "nikic/php-parser",
  5034. "version": "v4.19.4",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/nikic/PHP-Parser.git",
  5038. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5043. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "ext-tokenizer": "*",
  5048. "php": ">=7.1"
  5049. },
  5050. "require-dev": {
  5051. "ircmaxell/php-yacc": "^0.0.7",
  5052. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5053. },
  5054. "bin": [
  5055. "bin/php-parse"
  5056. ],
  5057. "type": "library",
  5058. "extra": {
  5059. "branch-alias": {
  5060. "dev-master": "4.9-dev"
  5061. }
  5062. },
  5063. "autoload": {
  5064. "psr-4": {
  5065. "PhpParser\\": "lib/PhpParser"
  5066. }
  5067. },
  5068. "notification-url": "https://packagist.org/downloads/",
  5069. "license": [
  5070. "BSD-3-Clause"
  5071. ],
  5072. "authors": [
  5073. {
  5074. "name": "Nikita Popov"
  5075. }
  5076. ],
  5077. "description": "A PHP parser written in PHP",
  5078. "keywords": [
  5079. "parser",
  5080. "php"
  5081. ],
  5082. "support": {
  5083. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5084. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5085. },
  5086. "time": "2024-09-29T15:01:53+00:00"
  5087. },
  5088. {
  5089. "name": "opentracing/opentracing",
  5090. "version": "1.0.2",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/opentracing/opentracing-php.git",
  5094. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/opentracing/opentracing-php/zipball/cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  5099. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  5100. "shasum": ""
  5101. },
  5102. "require": {
  5103. "php": "^7.1 || ^8.0"
  5104. },
  5105. "require-dev": {
  5106. "phpstan/phpstan": "~0.12",
  5107. "phpunit/phpunit": "^7.0 || ^9.0",
  5108. "squizlabs/php_codesniffer": "3.*"
  5109. },
  5110. "type": "library",
  5111. "autoload": {
  5112. "files": [
  5113. "src/OpenTracing/Tags.php",
  5114. "src/OpenTracing/Formats.php"
  5115. ],
  5116. "psr-4": {
  5117. "OpenTracing\\": "src/OpenTracing/"
  5118. }
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "Apache-2.0"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "José Carlos Chávez",
  5127. "email": "jcchavezs@gmail.com"
  5128. }
  5129. ],
  5130. "description": "OpenTracing API for PHP",
  5131. "support": {
  5132. "issues": "https://github.com/opentracing/opentracing-php/issues",
  5133. "source": "https://github.com/opentracing/opentracing-php/tree/1.0.2"
  5134. },
  5135. "time": "2022-01-27T19:59:21+00:00"
  5136. },
  5137. {
  5138. "name": "openzipkin/zipkin",
  5139. "version": "3.2.0",
  5140. "source": {
  5141. "type": "git",
  5142. "url": "https://github.com/openzipkin/zipkin-php.git",
  5143. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6"
  5144. },
  5145. "dist": {
  5146. "type": "zip",
  5147. "url": "https://api.github.com/repos/openzipkin/zipkin-php/zipball/e2809f8b6775796d2116b3ca73576a1734296ff6",
  5148. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6",
  5149. "shasum": ""
  5150. },
  5151. "require": {
  5152. "ext-curl": "*",
  5153. "php": "^7.4 || ^8.0",
  5154. "psr/http-message": "~1.0 || ~2.0",
  5155. "psr/log": "^1.0 || ^2.0 || ^3.0"
  5156. },
  5157. "require-dev": {
  5158. "ext-mysqli": "*",
  5159. "jcchavezs/httptest": "~0.2",
  5160. "middlewares/fast-route": "^2.0",
  5161. "middlewares/request-handler": "^2.0",
  5162. "nyholm/psr7": "^1.4",
  5163. "phpspec/prophecy-phpunit": "^2.0",
  5164. "phpstan/phpstan": "^0.12.26",
  5165. "phpunit/phpunit": "~9",
  5166. "psr/http-client": "^1.0",
  5167. "psr/http-server-middleware": "^1.0",
  5168. "squizlabs/php_codesniffer": "3.*"
  5169. },
  5170. "suggest": {
  5171. "ext-mysqli": "Allows to use mysqli instrumentation.",
  5172. "psr/http-client": "Allows to instrument HTTP clients following PSR18.",
  5173. "psr/http-server-middleware": "Allows to instrument HTTP servers via middlewares following PSR15."
  5174. },
  5175. "type": "library",
  5176. "autoload": {
  5177. "files": [
  5178. "./src/Zipkin/Propagation/Id.php",
  5179. "./src/Zipkin/Timestamp.php",
  5180. "./src/Zipkin/Kind.php",
  5181. "./src/Zipkin/Tags.php",
  5182. "./src/Zipkin/Annotations.php",
  5183. "./src/Zipkin/SpanName.php"
  5184. ],
  5185. "psr-4": {
  5186. "Zipkin\\": "./src/Zipkin/"
  5187. }
  5188. },
  5189. "notification-url": "https://packagist.org/downloads/",
  5190. "license": [
  5191. "Apache-2.0"
  5192. ],
  5193. "authors": [
  5194. {
  5195. "name": "José Carlos Chávez",
  5196. "email": "jcchavezs@gmail.com"
  5197. }
  5198. ],
  5199. "description": "A Zipkin instrumentation for PHP",
  5200. "homepage": "https://github.com/openzipkin/zipkin-php",
  5201. "keywords": [
  5202. "distributed-tracing",
  5203. "openzipkin",
  5204. "tracing",
  5205. "zipkin"
  5206. ],
  5207. "support": {
  5208. "issues": "https://github.com/openzipkin/zipkin-php/issues",
  5209. "source": "https://github.com/openzipkin/zipkin-php/tree/3.2.0"
  5210. },
  5211. "time": "2023-09-28T20:54:04+00:00"
  5212. },
  5213. {
  5214. "name": "paragonie/constant_time_encoding",
  5215. "version": "v3.0.0",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5219. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5224. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5225. "shasum": ""
  5226. },
  5227. "require": {
  5228. "php": "^8"
  5229. },
  5230. "require-dev": {
  5231. "phpunit/phpunit": "^9",
  5232. "vimeo/psalm": "^4|^5"
  5233. },
  5234. "type": "library",
  5235. "autoload": {
  5236. "psr-4": {
  5237. "ParagonIE\\ConstantTime\\": "src/"
  5238. }
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "MIT"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Paragon Initiative Enterprises",
  5247. "email": "security@paragonie.com",
  5248. "homepage": "https://paragonie.com",
  5249. "role": "Maintainer"
  5250. },
  5251. {
  5252. "name": "Steve 'Sc00bz' Thomas",
  5253. "email": "steve@tobtu.com",
  5254. "homepage": "https://www.tobtu.com",
  5255. "role": "Original Developer"
  5256. }
  5257. ],
  5258. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5259. "keywords": [
  5260. "base16",
  5261. "base32",
  5262. "base32_decode",
  5263. "base32_encode",
  5264. "base64",
  5265. "base64_decode",
  5266. "base64_encode",
  5267. "bin2hex",
  5268. "encoding",
  5269. "hex",
  5270. "hex2bin",
  5271. "rfc4648"
  5272. ],
  5273. "support": {
  5274. "email": "info@paragonie.com",
  5275. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5276. "source": "https://github.com/paragonie/constant_time_encoding"
  5277. },
  5278. "time": "2024-05-08T12:36:18+00:00"
  5279. },
  5280. {
  5281. "name": "paragonie/random_compat",
  5282. "version": "v9.99.100",
  5283. "source": {
  5284. "type": "git",
  5285. "url": "https://github.com/paragonie/random_compat.git",
  5286. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5287. },
  5288. "dist": {
  5289. "type": "zip",
  5290. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5291. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5292. "shasum": ""
  5293. },
  5294. "require": {
  5295. "php": ">= 7"
  5296. },
  5297. "require-dev": {
  5298. "phpunit/phpunit": "4.*|5.*",
  5299. "vimeo/psalm": "^1"
  5300. },
  5301. "suggest": {
  5302. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5303. },
  5304. "type": "library",
  5305. "notification-url": "https://packagist.org/downloads/",
  5306. "license": [
  5307. "MIT"
  5308. ],
  5309. "authors": [
  5310. {
  5311. "name": "Paragon Initiative Enterprises",
  5312. "email": "security@paragonie.com",
  5313. "homepage": "https://paragonie.com"
  5314. }
  5315. ],
  5316. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5317. "keywords": [
  5318. "csprng",
  5319. "polyfill",
  5320. "pseudorandom",
  5321. "random"
  5322. ],
  5323. "support": {
  5324. "email": "info@paragonie.com",
  5325. "issues": "https://github.com/paragonie/random_compat/issues",
  5326. "source": "https://github.com/paragonie/random_compat"
  5327. },
  5328. "time": "2020-10-15T08:29:30+00:00"
  5329. },
  5330. {
  5331. "name": "php-amqplib/php-amqplib",
  5332. "version": "v3.7.1",
  5333. "source": {
  5334. "type": "git",
  5335. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5336. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5337. },
  5338. "dist": {
  5339. "type": "zip",
  5340. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5341. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5342. "shasum": ""
  5343. },
  5344. "require": {
  5345. "ext-mbstring": "*",
  5346. "ext-sockets": "*",
  5347. "php": "^7.2||^8.0",
  5348. "phpseclib/phpseclib": "^2.0|^3.0"
  5349. },
  5350. "conflict": {
  5351. "php": "7.4.0 - 7.4.1"
  5352. },
  5353. "replace": {
  5354. "videlalvaro/php-amqplib": "self.version"
  5355. },
  5356. "require-dev": {
  5357. "ext-curl": "*",
  5358. "nategood/httpful": "^0.2.20",
  5359. "phpunit/phpunit": "^7.5|^9.5",
  5360. "squizlabs/php_codesniffer": "^3.6"
  5361. },
  5362. "type": "library",
  5363. "extra": {
  5364. "branch-alias": {
  5365. "dev-master": "3.0-dev"
  5366. }
  5367. },
  5368. "autoload": {
  5369. "psr-4": {
  5370. "PhpAmqpLib\\": "PhpAmqpLib/"
  5371. }
  5372. },
  5373. "notification-url": "https://packagist.org/downloads/",
  5374. "license": [
  5375. "LGPL-2.1-or-later"
  5376. ],
  5377. "authors": [
  5378. {
  5379. "name": "Alvaro Videla",
  5380. "role": "Original Maintainer"
  5381. },
  5382. {
  5383. "name": "Raúl Araya",
  5384. "email": "nubeiro@gmail.com",
  5385. "role": "Maintainer"
  5386. },
  5387. {
  5388. "name": "Luke Bakken",
  5389. "email": "luke@bakken.io",
  5390. "role": "Maintainer"
  5391. },
  5392. {
  5393. "name": "Ramūnas Dronga",
  5394. "email": "github@ramuno.lt",
  5395. "role": "Maintainer"
  5396. }
  5397. ],
  5398. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5399. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5400. "keywords": [
  5401. "message",
  5402. "queue",
  5403. "rabbitmq"
  5404. ],
  5405. "support": {
  5406. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5407. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5408. },
  5409. "time": "2024-09-03T19:18:03+00:00"
  5410. },
  5411. {
  5412. "name": "php-di/phpdoc-reader",
  5413. "version": "2.2.1",
  5414. "source": {
  5415. "type": "git",
  5416. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5417. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5418. },
  5419. "dist": {
  5420. "type": "zip",
  5421. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5422. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5423. "shasum": ""
  5424. },
  5425. "require": {
  5426. "php": ">=7.2.0"
  5427. },
  5428. "require-dev": {
  5429. "mnapoli/hard-mode": "~0.3.0",
  5430. "phpunit/phpunit": "^8.5|^9.0"
  5431. },
  5432. "type": "library",
  5433. "autoload": {
  5434. "psr-4": {
  5435. "PhpDocReader\\": "src/PhpDocReader"
  5436. }
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "MIT"
  5441. ],
  5442. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5443. "keywords": [
  5444. "phpdoc",
  5445. "reflection"
  5446. ],
  5447. "support": {
  5448. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5449. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5450. },
  5451. "time": "2020-10-12T12:39:22+00:00"
  5452. },
  5453. {
  5454. "name": "phpoption/phpoption",
  5455. "version": "1.9.3",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/schmittjoh/php-option.git",
  5459. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5464. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5465. "shasum": ""
  5466. },
  5467. "require": {
  5468. "php": "^7.2.5 || ^8.0"
  5469. },
  5470. "require-dev": {
  5471. "bamarni/composer-bin-plugin": "^1.8.2",
  5472. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5473. },
  5474. "type": "library",
  5475. "extra": {
  5476. "bamarni-bin": {
  5477. "bin-links": true,
  5478. "forward-command": false
  5479. },
  5480. "branch-alias": {
  5481. "dev-master": "1.9-dev"
  5482. }
  5483. },
  5484. "autoload": {
  5485. "psr-4": {
  5486. "PhpOption\\": "src/PhpOption/"
  5487. }
  5488. },
  5489. "notification-url": "https://packagist.org/downloads/",
  5490. "license": [
  5491. "Apache-2.0"
  5492. ],
  5493. "authors": [
  5494. {
  5495. "name": "Johannes M. Schmitt",
  5496. "email": "schmittjoh@gmail.com",
  5497. "homepage": "https://github.com/schmittjoh"
  5498. },
  5499. {
  5500. "name": "Graham Campbell",
  5501. "email": "hello@gjcampbell.co.uk",
  5502. "homepage": "https://github.com/GrahamCampbell"
  5503. }
  5504. ],
  5505. "description": "Option Type for PHP",
  5506. "keywords": [
  5507. "language",
  5508. "option",
  5509. "php",
  5510. "type"
  5511. ],
  5512. "support": {
  5513. "issues": "https://github.com/schmittjoh/php-option/issues",
  5514. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5515. },
  5516. "funding": [
  5517. {
  5518. "url": "https://github.com/GrahamCampbell",
  5519. "type": "github"
  5520. },
  5521. {
  5522. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5523. "type": "tidelift"
  5524. }
  5525. ],
  5526. "time": "2024-07-20T21:41:07+00:00"
  5527. },
  5528. {
  5529. "name": "phpseclib/phpseclib",
  5530. "version": "3.0.42",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/phpseclib/phpseclib.git",
  5534. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5539. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5540. "shasum": ""
  5541. },
  5542. "require": {
  5543. "paragonie/constant_time_encoding": "^1|^2|^3",
  5544. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5545. "php": ">=5.6.1"
  5546. },
  5547. "require-dev": {
  5548. "phpunit/phpunit": "*"
  5549. },
  5550. "suggest": {
  5551. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5552. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5553. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5554. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5555. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5556. },
  5557. "type": "library",
  5558. "autoload": {
  5559. "files": [
  5560. "phpseclib/bootstrap.php"
  5561. ],
  5562. "psr-4": {
  5563. "phpseclib3\\": "phpseclib/"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Jim Wigginton",
  5573. "email": "terrafrost@php.net",
  5574. "role": "Lead Developer"
  5575. },
  5576. {
  5577. "name": "Patrick Monnerat",
  5578. "email": "pm@datasphere.ch",
  5579. "role": "Developer"
  5580. },
  5581. {
  5582. "name": "Andreas Fischer",
  5583. "email": "bantu@phpbb.com",
  5584. "role": "Developer"
  5585. },
  5586. {
  5587. "name": "Hans-Jürgen Petrich",
  5588. "email": "petrich@tronic-media.com",
  5589. "role": "Developer"
  5590. },
  5591. {
  5592. "name": "Graham Campbell",
  5593. "email": "graham@alt-three.com",
  5594. "role": "Developer"
  5595. }
  5596. ],
  5597. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5598. "homepage": "http://phpseclib.sourceforge.net",
  5599. "keywords": [
  5600. "BigInteger",
  5601. "aes",
  5602. "asn.1",
  5603. "asn1",
  5604. "blowfish",
  5605. "crypto",
  5606. "cryptography",
  5607. "encryption",
  5608. "rsa",
  5609. "security",
  5610. "sftp",
  5611. "signature",
  5612. "signing",
  5613. "ssh",
  5614. "twofish",
  5615. "x.509",
  5616. "x509"
  5617. ],
  5618. "support": {
  5619. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5620. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  5621. },
  5622. "funding": [
  5623. {
  5624. "url": "https://github.com/terrafrost",
  5625. "type": "github"
  5626. },
  5627. {
  5628. "url": "https://www.patreon.com/phpseclib",
  5629. "type": "patreon"
  5630. },
  5631. {
  5632. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5633. "type": "tidelift"
  5634. }
  5635. ],
  5636. "time": "2024-09-16T03:06:04+00:00"
  5637. },
  5638. {
  5639. "name": "psr/clock",
  5640. "version": "1.0.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/php-fig/clock.git",
  5644. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5649. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": "^7.0 || ^8.0"
  5654. },
  5655. "type": "library",
  5656. "autoload": {
  5657. "psr-4": {
  5658. "Psr\\Clock\\": "src/"
  5659. }
  5660. },
  5661. "notification-url": "https://packagist.org/downloads/",
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "PHP-FIG",
  5668. "homepage": "https://www.php-fig.org/"
  5669. }
  5670. ],
  5671. "description": "Common interface for reading the clock.",
  5672. "homepage": "https://github.com/php-fig/clock",
  5673. "keywords": [
  5674. "clock",
  5675. "now",
  5676. "psr",
  5677. "psr-20",
  5678. "time"
  5679. ],
  5680. "support": {
  5681. "issues": "https://github.com/php-fig/clock/issues",
  5682. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5683. },
  5684. "time": "2022-11-25T14:36:26+00:00"
  5685. },
  5686. {
  5687. "name": "psr/container",
  5688. "version": "2.0.2",
  5689. "source": {
  5690. "type": "git",
  5691. "url": "https://github.com/php-fig/container.git",
  5692. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5693. },
  5694. "dist": {
  5695. "type": "zip",
  5696. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5697. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5698. "shasum": ""
  5699. },
  5700. "require": {
  5701. "php": ">=7.4.0"
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "2.0.x-dev"
  5707. }
  5708. },
  5709. "autoload": {
  5710. "psr-4": {
  5711. "Psr\\Container\\": "src/"
  5712. }
  5713. },
  5714. "notification-url": "https://packagist.org/downloads/",
  5715. "license": [
  5716. "MIT"
  5717. ],
  5718. "authors": [
  5719. {
  5720. "name": "PHP-FIG",
  5721. "homepage": "https://www.php-fig.org/"
  5722. }
  5723. ],
  5724. "description": "Common Container Interface (PHP FIG PSR-11)",
  5725. "homepage": "https://github.com/php-fig/container",
  5726. "keywords": [
  5727. "PSR-11",
  5728. "container",
  5729. "container-interface",
  5730. "container-interop",
  5731. "psr"
  5732. ],
  5733. "support": {
  5734. "issues": "https://github.com/php-fig/container/issues",
  5735. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5736. },
  5737. "time": "2021-11-05T16:47:00+00:00"
  5738. },
  5739. {
  5740. "name": "psr/event-dispatcher",
  5741. "version": "1.0.0",
  5742. "source": {
  5743. "type": "git",
  5744. "url": "https://github.com/php-fig/event-dispatcher.git",
  5745. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5746. },
  5747. "dist": {
  5748. "type": "zip",
  5749. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5750. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5751. "shasum": ""
  5752. },
  5753. "require": {
  5754. "php": ">=7.2.0"
  5755. },
  5756. "type": "library",
  5757. "extra": {
  5758. "branch-alias": {
  5759. "dev-master": "1.0.x-dev"
  5760. }
  5761. },
  5762. "autoload": {
  5763. "psr-4": {
  5764. "Psr\\EventDispatcher\\": "src/"
  5765. }
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "MIT"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "PHP-FIG",
  5774. "homepage": "http://www.php-fig.org/"
  5775. }
  5776. ],
  5777. "description": "Standard interfaces for event handling.",
  5778. "keywords": [
  5779. "events",
  5780. "psr",
  5781. "psr-14"
  5782. ],
  5783. "support": {
  5784. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5785. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5786. },
  5787. "time": "2019-01-08T18:20:26+00:00"
  5788. },
  5789. {
  5790. "name": "psr/http-client",
  5791. "version": "1.0.3",
  5792. "source": {
  5793. "type": "git",
  5794. "url": "https://github.com/php-fig/http-client.git",
  5795. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5796. },
  5797. "dist": {
  5798. "type": "zip",
  5799. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5800. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5801. "shasum": ""
  5802. },
  5803. "require": {
  5804. "php": "^7.0 || ^8.0",
  5805. "psr/http-message": "^1.0 || ^2.0"
  5806. },
  5807. "type": "library",
  5808. "extra": {
  5809. "branch-alias": {
  5810. "dev-master": "1.0.x-dev"
  5811. }
  5812. },
  5813. "autoload": {
  5814. "psr-4": {
  5815. "Psr\\Http\\Client\\": "src/"
  5816. }
  5817. },
  5818. "notification-url": "https://packagist.org/downloads/",
  5819. "license": [
  5820. "MIT"
  5821. ],
  5822. "authors": [
  5823. {
  5824. "name": "PHP-FIG",
  5825. "homepage": "https://www.php-fig.org/"
  5826. }
  5827. ],
  5828. "description": "Common interface for HTTP clients",
  5829. "homepage": "https://github.com/php-fig/http-client",
  5830. "keywords": [
  5831. "http",
  5832. "http-client",
  5833. "psr",
  5834. "psr-18"
  5835. ],
  5836. "support": {
  5837. "source": "https://github.com/php-fig/http-client"
  5838. },
  5839. "time": "2023-09-23T14:17:50+00:00"
  5840. },
  5841. {
  5842. "name": "psr/http-factory",
  5843. "version": "1.1.0",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://github.com/php-fig/http-factory.git",
  5847. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5852. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5853. "shasum": ""
  5854. },
  5855. "require": {
  5856. "php": ">=7.1",
  5857. "psr/http-message": "^1.0 || ^2.0"
  5858. },
  5859. "type": "library",
  5860. "extra": {
  5861. "branch-alias": {
  5862. "dev-master": "1.0.x-dev"
  5863. }
  5864. },
  5865. "autoload": {
  5866. "psr-4": {
  5867. "Psr\\Http\\Message\\": "src/"
  5868. }
  5869. },
  5870. "notification-url": "https://packagist.org/downloads/",
  5871. "license": [
  5872. "MIT"
  5873. ],
  5874. "authors": [
  5875. {
  5876. "name": "PHP-FIG",
  5877. "homepage": "https://www.php-fig.org/"
  5878. }
  5879. ],
  5880. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5881. "keywords": [
  5882. "factory",
  5883. "http",
  5884. "message",
  5885. "psr",
  5886. "psr-17",
  5887. "psr-7",
  5888. "request",
  5889. "response"
  5890. ],
  5891. "support": {
  5892. "source": "https://github.com/php-fig/http-factory"
  5893. },
  5894. "time": "2024-04-15T12:06:14+00:00"
  5895. },
  5896. {
  5897. "name": "psr/http-message",
  5898. "version": "2.0",
  5899. "source": {
  5900. "type": "git",
  5901. "url": "https://github.com/php-fig/http-message.git",
  5902. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5903. },
  5904. "dist": {
  5905. "type": "zip",
  5906. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5907. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5908. "shasum": ""
  5909. },
  5910. "require": {
  5911. "php": "^7.2 || ^8.0"
  5912. },
  5913. "type": "library",
  5914. "extra": {
  5915. "branch-alias": {
  5916. "dev-master": "2.0.x-dev"
  5917. }
  5918. },
  5919. "autoload": {
  5920. "psr-4": {
  5921. "Psr\\Http\\Message\\": "src/"
  5922. }
  5923. },
  5924. "notification-url": "https://packagist.org/downloads/",
  5925. "license": [
  5926. "MIT"
  5927. ],
  5928. "authors": [
  5929. {
  5930. "name": "PHP-FIG",
  5931. "homepage": "https://www.php-fig.org/"
  5932. }
  5933. ],
  5934. "description": "Common interface for HTTP messages",
  5935. "homepage": "https://github.com/php-fig/http-message",
  5936. "keywords": [
  5937. "http",
  5938. "http-message",
  5939. "psr",
  5940. "psr-7",
  5941. "request",
  5942. "response"
  5943. ],
  5944. "support": {
  5945. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5946. },
  5947. "time": "2023-04-04T09:54:51+00:00"
  5948. },
  5949. {
  5950. "name": "psr/http-server-handler",
  5951. "version": "1.0.2",
  5952. "source": {
  5953. "type": "git",
  5954. "url": "https://github.com/php-fig/http-server-handler.git",
  5955. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5956. },
  5957. "dist": {
  5958. "type": "zip",
  5959. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5960. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5961. "shasum": ""
  5962. },
  5963. "require": {
  5964. "php": ">=7.0",
  5965. "psr/http-message": "^1.0 || ^2.0"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-master": "1.0.x-dev"
  5971. }
  5972. },
  5973. "autoload": {
  5974. "psr-4": {
  5975. "Psr\\Http\\Server\\": "src/"
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "PHP-FIG",
  5985. "homepage": "https://www.php-fig.org/"
  5986. }
  5987. ],
  5988. "description": "Common interface for HTTP server-side request handler",
  5989. "keywords": [
  5990. "handler",
  5991. "http",
  5992. "http-interop",
  5993. "psr",
  5994. "psr-15",
  5995. "psr-7",
  5996. "request",
  5997. "response",
  5998. "server"
  5999. ],
  6000. "support": {
  6001. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6002. },
  6003. "time": "2023-04-10T20:06:20+00:00"
  6004. },
  6005. {
  6006. "name": "psr/http-server-middleware",
  6007. "version": "1.0.2",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://github.com/php-fig/http-server-middleware.git",
  6011. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6016. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6017. "shasum": ""
  6018. },
  6019. "require": {
  6020. "php": ">=7.0",
  6021. "psr/http-message": "^1.0 || ^2.0",
  6022. "psr/http-server-handler": "^1.0"
  6023. },
  6024. "type": "library",
  6025. "extra": {
  6026. "branch-alias": {
  6027. "dev-master": "1.0.x-dev"
  6028. }
  6029. },
  6030. "autoload": {
  6031. "psr-4": {
  6032. "Psr\\Http\\Server\\": "src/"
  6033. }
  6034. },
  6035. "notification-url": "https://packagist.org/downloads/",
  6036. "license": [
  6037. "MIT"
  6038. ],
  6039. "authors": [
  6040. {
  6041. "name": "PHP-FIG",
  6042. "homepage": "https://www.php-fig.org/"
  6043. }
  6044. ],
  6045. "description": "Common interface for HTTP server-side middleware",
  6046. "keywords": [
  6047. "http",
  6048. "http-interop",
  6049. "middleware",
  6050. "psr",
  6051. "psr-15",
  6052. "psr-7",
  6053. "request",
  6054. "response"
  6055. ],
  6056. "support": {
  6057. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6058. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6059. },
  6060. "time": "2023-04-11T06:14:47+00:00"
  6061. },
  6062. {
  6063. "name": "psr/log",
  6064. "version": "3.0.2",
  6065. "source": {
  6066. "type": "git",
  6067. "url": "https://github.com/php-fig/log.git",
  6068. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6069. },
  6070. "dist": {
  6071. "type": "zip",
  6072. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6073. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6074. "shasum": ""
  6075. },
  6076. "require": {
  6077. "php": ">=8.0.0"
  6078. },
  6079. "type": "library",
  6080. "extra": {
  6081. "branch-alias": {
  6082. "dev-master": "3.x-dev"
  6083. }
  6084. },
  6085. "autoload": {
  6086. "psr-4": {
  6087. "Psr\\Log\\": "src"
  6088. }
  6089. },
  6090. "notification-url": "https://packagist.org/downloads/",
  6091. "license": [
  6092. "MIT"
  6093. ],
  6094. "authors": [
  6095. {
  6096. "name": "PHP-FIG",
  6097. "homepage": "https://www.php-fig.org/"
  6098. }
  6099. ],
  6100. "description": "Common interface for logging libraries",
  6101. "homepage": "https://github.com/php-fig/log",
  6102. "keywords": [
  6103. "log",
  6104. "psr",
  6105. "psr-3"
  6106. ],
  6107. "support": {
  6108. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6109. },
  6110. "time": "2024-09-11T13:17:53+00:00"
  6111. },
  6112. {
  6113. "name": "psr/simple-cache",
  6114. "version": "3.0.0",
  6115. "source": {
  6116. "type": "git",
  6117. "url": "https://github.com/php-fig/simple-cache.git",
  6118. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6119. },
  6120. "dist": {
  6121. "type": "zip",
  6122. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6123. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6124. "shasum": ""
  6125. },
  6126. "require": {
  6127. "php": ">=8.0.0"
  6128. },
  6129. "type": "library",
  6130. "extra": {
  6131. "branch-alias": {
  6132. "dev-master": "3.0.x-dev"
  6133. }
  6134. },
  6135. "autoload": {
  6136. "psr-4": {
  6137. "Psr\\SimpleCache\\": "src/"
  6138. }
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "MIT"
  6143. ],
  6144. "authors": [
  6145. {
  6146. "name": "PHP-FIG",
  6147. "homepage": "https://www.php-fig.org/"
  6148. }
  6149. ],
  6150. "description": "Common interfaces for simple caching",
  6151. "keywords": [
  6152. "cache",
  6153. "caching",
  6154. "psr",
  6155. "psr-16",
  6156. "simple-cache"
  6157. ],
  6158. "support": {
  6159. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6160. },
  6161. "time": "2021-10-29T13:26:27+00:00"
  6162. },
  6163. {
  6164. "name": "ralouphie/getallheaders",
  6165. "version": "3.0.3",
  6166. "source": {
  6167. "type": "git",
  6168. "url": "https://github.com/ralouphie/getallheaders.git",
  6169. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6170. },
  6171. "dist": {
  6172. "type": "zip",
  6173. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6174. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6175. "shasum": ""
  6176. },
  6177. "require": {
  6178. "php": ">=5.6"
  6179. },
  6180. "require-dev": {
  6181. "php-coveralls/php-coveralls": "^2.1",
  6182. "phpunit/phpunit": "^5 || ^6.5"
  6183. },
  6184. "type": "library",
  6185. "autoload": {
  6186. "files": [
  6187. "src/getallheaders.php"
  6188. ]
  6189. },
  6190. "notification-url": "https://packagist.org/downloads/",
  6191. "license": [
  6192. "MIT"
  6193. ],
  6194. "authors": [
  6195. {
  6196. "name": "Ralph Khattar",
  6197. "email": "ralph.khattar@gmail.com"
  6198. }
  6199. ],
  6200. "description": "A polyfill for getallheaders.",
  6201. "support": {
  6202. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6203. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6204. },
  6205. "time": "2019-03-08T08:55:37+00:00"
  6206. },
  6207. {
  6208. "name": "react/promise",
  6209. "version": "v2.11.0",
  6210. "source": {
  6211. "type": "git",
  6212. "url": "https://github.com/reactphp/promise.git",
  6213. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  6214. },
  6215. "dist": {
  6216. "type": "zip",
  6217. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  6218. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  6219. "shasum": ""
  6220. },
  6221. "require": {
  6222. "php": ">=5.4.0"
  6223. },
  6224. "require-dev": {
  6225. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  6226. },
  6227. "type": "library",
  6228. "autoload": {
  6229. "files": [
  6230. "src/functions_include.php"
  6231. ],
  6232. "psr-4": {
  6233. "React\\Promise\\": "src/"
  6234. }
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Jan Sorgalla",
  6243. "email": "jsorgalla@gmail.com",
  6244. "homepage": "https://sorgalla.com/"
  6245. },
  6246. {
  6247. "name": "Christian Lück",
  6248. "email": "christian@clue.engineering",
  6249. "homepage": "https://clue.engineering/"
  6250. },
  6251. {
  6252. "name": "Cees-Jan Kiewiet",
  6253. "email": "reactphp@ceesjankiewiet.nl",
  6254. "homepage": "https://wyrihaximus.net/"
  6255. },
  6256. {
  6257. "name": "Chris Boden",
  6258. "email": "cboden@gmail.com",
  6259. "homepage": "https://cboden.dev/"
  6260. }
  6261. ],
  6262. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6263. "keywords": [
  6264. "promise",
  6265. "promises"
  6266. ],
  6267. "support": {
  6268. "issues": "https://github.com/reactphp/promise/issues",
  6269. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  6270. },
  6271. "funding": [
  6272. {
  6273. "url": "https://opencollective.com/reactphp",
  6274. "type": "open_collective"
  6275. }
  6276. ],
  6277. "time": "2023-11-16T16:16:50+00:00"
  6278. },
  6279. {
  6280. "name": "swow/psr7-plus",
  6281. "version": "v1.1.2",
  6282. "source": {
  6283. "type": "git",
  6284. "url": "https://github.com/swow/psr7-plus.git",
  6285. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6286. },
  6287. "dist": {
  6288. "type": "zip",
  6289. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6290. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6291. "shasum": ""
  6292. },
  6293. "require": {
  6294. "php": ">=8.0",
  6295. "psr/http-client": "^1.0",
  6296. "psr/http-factory": "^1.0",
  6297. "psr/http-message": "^1.1|^2.0"
  6298. },
  6299. "type": "library",
  6300. "autoload": {
  6301. "psr-4": {
  6302. "Swow\\Psr7\\Message\\": "src/Message/"
  6303. }
  6304. },
  6305. "notification-url": "https://packagist.org/downloads/",
  6306. "license": [
  6307. "Apache-2.0"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "twose",
  6312. "email": "twosee@php.net"
  6313. }
  6314. ],
  6315. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6316. "keywords": [
  6317. "http",
  6318. "psr17",
  6319. "psr7",
  6320. "swow",
  6321. "websocket"
  6322. ],
  6323. "support": {
  6324. "issues": "https://github.com/swow/swow",
  6325. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6326. },
  6327. "time": "2023-06-15T09:18:11+00:00"
  6328. },
  6329. {
  6330. "name": "symfony/console",
  6331. "version": "v6.4.12",
  6332. "source": {
  6333. "type": "git",
  6334. "url": "https://github.com/symfony/console.git",
  6335. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765"
  6336. },
  6337. "dist": {
  6338. "type": "zip",
  6339. "url": "https://api.github.com/repos/symfony/console/zipball/72d080eb9edf80e36c19be61f72c98ed8273b765",
  6340. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765",
  6341. "shasum": ""
  6342. },
  6343. "require": {
  6344. "php": ">=8.1",
  6345. "symfony/deprecation-contracts": "^2.5|^3",
  6346. "symfony/polyfill-mbstring": "~1.0",
  6347. "symfony/service-contracts": "^2.5|^3",
  6348. "symfony/string": "^5.4|^6.0|^7.0"
  6349. },
  6350. "conflict": {
  6351. "symfony/dependency-injection": "<5.4",
  6352. "symfony/dotenv": "<5.4",
  6353. "symfony/event-dispatcher": "<5.4",
  6354. "symfony/lock": "<5.4",
  6355. "symfony/process": "<5.4"
  6356. },
  6357. "provide": {
  6358. "psr/log-implementation": "1.0|2.0|3.0"
  6359. },
  6360. "require-dev": {
  6361. "psr/log": "^1|^2|^3",
  6362. "symfony/config": "^5.4|^6.0|^7.0",
  6363. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6364. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6365. "symfony/http-foundation": "^6.4|^7.0",
  6366. "symfony/http-kernel": "^6.4|^7.0",
  6367. "symfony/lock": "^5.4|^6.0|^7.0",
  6368. "symfony/messenger": "^5.4|^6.0|^7.0",
  6369. "symfony/process": "^5.4|^6.0|^7.0",
  6370. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6371. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6372. },
  6373. "type": "library",
  6374. "autoload": {
  6375. "psr-4": {
  6376. "Symfony\\Component\\Console\\": ""
  6377. },
  6378. "exclude-from-classmap": [
  6379. "/Tests/"
  6380. ]
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "MIT"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Fabien Potencier",
  6389. "email": "fabien@symfony.com"
  6390. },
  6391. {
  6392. "name": "Symfony Community",
  6393. "homepage": "https://symfony.com/contributors"
  6394. }
  6395. ],
  6396. "description": "Eases the creation of beautiful and testable command line interfaces",
  6397. "homepage": "https://symfony.com",
  6398. "keywords": [
  6399. "cli",
  6400. "command-line",
  6401. "console",
  6402. "terminal"
  6403. ],
  6404. "support": {
  6405. "source": "https://github.com/symfony/console/tree/v6.4.12"
  6406. },
  6407. "funding": [
  6408. {
  6409. "url": "https://symfony.com/sponsor",
  6410. "type": "custom"
  6411. },
  6412. {
  6413. "url": "https://github.com/fabpot",
  6414. "type": "github"
  6415. },
  6416. {
  6417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6418. "type": "tidelift"
  6419. }
  6420. ],
  6421. "time": "2024-09-20T08:15:52+00:00"
  6422. },
  6423. {
  6424. "name": "symfony/deprecation-contracts",
  6425. "version": "v3.5.0",
  6426. "source": {
  6427. "type": "git",
  6428. "url": "https://github.com/symfony/deprecation-contracts.git",
  6429. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6430. },
  6431. "dist": {
  6432. "type": "zip",
  6433. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6434. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6435. "shasum": ""
  6436. },
  6437. "require": {
  6438. "php": ">=8.1"
  6439. },
  6440. "type": "library",
  6441. "extra": {
  6442. "branch-alias": {
  6443. "dev-main": "3.5-dev"
  6444. },
  6445. "thanks": {
  6446. "name": "symfony/contracts",
  6447. "url": "https://github.com/symfony/contracts"
  6448. }
  6449. },
  6450. "autoload": {
  6451. "files": [
  6452. "function.php"
  6453. ]
  6454. },
  6455. "notification-url": "https://packagist.org/downloads/",
  6456. "license": [
  6457. "MIT"
  6458. ],
  6459. "authors": [
  6460. {
  6461. "name": "Nicolas Grekas",
  6462. "email": "p@tchwork.com"
  6463. },
  6464. {
  6465. "name": "Symfony Community",
  6466. "homepage": "https://symfony.com/contributors"
  6467. }
  6468. ],
  6469. "description": "A generic function and convention to trigger deprecation notices",
  6470. "homepage": "https://symfony.com",
  6471. "support": {
  6472. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://symfony.com/sponsor",
  6477. "type": "custom"
  6478. },
  6479. {
  6480. "url": "https://github.com/fabpot",
  6481. "type": "github"
  6482. },
  6483. {
  6484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6485. "type": "tidelift"
  6486. }
  6487. ],
  6488. "time": "2024-04-18T09:32:20+00:00"
  6489. },
  6490. {
  6491. "name": "symfony/finder",
  6492. "version": "v6.4.11",
  6493. "source": {
  6494. "type": "git",
  6495. "url": "https://github.com/symfony/finder.git",
  6496. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453"
  6497. },
  6498. "dist": {
  6499. "type": "zip",
  6500. "url": "https://api.github.com/repos/symfony/finder/zipball/d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  6501. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  6502. "shasum": ""
  6503. },
  6504. "require": {
  6505. "php": ">=8.1"
  6506. },
  6507. "require-dev": {
  6508. "symfony/filesystem": "^6.0|^7.0"
  6509. },
  6510. "type": "library",
  6511. "autoload": {
  6512. "psr-4": {
  6513. "Symfony\\Component\\Finder\\": ""
  6514. },
  6515. "exclude-from-classmap": [
  6516. "/Tests/"
  6517. ]
  6518. },
  6519. "notification-url": "https://packagist.org/downloads/",
  6520. "license": [
  6521. "MIT"
  6522. ],
  6523. "authors": [
  6524. {
  6525. "name": "Fabien Potencier",
  6526. "email": "fabien@symfony.com"
  6527. },
  6528. {
  6529. "name": "Symfony Community",
  6530. "homepage": "https://symfony.com/contributors"
  6531. }
  6532. ],
  6533. "description": "Finds files and directories via an intuitive fluent interface",
  6534. "homepage": "https://symfony.com",
  6535. "support": {
  6536. "source": "https://github.com/symfony/finder/tree/v6.4.11"
  6537. },
  6538. "funding": [
  6539. {
  6540. "url": "https://symfony.com/sponsor",
  6541. "type": "custom"
  6542. },
  6543. {
  6544. "url": "https://github.com/fabpot",
  6545. "type": "github"
  6546. },
  6547. {
  6548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6549. "type": "tidelift"
  6550. }
  6551. ],
  6552. "time": "2024-08-13T14:27:37+00:00"
  6553. },
  6554. {
  6555. "name": "symfony/polyfill-ctype",
  6556. "version": "v1.31.0",
  6557. "source": {
  6558. "type": "git",
  6559. "url": "https://github.com/symfony/polyfill-ctype.git",
  6560. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6561. },
  6562. "dist": {
  6563. "type": "zip",
  6564. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6565. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6566. "shasum": ""
  6567. },
  6568. "require": {
  6569. "php": ">=7.2"
  6570. },
  6571. "provide": {
  6572. "ext-ctype": "*"
  6573. },
  6574. "suggest": {
  6575. "ext-ctype": "For best performance"
  6576. },
  6577. "type": "library",
  6578. "extra": {
  6579. "thanks": {
  6580. "name": "symfony/polyfill",
  6581. "url": "https://github.com/symfony/polyfill"
  6582. }
  6583. },
  6584. "autoload": {
  6585. "files": [
  6586. "bootstrap.php"
  6587. ],
  6588. "psr-4": {
  6589. "Symfony\\Polyfill\\Ctype\\": ""
  6590. }
  6591. },
  6592. "notification-url": "https://packagist.org/downloads/",
  6593. "license": [
  6594. "MIT"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "Gert de Pagter",
  6599. "email": "BackEndTea@gmail.com"
  6600. },
  6601. {
  6602. "name": "Symfony Community",
  6603. "homepage": "https://symfony.com/contributors"
  6604. }
  6605. ],
  6606. "description": "Symfony polyfill for ctype functions",
  6607. "homepage": "https://symfony.com",
  6608. "keywords": [
  6609. "compatibility",
  6610. "ctype",
  6611. "polyfill",
  6612. "portable"
  6613. ],
  6614. "support": {
  6615. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6616. },
  6617. "funding": [
  6618. {
  6619. "url": "https://symfony.com/sponsor",
  6620. "type": "custom"
  6621. },
  6622. {
  6623. "url": "https://github.com/fabpot",
  6624. "type": "github"
  6625. },
  6626. {
  6627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6628. "type": "tidelift"
  6629. }
  6630. ],
  6631. "time": "2024-09-09T11:45:10+00:00"
  6632. },
  6633. {
  6634. "name": "symfony/polyfill-intl-grapheme",
  6635. "version": "v1.31.0",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6639. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6644. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": ">=7.2"
  6649. },
  6650. "suggest": {
  6651. "ext-intl": "For best performance"
  6652. },
  6653. "type": "library",
  6654. "extra": {
  6655. "thanks": {
  6656. "name": "symfony/polyfill",
  6657. "url": "https://github.com/symfony/polyfill"
  6658. }
  6659. },
  6660. "autoload": {
  6661. "files": [
  6662. "bootstrap.php"
  6663. ],
  6664. "psr-4": {
  6665. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6666. }
  6667. },
  6668. "notification-url": "https://packagist.org/downloads/",
  6669. "license": [
  6670. "MIT"
  6671. ],
  6672. "authors": [
  6673. {
  6674. "name": "Nicolas Grekas",
  6675. "email": "p@tchwork.com"
  6676. },
  6677. {
  6678. "name": "Symfony Community",
  6679. "homepage": "https://symfony.com/contributors"
  6680. }
  6681. ],
  6682. "description": "Symfony polyfill for intl's grapheme_* functions",
  6683. "homepage": "https://symfony.com",
  6684. "keywords": [
  6685. "compatibility",
  6686. "grapheme",
  6687. "intl",
  6688. "polyfill",
  6689. "portable",
  6690. "shim"
  6691. ],
  6692. "support": {
  6693. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6694. },
  6695. "funding": [
  6696. {
  6697. "url": "https://symfony.com/sponsor",
  6698. "type": "custom"
  6699. },
  6700. {
  6701. "url": "https://github.com/fabpot",
  6702. "type": "github"
  6703. },
  6704. {
  6705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6706. "type": "tidelift"
  6707. }
  6708. ],
  6709. "time": "2024-09-09T11:45:10+00:00"
  6710. },
  6711. {
  6712. "name": "symfony/polyfill-intl-normalizer",
  6713. "version": "v1.31.0",
  6714. "source": {
  6715. "type": "git",
  6716. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6717. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6718. },
  6719. "dist": {
  6720. "type": "zip",
  6721. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6722. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6723. "shasum": ""
  6724. },
  6725. "require": {
  6726. "php": ">=7.2"
  6727. },
  6728. "suggest": {
  6729. "ext-intl": "For best performance"
  6730. },
  6731. "type": "library",
  6732. "extra": {
  6733. "thanks": {
  6734. "name": "symfony/polyfill",
  6735. "url": "https://github.com/symfony/polyfill"
  6736. }
  6737. },
  6738. "autoload": {
  6739. "files": [
  6740. "bootstrap.php"
  6741. ],
  6742. "psr-4": {
  6743. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6744. },
  6745. "classmap": [
  6746. "Resources/stubs"
  6747. ]
  6748. },
  6749. "notification-url": "https://packagist.org/downloads/",
  6750. "license": [
  6751. "MIT"
  6752. ],
  6753. "authors": [
  6754. {
  6755. "name": "Nicolas Grekas",
  6756. "email": "p@tchwork.com"
  6757. },
  6758. {
  6759. "name": "Symfony Community",
  6760. "homepage": "https://symfony.com/contributors"
  6761. }
  6762. ],
  6763. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6764. "homepage": "https://symfony.com",
  6765. "keywords": [
  6766. "compatibility",
  6767. "intl",
  6768. "normalizer",
  6769. "polyfill",
  6770. "portable",
  6771. "shim"
  6772. ],
  6773. "support": {
  6774. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6775. },
  6776. "funding": [
  6777. {
  6778. "url": "https://symfony.com/sponsor",
  6779. "type": "custom"
  6780. },
  6781. {
  6782. "url": "https://github.com/fabpot",
  6783. "type": "github"
  6784. },
  6785. {
  6786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6787. "type": "tidelift"
  6788. }
  6789. ],
  6790. "time": "2024-09-09T11:45:10+00:00"
  6791. },
  6792. {
  6793. "name": "symfony/polyfill-mbstring",
  6794. "version": "v1.31.0",
  6795. "source": {
  6796. "type": "git",
  6797. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6798. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6799. },
  6800. "dist": {
  6801. "type": "zip",
  6802. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6803. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6804. "shasum": ""
  6805. },
  6806. "require": {
  6807. "php": ">=7.2"
  6808. },
  6809. "provide": {
  6810. "ext-mbstring": "*"
  6811. },
  6812. "suggest": {
  6813. "ext-mbstring": "For best performance"
  6814. },
  6815. "type": "library",
  6816. "extra": {
  6817. "thanks": {
  6818. "name": "symfony/polyfill",
  6819. "url": "https://github.com/symfony/polyfill"
  6820. }
  6821. },
  6822. "autoload": {
  6823. "files": [
  6824. "bootstrap.php"
  6825. ],
  6826. "psr-4": {
  6827. "Symfony\\Polyfill\\Mbstring\\": ""
  6828. }
  6829. },
  6830. "notification-url": "https://packagist.org/downloads/",
  6831. "license": [
  6832. "MIT"
  6833. ],
  6834. "authors": [
  6835. {
  6836. "name": "Nicolas Grekas",
  6837. "email": "p@tchwork.com"
  6838. },
  6839. {
  6840. "name": "Symfony Community",
  6841. "homepage": "https://symfony.com/contributors"
  6842. }
  6843. ],
  6844. "description": "Symfony polyfill for the Mbstring extension",
  6845. "homepage": "https://symfony.com",
  6846. "keywords": [
  6847. "compatibility",
  6848. "mbstring",
  6849. "polyfill",
  6850. "portable",
  6851. "shim"
  6852. ],
  6853. "support": {
  6854. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6855. },
  6856. "funding": [
  6857. {
  6858. "url": "https://symfony.com/sponsor",
  6859. "type": "custom"
  6860. },
  6861. {
  6862. "url": "https://github.com/fabpot",
  6863. "type": "github"
  6864. },
  6865. {
  6866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6867. "type": "tidelift"
  6868. }
  6869. ],
  6870. "time": "2024-09-09T11:45:10+00:00"
  6871. },
  6872. {
  6873. "name": "symfony/polyfill-php80",
  6874. "version": "v1.31.0",
  6875. "source": {
  6876. "type": "git",
  6877. "url": "https://github.com/symfony/polyfill-php80.git",
  6878. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6879. },
  6880. "dist": {
  6881. "type": "zip",
  6882. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6883. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6884. "shasum": ""
  6885. },
  6886. "require": {
  6887. "php": ">=7.2"
  6888. },
  6889. "type": "library",
  6890. "extra": {
  6891. "thanks": {
  6892. "name": "symfony/polyfill",
  6893. "url": "https://github.com/symfony/polyfill"
  6894. }
  6895. },
  6896. "autoload": {
  6897. "files": [
  6898. "bootstrap.php"
  6899. ],
  6900. "psr-4": {
  6901. "Symfony\\Polyfill\\Php80\\": ""
  6902. },
  6903. "classmap": [
  6904. "Resources/stubs"
  6905. ]
  6906. },
  6907. "notification-url": "https://packagist.org/downloads/",
  6908. "license": [
  6909. "MIT"
  6910. ],
  6911. "authors": [
  6912. {
  6913. "name": "Ion Bazan",
  6914. "email": "ion.bazan@gmail.com"
  6915. },
  6916. {
  6917. "name": "Nicolas Grekas",
  6918. "email": "p@tchwork.com"
  6919. },
  6920. {
  6921. "name": "Symfony Community",
  6922. "homepage": "https://symfony.com/contributors"
  6923. }
  6924. ],
  6925. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6926. "homepage": "https://symfony.com",
  6927. "keywords": [
  6928. "compatibility",
  6929. "polyfill",
  6930. "portable",
  6931. "shim"
  6932. ],
  6933. "support": {
  6934. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6935. },
  6936. "funding": [
  6937. {
  6938. "url": "https://symfony.com/sponsor",
  6939. "type": "custom"
  6940. },
  6941. {
  6942. "url": "https://github.com/fabpot",
  6943. "type": "github"
  6944. },
  6945. {
  6946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6947. "type": "tidelift"
  6948. }
  6949. ],
  6950. "time": "2024-09-09T11:45:10+00:00"
  6951. },
  6952. {
  6953. "name": "symfony/property-access",
  6954. "version": "v6.4.13",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/symfony/property-access.git",
  6958. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/symfony/property-access/zipball/8cc779d88d12e440adaa26387bcfc25744064afe",
  6963. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "php": ">=8.1",
  6968. "symfony/deprecation-contracts": "^2.5|^3",
  6969. "symfony/property-info": "^5.4|^6.0|^7.0"
  6970. },
  6971. "require-dev": {
  6972. "symfony/cache": "^5.4|^6.0|^7.0"
  6973. },
  6974. "type": "library",
  6975. "autoload": {
  6976. "psr-4": {
  6977. "Symfony\\Component\\PropertyAccess\\": ""
  6978. },
  6979. "exclude-from-classmap": [
  6980. "/Tests/"
  6981. ]
  6982. },
  6983. "notification-url": "https://packagist.org/downloads/",
  6984. "license": [
  6985. "MIT"
  6986. ],
  6987. "authors": [
  6988. {
  6989. "name": "Fabien Potencier",
  6990. "email": "fabien@symfony.com"
  6991. },
  6992. {
  6993. "name": "Symfony Community",
  6994. "homepage": "https://symfony.com/contributors"
  6995. }
  6996. ],
  6997. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6998. "homepage": "https://symfony.com",
  6999. "keywords": [
  7000. "access",
  7001. "array",
  7002. "extraction",
  7003. "index",
  7004. "injection",
  7005. "object",
  7006. "property",
  7007. "property-path",
  7008. "reflection"
  7009. ],
  7010. "support": {
  7011. "source": "https://github.com/symfony/property-access/tree/v6.4.13"
  7012. },
  7013. "funding": [
  7014. {
  7015. "url": "https://symfony.com/sponsor",
  7016. "type": "custom"
  7017. },
  7018. {
  7019. "url": "https://github.com/fabpot",
  7020. "type": "github"
  7021. },
  7022. {
  7023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7024. "type": "tidelift"
  7025. }
  7026. ],
  7027. "time": "2024-09-25T14:18:03+00:00"
  7028. },
  7029. {
  7030. "name": "symfony/property-info",
  7031. "version": "v6.4.13",
  7032. "source": {
  7033. "type": "git",
  7034. "url": "https://github.com/symfony/property-info.git",
  7035. "reference": "ea388133aadf407dfa54092873d1b7e52f439515"
  7036. },
  7037. "dist": {
  7038. "type": "zip",
  7039. "url": "https://api.github.com/repos/symfony/property-info/zipball/ea388133aadf407dfa54092873d1b7e52f439515",
  7040. "reference": "ea388133aadf407dfa54092873d1b7e52f439515",
  7041. "shasum": ""
  7042. },
  7043. "require": {
  7044. "php": ">=8.1",
  7045. "symfony/string": "^5.4|^6.0|^7.0"
  7046. },
  7047. "conflict": {
  7048. "phpdocumentor/reflection-docblock": "<5.2",
  7049. "phpdocumentor/type-resolver": "<1.5.1",
  7050. "symfony/dependency-injection": "<5.4",
  7051. "symfony/serializer": "<6.4"
  7052. },
  7053. "require-dev": {
  7054. "phpdocumentor/reflection-docblock": "^5.2",
  7055. "phpstan/phpdoc-parser": "^1.0",
  7056. "symfony/cache": "^5.4|^6.0|^7.0",
  7057. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7058. "symfony/serializer": "^6.4|^7.0"
  7059. },
  7060. "type": "library",
  7061. "autoload": {
  7062. "psr-4": {
  7063. "Symfony\\Component\\PropertyInfo\\": ""
  7064. },
  7065. "exclude-from-classmap": [
  7066. "/Tests/"
  7067. ]
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "license": [
  7071. "MIT"
  7072. ],
  7073. "authors": [
  7074. {
  7075. "name": "Kévin Dunglas",
  7076. "email": "dunglas@gmail.com"
  7077. },
  7078. {
  7079. "name": "Symfony Community",
  7080. "homepage": "https://symfony.com/contributors"
  7081. }
  7082. ],
  7083. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7084. "homepage": "https://symfony.com",
  7085. "keywords": [
  7086. "doctrine",
  7087. "phpdoc",
  7088. "property",
  7089. "symfony",
  7090. "type",
  7091. "validator"
  7092. ],
  7093. "support": {
  7094. "source": "https://github.com/symfony/property-info/tree/v6.4.13"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://symfony.com/sponsor",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/fabpot",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2024-09-25T14:18:03+00:00"
  7111. },
  7112. {
  7113. "name": "symfony/serializer",
  7114. "version": "v6.4.13",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/symfony/serializer.git",
  7118. "reference": "8be421505938b11a0ca4f656e4322232236386f0"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/symfony/serializer/zipball/8be421505938b11a0ca4f656e4322232236386f0",
  7123. "reference": "8be421505938b11a0ca4f656e4322232236386f0",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "php": ">=8.1",
  7128. "symfony/deprecation-contracts": "^2.5|^3",
  7129. "symfony/polyfill-ctype": "~1.8"
  7130. },
  7131. "conflict": {
  7132. "doctrine/annotations": "<1.12",
  7133. "phpdocumentor/reflection-docblock": "<3.2.2",
  7134. "phpdocumentor/type-resolver": "<1.4.0",
  7135. "symfony/dependency-injection": "<5.4",
  7136. "symfony/property-access": "<5.4",
  7137. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  7138. "symfony/uid": "<5.4",
  7139. "symfony/validator": "<6.4",
  7140. "symfony/yaml": "<5.4"
  7141. },
  7142. "require-dev": {
  7143. "doctrine/annotations": "^1.12|^2",
  7144. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7145. "seld/jsonlint": "^1.10",
  7146. "symfony/cache": "^5.4|^6.0|^7.0",
  7147. "symfony/config": "^5.4|^6.0|^7.0",
  7148. "symfony/console": "^5.4|^6.0|^7.0",
  7149. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7150. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7151. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7152. "symfony/form": "^5.4|^6.0|^7.0",
  7153. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7154. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7155. "symfony/messenger": "^5.4|^6.0|^7.0",
  7156. "symfony/mime": "^5.4|^6.0|^7.0",
  7157. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  7158. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  7159. "symfony/translation-contracts": "^2.5|^3",
  7160. "symfony/uid": "^5.4|^6.0|^7.0",
  7161. "symfony/validator": "^6.4|^7.0",
  7162. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7163. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  7164. "symfony/yaml": "^5.4|^6.0|^7.0"
  7165. },
  7166. "type": "library",
  7167. "autoload": {
  7168. "psr-4": {
  7169. "Symfony\\Component\\Serializer\\": ""
  7170. },
  7171. "exclude-from-classmap": [
  7172. "/Tests/"
  7173. ]
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Fabien Potencier",
  7182. "email": "fabien@symfony.com"
  7183. },
  7184. {
  7185. "name": "Symfony Community",
  7186. "homepage": "https://symfony.com/contributors"
  7187. }
  7188. ],
  7189. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7190. "homepage": "https://symfony.com",
  7191. "support": {
  7192. "source": "https://github.com/symfony/serializer/tree/v6.4.13"
  7193. },
  7194. "funding": [
  7195. {
  7196. "url": "https://symfony.com/sponsor",
  7197. "type": "custom"
  7198. },
  7199. {
  7200. "url": "https://github.com/fabpot",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7205. "type": "tidelift"
  7206. }
  7207. ],
  7208. "time": "2024-10-03T09:58:04+00:00"
  7209. },
  7210. {
  7211. "name": "symfony/service-contracts",
  7212. "version": "v3.5.0",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/symfony/service-contracts.git",
  7216. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7221. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7222. "shasum": ""
  7223. },
  7224. "require": {
  7225. "php": ">=8.1",
  7226. "psr/container": "^1.1|^2.0",
  7227. "symfony/deprecation-contracts": "^2.5|^3"
  7228. },
  7229. "conflict": {
  7230. "ext-psr": "<1.1|>=2"
  7231. },
  7232. "type": "library",
  7233. "extra": {
  7234. "branch-alias": {
  7235. "dev-main": "3.5-dev"
  7236. },
  7237. "thanks": {
  7238. "name": "symfony/contracts",
  7239. "url": "https://github.com/symfony/contracts"
  7240. }
  7241. },
  7242. "autoload": {
  7243. "psr-4": {
  7244. "Symfony\\Contracts\\Service\\": ""
  7245. },
  7246. "exclude-from-classmap": [
  7247. "/Test/"
  7248. ]
  7249. },
  7250. "notification-url": "https://packagist.org/downloads/",
  7251. "license": [
  7252. "MIT"
  7253. ],
  7254. "authors": [
  7255. {
  7256. "name": "Nicolas Grekas",
  7257. "email": "p@tchwork.com"
  7258. },
  7259. {
  7260. "name": "Symfony Community",
  7261. "homepage": "https://symfony.com/contributors"
  7262. }
  7263. ],
  7264. "description": "Generic abstractions related to writing services",
  7265. "homepage": "https://symfony.com",
  7266. "keywords": [
  7267. "abstractions",
  7268. "contracts",
  7269. "decoupling",
  7270. "interfaces",
  7271. "interoperability",
  7272. "standards"
  7273. ],
  7274. "support": {
  7275. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7276. },
  7277. "funding": [
  7278. {
  7279. "url": "https://symfony.com/sponsor",
  7280. "type": "custom"
  7281. },
  7282. {
  7283. "url": "https://github.com/fabpot",
  7284. "type": "github"
  7285. },
  7286. {
  7287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7288. "type": "tidelift"
  7289. }
  7290. ],
  7291. "time": "2024-04-18T09:32:20+00:00"
  7292. },
  7293. {
  7294. "name": "symfony/string",
  7295. "version": "v6.4.12",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/symfony/string.git",
  7299. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/symfony/string/zipball/f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  7304. "reference": "f8a1ccebd0997e16112dfecfd74220b78e5b284b",
  7305. "shasum": ""
  7306. },
  7307. "require": {
  7308. "php": ">=8.1",
  7309. "symfony/polyfill-ctype": "~1.8",
  7310. "symfony/polyfill-intl-grapheme": "~1.0",
  7311. "symfony/polyfill-intl-normalizer": "~1.0",
  7312. "symfony/polyfill-mbstring": "~1.0"
  7313. },
  7314. "conflict": {
  7315. "symfony/translation-contracts": "<2.5"
  7316. },
  7317. "require-dev": {
  7318. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7319. "symfony/http-client": "^5.4|^6.0|^7.0",
  7320. "symfony/intl": "^6.2|^7.0",
  7321. "symfony/translation-contracts": "^2.5|^3.0",
  7322. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7323. },
  7324. "type": "library",
  7325. "autoload": {
  7326. "files": [
  7327. "Resources/functions.php"
  7328. ],
  7329. "psr-4": {
  7330. "Symfony\\Component\\String\\": ""
  7331. },
  7332. "exclude-from-classmap": [
  7333. "/Tests/"
  7334. ]
  7335. },
  7336. "notification-url": "https://packagist.org/downloads/",
  7337. "license": [
  7338. "MIT"
  7339. ],
  7340. "authors": [
  7341. {
  7342. "name": "Nicolas Grekas",
  7343. "email": "p@tchwork.com"
  7344. },
  7345. {
  7346. "name": "Symfony Community",
  7347. "homepage": "https://symfony.com/contributors"
  7348. }
  7349. ],
  7350. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7351. "homepage": "https://symfony.com",
  7352. "keywords": [
  7353. "grapheme",
  7354. "i18n",
  7355. "string",
  7356. "unicode",
  7357. "utf-8",
  7358. "utf8"
  7359. ],
  7360. "support": {
  7361. "source": "https://github.com/symfony/string/tree/v6.4.12"
  7362. },
  7363. "funding": [
  7364. {
  7365. "url": "https://symfony.com/sponsor",
  7366. "type": "custom"
  7367. },
  7368. {
  7369. "url": "https://github.com/fabpot",
  7370. "type": "github"
  7371. },
  7372. {
  7373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7374. "type": "tidelift"
  7375. }
  7376. ],
  7377. "time": "2024-09-20T08:15:52+00:00"
  7378. },
  7379. {
  7380. "name": "symfony/translation",
  7381. "version": "v6.4.12",
  7382. "source": {
  7383. "type": "git",
  7384. "url": "https://github.com/symfony/translation.git",
  7385. "reference": "cf8360b8352b086be620fae8342c4d96e391a489"
  7386. },
  7387. "dist": {
  7388. "type": "zip",
  7389. "url": "https://api.github.com/repos/symfony/translation/zipball/cf8360b8352b086be620fae8342c4d96e391a489",
  7390. "reference": "cf8360b8352b086be620fae8342c4d96e391a489",
  7391. "shasum": ""
  7392. },
  7393. "require": {
  7394. "php": ">=8.1",
  7395. "symfony/deprecation-contracts": "^2.5|^3",
  7396. "symfony/polyfill-mbstring": "~1.0",
  7397. "symfony/translation-contracts": "^2.5|^3.0"
  7398. },
  7399. "conflict": {
  7400. "symfony/config": "<5.4",
  7401. "symfony/console": "<5.4",
  7402. "symfony/dependency-injection": "<5.4",
  7403. "symfony/http-client-contracts": "<2.5",
  7404. "symfony/http-kernel": "<5.4",
  7405. "symfony/service-contracts": "<2.5",
  7406. "symfony/twig-bundle": "<5.4",
  7407. "symfony/yaml": "<5.4"
  7408. },
  7409. "provide": {
  7410. "symfony/translation-implementation": "2.3|3.0"
  7411. },
  7412. "require-dev": {
  7413. "nikic/php-parser": "^4.18|^5.0",
  7414. "psr/log": "^1|^2|^3",
  7415. "symfony/config": "^5.4|^6.0|^7.0",
  7416. "symfony/console": "^5.4|^6.0|^7.0",
  7417. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7418. "symfony/finder": "^5.4|^6.0|^7.0",
  7419. "symfony/http-client-contracts": "^2.5|^3.0",
  7420. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7421. "symfony/intl": "^5.4|^6.0|^7.0",
  7422. "symfony/polyfill-intl-icu": "^1.21",
  7423. "symfony/routing": "^5.4|^6.0|^7.0",
  7424. "symfony/service-contracts": "^2.5|^3",
  7425. "symfony/yaml": "^5.4|^6.0|^7.0"
  7426. },
  7427. "type": "library",
  7428. "autoload": {
  7429. "files": [
  7430. "Resources/functions.php"
  7431. ],
  7432. "psr-4": {
  7433. "Symfony\\Component\\Translation\\": ""
  7434. },
  7435. "exclude-from-classmap": [
  7436. "/Tests/"
  7437. ]
  7438. },
  7439. "notification-url": "https://packagist.org/downloads/",
  7440. "license": [
  7441. "MIT"
  7442. ],
  7443. "authors": [
  7444. {
  7445. "name": "Fabien Potencier",
  7446. "email": "fabien@symfony.com"
  7447. },
  7448. {
  7449. "name": "Symfony Community",
  7450. "homepage": "https://symfony.com/contributors"
  7451. }
  7452. ],
  7453. "description": "Provides tools to internationalize your application",
  7454. "homepage": "https://symfony.com",
  7455. "support": {
  7456. "source": "https://github.com/symfony/translation/tree/v6.4.12"
  7457. },
  7458. "funding": [
  7459. {
  7460. "url": "https://symfony.com/sponsor",
  7461. "type": "custom"
  7462. },
  7463. {
  7464. "url": "https://github.com/fabpot",
  7465. "type": "github"
  7466. },
  7467. {
  7468. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7469. "type": "tidelift"
  7470. }
  7471. ],
  7472. "time": "2024-09-16T06:02:54+00:00"
  7473. },
  7474. {
  7475. "name": "symfony/translation-contracts",
  7476. "version": "v3.5.0",
  7477. "source": {
  7478. "type": "git",
  7479. "url": "https://github.com/symfony/translation-contracts.git",
  7480. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7481. },
  7482. "dist": {
  7483. "type": "zip",
  7484. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7485. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7486. "shasum": ""
  7487. },
  7488. "require": {
  7489. "php": ">=8.1"
  7490. },
  7491. "type": "library",
  7492. "extra": {
  7493. "branch-alias": {
  7494. "dev-main": "3.5-dev"
  7495. },
  7496. "thanks": {
  7497. "name": "symfony/contracts",
  7498. "url": "https://github.com/symfony/contracts"
  7499. }
  7500. },
  7501. "autoload": {
  7502. "psr-4": {
  7503. "Symfony\\Contracts\\Translation\\": ""
  7504. },
  7505. "exclude-from-classmap": [
  7506. "/Test/"
  7507. ]
  7508. },
  7509. "notification-url": "https://packagist.org/downloads/",
  7510. "license": [
  7511. "MIT"
  7512. ],
  7513. "authors": [
  7514. {
  7515. "name": "Nicolas Grekas",
  7516. "email": "p@tchwork.com"
  7517. },
  7518. {
  7519. "name": "Symfony Community",
  7520. "homepage": "https://symfony.com/contributors"
  7521. }
  7522. ],
  7523. "description": "Generic abstractions related to translation",
  7524. "homepage": "https://symfony.com",
  7525. "keywords": [
  7526. "abstractions",
  7527. "contracts",
  7528. "decoupling",
  7529. "interfaces",
  7530. "interoperability",
  7531. "standards"
  7532. ],
  7533. "support": {
  7534. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7535. },
  7536. "funding": [
  7537. {
  7538. "url": "https://symfony.com/sponsor",
  7539. "type": "custom"
  7540. },
  7541. {
  7542. "url": "https://github.com/fabpot",
  7543. "type": "github"
  7544. },
  7545. {
  7546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7547. "type": "tidelift"
  7548. }
  7549. ],
  7550. "time": "2024-04-18T09:32:20+00:00"
  7551. },
  7552. {
  7553. "name": "vlucas/phpdotenv",
  7554. "version": "v5.6.1",
  7555. "source": {
  7556. "type": "git",
  7557. "url": "https://github.com/vlucas/phpdotenv.git",
  7558. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7559. },
  7560. "dist": {
  7561. "type": "zip",
  7562. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7563. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7564. "shasum": ""
  7565. },
  7566. "require": {
  7567. "ext-pcre": "*",
  7568. "graham-campbell/result-type": "^1.1.3",
  7569. "php": "^7.2.5 || ^8.0",
  7570. "phpoption/phpoption": "^1.9.3",
  7571. "symfony/polyfill-ctype": "^1.24",
  7572. "symfony/polyfill-mbstring": "^1.24",
  7573. "symfony/polyfill-php80": "^1.24"
  7574. },
  7575. "require-dev": {
  7576. "bamarni/composer-bin-plugin": "^1.8.2",
  7577. "ext-filter": "*",
  7578. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7579. },
  7580. "suggest": {
  7581. "ext-filter": "Required to use the boolean validator."
  7582. },
  7583. "type": "library",
  7584. "extra": {
  7585. "bamarni-bin": {
  7586. "bin-links": true,
  7587. "forward-command": false
  7588. },
  7589. "branch-alias": {
  7590. "dev-master": "5.6-dev"
  7591. }
  7592. },
  7593. "autoload": {
  7594. "psr-4": {
  7595. "Dotenv\\": "src/"
  7596. }
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "BSD-3-Clause"
  7601. ],
  7602. "authors": [
  7603. {
  7604. "name": "Graham Campbell",
  7605. "email": "hello@gjcampbell.co.uk",
  7606. "homepage": "https://github.com/GrahamCampbell"
  7607. },
  7608. {
  7609. "name": "Vance Lucas",
  7610. "email": "vance@vancelucas.com",
  7611. "homepage": "https://github.com/vlucas"
  7612. }
  7613. ],
  7614. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7615. "keywords": [
  7616. "dotenv",
  7617. "env",
  7618. "environment"
  7619. ],
  7620. "support": {
  7621. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7622. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7623. },
  7624. "funding": [
  7625. {
  7626. "url": "https://github.com/GrahamCampbell",
  7627. "type": "github"
  7628. },
  7629. {
  7630. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7631. "type": "tidelift"
  7632. }
  7633. ],
  7634. "time": "2024-07-20T21:52:34+00:00"
  7635. }
  7636. ],
  7637. "packages-dev": [
  7638. {
  7639. "name": "clue/ndjson-react",
  7640. "version": "v1.3.0",
  7641. "source": {
  7642. "type": "git",
  7643. "url": "https://github.com/clue/reactphp-ndjson.git",
  7644. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7645. },
  7646. "dist": {
  7647. "type": "zip",
  7648. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7649. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7650. "shasum": ""
  7651. },
  7652. "require": {
  7653. "php": ">=5.3",
  7654. "react/stream": "^1.2"
  7655. },
  7656. "require-dev": {
  7657. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7658. "react/event-loop": "^1.2"
  7659. },
  7660. "type": "library",
  7661. "autoload": {
  7662. "psr-4": {
  7663. "Clue\\React\\NDJson\\": "src/"
  7664. }
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "MIT"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Christian Lück",
  7673. "email": "christian@clue.engineering"
  7674. }
  7675. ],
  7676. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7677. "homepage": "https://github.com/clue/reactphp-ndjson",
  7678. "keywords": [
  7679. "NDJSON",
  7680. "json",
  7681. "jsonlines",
  7682. "newline",
  7683. "reactphp",
  7684. "streaming"
  7685. ],
  7686. "support": {
  7687. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7688. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7689. },
  7690. "funding": [
  7691. {
  7692. "url": "https://clue.engineering/support",
  7693. "type": "custom"
  7694. },
  7695. {
  7696. "url": "https://github.com/clue",
  7697. "type": "github"
  7698. }
  7699. ],
  7700. "time": "2022-12-23T10:58:28+00:00"
  7701. },
  7702. {
  7703. "name": "composer/pcre",
  7704. "version": "3.3.1",
  7705. "source": {
  7706. "type": "git",
  7707. "url": "https://github.com/composer/pcre.git",
  7708. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  7709. },
  7710. "dist": {
  7711. "type": "zip",
  7712. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7713. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  7714. "shasum": ""
  7715. },
  7716. "require": {
  7717. "php": "^7.4 || ^8.0"
  7718. },
  7719. "conflict": {
  7720. "phpstan/phpstan": "<1.11.10"
  7721. },
  7722. "require-dev": {
  7723. "phpstan/phpstan": "^1.11.10",
  7724. "phpstan/phpstan-strict-rules": "^1.1",
  7725. "phpunit/phpunit": "^8 || ^9"
  7726. },
  7727. "type": "library",
  7728. "extra": {
  7729. "branch-alias": {
  7730. "dev-main": "3.x-dev"
  7731. },
  7732. "phpstan": {
  7733. "includes": [
  7734. "extension.neon"
  7735. ]
  7736. }
  7737. },
  7738. "autoload": {
  7739. "psr-4": {
  7740. "Composer\\Pcre\\": "src"
  7741. }
  7742. },
  7743. "notification-url": "https://packagist.org/downloads/",
  7744. "license": [
  7745. "MIT"
  7746. ],
  7747. "authors": [
  7748. {
  7749. "name": "Jordi Boggiano",
  7750. "email": "j.boggiano@seld.be",
  7751. "homepage": "http://seld.be"
  7752. }
  7753. ],
  7754. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7755. "keywords": [
  7756. "PCRE",
  7757. "preg",
  7758. "regex",
  7759. "regular expression"
  7760. ],
  7761. "support": {
  7762. "issues": "https://github.com/composer/pcre/issues",
  7763. "source": "https://github.com/composer/pcre/tree/3.3.1"
  7764. },
  7765. "funding": [
  7766. {
  7767. "url": "https://packagist.com",
  7768. "type": "custom"
  7769. },
  7770. {
  7771. "url": "https://github.com/composer",
  7772. "type": "github"
  7773. },
  7774. {
  7775. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7776. "type": "tidelift"
  7777. }
  7778. ],
  7779. "time": "2024-08-27T18:44:43+00:00"
  7780. },
  7781. {
  7782. "name": "composer/semver",
  7783. "version": "3.4.3",
  7784. "source": {
  7785. "type": "git",
  7786. "url": "https://github.com/composer/semver.git",
  7787. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7788. },
  7789. "dist": {
  7790. "type": "zip",
  7791. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7792. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7793. "shasum": ""
  7794. },
  7795. "require": {
  7796. "php": "^5.3.2 || ^7.0 || ^8.0"
  7797. },
  7798. "require-dev": {
  7799. "phpstan/phpstan": "^1.11",
  7800. "symfony/phpunit-bridge": "^3 || ^7"
  7801. },
  7802. "type": "library",
  7803. "extra": {
  7804. "branch-alias": {
  7805. "dev-main": "3.x-dev"
  7806. }
  7807. },
  7808. "autoload": {
  7809. "psr-4": {
  7810. "Composer\\Semver\\": "src"
  7811. }
  7812. },
  7813. "notification-url": "https://packagist.org/downloads/",
  7814. "license": [
  7815. "MIT"
  7816. ],
  7817. "authors": [
  7818. {
  7819. "name": "Nils Adermann",
  7820. "email": "naderman@naderman.de",
  7821. "homepage": "http://www.naderman.de"
  7822. },
  7823. {
  7824. "name": "Jordi Boggiano",
  7825. "email": "j.boggiano@seld.be",
  7826. "homepage": "http://seld.be"
  7827. },
  7828. {
  7829. "name": "Rob Bast",
  7830. "email": "rob.bast@gmail.com",
  7831. "homepage": "http://robbast.nl"
  7832. }
  7833. ],
  7834. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7835. "keywords": [
  7836. "semantic",
  7837. "semver",
  7838. "validation",
  7839. "versioning"
  7840. ],
  7841. "support": {
  7842. "irc": "ircs://irc.libera.chat:6697/composer",
  7843. "issues": "https://github.com/composer/semver/issues",
  7844. "source": "https://github.com/composer/semver/tree/3.4.3"
  7845. },
  7846. "funding": [
  7847. {
  7848. "url": "https://packagist.com",
  7849. "type": "custom"
  7850. },
  7851. {
  7852. "url": "https://github.com/composer",
  7853. "type": "github"
  7854. },
  7855. {
  7856. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7857. "type": "tidelift"
  7858. }
  7859. ],
  7860. "time": "2024-09-19T14:15:21+00:00"
  7861. },
  7862. {
  7863. "name": "composer/xdebug-handler",
  7864. "version": "3.0.5",
  7865. "source": {
  7866. "type": "git",
  7867. "url": "https://github.com/composer/xdebug-handler.git",
  7868. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7869. },
  7870. "dist": {
  7871. "type": "zip",
  7872. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7873. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7874. "shasum": ""
  7875. },
  7876. "require": {
  7877. "composer/pcre": "^1 || ^2 || ^3",
  7878. "php": "^7.2.5 || ^8.0",
  7879. "psr/log": "^1 || ^2 || ^3"
  7880. },
  7881. "require-dev": {
  7882. "phpstan/phpstan": "^1.0",
  7883. "phpstan/phpstan-strict-rules": "^1.1",
  7884. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7885. },
  7886. "type": "library",
  7887. "autoload": {
  7888. "psr-4": {
  7889. "Composer\\XdebugHandler\\": "src"
  7890. }
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "John Stevenson",
  7899. "email": "john-stevenson@blueyonder.co.uk"
  7900. }
  7901. ],
  7902. "description": "Restarts a process without Xdebug.",
  7903. "keywords": [
  7904. "Xdebug",
  7905. "performance"
  7906. ],
  7907. "support": {
  7908. "irc": "ircs://irc.libera.chat:6697/composer",
  7909. "issues": "https://github.com/composer/xdebug-handler/issues",
  7910. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7911. },
  7912. "funding": [
  7913. {
  7914. "url": "https://packagist.com",
  7915. "type": "custom"
  7916. },
  7917. {
  7918. "url": "https://github.com/composer",
  7919. "type": "github"
  7920. },
  7921. {
  7922. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7923. "type": "tidelift"
  7924. }
  7925. ],
  7926. "time": "2024-05-06T16:37:16+00:00"
  7927. },
  7928. {
  7929. "name": "evenement/evenement",
  7930. "version": "v3.0.2",
  7931. "source": {
  7932. "type": "git",
  7933. "url": "https://github.com/igorw/evenement.git",
  7934. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7935. },
  7936. "dist": {
  7937. "type": "zip",
  7938. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7939. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7940. "shasum": ""
  7941. },
  7942. "require": {
  7943. "php": ">=7.0"
  7944. },
  7945. "require-dev": {
  7946. "phpunit/phpunit": "^9 || ^6"
  7947. },
  7948. "type": "library",
  7949. "autoload": {
  7950. "psr-4": {
  7951. "Evenement\\": "src/"
  7952. }
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Igor Wiedler",
  7961. "email": "igor@wiedler.ch"
  7962. }
  7963. ],
  7964. "description": "Événement is a very simple event dispatching library for PHP",
  7965. "keywords": [
  7966. "event-dispatcher",
  7967. "event-emitter"
  7968. ],
  7969. "support": {
  7970. "issues": "https://github.com/igorw/evenement/issues",
  7971. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7972. },
  7973. "time": "2023-08-08T05:53:35+00:00"
  7974. },
  7975. {
  7976. "name": "fidry/cpu-core-counter",
  7977. "version": "1.2.0",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7981. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7986. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "php": "^7.2 || ^8.0"
  7991. },
  7992. "require-dev": {
  7993. "fidry/makefile": "^0.2.0",
  7994. "fidry/php-cs-fixer-config": "^1.1.2",
  7995. "phpstan/extension-installer": "^1.2.0",
  7996. "phpstan/phpstan": "^1.9.2",
  7997. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7998. "phpstan/phpstan-phpunit": "^1.2.2",
  7999. "phpstan/phpstan-strict-rules": "^1.4.4",
  8000. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8001. "webmozarts/strict-phpunit": "^7.5"
  8002. },
  8003. "type": "library",
  8004. "autoload": {
  8005. "psr-4": {
  8006. "Fidry\\CpuCoreCounter\\": "src/"
  8007. }
  8008. },
  8009. "notification-url": "https://packagist.org/downloads/",
  8010. "license": [
  8011. "MIT"
  8012. ],
  8013. "authors": [
  8014. {
  8015. "name": "Théo FIDRY",
  8016. "email": "theo.fidry@gmail.com"
  8017. }
  8018. ],
  8019. "description": "Tiny utility to get the number of CPU cores.",
  8020. "keywords": [
  8021. "CPU",
  8022. "core"
  8023. ],
  8024. "support": {
  8025. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8026. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8027. },
  8028. "funding": [
  8029. {
  8030. "url": "https://github.com/theofidry",
  8031. "type": "github"
  8032. }
  8033. ],
  8034. "time": "2024-08-06T10:04:20+00:00"
  8035. },
  8036. {
  8037. "name": "friendsofphp/php-cs-fixer",
  8038. "version": "v3.64.0",
  8039. "source": {
  8040. "type": "git",
  8041. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8042. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8043. },
  8044. "dist": {
  8045. "type": "zip",
  8046. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8047. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8048. "shasum": ""
  8049. },
  8050. "require": {
  8051. "clue/ndjson-react": "^1.0",
  8052. "composer/semver": "^3.4",
  8053. "composer/xdebug-handler": "^3.0.3",
  8054. "ext-filter": "*",
  8055. "ext-json": "*",
  8056. "ext-tokenizer": "*",
  8057. "fidry/cpu-core-counter": "^1.0",
  8058. "php": "^7.4 || ^8.0",
  8059. "react/child-process": "^0.6.5",
  8060. "react/event-loop": "^1.0",
  8061. "react/promise": "^2.0 || ^3.0",
  8062. "react/socket": "^1.0",
  8063. "react/stream": "^1.0",
  8064. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8065. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8066. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8067. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8068. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8069. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8070. "symfony/polyfill-mbstring": "^1.28",
  8071. "symfony/polyfill-php80": "^1.28",
  8072. "symfony/polyfill-php81": "^1.28",
  8073. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8074. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8075. },
  8076. "require-dev": {
  8077. "facile-it/paraunit": "^1.3 || ^2.3",
  8078. "infection/infection": "^0.29.5",
  8079. "justinrainbow/json-schema": "^5.2",
  8080. "keradus/cli-executor": "^2.1",
  8081. "mikey179/vfsstream": "^1.6.11",
  8082. "php-coveralls/php-coveralls": "^2.7",
  8083. "php-cs-fixer/accessible-object": "^1.1",
  8084. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8085. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8086. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8087. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8088. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8089. },
  8090. "suggest": {
  8091. "ext-dom": "For handling output formats in XML",
  8092. "ext-mbstring": "For handling non-UTF8 characters."
  8093. },
  8094. "bin": [
  8095. "php-cs-fixer"
  8096. ],
  8097. "type": "application",
  8098. "autoload": {
  8099. "psr-4": {
  8100. "PhpCsFixer\\": "src/"
  8101. },
  8102. "exclude-from-classmap": [
  8103. "src/Fixer/Internal/*"
  8104. ]
  8105. },
  8106. "notification-url": "https://packagist.org/downloads/",
  8107. "license": [
  8108. "MIT"
  8109. ],
  8110. "authors": [
  8111. {
  8112. "name": "Fabien Potencier",
  8113. "email": "fabien@symfony.com"
  8114. },
  8115. {
  8116. "name": "Dariusz Rumiński",
  8117. "email": "dariusz.ruminski@gmail.com"
  8118. }
  8119. ],
  8120. "description": "A tool to automatically fix PHP code style",
  8121. "keywords": [
  8122. "Static code analysis",
  8123. "fixer",
  8124. "standards",
  8125. "static analysis"
  8126. ],
  8127. "support": {
  8128. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8129. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8130. },
  8131. "funding": [
  8132. {
  8133. "url": "https://github.com/keradus",
  8134. "type": "github"
  8135. }
  8136. ],
  8137. "time": "2024-08-30T23:09:38+00:00"
  8138. },
  8139. {
  8140. "name": "hamcrest/hamcrest-php",
  8141. "version": "v2.0.1",
  8142. "source": {
  8143. "type": "git",
  8144. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8145. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8146. },
  8147. "dist": {
  8148. "type": "zip",
  8149. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8150. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8151. "shasum": ""
  8152. },
  8153. "require": {
  8154. "php": "^5.3|^7.0|^8.0"
  8155. },
  8156. "replace": {
  8157. "cordoval/hamcrest-php": "*",
  8158. "davedevelopment/hamcrest-php": "*",
  8159. "kodova/hamcrest-php": "*"
  8160. },
  8161. "require-dev": {
  8162. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8163. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8164. },
  8165. "type": "library",
  8166. "extra": {
  8167. "branch-alias": {
  8168. "dev-master": "2.1-dev"
  8169. }
  8170. },
  8171. "autoload": {
  8172. "classmap": [
  8173. "hamcrest"
  8174. ]
  8175. },
  8176. "notification-url": "https://packagist.org/downloads/",
  8177. "license": [
  8178. "BSD-3-Clause"
  8179. ],
  8180. "description": "This is the PHP port of Hamcrest Matchers",
  8181. "keywords": [
  8182. "test"
  8183. ],
  8184. "support": {
  8185. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8186. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8187. },
  8188. "time": "2020-07-09T08:09:16+00:00"
  8189. },
  8190. {
  8191. "name": "hyperf/devtool",
  8192. "version": "v3.1.42",
  8193. "source": {
  8194. "type": "git",
  8195. "url": "https://github.com/hyperf/devtool.git",
  8196. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8197. },
  8198. "dist": {
  8199. "type": "zip",
  8200. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8201. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8202. "shasum": ""
  8203. },
  8204. "require": {
  8205. "hyperf/code-parser": "~3.1.0",
  8206. "hyperf/command": "~3.1.0",
  8207. "hyperf/contract": "~3.1.0",
  8208. "hyperf/di": "~3.1.0",
  8209. "hyperf/support": "~3.1.0",
  8210. "hyperf/utils": "~3.1.0",
  8211. "php": ">=8.1"
  8212. },
  8213. "type": "library",
  8214. "extra": {
  8215. "branch-alias": {
  8216. "dev-master": "3.1-dev"
  8217. },
  8218. "hyperf": {
  8219. "config": "Hyperf\\Devtool\\ConfigProvider"
  8220. }
  8221. },
  8222. "autoload": {
  8223. "psr-4": {
  8224. "Hyperf\\Devtool\\": "src/"
  8225. }
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "MIT"
  8230. ],
  8231. "description": "A Devtool for Hyperf.",
  8232. "homepage": "https://hyperf.io",
  8233. "keywords": [
  8234. "dev",
  8235. "devtool",
  8236. "hyperf",
  8237. "php",
  8238. "swoole"
  8239. ],
  8240. "support": {
  8241. "docs": "https://hyperf.wiki",
  8242. "issues": "https://github.com/hyperf/hyperf/issues",
  8243. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8244. "source": "https://github.com/hyperf/hyperf"
  8245. },
  8246. "funding": [
  8247. {
  8248. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8249. "type": "custom"
  8250. },
  8251. {
  8252. "url": "https://opencollective.com/hyperf",
  8253. "type": "open_collective"
  8254. }
  8255. ],
  8256. "time": "2024-09-25T02:54:12+00:00"
  8257. },
  8258. {
  8259. "name": "hyperf/testing",
  8260. "version": "v3.1.44",
  8261. "source": {
  8262. "type": "git",
  8263. "url": "https://github.com/hyperf/testing.git",
  8264. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8265. },
  8266. "dist": {
  8267. "type": "zip",
  8268. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8269. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8270. "shasum": ""
  8271. },
  8272. "require": {
  8273. "hyperf/codec": "~3.1.0",
  8274. "hyperf/collection": "~3.1.0",
  8275. "hyperf/contract": "~3.1.0",
  8276. "hyperf/coroutine": "~3.1.0",
  8277. "hyperf/http-message": "~3.1.0",
  8278. "hyperf/http-server": "~3.1.0",
  8279. "hyperf/support": "~3.1.0",
  8280. "hyperf/utils": "~3.1.0",
  8281. "php": ">=8.1",
  8282. "phpunit/phpunit": "^10.0",
  8283. "psr/container": "^1.0 || ^2.0",
  8284. "symfony/http-foundation": "^5.4 || ^6.0"
  8285. },
  8286. "suggest": {
  8287. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8288. },
  8289. "bin": [
  8290. "co-phpunit"
  8291. ],
  8292. "type": "library",
  8293. "extra": {
  8294. "branch-alias": {
  8295. "dev-master": "3.1-dev"
  8296. }
  8297. },
  8298. "autoload": {
  8299. "psr-4": {
  8300. "Hyperf\\Testing\\": "src/"
  8301. }
  8302. },
  8303. "notification-url": "https://packagist.org/downloads/",
  8304. "license": [
  8305. "MIT"
  8306. ],
  8307. "description": "Testing for hyperf",
  8308. "keywords": [
  8309. "dev",
  8310. "php",
  8311. "swoole",
  8312. "testing"
  8313. ],
  8314. "support": {
  8315. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8316. },
  8317. "funding": [
  8318. {
  8319. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8320. "type": "custom"
  8321. },
  8322. {
  8323. "url": "https://opencollective.com/hyperf",
  8324. "type": "open_collective"
  8325. }
  8326. ],
  8327. "time": "2024-10-23T10:24:12+00:00"
  8328. },
  8329. {
  8330. "name": "hyperf/watcher",
  8331. "version": "v3.1.43",
  8332. "source": {
  8333. "type": "git",
  8334. "url": "https://github.com/hyperf/watcher.git",
  8335. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8336. },
  8337. "dist": {
  8338. "type": "zip",
  8339. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8340. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8341. "shasum": ""
  8342. },
  8343. "require": {
  8344. "ext-posix": "*",
  8345. "hyperf/codec": "~3.1.0",
  8346. "hyperf/command": "~3.1.0",
  8347. "hyperf/di": "~3.1.0",
  8348. "hyperf/framework": "~3.1.0",
  8349. "hyperf/support": "~3.1.0",
  8350. "php": ">=8.1"
  8351. },
  8352. "type": "library",
  8353. "extra": {
  8354. "branch-alias": {
  8355. "dev-master": "3.1-dev"
  8356. },
  8357. "hyperf": {
  8358. "config": "Hyperf\\Watcher\\ConfigProvider"
  8359. }
  8360. },
  8361. "autoload": {
  8362. "files": [
  8363. "src/Functions.php"
  8364. ],
  8365. "psr-4": {
  8366. "Hyperf\\Watcher\\": "src/"
  8367. }
  8368. },
  8369. "notification-url": "https://packagist.org/downloads/",
  8370. "license": [
  8371. "MIT"
  8372. ],
  8373. "description": "Hot reload watcher for Hyperf",
  8374. "keywords": [
  8375. "dev",
  8376. "hyperf",
  8377. "php"
  8378. ],
  8379. "support": {
  8380. "issues": "https://github.com/hyperf/watcher/issues",
  8381. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8382. },
  8383. "funding": [
  8384. {
  8385. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8386. "type": "custom"
  8387. },
  8388. {
  8389. "url": "https://opencollective.com/hyperf",
  8390. "type": "open_collective"
  8391. }
  8392. ],
  8393. "time": "2024-10-06T12:33:12+00:00"
  8394. },
  8395. {
  8396. "name": "mockery/mockery",
  8397. "version": "1.6.12",
  8398. "source": {
  8399. "type": "git",
  8400. "url": "https://github.com/mockery/mockery.git",
  8401. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8402. },
  8403. "dist": {
  8404. "type": "zip",
  8405. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8406. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8407. "shasum": ""
  8408. },
  8409. "require": {
  8410. "hamcrest/hamcrest-php": "^2.0.1",
  8411. "lib-pcre": ">=7.0",
  8412. "php": ">=7.3"
  8413. },
  8414. "conflict": {
  8415. "phpunit/phpunit": "<8.0"
  8416. },
  8417. "require-dev": {
  8418. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8419. "symplify/easy-coding-standard": "^12.1.14"
  8420. },
  8421. "type": "library",
  8422. "autoload": {
  8423. "files": [
  8424. "library/helpers.php",
  8425. "library/Mockery.php"
  8426. ],
  8427. "psr-4": {
  8428. "Mockery\\": "library/Mockery"
  8429. }
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "BSD-3-Clause"
  8434. ],
  8435. "authors": [
  8436. {
  8437. "name": "Pádraic Brady",
  8438. "email": "padraic.brady@gmail.com",
  8439. "homepage": "https://github.com/padraic",
  8440. "role": "Author"
  8441. },
  8442. {
  8443. "name": "Dave Marshall",
  8444. "email": "dave.marshall@atstsolutions.co.uk",
  8445. "homepage": "https://davedevelopment.co.uk",
  8446. "role": "Developer"
  8447. },
  8448. {
  8449. "name": "Nathanael Esayeas",
  8450. "email": "nathanael.esayeas@protonmail.com",
  8451. "homepage": "https://github.com/ghostwriter",
  8452. "role": "Lead Developer"
  8453. }
  8454. ],
  8455. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8456. "homepage": "https://github.com/mockery/mockery",
  8457. "keywords": [
  8458. "BDD",
  8459. "TDD",
  8460. "library",
  8461. "mock",
  8462. "mock objects",
  8463. "mockery",
  8464. "stub",
  8465. "test",
  8466. "test double",
  8467. "testing"
  8468. ],
  8469. "support": {
  8470. "docs": "https://docs.mockery.io/",
  8471. "issues": "https://github.com/mockery/mockery/issues",
  8472. "rss": "https://github.com/mockery/mockery/releases.atom",
  8473. "security": "https://github.com/mockery/mockery/security/advisories",
  8474. "source": "https://github.com/mockery/mockery"
  8475. },
  8476. "time": "2024-05-16T03:13:13+00:00"
  8477. },
  8478. {
  8479. "name": "myclabs/deep-copy",
  8480. "version": "1.12.0",
  8481. "source": {
  8482. "type": "git",
  8483. "url": "https://github.com/myclabs/DeepCopy.git",
  8484. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  8485. },
  8486. "dist": {
  8487. "type": "zip",
  8488. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8489. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  8490. "shasum": ""
  8491. },
  8492. "require": {
  8493. "php": "^7.1 || ^8.0"
  8494. },
  8495. "conflict": {
  8496. "doctrine/collections": "<1.6.8",
  8497. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8498. },
  8499. "require-dev": {
  8500. "doctrine/collections": "^1.6.8",
  8501. "doctrine/common": "^2.13.3 || ^3.2.2",
  8502. "phpspec/prophecy": "^1.10",
  8503. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8504. },
  8505. "type": "library",
  8506. "autoload": {
  8507. "files": [
  8508. "src/DeepCopy/deep_copy.php"
  8509. ],
  8510. "psr-4": {
  8511. "DeepCopy\\": "src/DeepCopy/"
  8512. }
  8513. },
  8514. "notification-url": "https://packagist.org/downloads/",
  8515. "license": [
  8516. "MIT"
  8517. ],
  8518. "description": "Create deep copies (clones) of your objects",
  8519. "keywords": [
  8520. "clone",
  8521. "copy",
  8522. "duplicate",
  8523. "object",
  8524. "object graph"
  8525. ],
  8526. "support": {
  8527. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8528. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  8529. },
  8530. "funding": [
  8531. {
  8532. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8533. "type": "tidelift"
  8534. }
  8535. ],
  8536. "time": "2024-06-12T14:39:25+00:00"
  8537. },
  8538. {
  8539. "name": "phar-io/manifest",
  8540. "version": "2.0.4",
  8541. "source": {
  8542. "type": "git",
  8543. "url": "https://github.com/phar-io/manifest.git",
  8544. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8545. },
  8546. "dist": {
  8547. "type": "zip",
  8548. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8549. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8550. "shasum": ""
  8551. },
  8552. "require": {
  8553. "ext-dom": "*",
  8554. "ext-libxml": "*",
  8555. "ext-phar": "*",
  8556. "ext-xmlwriter": "*",
  8557. "phar-io/version": "^3.0.1",
  8558. "php": "^7.2 || ^8.0"
  8559. },
  8560. "type": "library",
  8561. "extra": {
  8562. "branch-alias": {
  8563. "dev-master": "2.0.x-dev"
  8564. }
  8565. },
  8566. "autoload": {
  8567. "classmap": [
  8568. "src/"
  8569. ]
  8570. },
  8571. "notification-url": "https://packagist.org/downloads/",
  8572. "license": [
  8573. "BSD-3-Clause"
  8574. ],
  8575. "authors": [
  8576. {
  8577. "name": "Arne Blankerts",
  8578. "email": "arne@blankerts.de",
  8579. "role": "Developer"
  8580. },
  8581. {
  8582. "name": "Sebastian Heuer",
  8583. "email": "sebastian@phpeople.de",
  8584. "role": "Developer"
  8585. },
  8586. {
  8587. "name": "Sebastian Bergmann",
  8588. "email": "sebastian@phpunit.de",
  8589. "role": "Developer"
  8590. }
  8591. ],
  8592. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8593. "support": {
  8594. "issues": "https://github.com/phar-io/manifest/issues",
  8595. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8596. },
  8597. "funding": [
  8598. {
  8599. "url": "https://github.com/theseer",
  8600. "type": "github"
  8601. }
  8602. ],
  8603. "time": "2024-03-03T12:33:53+00:00"
  8604. },
  8605. {
  8606. "name": "phar-io/version",
  8607. "version": "3.2.1",
  8608. "source": {
  8609. "type": "git",
  8610. "url": "https://github.com/phar-io/version.git",
  8611. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8612. },
  8613. "dist": {
  8614. "type": "zip",
  8615. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8616. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8617. "shasum": ""
  8618. },
  8619. "require": {
  8620. "php": "^7.2 || ^8.0"
  8621. },
  8622. "type": "library",
  8623. "autoload": {
  8624. "classmap": [
  8625. "src/"
  8626. ]
  8627. },
  8628. "notification-url": "https://packagist.org/downloads/",
  8629. "license": [
  8630. "BSD-3-Clause"
  8631. ],
  8632. "authors": [
  8633. {
  8634. "name": "Arne Blankerts",
  8635. "email": "arne@blankerts.de",
  8636. "role": "Developer"
  8637. },
  8638. {
  8639. "name": "Sebastian Heuer",
  8640. "email": "sebastian@phpeople.de",
  8641. "role": "Developer"
  8642. },
  8643. {
  8644. "name": "Sebastian Bergmann",
  8645. "email": "sebastian@phpunit.de",
  8646. "role": "Developer"
  8647. }
  8648. ],
  8649. "description": "Library for handling version information and constraints",
  8650. "support": {
  8651. "issues": "https://github.com/phar-io/version/issues",
  8652. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8653. },
  8654. "time": "2022-02-21T01:04:05+00:00"
  8655. },
  8656. {
  8657. "name": "phpstan/phpstan",
  8658. "version": "1.12.7",
  8659. "source": {
  8660. "type": "git",
  8661. "url": "https://github.com/phpstan/phpstan.git",
  8662. "reference": "dc2b9976bd8b0f84ec9b0e50cc35378551de7af0"
  8663. },
  8664. "dist": {
  8665. "type": "zip",
  8666. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/dc2b9976bd8b0f84ec9b0e50cc35378551de7af0",
  8667. "reference": "dc2b9976bd8b0f84ec9b0e50cc35378551de7af0",
  8668. "shasum": ""
  8669. },
  8670. "require": {
  8671. "php": "^7.2|^8.0"
  8672. },
  8673. "conflict": {
  8674. "phpstan/phpstan-shim": "*"
  8675. },
  8676. "bin": [
  8677. "phpstan",
  8678. "phpstan.phar"
  8679. ],
  8680. "type": "library",
  8681. "autoload": {
  8682. "files": [
  8683. "bootstrap.php"
  8684. ]
  8685. },
  8686. "notification-url": "https://packagist.org/downloads/",
  8687. "license": [
  8688. "MIT"
  8689. ],
  8690. "description": "PHPStan - PHP Static Analysis Tool",
  8691. "keywords": [
  8692. "dev",
  8693. "static analysis"
  8694. ],
  8695. "support": {
  8696. "docs": "https://phpstan.org/user-guide/getting-started",
  8697. "forum": "https://github.com/phpstan/phpstan/discussions",
  8698. "issues": "https://github.com/phpstan/phpstan/issues",
  8699. "security": "https://github.com/phpstan/phpstan/security/policy",
  8700. "source": "https://github.com/phpstan/phpstan-src"
  8701. },
  8702. "funding": [
  8703. {
  8704. "url": "https://github.com/ondrejmirtes",
  8705. "type": "github"
  8706. },
  8707. {
  8708. "url": "https://github.com/phpstan",
  8709. "type": "github"
  8710. }
  8711. ],
  8712. "time": "2024-10-18T11:12:07+00:00"
  8713. },
  8714. {
  8715. "name": "phpunit/php-code-coverage",
  8716. "version": "10.1.16",
  8717. "source": {
  8718. "type": "git",
  8719. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8720. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8721. },
  8722. "dist": {
  8723. "type": "zip",
  8724. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8725. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8726. "shasum": ""
  8727. },
  8728. "require": {
  8729. "ext-dom": "*",
  8730. "ext-libxml": "*",
  8731. "ext-xmlwriter": "*",
  8732. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8733. "php": ">=8.1",
  8734. "phpunit/php-file-iterator": "^4.1.0",
  8735. "phpunit/php-text-template": "^3.0.1",
  8736. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8737. "sebastian/complexity": "^3.2.0",
  8738. "sebastian/environment": "^6.1.0",
  8739. "sebastian/lines-of-code": "^2.0.2",
  8740. "sebastian/version": "^4.0.1",
  8741. "theseer/tokenizer": "^1.2.3"
  8742. },
  8743. "require-dev": {
  8744. "phpunit/phpunit": "^10.1"
  8745. },
  8746. "suggest": {
  8747. "ext-pcov": "PHP extension that provides line coverage",
  8748. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-main": "10.1.x-dev"
  8754. }
  8755. },
  8756. "autoload": {
  8757. "classmap": [
  8758. "src/"
  8759. ]
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "license": [
  8763. "BSD-3-Clause"
  8764. ],
  8765. "authors": [
  8766. {
  8767. "name": "Sebastian Bergmann",
  8768. "email": "sebastian@phpunit.de",
  8769. "role": "lead"
  8770. }
  8771. ],
  8772. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8773. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8774. "keywords": [
  8775. "coverage",
  8776. "testing",
  8777. "xunit"
  8778. ],
  8779. "support": {
  8780. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8781. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8782. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8783. },
  8784. "funding": [
  8785. {
  8786. "url": "https://github.com/sebastianbergmann",
  8787. "type": "github"
  8788. }
  8789. ],
  8790. "time": "2024-08-22T04:31:57+00:00"
  8791. },
  8792. {
  8793. "name": "phpunit/php-file-iterator",
  8794. "version": "4.1.0",
  8795. "source": {
  8796. "type": "git",
  8797. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8798. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8799. },
  8800. "dist": {
  8801. "type": "zip",
  8802. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8803. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8804. "shasum": ""
  8805. },
  8806. "require": {
  8807. "php": ">=8.1"
  8808. },
  8809. "require-dev": {
  8810. "phpunit/phpunit": "^10.0"
  8811. },
  8812. "type": "library",
  8813. "extra": {
  8814. "branch-alias": {
  8815. "dev-main": "4.0-dev"
  8816. }
  8817. },
  8818. "autoload": {
  8819. "classmap": [
  8820. "src/"
  8821. ]
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "BSD-3-Clause"
  8826. ],
  8827. "authors": [
  8828. {
  8829. "name": "Sebastian Bergmann",
  8830. "email": "sebastian@phpunit.de",
  8831. "role": "lead"
  8832. }
  8833. ],
  8834. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8835. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8836. "keywords": [
  8837. "filesystem",
  8838. "iterator"
  8839. ],
  8840. "support": {
  8841. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8842. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8843. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8844. },
  8845. "funding": [
  8846. {
  8847. "url": "https://github.com/sebastianbergmann",
  8848. "type": "github"
  8849. }
  8850. ],
  8851. "time": "2023-08-31T06:24:48+00:00"
  8852. },
  8853. {
  8854. "name": "phpunit/php-invoker",
  8855. "version": "4.0.0",
  8856. "source": {
  8857. "type": "git",
  8858. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8859. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8860. },
  8861. "dist": {
  8862. "type": "zip",
  8863. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8864. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8865. "shasum": ""
  8866. },
  8867. "require": {
  8868. "php": ">=8.1"
  8869. },
  8870. "require-dev": {
  8871. "ext-pcntl": "*",
  8872. "phpunit/phpunit": "^10.0"
  8873. },
  8874. "suggest": {
  8875. "ext-pcntl": "*"
  8876. },
  8877. "type": "library",
  8878. "extra": {
  8879. "branch-alias": {
  8880. "dev-main": "4.0-dev"
  8881. }
  8882. },
  8883. "autoload": {
  8884. "classmap": [
  8885. "src/"
  8886. ]
  8887. },
  8888. "notification-url": "https://packagist.org/downloads/",
  8889. "license": [
  8890. "BSD-3-Clause"
  8891. ],
  8892. "authors": [
  8893. {
  8894. "name": "Sebastian Bergmann",
  8895. "email": "sebastian@phpunit.de",
  8896. "role": "lead"
  8897. }
  8898. ],
  8899. "description": "Invoke callables with a timeout",
  8900. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8901. "keywords": [
  8902. "process"
  8903. ],
  8904. "support": {
  8905. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8906. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8907. },
  8908. "funding": [
  8909. {
  8910. "url": "https://github.com/sebastianbergmann",
  8911. "type": "github"
  8912. }
  8913. ],
  8914. "time": "2023-02-03T06:56:09+00:00"
  8915. },
  8916. {
  8917. "name": "phpunit/php-text-template",
  8918. "version": "3.0.1",
  8919. "source": {
  8920. "type": "git",
  8921. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8922. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8923. },
  8924. "dist": {
  8925. "type": "zip",
  8926. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8927. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8928. "shasum": ""
  8929. },
  8930. "require": {
  8931. "php": ">=8.1"
  8932. },
  8933. "require-dev": {
  8934. "phpunit/phpunit": "^10.0"
  8935. },
  8936. "type": "library",
  8937. "extra": {
  8938. "branch-alias": {
  8939. "dev-main": "3.0-dev"
  8940. }
  8941. },
  8942. "autoload": {
  8943. "classmap": [
  8944. "src/"
  8945. ]
  8946. },
  8947. "notification-url": "https://packagist.org/downloads/",
  8948. "license": [
  8949. "BSD-3-Clause"
  8950. ],
  8951. "authors": [
  8952. {
  8953. "name": "Sebastian Bergmann",
  8954. "email": "sebastian@phpunit.de",
  8955. "role": "lead"
  8956. }
  8957. ],
  8958. "description": "Simple template engine.",
  8959. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8960. "keywords": [
  8961. "template"
  8962. ],
  8963. "support": {
  8964. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8965. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8966. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8967. },
  8968. "funding": [
  8969. {
  8970. "url": "https://github.com/sebastianbergmann",
  8971. "type": "github"
  8972. }
  8973. ],
  8974. "time": "2023-08-31T14:07:24+00:00"
  8975. },
  8976. {
  8977. "name": "phpunit/php-timer",
  8978. "version": "6.0.0",
  8979. "source": {
  8980. "type": "git",
  8981. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8982. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8983. },
  8984. "dist": {
  8985. "type": "zip",
  8986. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8987. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8988. "shasum": ""
  8989. },
  8990. "require": {
  8991. "php": ">=8.1"
  8992. },
  8993. "require-dev": {
  8994. "phpunit/phpunit": "^10.0"
  8995. },
  8996. "type": "library",
  8997. "extra": {
  8998. "branch-alias": {
  8999. "dev-main": "6.0-dev"
  9000. }
  9001. },
  9002. "autoload": {
  9003. "classmap": [
  9004. "src/"
  9005. ]
  9006. },
  9007. "notification-url": "https://packagist.org/downloads/",
  9008. "license": [
  9009. "BSD-3-Clause"
  9010. ],
  9011. "authors": [
  9012. {
  9013. "name": "Sebastian Bergmann",
  9014. "email": "sebastian@phpunit.de",
  9015. "role": "lead"
  9016. }
  9017. ],
  9018. "description": "Utility class for timing",
  9019. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9020. "keywords": [
  9021. "timer"
  9022. ],
  9023. "support": {
  9024. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9025. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9026. },
  9027. "funding": [
  9028. {
  9029. "url": "https://github.com/sebastianbergmann",
  9030. "type": "github"
  9031. }
  9032. ],
  9033. "time": "2023-02-03T06:57:52+00:00"
  9034. },
  9035. {
  9036. "name": "phpunit/phpunit",
  9037. "version": "10.5.37",
  9038. "source": {
  9039. "type": "git",
  9040. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9041. "reference": "c7cffa0efa2b70c22366523e6d804c9419eb2400"
  9042. },
  9043. "dist": {
  9044. "type": "zip",
  9045. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c7cffa0efa2b70c22366523e6d804c9419eb2400",
  9046. "reference": "c7cffa0efa2b70c22366523e6d804c9419eb2400",
  9047. "shasum": ""
  9048. },
  9049. "require": {
  9050. "ext-dom": "*",
  9051. "ext-json": "*",
  9052. "ext-libxml": "*",
  9053. "ext-mbstring": "*",
  9054. "ext-xml": "*",
  9055. "ext-xmlwriter": "*",
  9056. "myclabs/deep-copy": "^1.12.0",
  9057. "phar-io/manifest": "^2.0.4",
  9058. "phar-io/version": "^3.2.1",
  9059. "php": ">=8.1",
  9060. "phpunit/php-code-coverage": "^10.1.16",
  9061. "phpunit/php-file-iterator": "^4.1.0",
  9062. "phpunit/php-invoker": "^4.0.0",
  9063. "phpunit/php-text-template": "^3.0.1",
  9064. "phpunit/php-timer": "^6.0.0",
  9065. "sebastian/cli-parser": "^2.0.1",
  9066. "sebastian/code-unit": "^2.0.0",
  9067. "sebastian/comparator": "^5.0.3",
  9068. "sebastian/diff": "^5.1.1",
  9069. "sebastian/environment": "^6.1.0",
  9070. "sebastian/exporter": "^5.1.2",
  9071. "sebastian/global-state": "^6.0.2",
  9072. "sebastian/object-enumerator": "^5.0.0",
  9073. "sebastian/recursion-context": "^5.0.0",
  9074. "sebastian/type": "^4.0.0",
  9075. "sebastian/version": "^4.0.1"
  9076. },
  9077. "suggest": {
  9078. "ext-soap": "To be able to generate mocks based on WSDL files"
  9079. },
  9080. "bin": [
  9081. "phpunit"
  9082. ],
  9083. "type": "library",
  9084. "extra": {
  9085. "branch-alias": {
  9086. "dev-main": "10.5-dev"
  9087. }
  9088. },
  9089. "autoload": {
  9090. "files": [
  9091. "src/Framework/Assert/Functions.php"
  9092. ],
  9093. "classmap": [
  9094. "src/"
  9095. ]
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "BSD-3-Clause"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Sebastian Bergmann",
  9104. "email": "sebastian@phpunit.de",
  9105. "role": "lead"
  9106. }
  9107. ],
  9108. "description": "The PHP Unit Testing framework.",
  9109. "homepage": "https://phpunit.de/",
  9110. "keywords": [
  9111. "phpunit",
  9112. "testing",
  9113. "xunit"
  9114. ],
  9115. "support": {
  9116. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9117. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9118. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.37"
  9119. },
  9120. "funding": [
  9121. {
  9122. "url": "https://phpunit.de/sponsors.html",
  9123. "type": "custom"
  9124. },
  9125. {
  9126. "url": "https://github.com/sebastianbergmann",
  9127. "type": "github"
  9128. },
  9129. {
  9130. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9131. "type": "tidelift"
  9132. }
  9133. ],
  9134. "time": "2024-10-19T13:03:41+00:00"
  9135. },
  9136. {
  9137. "name": "react/cache",
  9138. "version": "v1.2.0",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/reactphp/cache.git",
  9142. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9147. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "php": ">=5.3.0",
  9152. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9153. },
  9154. "require-dev": {
  9155. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9156. },
  9157. "type": "library",
  9158. "autoload": {
  9159. "psr-4": {
  9160. "React\\Cache\\": "src/"
  9161. }
  9162. },
  9163. "notification-url": "https://packagist.org/downloads/",
  9164. "license": [
  9165. "MIT"
  9166. ],
  9167. "authors": [
  9168. {
  9169. "name": "Christian Lück",
  9170. "email": "christian@clue.engineering",
  9171. "homepage": "https://clue.engineering/"
  9172. },
  9173. {
  9174. "name": "Cees-Jan Kiewiet",
  9175. "email": "reactphp@ceesjankiewiet.nl",
  9176. "homepage": "https://wyrihaximus.net/"
  9177. },
  9178. {
  9179. "name": "Jan Sorgalla",
  9180. "email": "jsorgalla@gmail.com",
  9181. "homepage": "https://sorgalla.com/"
  9182. },
  9183. {
  9184. "name": "Chris Boden",
  9185. "email": "cboden@gmail.com",
  9186. "homepage": "https://cboden.dev/"
  9187. }
  9188. ],
  9189. "description": "Async, Promise-based cache interface for ReactPHP",
  9190. "keywords": [
  9191. "cache",
  9192. "caching",
  9193. "promise",
  9194. "reactphp"
  9195. ],
  9196. "support": {
  9197. "issues": "https://github.com/reactphp/cache/issues",
  9198. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9199. },
  9200. "funding": [
  9201. {
  9202. "url": "https://opencollective.com/reactphp",
  9203. "type": "open_collective"
  9204. }
  9205. ],
  9206. "time": "2022-11-30T15:59:55+00:00"
  9207. },
  9208. {
  9209. "name": "react/child-process",
  9210. "version": "v0.6.5",
  9211. "source": {
  9212. "type": "git",
  9213. "url": "https://github.com/reactphp/child-process.git",
  9214. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9215. },
  9216. "dist": {
  9217. "type": "zip",
  9218. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9219. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9220. "shasum": ""
  9221. },
  9222. "require": {
  9223. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9224. "php": ">=5.3.0",
  9225. "react/event-loop": "^1.2",
  9226. "react/stream": "^1.2"
  9227. },
  9228. "require-dev": {
  9229. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9230. "react/socket": "^1.8",
  9231. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9232. },
  9233. "type": "library",
  9234. "autoload": {
  9235. "psr-4": {
  9236. "React\\ChildProcess\\": "src"
  9237. }
  9238. },
  9239. "notification-url": "https://packagist.org/downloads/",
  9240. "license": [
  9241. "MIT"
  9242. ],
  9243. "authors": [
  9244. {
  9245. "name": "Christian Lück",
  9246. "email": "christian@clue.engineering",
  9247. "homepage": "https://clue.engineering/"
  9248. },
  9249. {
  9250. "name": "Cees-Jan Kiewiet",
  9251. "email": "reactphp@ceesjankiewiet.nl",
  9252. "homepage": "https://wyrihaximus.net/"
  9253. },
  9254. {
  9255. "name": "Jan Sorgalla",
  9256. "email": "jsorgalla@gmail.com",
  9257. "homepage": "https://sorgalla.com/"
  9258. },
  9259. {
  9260. "name": "Chris Boden",
  9261. "email": "cboden@gmail.com",
  9262. "homepage": "https://cboden.dev/"
  9263. }
  9264. ],
  9265. "description": "Event-driven library for executing child processes with ReactPHP.",
  9266. "keywords": [
  9267. "event-driven",
  9268. "process",
  9269. "reactphp"
  9270. ],
  9271. "support": {
  9272. "issues": "https://github.com/reactphp/child-process/issues",
  9273. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9274. },
  9275. "funding": [
  9276. {
  9277. "url": "https://github.com/WyriHaximus",
  9278. "type": "github"
  9279. },
  9280. {
  9281. "url": "https://github.com/clue",
  9282. "type": "github"
  9283. }
  9284. ],
  9285. "time": "2022-09-16T13:41:56+00:00"
  9286. },
  9287. {
  9288. "name": "react/dns",
  9289. "version": "v1.13.0",
  9290. "source": {
  9291. "type": "git",
  9292. "url": "https://github.com/reactphp/dns.git",
  9293. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9294. },
  9295. "dist": {
  9296. "type": "zip",
  9297. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9298. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9299. "shasum": ""
  9300. },
  9301. "require": {
  9302. "php": ">=5.3.0",
  9303. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9304. "react/event-loop": "^1.2",
  9305. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9306. },
  9307. "require-dev": {
  9308. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9309. "react/async": "^4.3 || ^3 || ^2",
  9310. "react/promise-timer": "^1.11"
  9311. },
  9312. "type": "library",
  9313. "autoload": {
  9314. "psr-4": {
  9315. "React\\Dns\\": "src/"
  9316. }
  9317. },
  9318. "notification-url": "https://packagist.org/downloads/",
  9319. "license": [
  9320. "MIT"
  9321. ],
  9322. "authors": [
  9323. {
  9324. "name": "Christian Lück",
  9325. "email": "christian@clue.engineering",
  9326. "homepage": "https://clue.engineering/"
  9327. },
  9328. {
  9329. "name": "Cees-Jan Kiewiet",
  9330. "email": "reactphp@ceesjankiewiet.nl",
  9331. "homepage": "https://wyrihaximus.net/"
  9332. },
  9333. {
  9334. "name": "Jan Sorgalla",
  9335. "email": "jsorgalla@gmail.com",
  9336. "homepage": "https://sorgalla.com/"
  9337. },
  9338. {
  9339. "name": "Chris Boden",
  9340. "email": "cboden@gmail.com",
  9341. "homepage": "https://cboden.dev/"
  9342. }
  9343. ],
  9344. "description": "Async DNS resolver for ReactPHP",
  9345. "keywords": [
  9346. "async",
  9347. "dns",
  9348. "dns-resolver",
  9349. "reactphp"
  9350. ],
  9351. "support": {
  9352. "issues": "https://github.com/reactphp/dns/issues",
  9353. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9354. },
  9355. "funding": [
  9356. {
  9357. "url": "https://opencollective.com/reactphp",
  9358. "type": "open_collective"
  9359. }
  9360. ],
  9361. "time": "2024-06-13T14:18:03+00:00"
  9362. },
  9363. {
  9364. "name": "react/event-loop",
  9365. "version": "v1.5.0",
  9366. "source": {
  9367. "type": "git",
  9368. "url": "https://github.com/reactphp/event-loop.git",
  9369. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9370. },
  9371. "dist": {
  9372. "type": "zip",
  9373. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9374. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9375. "shasum": ""
  9376. },
  9377. "require": {
  9378. "php": ">=5.3.0"
  9379. },
  9380. "require-dev": {
  9381. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9382. },
  9383. "suggest": {
  9384. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9385. },
  9386. "type": "library",
  9387. "autoload": {
  9388. "psr-4": {
  9389. "React\\EventLoop\\": "src/"
  9390. }
  9391. },
  9392. "notification-url": "https://packagist.org/downloads/",
  9393. "license": [
  9394. "MIT"
  9395. ],
  9396. "authors": [
  9397. {
  9398. "name": "Christian Lück",
  9399. "email": "christian@clue.engineering",
  9400. "homepage": "https://clue.engineering/"
  9401. },
  9402. {
  9403. "name": "Cees-Jan Kiewiet",
  9404. "email": "reactphp@ceesjankiewiet.nl",
  9405. "homepage": "https://wyrihaximus.net/"
  9406. },
  9407. {
  9408. "name": "Jan Sorgalla",
  9409. "email": "jsorgalla@gmail.com",
  9410. "homepage": "https://sorgalla.com/"
  9411. },
  9412. {
  9413. "name": "Chris Boden",
  9414. "email": "cboden@gmail.com",
  9415. "homepage": "https://cboden.dev/"
  9416. }
  9417. ],
  9418. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9419. "keywords": [
  9420. "asynchronous",
  9421. "event-loop"
  9422. ],
  9423. "support": {
  9424. "issues": "https://github.com/reactphp/event-loop/issues",
  9425. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9426. },
  9427. "funding": [
  9428. {
  9429. "url": "https://opencollective.com/reactphp",
  9430. "type": "open_collective"
  9431. }
  9432. ],
  9433. "time": "2023-11-13T13:48:05+00:00"
  9434. },
  9435. {
  9436. "name": "react/socket",
  9437. "version": "v1.16.0",
  9438. "source": {
  9439. "type": "git",
  9440. "url": "https://github.com/reactphp/socket.git",
  9441. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9442. },
  9443. "dist": {
  9444. "type": "zip",
  9445. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9446. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9447. "shasum": ""
  9448. },
  9449. "require": {
  9450. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9451. "php": ">=5.3.0",
  9452. "react/dns": "^1.13",
  9453. "react/event-loop": "^1.2",
  9454. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9455. "react/stream": "^1.4"
  9456. },
  9457. "require-dev": {
  9458. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9459. "react/async": "^4.3 || ^3.3 || ^2",
  9460. "react/promise-stream": "^1.4",
  9461. "react/promise-timer": "^1.11"
  9462. },
  9463. "type": "library",
  9464. "autoload": {
  9465. "psr-4": {
  9466. "React\\Socket\\": "src/"
  9467. }
  9468. },
  9469. "notification-url": "https://packagist.org/downloads/",
  9470. "license": [
  9471. "MIT"
  9472. ],
  9473. "authors": [
  9474. {
  9475. "name": "Christian Lück",
  9476. "email": "christian@clue.engineering",
  9477. "homepage": "https://clue.engineering/"
  9478. },
  9479. {
  9480. "name": "Cees-Jan Kiewiet",
  9481. "email": "reactphp@ceesjankiewiet.nl",
  9482. "homepage": "https://wyrihaximus.net/"
  9483. },
  9484. {
  9485. "name": "Jan Sorgalla",
  9486. "email": "jsorgalla@gmail.com",
  9487. "homepage": "https://sorgalla.com/"
  9488. },
  9489. {
  9490. "name": "Chris Boden",
  9491. "email": "cboden@gmail.com",
  9492. "homepage": "https://cboden.dev/"
  9493. }
  9494. ],
  9495. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9496. "keywords": [
  9497. "Connection",
  9498. "Socket",
  9499. "async",
  9500. "reactphp",
  9501. "stream"
  9502. ],
  9503. "support": {
  9504. "issues": "https://github.com/reactphp/socket/issues",
  9505. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9506. },
  9507. "funding": [
  9508. {
  9509. "url": "https://opencollective.com/reactphp",
  9510. "type": "open_collective"
  9511. }
  9512. ],
  9513. "time": "2024-07-26T10:38:09+00:00"
  9514. },
  9515. {
  9516. "name": "react/stream",
  9517. "version": "v1.4.0",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/reactphp/stream.git",
  9521. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9526. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9527. "shasum": ""
  9528. },
  9529. "require": {
  9530. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9531. "php": ">=5.3.8",
  9532. "react/event-loop": "^1.2"
  9533. },
  9534. "require-dev": {
  9535. "clue/stream-filter": "~1.2",
  9536. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9537. },
  9538. "type": "library",
  9539. "autoload": {
  9540. "psr-4": {
  9541. "React\\Stream\\": "src/"
  9542. }
  9543. },
  9544. "notification-url": "https://packagist.org/downloads/",
  9545. "license": [
  9546. "MIT"
  9547. ],
  9548. "authors": [
  9549. {
  9550. "name": "Christian Lück",
  9551. "email": "christian@clue.engineering",
  9552. "homepage": "https://clue.engineering/"
  9553. },
  9554. {
  9555. "name": "Cees-Jan Kiewiet",
  9556. "email": "reactphp@ceesjankiewiet.nl",
  9557. "homepage": "https://wyrihaximus.net/"
  9558. },
  9559. {
  9560. "name": "Jan Sorgalla",
  9561. "email": "jsorgalla@gmail.com",
  9562. "homepage": "https://sorgalla.com/"
  9563. },
  9564. {
  9565. "name": "Chris Boden",
  9566. "email": "cboden@gmail.com",
  9567. "homepage": "https://cboden.dev/"
  9568. }
  9569. ],
  9570. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9571. "keywords": [
  9572. "event-driven",
  9573. "io",
  9574. "non-blocking",
  9575. "pipe",
  9576. "reactphp",
  9577. "readable",
  9578. "stream",
  9579. "writable"
  9580. ],
  9581. "support": {
  9582. "issues": "https://github.com/reactphp/stream/issues",
  9583. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9584. },
  9585. "funding": [
  9586. {
  9587. "url": "https://opencollective.com/reactphp",
  9588. "type": "open_collective"
  9589. }
  9590. ],
  9591. "time": "2024-06-11T12:45:25+00:00"
  9592. },
  9593. {
  9594. "name": "sebastian/cli-parser",
  9595. "version": "2.0.1",
  9596. "source": {
  9597. "type": "git",
  9598. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9599. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9600. },
  9601. "dist": {
  9602. "type": "zip",
  9603. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9604. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9605. "shasum": ""
  9606. },
  9607. "require": {
  9608. "php": ">=8.1"
  9609. },
  9610. "require-dev": {
  9611. "phpunit/phpunit": "^10.0"
  9612. },
  9613. "type": "library",
  9614. "extra": {
  9615. "branch-alias": {
  9616. "dev-main": "2.0-dev"
  9617. }
  9618. },
  9619. "autoload": {
  9620. "classmap": [
  9621. "src/"
  9622. ]
  9623. },
  9624. "notification-url": "https://packagist.org/downloads/",
  9625. "license": [
  9626. "BSD-3-Clause"
  9627. ],
  9628. "authors": [
  9629. {
  9630. "name": "Sebastian Bergmann",
  9631. "email": "sebastian@phpunit.de",
  9632. "role": "lead"
  9633. }
  9634. ],
  9635. "description": "Library for parsing CLI options",
  9636. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9637. "support": {
  9638. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9639. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9640. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9641. },
  9642. "funding": [
  9643. {
  9644. "url": "https://github.com/sebastianbergmann",
  9645. "type": "github"
  9646. }
  9647. ],
  9648. "time": "2024-03-02T07:12:49+00:00"
  9649. },
  9650. {
  9651. "name": "sebastian/code-unit",
  9652. "version": "2.0.0",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9656. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9661. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "php": ">=8.1"
  9666. },
  9667. "require-dev": {
  9668. "phpunit/phpunit": "^10.0"
  9669. },
  9670. "type": "library",
  9671. "extra": {
  9672. "branch-alias": {
  9673. "dev-main": "2.0-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "classmap": [
  9678. "src/"
  9679. ]
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "BSD-3-Clause"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Sebastian Bergmann",
  9688. "email": "sebastian@phpunit.de",
  9689. "role": "lead"
  9690. }
  9691. ],
  9692. "description": "Collection of value objects that represent the PHP code units",
  9693. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9694. "support": {
  9695. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9696. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9697. },
  9698. "funding": [
  9699. {
  9700. "url": "https://github.com/sebastianbergmann",
  9701. "type": "github"
  9702. }
  9703. ],
  9704. "time": "2023-02-03T06:58:43+00:00"
  9705. },
  9706. {
  9707. "name": "sebastian/code-unit-reverse-lookup",
  9708. "version": "3.0.0",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9712. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9717. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9718. "shasum": ""
  9719. },
  9720. "require": {
  9721. "php": ">=8.1"
  9722. },
  9723. "require-dev": {
  9724. "phpunit/phpunit": "^10.0"
  9725. },
  9726. "type": "library",
  9727. "extra": {
  9728. "branch-alias": {
  9729. "dev-main": "3.0-dev"
  9730. }
  9731. },
  9732. "autoload": {
  9733. "classmap": [
  9734. "src/"
  9735. ]
  9736. },
  9737. "notification-url": "https://packagist.org/downloads/",
  9738. "license": [
  9739. "BSD-3-Clause"
  9740. ],
  9741. "authors": [
  9742. {
  9743. "name": "Sebastian Bergmann",
  9744. "email": "sebastian@phpunit.de"
  9745. }
  9746. ],
  9747. "description": "Looks up which function or method a line of code belongs to",
  9748. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9749. "support": {
  9750. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9751. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9752. },
  9753. "funding": [
  9754. {
  9755. "url": "https://github.com/sebastianbergmann",
  9756. "type": "github"
  9757. }
  9758. ],
  9759. "time": "2023-02-03T06:59:15+00:00"
  9760. },
  9761. {
  9762. "name": "sebastian/comparator",
  9763. "version": "5.0.3",
  9764. "source": {
  9765. "type": "git",
  9766. "url": "https://github.com/sebastianbergmann/comparator.git",
  9767. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9768. },
  9769. "dist": {
  9770. "type": "zip",
  9771. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9772. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9773. "shasum": ""
  9774. },
  9775. "require": {
  9776. "ext-dom": "*",
  9777. "ext-mbstring": "*",
  9778. "php": ">=8.1",
  9779. "sebastian/diff": "^5.0",
  9780. "sebastian/exporter": "^5.0"
  9781. },
  9782. "require-dev": {
  9783. "phpunit/phpunit": "^10.5"
  9784. },
  9785. "type": "library",
  9786. "extra": {
  9787. "branch-alias": {
  9788. "dev-main": "5.0-dev"
  9789. }
  9790. },
  9791. "autoload": {
  9792. "classmap": [
  9793. "src/"
  9794. ]
  9795. },
  9796. "notification-url": "https://packagist.org/downloads/",
  9797. "license": [
  9798. "BSD-3-Clause"
  9799. ],
  9800. "authors": [
  9801. {
  9802. "name": "Sebastian Bergmann",
  9803. "email": "sebastian@phpunit.de"
  9804. },
  9805. {
  9806. "name": "Jeff Welch",
  9807. "email": "whatthejeff@gmail.com"
  9808. },
  9809. {
  9810. "name": "Volker Dusch",
  9811. "email": "github@wallbash.com"
  9812. },
  9813. {
  9814. "name": "Bernhard Schussek",
  9815. "email": "bschussek@2bepublished.at"
  9816. }
  9817. ],
  9818. "description": "Provides the functionality to compare PHP values for equality",
  9819. "homepage": "https://github.com/sebastianbergmann/comparator",
  9820. "keywords": [
  9821. "comparator",
  9822. "compare",
  9823. "equality"
  9824. ],
  9825. "support": {
  9826. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9827. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9828. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9829. },
  9830. "funding": [
  9831. {
  9832. "url": "https://github.com/sebastianbergmann",
  9833. "type": "github"
  9834. }
  9835. ],
  9836. "time": "2024-10-18T14:56:07+00:00"
  9837. },
  9838. {
  9839. "name": "sebastian/complexity",
  9840. "version": "3.2.0",
  9841. "source": {
  9842. "type": "git",
  9843. "url": "https://github.com/sebastianbergmann/complexity.git",
  9844. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9845. },
  9846. "dist": {
  9847. "type": "zip",
  9848. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9849. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9850. "shasum": ""
  9851. },
  9852. "require": {
  9853. "nikic/php-parser": "^4.18 || ^5.0",
  9854. "php": ">=8.1"
  9855. },
  9856. "require-dev": {
  9857. "phpunit/phpunit": "^10.0"
  9858. },
  9859. "type": "library",
  9860. "extra": {
  9861. "branch-alias": {
  9862. "dev-main": "3.2-dev"
  9863. }
  9864. },
  9865. "autoload": {
  9866. "classmap": [
  9867. "src/"
  9868. ]
  9869. },
  9870. "notification-url": "https://packagist.org/downloads/",
  9871. "license": [
  9872. "BSD-3-Clause"
  9873. ],
  9874. "authors": [
  9875. {
  9876. "name": "Sebastian Bergmann",
  9877. "email": "sebastian@phpunit.de",
  9878. "role": "lead"
  9879. }
  9880. ],
  9881. "description": "Library for calculating the complexity of PHP code units",
  9882. "homepage": "https://github.com/sebastianbergmann/complexity",
  9883. "support": {
  9884. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9885. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9886. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9887. },
  9888. "funding": [
  9889. {
  9890. "url": "https://github.com/sebastianbergmann",
  9891. "type": "github"
  9892. }
  9893. ],
  9894. "time": "2023-12-21T08:37:17+00:00"
  9895. },
  9896. {
  9897. "name": "sebastian/diff",
  9898. "version": "5.1.1",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/sebastianbergmann/diff.git",
  9902. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9907. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9908. "shasum": ""
  9909. },
  9910. "require": {
  9911. "php": ">=8.1"
  9912. },
  9913. "require-dev": {
  9914. "phpunit/phpunit": "^10.0",
  9915. "symfony/process": "^6.4"
  9916. },
  9917. "type": "library",
  9918. "extra": {
  9919. "branch-alias": {
  9920. "dev-main": "5.1-dev"
  9921. }
  9922. },
  9923. "autoload": {
  9924. "classmap": [
  9925. "src/"
  9926. ]
  9927. },
  9928. "notification-url": "https://packagist.org/downloads/",
  9929. "license": [
  9930. "BSD-3-Clause"
  9931. ],
  9932. "authors": [
  9933. {
  9934. "name": "Sebastian Bergmann",
  9935. "email": "sebastian@phpunit.de"
  9936. },
  9937. {
  9938. "name": "Kore Nordmann",
  9939. "email": "mail@kore-nordmann.de"
  9940. }
  9941. ],
  9942. "description": "Diff implementation",
  9943. "homepage": "https://github.com/sebastianbergmann/diff",
  9944. "keywords": [
  9945. "diff",
  9946. "udiff",
  9947. "unidiff",
  9948. "unified diff"
  9949. ],
  9950. "support": {
  9951. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9952. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9953. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9954. },
  9955. "funding": [
  9956. {
  9957. "url": "https://github.com/sebastianbergmann",
  9958. "type": "github"
  9959. }
  9960. ],
  9961. "time": "2024-03-02T07:15:17+00:00"
  9962. },
  9963. {
  9964. "name": "sebastian/environment",
  9965. "version": "6.1.0",
  9966. "source": {
  9967. "type": "git",
  9968. "url": "https://github.com/sebastianbergmann/environment.git",
  9969. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9970. },
  9971. "dist": {
  9972. "type": "zip",
  9973. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9974. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9975. "shasum": ""
  9976. },
  9977. "require": {
  9978. "php": ">=8.1"
  9979. },
  9980. "require-dev": {
  9981. "phpunit/phpunit": "^10.0"
  9982. },
  9983. "suggest": {
  9984. "ext-posix": "*"
  9985. },
  9986. "type": "library",
  9987. "extra": {
  9988. "branch-alias": {
  9989. "dev-main": "6.1-dev"
  9990. }
  9991. },
  9992. "autoload": {
  9993. "classmap": [
  9994. "src/"
  9995. ]
  9996. },
  9997. "notification-url": "https://packagist.org/downloads/",
  9998. "license": [
  9999. "BSD-3-Clause"
  10000. ],
  10001. "authors": [
  10002. {
  10003. "name": "Sebastian Bergmann",
  10004. "email": "sebastian@phpunit.de"
  10005. }
  10006. ],
  10007. "description": "Provides functionality to handle HHVM/PHP environments",
  10008. "homepage": "https://github.com/sebastianbergmann/environment",
  10009. "keywords": [
  10010. "Xdebug",
  10011. "environment",
  10012. "hhvm"
  10013. ],
  10014. "support": {
  10015. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10016. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10017. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10018. },
  10019. "funding": [
  10020. {
  10021. "url": "https://github.com/sebastianbergmann",
  10022. "type": "github"
  10023. }
  10024. ],
  10025. "time": "2024-03-23T08:47:14+00:00"
  10026. },
  10027. {
  10028. "name": "sebastian/exporter",
  10029. "version": "5.1.2",
  10030. "source": {
  10031. "type": "git",
  10032. "url": "https://github.com/sebastianbergmann/exporter.git",
  10033. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10034. },
  10035. "dist": {
  10036. "type": "zip",
  10037. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10038. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10039. "shasum": ""
  10040. },
  10041. "require": {
  10042. "ext-mbstring": "*",
  10043. "php": ">=8.1",
  10044. "sebastian/recursion-context": "^5.0"
  10045. },
  10046. "require-dev": {
  10047. "phpunit/phpunit": "^10.0"
  10048. },
  10049. "type": "library",
  10050. "extra": {
  10051. "branch-alias": {
  10052. "dev-main": "5.1-dev"
  10053. }
  10054. },
  10055. "autoload": {
  10056. "classmap": [
  10057. "src/"
  10058. ]
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "BSD-3-Clause"
  10063. ],
  10064. "authors": [
  10065. {
  10066. "name": "Sebastian Bergmann",
  10067. "email": "sebastian@phpunit.de"
  10068. },
  10069. {
  10070. "name": "Jeff Welch",
  10071. "email": "whatthejeff@gmail.com"
  10072. },
  10073. {
  10074. "name": "Volker Dusch",
  10075. "email": "github@wallbash.com"
  10076. },
  10077. {
  10078. "name": "Adam Harvey",
  10079. "email": "aharvey@php.net"
  10080. },
  10081. {
  10082. "name": "Bernhard Schussek",
  10083. "email": "bschussek@gmail.com"
  10084. }
  10085. ],
  10086. "description": "Provides the functionality to export PHP variables for visualization",
  10087. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10088. "keywords": [
  10089. "export",
  10090. "exporter"
  10091. ],
  10092. "support": {
  10093. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10094. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10095. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10096. },
  10097. "funding": [
  10098. {
  10099. "url": "https://github.com/sebastianbergmann",
  10100. "type": "github"
  10101. }
  10102. ],
  10103. "time": "2024-03-02T07:17:12+00:00"
  10104. },
  10105. {
  10106. "name": "sebastian/global-state",
  10107. "version": "6.0.2",
  10108. "source": {
  10109. "type": "git",
  10110. "url": "https://github.com/sebastianbergmann/global-state.git",
  10111. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10112. },
  10113. "dist": {
  10114. "type": "zip",
  10115. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10116. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10117. "shasum": ""
  10118. },
  10119. "require": {
  10120. "php": ">=8.1",
  10121. "sebastian/object-reflector": "^3.0",
  10122. "sebastian/recursion-context": "^5.0"
  10123. },
  10124. "require-dev": {
  10125. "ext-dom": "*",
  10126. "phpunit/phpunit": "^10.0"
  10127. },
  10128. "type": "library",
  10129. "extra": {
  10130. "branch-alias": {
  10131. "dev-main": "6.0-dev"
  10132. }
  10133. },
  10134. "autoload": {
  10135. "classmap": [
  10136. "src/"
  10137. ]
  10138. },
  10139. "notification-url": "https://packagist.org/downloads/",
  10140. "license": [
  10141. "BSD-3-Clause"
  10142. ],
  10143. "authors": [
  10144. {
  10145. "name": "Sebastian Bergmann",
  10146. "email": "sebastian@phpunit.de"
  10147. }
  10148. ],
  10149. "description": "Snapshotting of global state",
  10150. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10151. "keywords": [
  10152. "global state"
  10153. ],
  10154. "support": {
  10155. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10156. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10157. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10158. },
  10159. "funding": [
  10160. {
  10161. "url": "https://github.com/sebastianbergmann",
  10162. "type": "github"
  10163. }
  10164. ],
  10165. "time": "2024-03-02T07:19:19+00:00"
  10166. },
  10167. {
  10168. "name": "sebastian/lines-of-code",
  10169. "version": "2.0.2",
  10170. "source": {
  10171. "type": "git",
  10172. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10173. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10174. },
  10175. "dist": {
  10176. "type": "zip",
  10177. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10178. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10179. "shasum": ""
  10180. },
  10181. "require": {
  10182. "nikic/php-parser": "^4.18 || ^5.0",
  10183. "php": ">=8.1"
  10184. },
  10185. "require-dev": {
  10186. "phpunit/phpunit": "^10.0"
  10187. },
  10188. "type": "library",
  10189. "extra": {
  10190. "branch-alias": {
  10191. "dev-main": "2.0-dev"
  10192. }
  10193. },
  10194. "autoload": {
  10195. "classmap": [
  10196. "src/"
  10197. ]
  10198. },
  10199. "notification-url": "https://packagist.org/downloads/",
  10200. "license": [
  10201. "BSD-3-Clause"
  10202. ],
  10203. "authors": [
  10204. {
  10205. "name": "Sebastian Bergmann",
  10206. "email": "sebastian@phpunit.de",
  10207. "role": "lead"
  10208. }
  10209. ],
  10210. "description": "Library for counting the lines of code in PHP source code",
  10211. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10212. "support": {
  10213. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10214. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10215. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10216. },
  10217. "funding": [
  10218. {
  10219. "url": "https://github.com/sebastianbergmann",
  10220. "type": "github"
  10221. }
  10222. ],
  10223. "time": "2023-12-21T08:38:20+00:00"
  10224. },
  10225. {
  10226. "name": "sebastian/object-enumerator",
  10227. "version": "5.0.0",
  10228. "source": {
  10229. "type": "git",
  10230. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10231. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10232. },
  10233. "dist": {
  10234. "type": "zip",
  10235. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10236. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10237. "shasum": ""
  10238. },
  10239. "require": {
  10240. "php": ">=8.1",
  10241. "sebastian/object-reflector": "^3.0",
  10242. "sebastian/recursion-context": "^5.0"
  10243. },
  10244. "require-dev": {
  10245. "phpunit/phpunit": "^10.0"
  10246. },
  10247. "type": "library",
  10248. "extra": {
  10249. "branch-alias": {
  10250. "dev-main": "5.0-dev"
  10251. }
  10252. },
  10253. "autoload": {
  10254. "classmap": [
  10255. "src/"
  10256. ]
  10257. },
  10258. "notification-url": "https://packagist.org/downloads/",
  10259. "license": [
  10260. "BSD-3-Clause"
  10261. ],
  10262. "authors": [
  10263. {
  10264. "name": "Sebastian Bergmann",
  10265. "email": "sebastian@phpunit.de"
  10266. }
  10267. ],
  10268. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10269. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10270. "support": {
  10271. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10272. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10273. },
  10274. "funding": [
  10275. {
  10276. "url": "https://github.com/sebastianbergmann",
  10277. "type": "github"
  10278. }
  10279. ],
  10280. "time": "2023-02-03T07:08:32+00:00"
  10281. },
  10282. {
  10283. "name": "sebastian/object-reflector",
  10284. "version": "3.0.0",
  10285. "source": {
  10286. "type": "git",
  10287. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10288. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10289. },
  10290. "dist": {
  10291. "type": "zip",
  10292. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10293. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10294. "shasum": ""
  10295. },
  10296. "require": {
  10297. "php": ">=8.1"
  10298. },
  10299. "require-dev": {
  10300. "phpunit/phpunit": "^10.0"
  10301. },
  10302. "type": "library",
  10303. "extra": {
  10304. "branch-alias": {
  10305. "dev-main": "3.0-dev"
  10306. }
  10307. },
  10308. "autoload": {
  10309. "classmap": [
  10310. "src/"
  10311. ]
  10312. },
  10313. "notification-url": "https://packagist.org/downloads/",
  10314. "license": [
  10315. "BSD-3-Clause"
  10316. ],
  10317. "authors": [
  10318. {
  10319. "name": "Sebastian Bergmann",
  10320. "email": "sebastian@phpunit.de"
  10321. }
  10322. ],
  10323. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10324. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10325. "support": {
  10326. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10327. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10328. },
  10329. "funding": [
  10330. {
  10331. "url": "https://github.com/sebastianbergmann",
  10332. "type": "github"
  10333. }
  10334. ],
  10335. "time": "2023-02-03T07:06:18+00:00"
  10336. },
  10337. {
  10338. "name": "sebastian/recursion-context",
  10339. "version": "5.0.0",
  10340. "source": {
  10341. "type": "git",
  10342. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10343. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10344. },
  10345. "dist": {
  10346. "type": "zip",
  10347. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10348. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10349. "shasum": ""
  10350. },
  10351. "require": {
  10352. "php": ">=8.1"
  10353. },
  10354. "require-dev": {
  10355. "phpunit/phpunit": "^10.0"
  10356. },
  10357. "type": "library",
  10358. "extra": {
  10359. "branch-alias": {
  10360. "dev-main": "5.0-dev"
  10361. }
  10362. },
  10363. "autoload": {
  10364. "classmap": [
  10365. "src/"
  10366. ]
  10367. },
  10368. "notification-url": "https://packagist.org/downloads/",
  10369. "license": [
  10370. "BSD-3-Clause"
  10371. ],
  10372. "authors": [
  10373. {
  10374. "name": "Sebastian Bergmann",
  10375. "email": "sebastian@phpunit.de"
  10376. },
  10377. {
  10378. "name": "Jeff Welch",
  10379. "email": "whatthejeff@gmail.com"
  10380. },
  10381. {
  10382. "name": "Adam Harvey",
  10383. "email": "aharvey@php.net"
  10384. }
  10385. ],
  10386. "description": "Provides functionality to recursively process PHP variables",
  10387. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10388. "support": {
  10389. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10390. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10391. },
  10392. "funding": [
  10393. {
  10394. "url": "https://github.com/sebastianbergmann",
  10395. "type": "github"
  10396. }
  10397. ],
  10398. "time": "2023-02-03T07:05:40+00:00"
  10399. },
  10400. {
  10401. "name": "sebastian/type",
  10402. "version": "4.0.0",
  10403. "source": {
  10404. "type": "git",
  10405. "url": "https://github.com/sebastianbergmann/type.git",
  10406. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10407. },
  10408. "dist": {
  10409. "type": "zip",
  10410. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10411. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10412. "shasum": ""
  10413. },
  10414. "require": {
  10415. "php": ">=8.1"
  10416. },
  10417. "require-dev": {
  10418. "phpunit/phpunit": "^10.0"
  10419. },
  10420. "type": "library",
  10421. "extra": {
  10422. "branch-alias": {
  10423. "dev-main": "4.0-dev"
  10424. }
  10425. },
  10426. "autoload": {
  10427. "classmap": [
  10428. "src/"
  10429. ]
  10430. },
  10431. "notification-url": "https://packagist.org/downloads/",
  10432. "license": [
  10433. "BSD-3-Clause"
  10434. ],
  10435. "authors": [
  10436. {
  10437. "name": "Sebastian Bergmann",
  10438. "email": "sebastian@phpunit.de",
  10439. "role": "lead"
  10440. }
  10441. ],
  10442. "description": "Collection of value objects that represent the types of the PHP type system",
  10443. "homepage": "https://github.com/sebastianbergmann/type",
  10444. "support": {
  10445. "issues": "https://github.com/sebastianbergmann/type/issues",
  10446. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10447. },
  10448. "funding": [
  10449. {
  10450. "url": "https://github.com/sebastianbergmann",
  10451. "type": "github"
  10452. }
  10453. ],
  10454. "time": "2023-02-03T07:10:45+00:00"
  10455. },
  10456. {
  10457. "name": "sebastian/version",
  10458. "version": "4.0.1",
  10459. "source": {
  10460. "type": "git",
  10461. "url": "https://github.com/sebastianbergmann/version.git",
  10462. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10463. },
  10464. "dist": {
  10465. "type": "zip",
  10466. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10467. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10468. "shasum": ""
  10469. },
  10470. "require": {
  10471. "php": ">=8.1"
  10472. },
  10473. "type": "library",
  10474. "extra": {
  10475. "branch-alias": {
  10476. "dev-main": "4.0-dev"
  10477. }
  10478. },
  10479. "autoload": {
  10480. "classmap": [
  10481. "src/"
  10482. ]
  10483. },
  10484. "notification-url": "https://packagist.org/downloads/",
  10485. "license": [
  10486. "BSD-3-Clause"
  10487. ],
  10488. "authors": [
  10489. {
  10490. "name": "Sebastian Bergmann",
  10491. "email": "sebastian@phpunit.de",
  10492. "role": "lead"
  10493. }
  10494. ],
  10495. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10496. "homepage": "https://github.com/sebastianbergmann/version",
  10497. "support": {
  10498. "issues": "https://github.com/sebastianbergmann/version/issues",
  10499. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10500. },
  10501. "funding": [
  10502. {
  10503. "url": "https://github.com/sebastianbergmann",
  10504. "type": "github"
  10505. }
  10506. ],
  10507. "time": "2023-02-07T11:34:05+00:00"
  10508. },
  10509. {
  10510. "name": "swoole/ide-helper",
  10511. "version": "5.1.4",
  10512. "source": {
  10513. "type": "git",
  10514. "url": "https://github.com/swoole/ide-helper.git",
  10515. "reference": "e63299f488bf8332404ce4f80142a2ed1397edde"
  10516. },
  10517. "dist": {
  10518. "type": "zip",
  10519. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/e63299f488bf8332404ce4f80142a2ed1397edde",
  10520. "reference": "e63299f488bf8332404ce4f80142a2ed1397edde",
  10521. "shasum": ""
  10522. },
  10523. "type": "library",
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "Apache-2.0"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Team Swoole",
  10531. "email": "team@swoole.com"
  10532. }
  10533. ],
  10534. "description": "IDE help files for Swoole.",
  10535. "support": {
  10536. "issues": "https://github.com/swoole/ide-helper/issues",
  10537. "source": "https://github.com/swoole/ide-helper/tree/5.1.4"
  10538. },
  10539. "time": "2024-09-03T04:39:02+00:00"
  10540. },
  10541. {
  10542. "name": "symfony/event-dispatcher",
  10543. "version": "v6.4.8",
  10544. "source": {
  10545. "type": "git",
  10546. "url": "https://github.com/symfony/event-dispatcher.git",
  10547. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  10548. },
  10549. "dist": {
  10550. "type": "zip",
  10551. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  10552. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  10553. "shasum": ""
  10554. },
  10555. "require": {
  10556. "php": ">=8.1",
  10557. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10558. },
  10559. "conflict": {
  10560. "symfony/dependency-injection": "<5.4",
  10561. "symfony/service-contracts": "<2.5"
  10562. },
  10563. "provide": {
  10564. "psr/event-dispatcher-implementation": "1.0",
  10565. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10566. },
  10567. "require-dev": {
  10568. "psr/log": "^1|^2|^3",
  10569. "symfony/config": "^5.4|^6.0|^7.0",
  10570. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10571. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10572. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10573. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10574. "symfony/service-contracts": "^2.5|^3",
  10575. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10576. },
  10577. "type": "library",
  10578. "autoload": {
  10579. "psr-4": {
  10580. "Symfony\\Component\\EventDispatcher\\": ""
  10581. },
  10582. "exclude-from-classmap": [
  10583. "/Tests/"
  10584. ]
  10585. },
  10586. "notification-url": "https://packagist.org/downloads/",
  10587. "license": [
  10588. "MIT"
  10589. ],
  10590. "authors": [
  10591. {
  10592. "name": "Fabien Potencier",
  10593. "email": "fabien@symfony.com"
  10594. },
  10595. {
  10596. "name": "Symfony Community",
  10597. "homepage": "https://symfony.com/contributors"
  10598. }
  10599. ],
  10600. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10601. "homepage": "https://symfony.com",
  10602. "support": {
  10603. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  10604. },
  10605. "funding": [
  10606. {
  10607. "url": "https://symfony.com/sponsor",
  10608. "type": "custom"
  10609. },
  10610. {
  10611. "url": "https://github.com/fabpot",
  10612. "type": "github"
  10613. },
  10614. {
  10615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10616. "type": "tidelift"
  10617. }
  10618. ],
  10619. "time": "2024-05-31T14:49:08+00:00"
  10620. },
  10621. {
  10622. "name": "symfony/event-dispatcher-contracts",
  10623. "version": "v3.5.0",
  10624. "source": {
  10625. "type": "git",
  10626. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10627. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10628. },
  10629. "dist": {
  10630. "type": "zip",
  10631. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10632. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10633. "shasum": ""
  10634. },
  10635. "require": {
  10636. "php": ">=8.1",
  10637. "psr/event-dispatcher": "^1"
  10638. },
  10639. "type": "library",
  10640. "extra": {
  10641. "branch-alias": {
  10642. "dev-main": "3.5-dev"
  10643. },
  10644. "thanks": {
  10645. "name": "symfony/contracts",
  10646. "url": "https://github.com/symfony/contracts"
  10647. }
  10648. },
  10649. "autoload": {
  10650. "psr-4": {
  10651. "Symfony\\Contracts\\EventDispatcher\\": ""
  10652. }
  10653. },
  10654. "notification-url": "https://packagist.org/downloads/",
  10655. "license": [
  10656. "MIT"
  10657. ],
  10658. "authors": [
  10659. {
  10660. "name": "Nicolas Grekas",
  10661. "email": "p@tchwork.com"
  10662. },
  10663. {
  10664. "name": "Symfony Community",
  10665. "homepage": "https://symfony.com/contributors"
  10666. }
  10667. ],
  10668. "description": "Generic abstractions related to dispatching event",
  10669. "homepage": "https://symfony.com",
  10670. "keywords": [
  10671. "abstractions",
  10672. "contracts",
  10673. "decoupling",
  10674. "interfaces",
  10675. "interoperability",
  10676. "standards"
  10677. ],
  10678. "support": {
  10679. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10680. },
  10681. "funding": [
  10682. {
  10683. "url": "https://symfony.com/sponsor",
  10684. "type": "custom"
  10685. },
  10686. {
  10687. "url": "https://github.com/fabpot",
  10688. "type": "github"
  10689. },
  10690. {
  10691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10692. "type": "tidelift"
  10693. }
  10694. ],
  10695. "time": "2024-04-18T09:32:20+00:00"
  10696. },
  10697. {
  10698. "name": "symfony/filesystem",
  10699. "version": "v6.4.12",
  10700. "source": {
  10701. "type": "git",
  10702. "url": "https://github.com/symfony/filesystem.git",
  10703. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12"
  10704. },
  10705. "dist": {
  10706. "type": "zip",
  10707. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f810e3cbdf7fdc35983968523d09f349fa9ada12",
  10708. "reference": "f810e3cbdf7fdc35983968523d09f349fa9ada12",
  10709. "shasum": ""
  10710. },
  10711. "require": {
  10712. "php": ">=8.1",
  10713. "symfony/polyfill-ctype": "~1.8",
  10714. "symfony/polyfill-mbstring": "~1.8"
  10715. },
  10716. "require-dev": {
  10717. "symfony/process": "^5.4|^6.4|^7.0"
  10718. },
  10719. "type": "library",
  10720. "autoload": {
  10721. "psr-4": {
  10722. "Symfony\\Component\\Filesystem\\": ""
  10723. },
  10724. "exclude-from-classmap": [
  10725. "/Tests/"
  10726. ]
  10727. },
  10728. "notification-url": "https://packagist.org/downloads/",
  10729. "license": [
  10730. "MIT"
  10731. ],
  10732. "authors": [
  10733. {
  10734. "name": "Fabien Potencier",
  10735. "email": "fabien@symfony.com"
  10736. },
  10737. {
  10738. "name": "Symfony Community",
  10739. "homepage": "https://symfony.com/contributors"
  10740. }
  10741. ],
  10742. "description": "Provides basic utilities for the filesystem",
  10743. "homepage": "https://symfony.com",
  10744. "support": {
  10745. "source": "https://github.com/symfony/filesystem/tree/v6.4.12"
  10746. },
  10747. "funding": [
  10748. {
  10749. "url": "https://symfony.com/sponsor",
  10750. "type": "custom"
  10751. },
  10752. {
  10753. "url": "https://github.com/fabpot",
  10754. "type": "github"
  10755. },
  10756. {
  10757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10758. "type": "tidelift"
  10759. }
  10760. ],
  10761. "time": "2024-09-16T16:01:33+00:00"
  10762. },
  10763. {
  10764. "name": "symfony/http-foundation",
  10765. "version": "v6.4.12",
  10766. "source": {
  10767. "type": "git",
  10768. "url": "https://github.com/symfony/http-foundation.git",
  10769. "reference": "133ac043875f59c26c55e79cf074562127cce4d2"
  10770. },
  10771. "dist": {
  10772. "type": "zip",
  10773. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/133ac043875f59c26c55e79cf074562127cce4d2",
  10774. "reference": "133ac043875f59c26c55e79cf074562127cce4d2",
  10775. "shasum": ""
  10776. },
  10777. "require": {
  10778. "php": ">=8.1",
  10779. "symfony/deprecation-contracts": "^2.5|^3",
  10780. "symfony/polyfill-mbstring": "~1.1",
  10781. "symfony/polyfill-php83": "^1.27"
  10782. },
  10783. "conflict": {
  10784. "symfony/cache": "<6.3"
  10785. },
  10786. "require-dev": {
  10787. "doctrine/dbal": "^2.13.1|^3|^4",
  10788. "predis/predis": "^1.1|^2.0",
  10789. "symfony/cache": "^6.3|^7.0",
  10790. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10791. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10792. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10793. "symfony/mime": "^5.4|^6.0|^7.0",
  10794. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10795. },
  10796. "type": "library",
  10797. "autoload": {
  10798. "psr-4": {
  10799. "Symfony\\Component\\HttpFoundation\\": ""
  10800. },
  10801. "exclude-from-classmap": [
  10802. "/Tests/"
  10803. ]
  10804. },
  10805. "notification-url": "https://packagist.org/downloads/",
  10806. "license": [
  10807. "MIT"
  10808. ],
  10809. "authors": [
  10810. {
  10811. "name": "Fabien Potencier",
  10812. "email": "fabien@symfony.com"
  10813. },
  10814. {
  10815. "name": "Symfony Community",
  10816. "homepage": "https://symfony.com/contributors"
  10817. }
  10818. ],
  10819. "description": "Defines an object-oriented layer for the HTTP specification",
  10820. "homepage": "https://symfony.com",
  10821. "support": {
  10822. "source": "https://github.com/symfony/http-foundation/tree/v6.4.12"
  10823. },
  10824. "funding": [
  10825. {
  10826. "url": "https://symfony.com/sponsor",
  10827. "type": "custom"
  10828. },
  10829. {
  10830. "url": "https://github.com/fabpot",
  10831. "type": "github"
  10832. },
  10833. {
  10834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10835. "type": "tidelift"
  10836. }
  10837. ],
  10838. "time": "2024-09-20T08:18:25+00:00"
  10839. },
  10840. {
  10841. "name": "symfony/options-resolver",
  10842. "version": "v6.4.8",
  10843. "source": {
  10844. "type": "git",
  10845. "url": "https://github.com/symfony/options-resolver.git",
  10846. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10847. },
  10848. "dist": {
  10849. "type": "zip",
  10850. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10851. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10852. "shasum": ""
  10853. },
  10854. "require": {
  10855. "php": ">=8.1",
  10856. "symfony/deprecation-contracts": "^2.5|^3"
  10857. },
  10858. "type": "library",
  10859. "autoload": {
  10860. "psr-4": {
  10861. "Symfony\\Component\\OptionsResolver\\": ""
  10862. },
  10863. "exclude-from-classmap": [
  10864. "/Tests/"
  10865. ]
  10866. },
  10867. "notification-url": "https://packagist.org/downloads/",
  10868. "license": [
  10869. "MIT"
  10870. ],
  10871. "authors": [
  10872. {
  10873. "name": "Fabien Potencier",
  10874. "email": "fabien@symfony.com"
  10875. },
  10876. {
  10877. "name": "Symfony Community",
  10878. "homepage": "https://symfony.com/contributors"
  10879. }
  10880. ],
  10881. "description": "Provides an improved replacement for the array_replace PHP function",
  10882. "homepage": "https://symfony.com",
  10883. "keywords": [
  10884. "config",
  10885. "configuration",
  10886. "options"
  10887. ],
  10888. "support": {
  10889. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10890. },
  10891. "funding": [
  10892. {
  10893. "url": "https://symfony.com/sponsor",
  10894. "type": "custom"
  10895. },
  10896. {
  10897. "url": "https://github.com/fabpot",
  10898. "type": "github"
  10899. },
  10900. {
  10901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10902. "type": "tidelift"
  10903. }
  10904. ],
  10905. "time": "2024-05-31T14:49:08+00:00"
  10906. },
  10907. {
  10908. "name": "symfony/polyfill-php81",
  10909. "version": "v1.31.0",
  10910. "source": {
  10911. "type": "git",
  10912. "url": "https://github.com/symfony/polyfill-php81.git",
  10913. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10914. },
  10915. "dist": {
  10916. "type": "zip",
  10917. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10918. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10919. "shasum": ""
  10920. },
  10921. "require": {
  10922. "php": ">=7.2"
  10923. },
  10924. "type": "library",
  10925. "extra": {
  10926. "thanks": {
  10927. "name": "symfony/polyfill",
  10928. "url": "https://github.com/symfony/polyfill"
  10929. }
  10930. },
  10931. "autoload": {
  10932. "files": [
  10933. "bootstrap.php"
  10934. ],
  10935. "psr-4": {
  10936. "Symfony\\Polyfill\\Php81\\": ""
  10937. },
  10938. "classmap": [
  10939. "Resources/stubs"
  10940. ]
  10941. },
  10942. "notification-url": "https://packagist.org/downloads/",
  10943. "license": [
  10944. "MIT"
  10945. ],
  10946. "authors": [
  10947. {
  10948. "name": "Nicolas Grekas",
  10949. "email": "p@tchwork.com"
  10950. },
  10951. {
  10952. "name": "Symfony Community",
  10953. "homepage": "https://symfony.com/contributors"
  10954. }
  10955. ],
  10956. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10957. "homepage": "https://symfony.com",
  10958. "keywords": [
  10959. "compatibility",
  10960. "polyfill",
  10961. "portable",
  10962. "shim"
  10963. ],
  10964. "support": {
  10965. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10966. },
  10967. "funding": [
  10968. {
  10969. "url": "https://symfony.com/sponsor",
  10970. "type": "custom"
  10971. },
  10972. {
  10973. "url": "https://github.com/fabpot",
  10974. "type": "github"
  10975. },
  10976. {
  10977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10978. "type": "tidelift"
  10979. }
  10980. ],
  10981. "time": "2024-09-09T11:45:10+00:00"
  10982. },
  10983. {
  10984. "name": "symfony/polyfill-php83",
  10985. "version": "v1.31.0",
  10986. "source": {
  10987. "type": "git",
  10988. "url": "https://github.com/symfony/polyfill-php83.git",
  10989. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10990. },
  10991. "dist": {
  10992. "type": "zip",
  10993. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10994. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10995. "shasum": ""
  10996. },
  10997. "require": {
  10998. "php": ">=7.2"
  10999. },
  11000. "type": "library",
  11001. "extra": {
  11002. "thanks": {
  11003. "name": "symfony/polyfill",
  11004. "url": "https://github.com/symfony/polyfill"
  11005. }
  11006. },
  11007. "autoload": {
  11008. "files": [
  11009. "bootstrap.php"
  11010. ],
  11011. "psr-4": {
  11012. "Symfony\\Polyfill\\Php83\\": ""
  11013. },
  11014. "classmap": [
  11015. "Resources/stubs"
  11016. ]
  11017. },
  11018. "notification-url": "https://packagist.org/downloads/",
  11019. "license": [
  11020. "MIT"
  11021. ],
  11022. "authors": [
  11023. {
  11024. "name": "Nicolas Grekas",
  11025. "email": "p@tchwork.com"
  11026. },
  11027. {
  11028. "name": "Symfony Community",
  11029. "homepage": "https://symfony.com/contributors"
  11030. }
  11031. ],
  11032. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11033. "homepage": "https://symfony.com",
  11034. "keywords": [
  11035. "compatibility",
  11036. "polyfill",
  11037. "portable",
  11038. "shim"
  11039. ],
  11040. "support": {
  11041. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11042. },
  11043. "funding": [
  11044. {
  11045. "url": "https://symfony.com/sponsor",
  11046. "type": "custom"
  11047. },
  11048. {
  11049. "url": "https://github.com/fabpot",
  11050. "type": "github"
  11051. },
  11052. {
  11053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11054. "type": "tidelift"
  11055. }
  11056. ],
  11057. "time": "2024-09-09T11:45:10+00:00"
  11058. },
  11059. {
  11060. "name": "symfony/process",
  11061. "version": "v6.4.12",
  11062. "source": {
  11063. "type": "git",
  11064. "url": "https://github.com/symfony/process.git",
  11065. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3"
  11066. },
  11067. "dist": {
  11068. "type": "zip",
  11069. "url": "https://api.github.com/repos/symfony/process/zipball/3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  11070. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  11071. "shasum": ""
  11072. },
  11073. "require": {
  11074. "php": ">=8.1"
  11075. },
  11076. "type": "library",
  11077. "autoload": {
  11078. "psr-4": {
  11079. "Symfony\\Component\\Process\\": ""
  11080. },
  11081. "exclude-from-classmap": [
  11082. "/Tests/"
  11083. ]
  11084. },
  11085. "notification-url": "https://packagist.org/downloads/",
  11086. "license": [
  11087. "MIT"
  11088. ],
  11089. "authors": [
  11090. {
  11091. "name": "Fabien Potencier",
  11092. "email": "fabien@symfony.com"
  11093. },
  11094. {
  11095. "name": "Symfony Community",
  11096. "homepage": "https://symfony.com/contributors"
  11097. }
  11098. ],
  11099. "description": "Executes commands in sub-processes",
  11100. "homepage": "https://symfony.com",
  11101. "support": {
  11102. "source": "https://github.com/symfony/process/tree/v6.4.12"
  11103. },
  11104. "funding": [
  11105. {
  11106. "url": "https://symfony.com/sponsor",
  11107. "type": "custom"
  11108. },
  11109. {
  11110. "url": "https://github.com/fabpot",
  11111. "type": "github"
  11112. },
  11113. {
  11114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11115. "type": "tidelift"
  11116. }
  11117. ],
  11118. "time": "2024-09-17T12:47:12+00:00"
  11119. },
  11120. {
  11121. "name": "symfony/stopwatch",
  11122. "version": "v6.4.8",
  11123. "source": {
  11124. "type": "git",
  11125. "url": "https://github.com/symfony/stopwatch.git",
  11126. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  11127. },
  11128. "dist": {
  11129. "type": "zip",
  11130. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  11131. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  11132. "shasum": ""
  11133. },
  11134. "require": {
  11135. "php": ">=8.1",
  11136. "symfony/service-contracts": "^2.5|^3"
  11137. },
  11138. "type": "library",
  11139. "autoload": {
  11140. "psr-4": {
  11141. "Symfony\\Component\\Stopwatch\\": ""
  11142. },
  11143. "exclude-from-classmap": [
  11144. "/Tests/"
  11145. ]
  11146. },
  11147. "notification-url": "https://packagist.org/downloads/",
  11148. "license": [
  11149. "MIT"
  11150. ],
  11151. "authors": [
  11152. {
  11153. "name": "Fabien Potencier",
  11154. "email": "fabien@symfony.com"
  11155. },
  11156. {
  11157. "name": "Symfony Community",
  11158. "homepage": "https://symfony.com/contributors"
  11159. }
  11160. ],
  11161. "description": "Provides a way to profile code",
  11162. "homepage": "https://symfony.com",
  11163. "support": {
  11164. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  11165. },
  11166. "funding": [
  11167. {
  11168. "url": "https://symfony.com/sponsor",
  11169. "type": "custom"
  11170. },
  11171. {
  11172. "url": "https://github.com/fabpot",
  11173. "type": "github"
  11174. },
  11175. {
  11176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11177. "type": "tidelift"
  11178. }
  11179. ],
  11180. "time": "2024-05-31T14:49:08+00:00"
  11181. },
  11182. {
  11183. "name": "theseer/tokenizer",
  11184. "version": "1.2.3",
  11185. "source": {
  11186. "type": "git",
  11187. "url": "https://github.com/theseer/tokenizer.git",
  11188. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11189. },
  11190. "dist": {
  11191. "type": "zip",
  11192. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11193. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11194. "shasum": ""
  11195. },
  11196. "require": {
  11197. "ext-dom": "*",
  11198. "ext-tokenizer": "*",
  11199. "ext-xmlwriter": "*",
  11200. "php": "^7.2 || ^8.0"
  11201. },
  11202. "type": "library",
  11203. "autoload": {
  11204. "classmap": [
  11205. "src/"
  11206. ]
  11207. },
  11208. "notification-url": "https://packagist.org/downloads/",
  11209. "license": [
  11210. "BSD-3-Clause"
  11211. ],
  11212. "authors": [
  11213. {
  11214. "name": "Arne Blankerts",
  11215. "email": "arne@blankerts.de",
  11216. "role": "Developer"
  11217. }
  11218. ],
  11219. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11220. "support": {
  11221. "issues": "https://github.com/theseer/tokenizer/issues",
  11222. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11223. },
  11224. "funding": [
  11225. {
  11226. "url": "https://github.com/theseer",
  11227. "type": "github"
  11228. }
  11229. ],
  11230. "time": "2024-03-03T12:36:25+00:00"
  11231. }
  11232. ],
  11233. "aliases": [],
  11234. "minimum-stability": "dev",
  11235. "stability-flags": [],
  11236. "prefer-stable": true,
  11237. "prefer-lowest": false,
  11238. "platform": {
  11239. "php": ">=8.1"
  11240. },
  11241. "platform-dev": [],
  11242. "plugin-api-version": "2.6.0"
  11243. }