composer.lock 373 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559
  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": "a4fab8fe7069cf132d8088fb346f5c2a",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.336.6",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "0a99dab427f0a1c082775301141aeac3558691ad"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0a99dab427f0a1c082775301141aeac3558691ad",
  74. "reference": "0a99dab427f0a1c082775301141aeac3558691ad",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.2.3",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  83. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  84. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  85. "mtdowling/jmespath.php": "^2.6",
  86. "php": ">=7.2.5",
  87. "psr/http-message": "^1.0 || ^2.0"
  88. },
  89. "require-dev": {
  90. "andrewsville/php-token-reflection": "^1.4",
  91. "aws/aws-php-sns-message-validator": "~1.0",
  92. "behat/behat": "~3.0",
  93. "composer/composer": "^1.10.22",
  94. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  95. "doctrine/cache": "~1.4",
  96. "ext-dom": "*",
  97. "ext-openssl": "*",
  98. "ext-pcntl": "*",
  99. "ext-sockets": "*",
  100. "nette/neon": "^2.3",
  101. "paragonie/random_compat": ">= 2",
  102. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  103. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  104. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  105. "sebastian/comparator": "^1.2.3 || ^4.0",
  106. "yoast/phpunit-polyfills": "^1.0"
  107. },
  108. "suggest": {
  109. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  110. "doctrine/cache": "To use the DoctrineCacheAdapter",
  111. "ext-curl": "To send requests using cURL",
  112. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "type": "library",
  116. "extra": {
  117. "branch-alias": {
  118. "dev-master": "3.0-dev"
  119. }
  120. },
  121. "autoload": {
  122. "files": [
  123. "src/functions.php"
  124. ],
  125. "psr-4": {
  126. "Aws\\": "src/"
  127. },
  128. "exclude-from-classmap": [
  129. "src/data/"
  130. ]
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "Apache-2.0"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Amazon Web Services",
  139. "homepage": "http://aws.amazon.com"
  140. }
  141. ],
  142. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  143. "homepage": "http://aws.amazon.com/sdkforphp",
  144. "keywords": [
  145. "amazon",
  146. "aws",
  147. "cloud",
  148. "dynamodb",
  149. "ec2",
  150. "glacier",
  151. "s3",
  152. "sdk"
  153. ],
  154. "support": {
  155. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  156. "issues": "https://github.com/aws/aws-sdk-php/issues",
  157. "source": "https://github.com/aws/aws-sdk-php/tree/3.336.6"
  158. },
  159. "time": "2024-12-28T04:16:13+00:00"
  160. },
  161. {
  162. "name": "carbonphp/carbon-doctrine-types",
  163. "version": "3.2.0",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  167. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  172. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "php": "^8.1"
  177. },
  178. "conflict": {
  179. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  180. },
  181. "require-dev": {
  182. "doctrine/dbal": "^4.0.0",
  183. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  184. "phpunit/phpunit": "^10.3"
  185. },
  186. "type": "library",
  187. "autoload": {
  188. "psr-4": {
  189. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "KyleKatarn",
  199. "email": "kylekatarnls@gmail.com"
  200. }
  201. ],
  202. "description": "Types to use Carbon in Doctrine",
  203. "keywords": [
  204. "carbon",
  205. "date",
  206. "datetime",
  207. "doctrine",
  208. "time"
  209. ],
  210. "support": {
  211. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  212. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  213. },
  214. "funding": [
  215. {
  216. "url": "https://github.com/kylekatarnls",
  217. "type": "github"
  218. },
  219. {
  220. "url": "https://opencollective.com/Carbon",
  221. "type": "open_collective"
  222. },
  223. {
  224. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  225. "type": "tidelift"
  226. }
  227. ],
  228. "time": "2024-02-09T16:56:22+00:00"
  229. },
  230. {
  231. "name": "doctrine/annotations",
  232. "version": "2.0.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/doctrine/annotations.git",
  236. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  241. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "doctrine/lexer": "^2 || ^3",
  246. "ext-tokenizer": "*",
  247. "php": "^7.2 || ^8.0",
  248. "psr/cache": "^1 || ^2 || ^3"
  249. },
  250. "require-dev": {
  251. "doctrine/cache": "^2.0",
  252. "doctrine/coding-standard": "^10",
  253. "phpstan/phpstan": "^1.8.0",
  254. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  255. "symfony/cache": "^5.4 || ^6",
  256. "vimeo/psalm": "^4.10"
  257. },
  258. "suggest": {
  259. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  260. },
  261. "type": "library",
  262. "autoload": {
  263. "psr-4": {
  264. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Guilherme Blanco",
  274. "email": "guilhermeblanco@gmail.com"
  275. },
  276. {
  277. "name": "Roman Borschel",
  278. "email": "roman@code-factory.org"
  279. },
  280. {
  281. "name": "Benjamin Eberlei",
  282. "email": "kontakt@beberlei.de"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "Docblock Annotations Parser",
  294. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  295. "keywords": [
  296. "annotations",
  297. "docblock",
  298. "parser"
  299. ],
  300. "support": {
  301. "issues": "https://github.com/doctrine/annotations/issues",
  302. "source": "https://github.com/doctrine/annotations/tree/2.0.1"
  303. },
  304. "time": "2023-02-02T22:02:53+00:00"
  305. },
  306. {
  307. "name": "doctrine/inflector",
  308. "version": "2.0.10",
  309. "source": {
  310. "type": "git",
  311. "url": "https://github.com/doctrine/inflector.git",
  312. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  313. },
  314. "dist": {
  315. "type": "zip",
  316. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  317. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  318. "shasum": ""
  319. },
  320. "require": {
  321. "php": "^7.2 || ^8.0"
  322. },
  323. "require-dev": {
  324. "doctrine/coding-standard": "^11.0",
  325. "phpstan/phpstan": "^1.8",
  326. "phpstan/phpstan-phpunit": "^1.1",
  327. "phpstan/phpstan-strict-rules": "^1.3",
  328. "phpunit/phpunit": "^8.5 || ^9.5",
  329. "vimeo/psalm": "^4.25 || ^5.4"
  330. },
  331. "type": "library",
  332. "autoload": {
  333. "psr-4": {
  334. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  335. }
  336. },
  337. "notification-url": "https://packagist.org/downloads/",
  338. "license": [
  339. "MIT"
  340. ],
  341. "authors": [
  342. {
  343. "name": "Guilherme Blanco",
  344. "email": "guilhermeblanco@gmail.com"
  345. },
  346. {
  347. "name": "Roman Borschel",
  348. "email": "roman@code-factory.org"
  349. },
  350. {
  351. "name": "Benjamin Eberlei",
  352. "email": "kontakt@beberlei.de"
  353. },
  354. {
  355. "name": "Jonathan Wage",
  356. "email": "jonwage@gmail.com"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  364. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  365. "keywords": [
  366. "inflection",
  367. "inflector",
  368. "lowercase",
  369. "manipulation",
  370. "php",
  371. "plural",
  372. "singular",
  373. "strings",
  374. "uppercase",
  375. "words"
  376. ],
  377. "support": {
  378. "issues": "https://github.com/doctrine/inflector/issues",
  379. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  380. },
  381. "funding": [
  382. {
  383. "url": "https://www.doctrine-project.org/sponsorship.html",
  384. "type": "custom"
  385. },
  386. {
  387. "url": "https://www.patreon.com/phpdoctrine",
  388. "type": "patreon"
  389. },
  390. {
  391. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  392. "type": "tidelift"
  393. }
  394. ],
  395. "time": "2024-02-18T20:23:39+00:00"
  396. },
  397. {
  398. "name": "doctrine/instantiator",
  399. "version": "1.5.0",
  400. "source": {
  401. "type": "git",
  402. "url": "https://github.com/doctrine/instantiator.git",
  403. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  404. },
  405. "dist": {
  406. "type": "zip",
  407. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  408. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  409. "shasum": ""
  410. },
  411. "require": {
  412. "php": "^7.1 || ^8.0"
  413. },
  414. "require-dev": {
  415. "doctrine/coding-standard": "^9 || ^11",
  416. "ext-pdo": "*",
  417. "ext-phar": "*",
  418. "phpbench/phpbench": "^0.16 || ^1",
  419. "phpstan/phpstan": "^1.4",
  420. "phpstan/phpstan-phpunit": "^1",
  421. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  422. "vimeo/psalm": "^4.30 || ^5.4"
  423. },
  424. "type": "library",
  425. "autoload": {
  426. "psr-4": {
  427. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "MIT"
  433. ],
  434. "authors": [
  435. {
  436. "name": "Marco Pivetta",
  437. "email": "ocramius@gmail.com",
  438. "homepage": "https://ocramius.github.io/"
  439. }
  440. ],
  441. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  442. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  443. "keywords": [
  444. "constructor",
  445. "instantiate"
  446. ],
  447. "support": {
  448. "issues": "https://github.com/doctrine/instantiator/issues",
  449. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  450. },
  451. "funding": [
  452. {
  453. "url": "https://www.doctrine-project.org/sponsorship.html",
  454. "type": "custom"
  455. },
  456. {
  457. "url": "https://www.patreon.com/phpdoctrine",
  458. "type": "patreon"
  459. },
  460. {
  461. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  462. "type": "tidelift"
  463. }
  464. ],
  465. "time": "2022-12-30T00:15:36+00:00"
  466. },
  467. {
  468. "name": "doctrine/lexer",
  469. "version": "3.0.1",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/doctrine/lexer.git",
  473. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  478. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  479. "shasum": ""
  480. },
  481. "require": {
  482. "php": "^8.1"
  483. },
  484. "require-dev": {
  485. "doctrine/coding-standard": "^12",
  486. "phpstan/phpstan": "^1.10",
  487. "phpunit/phpunit": "^10.5",
  488. "psalm/plugin-phpunit": "^0.18.3",
  489. "vimeo/psalm": "^5.21"
  490. },
  491. "type": "library",
  492. "autoload": {
  493. "psr-4": {
  494. "Doctrine\\Common\\Lexer\\": "src"
  495. }
  496. },
  497. "notification-url": "https://packagist.org/downloads/",
  498. "license": [
  499. "MIT"
  500. ],
  501. "authors": [
  502. {
  503. "name": "Guilherme Blanco",
  504. "email": "guilhermeblanco@gmail.com"
  505. },
  506. {
  507. "name": "Roman Borschel",
  508. "email": "roman@code-factory.org"
  509. },
  510. {
  511. "name": "Johannes Schmitt",
  512. "email": "schmittjoh@gmail.com"
  513. }
  514. ],
  515. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  516. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  517. "keywords": [
  518. "annotations",
  519. "docblock",
  520. "lexer",
  521. "parser",
  522. "php"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/doctrine/lexer/issues",
  526. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  527. },
  528. "funding": [
  529. {
  530. "url": "https://www.doctrine-project.org/sponsorship.html",
  531. "type": "custom"
  532. },
  533. {
  534. "url": "https://www.patreon.com/phpdoctrine",
  535. "type": "patreon"
  536. },
  537. {
  538. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  539. "type": "tidelift"
  540. }
  541. ],
  542. "time": "2024-02-05T11:56:58+00:00"
  543. },
  544. {
  545. "name": "fig/http-message-util",
  546. "version": "1.1.5",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/php-fig/http-message-util.git",
  550. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  555. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "php": "^5.3 || ^7.0 || ^8.0"
  560. },
  561. "suggest": {
  562. "psr/http-message": "The package containing the PSR-7 interfaces"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-master": "1.1.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Fig\\Http\\Message\\": "src/"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "PHP-FIG",
  582. "homepage": "https://www.php-fig.org/"
  583. }
  584. ],
  585. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  586. "keywords": [
  587. "http",
  588. "http-message",
  589. "psr",
  590. "psr-7",
  591. "request",
  592. "response"
  593. ],
  594. "support": {
  595. "issues": "https://github.com/php-fig/http-message-util/issues",
  596. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  597. },
  598. "time": "2020-11-24T22:02:12+00:00"
  599. },
  600. {
  601. "name": "graham-campbell/result-type",
  602. "version": "v1.1.2",
  603. "source": {
  604. "type": "git",
  605. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  606. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  607. },
  608. "dist": {
  609. "type": "zip",
  610. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  611. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  612. "shasum": ""
  613. },
  614. "require": {
  615. "php": "^7.2.5 || ^8.0",
  616. "phpoption/phpoption": "^1.9.2"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  620. },
  621. "type": "library",
  622. "autoload": {
  623. "psr-4": {
  624. "GrahamCampbell\\ResultType\\": "src/"
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "Graham Campbell",
  634. "email": "hello@gjcampbell.co.uk",
  635. "homepage": "https://github.com/GrahamCampbell"
  636. }
  637. ],
  638. "description": "An Implementation Of The Result Type",
  639. "keywords": [
  640. "Graham Campbell",
  641. "GrahamCampbell",
  642. "Result Type",
  643. "Result-Type",
  644. "result"
  645. ],
  646. "support": {
  647. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  648. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  649. },
  650. "funding": [
  651. {
  652. "url": "https://github.com/GrahamCampbell",
  653. "type": "github"
  654. },
  655. {
  656. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  657. "type": "tidelift"
  658. }
  659. ],
  660. "time": "2023-11-12T22:16:48+00:00"
  661. },
  662. {
  663. "name": "guzzlehttp/guzzle",
  664. "version": "7.8.1",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/guzzle/guzzle.git",
  668. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  673. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "ext-json": "*",
  678. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  679. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  680. "php": "^7.2.5 || ^8.0",
  681. "psr/http-client": "^1.0",
  682. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  683. },
  684. "provide": {
  685. "psr/http-client-implementation": "1.0"
  686. },
  687. "require-dev": {
  688. "bamarni/composer-bin-plugin": "^1.8.2",
  689. "ext-curl": "*",
  690. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  691. "php-http/message-factory": "^1.1",
  692. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  693. "psr/log": "^1.1 || ^2.0 || ^3.0"
  694. },
  695. "suggest": {
  696. "ext-curl": "Required for CURL handler support",
  697. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  698. "psr/log": "Required for using the Log middleware"
  699. },
  700. "type": "library",
  701. "extra": {
  702. "bamarni-bin": {
  703. "bin-links": true,
  704. "forward-command": false
  705. }
  706. },
  707. "autoload": {
  708. "files": [
  709. "src/functions_include.php"
  710. ],
  711. "psr-4": {
  712. "GuzzleHttp\\": "src/"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Graham Campbell",
  722. "email": "hello@gjcampbell.co.uk",
  723. "homepage": "https://github.com/GrahamCampbell"
  724. },
  725. {
  726. "name": "Michael Dowling",
  727. "email": "mtdowling@gmail.com",
  728. "homepage": "https://github.com/mtdowling"
  729. },
  730. {
  731. "name": "Jeremy Lindblom",
  732. "email": "jeremeamia@gmail.com",
  733. "homepage": "https://github.com/jeremeamia"
  734. },
  735. {
  736. "name": "George Mponos",
  737. "email": "gmponos@gmail.com",
  738. "homepage": "https://github.com/gmponos"
  739. },
  740. {
  741. "name": "Tobias Nyholm",
  742. "email": "tobias.nyholm@gmail.com",
  743. "homepage": "https://github.com/Nyholm"
  744. },
  745. {
  746. "name": "Márk Sági-Kazár",
  747. "email": "mark.sagikazar@gmail.com",
  748. "homepage": "https://github.com/sagikazarmark"
  749. },
  750. {
  751. "name": "Tobias Schultze",
  752. "email": "webmaster@tubo-world.de",
  753. "homepage": "https://github.com/Tobion"
  754. }
  755. ],
  756. "description": "Guzzle is a PHP HTTP client library",
  757. "keywords": [
  758. "client",
  759. "curl",
  760. "framework",
  761. "http",
  762. "http client",
  763. "psr-18",
  764. "psr-7",
  765. "rest",
  766. "web service"
  767. ],
  768. "support": {
  769. "issues": "https://github.com/guzzle/guzzle/issues",
  770. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  771. },
  772. "funding": [
  773. {
  774. "url": "https://github.com/GrahamCampbell",
  775. "type": "github"
  776. },
  777. {
  778. "url": "https://github.com/Nyholm",
  779. "type": "github"
  780. },
  781. {
  782. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  783. "type": "tidelift"
  784. }
  785. ],
  786. "time": "2023-12-03T20:35:24+00:00"
  787. },
  788. {
  789. "name": "guzzlehttp/promises",
  790. "version": "2.0.2",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/guzzle/promises.git",
  794. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  799. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "php": "^7.2.5 || ^8.0"
  804. },
  805. "require-dev": {
  806. "bamarni/composer-bin-plugin": "^1.8.2",
  807. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  808. },
  809. "type": "library",
  810. "extra": {
  811. "bamarni-bin": {
  812. "bin-links": true,
  813. "forward-command": false
  814. }
  815. },
  816. "autoload": {
  817. "psr-4": {
  818. "GuzzleHttp\\Promise\\": "src/"
  819. }
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "MIT"
  824. ],
  825. "authors": [
  826. {
  827. "name": "Graham Campbell",
  828. "email": "hello@gjcampbell.co.uk",
  829. "homepage": "https://github.com/GrahamCampbell"
  830. },
  831. {
  832. "name": "Michael Dowling",
  833. "email": "mtdowling@gmail.com",
  834. "homepage": "https://github.com/mtdowling"
  835. },
  836. {
  837. "name": "Tobias Nyholm",
  838. "email": "tobias.nyholm@gmail.com",
  839. "homepage": "https://github.com/Nyholm"
  840. },
  841. {
  842. "name": "Tobias Schultze",
  843. "email": "webmaster@tubo-world.de",
  844. "homepage": "https://github.com/Tobion"
  845. }
  846. ],
  847. "description": "Guzzle promises library",
  848. "keywords": [
  849. "promise"
  850. ],
  851. "support": {
  852. "issues": "https://github.com/guzzle/promises/issues",
  853. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  854. },
  855. "funding": [
  856. {
  857. "url": "https://github.com/GrahamCampbell",
  858. "type": "github"
  859. },
  860. {
  861. "url": "https://github.com/Nyholm",
  862. "type": "github"
  863. },
  864. {
  865. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  866. "type": "tidelift"
  867. }
  868. ],
  869. "time": "2023-12-03T20:19:20+00:00"
  870. },
  871. {
  872. "name": "guzzlehttp/psr7",
  873. "version": "2.6.2",
  874. "source": {
  875. "type": "git",
  876. "url": "https://github.com/guzzle/psr7.git",
  877. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  882. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  883. "shasum": ""
  884. },
  885. "require": {
  886. "php": "^7.2.5 || ^8.0",
  887. "psr/http-factory": "^1.0",
  888. "psr/http-message": "^1.1 || ^2.0",
  889. "ralouphie/getallheaders": "^3.0"
  890. },
  891. "provide": {
  892. "psr/http-factory-implementation": "1.0",
  893. "psr/http-message-implementation": "1.0"
  894. },
  895. "require-dev": {
  896. "bamarni/composer-bin-plugin": "^1.8.2",
  897. "http-interop/http-factory-tests": "^0.9",
  898. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  899. },
  900. "suggest": {
  901. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  902. },
  903. "type": "library",
  904. "extra": {
  905. "bamarni-bin": {
  906. "bin-links": true,
  907. "forward-command": false
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "GuzzleHttp\\Psr7\\": "src/"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Graham Campbell",
  922. "email": "hello@gjcampbell.co.uk",
  923. "homepage": "https://github.com/GrahamCampbell"
  924. },
  925. {
  926. "name": "Michael Dowling",
  927. "email": "mtdowling@gmail.com",
  928. "homepage": "https://github.com/mtdowling"
  929. },
  930. {
  931. "name": "George Mponos",
  932. "email": "gmponos@gmail.com",
  933. "homepage": "https://github.com/gmponos"
  934. },
  935. {
  936. "name": "Tobias Nyholm",
  937. "email": "tobias.nyholm@gmail.com",
  938. "homepage": "https://github.com/Nyholm"
  939. },
  940. {
  941. "name": "Márk Sági-Kazár",
  942. "email": "mark.sagikazar@gmail.com",
  943. "homepage": "https://github.com/sagikazarmark"
  944. },
  945. {
  946. "name": "Tobias Schultze",
  947. "email": "webmaster@tubo-world.de",
  948. "homepage": "https://github.com/Tobion"
  949. },
  950. {
  951. "name": "Márk Sági-Kazár",
  952. "email": "mark.sagikazar@gmail.com",
  953. "homepage": "https://sagikazarmark.hu"
  954. }
  955. ],
  956. "description": "PSR-7 message implementation that also provides common utility methods",
  957. "keywords": [
  958. "http",
  959. "message",
  960. "psr-7",
  961. "request",
  962. "response",
  963. "stream",
  964. "uri",
  965. "url"
  966. ],
  967. "support": {
  968. "issues": "https://github.com/guzzle/psr7/issues",
  969. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  970. },
  971. "funding": [
  972. {
  973. "url": "https://github.com/GrahamCampbell",
  974. "type": "github"
  975. },
  976. {
  977. "url": "https://github.com/Nyholm",
  978. "type": "github"
  979. },
  980. {
  981. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  982. "type": "tidelift"
  983. }
  984. ],
  985. "time": "2023-12-03T20:05:35+00:00"
  986. },
  987. {
  988. "name": "hyperf/cache",
  989. "version": "v3.1.23",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/hyperf/cache.git",
  993. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  998. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  999. "shasum": ""
  1000. },
  1001. "require": {
  1002. "hyperf/codec": "~3.1.0",
  1003. "hyperf/collection": "~3.1.0",
  1004. "hyperf/contract": "~3.1.0",
  1005. "hyperf/support": "~3.1.0",
  1006. "hyperf/utils": "~3.1.0",
  1007. "php": ">=8.1",
  1008. "psr/container": "^1.0|^2.0",
  1009. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1010. },
  1011. "suggest": {
  1012. "hyperf/di": "Use cache annotations.",
  1013. "hyperf/event": "Use listener to delete annotation cache."
  1014. },
  1015. "type": "library",
  1016. "extra": {
  1017. "branch-alias": {
  1018. "dev-master": "3.1-dev"
  1019. },
  1020. "hyperf": {
  1021. "config": "Hyperf\\Cache\\ConfigProvider"
  1022. }
  1023. },
  1024. "autoload": {
  1025. "psr-4": {
  1026. "Hyperf\\Cache\\": "src/"
  1027. }
  1028. },
  1029. "notification-url": "https://packagist.org/downloads/",
  1030. "license": [
  1031. "MIT"
  1032. ],
  1033. "description": "A cache component for hyperf.",
  1034. "homepage": "https://hyperf.io",
  1035. "keywords": [
  1036. "cache",
  1037. "hyperf",
  1038. "php"
  1039. ],
  1040. "support": {
  1041. "docs": "https://hyperf.wiki",
  1042. "issues": "https://github.com/hyperf/hyperf/issues",
  1043. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1044. "source": "https://github.com/hyperf/hyperf"
  1045. },
  1046. "funding": [
  1047. {
  1048. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1049. "type": "custom"
  1050. },
  1051. {
  1052. "url": "https://opencollective.com/hyperf",
  1053. "type": "open_collective"
  1054. }
  1055. ],
  1056. "time": "2024-05-23T03:43:58+00:00"
  1057. },
  1058. {
  1059. "name": "hyperf/code-parser",
  1060. "version": "v3.1.15",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/hyperf/code-parser.git",
  1064. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1069. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1070. "shasum": ""
  1071. },
  1072. "require": {
  1073. "hyperf/collection": "~3.1.0",
  1074. "hyperf/stringable": "~3.1.0",
  1075. "hyperf/support": "~3.1.0",
  1076. "php": ">=8.1"
  1077. },
  1078. "suggest": {
  1079. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1080. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-master": "3.1-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "Hyperf\\CodeParser\\": "src/"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "description": "A code parser component for Hyperf.",
  1098. "homepage": "https://hyperf.io",
  1099. "keywords": [
  1100. "code-parser",
  1101. "hyperf",
  1102. "php",
  1103. "swoole"
  1104. ],
  1105. "support": {
  1106. "docs": "https://hyperf.wiki",
  1107. "issues": "https://github.com/hyperf/hyperf/issues",
  1108. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1109. "source": "https://github.com/hyperf/hyperf"
  1110. },
  1111. "funding": [
  1112. {
  1113. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1114. "type": "custom"
  1115. },
  1116. {
  1117. "url": "https://opencollective.com/hyperf",
  1118. "type": "open_collective"
  1119. }
  1120. ],
  1121. "time": "2024-03-23T11:28:51+00:00"
  1122. },
  1123. {
  1124. "name": "hyperf/codec",
  1125. "version": "v3.1.15",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/hyperf/codec.git",
  1129. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1134. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1135. "shasum": ""
  1136. },
  1137. "require": {
  1138. "ext-json": "*",
  1139. "ext-xml": "*",
  1140. "hyperf/contract": "~3.1.0",
  1141. "php": ">=8.1"
  1142. },
  1143. "suggest": {
  1144. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "branch-alias": {
  1149. "dev-master": "3.1-dev"
  1150. }
  1151. },
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Hyperf\\Codec\\": "src/"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "description": "A codec component for Hyperf.",
  1162. "homepage": "https://hyperf.io",
  1163. "keywords": [
  1164. "codec",
  1165. "hyperf",
  1166. "php",
  1167. "swoole"
  1168. ],
  1169. "support": {
  1170. "docs": "https://hyperf.wiki",
  1171. "issues": "https://github.com/hyperf/hyperf/issues",
  1172. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1173. "source": "https://github.com/hyperf/hyperf"
  1174. },
  1175. "funding": [
  1176. {
  1177. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1178. "type": "custom"
  1179. },
  1180. {
  1181. "url": "https://opencollective.com/hyperf",
  1182. "type": "open_collective"
  1183. }
  1184. ],
  1185. "time": "2024-03-23T11:28:51+00:00"
  1186. },
  1187. {
  1188. "name": "hyperf/collection",
  1189. "version": "v3.1.23.2",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/hyperf/collection.git",
  1193. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/hyperf/collection/zipball/8d10ca88228ee47c9cee578ac3699e795f468ada",
  1198. "reference": "8d10ca88228ee47c9cee578ac3699e795f468ada",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "hyperf/conditionable": "~3.1.0",
  1203. "hyperf/contract": "~3.1.0",
  1204. "hyperf/macroable": "~3.1.0",
  1205. "hyperf/stringable": "~3.1.0",
  1206. "php": ">=8.1"
  1207. },
  1208. "type": "library",
  1209. "extra": {
  1210. "branch-alias": {
  1211. "dev-master": "3.1-dev"
  1212. }
  1213. },
  1214. "autoload": {
  1215. "files": [
  1216. "src/Functions.php"
  1217. ],
  1218. "psr-4": {
  1219. "Hyperf\\Collection\\": "src/"
  1220. }
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "description": "Hyperf Collection package which come from illuminate/collections",
  1227. "homepage": "https://hyperf.io",
  1228. "keywords": [
  1229. "collection",
  1230. "hyperf",
  1231. "php",
  1232. "swoole"
  1233. ],
  1234. "support": {
  1235. "docs": "https://hyperf.wiki",
  1236. "issues": "https://github.com/hyperf/hyperf/issues",
  1237. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1238. "source": "https://github.com/hyperf/hyperf"
  1239. },
  1240. "funding": [
  1241. {
  1242. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1243. "type": "custom"
  1244. },
  1245. {
  1246. "url": "https://opencollective.com/hyperf",
  1247. "type": "open_collective"
  1248. }
  1249. ],
  1250. "time": "2024-05-24T08:33:42+00:00"
  1251. },
  1252. {
  1253. "name": "hyperf/command",
  1254. "version": "v3.1.24",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/hyperf/command.git",
  1258. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/hyperf/command/zipball/b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1263. "reference": "b1ca85876f35f85fe3f52b0cc75bcc3da418769d",
  1264. "shasum": ""
  1265. },
  1266. "require": {
  1267. "hyperf/collection": "~3.1.0",
  1268. "hyperf/context": "~3.1.0",
  1269. "hyperf/contract": "~3.1.0",
  1270. "hyperf/coroutine": "~3.1.0",
  1271. "hyperf/di": "~3.1.0",
  1272. "hyperf/stringable": "~3.1.0",
  1273. "hyperf/support": "~3.1.0",
  1274. "hyperf/tappable": "~3.1.0",
  1275. "php": ">=8.1",
  1276. "psr/event-dispatcher": "^1.0",
  1277. "symfony/console": "^5.0|^6.0|^7.0"
  1278. },
  1279. "suggest": {
  1280. "hyperf/di": "Required to use annotations.",
  1281. "hyperf/event": "Required to use listeners."
  1282. },
  1283. "type": "library",
  1284. "extra": {
  1285. "branch-alias": {
  1286. "dev-master": "3.1-dev"
  1287. },
  1288. "hyperf": {
  1289. "config": "Hyperf\\Command\\ConfigProvider"
  1290. }
  1291. },
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Hyperf\\Command\\": "src/"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "description": "Command for hyperf",
  1302. "keywords": [
  1303. "command",
  1304. "php",
  1305. "swoole"
  1306. ],
  1307. "support": {
  1308. "issues": "https://github.com/hyperf/command/issues",
  1309. "source": "https://github.com/hyperf/command/tree/v3.1.24"
  1310. },
  1311. "funding": [
  1312. {
  1313. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1314. "type": "custom"
  1315. },
  1316. {
  1317. "url": "https://opencollective.com/hyperf",
  1318. "type": "open_collective"
  1319. }
  1320. ],
  1321. "time": "2024-05-27T12:37:07+00:00"
  1322. },
  1323. {
  1324. "name": "hyperf/conditionable",
  1325. "version": "v3.1.15",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://github.com/hyperf/conditionable.git",
  1329. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1330. },
  1331. "dist": {
  1332. "type": "zip",
  1333. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1334. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1335. "shasum": ""
  1336. },
  1337. "require": {
  1338. "php": ">=8.1"
  1339. },
  1340. "type": "library",
  1341. "extra": {
  1342. "branch-alias": {
  1343. "dev-master": "3.1-dev"
  1344. }
  1345. },
  1346. "autoload": {
  1347. "psr-4": {
  1348. "Hyperf\\Conditionable\\": "src/"
  1349. }
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1356. "homepage": "https://hyperf.io",
  1357. "keywords": [
  1358. "conditionable",
  1359. "hyperf",
  1360. "php",
  1361. "swoole"
  1362. ],
  1363. "support": {
  1364. "docs": "https://hyperf.wiki",
  1365. "issues": "https://github.com/hyperf/hyperf/issues",
  1366. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1367. "source": "https://github.com/hyperf/hyperf"
  1368. },
  1369. "funding": [
  1370. {
  1371. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1372. "type": "custom"
  1373. },
  1374. {
  1375. "url": "https://opencollective.com/hyperf",
  1376. "type": "open_collective"
  1377. }
  1378. ],
  1379. "time": "2024-03-23T11:28:51+00:00"
  1380. },
  1381. {
  1382. "name": "hyperf/config",
  1383. "version": "v3.1.15",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/hyperf/config.git",
  1387. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1392. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1393. "shasum": ""
  1394. },
  1395. "require": {
  1396. "hyperf/collection": "~3.1.0",
  1397. "hyperf/contract": "~3.1.0",
  1398. "hyperf/support": "~3.1.0",
  1399. "php": ">=8.1",
  1400. "psr/container": "^1.0|^2.0",
  1401. "symfony/finder": "^5.0|^6.0|^7.0"
  1402. },
  1403. "suggest": {
  1404. "hyperf/context": "Required to use config()",
  1405. "hyperf/di": "Allows using @Value annotation",
  1406. "hyperf/event": "Allows using @Value annotation",
  1407. "hyperf/framework": "Allows using @Value annotation",
  1408. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-master": "3.1-dev"
  1414. },
  1415. "hyperf": {
  1416. "config": "Hyperf\\Config\\ConfigProvider"
  1417. }
  1418. },
  1419. "autoload": {
  1420. "files": [
  1421. "./src/Functions.php"
  1422. ],
  1423. "psr-4": {
  1424. "Hyperf\\Config\\": "src/"
  1425. }
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "description": "An independent component that provides configuration container.",
  1432. "homepage": "https://hyperf.io",
  1433. "keywords": [
  1434. "config",
  1435. "configuration",
  1436. "hyperf",
  1437. "php",
  1438. "swoole"
  1439. ],
  1440. "support": {
  1441. "docs": "https://hyperf.wiki",
  1442. "issues": "https://github.com/hyperf/hyperf/issues",
  1443. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1444. "source": "https://github.com/hyperf/hyperf"
  1445. },
  1446. "funding": [
  1447. {
  1448. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1449. "type": "custom"
  1450. },
  1451. {
  1452. "url": "https://opencollective.com/hyperf",
  1453. "type": "open_collective"
  1454. }
  1455. ],
  1456. "time": "2024-03-23T11:28:51+00:00"
  1457. },
  1458. {
  1459. "name": "hyperf/config-center",
  1460. "version": "v3.1.15",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/hyperf/config-center.git",
  1464. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1469. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "hyperf/support": "~3.1.0",
  1474. "php": ">=8.1"
  1475. },
  1476. "suggest": {
  1477. "hyperf/process": "^2.1"
  1478. },
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-master": "3.1-dev"
  1483. },
  1484. "hyperf": {
  1485. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1486. }
  1487. },
  1488. "autoload": {
  1489. "psr-4": {
  1490. "Hyperf\\ConfigCenter\\": "src/"
  1491. }
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "description": "The abstraction component of config center",
  1498. "homepage": "https://hyperf.io",
  1499. "keywords": [
  1500. "config-center",
  1501. "hyperf",
  1502. "php"
  1503. ],
  1504. "support": {
  1505. "docs": "https://hyperf.wiki",
  1506. "issues": "https://github.com/hyperf/hyperf/issues",
  1507. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1508. "source": "https://github.com/hyperf/hyperf"
  1509. },
  1510. "funding": [
  1511. {
  1512. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1513. "type": "custom"
  1514. },
  1515. {
  1516. "url": "https://opencollective.com/hyperf",
  1517. "type": "open_collective"
  1518. }
  1519. ],
  1520. "time": "2024-03-23T11:28:51+00:00"
  1521. },
  1522. {
  1523. "name": "hyperf/config-nacos",
  1524. "version": "v3.1.15",
  1525. "source": {
  1526. "type": "git",
  1527. "url": "https://github.com/hyperf/config-nacos.git",
  1528. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1529. },
  1530. "dist": {
  1531. "type": "zip",
  1532. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1533. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1534. "shasum": ""
  1535. },
  1536. "require": {
  1537. "hyperf/codec": "~3.1.0",
  1538. "hyperf/config-center": "~3.1.0",
  1539. "hyperf/contract": "~3.1.0",
  1540. "hyperf/guzzle": "~3.1.0",
  1541. "hyperf/nacos": "~3.1.0",
  1542. "hyperf/support": "~3.1.0",
  1543. "hyperf/utils": "~3.1.0",
  1544. "jetbrains/phpstorm-attributes": "^1.0",
  1545. "php": ">=8.1"
  1546. },
  1547. "suggest": {
  1548. "ext-json": "*",
  1549. "ext-simplexml": "*",
  1550. "ext-yaml": "*",
  1551. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1552. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1553. "hyperf/process": "Required to use processes. (~2.2.0)"
  1554. },
  1555. "type": "library",
  1556. "extra": {
  1557. "branch-alias": {
  1558. "dev-master": "3.1-dev"
  1559. },
  1560. "hyperf": {
  1561. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1562. }
  1563. },
  1564. "autoload": {
  1565. "psr-4": {
  1566. "Hyperf\\ConfigNacos\\": "src/"
  1567. }
  1568. },
  1569. "notification-url": "https://packagist.org/downloads/",
  1570. "license": [
  1571. "MIT"
  1572. ],
  1573. "description": "A nacos adapter for config center component.",
  1574. "homepage": "https://hyperf.io",
  1575. "keywords": [
  1576. "hyperf",
  1577. "nacos",
  1578. "php",
  1579. "swoole"
  1580. ],
  1581. "support": {
  1582. "docs": "https://hyperf.wiki",
  1583. "issues": "https://github.com/hyperf/hyperf/issues",
  1584. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1585. "source": "https://github.com/hyperf/hyperf"
  1586. },
  1587. "funding": [
  1588. {
  1589. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1590. "type": "custom"
  1591. },
  1592. {
  1593. "url": "https://opencollective.com/hyperf",
  1594. "type": "open_collective"
  1595. }
  1596. ],
  1597. "time": "2024-03-23T11:28:51+00:00"
  1598. },
  1599. {
  1600. "name": "hyperf/constants",
  1601. "version": "v3.1.16",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/hyperf/constants.git",
  1605. "reference": "55d46901660e4540195145d0e4066296cf0dc130"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/hyperf/constants/zipball/55d46901660e4540195145d0e4066296cf0dc130",
  1610. "reference": "55d46901660e4540195145d0e4066296cf0dc130",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "hyperf/di": "~3.1.0",
  1615. "hyperf/support": "~3.1.0",
  1616. "hyperf/utils": "~3.1.0",
  1617. "php": ">=8.1"
  1618. },
  1619. "suggest": {
  1620. "hyperf/translation": "Required to use translation."
  1621. },
  1622. "type": "library",
  1623. "extra": {
  1624. "branch-alias": {
  1625. "dev-master": "3.1-dev"
  1626. },
  1627. "hyperf": {
  1628. "config": "Hyperf\\Constants\\ConfigProvider"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-4": {
  1633. "Hyperf\\Constants\\": "src/"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "description": "A constants component for hyperf.",
  1641. "homepage": "https://hyperf.io",
  1642. "keywords": [
  1643. "constants",
  1644. "hyperf",
  1645. "php"
  1646. ],
  1647. "support": {
  1648. "docs": "https://hyperf.wiki",
  1649. "issues": "https://github.com/hyperf/hyperf/issues",
  1650. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1651. "source": "https://github.com/hyperf/hyperf"
  1652. },
  1653. "funding": [
  1654. {
  1655. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1656. "type": "custom"
  1657. },
  1658. {
  1659. "url": "https://opencollective.com/hyperf",
  1660. "type": "open_collective"
  1661. }
  1662. ],
  1663. "time": "2024-03-31T11:35:28+00:00"
  1664. },
  1665. {
  1666. "name": "hyperf/consul",
  1667. "version": "v3.1.22",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/hyperf/consul.git",
  1671. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1676. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1677. "shasum": ""
  1678. },
  1679. "require": {
  1680. "guzzlehttp/guzzle": "^6.3|^7.0",
  1681. "php": ">=8.1"
  1682. },
  1683. "require-dev": {
  1684. "hyperf/guzzle": "~3.1.0"
  1685. },
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-master": "3.1-dev"
  1690. },
  1691. "hyperf": {
  1692. "config": "Hyperf\\Consul\\ConfigProvider"
  1693. }
  1694. },
  1695. "autoload": {
  1696. "psr-4": {
  1697. "Hyperf\\Consul\\": "src/"
  1698. }
  1699. },
  1700. "notification-url": "https://packagist.org/downloads/",
  1701. "license": [
  1702. "MIT"
  1703. ],
  1704. "description": "A Consul Client for Hyperf.",
  1705. "homepage": "https://hyperf.io",
  1706. "keywords": [
  1707. "consul",
  1708. "consul-client",
  1709. "hyperf",
  1710. "php",
  1711. "swoole"
  1712. ],
  1713. "support": {
  1714. "docs": "https://hyperf.wiki",
  1715. "issues": "https://github.com/hyperf/hyperf/issues",
  1716. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1717. "source": "https://github.com/hyperf/hyperf"
  1718. },
  1719. "funding": [
  1720. {
  1721. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1722. "type": "custom"
  1723. },
  1724. {
  1725. "url": "https://opencollective.com/hyperf",
  1726. "type": "open_collective"
  1727. }
  1728. ],
  1729. "time": "2024-05-15T06:42:24+00:00"
  1730. },
  1731. {
  1732. "name": "hyperf/context",
  1733. "version": "v3.1.15",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://github.com/hyperf/context.git",
  1737. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1742. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1743. "shasum": ""
  1744. },
  1745. "require": {
  1746. "hyperf/engine": "^2.0",
  1747. "php": ">=8.1"
  1748. },
  1749. "suggest": {
  1750. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1751. },
  1752. "type": "library",
  1753. "extra": {
  1754. "branch-alias": {
  1755. "dev-master": "3.1-dev"
  1756. }
  1757. },
  1758. "autoload": {
  1759. "psr-4": {
  1760. "Hyperf\\Context\\": "src/"
  1761. }
  1762. },
  1763. "notification-url": "https://packagist.org/downloads/",
  1764. "license": [
  1765. "MIT"
  1766. ],
  1767. "description": "A coroutine/application context library.",
  1768. "homepage": "https://hyperf.io",
  1769. "keywords": [
  1770. "Context",
  1771. "hyperf",
  1772. "php",
  1773. "swoole"
  1774. ],
  1775. "support": {
  1776. "docs": "https://hyperf.wiki",
  1777. "issues": "https://github.com/hyperf/hyperf/issues",
  1778. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1779. "source": "https://github.com/hyperf/hyperf"
  1780. },
  1781. "funding": [
  1782. {
  1783. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1784. "type": "custom"
  1785. },
  1786. {
  1787. "url": "https://opencollective.com/hyperf",
  1788. "type": "open_collective"
  1789. }
  1790. ],
  1791. "time": "2024-03-23T11:28:51+00:00"
  1792. },
  1793. {
  1794. "name": "hyperf/contract",
  1795. "version": "v3.1.15",
  1796. "source": {
  1797. "type": "git",
  1798. "url": "https://github.com/hyperf/contract.git",
  1799. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  1800. },
  1801. "dist": {
  1802. "type": "zip",
  1803. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1804. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  1805. "shasum": ""
  1806. },
  1807. "require": {
  1808. "php": ">=8.1"
  1809. },
  1810. "type": "library",
  1811. "extra": {
  1812. "branch-alias": {
  1813. "dev-master": "3.1-dev"
  1814. }
  1815. },
  1816. "autoload": {
  1817. "psr-4": {
  1818. "Hyperf\\Contract\\": "src/"
  1819. }
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "MIT"
  1824. ],
  1825. "description": "The contracts of Hyperf.",
  1826. "homepage": "https://hyperf.io",
  1827. "keywords": [
  1828. "hyperf",
  1829. "php",
  1830. "swoole"
  1831. ],
  1832. "support": {
  1833. "docs": "https://hyperf.wiki",
  1834. "issues": "https://github.com/hyperf/hyperf/issues",
  1835. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1836. "source": "https://github.com/hyperf/hyperf"
  1837. },
  1838. "funding": [
  1839. {
  1840. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1841. "type": "custom"
  1842. },
  1843. {
  1844. "url": "https://opencollective.com/hyperf",
  1845. "type": "open_collective"
  1846. }
  1847. ],
  1848. "time": "2024-03-23T11:28:51+00:00"
  1849. },
  1850. {
  1851. "name": "hyperf/coordinator",
  1852. "version": "v3.1.21",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/hyperf/coordinator.git",
  1856. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1861. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "hyperf/engine": "^2.0",
  1866. "php": ">=8.1"
  1867. },
  1868. "type": "library",
  1869. "extra": {
  1870. "branch-alias": {
  1871. "dev-master": "3.1-dev"
  1872. }
  1873. },
  1874. "autoload": {
  1875. "files": [
  1876. "src/Functions.php"
  1877. ],
  1878. "psr-4": {
  1879. "Hyperf\\Coordinator\\": "src/"
  1880. }
  1881. },
  1882. "notification-url": "https://packagist.org/downloads/",
  1883. "license": [
  1884. "MIT"
  1885. ],
  1886. "description": "Hyperf Coordinator",
  1887. "homepage": "https://hyperf.io",
  1888. "keywords": [
  1889. "Coordinator",
  1890. "hyperf",
  1891. "php",
  1892. "swoole"
  1893. ],
  1894. "support": {
  1895. "docs": "https://hyperf.wiki",
  1896. "issues": "https://github.com/hyperf/hyperf/issues",
  1897. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1898. "source": "https://github.com/hyperf/hyperf"
  1899. },
  1900. "funding": [
  1901. {
  1902. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1903. "type": "custom"
  1904. },
  1905. {
  1906. "url": "https://opencollective.com/hyperf",
  1907. "type": "open_collective"
  1908. }
  1909. ],
  1910. "time": "2024-05-09T02:35:08+00:00"
  1911. },
  1912. {
  1913. "name": "hyperf/coroutine",
  1914. "version": "v3.1.15",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/hyperf/coroutine.git",
  1918. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1923. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  1924. "shasum": ""
  1925. },
  1926. "require": {
  1927. "hyperf/context": "~3.1.0",
  1928. "hyperf/contract": "~3.1.0",
  1929. "hyperf/engine": "^2.0",
  1930. "php": ">=8.1"
  1931. },
  1932. "type": "library",
  1933. "extra": {
  1934. "branch-alias": {
  1935. "dev-master": "3.1-dev"
  1936. }
  1937. },
  1938. "autoload": {
  1939. "files": [
  1940. "src/Functions.php"
  1941. ],
  1942. "psr-4": {
  1943. "Hyperf\\Coroutine\\": "src/"
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "description": "Hyperf Coroutine",
  1951. "homepage": "https://hyperf.io",
  1952. "keywords": [
  1953. "coroutine",
  1954. "hyperf",
  1955. "php",
  1956. "swoole"
  1957. ],
  1958. "support": {
  1959. "docs": "https://hyperf.wiki",
  1960. "issues": "https://github.com/hyperf/hyperf/issues",
  1961. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1962. "source": "https://github.com/hyperf/hyperf"
  1963. },
  1964. "funding": [
  1965. {
  1966. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1967. "type": "custom"
  1968. },
  1969. {
  1970. "url": "https://opencollective.com/hyperf",
  1971. "type": "open_collective"
  1972. }
  1973. ],
  1974. "time": "2024-03-23T11:28:51+00:00"
  1975. },
  1976. {
  1977. "name": "hyperf/database",
  1978. "version": "v3.1.24",
  1979. "source": {
  1980. "type": "git",
  1981. "url": "https://github.com/hyperf/database.git",
  1982. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938"
  1983. },
  1984. "dist": {
  1985. "type": "zip",
  1986. "url": "https://api.github.com/repos/hyperf/database/zipball/9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1987. "reference": "9897c211ada78b0603f4249466f0c1b3e2d6d938",
  1988. "shasum": ""
  1989. },
  1990. "require": {
  1991. "hyperf/code-parser": "~3.1.0",
  1992. "hyperf/collection": "~3.1.0",
  1993. "hyperf/macroable": "~3.1.0",
  1994. "hyperf/support": "~3.1.0",
  1995. "hyperf/tappable": "~3.1.0",
  1996. "hyperf/utils": "~3.1.0",
  1997. "nesbot/carbon": "^2.0",
  1998. "php": ">=8.1",
  1999. "psr/container": "^1.0|^2.0",
  2000. "psr/event-dispatcher": "^1.0"
  2001. },
  2002. "suggest": {
  2003. "doctrine/dbal": "Required to rename columns (^3.0).",
  2004. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2005. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "3.1-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Hyperf\\Database\\": "src/"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "description": "A flexible database library.",
  2023. "homepage": "https://hyperf.io",
  2024. "keywords": [
  2025. "database",
  2026. "hyperf",
  2027. "php"
  2028. ],
  2029. "support": {
  2030. "docs": "https://hyperf.wiki",
  2031. "issues": "https://github.com/hyperf/hyperf/issues",
  2032. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2033. "source": "https://github.com/hyperf/hyperf"
  2034. },
  2035. "funding": [
  2036. {
  2037. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2038. "type": "custom"
  2039. },
  2040. {
  2041. "url": "https://opencollective.com/hyperf",
  2042. "type": "open_collective"
  2043. }
  2044. ],
  2045. "time": "2024-05-24T06:14:27+00:00"
  2046. },
  2047. {
  2048. "name": "hyperf/db-connection",
  2049. "version": "v3.1.15",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/hyperf/db-connection.git",
  2053. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2058. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "hyperf/database": "~3.1.0",
  2063. "hyperf/di": "~3.1.0",
  2064. "hyperf/framework": "~3.1.0",
  2065. "hyperf/model-listener": "~3.1.0",
  2066. "hyperf/pool": "~3.1.0",
  2067. "hyperf/support": "~3.1.0",
  2068. "hyperf/utils": "~3.1.0",
  2069. "php": ">=8.1",
  2070. "psr/container": "^1.0|^2.0"
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "branch-alias": {
  2075. "dev-master": "3.1-dev"
  2076. },
  2077. "hyperf": {
  2078. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "Hyperf\\DbConnection\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "description": "A hyperf db connection handler for hyperf/database.",
  2091. "homepage": "https://hyperf.io",
  2092. "keywords": [
  2093. "Connection",
  2094. "database",
  2095. "hyperf",
  2096. "php"
  2097. ],
  2098. "support": {
  2099. "docs": "https://hyperf.wiki",
  2100. "issues": "https://github.com/hyperf/hyperf/issues",
  2101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2102. "source": "https://github.com/hyperf/hyperf"
  2103. },
  2104. "funding": [
  2105. {
  2106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2107. "type": "custom"
  2108. },
  2109. {
  2110. "url": "https://opencollective.com/hyperf",
  2111. "type": "open_collective"
  2112. }
  2113. ],
  2114. "time": "2024-03-23T11:28:51+00:00"
  2115. },
  2116. {
  2117. "name": "hyperf/di",
  2118. "version": "v3.1.28",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/hyperf/di.git",
  2122. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/hyperf/di/zipball/6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2127. "reference": "6ffef4c7ff0d59380fa1d894ec278054b87c17cb",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "doctrine/instantiator": "^1.0",
  2132. "hyperf/code-parser": "~3.1.0",
  2133. "hyperf/pipeline": "~3.1.0",
  2134. "hyperf/stdlib": "~3.1.0",
  2135. "hyperf/support": "~3.1.0",
  2136. "nikic/php-parser": "^4.1",
  2137. "php": ">=8.1",
  2138. "php-di/phpdoc-reader": "^2.2",
  2139. "psr/container": "^1.0 || ^2.0",
  2140. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2141. "vlucas/phpdotenv": "^5.0"
  2142. },
  2143. "suggest": {
  2144. "ext-pcntl": "Required to scan annotations.",
  2145. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2146. },
  2147. "type": "library",
  2148. "extra": {
  2149. "branch-alias": {
  2150. "dev-master": "3.1-dev"
  2151. },
  2152. "hyperf": {
  2153. "config": "Hyperf\\Di\\ConfigProvider"
  2154. }
  2155. },
  2156. "autoload": {
  2157. "psr-4": {
  2158. "Hyperf\\Di\\": "src/"
  2159. }
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "description": "A DI for Hyperf.",
  2166. "homepage": "https://hyperf.io",
  2167. "keywords": [
  2168. "annotation",
  2169. "di",
  2170. "hyperf",
  2171. "php",
  2172. "swoole"
  2173. ],
  2174. "support": {
  2175. "docs": "https://hyperf.wiki",
  2176. "issues": "https://github.com/hyperf/hyperf/issues",
  2177. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2178. "source": "https://github.com/hyperf/hyperf"
  2179. },
  2180. "funding": [
  2181. {
  2182. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2183. "type": "custom"
  2184. },
  2185. {
  2186. "url": "https://opencollective.com/hyperf",
  2187. "type": "open_collective"
  2188. }
  2189. ],
  2190. "time": "2024-06-26T03:31:21+00:00"
  2191. },
  2192. {
  2193. "name": "hyperf/dispatcher",
  2194. "version": "v3.1.15",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/hyperf/dispatcher.git",
  2198. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2203. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "hyperf/contract": "~3.1.0",
  2208. "php": ">=8.1",
  2209. "psr/container": "^1.0|^2.0",
  2210. "psr/http-message": "^1.0|^2.0",
  2211. "psr/http-server-middleware": "^1.0"
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "3.1-dev"
  2217. },
  2218. "hyperf": {
  2219. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2220. }
  2221. },
  2222. "autoload": {
  2223. "psr-4": {
  2224. "Hyperf\\Dispatcher\\": "src/"
  2225. }
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "description": "A HTTP Server for Hyperf.",
  2232. "homepage": "https://hyperf.io",
  2233. "keywords": [
  2234. "dispatcher",
  2235. "filter",
  2236. "hyperf",
  2237. "middleware",
  2238. "php",
  2239. "swoole"
  2240. ],
  2241. "support": {
  2242. "docs": "https://hyperf.wiki",
  2243. "issues": "https://github.com/hyperf/hyperf/issues",
  2244. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2245. "source": "https://github.com/hyperf/hyperf"
  2246. },
  2247. "funding": [
  2248. {
  2249. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2250. "type": "custom"
  2251. },
  2252. {
  2253. "url": "https://opencollective.com/hyperf",
  2254. "type": "open_collective"
  2255. }
  2256. ],
  2257. "time": "2024-03-23T11:28:51+00:00"
  2258. },
  2259. {
  2260. "name": "hyperf/engine",
  2261. "version": "v2.11.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/hyperf/engine.git",
  2265. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2270. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "hyperf/engine-contract": "~1.10.0",
  2275. "php": ">=8.0"
  2276. },
  2277. "conflict": {
  2278. "ext-swoole": "<5.0"
  2279. },
  2280. "require-dev": {
  2281. "friendsofphp/php-cs-fixer": "^3.0",
  2282. "hyperf/guzzle": "^3.0",
  2283. "hyperf/http-message": "^3.0",
  2284. "mockery/mockery": "^1.5",
  2285. "phpstan/phpstan": "^1.0",
  2286. "phpunit/phpunit": "^9.4",
  2287. "swoole/ide-helper": "5.*"
  2288. },
  2289. "suggest": {
  2290. "ext-sockets": "*",
  2291. "ext-swoole": ">=5.0",
  2292. "hyperf/http-message": "Required to use ResponseEmitter.",
  2293. "psr/http-message": "Required to use WebSocket Frame."
  2294. },
  2295. "type": "library",
  2296. "extra": {
  2297. "branch-alias": {
  2298. "dev-master": "2.11-dev"
  2299. },
  2300. "hyperf": {
  2301. "config": "Hyperf\\Engine\\ConfigProvider"
  2302. }
  2303. },
  2304. "autoload": {
  2305. "files": [
  2306. "src/Functions.php"
  2307. ],
  2308. "psr-4": {
  2309. "Hyperf\\Engine\\": "src/"
  2310. }
  2311. },
  2312. "notification-url": "https://packagist.org/downloads/",
  2313. "license": [
  2314. "MIT"
  2315. ],
  2316. "description": "Coroutine engine provided by swoole.",
  2317. "keywords": [
  2318. "engine",
  2319. "hyperf",
  2320. "php",
  2321. "swoole"
  2322. ],
  2323. "support": {
  2324. "issues": "https://github.com/hyperf/engine/issues",
  2325. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2326. },
  2327. "funding": [
  2328. {
  2329. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2330. "type": "custom"
  2331. },
  2332. {
  2333. "url": "https://opencollective.com/hyperf",
  2334. "type": "open_collective"
  2335. }
  2336. ],
  2337. "time": "2024-04-17T13:36:28+00:00"
  2338. },
  2339. {
  2340. "name": "hyperf/engine-contract",
  2341. "version": "v1.10.1",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/hyperf/engine-contract.git",
  2345. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2350. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": ">=8.0"
  2355. },
  2356. "require-dev": {
  2357. "friendsofphp/php-cs-fixer": "^3.0",
  2358. "mockery/mockery": "^1.0",
  2359. "phpstan/phpstan": "^1.0",
  2360. "phpunit/phpunit": ">=7.0",
  2361. "psr/http-message": "^1.0",
  2362. "swoole/ide-helper": "^4.5"
  2363. },
  2364. "suggest": {
  2365. "psr/http-message": "Required to use WebSocket Frame."
  2366. },
  2367. "type": "library",
  2368. "extra": {
  2369. "branch-alias": {
  2370. "dev-master": "1.9-dev"
  2371. }
  2372. },
  2373. "autoload": {
  2374. "psr-4": {
  2375. "Hyperf\\Engine\\Contract\\": "src/"
  2376. }
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "description": "Contract for Coroutine Engine",
  2383. "keywords": [
  2384. "contract",
  2385. "coroutine",
  2386. "engine",
  2387. "hyperf",
  2388. "php"
  2389. ],
  2390. "support": {
  2391. "issues": "https://github.com/hyperf/engine-contract/issues",
  2392. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2393. },
  2394. "funding": [
  2395. {
  2396. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2397. "type": "custom"
  2398. },
  2399. {
  2400. "url": "https://opencollective.com/hyperf",
  2401. "type": "open_collective"
  2402. }
  2403. ],
  2404. "time": "2024-04-17T13:34:51+00:00"
  2405. },
  2406. {
  2407. "name": "hyperf/event",
  2408. "version": "v3.1.15",
  2409. "source": {
  2410. "type": "git",
  2411. "url": "https://github.com/hyperf/event.git",
  2412. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2413. },
  2414. "dist": {
  2415. "type": "zip",
  2416. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2417. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2418. "shasum": ""
  2419. },
  2420. "require": {
  2421. "hyperf/contract": "~3.1.0",
  2422. "hyperf/stdlib": "~3.1.0",
  2423. "php": ">=8.1",
  2424. "psr/event-dispatcher": "^1.0"
  2425. },
  2426. "suggest": {
  2427. "hyperf/di": "Required to use annotatioins."
  2428. },
  2429. "type": "library",
  2430. "extra": {
  2431. "branch-alias": {
  2432. "dev-master": "3.1-dev"
  2433. },
  2434. "hyperf": {
  2435. "config": "Hyperf\\Event\\ConfigProvider"
  2436. }
  2437. },
  2438. "autoload": {
  2439. "psr-4": {
  2440. "Hyperf\\Event\\": "src/"
  2441. }
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "description": "an event manager that implements PSR-14.",
  2448. "homepage": "https://hyperf.io",
  2449. "keywords": [
  2450. "event",
  2451. "hyperf",
  2452. "php",
  2453. "swoole"
  2454. ],
  2455. "support": {
  2456. "docs": "https://hyperf.wiki",
  2457. "issues": "https://github.com/hyperf/hyperf/issues",
  2458. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2459. "source": "https://github.com/hyperf/hyperf"
  2460. },
  2461. "funding": [
  2462. {
  2463. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2464. "type": "custom"
  2465. },
  2466. {
  2467. "url": "https://opencollective.com/hyperf",
  2468. "type": "open_collective"
  2469. }
  2470. ],
  2471. "time": "2024-03-23T11:28:51+00:00"
  2472. },
  2473. {
  2474. "name": "hyperf/exception-handler",
  2475. "version": "v3.1.22",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/hyperf/exception-handler.git",
  2479. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2484. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2485. "shasum": ""
  2486. },
  2487. "require": {
  2488. "hyperf/context": "~3.1.0",
  2489. "hyperf/contract": "~3.1.0",
  2490. "hyperf/dispatcher": "~3.1.0",
  2491. "hyperf/http-message": "~3.1.0",
  2492. "hyperf/stdlib": "~3.1.0",
  2493. "hyperf/support": "~3.1.0",
  2494. "php": ">=8.1",
  2495. "psr/container": "^1.0|^2.0",
  2496. "psr/http-message": "^1.0|^2.0",
  2497. "swow/psr7-plus": "^1.0"
  2498. },
  2499. "suggest": {
  2500. "hyperf/di": "Required to use #[ExceptionHandler]",
  2501. "hyperf/event": "Required to use listeners",
  2502. "hyperf/framework": "Required to use listeners",
  2503. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2504. },
  2505. "type": "library",
  2506. "extra": {
  2507. "branch-alias": {
  2508. "dev-master": "3.1-dev"
  2509. },
  2510. "hyperf": {
  2511. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2512. }
  2513. },
  2514. "autoload": {
  2515. "psr-4": {
  2516. "Hyperf\\ExceptionHandler\\": "src/"
  2517. }
  2518. },
  2519. "notification-url": "https://packagist.org/downloads/",
  2520. "license": [
  2521. "MIT"
  2522. ],
  2523. "description": "Exception handler for hyperf",
  2524. "homepage": "https://hyperf.io",
  2525. "keywords": [
  2526. "exception-handler",
  2527. "php",
  2528. "swoole"
  2529. ],
  2530. "support": {
  2531. "docs": "https://hyperf.wiki",
  2532. "issues": "https://github.com/hyperf/hyperf/issues",
  2533. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2534. "source": "https://github.com/hyperf/hyperf"
  2535. },
  2536. "funding": [
  2537. {
  2538. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2539. "type": "custom"
  2540. },
  2541. {
  2542. "url": "https://opencollective.com/hyperf",
  2543. "type": "open_collective"
  2544. }
  2545. ],
  2546. "time": "2024-05-15T07:12:41+00:00"
  2547. },
  2548. {
  2549. "name": "hyperf/framework",
  2550. "version": "v3.1.23",
  2551. "source": {
  2552. "type": "git",
  2553. "url": "https://github.com/hyperf/framework.git",
  2554. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2555. },
  2556. "dist": {
  2557. "type": "zip",
  2558. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2559. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2560. "shasum": ""
  2561. },
  2562. "require": {
  2563. "fig/http-message-util": "^1.1.2",
  2564. "hyperf/contract": "~3.1.0",
  2565. "hyperf/coordinator": "~3.1.0",
  2566. "hyperf/coroutine": "~3.1.0",
  2567. "php": ">=8.1",
  2568. "psr/container": "^1.0|^2.0",
  2569. "psr/event-dispatcher": "^1.0",
  2570. "psr/log": "^1.0|^2.0|^3.0"
  2571. },
  2572. "suggest": {
  2573. "ext-swoole": "Required to use swoole engine.",
  2574. "hyperf/command": "Required to use Command annotation.",
  2575. "hyperf/di": "Required to use Command annotation.",
  2576. "hyperf/dispatcher": "Required to use BootApplication event.",
  2577. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2578. },
  2579. "type": "library",
  2580. "extra": {
  2581. "branch-alias": {
  2582. "dev-master": "3.1-dev"
  2583. },
  2584. "hyperf": {
  2585. "config": "Hyperf\\Framework\\ConfigProvider"
  2586. }
  2587. },
  2588. "autoload": {
  2589. "psr-4": {
  2590. "Hyperf\\Framework\\": "src/"
  2591. }
  2592. },
  2593. "notification-url": "https://packagist.org/downloads/",
  2594. "license": [
  2595. "MIT"
  2596. ],
  2597. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2598. "homepage": "https://hyperf.io",
  2599. "keywords": [
  2600. "Microservice",
  2601. "framework",
  2602. "hyperf",
  2603. "middleware",
  2604. "php",
  2605. "swoole"
  2606. ],
  2607. "support": {
  2608. "docs": "https://hyperf.wiki",
  2609. "issues": "https://github.com/hyperf/hyperf/issues",
  2610. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2611. "source": "https://github.com/hyperf/hyperf"
  2612. },
  2613. "funding": [
  2614. {
  2615. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2616. "type": "custom"
  2617. },
  2618. {
  2619. "url": "https://opencollective.com/hyperf",
  2620. "type": "open_collective"
  2621. }
  2622. ],
  2623. "time": "2024-05-21T05:43:48+00:00"
  2624. },
  2625. {
  2626. "name": "hyperf/guzzle",
  2627. "version": "v3.1.15",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/hyperf/guzzle.git",
  2631. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2636. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2637. "shasum": ""
  2638. },
  2639. "require": {
  2640. "guzzlehttp/guzzle": "^6.3|^7.0",
  2641. "php": ">=8.1",
  2642. "psr/container": "^1.0|^2.0",
  2643. "psr/http-message": "^1.0|^2.0"
  2644. },
  2645. "suggest": {
  2646. "ext-curl": "Required for CURL handler support",
  2647. "hyperf/pool": "Required to use pool handler."
  2648. },
  2649. "type": "library",
  2650. "extra": {
  2651. "branch-alias": {
  2652. "dev-master": "3.1-dev"
  2653. },
  2654. "hyperf": {
  2655. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2656. }
  2657. },
  2658. "autoload": {
  2659. "psr-4": {
  2660. "Hyperf\\Guzzle\\": "src/"
  2661. }
  2662. },
  2663. "notification-url": "https://packagist.org/downloads/",
  2664. "license": [
  2665. "MIT"
  2666. ],
  2667. "description": "Swoole coroutine handler for guzzle",
  2668. "keywords": [
  2669. "Guzzle",
  2670. "handler",
  2671. "php",
  2672. "swoole"
  2673. ],
  2674. "support": {
  2675. "issues": "https://github.com/hyperf/guzzle/issues",
  2676. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2677. },
  2678. "funding": [
  2679. {
  2680. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2681. "type": "custom"
  2682. },
  2683. {
  2684. "url": "https://opencollective.com/hyperf",
  2685. "type": "open_collective"
  2686. }
  2687. ],
  2688. "time": "2024-03-23T11:28:51+00:00"
  2689. },
  2690. {
  2691. "name": "hyperf/http-message",
  2692. "version": "v3.1.19",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://github.com/hyperf/http-message.git",
  2696. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://api.github.com/repos/hyperf/http-message/zipball/f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2701. "reference": "f96e372203bd6109bc1f6c15ee8eee3a76c8f92e",
  2702. "shasum": ""
  2703. },
  2704. "require": {
  2705. "hyperf/codec": "~3.1.0",
  2706. "hyperf/engine": "^2.11",
  2707. "hyperf/support": "~3.1.0",
  2708. "laminas/laminas-mime": "^2.7",
  2709. "php": ">=8.1",
  2710. "psr/http-message": "^1.0|^2.0",
  2711. "swow/psr7-plus": "^1.0"
  2712. },
  2713. "suggest": {
  2714. "psr/container": "Required to replace RequestParserInterface."
  2715. },
  2716. "type": "library",
  2717. "extra": {
  2718. "branch-alias": {
  2719. "dev-master": "3.1-dev"
  2720. },
  2721. "hyperf": {
  2722. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2723. }
  2724. },
  2725. "autoload": {
  2726. "psr-4": {
  2727. "Hyperf\\HttpMessage\\": "src/"
  2728. }
  2729. },
  2730. "notification-url": "https://packagist.org/downloads/",
  2731. "license": [
  2732. "MIT"
  2733. ],
  2734. "description": "microservice framework base on swoole",
  2735. "keywords": [
  2736. "http-message",
  2737. "hyperf",
  2738. "php",
  2739. "swoole"
  2740. ],
  2741. "support": {
  2742. "issues": "https://github.com/hyperf/http-message/issues",
  2743. "source": "https://github.com/hyperf/http-message/tree/v3.1.19"
  2744. },
  2745. "funding": [
  2746. {
  2747. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2748. "type": "custom"
  2749. },
  2750. {
  2751. "url": "https://opencollective.com/hyperf",
  2752. "type": "open_collective"
  2753. }
  2754. ],
  2755. "time": "2024-04-17T13:55:51+00:00"
  2756. },
  2757. {
  2758. "name": "hyperf/http-server",
  2759. "version": "v3.1.17",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/hyperf/http-server.git",
  2763. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2768. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "hyperf/codec": "~3.1.0",
  2773. "hyperf/collection": "~3.1.0",
  2774. "hyperf/context": "~3.1.0",
  2775. "hyperf/contract": "~3.1.0",
  2776. "hyperf/coroutine": "~3.1.0",
  2777. "hyperf/dispatcher": "~3.1.0",
  2778. "hyperf/event": "~3.1.0",
  2779. "hyperf/exception-handler": "~3.1.0",
  2780. "hyperf/http-message": "~3.1.0",
  2781. "hyperf/macroable": "~3.1.0",
  2782. "hyperf/serializer": "~3.1.0",
  2783. "hyperf/server": "~3.1.0",
  2784. "hyperf/stdlib": "~3.1.0",
  2785. "hyperf/support": "~3.1.0",
  2786. "nikic/fast-route": "^1.3",
  2787. "php": ">=8.1",
  2788. "psr/container": "^1.0|^2.0",
  2789. "swow/psr7-plus": "^1.0"
  2790. },
  2791. "suggest": {
  2792. "hyperf/di": "Required to use annotations."
  2793. },
  2794. "type": "library",
  2795. "extra": {
  2796. "branch-alias": {
  2797. "dev-master": "3.1-dev"
  2798. },
  2799. "hyperf": {
  2800. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "psr-4": {
  2805. "Hyperf\\HttpServer\\": "src/"
  2806. }
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "MIT"
  2811. ],
  2812. "description": "A HTTP Server for Hyperf.",
  2813. "homepage": "https://hyperf.io",
  2814. "keywords": [
  2815. "http",
  2816. "http-server",
  2817. "hyperf",
  2818. "php",
  2819. "swoole"
  2820. ],
  2821. "support": {
  2822. "docs": "https://hyperf.wiki",
  2823. "issues": "https://github.com/hyperf/hyperf/issues",
  2824. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2825. "source": "https://github.com/hyperf/hyperf"
  2826. },
  2827. "funding": [
  2828. {
  2829. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2830. "type": "custom"
  2831. },
  2832. {
  2833. "url": "https://opencollective.com/hyperf",
  2834. "type": "open_collective"
  2835. }
  2836. ],
  2837. "time": "2024-04-08T07:53:54+00:00"
  2838. },
  2839. {
  2840. "name": "hyperf/json-rpc",
  2841. "version": "v3.1.23",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://github.com/hyperf/json-rpc.git",
  2845. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2850. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  2851. "shasum": ""
  2852. },
  2853. "require": {
  2854. "hyperf/codec": "~3.1.0",
  2855. "hyperf/context": "~3.1.0",
  2856. "hyperf/contract": "~3.1.0",
  2857. "hyperf/engine": "^2.0",
  2858. "hyperf/http-message": "~3.1.0",
  2859. "hyperf/load-balancer": "~3.1.0",
  2860. "hyperf/rpc": "~3.1.0",
  2861. "hyperf/serializer": "~3.1.0",
  2862. "hyperf/support": "~3.1.0",
  2863. "hyperf/utils": "~3.1.0",
  2864. "php": ">=8.1",
  2865. "psr/container": "^1.0|^2.0",
  2866. "swow/psr7-plus": "^1.0"
  2867. },
  2868. "suggest": {
  2869. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2870. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2871. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2872. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2873. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2874. },
  2875. "type": "library",
  2876. "extra": {
  2877. "branch-alias": {
  2878. "dev-master": "3.1-dev"
  2879. },
  2880. "hyperf": {
  2881. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2882. }
  2883. },
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Hyperf\\JsonRpc\\": "src/"
  2887. }
  2888. },
  2889. "notification-url": "https://packagist.org/downloads/",
  2890. "license": [
  2891. "MIT"
  2892. ],
  2893. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2894. "homepage": "https://hyperf.io",
  2895. "keywords": [
  2896. "hyperf",
  2897. "json-rpc",
  2898. "php",
  2899. "swoole"
  2900. ],
  2901. "support": {
  2902. "docs": "https://hyperf.wiki",
  2903. "issues": "https://github.com/hyperf/hyperf/issues",
  2904. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2905. "source": "https://github.com/hyperf/hyperf"
  2906. },
  2907. "funding": [
  2908. {
  2909. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2910. "type": "custom"
  2911. },
  2912. {
  2913. "url": "https://opencollective.com/hyperf",
  2914. "type": "open_collective"
  2915. }
  2916. ],
  2917. "time": "2024-05-23T03:43:58+00:00"
  2918. },
  2919. {
  2920. "name": "hyperf/load-balancer",
  2921. "version": "v3.1.15",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/hyperf/load-balancer.git",
  2925. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2930. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "hyperf/coordinator": "~3.1.0",
  2935. "hyperf/coroutine": "~3.1.0",
  2936. "markrogoyski/math-php": "^2.0",
  2937. "php": ">=8.1",
  2938. "psr/log": "^1.0|^2.0|^3.0"
  2939. },
  2940. "type": "library",
  2941. "extra": {
  2942. "branch-alias": {
  2943. "dev-master": "3.1-dev"
  2944. },
  2945. "hyperf": {
  2946. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "Hyperf\\LoadBalancer\\": "src/"
  2952. }
  2953. },
  2954. "notification-url": "https://packagist.org/downloads/",
  2955. "license": [
  2956. "MIT"
  2957. ],
  2958. "description": "A load balancer library for Hyperf.",
  2959. "homepage": "https://hyperf.io",
  2960. "keywords": [
  2961. "hyperf",
  2962. "load-balancer",
  2963. "php",
  2964. "swoole"
  2965. ],
  2966. "support": {
  2967. "docs": "https://hyperf.wiki",
  2968. "issues": "https://github.com/hyperf/hyperf/issues",
  2969. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2970. "source": "https://github.com/hyperf/hyperf"
  2971. },
  2972. "funding": [
  2973. {
  2974. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2975. "type": "custom"
  2976. },
  2977. {
  2978. "url": "https://opencollective.com/hyperf",
  2979. "type": "open_collective"
  2980. }
  2981. ],
  2982. "time": "2024-03-23T11:28:51+00:00"
  2983. },
  2984. {
  2985. "name": "hyperf/logger",
  2986. "version": "v3.1.15",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/hyperf/logger.git",
  2990. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  2995. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "hyperf/contract": "~3.1.0",
  3000. "hyperf/support": "~3.1.0",
  3001. "hyperf/utils": "~3.1.0",
  3002. "monolog/monolog": "^2.7|^3.1",
  3003. "php": ">=8.1",
  3004. "psr/container": "^1.0|^2.0",
  3005. "psr/log": "^1.0|^2.0|^3.0"
  3006. },
  3007. "type": "library",
  3008. "extra": {
  3009. "branch-alias": {
  3010. "dev-master": "3.1-dev"
  3011. },
  3012. "hyperf": {
  3013. "config": "Hyperf\\Logger\\ConfigProvider"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "Hyperf\\Logger\\": "src/"
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "description": "A logger component for hyperf.",
  3026. "homepage": "https://hyperf.io",
  3027. "keywords": [
  3028. "hyperf",
  3029. "logger",
  3030. "php"
  3031. ],
  3032. "support": {
  3033. "docs": "https://hyperf.wiki",
  3034. "issues": "https://github.com/hyperf/hyperf/issues",
  3035. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3036. "source": "https://github.com/hyperf/hyperf"
  3037. },
  3038. "funding": [
  3039. {
  3040. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3041. "type": "custom"
  3042. },
  3043. {
  3044. "url": "https://opencollective.com/hyperf",
  3045. "type": "open_collective"
  3046. }
  3047. ],
  3048. "time": "2024-03-23T11:28:51+00:00"
  3049. },
  3050. {
  3051. "name": "hyperf/macroable",
  3052. "version": "v3.1.23",
  3053. "source": {
  3054. "type": "git",
  3055. "url": "https://github.com/hyperf/macroable.git",
  3056. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3057. },
  3058. "dist": {
  3059. "type": "zip",
  3060. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3061. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3062. "shasum": ""
  3063. },
  3064. "require": {
  3065. "php": ">=8.1"
  3066. },
  3067. "type": "library",
  3068. "extra": {
  3069. "branch-alias": {
  3070. "dev-master": "3.1-dev"
  3071. }
  3072. },
  3073. "autoload": {
  3074. "psr-4": {
  3075. "Hyperf\\Macroable\\": "src/"
  3076. }
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3083. "homepage": "https://hyperf.io",
  3084. "keywords": [
  3085. "hyperf",
  3086. "macroable",
  3087. "php",
  3088. "swoole"
  3089. ],
  3090. "support": {
  3091. "docs": "https://hyperf.wiki",
  3092. "issues": "https://github.com/hyperf/hyperf/issues",
  3093. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3094. "source": "https://github.com/hyperf/hyperf"
  3095. },
  3096. "funding": [
  3097. {
  3098. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3099. "type": "custom"
  3100. },
  3101. {
  3102. "url": "https://opencollective.com/hyperf",
  3103. "type": "open_collective"
  3104. }
  3105. ],
  3106. "time": "2024-05-20T09:55:40+00:00"
  3107. },
  3108. {
  3109. "name": "hyperf/memory",
  3110. "version": "v3.1.15",
  3111. "source": {
  3112. "type": "git",
  3113. "url": "https://github.com/hyperf/memory.git",
  3114. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3115. },
  3116. "dist": {
  3117. "type": "zip",
  3118. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3119. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3120. "shasum": ""
  3121. },
  3122. "require": {
  3123. "php": ">=8.1"
  3124. },
  3125. "type": "library",
  3126. "extra": {
  3127. "branch-alias": {
  3128. "dev-master": "3.1-dev"
  3129. },
  3130. "hyperf": {
  3131. "config": "Hyperf\\Memory\\ConfigProvider"
  3132. }
  3133. },
  3134. "autoload": {
  3135. "psr-4": {
  3136. "Hyperf\\Memory\\": "src/"
  3137. }
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "description": "An independent component that use to operate and manage memory.",
  3144. "homepage": "https://hyperf.io",
  3145. "keywords": [
  3146. "hyperf",
  3147. "memory",
  3148. "php",
  3149. "swoole"
  3150. ],
  3151. "support": {
  3152. "docs": "https://hyperf.wiki",
  3153. "issues": "https://github.com/hyperf/hyperf/issues",
  3154. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3155. "source": "https://github.com/hyperf/hyperf"
  3156. },
  3157. "funding": [
  3158. {
  3159. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3160. "type": "custom"
  3161. },
  3162. {
  3163. "url": "https://opencollective.com/hyperf",
  3164. "type": "open_collective"
  3165. }
  3166. ],
  3167. "time": "2024-03-23T11:28:51+00:00"
  3168. },
  3169. {
  3170. "name": "hyperf/model-listener",
  3171. "version": "v3.1.15",
  3172. "source": {
  3173. "type": "git",
  3174. "url": "https://github.com/hyperf/model-listener.git",
  3175. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3176. },
  3177. "dist": {
  3178. "type": "zip",
  3179. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3180. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3181. "shasum": ""
  3182. },
  3183. "require": {
  3184. "hyperf/contract": "~3.1.0",
  3185. "hyperf/database": "~3.1.0",
  3186. "hyperf/di": "~3.1.0",
  3187. "hyperf/event": "~3.1.0",
  3188. "hyperf/support": "~3.1.0",
  3189. "hyperf/utils": "~3.1.0",
  3190. "php": ">=8.1",
  3191. "psr/container": "^1.0|^2.0"
  3192. },
  3193. "type": "library",
  3194. "extra": {
  3195. "branch-alias": {
  3196. "dev-master": "3.1-dev"
  3197. },
  3198. "hyperf": {
  3199. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3200. }
  3201. },
  3202. "autoload": {
  3203. "psr-4": {
  3204. "Hyperf\\ModelListener\\": "src/"
  3205. }
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "description": "A model listener for Hyperf.",
  3212. "homepage": "https://hyperf.io",
  3213. "keywords": [
  3214. "hyperf",
  3215. "model-listener",
  3216. "php",
  3217. "swoole"
  3218. ],
  3219. "support": {
  3220. "docs": "https://hyperf.wiki",
  3221. "issues": "https://github.com/hyperf/hyperf/issues",
  3222. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3223. "source": "https://github.com/hyperf/hyperf"
  3224. },
  3225. "funding": [
  3226. {
  3227. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3228. "type": "custom"
  3229. },
  3230. {
  3231. "url": "https://opencollective.com/hyperf",
  3232. "type": "open_collective"
  3233. }
  3234. ],
  3235. "time": "2024-03-23T11:28:51+00:00"
  3236. },
  3237. {
  3238. "name": "hyperf/nacos",
  3239. "version": "v3.1.15",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/hyperf/nacos.git",
  3243. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3248. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3249. "shasum": ""
  3250. },
  3251. "require": {
  3252. "guzzlehttp/guzzle": "^6.5|^7.0",
  3253. "hyperf/codec": "~3.1.0",
  3254. "hyperf/contract": "~3.1.0",
  3255. "hyperf/support": "~3.1.0",
  3256. "hyperf/utils": "~3.1.0",
  3257. "jetbrains/phpstorm-attributes": "^1.0",
  3258. "php": ">=8.1"
  3259. },
  3260. "type": "library",
  3261. "extra": {
  3262. "branch-alias": {
  3263. "dev-master": "3.1-dev"
  3264. },
  3265. "hyperf": {
  3266. "config": "Hyperf\\Nacos\\ConfigProvider"
  3267. }
  3268. },
  3269. "autoload": {
  3270. "psr-4": {
  3271. "Hyperf\\Nacos\\": "src/"
  3272. }
  3273. },
  3274. "notification-url": "https://packagist.org/downloads/",
  3275. "license": [
  3276. "MIT"
  3277. ],
  3278. "description": "Nacos SDK",
  3279. "keywords": [
  3280. "hyperf",
  3281. "nacos",
  3282. "php"
  3283. ],
  3284. "support": {
  3285. "issues": "https://github.com/hyperf/nacos/issues",
  3286. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3287. },
  3288. "funding": [
  3289. {
  3290. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3291. "type": "custom"
  3292. },
  3293. {
  3294. "url": "https://opencollective.com/hyperf",
  3295. "type": "open_collective"
  3296. }
  3297. ],
  3298. "time": "2024-03-23T11:28:51+00:00"
  3299. },
  3300. {
  3301. "name": "hyperf/paginator",
  3302. "version": "v3.1.42",
  3303. "source": {
  3304. "type": "git",
  3305. "url": "https://github.com/hyperf/paginator.git",
  3306. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3307. },
  3308. "dist": {
  3309. "type": "zip",
  3310. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3311. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3312. "shasum": ""
  3313. },
  3314. "require": {
  3315. "hyperf/contract": "~3.1.0",
  3316. "hyperf/support": "~3.1.0",
  3317. "hyperf/utils": "~3.1.0",
  3318. "php": ">=8.1"
  3319. },
  3320. "suggest": {
  3321. "hyperf/event": "Reqiured to use PageResolverListener.",
  3322. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3323. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3324. },
  3325. "type": "library",
  3326. "extra": {
  3327. "branch-alias": {
  3328. "dev-master": "3.1-dev"
  3329. },
  3330. "hyperf": {
  3331. "config": "Hyperf\\Paginator\\ConfigProvider"
  3332. }
  3333. },
  3334. "autoload": {
  3335. "psr-4": {
  3336. "Hyperf\\Paginator\\": "src/"
  3337. }
  3338. },
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "MIT"
  3342. ],
  3343. "description": "A paginator component for hyperf.",
  3344. "homepage": "https://hyperf.io",
  3345. "keywords": [
  3346. "hyperf",
  3347. "paginator",
  3348. "php"
  3349. ],
  3350. "support": {
  3351. "docs": "https://hyperf.wiki",
  3352. "issues": "https://github.com/hyperf/hyperf/issues",
  3353. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3354. "source": "https://github.com/hyperf/hyperf"
  3355. },
  3356. "funding": [
  3357. {
  3358. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3359. "type": "custom"
  3360. },
  3361. {
  3362. "url": "https://opencollective.com/hyperf",
  3363. "type": "open_collective"
  3364. }
  3365. ],
  3366. "time": "2024-09-25T02:54:12+00:00"
  3367. },
  3368. {
  3369. "name": "hyperf/pipeline",
  3370. "version": "v3.1.15",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/hyperf/pipeline.git",
  3374. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3379. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3380. "shasum": ""
  3381. },
  3382. "require": {
  3383. "php": ">=8.1",
  3384. "psr/container": "^1.0|^2.0"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "branch-alias": {
  3389. "dev-master": "3.1-dev"
  3390. }
  3391. },
  3392. "autoload": {
  3393. "psr-4": {
  3394. "Hyperf\\Pipeline\\": "src/"
  3395. }
  3396. },
  3397. "notification-url": "https://packagist.org/downloads/",
  3398. "license": [
  3399. "MIT"
  3400. ],
  3401. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3402. "homepage": "https://hyperf.io",
  3403. "keywords": [
  3404. "hyperf",
  3405. "php",
  3406. "pipeline",
  3407. "swoole"
  3408. ],
  3409. "support": {
  3410. "docs": "https://hyperf.wiki",
  3411. "issues": "https://github.com/hyperf/hyperf/issues",
  3412. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3413. "source": "https://github.com/hyperf/hyperf"
  3414. },
  3415. "funding": [
  3416. {
  3417. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3418. "type": "custom"
  3419. },
  3420. {
  3421. "url": "https://opencollective.com/hyperf",
  3422. "type": "open_collective"
  3423. }
  3424. ],
  3425. "time": "2024-03-23T11:28:51+00:00"
  3426. },
  3427. {
  3428. "name": "hyperf/pool",
  3429. "version": "v3.1.15",
  3430. "source": {
  3431. "type": "git",
  3432. "url": "https://github.com/hyperf/pool.git",
  3433. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3434. },
  3435. "dist": {
  3436. "type": "zip",
  3437. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3438. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3439. "shasum": ""
  3440. },
  3441. "require": {
  3442. "hyperf/contract": "~3.1.0",
  3443. "hyperf/support": "~3.1.0",
  3444. "hyperf/utils": "~3.1.0",
  3445. "php": ">=8.1",
  3446. "psr/container": "^1.0|^2.0"
  3447. },
  3448. "suggest": {
  3449. "psr/event-dispatcher": "Required to use events."
  3450. },
  3451. "type": "library",
  3452. "extra": {
  3453. "branch-alias": {
  3454. "dev-master": "3.1-dev"
  3455. },
  3456. "hyperf": {
  3457. "config": "Hyperf\\Pool\\ConfigProvider"
  3458. }
  3459. },
  3460. "autoload": {
  3461. "psr-4": {
  3462. "Hyperf\\Pool\\": "src/"
  3463. }
  3464. },
  3465. "notification-url": "https://packagist.org/downloads/",
  3466. "license": [
  3467. "MIT"
  3468. ],
  3469. "description": "An independent universal connection pool component.",
  3470. "homepage": "https://hyperf.io",
  3471. "keywords": [
  3472. "connection-pool",
  3473. "hyperf",
  3474. "php",
  3475. "swoole"
  3476. ],
  3477. "support": {
  3478. "docs": "https://hyperf.wiki",
  3479. "issues": "https://github.com/hyperf/hyperf/issues",
  3480. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3481. "source": "https://github.com/hyperf/hyperf"
  3482. },
  3483. "funding": [
  3484. {
  3485. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3486. "type": "custom"
  3487. },
  3488. {
  3489. "url": "https://opencollective.com/hyperf",
  3490. "type": "open_collective"
  3491. }
  3492. ],
  3493. "time": "2024-03-23T11:28:51+00:00"
  3494. },
  3495. {
  3496. "name": "hyperf/process",
  3497. "version": "v3.1.15",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/hyperf/process.git",
  3501. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3506. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "hyperf/contract": "~3.1.0",
  3511. "hyperf/support": "~3.1.0",
  3512. "hyperf/utils": "~3.1.0",
  3513. "php": ">=8.1",
  3514. "psr/container": "^1.0|^2.0",
  3515. "psr/event-dispatcher": "^1.0"
  3516. },
  3517. "suggest": {
  3518. "hyperf/di": "Required to use annotations.",
  3519. "hyperf/event": "Required to dump the message before and after process.",
  3520. "hyperf/framework": "Required to use BootProcessListener."
  3521. },
  3522. "type": "library",
  3523. "extra": {
  3524. "branch-alias": {
  3525. "dev-master": "3.1-dev"
  3526. },
  3527. "hyperf": {
  3528. "config": "Hyperf\\Process\\ConfigProvider"
  3529. }
  3530. },
  3531. "autoload": {
  3532. "psr-4": {
  3533. "Hyperf\\Process\\": "src/"
  3534. }
  3535. },
  3536. "notification-url": "https://packagist.org/downloads/",
  3537. "license": [
  3538. "MIT"
  3539. ],
  3540. "description": "A process component for hyperf.",
  3541. "homepage": "https://hyperf.io",
  3542. "keywords": [
  3543. "hyperf",
  3544. "php",
  3545. "process"
  3546. ],
  3547. "support": {
  3548. "docs": "https://hyperf.wiki",
  3549. "issues": "https://github.com/hyperf/hyperf/issues",
  3550. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3551. "source": "https://github.com/hyperf/hyperf"
  3552. },
  3553. "funding": [
  3554. {
  3555. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3556. "type": "custom"
  3557. },
  3558. {
  3559. "url": "https://opencollective.com/hyperf",
  3560. "type": "open_collective"
  3561. }
  3562. ],
  3563. "time": "2024-03-23T11:28:51+00:00"
  3564. },
  3565. {
  3566. "name": "hyperf/redis",
  3567. "version": "v3.1.18",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/hyperf/redis.git",
  3571. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3576. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3577. "shasum": ""
  3578. },
  3579. "require": {
  3580. "ext-redis": "^5.0|^6.0",
  3581. "hyperf/contract": "~3.1.0",
  3582. "hyperf/pool": "~3.1.0",
  3583. "hyperf/support": "~3.1.0",
  3584. "hyperf/tappable": "~3.1.0",
  3585. "hyperf/utils": "~3.1.0",
  3586. "php": ">=8.1",
  3587. "psr/container": "^1.0|^2.0"
  3588. },
  3589. "suggest": {
  3590. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3591. "hyperf/di": "Create the RedisPool via dependency injection."
  3592. },
  3593. "type": "library",
  3594. "extra": {
  3595. "branch-alias": {
  3596. "dev-master": "3.1-dev"
  3597. },
  3598. "hyperf": {
  3599. "config": "Hyperf\\Redis\\ConfigProvider"
  3600. }
  3601. },
  3602. "autoload": {
  3603. "psr-4": {
  3604. "Hyperf\\Redis\\": "src/"
  3605. }
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "MIT"
  3610. ],
  3611. "description": "A redis component for hyperf.",
  3612. "homepage": "https://hyperf.io",
  3613. "keywords": [
  3614. "hyperf",
  3615. "php",
  3616. "pool",
  3617. "redis"
  3618. ],
  3619. "support": {
  3620. "docs": "https://hyperf.wiki",
  3621. "issues": "https://github.com/hyperf/hyperf/issues",
  3622. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3623. "source": "https://github.com/hyperf/hyperf"
  3624. },
  3625. "funding": [
  3626. {
  3627. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3628. "type": "custom"
  3629. },
  3630. {
  3631. "url": "https://opencollective.com/hyperf",
  3632. "type": "open_collective"
  3633. }
  3634. ],
  3635. "time": "2024-04-11T10:18:35+00:00"
  3636. },
  3637. {
  3638. "name": "hyperf/rpc",
  3639. "version": "v3.1.15",
  3640. "source": {
  3641. "type": "git",
  3642. "url": "https://github.com/hyperf/rpc.git",
  3643. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3644. },
  3645. "dist": {
  3646. "type": "zip",
  3647. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3648. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3649. "shasum": ""
  3650. },
  3651. "require": {
  3652. "hyperf/codec": "~3.1.0",
  3653. "hyperf/contract": "~3.1.0",
  3654. "hyperf/support": "~3.1.0",
  3655. "jetbrains/phpstorm-attributes": "^1.0",
  3656. "php": ">=8.1"
  3657. },
  3658. "type": "library",
  3659. "extra": {
  3660. "branch-alias": {
  3661. "dev-master": "3.1-dev"
  3662. },
  3663. "hyperf": []
  3664. },
  3665. "autoload": {
  3666. "psr-4": {
  3667. "Hyperf\\Rpc\\": "src/"
  3668. }
  3669. },
  3670. "notification-url": "https://packagist.org/downloads/",
  3671. "license": [
  3672. "MIT"
  3673. ],
  3674. "description": "A rpc basic library for Hyperf.",
  3675. "homepage": "https://hyperf.io",
  3676. "keywords": [
  3677. "hyperf",
  3678. "php",
  3679. "rpc",
  3680. "swoole"
  3681. ],
  3682. "support": {
  3683. "docs": "https://hyperf.wiki",
  3684. "issues": "https://github.com/hyperf/hyperf/issues",
  3685. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3686. "source": "https://github.com/hyperf/hyperf"
  3687. },
  3688. "funding": [
  3689. {
  3690. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3691. "type": "custom"
  3692. },
  3693. {
  3694. "url": "https://opencollective.com/hyperf",
  3695. "type": "open_collective"
  3696. }
  3697. ],
  3698. "time": "2024-03-23T11:28:51+00:00"
  3699. },
  3700. {
  3701. "name": "hyperf/rpc-server",
  3702. "version": "v3.1.20",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/hyperf/rpc-server.git",
  3706. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3711. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3712. "shasum": ""
  3713. },
  3714. "require": {
  3715. "hyperf/http-server": "~3.1.0",
  3716. "hyperf/rpc": "~3.1.0",
  3717. "php": ">=8.1"
  3718. },
  3719. "suggest": {
  3720. "hyperf/di": "Required to use annotations."
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "branch-alias": {
  3725. "dev-master": "3.1-dev"
  3726. },
  3727. "hyperf": {
  3728. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3729. }
  3730. },
  3731. "autoload": {
  3732. "psr-4": {
  3733. "Hyperf\\RpcServer\\": "src/"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "description": "An abstract rpc server component for Hyperf.",
  3741. "homepage": "https://hyperf.io",
  3742. "keywords": [
  3743. "hyperf",
  3744. "php",
  3745. "rpc",
  3746. "rpc-server",
  3747. "swoole"
  3748. ],
  3749. "support": {
  3750. "docs": "https://hyperf.wiki",
  3751. "issues": "https://github.com/hyperf/hyperf/issues",
  3752. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3753. "source": "https://github.com/hyperf/hyperf"
  3754. },
  3755. "funding": [
  3756. {
  3757. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3758. "type": "custom"
  3759. },
  3760. {
  3761. "url": "https://opencollective.com/hyperf",
  3762. "type": "open_collective"
  3763. }
  3764. ],
  3765. "time": "2024-04-22T01:46:29+00:00"
  3766. },
  3767. {
  3768. "name": "hyperf/serializer",
  3769. "version": "v3.1.23",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://github.com/hyperf/serializer.git",
  3773. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  3778. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  3779. "shasum": ""
  3780. },
  3781. "require": {
  3782. "hyperf/contract": "~3.1.0",
  3783. "php": ">=8.1"
  3784. },
  3785. "suggest": {
  3786. "hyperf/di": "Required to use ExceptionNormalizer",
  3787. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3788. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3789. },
  3790. "type": "library",
  3791. "extra": {
  3792. "branch-alias": {
  3793. "dev-master": "3.1-dev"
  3794. },
  3795. "hyperf": {
  3796. "config": "Hyperf\\Serializer\\ConfigProvider"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Hyperf\\Serializer\\": "src/"
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "description": "A serializer component for Hyperf.",
  3809. "homepage": "https://hyperf.io",
  3810. "keywords": [
  3811. "hyperf",
  3812. "php",
  3813. "swoole",
  3814. "tappable"
  3815. ],
  3816. "support": {
  3817. "docs": "https://hyperf.wiki",
  3818. "issues": "https://github.com/hyperf/hyperf/issues",
  3819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3820. "source": "https://github.com/hyperf/hyperf"
  3821. },
  3822. "funding": [
  3823. {
  3824. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3825. "type": "custom"
  3826. },
  3827. {
  3828. "url": "https://opencollective.com/hyperf",
  3829. "type": "open_collective"
  3830. }
  3831. ],
  3832. "time": "2024-05-23T03:43:58+00:00"
  3833. },
  3834. {
  3835. "name": "hyperf/server",
  3836. "version": "v3.1.23",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/hyperf/server.git",
  3840. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  3845. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  3846. "shasum": ""
  3847. },
  3848. "require": {
  3849. "hyperf/contract": "~3.1.0",
  3850. "hyperf/coordinator": "~3.1.0",
  3851. "hyperf/engine": "^2.8",
  3852. "hyperf/support": "~3.1.0",
  3853. "hyperf/tappable": "~3.1.0",
  3854. "php": ">=8.1",
  3855. "psr/container": "^1.0|^2.0",
  3856. "psr/event-dispatcher": "^1.0",
  3857. "psr/log": "^1.0|^2.0|^3.0",
  3858. "symfony/console": "^5.0|^6.0|^7.0"
  3859. },
  3860. "suggest": {
  3861. "hyperf/event": "Dump the info after server start.",
  3862. "hyperf/framework": "Dump the info after server start."
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-master": "3.1-dev"
  3868. },
  3869. "hyperf": {
  3870. "config": "Hyperf\\Server\\ConfigProvider"
  3871. }
  3872. },
  3873. "autoload": {
  3874. "psr-4": {
  3875. "Hyperf\\Server\\": "src/"
  3876. }
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "description": "A base server library for Hyperf.",
  3883. "homepage": "https://hyperf.io",
  3884. "keywords": [
  3885. "hyperf",
  3886. "php",
  3887. "server",
  3888. "swoole"
  3889. ],
  3890. "support": {
  3891. "docs": "https://hyperf.wiki",
  3892. "issues": "https://github.com/hyperf/hyperf/issues",
  3893. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3894. "source": "https://github.com/hyperf/hyperf"
  3895. },
  3896. "funding": [
  3897. {
  3898. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3899. "type": "custom"
  3900. },
  3901. {
  3902. "url": "https://opencollective.com/hyperf",
  3903. "type": "open_collective"
  3904. }
  3905. ],
  3906. "time": "2024-05-23T03:43:58+00:00"
  3907. },
  3908. {
  3909. "name": "hyperf/service-governance",
  3910. "version": "v3.1.15",
  3911. "source": {
  3912. "type": "git",
  3913. "url": "https://github.com/hyperf/service-governance.git",
  3914. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  3915. },
  3916. "dist": {
  3917. "type": "zip",
  3918. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3919. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  3920. "shasum": ""
  3921. },
  3922. "require": {
  3923. "hyperf/contract": "~3.1.0",
  3924. "hyperf/support": "~3.1.0",
  3925. "jetbrains/phpstorm-attributes": "^1.0",
  3926. "php": ">=8.1"
  3927. },
  3928. "suggest": {
  3929. "hyperf/event": "Required to use RegisterServiceListener.",
  3930. "hyperf/framework": "Required to use RegisterServiceListener.",
  3931. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3932. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3933. },
  3934. "type": "library",
  3935. "extra": {
  3936. "branch-alias": {
  3937. "dev-master": "3.1-dev"
  3938. },
  3939. "hyperf": {
  3940. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3941. }
  3942. },
  3943. "autoload": {
  3944. "psr-4": {
  3945. "Hyperf\\ServiceGovernance\\": "src/"
  3946. }
  3947. },
  3948. "notification-url": "https://packagist.org/downloads/",
  3949. "license": [
  3950. "MIT"
  3951. ],
  3952. "description": "A service governance component for Hyperf.",
  3953. "homepage": "https://hyperf.io",
  3954. "keywords": [
  3955. "hyperf",
  3956. "php",
  3957. "service-governance",
  3958. "swoole"
  3959. ],
  3960. "support": {
  3961. "docs": "https://hyperf.wiki",
  3962. "issues": "https://github.com/hyperf/hyperf/issues",
  3963. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3964. "source": "https://github.com/hyperf/hyperf"
  3965. },
  3966. "funding": [
  3967. {
  3968. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3969. "type": "custom"
  3970. },
  3971. {
  3972. "url": "https://opencollective.com/hyperf",
  3973. "type": "open_collective"
  3974. }
  3975. ],
  3976. "time": "2024-03-23T11:28:51+00:00"
  3977. },
  3978. {
  3979. "name": "hyperf/service-governance-consul",
  3980. "version": "v3.1.15",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/hyperf/service-governance-consul.git",
  3984. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3989. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  3990. "shasum": ""
  3991. },
  3992. "require": {
  3993. "hyperf/consul": "~3.1.0",
  3994. "hyperf/contract": "~3.1.0",
  3995. "hyperf/service-governance": "~3.1.0",
  3996. "hyperf/support": "~3.1.0",
  3997. "hyperf/utils": "~3.1.0",
  3998. "php": ">=8.1"
  3999. },
  4000. "type": "library",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-master": "3.1-dev"
  4004. },
  4005. "hyperf": {
  4006. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4007. }
  4008. },
  4009. "autoload": {
  4010. "psr-4": {
  4011. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4012. }
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "description": "A consul adapter for service governance.",
  4019. "homepage": "https://hyperf.io",
  4020. "keywords": [
  4021. "consul-adapter",
  4022. "hyperf",
  4023. "php",
  4024. "service-governance",
  4025. "swoole"
  4026. ],
  4027. "support": {
  4028. "docs": "https://hyperf.wiki",
  4029. "issues": "https://github.com/hyperf/hyperf/issues",
  4030. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4031. "source": "https://github.com/hyperf/hyperf"
  4032. },
  4033. "funding": [
  4034. {
  4035. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4036. "type": "custom"
  4037. },
  4038. {
  4039. "url": "https://opencollective.com/hyperf",
  4040. "type": "open_collective"
  4041. }
  4042. ],
  4043. "time": "2024-03-23T11:28:51+00:00"
  4044. },
  4045. {
  4046. "name": "hyperf/service-governance-nacos",
  4047. "version": "v3.1.15",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4051. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4056. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4057. "shasum": ""
  4058. },
  4059. "require": {
  4060. "hyperf/codec": "~3.1.0",
  4061. "hyperf/contract": "~3.1.0",
  4062. "hyperf/nacos": "~3.1.0",
  4063. "hyperf/service-governance": "~3.1.0",
  4064. "hyperf/support": "~3.1.0",
  4065. "hyperf/utils": "~3.1.0",
  4066. "php": ">=8.1"
  4067. },
  4068. "type": "library",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-master": "3.1-dev"
  4072. },
  4073. "hyperf": {
  4074. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4075. }
  4076. },
  4077. "autoload": {
  4078. "psr-4": {
  4079. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4080. }
  4081. },
  4082. "notification-url": "https://packagist.org/downloads/",
  4083. "license": [
  4084. "MIT"
  4085. ],
  4086. "description": "A nacos adapter for service governance.",
  4087. "homepage": "https://hyperf.io",
  4088. "keywords": [
  4089. "hyperf",
  4090. "nacos-adapter",
  4091. "php",
  4092. "service-governance",
  4093. "swoole"
  4094. ],
  4095. "support": {
  4096. "docs": "https://hyperf.wiki",
  4097. "issues": "https://github.com/hyperf/hyperf/issues",
  4098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4099. "source": "https://github.com/hyperf/hyperf"
  4100. },
  4101. "funding": [
  4102. {
  4103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4104. "type": "custom"
  4105. },
  4106. {
  4107. "url": "https://opencollective.com/hyperf",
  4108. "type": "open_collective"
  4109. }
  4110. ],
  4111. "time": "2024-03-23T11:28:51+00:00"
  4112. },
  4113. {
  4114. "name": "hyperf/stdlib",
  4115. "version": "v3.1.15",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/hyperf/stdlib.git",
  4119. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4124. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "php": ">=8.1"
  4129. },
  4130. "type": "library",
  4131. "extra": {
  4132. "branch-alias": {
  4133. "dev-master": "3.1-dev"
  4134. }
  4135. },
  4136. "autoload": {
  4137. "psr-4": {
  4138. "Hyperf\\Stdlib\\": "src/"
  4139. }
  4140. },
  4141. "notification-url": "https://packagist.org/downloads/",
  4142. "license": [
  4143. "MIT"
  4144. ],
  4145. "description": "A stdlib component for Hyperf.",
  4146. "homepage": "https://hyperf.io",
  4147. "keywords": [
  4148. "hyperf",
  4149. "php",
  4150. "stdlib",
  4151. "swoole"
  4152. ],
  4153. "support": {
  4154. "docs": "https://hyperf.wiki",
  4155. "issues": "https://github.com/hyperf/hyperf/issues",
  4156. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4157. "source": "https://github.com/hyperf/hyperf"
  4158. },
  4159. "funding": [
  4160. {
  4161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4162. "type": "custom"
  4163. },
  4164. {
  4165. "url": "https://opencollective.com/hyperf",
  4166. "type": "open_collective"
  4167. }
  4168. ],
  4169. "time": "2024-03-23T11:28:51+00:00"
  4170. },
  4171. {
  4172. "name": "hyperf/stringable",
  4173. "version": "v3.1.24",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/hyperf/stringable.git",
  4177. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4182. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4183. "shasum": ""
  4184. },
  4185. "require": {
  4186. "ext-mbstring": "*",
  4187. "hyperf/collection": "~3.1.0",
  4188. "hyperf/conditionable": "~3.1.0",
  4189. "hyperf/macroable": "~3.1.0",
  4190. "hyperf/tappable": "~3.1.0",
  4191. "php": ">=8.1"
  4192. },
  4193. "suggest": {
  4194. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4195. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4196. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-master": "3.1-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "files": [
  4206. "src/Functions.php"
  4207. ],
  4208. "psr-4": {
  4209. "Hyperf\\Stringable\\": "src/"
  4210. }
  4211. },
  4212. "notification-url": "https://packagist.org/downloads/",
  4213. "license": [
  4214. "MIT"
  4215. ],
  4216. "description": "Hyperf Stringable package which come from illuminate/support",
  4217. "homepage": "https://hyperf.io",
  4218. "keywords": [
  4219. "hyperf",
  4220. "php",
  4221. "stringable",
  4222. "swoole"
  4223. ],
  4224. "support": {
  4225. "docs": "https://hyperf.wiki",
  4226. "issues": "https://github.com/hyperf/hyperf/issues",
  4227. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4228. "source": "https://github.com/hyperf/hyperf"
  4229. },
  4230. "funding": [
  4231. {
  4232. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4233. "type": "custom"
  4234. },
  4235. {
  4236. "url": "https://opencollective.com/hyperf",
  4237. "type": "open_collective"
  4238. }
  4239. ],
  4240. "time": "2024-05-27T03:20:24+00:00"
  4241. },
  4242. {
  4243. "name": "hyperf/support",
  4244. "version": "v3.1.15",
  4245. "source": {
  4246. "type": "git",
  4247. "url": "https://github.com/hyperf/support.git",
  4248. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872"
  4249. },
  4250. "dist": {
  4251. "type": "zip",
  4252. "url": "https://api.github.com/repos/hyperf/support/zipball/3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4253. "reference": "3fb5c6c5a4f795cb0304a032f6f5b85f62a5f872",
  4254. "shasum": ""
  4255. },
  4256. "require": {
  4257. "hyperf/collection": "~3.1.0",
  4258. "hyperf/context": "~3.1.0",
  4259. "hyperf/contract": "~3.1.0",
  4260. "hyperf/coroutine": "~3.1.0",
  4261. "hyperf/macroable": "~3.1.0",
  4262. "hyperf/stringable": "~3.1.0",
  4263. "php": ">=8.1"
  4264. },
  4265. "suggest": {
  4266. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4267. },
  4268. "type": "library",
  4269. "extra": {
  4270. "branch-alias": {
  4271. "dev-master": "3.1-dev"
  4272. }
  4273. },
  4274. "autoload": {
  4275. "files": [
  4276. "src/Functions.php"
  4277. ],
  4278. "psr-4": {
  4279. "Hyperf\\Support\\": "src/"
  4280. }
  4281. },
  4282. "notification-url": "https://packagist.org/downloads/",
  4283. "license": [
  4284. "MIT"
  4285. ],
  4286. "description": "A support component for Hyperf.",
  4287. "homepage": "https://hyperf.io",
  4288. "keywords": [
  4289. "hyperf",
  4290. "php",
  4291. "support",
  4292. "swoole"
  4293. ],
  4294. "support": {
  4295. "docs": "https://hyperf.wiki",
  4296. "issues": "https://github.com/hyperf/hyperf/issues",
  4297. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4298. "source": "https://github.com/hyperf/hyperf"
  4299. },
  4300. "funding": [
  4301. {
  4302. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4303. "type": "custom"
  4304. },
  4305. {
  4306. "url": "https://opencollective.com/hyperf",
  4307. "type": "open_collective"
  4308. }
  4309. ],
  4310. "time": "2024-03-23T11:28:51+00:00"
  4311. },
  4312. {
  4313. "name": "hyperf/tappable",
  4314. "version": "v3.1.15",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://github.com/hyperf/tappable.git",
  4318. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4323. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4324. "shasum": ""
  4325. },
  4326. "require": {
  4327. "php": ">=8.1"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "3.1-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "files": [
  4337. "src/Functions.php"
  4338. ],
  4339. "psr-4": {
  4340. "Hyperf\\Tappable\\": "src/"
  4341. }
  4342. },
  4343. "notification-url": "https://packagist.org/downloads/",
  4344. "license": [
  4345. "MIT"
  4346. ],
  4347. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4348. "homepage": "https://hyperf.io",
  4349. "keywords": [
  4350. "hyperf",
  4351. "php",
  4352. "swoole",
  4353. "tappable"
  4354. ],
  4355. "support": {
  4356. "docs": "https://hyperf.wiki",
  4357. "issues": "https://github.com/hyperf/hyperf/issues",
  4358. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4359. "source": "https://github.com/hyperf/hyperf"
  4360. },
  4361. "funding": [
  4362. {
  4363. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4364. "type": "custom"
  4365. },
  4366. {
  4367. "url": "https://opencollective.com/hyperf",
  4368. "type": "open_collective"
  4369. }
  4370. ],
  4371. "time": "2024-03-23T11:28:51+00:00"
  4372. },
  4373. {
  4374. "name": "hyperf/utils",
  4375. "version": "v3.1.0",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/hyperf/utils.git",
  4379. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4384. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4385. "shasum": ""
  4386. },
  4387. "require": {
  4388. "doctrine/inflector": "^2.0",
  4389. "hyperf/code-parser": "~3.1.0",
  4390. "hyperf/codec": "~3.1.0",
  4391. "hyperf/collection": "~3.1.0",
  4392. "hyperf/context": "~3.1.0",
  4393. "hyperf/contract": "~3.1.0",
  4394. "hyperf/coordinator": "~3.1.0",
  4395. "hyperf/coroutine": "~3.1.0",
  4396. "hyperf/engine": "^2.0",
  4397. "hyperf/macroable": "~3.1.0",
  4398. "hyperf/serializer": "~3.1.0",
  4399. "hyperf/stringable": "~3.1.0",
  4400. "hyperf/support": "~3.1.0",
  4401. "php": ">=8.1"
  4402. },
  4403. "type": "library",
  4404. "extra": {
  4405. "branch-alias": {
  4406. "dev-master": "3.1-dev"
  4407. }
  4408. },
  4409. "notification-url": "https://packagist.org/downloads/",
  4410. "license": [
  4411. "MIT"
  4412. ],
  4413. "description": "A tools package that could help developer solved the problem quickly.",
  4414. "homepage": "https://hyperf.io",
  4415. "keywords": [
  4416. "hyperf",
  4417. "php",
  4418. "swoole",
  4419. "utils"
  4420. ],
  4421. "support": {
  4422. "docs": "https://hyperf.wiki",
  4423. "issues": "https://github.com/hyperf/hyperf/issues",
  4424. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4425. "source": "https://github.com/hyperf/hyperf"
  4426. },
  4427. "funding": [
  4428. {
  4429. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4430. "type": "custom"
  4431. },
  4432. {
  4433. "url": "https://opencollective.com/hyperf",
  4434. "type": "open_collective"
  4435. }
  4436. ],
  4437. "time": "2023-11-24T03:10:53+00:00"
  4438. },
  4439. {
  4440. "name": "jetbrains/phpstorm-attributes",
  4441. "version": "1.1",
  4442. "source": {
  4443. "type": "git",
  4444. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4445. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4446. },
  4447. "dist": {
  4448. "type": "zip",
  4449. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4450. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4451. "shasum": ""
  4452. },
  4453. "type": "library",
  4454. "autoload": {
  4455. "psr-4": {
  4456. "JetBrains\\PhpStorm\\": "src/"
  4457. }
  4458. },
  4459. "notification-url": "https://packagist.org/downloads/",
  4460. "license": [
  4461. "Apache-2.0"
  4462. ],
  4463. "authors": [
  4464. {
  4465. "name": "JetBrains",
  4466. "homepage": "https://www.jetbrains.com"
  4467. }
  4468. ],
  4469. "description": "PhpStorm specific attributes",
  4470. "keywords": [
  4471. "attributes",
  4472. "jetbrains",
  4473. "phpstorm"
  4474. ],
  4475. "support": {
  4476. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4477. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4478. },
  4479. "time": "2023-09-01T08:50:25+00:00"
  4480. },
  4481. {
  4482. "name": "laminas/laminas-mime",
  4483. "version": "2.12.0",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/laminas/laminas-mime.git",
  4487. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4492. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4493. "shasum": ""
  4494. },
  4495. "require": {
  4496. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4497. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4498. },
  4499. "conflict": {
  4500. "zendframework/zend-mime": "*"
  4501. },
  4502. "require-dev": {
  4503. "laminas/laminas-coding-standard": "~2.4.0",
  4504. "laminas/laminas-mail": "^2.19.0",
  4505. "phpunit/phpunit": "~9.5.25"
  4506. },
  4507. "suggest": {
  4508. "laminas/laminas-mail": "Laminas\\Mail component"
  4509. },
  4510. "type": "library",
  4511. "autoload": {
  4512. "psr-4": {
  4513. "Laminas\\Mime\\": "src/"
  4514. }
  4515. },
  4516. "notification-url": "https://packagist.org/downloads/",
  4517. "license": [
  4518. "BSD-3-Clause"
  4519. ],
  4520. "description": "Create and parse MIME messages and parts",
  4521. "homepage": "https://laminas.dev",
  4522. "keywords": [
  4523. "laminas",
  4524. "mime"
  4525. ],
  4526. "support": {
  4527. "chat": "https://laminas.dev/chat",
  4528. "docs": "https://docs.laminas.dev/laminas-mime/",
  4529. "forum": "https://discourse.laminas.dev",
  4530. "issues": "https://github.com/laminas/laminas-mime/issues",
  4531. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4532. "source": "https://github.com/laminas/laminas-mime"
  4533. },
  4534. "funding": [
  4535. {
  4536. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4537. "type": "community_bridge"
  4538. }
  4539. ],
  4540. "time": "2023-11-02T16:47:19+00:00"
  4541. },
  4542. {
  4543. "name": "laminas/laminas-stdlib",
  4544. "version": "3.19.0",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/laminas/laminas-stdlib.git",
  4548. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  4553. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  4558. },
  4559. "conflict": {
  4560. "zendframework/zend-stdlib": "*"
  4561. },
  4562. "require-dev": {
  4563. "laminas/laminas-coding-standard": "^2.5",
  4564. "phpbench/phpbench": "^1.2.15",
  4565. "phpunit/phpunit": "^10.5.8",
  4566. "psalm/plugin-phpunit": "^0.18.4",
  4567. "vimeo/psalm": "^5.20.0"
  4568. },
  4569. "type": "library",
  4570. "autoload": {
  4571. "psr-4": {
  4572. "Laminas\\Stdlib\\": "src/"
  4573. }
  4574. },
  4575. "notification-url": "https://packagist.org/downloads/",
  4576. "license": [
  4577. "BSD-3-Clause"
  4578. ],
  4579. "description": "SPL extensions, array utilities, error handlers, and more",
  4580. "homepage": "https://laminas.dev",
  4581. "keywords": [
  4582. "laminas",
  4583. "stdlib"
  4584. ],
  4585. "support": {
  4586. "chat": "https://laminas.dev/chat",
  4587. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4588. "forum": "https://discourse.laminas.dev",
  4589. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4590. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4591. "source": "https://github.com/laminas/laminas-stdlib"
  4592. },
  4593. "funding": [
  4594. {
  4595. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4596. "type": "community_bridge"
  4597. }
  4598. ],
  4599. "time": "2024-01-19T12:39:49+00:00"
  4600. },
  4601. {
  4602. "name": "markrogoyski/math-php",
  4603. "version": "v2.10.0",
  4604. "source": {
  4605. "type": "git",
  4606. "url": "https://github.com/markrogoyski/math-php.git",
  4607. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4608. },
  4609. "dist": {
  4610. "type": "zip",
  4611. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4612. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4613. "shasum": ""
  4614. },
  4615. "require": {
  4616. "ext-json": "*",
  4617. "php": ">=7.2.0"
  4618. },
  4619. "require-dev": {
  4620. "php-coveralls/php-coveralls": "^2.0",
  4621. "php-parallel-lint/php-parallel-lint": "^1.2",
  4622. "phploc/phploc": "*",
  4623. "phpmd/phpmd": "^2.6",
  4624. "phpstan/phpstan": "^1.10",
  4625. "phpunit/phpunit": "^8.5",
  4626. "squizlabs/php_codesniffer": "3.*"
  4627. },
  4628. "type": "library",
  4629. "autoload": {
  4630. "psr-4": {
  4631. "MathPHP\\": "src/"
  4632. }
  4633. },
  4634. "notification-url": "https://packagist.org/downloads/",
  4635. "license": [
  4636. "MIT"
  4637. ],
  4638. "authors": [
  4639. {
  4640. "name": "Mark Rogoyski",
  4641. "email": "mark@rogoyski.com",
  4642. "homepage": "https://github.com/markrogoyski",
  4643. "role": "Lead developer"
  4644. },
  4645. {
  4646. "name": "Kevin Nowaczyk",
  4647. "homepage": "https://github.com/Beakerboy",
  4648. "role": "Developer"
  4649. },
  4650. {
  4651. "name": "MathPHP Community of Contributors",
  4652. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4653. }
  4654. ],
  4655. "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",
  4656. "homepage": "https://github.com/markrogoyski/math-php/",
  4657. "keywords": [
  4658. "algebra",
  4659. "combinatorics",
  4660. "distributions",
  4661. "linear algebra",
  4662. "math",
  4663. "mathematics",
  4664. "matrix",
  4665. "numerical analysis",
  4666. "probability",
  4667. "regressions",
  4668. "statistics"
  4669. ],
  4670. "support": {
  4671. "issues": "https://github.com/markrogoyski/math-php/issues",
  4672. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4673. },
  4674. "time": "2024-04-17T00:09:51+00:00"
  4675. },
  4676. {
  4677. "name": "monolog/monolog",
  4678. "version": "3.6.0",
  4679. "source": {
  4680. "type": "git",
  4681. "url": "https://github.com/Seldaek/monolog.git",
  4682. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  4683. },
  4684. "dist": {
  4685. "type": "zip",
  4686. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4687. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  4688. "shasum": ""
  4689. },
  4690. "require": {
  4691. "php": ">=8.1",
  4692. "psr/log": "^2.0 || ^3.0"
  4693. },
  4694. "provide": {
  4695. "psr/log-implementation": "3.0.0"
  4696. },
  4697. "require-dev": {
  4698. "aws/aws-sdk-php": "^3.0",
  4699. "doctrine/couchdb": "~1.0@dev",
  4700. "elasticsearch/elasticsearch": "^7 || ^8",
  4701. "ext-json": "*",
  4702. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4703. "guzzlehttp/guzzle": "^7.4.5",
  4704. "guzzlehttp/psr7": "^2.2",
  4705. "mongodb/mongodb": "^1.8",
  4706. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4707. "phpstan/phpstan": "^1.9",
  4708. "phpstan/phpstan-deprecation-rules": "^1.0",
  4709. "phpstan/phpstan-strict-rules": "^1.4",
  4710. "phpunit/phpunit": "^10.5.17",
  4711. "predis/predis": "^1.1 || ^2",
  4712. "ruflin/elastica": "^7",
  4713. "symfony/mailer": "^5.4 || ^6",
  4714. "symfony/mime": "^5.4 || ^6"
  4715. },
  4716. "suggest": {
  4717. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4718. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4719. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4720. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4721. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4722. "ext-mbstring": "Allow to work properly with unicode symbols",
  4723. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4724. "ext-openssl": "Required to send log messages using SSL",
  4725. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4726. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4727. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4728. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4729. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4730. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4731. },
  4732. "type": "library",
  4733. "extra": {
  4734. "branch-alias": {
  4735. "dev-main": "3.x-dev"
  4736. }
  4737. },
  4738. "autoload": {
  4739. "psr-4": {
  4740. "Monolog\\": "src/Monolog"
  4741. }
  4742. },
  4743. "notification-url": "https://packagist.org/downloads/",
  4744. "license": [
  4745. "MIT"
  4746. ],
  4747. "authors": [
  4748. {
  4749. "name": "Jordi Boggiano",
  4750. "email": "j.boggiano@seld.be",
  4751. "homepage": "https://seld.be"
  4752. }
  4753. ],
  4754. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4755. "homepage": "https://github.com/Seldaek/monolog",
  4756. "keywords": [
  4757. "log",
  4758. "logging",
  4759. "psr-3"
  4760. ],
  4761. "support": {
  4762. "issues": "https://github.com/Seldaek/monolog/issues",
  4763. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  4764. },
  4765. "funding": [
  4766. {
  4767. "url": "https://github.com/Seldaek",
  4768. "type": "github"
  4769. },
  4770. {
  4771. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4772. "type": "tidelift"
  4773. }
  4774. ],
  4775. "time": "2024-04-12T21:02:21+00:00"
  4776. },
  4777. {
  4778. "name": "mtdowling/jmespath.php",
  4779. "version": "2.8.0",
  4780. "source": {
  4781. "type": "git",
  4782. "url": "https://github.com/jmespath/jmespath.php.git",
  4783. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4784. },
  4785. "dist": {
  4786. "type": "zip",
  4787. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4788. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4789. "shasum": ""
  4790. },
  4791. "require": {
  4792. "php": "^7.2.5 || ^8.0",
  4793. "symfony/polyfill-mbstring": "^1.17"
  4794. },
  4795. "require-dev": {
  4796. "composer/xdebug-handler": "^3.0.3",
  4797. "phpunit/phpunit": "^8.5.33"
  4798. },
  4799. "bin": [
  4800. "bin/jp.php"
  4801. ],
  4802. "type": "library",
  4803. "extra": {
  4804. "branch-alias": {
  4805. "dev-master": "2.8-dev"
  4806. }
  4807. },
  4808. "autoload": {
  4809. "files": [
  4810. "src/JmesPath.php"
  4811. ],
  4812. "psr-4": {
  4813. "JmesPath\\": "src/"
  4814. }
  4815. },
  4816. "notification-url": "https://packagist.org/downloads/",
  4817. "license": [
  4818. "MIT"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "Graham Campbell",
  4823. "email": "hello@gjcampbell.co.uk",
  4824. "homepage": "https://github.com/GrahamCampbell"
  4825. },
  4826. {
  4827. "name": "Michael Dowling",
  4828. "email": "mtdowling@gmail.com",
  4829. "homepage": "https://github.com/mtdowling"
  4830. }
  4831. ],
  4832. "description": "Declaratively specify how to extract elements from a JSON document",
  4833. "keywords": [
  4834. "json",
  4835. "jsonpath"
  4836. ],
  4837. "support": {
  4838. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4839. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4840. },
  4841. "time": "2024-09-04T18:46:31+00:00"
  4842. },
  4843. {
  4844. "name": "nesbot/carbon",
  4845. "version": "2.72.5",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://github.com/briannesbitt/Carbon.git",
  4849. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4854. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4855. "shasum": ""
  4856. },
  4857. "require": {
  4858. "carbonphp/carbon-doctrine-types": "*",
  4859. "ext-json": "*",
  4860. "php": "^7.1.8 || ^8.0",
  4861. "psr/clock": "^1.0",
  4862. "symfony/polyfill-mbstring": "^1.0",
  4863. "symfony/polyfill-php80": "^1.16",
  4864. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4865. },
  4866. "provide": {
  4867. "psr/clock-implementation": "1.0"
  4868. },
  4869. "require-dev": {
  4870. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4871. "doctrine/orm": "^2.7 || ^3.0",
  4872. "friendsofphp/php-cs-fixer": "^3.0",
  4873. "kylekatarnls/multi-tester": "^2.0",
  4874. "ondrejmirtes/better-reflection": "*",
  4875. "phpmd/phpmd": "^2.9",
  4876. "phpstan/extension-installer": "^1.0",
  4877. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4878. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4879. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4880. "squizlabs/php_codesniffer": "^3.4"
  4881. },
  4882. "bin": [
  4883. "bin/carbon"
  4884. ],
  4885. "type": "library",
  4886. "extra": {
  4887. "branch-alias": {
  4888. "dev-master": "3.x-dev",
  4889. "dev-2.x": "2.x-dev"
  4890. },
  4891. "laravel": {
  4892. "providers": [
  4893. "Carbon\\Laravel\\ServiceProvider"
  4894. ]
  4895. },
  4896. "phpstan": {
  4897. "includes": [
  4898. "extension.neon"
  4899. ]
  4900. }
  4901. },
  4902. "autoload": {
  4903. "psr-4": {
  4904. "Carbon\\": "src/Carbon/"
  4905. }
  4906. },
  4907. "notification-url": "https://packagist.org/downloads/",
  4908. "license": [
  4909. "MIT"
  4910. ],
  4911. "authors": [
  4912. {
  4913. "name": "Brian Nesbitt",
  4914. "email": "brian@nesbot.com",
  4915. "homepage": "https://markido.com"
  4916. },
  4917. {
  4918. "name": "kylekatarnls",
  4919. "homepage": "https://github.com/kylekatarnls"
  4920. }
  4921. ],
  4922. "description": "An API extension for DateTime that supports 281 different languages.",
  4923. "homepage": "https://carbon.nesbot.com",
  4924. "keywords": [
  4925. "date",
  4926. "datetime",
  4927. "time"
  4928. ],
  4929. "support": {
  4930. "docs": "https://carbon.nesbot.com/docs",
  4931. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4932. "source": "https://github.com/briannesbitt/Carbon"
  4933. },
  4934. "funding": [
  4935. {
  4936. "url": "https://github.com/sponsors/kylekatarnls",
  4937. "type": "github"
  4938. },
  4939. {
  4940. "url": "https://opencollective.com/Carbon#sponsor",
  4941. "type": "opencollective"
  4942. },
  4943. {
  4944. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4945. "type": "tidelift"
  4946. }
  4947. ],
  4948. "time": "2024-06-03T19:18:41+00:00"
  4949. },
  4950. {
  4951. "name": "nikic/fast-route",
  4952. "version": "v1.3.0",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://github.com/nikic/FastRoute.git",
  4956. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4961. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4962. "shasum": ""
  4963. },
  4964. "require": {
  4965. "php": ">=5.4.0"
  4966. },
  4967. "require-dev": {
  4968. "phpunit/phpunit": "^4.8.35|~5.7"
  4969. },
  4970. "type": "library",
  4971. "autoload": {
  4972. "files": [
  4973. "src/functions.php"
  4974. ],
  4975. "psr-4": {
  4976. "FastRoute\\": "src/"
  4977. }
  4978. },
  4979. "notification-url": "https://packagist.org/downloads/",
  4980. "license": [
  4981. "BSD-3-Clause"
  4982. ],
  4983. "authors": [
  4984. {
  4985. "name": "Nikita Popov",
  4986. "email": "nikic@php.net"
  4987. }
  4988. ],
  4989. "description": "Fast request router for PHP",
  4990. "keywords": [
  4991. "router",
  4992. "routing"
  4993. ],
  4994. "support": {
  4995. "issues": "https://github.com/nikic/FastRoute/issues",
  4996. "source": "https://github.com/nikic/FastRoute/tree/master"
  4997. },
  4998. "time": "2018-02-13T20:26:39+00:00"
  4999. },
  5000. {
  5001. "name": "nikic/php-parser",
  5002. "version": "v4.19.1",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://github.com/nikic/PHP-Parser.git",
  5006. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5011. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5012. "shasum": ""
  5013. },
  5014. "require": {
  5015. "ext-tokenizer": "*",
  5016. "php": ">=7.1"
  5017. },
  5018. "require-dev": {
  5019. "ircmaxell/php-yacc": "^0.0.7",
  5020. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5021. },
  5022. "bin": [
  5023. "bin/php-parse"
  5024. ],
  5025. "type": "library",
  5026. "extra": {
  5027. "branch-alias": {
  5028. "dev-master": "4.9-dev"
  5029. }
  5030. },
  5031. "autoload": {
  5032. "psr-4": {
  5033. "PhpParser\\": "lib/PhpParser"
  5034. }
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "BSD-3-Clause"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "Nikita Popov"
  5043. }
  5044. ],
  5045. "description": "A PHP parser written in PHP",
  5046. "keywords": [
  5047. "parser",
  5048. "php"
  5049. ],
  5050. "support": {
  5051. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5052. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5053. },
  5054. "time": "2024-03-17T08:10:35+00:00"
  5055. },
  5056. {
  5057. "name": "php-di/phpdoc-reader",
  5058. "version": "2.2.1",
  5059. "source": {
  5060. "type": "git",
  5061. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5062. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5063. },
  5064. "dist": {
  5065. "type": "zip",
  5066. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5067. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5068. "shasum": ""
  5069. },
  5070. "require": {
  5071. "php": ">=7.2.0"
  5072. },
  5073. "require-dev": {
  5074. "mnapoli/hard-mode": "~0.3.0",
  5075. "phpunit/phpunit": "^8.5|^9.0"
  5076. },
  5077. "type": "library",
  5078. "autoload": {
  5079. "psr-4": {
  5080. "PhpDocReader\\": "src/PhpDocReader"
  5081. }
  5082. },
  5083. "notification-url": "https://packagist.org/downloads/",
  5084. "license": [
  5085. "MIT"
  5086. ],
  5087. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5088. "keywords": [
  5089. "phpdoc",
  5090. "reflection"
  5091. ],
  5092. "support": {
  5093. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5094. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5095. },
  5096. "time": "2020-10-12T12:39:22+00:00"
  5097. },
  5098. {
  5099. "name": "phpoption/phpoption",
  5100. "version": "1.9.2",
  5101. "source": {
  5102. "type": "git",
  5103. "url": "https://github.com/schmittjoh/php-option.git",
  5104. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5105. },
  5106. "dist": {
  5107. "type": "zip",
  5108. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5109. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5110. "shasum": ""
  5111. },
  5112. "require": {
  5113. "php": "^7.2.5 || ^8.0"
  5114. },
  5115. "require-dev": {
  5116. "bamarni/composer-bin-plugin": "^1.8.2",
  5117. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5118. },
  5119. "type": "library",
  5120. "extra": {
  5121. "bamarni-bin": {
  5122. "bin-links": true,
  5123. "forward-command": true
  5124. },
  5125. "branch-alias": {
  5126. "dev-master": "1.9-dev"
  5127. }
  5128. },
  5129. "autoload": {
  5130. "psr-4": {
  5131. "PhpOption\\": "src/PhpOption/"
  5132. }
  5133. },
  5134. "notification-url": "https://packagist.org/downloads/",
  5135. "license": [
  5136. "Apache-2.0"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Johannes M. Schmitt",
  5141. "email": "schmittjoh@gmail.com",
  5142. "homepage": "https://github.com/schmittjoh"
  5143. },
  5144. {
  5145. "name": "Graham Campbell",
  5146. "email": "hello@gjcampbell.co.uk",
  5147. "homepage": "https://github.com/GrahamCampbell"
  5148. }
  5149. ],
  5150. "description": "Option Type for PHP",
  5151. "keywords": [
  5152. "language",
  5153. "option",
  5154. "php",
  5155. "type"
  5156. ],
  5157. "support": {
  5158. "issues": "https://github.com/schmittjoh/php-option/issues",
  5159. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5160. },
  5161. "funding": [
  5162. {
  5163. "url": "https://github.com/GrahamCampbell",
  5164. "type": "github"
  5165. },
  5166. {
  5167. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5168. "type": "tidelift"
  5169. }
  5170. ],
  5171. "time": "2023-11-12T21:59:55+00:00"
  5172. },
  5173. {
  5174. "name": "psr/cache",
  5175. "version": "3.0.0",
  5176. "source": {
  5177. "type": "git",
  5178. "url": "https://github.com/php-fig/cache.git",
  5179. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5180. },
  5181. "dist": {
  5182. "type": "zip",
  5183. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5184. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5185. "shasum": ""
  5186. },
  5187. "require": {
  5188. "php": ">=8.0.0"
  5189. },
  5190. "type": "library",
  5191. "extra": {
  5192. "branch-alias": {
  5193. "dev-master": "1.0.x-dev"
  5194. }
  5195. },
  5196. "autoload": {
  5197. "psr-4": {
  5198. "Psr\\Cache\\": "src/"
  5199. }
  5200. },
  5201. "notification-url": "https://packagist.org/downloads/",
  5202. "license": [
  5203. "MIT"
  5204. ],
  5205. "authors": [
  5206. {
  5207. "name": "PHP-FIG",
  5208. "homepage": "https://www.php-fig.org/"
  5209. }
  5210. ],
  5211. "description": "Common interface for caching libraries",
  5212. "keywords": [
  5213. "cache",
  5214. "psr",
  5215. "psr-6"
  5216. ],
  5217. "support": {
  5218. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5219. },
  5220. "time": "2021-02-03T23:26:27+00:00"
  5221. },
  5222. {
  5223. "name": "psr/clock",
  5224. "version": "1.0.0",
  5225. "source": {
  5226. "type": "git",
  5227. "url": "https://github.com/php-fig/clock.git",
  5228. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5229. },
  5230. "dist": {
  5231. "type": "zip",
  5232. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5233. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5234. "shasum": ""
  5235. },
  5236. "require": {
  5237. "php": "^7.0 || ^8.0"
  5238. },
  5239. "type": "library",
  5240. "autoload": {
  5241. "psr-4": {
  5242. "Psr\\Clock\\": "src/"
  5243. }
  5244. },
  5245. "notification-url": "https://packagist.org/downloads/",
  5246. "license": [
  5247. "MIT"
  5248. ],
  5249. "authors": [
  5250. {
  5251. "name": "PHP-FIG",
  5252. "homepage": "https://www.php-fig.org/"
  5253. }
  5254. ],
  5255. "description": "Common interface for reading the clock.",
  5256. "homepage": "https://github.com/php-fig/clock",
  5257. "keywords": [
  5258. "clock",
  5259. "now",
  5260. "psr",
  5261. "psr-20",
  5262. "time"
  5263. ],
  5264. "support": {
  5265. "issues": "https://github.com/php-fig/clock/issues",
  5266. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5267. },
  5268. "time": "2022-11-25T14:36:26+00:00"
  5269. },
  5270. {
  5271. "name": "psr/container",
  5272. "version": "2.0.2",
  5273. "source": {
  5274. "type": "git",
  5275. "url": "https://github.com/php-fig/container.git",
  5276. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5277. },
  5278. "dist": {
  5279. "type": "zip",
  5280. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5281. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5282. "shasum": ""
  5283. },
  5284. "require": {
  5285. "php": ">=7.4.0"
  5286. },
  5287. "type": "library",
  5288. "extra": {
  5289. "branch-alias": {
  5290. "dev-master": "2.0.x-dev"
  5291. }
  5292. },
  5293. "autoload": {
  5294. "psr-4": {
  5295. "Psr\\Container\\": "src/"
  5296. }
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "PHP-FIG",
  5305. "homepage": "https://www.php-fig.org/"
  5306. }
  5307. ],
  5308. "description": "Common Container Interface (PHP FIG PSR-11)",
  5309. "homepage": "https://github.com/php-fig/container",
  5310. "keywords": [
  5311. "PSR-11",
  5312. "container",
  5313. "container-interface",
  5314. "container-interop",
  5315. "psr"
  5316. ],
  5317. "support": {
  5318. "issues": "https://github.com/php-fig/container/issues",
  5319. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5320. },
  5321. "time": "2021-11-05T16:47:00+00:00"
  5322. },
  5323. {
  5324. "name": "psr/event-dispatcher",
  5325. "version": "1.0.0",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://github.com/php-fig/event-dispatcher.git",
  5329. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5334. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5335. "shasum": ""
  5336. },
  5337. "require": {
  5338. "php": ">=7.2.0"
  5339. },
  5340. "type": "library",
  5341. "extra": {
  5342. "branch-alias": {
  5343. "dev-master": "1.0.x-dev"
  5344. }
  5345. },
  5346. "autoload": {
  5347. "psr-4": {
  5348. "Psr\\EventDispatcher\\": "src/"
  5349. }
  5350. },
  5351. "notification-url": "https://packagist.org/downloads/",
  5352. "license": [
  5353. "MIT"
  5354. ],
  5355. "authors": [
  5356. {
  5357. "name": "PHP-FIG",
  5358. "homepage": "http://www.php-fig.org/"
  5359. }
  5360. ],
  5361. "description": "Standard interfaces for event handling.",
  5362. "keywords": [
  5363. "events",
  5364. "psr",
  5365. "psr-14"
  5366. ],
  5367. "support": {
  5368. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5369. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5370. },
  5371. "time": "2019-01-08T18:20:26+00:00"
  5372. },
  5373. {
  5374. "name": "psr/http-client",
  5375. "version": "1.0.3",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://github.com/php-fig/http-client.git",
  5379. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5384. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5385. "shasum": ""
  5386. },
  5387. "require": {
  5388. "php": "^7.0 || ^8.0",
  5389. "psr/http-message": "^1.0 || ^2.0"
  5390. },
  5391. "type": "library",
  5392. "extra": {
  5393. "branch-alias": {
  5394. "dev-master": "1.0.x-dev"
  5395. }
  5396. },
  5397. "autoload": {
  5398. "psr-4": {
  5399. "Psr\\Http\\Client\\": "src/"
  5400. }
  5401. },
  5402. "notification-url": "https://packagist.org/downloads/",
  5403. "license": [
  5404. "MIT"
  5405. ],
  5406. "authors": [
  5407. {
  5408. "name": "PHP-FIG",
  5409. "homepage": "https://www.php-fig.org/"
  5410. }
  5411. ],
  5412. "description": "Common interface for HTTP clients",
  5413. "homepage": "https://github.com/php-fig/http-client",
  5414. "keywords": [
  5415. "http",
  5416. "http-client",
  5417. "psr",
  5418. "psr-18"
  5419. ],
  5420. "support": {
  5421. "source": "https://github.com/php-fig/http-client"
  5422. },
  5423. "time": "2023-09-23T14:17:50+00:00"
  5424. },
  5425. {
  5426. "name": "psr/http-factory",
  5427. "version": "1.1.0",
  5428. "source": {
  5429. "type": "git",
  5430. "url": "https://github.com/php-fig/http-factory.git",
  5431. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5432. },
  5433. "dist": {
  5434. "type": "zip",
  5435. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5436. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5437. "shasum": ""
  5438. },
  5439. "require": {
  5440. "php": ">=7.1",
  5441. "psr/http-message": "^1.0 || ^2.0"
  5442. },
  5443. "type": "library",
  5444. "extra": {
  5445. "branch-alias": {
  5446. "dev-master": "1.0.x-dev"
  5447. }
  5448. },
  5449. "autoload": {
  5450. "psr-4": {
  5451. "Psr\\Http\\Message\\": "src/"
  5452. }
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "MIT"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "PHP-FIG",
  5461. "homepage": "https://www.php-fig.org/"
  5462. }
  5463. ],
  5464. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5465. "keywords": [
  5466. "factory",
  5467. "http",
  5468. "message",
  5469. "psr",
  5470. "psr-17",
  5471. "psr-7",
  5472. "request",
  5473. "response"
  5474. ],
  5475. "support": {
  5476. "source": "https://github.com/php-fig/http-factory"
  5477. },
  5478. "time": "2024-04-15T12:06:14+00:00"
  5479. },
  5480. {
  5481. "name": "psr/http-message",
  5482. "version": "2.0",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/php-fig/http-message.git",
  5486. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5491. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5492. "shasum": ""
  5493. },
  5494. "require": {
  5495. "php": "^7.2 || ^8.0"
  5496. },
  5497. "type": "library",
  5498. "extra": {
  5499. "branch-alias": {
  5500. "dev-master": "2.0.x-dev"
  5501. }
  5502. },
  5503. "autoload": {
  5504. "psr-4": {
  5505. "Psr\\Http\\Message\\": "src/"
  5506. }
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "PHP-FIG",
  5515. "homepage": "https://www.php-fig.org/"
  5516. }
  5517. ],
  5518. "description": "Common interface for HTTP messages",
  5519. "homepage": "https://github.com/php-fig/http-message",
  5520. "keywords": [
  5521. "http",
  5522. "http-message",
  5523. "psr",
  5524. "psr-7",
  5525. "request",
  5526. "response"
  5527. ],
  5528. "support": {
  5529. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5530. },
  5531. "time": "2023-04-04T09:54:51+00:00"
  5532. },
  5533. {
  5534. "name": "psr/http-server-handler",
  5535. "version": "1.0.2",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://github.com/php-fig/http-server-handler.git",
  5539. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5540. },
  5541. "dist": {
  5542. "type": "zip",
  5543. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5544. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5545. "shasum": ""
  5546. },
  5547. "require": {
  5548. "php": ">=7.0",
  5549. "psr/http-message": "^1.0 || ^2.0"
  5550. },
  5551. "type": "library",
  5552. "extra": {
  5553. "branch-alias": {
  5554. "dev-master": "1.0.x-dev"
  5555. }
  5556. },
  5557. "autoload": {
  5558. "psr-4": {
  5559. "Psr\\Http\\Server\\": "src/"
  5560. }
  5561. },
  5562. "notification-url": "https://packagist.org/downloads/",
  5563. "license": [
  5564. "MIT"
  5565. ],
  5566. "authors": [
  5567. {
  5568. "name": "PHP-FIG",
  5569. "homepage": "https://www.php-fig.org/"
  5570. }
  5571. ],
  5572. "description": "Common interface for HTTP server-side request handler",
  5573. "keywords": [
  5574. "handler",
  5575. "http",
  5576. "http-interop",
  5577. "psr",
  5578. "psr-15",
  5579. "psr-7",
  5580. "request",
  5581. "response",
  5582. "server"
  5583. ],
  5584. "support": {
  5585. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5586. },
  5587. "time": "2023-04-10T20:06:20+00:00"
  5588. },
  5589. {
  5590. "name": "psr/http-server-middleware",
  5591. "version": "1.0.2",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/php-fig/http-server-middleware.git",
  5595. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5600. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "php": ">=7.0",
  5605. "psr/http-message": "^1.0 || ^2.0",
  5606. "psr/http-server-handler": "^1.0"
  5607. },
  5608. "type": "library",
  5609. "extra": {
  5610. "branch-alias": {
  5611. "dev-master": "1.0.x-dev"
  5612. }
  5613. },
  5614. "autoload": {
  5615. "psr-4": {
  5616. "Psr\\Http\\Server\\": "src/"
  5617. }
  5618. },
  5619. "notification-url": "https://packagist.org/downloads/",
  5620. "license": [
  5621. "MIT"
  5622. ],
  5623. "authors": [
  5624. {
  5625. "name": "PHP-FIG",
  5626. "homepage": "https://www.php-fig.org/"
  5627. }
  5628. ],
  5629. "description": "Common interface for HTTP server-side middleware",
  5630. "keywords": [
  5631. "http",
  5632. "http-interop",
  5633. "middleware",
  5634. "psr",
  5635. "psr-15",
  5636. "psr-7",
  5637. "request",
  5638. "response"
  5639. ],
  5640. "support": {
  5641. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5642. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5643. },
  5644. "time": "2023-04-11T06:14:47+00:00"
  5645. },
  5646. {
  5647. "name": "psr/log",
  5648. "version": "3.0.0",
  5649. "source": {
  5650. "type": "git",
  5651. "url": "https://github.com/php-fig/log.git",
  5652. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5653. },
  5654. "dist": {
  5655. "type": "zip",
  5656. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5657. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5658. "shasum": ""
  5659. },
  5660. "require": {
  5661. "php": ">=8.0.0"
  5662. },
  5663. "type": "library",
  5664. "extra": {
  5665. "branch-alias": {
  5666. "dev-master": "3.x-dev"
  5667. }
  5668. },
  5669. "autoload": {
  5670. "psr-4": {
  5671. "Psr\\Log\\": "src"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "PHP-FIG",
  5681. "homepage": "https://www.php-fig.org/"
  5682. }
  5683. ],
  5684. "description": "Common interface for logging libraries",
  5685. "homepage": "https://github.com/php-fig/log",
  5686. "keywords": [
  5687. "log",
  5688. "psr",
  5689. "psr-3"
  5690. ],
  5691. "support": {
  5692. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5693. },
  5694. "time": "2021-07-14T16:46:02+00:00"
  5695. },
  5696. {
  5697. "name": "psr/simple-cache",
  5698. "version": "3.0.0",
  5699. "source": {
  5700. "type": "git",
  5701. "url": "https://github.com/php-fig/simple-cache.git",
  5702. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5703. },
  5704. "dist": {
  5705. "type": "zip",
  5706. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5707. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5708. "shasum": ""
  5709. },
  5710. "require": {
  5711. "php": ">=8.0.0"
  5712. },
  5713. "type": "library",
  5714. "extra": {
  5715. "branch-alias": {
  5716. "dev-master": "3.0.x-dev"
  5717. }
  5718. },
  5719. "autoload": {
  5720. "psr-4": {
  5721. "Psr\\SimpleCache\\": "src/"
  5722. }
  5723. },
  5724. "notification-url": "https://packagist.org/downloads/",
  5725. "license": [
  5726. "MIT"
  5727. ],
  5728. "authors": [
  5729. {
  5730. "name": "PHP-FIG",
  5731. "homepage": "https://www.php-fig.org/"
  5732. }
  5733. ],
  5734. "description": "Common interfaces for simple caching",
  5735. "keywords": [
  5736. "cache",
  5737. "caching",
  5738. "psr",
  5739. "psr-16",
  5740. "simple-cache"
  5741. ],
  5742. "support": {
  5743. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5744. },
  5745. "time": "2021-10-29T13:26:27+00:00"
  5746. },
  5747. {
  5748. "name": "ralouphie/getallheaders",
  5749. "version": "3.0.3",
  5750. "source": {
  5751. "type": "git",
  5752. "url": "https://github.com/ralouphie/getallheaders.git",
  5753. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5754. },
  5755. "dist": {
  5756. "type": "zip",
  5757. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5758. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5759. "shasum": ""
  5760. },
  5761. "require": {
  5762. "php": ">=5.6"
  5763. },
  5764. "require-dev": {
  5765. "php-coveralls/php-coveralls": "^2.1",
  5766. "phpunit/phpunit": "^5 || ^6.5"
  5767. },
  5768. "type": "library",
  5769. "autoload": {
  5770. "files": [
  5771. "src/getallheaders.php"
  5772. ]
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "MIT"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "Ralph Khattar",
  5781. "email": "ralph.khattar@gmail.com"
  5782. }
  5783. ],
  5784. "description": "A polyfill for getallheaders.",
  5785. "support": {
  5786. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5787. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5788. },
  5789. "time": "2019-03-08T08:55:37+00:00"
  5790. },
  5791. {
  5792. "name": "swow/psr7-plus",
  5793. "version": "v1.1.2",
  5794. "source": {
  5795. "type": "git",
  5796. "url": "https://github.com/swow/psr7-plus.git",
  5797. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5798. },
  5799. "dist": {
  5800. "type": "zip",
  5801. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5802. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5803. "shasum": ""
  5804. },
  5805. "require": {
  5806. "php": ">=8.0",
  5807. "psr/http-client": "^1.0",
  5808. "psr/http-factory": "^1.0",
  5809. "psr/http-message": "^1.1|^2.0"
  5810. },
  5811. "type": "library",
  5812. "autoload": {
  5813. "psr-4": {
  5814. "Swow\\Psr7\\Message\\": "src/Message/"
  5815. }
  5816. },
  5817. "notification-url": "https://packagist.org/downloads/",
  5818. "license": [
  5819. "Apache-2.0"
  5820. ],
  5821. "authors": [
  5822. {
  5823. "name": "twose",
  5824. "email": "twosee@php.net"
  5825. }
  5826. ],
  5827. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5828. "keywords": [
  5829. "http",
  5830. "psr17",
  5831. "psr7",
  5832. "swow",
  5833. "websocket"
  5834. ],
  5835. "support": {
  5836. "issues": "https://github.com/swow/swow",
  5837. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5838. },
  5839. "time": "2023-06-15T09:18:11+00:00"
  5840. },
  5841. {
  5842. "name": "symfony/console",
  5843. "version": "v6.4.8",
  5844. "source": {
  5845. "type": "git",
  5846. "url": "https://github.com/symfony/console.git",
  5847. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5848. },
  5849. "dist": {
  5850. "type": "zip",
  5851. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5852. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5853. "shasum": ""
  5854. },
  5855. "require": {
  5856. "php": ">=8.1",
  5857. "symfony/deprecation-contracts": "^2.5|^3",
  5858. "symfony/polyfill-mbstring": "~1.0",
  5859. "symfony/service-contracts": "^2.5|^3",
  5860. "symfony/string": "^5.4|^6.0|^7.0"
  5861. },
  5862. "conflict": {
  5863. "symfony/dependency-injection": "<5.4",
  5864. "symfony/dotenv": "<5.4",
  5865. "symfony/event-dispatcher": "<5.4",
  5866. "symfony/lock": "<5.4",
  5867. "symfony/process": "<5.4"
  5868. },
  5869. "provide": {
  5870. "psr/log-implementation": "1.0|2.0|3.0"
  5871. },
  5872. "require-dev": {
  5873. "psr/log": "^1|^2|^3",
  5874. "symfony/config": "^5.4|^6.0|^7.0",
  5875. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5876. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5877. "symfony/http-foundation": "^6.4|^7.0",
  5878. "symfony/http-kernel": "^6.4|^7.0",
  5879. "symfony/lock": "^5.4|^6.0|^7.0",
  5880. "symfony/messenger": "^5.4|^6.0|^7.0",
  5881. "symfony/process": "^5.4|^6.0|^7.0",
  5882. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5883. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5884. },
  5885. "type": "library",
  5886. "autoload": {
  5887. "psr-4": {
  5888. "Symfony\\Component\\Console\\": ""
  5889. },
  5890. "exclude-from-classmap": [
  5891. "/Tests/"
  5892. ]
  5893. },
  5894. "notification-url": "https://packagist.org/downloads/",
  5895. "license": [
  5896. "MIT"
  5897. ],
  5898. "authors": [
  5899. {
  5900. "name": "Fabien Potencier",
  5901. "email": "fabien@symfony.com"
  5902. },
  5903. {
  5904. "name": "Symfony Community",
  5905. "homepage": "https://symfony.com/contributors"
  5906. }
  5907. ],
  5908. "description": "Eases the creation of beautiful and testable command line interfaces",
  5909. "homepage": "https://symfony.com",
  5910. "keywords": [
  5911. "cli",
  5912. "command-line",
  5913. "console",
  5914. "terminal"
  5915. ],
  5916. "support": {
  5917. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5918. },
  5919. "funding": [
  5920. {
  5921. "url": "https://symfony.com/sponsor",
  5922. "type": "custom"
  5923. },
  5924. {
  5925. "url": "https://github.com/fabpot",
  5926. "type": "github"
  5927. },
  5928. {
  5929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5930. "type": "tidelift"
  5931. }
  5932. ],
  5933. "time": "2024-05-31T14:49:08+00:00"
  5934. },
  5935. {
  5936. "name": "symfony/deprecation-contracts",
  5937. "version": "v3.5.0",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/symfony/deprecation-contracts.git",
  5941. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5946. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "php": ">=8.1"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-main": "3.5-dev"
  5956. },
  5957. "thanks": {
  5958. "name": "symfony/contracts",
  5959. "url": "https://github.com/symfony/contracts"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "files": [
  5964. "function.php"
  5965. ]
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Nicolas Grekas",
  5974. "email": "p@tchwork.com"
  5975. },
  5976. {
  5977. "name": "Symfony Community",
  5978. "homepage": "https://symfony.com/contributors"
  5979. }
  5980. ],
  5981. "description": "A generic function and convention to trigger deprecation notices",
  5982. "homepage": "https://symfony.com",
  5983. "support": {
  5984. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5985. },
  5986. "funding": [
  5987. {
  5988. "url": "https://symfony.com/sponsor",
  5989. "type": "custom"
  5990. },
  5991. {
  5992. "url": "https://github.com/fabpot",
  5993. "type": "github"
  5994. },
  5995. {
  5996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5997. "type": "tidelift"
  5998. }
  5999. ],
  6000. "time": "2024-04-18T09:32:20+00:00"
  6001. },
  6002. {
  6003. "name": "symfony/finder",
  6004. "version": "v6.4.8",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/symfony/finder.git",
  6008. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6013. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "php": ">=8.1"
  6018. },
  6019. "require-dev": {
  6020. "symfony/filesystem": "^6.0|^7.0"
  6021. },
  6022. "type": "library",
  6023. "autoload": {
  6024. "psr-4": {
  6025. "Symfony\\Component\\Finder\\": ""
  6026. },
  6027. "exclude-from-classmap": [
  6028. "/Tests/"
  6029. ]
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Fabien Potencier",
  6038. "email": "fabien@symfony.com"
  6039. },
  6040. {
  6041. "name": "Symfony Community",
  6042. "homepage": "https://symfony.com/contributors"
  6043. }
  6044. ],
  6045. "description": "Finds files and directories via an intuitive fluent interface",
  6046. "homepage": "https://symfony.com",
  6047. "support": {
  6048. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6049. },
  6050. "funding": [
  6051. {
  6052. "url": "https://symfony.com/sponsor",
  6053. "type": "custom"
  6054. },
  6055. {
  6056. "url": "https://github.com/fabpot",
  6057. "type": "github"
  6058. },
  6059. {
  6060. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6061. "type": "tidelift"
  6062. }
  6063. ],
  6064. "time": "2024-05-31T14:49:08+00:00"
  6065. },
  6066. {
  6067. "name": "symfony/polyfill-ctype",
  6068. "version": "v1.29.0",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/symfony/polyfill-ctype.git",
  6072. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6077. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6078. "shasum": ""
  6079. },
  6080. "require": {
  6081. "php": ">=7.1"
  6082. },
  6083. "provide": {
  6084. "ext-ctype": "*"
  6085. },
  6086. "suggest": {
  6087. "ext-ctype": "For best performance"
  6088. },
  6089. "type": "library",
  6090. "extra": {
  6091. "thanks": {
  6092. "name": "symfony/polyfill",
  6093. "url": "https://github.com/symfony/polyfill"
  6094. }
  6095. },
  6096. "autoload": {
  6097. "files": [
  6098. "bootstrap.php"
  6099. ],
  6100. "psr-4": {
  6101. "Symfony\\Polyfill\\Ctype\\": ""
  6102. }
  6103. },
  6104. "notification-url": "https://packagist.org/downloads/",
  6105. "license": [
  6106. "MIT"
  6107. ],
  6108. "authors": [
  6109. {
  6110. "name": "Gert de Pagter",
  6111. "email": "BackEndTea@gmail.com"
  6112. },
  6113. {
  6114. "name": "Symfony Community",
  6115. "homepage": "https://symfony.com/contributors"
  6116. }
  6117. ],
  6118. "description": "Symfony polyfill for ctype functions",
  6119. "homepage": "https://symfony.com",
  6120. "keywords": [
  6121. "compatibility",
  6122. "ctype",
  6123. "polyfill",
  6124. "portable"
  6125. ],
  6126. "support": {
  6127. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6128. },
  6129. "funding": [
  6130. {
  6131. "url": "https://symfony.com/sponsor",
  6132. "type": "custom"
  6133. },
  6134. {
  6135. "url": "https://github.com/fabpot",
  6136. "type": "github"
  6137. },
  6138. {
  6139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6140. "type": "tidelift"
  6141. }
  6142. ],
  6143. "time": "2024-01-29T20:11:03+00:00"
  6144. },
  6145. {
  6146. "name": "symfony/polyfill-intl-grapheme",
  6147. "version": "v1.29.0",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6151. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6152. },
  6153. "dist": {
  6154. "type": "zip",
  6155. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6156. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6157. "shasum": ""
  6158. },
  6159. "require": {
  6160. "php": ">=7.1"
  6161. },
  6162. "suggest": {
  6163. "ext-intl": "For best performance"
  6164. },
  6165. "type": "library",
  6166. "extra": {
  6167. "thanks": {
  6168. "name": "symfony/polyfill",
  6169. "url": "https://github.com/symfony/polyfill"
  6170. }
  6171. },
  6172. "autoload": {
  6173. "files": [
  6174. "bootstrap.php"
  6175. ],
  6176. "psr-4": {
  6177. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6178. }
  6179. },
  6180. "notification-url": "https://packagist.org/downloads/",
  6181. "license": [
  6182. "MIT"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "Nicolas Grekas",
  6187. "email": "p@tchwork.com"
  6188. },
  6189. {
  6190. "name": "Symfony Community",
  6191. "homepage": "https://symfony.com/contributors"
  6192. }
  6193. ],
  6194. "description": "Symfony polyfill for intl's grapheme_* functions",
  6195. "homepage": "https://symfony.com",
  6196. "keywords": [
  6197. "compatibility",
  6198. "grapheme",
  6199. "intl",
  6200. "polyfill",
  6201. "portable",
  6202. "shim"
  6203. ],
  6204. "support": {
  6205. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6206. },
  6207. "funding": [
  6208. {
  6209. "url": "https://symfony.com/sponsor",
  6210. "type": "custom"
  6211. },
  6212. {
  6213. "url": "https://github.com/fabpot",
  6214. "type": "github"
  6215. },
  6216. {
  6217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6218. "type": "tidelift"
  6219. }
  6220. ],
  6221. "time": "2024-01-29T20:11:03+00:00"
  6222. },
  6223. {
  6224. "name": "symfony/polyfill-intl-normalizer",
  6225. "version": "v1.29.0",
  6226. "source": {
  6227. "type": "git",
  6228. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6229. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6230. },
  6231. "dist": {
  6232. "type": "zip",
  6233. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6234. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6235. "shasum": ""
  6236. },
  6237. "require": {
  6238. "php": ">=7.1"
  6239. },
  6240. "suggest": {
  6241. "ext-intl": "For best performance"
  6242. },
  6243. "type": "library",
  6244. "extra": {
  6245. "thanks": {
  6246. "name": "symfony/polyfill",
  6247. "url": "https://github.com/symfony/polyfill"
  6248. }
  6249. },
  6250. "autoload": {
  6251. "files": [
  6252. "bootstrap.php"
  6253. ],
  6254. "psr-4": {
  6255. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6256. },
  6257. "classmap": [
  6258. "Resources/stubs"
  6259. ]
  6260. },
  6261. "notification-url": "https://packagist.org/downloads/",
  6262. "license": [
  6263. "MIT"
  6264. ],
  6265. "authors": [
  6266. {
  6267. "name": "Nicolas Grekas",
  6268. "email": "p@tchwork.com"
  6269. },
  6270. {
  6271. "name": "Symfony Community",
  6272. "homepage": "https://symfony.com/contributors"
  6273. }
  6274. ],
  6275. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6276. "homepage": "https://symfony.com",
  6277. "keywords": [
  6278. "compatibility",
  6279. "intl",
  6280. "normalizer",
  6281. "polyfill",
  6282. "portable",
  6283. "shim"
  6284. ],
  6285. "support": {
  6286. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6287. },
  6288. "funding": [
  6289. {
  6290. "url": "https://symfony.com/sponsor",
  6291. "type": "custom"
  6292. },
  6293. {
  6294. "url": "https://github.com/fabpot",
  6295. "type": "github"
  6296. },
  6297. {
  6298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6299. "type": "tidelift"
  6300. }
  6301. ],
  6302. "time": "2024-01-29T20:11:03+00:00"
  6303. },
  6304. {
  6305. "name": "symfony/polyfill-mbstring",
  6306. "version": "v1.29.0",
  6307. "source": {
  6308. "type": "git",
  6309. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6310. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6311. },
  6312. "dist": {
  6313. "type": "zip",
  6314. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6315. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6316. "shasum": ""
  6317. },
  6318. "require": {
  6319. "php": ">=7.1"
  6320. },
  6321. "provide": {
  6322. "ext-mbstring": "*"
  6323. },
  6324. "suggest": {
  6325. "ext-mbstring": "For best performance"
  6326. },
  6327. "type": "library",
  6328. "extra": {
  6329. "thanks": {
  6330. "name": "symfony/polyfill",
  6331. "url": "https://github.com/symfony/polyfill"
  6332. }
  6333. },
  6334. "autoload": {
  6335. "files": [
  6336. "bootstrap.php"
  6337. ],
  6338. "psr-4": {
  6339. "Symfony\\Polyfill\\Mbstring\\": ""
  6340. }
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "MIT"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Nicolas Grekas",
  6349. "email": "p@tchwork.com"
  6350. },
  6351. {
  6352. "name": "Symfony Community",
  6353. "homepage": "https://symfony.com/contributors"
  6354. }
  6355. ],
  6356. "description": "Symfony polyfill for the Mbstring extension",
  6357. "homepage": "https://symfony.com",
  6358. "keywords": [
  6359. "compatibility",
  6360. "mbstring",
  6361. "polyfill",
  6362. "portable",
  6363. "shim"
  6364. ],
  6365. "support": {
  6366. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6367. },
  6368. "funding": [
  6369. {
  6370. "url": "https://symfony.com/sponsor",
  6371. "type": "custom"
  6372. },
  6373. {
  6374. "url": "https://github.com/fabpot",
  6375. "type": "github"
  6376. },
  6377. {
  6378. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6379. "type": "tidelift"
  6380. }
  6381. ],
  6382. "time": "2024-01-29T20:11:03+00:00"
  6383. },
  6384. {
  6385. "name": "symfony/polyfill-php80",
  6386. "version": "v1.29.0",
  6387. "source": {
  6388. "type": "git",
  6389. "url": "https://github.com/symfony/polyfill-php80.git",
  6390. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6391. },
  6392. "dist": {
  6393. "type": "zip",
  6394. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6395. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6396. "shasum": ""
  6397. },
  6398. "require": {
  6399. "php": ">=7.1"
  6400. },
  6401. "type": "library",
  6402. "extra": {
  6403. "thanks": {
  6404. "name": "symfony/polyfill",
  6405. "url": "https://github.com/symfony/polyfill"
  6406. }
  6407. },
  6408. "autoload": {
  6409. "files": [
  6410. "bootstrap.php"
  6411. ],
  6412. "psr-4": {
  6413. "Symfony\\Polyfill\\Php80\\": ""
  6414. },
  6415. "classmap": [
  6416. "Resources/stubs"
  6417. ]
  6418. },
  6419. "notification-url": "https://packagist.org/downloads/",
  6420. "license": [
  6421. "MIT"
  6422. ],
  6423. "authors": [
  6424. {
  6425. "name": "Ion Bazan",
  6426. "email": "ion.bazan@gmail.com"
  6427. },
  6428. {
  6429. "name": "Nicolas Grekas",
  6430. "email": "p@tchwork.com"
  6431. },
  6432. {
  6433. "name": "Symfony Community",
  6434. "homepage": "https://symfony.com/contributors"
  6435. }
  6436. ],
  6437. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6438. "homepage": "https://symfony.com",
  6439. "keywords": [
  6440. "compatibility",
  6441. "polyfill",
  6442. "portable",
  6443. "shim"
  6444. ],
  6445. "support": {
  6446. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6447. },
  6448. "funding": [
  6449. {
  6450. "url": "https://symfony.com/sponsor",
  6451. "type": "custom"
  6452. },
  6453. {
  6454. "url": "https://github.com/fabpot",
  6455. "type": "github"
  6456. },
  6457. {
  6458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6459. "type": "tidelift"
  6460. }
  6461. ],
  6462. "time": "2024-01-29T20:11:03+00:00"
  6463. },
  6464. {
  6465. "name": "symfony/service-contracts",
  6466. "version": "v3.5.0",
  6467. "source": {
  6468. "type": "git",
  6469. "url": "https://github.com/symfony/service-contracts.git",
  6470. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6471. },
  6472. "dist": {
  6473. "type": "zip",
  6474. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6475. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6476. "shasum": ""
  6477. },
  6478. "require": {
  6479. "php": ">=8.1",
  6480. "psr/container": "^1.1|^2.0",
  6481. "symfony/deprecation-contracts": "^2.5|^3"
  6482. },
  6483. "conflict": {
  6484. "ext-psr": "<1.1|>=2"
  6485. },
  6486. "type": "library",
  6487. "extra": {
  6488. "branch-alias": {
  6489. "dev-main": "3.5-dev"
  6490. },
  6491. "thanks": {
  6492. "name": "symfony/contracts",
  6493. "url": "https://github.com/symfony/contracts"
  6494. }
  6495. },
  6496. "autoload": {
  6497. "psr-4": {
  6498. "Symfony\\Contracts\\Service\\": ""
  6499. },
  6500. "exclude-from-classmap": [
  6501. "/Test/"
  6502. ]
  6503. },
  6504. "notification-url": "https://packagist.org/downloads/",
  6505. "license": [
  6506. "MIT"
  6507. ],
  6508. "authors": [
  6509. {
  6510. "name": "Nicolas Grekas",
  6511. "email": "p@tchwork.com"
  6512. },
  6513. {
  6514. "name": "Symfony Community",
  6515. "homepage": "https://symfony.com/contributors"
  6516. }
  6517. ],
  6518. "description": "Generic abstractions related to writing services",
  6519. "homepage": "https://symfony.com",
  6520. "keywords": [
  6521. "abstractions",
  6522. "contracts",
  6523. "decoupling",
  6524. "interfaces",
  6525. "interoperability",
  6526. "standards"
  6527. ],
  6528. "support": {
  6529. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6530. },
  6531. "funding": [
  6532. {
  6533. "url": "https://symfony.com/sponsor",
  6534. "type": "custom"
  6535. },
  6536. {
  6537. "url": "https://github.com/fabpot",
  6538. "type": "github"
  6539. },
  6540. {
  6541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6542. "type": "tidelift"
  6543. }
  6544. ],
  6545. "time": "2024-04-18T09:32:20+00:00"
  6546. },
  6547. {
  6548. "name": "symfony/string",
  6549. "version": "v6.4.8",
  6550. "source": {
  6551. "type": "git",
  6552. "url": "https://github.com/symfony/string.git",
  6553. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6554. },
  6555. "dist": {
  6556. "type": "zip",
  6557. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6558. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6559. "shasum": ""
  6560. },
  6561. "require": {
  6562. "php": ">=8.1",
  6563. "symfony/polyfill-ctype": "~1.8",
  6564. "symfony/polyfill-intl-grapheme": "~1.0",
  6565. "symfony/polyfill-intl-normalizer": "~1.0",
  6566. "symfony/polyfill-mbstring": "~1.0"
  6567. },
  6568. "conflict": {
  6569. "symfony/translation-contracts": "<2.5"
  6570. },
  6571. "require-dev": {
  6572. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6573. "symfony/http-client": "^5.4|^6.0|^7.0",
  6574. "symfony/intl": "^6.2|^7.0",
  6575. "symfony/translation-contracts": "^2.5|^3.0",
  6576. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6577. },
  6578. "type": "library",
  6579. "autoload": {
  6580. "files": [
  6581. "Resources/functions.php"
  6582. ],
  6583. "psr-4": {
  6584. "Symfony\\Component\\String\\": ""
  6585. },
  6586. "exclude-from-classmap": [
  6587. "/Tests/"
  6588. ]
  6589. },
  6590. "notification-url": "https://packagist.org/downloads/",
  6591. "license": [
  6592. "MIT"
  6593. ],
  6594. "authors": [
  6595. {
  6596. "name": "Nicolas Grekas",
  6597. "email": "p@tchwork.com"
  6598. },
  6599. {
  6600. "name": "Symfony Community",
  6601. "homepage": "https://symfony.com/contributors"
  6602. }
  6603. ],
  6604. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6605. "homepage": "https://symfony.com",
  6606. "keywords": [
  6607. "grapheme",
  6608. "i18n",
  6609. "string",
  6610. "unicode",
  6611. "utf-8",
  6612. "utf8"
  6613. ],
  6614. "support": {
  6615. "source": "https://github.com/symfony/string/tree/v6.4.8"
  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-05-31T14:49:08+00:00"
  6632. },
  6633. {
  6634. "name": "symfony/translation",
  6635. "version": "v6.4.8",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://github.com/symfony/translation.git",
  6639. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6644. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6645. "shasum": ""
  6646. },
  6647. "require": {
  6648. "php": ">=8.1",
  6649. "symfony/deprecation-contracts": "^2.5|^3",
  6650. "symfony/polyfill-mbstring": "~1.0",
  6651. "symfony/translation-contracts": "^2.5|^3.0"
  6652. },
  6653. "conflict": {
  6654. "symfony/config": "<5.4",
  6655. "symfony/console": "<5.4",
  6656. "symfony/dependency-injection": "<5.4",
  6657. "symfony/http-client-contracts": "<2.5",
  6658. "symfony/http-kernel": "<5.4",
  6659. "symfony/service-contracts": "<2.5",
  6660. "symfony/twig-bundle": "<5.4",
  6661. "symfony/yaml": "<5.4"
  6662. },
  6663. "provide": {
  6664. "symfony/translation-implementation": "2.3|3.0"
  6665. },
  6666. "require-dev": {
  6667. "nikic/php-parser": "^4.18|^5.0",
  6668. "psr/log": "^1|^2|^3",
  6669. "symfony/config": "^5.4|^6.0|^7.0",
  6670. "symfony/console": "^5.4|^6.0|^7.0",
  6671. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6672. "symfony/finder": "^5.4|^6.0|^7.0",
  6673. "symfony/http-client-contracts": "^2.5|^3.0",
  6674. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6675. "symfony/intl": "^5.4|^6.0|^7.0",
  6676. "symfony/polyfill-intl-icu": "^1.21",
  6677. "symfony/routing": "^5.4|^6.0|^7.0",
  6678. "symfony/service-contracts": "^2.5|^3",
  6679. "symfony/yaml": "^5.4|^6.0|^7.0"
  6680. },
  6681. "type": "library",
  6682. "autoload": {
  6683. "files": [
  6684. "Resources/functions.php"
  6685. ],
  6686. "psr-4": {
  6687. "Symfony\\Component\\Translation\\": ""
  6688. },
  6689. "exclude-from-classmap": [
  6690. "/Tests/"
  6691. ]
  6692. },
  6693. "notification-url": "https://packagist.org/downloads/",
  6694. "license": [
  6695. "MIT"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "Fabien Potencier",
  6700. "email": "fabien@symfony.com"
  6701. },
  6702. {
  6703. "name": "Symfony Community",
  6704. "homepage": "https://symfony.com/contributors"
  6705. }
  6706. ],
  6707. "description": "Provides tools to internationalize your application",
  6708. "homepage": "https://symfony.com",
  6709. "support": {
  6710. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6711. },
  6712. "funding": [
  6713. {
  6714. "url": "https://symfony.com/sponsor",
  6715. "type": "custom"
  6716. },
  6717. {
  6718. "url": "https://github.com/fabpot",
  6719. "type": "github"
  6720. },
  6721. {
  6722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6723. "type": "tidelift"
  6724. }
  6725. ],
  6726. "time": "2024-05-31T14:49:08+00:00"
  6727. },
  6728. {
  6729. "name": "symfony/translation-contracts",
  6730. "version": "v3.5.0",
  6731. "source": {
  6732. "type": "git",
  6733. "url": "https://github.com/symfony/translation-contracts.git",
  6734. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6735. },
  6736. "dist": {
  6737. "type": "zip",
  6738. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6739. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6740. "shasum": ""
  6741. },
  6742. "require": {
  6743. "php": ">=8.1"
  6744. },
  6745. "type": "library",
  6746. "extra": {
  6747. "branch-alias": {
  6748. "dev-main": "3.5-dev"
  6749. },
  6750. "thanks": {
  6751. "name": "symfony/contracts",
  6752. "url": "https://github.com/symfony/contracts"
  6753. }
  6754. },
  6755. "autoload": {
  6756. "psr-4": {
  6757. "Symfony\\Contracts\\Translation\\": ""
  6758. },
  6759. "exclude-from-classmap": [
  6760. "/Test/"
  6761. ]
  6762. },
  6763. "notification-url": "https://packagist.org/downloads/",
  6764. "license": [
  6765. "MIT"
  6766. ],
  6767. "authors": [
  6768. {
  6769. "name": "Nicolas Grekas",
  6770. "email": "p@tchwork.com"
  6771. },
  6772. {
  6773. "name": "Symfony Community",
  6774. "homepage": "https://symfony.com/contributors"
  6775. }
  6776. ],
  6777. "description": "Generic abstractions related to translation",
  6778. "homepage": "https://symfony.com",
  6779. "keywords": [
  6780. "abstractions",
  6781. "contracts",
  6782. "decoupling",
  6783. "interfaces",
  6784. "interoperability",
  6785. "standards"
  6786. ],
  6787. "support": {
  6788. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6789. },
  6790. "funding": [
  6791. {
  6792. "url": "https://symfony.com/sponsor",
  6793. "type": "custom"
  6794. },
  6795. {
  6796. "url": "https://github.com/fabpot",
  6797. "type": "github"
  6798. },
  6799. {
  6800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6801. "type": "tidelift"
  6802. }
  6803. ],
  6804. "time": "2024-04-18T09:32:20+00:00"
  6805. },
  6806. {
  6807. "name": "vlucas/phpdotenv",
  6808. "version": "v5.6.0",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/vlucas/phpdotenv.git",
  6812. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6817. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6818. "shasum": ""
  6819. },
  6820. "require": {
  6821. "ext-pcre": "*",
  6822. "graham-campbell/result-type": "^1.1.2",
  6823. "php": "^7.2.5 || ^8.0",
  6824. "phpoption/phpoption": "^1.9.2",
  6825. "symfony/polyfill-ctype": "^1.24",
  6826. "symfony/polyfill-mbstring": "^1.24",
  6827. "symfony/polyfill-php80": "^1.24"
  6828. },
  6829. "require-dev": {
  6830. "bamarni/composer-bin-plugin": "^1.8.2",
  6831. "ext-filter": "*",
  6832. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6833. },
  6834. "suggest": {
  6835. "ext-filter": "Required to use the boolean validator."
  6836. },
  6837. "type": "library",
  6838. "extra": {
  6839. "bamarni-bin": {
  6840. "bin-links": true,
  6841. "forward-command": true
  6842. },
  6843. "branch-alias": {
  6844. "dev-master": "5.6-dev"
  6845. }
  6846. },
  6847. "autoload": {
  6848. "psr-4": {
  6849. "Dotenv\\": "src/"
  6850. }
  6851. },
  6852. "notification-url": "https://packagist.org/downloads/",
  6853. "license": [
  6854. "BSD-3-Clause"
  6855. ],
  6856. "authors": [
  6857. {
  6858. "name": "Graham Campbell",
  6859. "email": "hello@gjcampbell.co.uk",
  6860. "homepage": "https://github.com/GrahamCampbell"
  6861. },
  6862. {
  6863. "name": "Vance Lucas",
  6864. "email": "vance@vancelucas.com",
  6865. "homepage": "https://github.com/vlucas"
  6866. }
  6867. ],
  6868. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6869. "keywords": [
  6870. "dotenv",
  6871. "env",
  6872. "environment"
  6873. ],
  6874. "support": {
  6875. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6876. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6877. },
  6878. "funding": [
  6879. {
  6880. "url": "https://github.com/GrahamCampbell",
  6881. "type": "github"
  6882. },
  6883. {
  6884. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6885. "type": "tidelift"
  6886. }
  6887. ],
  6888. "time": "2023-11-12T22:43:29+00:00"
  6889. }
  6890. ],
  6891. "packages-dev": [
  6892. {
  6893. "name": "clue/ndjson-react",
  6894. "version": "v1.3.0",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/clue/reactphp-ndjson.git",
  6898. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6903. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=5.3",
  6908. "react/stream": "^1.2"
  6909. },
  6910. "require-dev": {
  6911. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6912. "react/event-loop": "^1.2"
  6913. },
  6914. "type": "library",
  6915. "autoload": {
  6916. "psr-4": {
  6917. "Clue\\React\\NDJson\\": "src/"
  6918. }
  6919. },
  6920. "notification-url": "https://packagist.org/downloads/",
  6921. "license": [
  6922. "MIT"
  6923. ],
  6924. "authors": [
  6925. {
  6926. "name": "Christian Lück",
  6927. "email": "christian@clue.engineering"
  6928. }
  6929. ],
  6930. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6931. "homepage": "https://github.com/clue/reactphp-ndjson",
  6932. "keywords": [
  6933. "NDJSON",
  6934. "json",
  6935. "jsonlines",
  6936. "newline",
  6937. "reactphp",
  6938. "streaming"
  6939. ],
  6940. "support": {
  6941. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6942. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6943. },
  6944. "funding": [
  6945. {
  6946. "url": "https://clue.engineering/support",
  6947. "type": "custom"
  6948. },
  6949. {
  6950. "url": "https://github.com/clue",
  6951. "type": "github"
  6952. }
  6953. ],
  6954. "time": "2022-12-23T10:58:28+00:00"
  6955. },
  6956. {
  6957. "name": "composer/pcre",
  6958. "version": "3.1.4",
  6959. "source": {
  6960. "type": "git",
  6961. "url": "https://github.com/composer/pcre.git",
  6962. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  6963. },
  6964. "dist": {
  6965. "type": "zip",
  6966. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  6967. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  6968. "shasum": ""
  6969. },
  6970. "require": {
  6971. "php": "^7.4 || ^8.0"
  6972. },
  6973. "require-dev": {
  6974. "phpstan/phpstan": "^1.3",
  6975. "phpstan/phpstan-strict-rules": "^1.1",
  6976. "symfony/phpunit-bridge": "^5"
  6977. },
  6978. "type": "library",
  6979. "extra": {
  6980. "branch-alias": {
  6981. "dev-main": "3.x-dev"
  6982. }
  6983. },
  6984. "autoload": {
  6985. "psr-4": {
  6986. "Composer\\Pcre\\": "src"
  6987. }
  6988. },
  6989. "notification-url": "https://packagist.org/downloads/",
  6990. "license": [
  6991. "MIT"
  6992. ],
  6993. "authors": [
  6994. {
  6995. "name": "Jordi Boggiano",
  6996. "email": "j.boggiano@seld.be",
  6997. "homepage": "http://seld.be"
  6998. }
  6999. ],
  7000. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7001. "keywords": [
  7002. "PCRE",
  7003. "preg",
  7004. "regex",
  7005. "regular expression"
  7006. ],
  7007. "support": {
  7008. "issues": "https://github.com/composer/pcre/issues",
  7009. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7010. },
  7011. "funding": [
  7012. {
  7013. "url": "https://packagist.com",
  7014. "type": "custom"
  7015. },
  7016. {
  7017. "url": "https://github.com/composer",
  7018. "type": "github"
  7019. },
  7020. {
  7021. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7022. "type": "tidelift"
  7023. }
  7024. ],
  7025. "time": "2024-05-27T13:40:54+00:00"
  7026. },
  7027. {
  7028. "name": "composer/semver",
  7029. "version": "3.4.0",
  7030. "source": {
  7031. "type": "git",
  7032. "url": "https://github.com/composer/semver.git",
  7033. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7034. },
  7035. "dist": {
  7036. "type": "zip",
  7037. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7038. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7039. "shasum": ""
  7040. },
  7041. "require": {
  7042. "php": "^5.3.2 || ^7.0 || ^8.0"
  7043. },
  7044. "require-dev": {
  7045. "phpstan/phpstan": "^1.4",
  7046. "symfony/phpunit-bridge": "^4.2 || ^5"
  7047. },
  7048. "type": "library",
  7049. "extra": {
  7050. "branch-alias": {
  7051. "dev-main": "3.x-dev"
  7052. }
  7053. },
  7054. "autoload": {
  7055. "psr-4": {
  7056. "Composer\\Semver\\": "src"
  7057. }
  7058. },
  7059. "notification-url": "https://packagist.org/downloads/",
  7060. "license": [
  7061. "MIT"
  7062. ],
  7063. "authors": [
  7064. {
  7065. "name": "Nils Adermann",
  7066. "email": "naderman@naderman.de",
  7067. "homepage": "http://www.naderman.de"
  7068. },
  7069. {
  7070. "name": "Jordi Boggiano",
  7071. "email": "j.boggiano@seld.be",
  7072. "homepage": "http://seld.be"
  7073. },
  7074. {
  7075. "name": "Rob Bast",
  7076. "email": "rob.bast@gmail.com",
  7077. "homepage": "http://robbast.nl"
  7078. }
  7079. ],
  7080. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7081. "keywords": [
  7082. "semantic",
  7083. "semver",
  7084. "validation",
  7085. "versioning"
  7086. ],
  7087. "support": {
  7088. "irc": "ircs://irc.libera.chat:6697/composer",
  7089. "issues": "https://github.com/composer/semver/issues",
  7090. "source": "https://github.com/composer/semver/tree/3.4.0"
  7091. },
  7092. "funding": [
  7093. {
  7094. "url": "https://packagist.com",
  7095. "type": "custom"
  7096. },
  7097. {
  7098. "url": "https://github.com/composer",
  7099. "type": "github"
  7100. },
  7101. {
  7102. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7103. "type": "tidelift"
  7104. }
  7105. ],
  7106. "time": "2023-08-31T09:50:34+00:00"
  7107. },
  7108. {
  7109. "name": "composer/xdebug-handler",
  7110. "version": "3.0.5",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://github.com/composer/xdebug-handler.git",
  7114. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7119. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7120. "shasum": ""
  7121. },
  7122. "require": {
  7123. "composer/pcre": "^1 || ^2 || ^3",
  7124. "php": "^7.2.5 || ^8.0",
  7125. "psr/log": "^1 || ^2 || ^3"
  7126. },
  7127. "require-dev": {
  7128. "phpstan/phpstan": "^1.0",
  7129. "phpstan/phpstan-strict-rules": "^1.1",
  7130. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7131. },
  7132. "type": "library",
  7133. "autoload": {
  7134. "psr-4": {
  7135. "Composer\\XdebugHandler\\": "src"
  7136. }
  7137. },
  7138. "notification-url": "https://packagist.org/downloads/",
  7139. "license": [
  7140. "MIT"
  7141. ],
  7142. "authors": [
  7143. {
  7144. "name": "John Stevenson",
  7145. "email": "john-stevenson@blueyonder.co.uk"
  7146. }
  7147. ],
  7148. "description": "Restarts a process without Xdebug.",
  7149. "keywords": [
  7150. "Xdebug",
  7151. "performance"
  7152. ],
  7153. "support": {
  7154. "irc": "ircs://irc.libera.chat:6697/composer",
  7155. "issues": "https://github.com/composer/xdebug-handler/issues",
  7156. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7157. },
  7158. "funding": [
  7159. {
  7160. "url": "https://packagist.com",
  7161. "type": "custom"
  7162. },
  7163. {
  7164. "url": "https://github.com/composer",
  7165. "type": "github"
  7166. },
  7167. {
  7168. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7169. "type": "tidelift"
  7170. }
  7171. ],
  7172. "time": "2024-05-06T16:37:16+00:00"
  7173. },
  7174. {
  7175. "name": "evenement/evenement",
  7176. "version": "v3.0.2",
  7177. "source": {
  7178. "type": "git",
  7179. "url": "https://github.com/igorw/evenement.git",
  7180. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7181. },
  7182. "dist": {
  7183. "type": "zip",
  7184. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7185. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7186. "shasum": ""
  7187. },
  7188. "require": {
  7189. "php": ">=7.0"
  7190. },
  7191. "require-dev": {
  7192. "phpunit/phpunit": "^9 || ^6"
  7193. },
  7194. "type": "library",
  7195. "autoload": {
  7196. "psr-4": {
  7197. "Evenement\\": "src/"
  7198. }
  7199. },
  7200. "notification-url": "https://packagist.org/downloads/",
  7201. "license": [
  7202. "MIT"
  7203. ],
  7204. "authors": [
  7205. {
  7206. "name": "Igor Wiedler",
  7207. "email": "igor@wiedler.ch"
  7208. }
  7209. ],
  7210. "description": "Événement is a very simple event dispatching library for PHP",
  7211. "keywords": [
  7212. "event-dispatcher",
  7213. "event-emitter"
  7214. ],
  7215. "support": {
  7216. "issues": "https://github.com/igorw/evenement/issues",
  7217. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7218. },
  7219. "time": "2023-08-08T05:53:35+00:00"
  7220. },
  7221. {
  7222. "name": "fidry/cpu-core-counter",
  7223. "version": "1.1.0",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7227. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7232. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7233. "shasum": ""
  7234. },
  7235. "require": {
  7236. "php": "^7.2 || ^8.0"
  7237. },
  7238. "require-dev": {
  7239. "fidry/makefile": "^0.2.0",
  7240. "fidry/php-cs-fixer-config": "^1.1.2",
  7241. "phpstan/extension-installer": "^1.2.0",
  7242. "phpstan/phpstan": "^1.9.2",
  7243. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7244. "phpstan/phpstan-phpunit": "^1.2.2",
  7245. "phpstan/phpstan-strict-rules": "^1.4.4",
  7246. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7247. "webmozarts/strict-phpunit": "^7.5"
  7248. },
  7249. "type": "library",
  7250. "autoload": {
  7251. "psr-4": {
  7252. "Fidry\\CpuCoreCounter\\": "src/"
  7253. }
  7254. },
  7255. "notification-url": "https://packagist.org/downloads/",
  7256. "license": [
  7257. "MIT"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Théo FIDRY",
  7262. "email": "theo.fidry@gmail.com"
  7263. }
  7264. ],
  7265. "description": "Tiny utility to get the number of CPU cores.",
  7266. "keywords": [
  7267. "CPU",
  7268. "core"
  7269. ],
  7270. "support": {
  7271. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7272. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7273. },
  7274. "funding": [
  7275. {
  7276. "url": "https://github.com/theofidry",
  7277. "type": "github"
  7278. }
  7279. ],
  7280. "time": "2024-02-07T09:43:46+00:00"
  7281. },
  7282. {
  7283. "name": "friendsofphp/php-cs-fixer",
  7284. "version": "v3.58.1",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7288. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7293. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "clue/ndjson-react": "^1.0",
  7298. "composer/semver": "^3.4",
  7299. "composer/xdebug-handler": "^3.0.3",
  7300. "ext-filter": "*",
  7301. "ext-json": "*",
  7302. "ext-tokenizer": "*",
  7303. "fidry/cpu-core-counter": "^1.0",
  7304. "php": "^7.4 || ^8.0",
  7305. "react/child-process": "^0.6.5",
  7306. "react/event-loop": "^1.0",
  7307. "react/promise": "^2.0 || ^3.0",
  7308. "react/socket": "^1.0",
  7309. "react/stream": "^1.0",
  7310. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7311. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7312. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7313. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7314. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7315. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7316. "symfony/polyfill-mbstring": "^1.28",
  7317. "symfony/polyfill-php80": "^1.28",
  7318. "symfony/polyfill-php81": "^1.28",
  7319. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7320. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7321. },
  7322. "require-dev": {
  7323. "facile-it/paraunit": "^1.3 || ^2.0",
  7324. "infection/infection": "^0.27.11",
  7325. "justinrainbow/json-schema": "^5.2",
  7326. "keradus/cli-executor": "^2.1",
  7327. "mikey179/vfsstream": "^1.6.11",
  7328. "php-coveralls/php-coveralls": "^2.7",
  7329. "php-cs-fixer/accessible-object": "^1.1",
  7330. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7331. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7332. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7333. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7334. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7335. },
  7336. "suggest": {
  7337. "ext-dom": "For handling output formats in XML",
  7338. "ext-mbstring": "For handling non-UTF8 characters."
  7339. },
  7340. "bin": [
  7341. "php-cs-fixer"
  7342. ],
  7343. "type": "application",
  7344. "autoload": {
  7345. "psr-4": {
  7346. "PhpCsFixer\\": "src/"
  7347. }
  7348. },
  7349. "notification-url": "https://packagist.org/downloads/",
  7350. "license": [
  7351. "MIT"
  7352. ],
  7353. "authors": [
  7354. {
  7355. "name": "Fabien Potencier",
  7356. "email": "fabien@symfony.com"
  7357. },
  7358. {
  7359. "name": "Dariusz Rumiński",
  7360. "email": "dariusz.ruminski@gmail.com"
  7361. }
  7362. ],
  7363. "description": "A tool to automatically fix PHP code style",
  7364. "keywords": [
  7365. "Static code analysis",
  7366. "fixer",
  7367. "standards",
  7368. "static analysis"
  7369. ],
  7370. "support": {
  7371. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7372. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7373. },
  7374. "funding": [
  7375. {
  7376. "url": "https://github.com/keradus",
  7377. "type": "github"
  7378. }
  7379. ],
  7380. "time": "2024-05-29T16:39:07+00:00"
  7381. },
  7382. {
  7383. "name": "hamcrest/hamcrest-php",
  7384. "version": "v2.0.1",
  7385. "source": {
  7386. "type": "git",
  7387. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7388. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7389. },
  7390. "dist": {
  7391. "type": "zip",
  7392. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7393. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7394. "shasum": ""
  7395. },
  7396. "require": {
  7397. "php": "^5.3|^7.0|^8.0"
  7398. },
  7399. "replace": {
  7400. "cordoval/hamcrest-php": "*",
  7401. "davedevelopment/hamcrest-php": "*",
  7402. "kodova/hamcrest-php": "*"
  7403. },
  7404. "require-dev": {
  7405. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7406. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7407. },
  7408. "type": "library",
  7409. "extra": {
  7410. "branch-alias": {
  7411. "dev-master": "2.1-dev"
  7412. }
  7413. },
  7414. "autoload": {
  7415. "classmap": [
  7416. "hamcrest"
  7417. ]
  7418. },
  7419. "notification-url": "https://packagist.org/downloads/",
  7420. "license": [
  7421. "BSD-3-Clause"
  7422. ],
  7423. "description": "This is the PHP port of Hamcrest Matchers",
  7424. "keywords": [
  7425. "test"
  7426. ],
  7427. "support": {
  7428. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7429. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7430. },
  7431. "time": "2020-07-09T08:09:16+00:00"
  7432. },
  7433. {
  7434. "name": "hyperf/devtool",
  7435. "version": "v3.1.19",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/hyperf/devtool.git",
  7439. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7444. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "hyperf/code-parser": "~3.1.0",
  7449. "hyperf/command": "~3.1.0",
  7450. "hyperf/contract": "~3.1.0",
  7451. "hyperf/di": "~3.1.0",
  7452. "hyperf/support": "~3.1.0",
  7453. "hyperf/utils": "~3.1.0",
  7454. "php": ">=8.1"
  7455. },
  7456. "type": "library",
  7457. "extra": {
  7458. "branch-alias": {
  7459. "dev-master": "3.1-dev"
  7460. },
  7461. "hyperf": {
  7462. "config": "Hyperf\\Devtool\\ConfigProvider"
  7463. }
  7464. },
  7465. "autoload": {
  7466. "psr-4": {
  7467. "Hyperf\\Devtool\\": "src/"
  7468. }
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "MIT"
  7473. ],
  7474. "description": "A Devtool for Hyperf.",
  7475. "homepage": "https://hyperf.io",
  7476. "keywords": [
  7477. "dev",
  7478. "devtool",
  7479. "hyperf",
  7480. "php",
  7481. "swoole"
  7482. ],
  7483. "support": {
  7484. "docs": "https://hyperf.wiki",
  7485. "issues": "https://github.com/hyperf/hyperf/issues",
  7486. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7487. "source": "https://github.com/hyperf/hyperf"
  7488. },
  7489. "funding": [
  7490. {
  7491. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7492. "type": "custom"
  7493. },
  7494. {
  7495. "url": "https://opencollective.com/hyperf",
  7496. "type": "open_collective"
  7497. }
  7498. ],
  7499. "time": "2024-04-13T06:53:08+00:00"
  7500. },
  7501. {
  7502. "name": "hyperf/testing",
  7503. "version": "v3.1.21",
  7504. "source": {
  7505. "type": "git",
  7506. "url": "https://github.com/hyperf/testing.git",
  7507. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7508. },
  7509. "dist": {
  7510. "type": "zip",
  7511. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7512. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7513. "shasum": ""
  7514. },
  7515. "require": {
  7516. "hyperf/codec": "~3.1.0",
  7517. "hyperf/collection": "~3.1.0",
  7518. "hyperf/contract": "~3.1.0",
  7519. "hyperf/coroutine": "~3.1.0",
  7520. "hyperf/http-message": "~3.1.0",
  7521. "hyperf/http-server": "~3.1.0",
  7522. "hyperf/support": "~3.1.0",
  7523. "hyperf/utils": "~3.1.0",
  7524. "php": ">=8.1",
  7525. "phpunit/phpunit": "^10.0",
  7526. "psr/container": "^1.0|^2.0",
  7527. "symfony/http-foundation": "^5.4|^6.0"
  7528. },
  7529. "suggest": {
  7530. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7531. },
  7532. "bin": [
  7533. "co-phpunit"
  7534. ],
  7535. "type": "library",
  7536. "extra": {
  7537. "branch-alias": {
  7538. "dev-master": "3.1-dev"
  7539. }
  7540. },
  7541. "autoload": {
  7542. "psr-4": {
  7543. "Hyperf\\Testing\\": "src/"
  7544. }
  7545. },
  7546. "notification-url": "https://packagist.org/downloads/",
  7547. "license": [
  7548. "MIT"
  7549. ],
  7550. "description": "Testing for hyperf",
  7551. "keywords": [
  7552. "dev",
  7553. "php",
  7554. "swoole",
  7555. "testing"
  7556. ],
  7557. "support": {
  7558. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7559. },
  7560. "funding": [
  7561. {
  7562. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7563. "type": "custom"
  7564. },
  7565. {
  7566. "url": "https://opencollective.com/hyperf",
  7567. "type": "open_collective"
  7568. }
  7569. ],
  7570. "time": "2024-05-07T05:34:51+00:00"
  7571. },
  7572. {
  7573. "name": "hyperf/watcher",
  7574. "version": "v3.1.21",
  7575. "source": {
  7576. "type": "git",
  7577. "url": "https://github.com/hyperf/watcher.git",
  7578. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7579. },
  7580. "dist": {
  7581. "type": "zip",
  7582. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7583. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7584. "shasum": ""
  7585. },
  7586. "require": {
  7587. "ext-posix": "*",
  7588. "hyperf/codec": "~3.1.0",
  7589. "hyperf/command": "~3.1.0",
  7590. "hyperf/di": "~3.1.0",
  7591. "hyperf/framework": "~3.1.0",
  7592. "hyperf/support": "~3.1.0",
  7593. "php": ">=8.1"
  7594. },
  7595. "type": "library",
  7596. "extra": {
  7597. "branch-alias": {
  7598. "dev-master": "3.1-dev"
  7599. },
  7600. "hyperf": {
  7601. "config": "Hyperf\\Watcher\\ConfigProvider"
  7602. }
  7603. },
  7604. "autoload": {
  7605. "files": [
  7606. "src/Functions.php"
  7607. ],
  7608. "psr-4": {
  7609. "Hyperf\\Watcher\\": "src/"
  7610. }
  7611. },
  7612. "notification-url": "https://packagist.org/downloads/",
  7613. "license": [
  7614. "MIT"
  7615. ],
  7616. "description": "Hot reload watcher for Hyperf",
  7617. "keywords": [
  7618. "dev",
  7619. "hyperf",
  7620. "php"
  7621. ],
  7622. "support": {
  7623. "issues": "https://github.com/hyperf/watcher/issues",
  7624. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7625. },
  7626. "funding": [
  7627. {
  7628. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7629. "type": "custom"
  7630. },
  7631. {
  7632. "url": "https://opencollective.com/hyperf",
  7633. "type": "open_collective"
  7634. }
  7635. ],
  7636. "time": "2024-05-09T13:40:44+00:00"
  7637. },
  7638. {
  7639. "name": "mockery/mockery",
  7640. "version": "1.6.12",
  7641. "source": {
  7642. "type": "git",
  7643. "url": "https://github.com/mockery/mockery.git",
  7644. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7645. },
  7646. "dist": {
  7647. "type": "zip",
  7648. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7649. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7650. "shasum": ""
  7651. },
  7652. "require": {
  7653. "hamcrest/hamcrest-php": "^2.0.1",
  7654. "lib-pcre": ">=7.0",
  7655. "php": ">=7.3"
  7656. },
  7657. "conflict": {
  7658. "phpunit/phpunit": "<8.0"
  7659. },
  7660. "require-dev": {
  7661. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7662. "symplify/easy-coding-standard": "^12.1.14"
  7663. },
  7664. "type": "library",
  7665. "autoload": {
  7666. "files": [
  7667. "library/helpers.php",
  7668. "library/Mockery.php"
  7669. ],
  7670. "psr-4": {
  7671. "Mockery\\": "library/Mockery"
  7672. }
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "BSD-3-Clause"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "Pádraic Brady",
  7681. "email": "padraic.brady@gmail.com",
  7682. "homepage": "https://github.com/padraic",
  7683. "role": "Author"
  7684. },
  7685. {
  7686. "name": "Dave Marshall",
  7687. "email": "dave.marshall@atstsolutions.co.uk",
  7688. "homepage": "https://davedevelopment.co.uk",
  7689. "role": "Developer"
  7690. },
  7691. {
  7692. "name": "Nathanael Esayeas",
  7693. "email": "nathanael.esayeas@protonmail.com",
  7694. "homepage": "https://github.com/ghostwriter",
  7695. "role": "Lead Developer"
  7696. }
  7697. ],
  7698. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7699. "homepage": "https://github.com/mockery/mockery",
  7700. "keywords": [
  7701. "BDD",
  7702. "TDD",
  7703. "library",
  7704. "mock",
  7705. "mock objects",
  7706. "mockery",
  7707. "stub",
  7708. "test",
  7709. "test double",
  7710. "testing"
  7711. ],
  7712. "support": {
  7713. "docs": "https://docs.mockery.io/",
  7714. "issues": "https://github.com/mockery/mockery/issues",
  7715. "rss": "https://github.com/mockery/mockery/releases.atom",
  7716. "security": "https://github.com/mockery/mockery/security/advisories",
  7717. "source": "https://github.com/mockery/mockery"
  7718. },
  7719. "time": "2024-05-16T03:13:13+00:00"
  7720. },
  7721. {
  7722. "name": "myclabs/deep-copy",
  7723. "version": "1.11.1",
  7724. "source": {
  7725. "type": "git",
  7726. "url": "https://github.com/myclabs/DeepCopy.git",
  7727. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7728. },
  7729. "dist": {
  7730. "type": "zip",
  7731. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7732. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7733. "shasum": ""
  7734. },
  7735. "require": {
  7736. "php": "^7.1 || ^8.0"
  7737. },
  7738. "conflict": {
  7739. "doctrine/collections": "<1.6.8",
  7740. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7741. },
  7742. "require-dev": {
  7743. "doctrine/collections": "^1.6.8",
  7744. "doctrine/common": "^2.13.3 || ^3.2.2",
  7745. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7746. },
  7747. "type": "library",
  7748. "autoload": {
  7749. "files": [
  7750. "src/DeepCopy/deep_copy.php"
  7751. ],
  7752. "psr-4": {
  7753. "DeepCopy\\": "src/DeepCopy/"
  7754. }
  7755. },
  7756. "notification-url": "https://packagist.org/downloads/",
  7757. "license": [
  7758. "MIT"
  7759. ],
  7760. "description": "Create deep copies (clones) of your objects",
  7761. "keywords": [
  7762. "clone",
  7763. "copy",
  7764. "duplicate",
  7765. "object",
  7766. "object graph"
  7767. ],
  7768. "support": {
  7769. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7770. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7771. },
  7772. "funding": [
  7773. {
  7774. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7775. "type": "tidelift"
  7776. }
  7777. ],
  7778. "time": "2023-03-08T13:26:56+00:00"
  7779. },
  7780. {
  7781. "name": "phar-io/manifest",
  7782. "version": "2.0.4",
  7783. "source": {
  7784. "type": "git",
  7785. "url": "https://github.com/phar-io/manifest.git",
  7786. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7787. },
  7788. "dist": {
  7789. "type": "zip",
  7790. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7791. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7792. "shasum": ""
  7793. },
  7794. "require": {
  7795. "ext-dom": "*",
  7796. "ext-libxml": "*",
  7797. "ext-phar": "*",
  7798. "ext-xmlwriter": "*",
  7799. "phar-io/version": "^3.0.1",
  7800. "php": "^7.2 || ^8.0"
  7801. },
  7802. "type": "library",
  7803. "extra": {
  7804. "branch-alias": {
  7805. "dev-master": "2.0.x-dev"
  7806. }
  7807. },
  7808. "autoload": {
  7809. "classmap": [
  7810. "src/"
  7811. ]
  7812. },
  7813. "notification-url": "https://packagist.org/downloads/",
  7814. "license": [
  7815. "BSD-3-Clause"
  7816. ],
  7817. "authors": [
  7818. {
  7819. "name": "Arne Blankerts",
  7820. "email": "arne@blankerts.de",
  7821. "role": "Developer"
  7822. },
  7823. {
  7824. "name": "Sebastian Heuer",
  7825. "email": "sebastian@phpeople.de",
  7826. "role": "Developer"
  7827. },
  7828. {
  7829. "name": "Sebastian Bergmann",
  7830. "email": "sebastian@phpunit.de",
  7831. "role": "Developer"
  7832. }
  7833. ],
  7834. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7835. "support": {
  7836. "issues": "https://github.com/phar-io/manifest/issues",
  7837. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://github.com/theseer",
  7842. "type": "github"
  7843. }
  7844. ],
  7845. "time": "2024-03-03T12:33:53+00:00"
  7846. },
  7847. {
  7848. "name": "phar-io/version",
  7849. "version": "3.2.1",
  7850. "source": {
  7851. "type": "git",
  7852. "url": "https://github.com/phar-io/version.git",
  7853. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7854. },
  7855. "dist": {
  7856. "type": "zip",
  7857. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7858. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7859. "shasum": ""
  7860. },
  7861. "require": {
  7862. "php": "^7.2 || ^8.0"
  7863. },
  7864. "type": "library",
  7865. "autoload": {
  7866. "classmap": [
  7867. "src/"
  7868. ]
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "BSD-3-Clause"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Arne Blankerts",
  7877. "email": "arne@blankerts.de",
  7878. "role": "Developer"
  7879. },
  7880. {
  7881. "name": "Sebastian Heuer",
  7882. "email": "sebastian@phpeople.de",
  7883. "role": "Developer"
  7884. },
  7885. {
  7886. "name": "Sebastian Bergmann",
  7887. "email": "sebastian@phpunit.de",
  7888. "role": "Developer"
  7889. }
  7890. ],
  7891. "description": "Library for handling version information and constraints",
  7892. "support": {
  7893. "issues": "https://github.com/phar-io/version/issues",
  7894. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7895. },
  7896. "time": "2022-02-21T01:04:05+00:00"
  7897. },
  7898. {
  7899. "name": "phpstan/phpstan",
  7900. "version": "1.11.3",
  7901. "source": {
  7902. "type": "git",
  7903. "url": "https://github.com/phpstan/phpstan.git",
  7904. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  7905. },
  7906. "dist": {
  7907. "type": "zip",
  7908. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7909. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7910. "shasum": ""
  7911. },
  7912. "require": {
  7913. "php": "^7.2|^8.0"
  7914. },
  7915. "conflict": {
  7916. "phpstan/phpstan-shim": "*"
  7917. },
  7918. "bin": [
  7919. "phpstan",
  7920. "phpstan.phar"
  7921. ],
  7922. "type": "library",
  7923. "autoload": {
  7924. "files": [
  7925. "bootstrap.php"
  7926. ]
  7927. },
  7928. "notification-url": "https://packagist.org/downloads/",
  7929. "license": [
  7930. "MIT"
  7931. ],
  7932. "description": "PHPStan - PHP Static Analysis Tool",
  7933. "keywords": [
  7934. "dev",
  7935. "static analysis"
  7936. ],
  7937. "support": {
  7938. "docs": "https://phpstan.org/user-guide/getting-started",
  7939. "forum": "https://github.com/phpstan/phpstan/discussions",
  7940. "issues": "https://github.com/phpstan/phpstan/issues",
  7941. "security": "https://github.com/phpstan/phpstan/security/policy",
  7942. "source": "https://github.com/phpstan/phpstan-src"
  7943. },
  7944. "funding": [
  7945. {
  7946. "url": "https://github.com/ondrejmirtes",
  7947. "type": "github"
  7948. },
  7949. {
  7950. "url": "https://github.com/phpstan",
  7951. "type": "github"
  7952. }
  7953. ],
  7954. "time": "2024-05-31T13:53:37+00:00"
  7955. },
  7956. {
  7957. "name": "phpunit/php-code-coverage",
  7958. "version": "10.1.14",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7962. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7967. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7968. "shasum": ""
  7969. },
  7970. "require": {
  7971. "ext-dom": "*",
  7972. "ext-libxml": "*",
  7973. "ext-xmlwriter": "*",
  7974. "nikic/php-parser": "^4.18 || ^5.0",
  7975. "php": ">=8.1",
  7976. "phpunit/php-file-iterator": "^4.0",
  7977. "phpunit/php-text-template": "^3.0",
  7978. "sebastian/code-unit-reverse-lookup": "^3.0",
  7979. "sebastian/complexity": "^3.0",
  7980. "sebastian/environment": "^6.0",
  7981. "sebastian/lines-of-code": "^2.0",
  7982. "sebastian/version": "^4.0",
  7983. "theseer/tokenizer": "^1.2.0"
  7984. },
  7985. "require-dev": {
  7986. "phpunit/phpunit": "^10.1"
  7987. },
  7988. "suggest": {
  7989. "ext-pcov": "PHP extension that provides line coverage",
  7990. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7991. },
  7992. "type": "library",
  7993. "extra": {
  7994. "branch-alias": {
  7995. "dev-main": "10.1-dev"
  7996. }
  7997. },
  7998. "autoload": {
  7999. "classmap": [
  8000. "src/"
  8001. ]
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "BSD-3-Clause"
  8006. ],
  8007. "authors": [
  8008. {
  8009. "name": "Sebastian Bergmann",
  8010. "email": "sebastian@phpunit.de",
  8011. "role": "lead"
  8012. }
  8013. ],
  8014. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8015. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8016. "keywords": [
  8017. "coverage",
  8018. "testing",
  8019. "xunit"
  8020. ],
  8021. "support": {
  8022. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8023. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8024. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8025. },
  8026. "funding": [
  8027. {
  8028. "url": "https://github.com/sebastianbergmann",
  8029. "type": "github"
  8030. }
  8031. ],
  8032. "time": "2024-03-12T15:33:41+00:00"
  8033. },
  8034. {
  8035. "name": "phpunit/php-file-iterator",
  8036. "version": "4.1.0",
  8037. "source": {
  8038. "type": "git",
  8039. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8040. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8041. },
  8042. "dist": {
  8043. "type": "zip",
  8044. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8045. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8046. "shasum": ""
  8047. },
  8048. "require": {
  8049. "php": ">=8.1"
  8050. },
  8051. "require-dev": {
  8052. "phpunit/phpunit": "^10.0"
  8053. },
  8054. "type": "library",
  8055. "extra": {
  8056. "branch-alias": {
  8057. "dev-main": "4.0-dev"
  8058. }
  8059. },
  8060. "autoload": {
  8061. "classmap": [
  8062. "src/"
  8063. ]
  8064. },
  8065. "notification-url": "https://packagist.org/downloads/",
  8066. "license": [
  8067. "BSD-3-Clause"
  8068. ],
  8069. "authors": [
  8070. {
  8071. "name": "Sebastian Bergmann",
  8072. "email": "sebastian@phpunit.de",
  8073. "role": "lead"
  8074. }
  8075. ],
  8076. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8077. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8078. "keywords": [
  8079. "filesystem",
  8080. "iterator"
  8081. ],
  8082. "support": {
  8083. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8084. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8085. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8086. },
  8087. "funding": [
  8088. {
  8089. "url": "https://github.com/sebastianbergmann",
  8090. "type": "github"
  8091. }
  8092. ],
  8093. "time": "2023-08-31T06:24:48+00:00"
  8094. },
  8095. {
  8096. "name": "phpunit/php-invoker",
  8097. "version": "4.0.0",
  8098. "source": {
  8099. "type": "git",
  8100. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8101. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8102. },
  8103. "dist": {
  8104. "type": "zip",
  8105. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8106. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8107. "shasum": ""
  8108. },
  8109. "require": {
  8110. "php": ">=8.1"
  8111. },
  8112. "require-dev": {
  8113. "ext-pcntl": "*",
  8114. "phpunit/phpunit": "^10.0"
  8115. },
  8116. "suggest": {
  8117. "ext-pcntl": "*"
  8118. },
  8119. "type": "library",
  8120. "extra": {
  8121. "branch-alias": {
  8122. "dev-main": "4.0-dev"
  8123. }
  8124. },
  8125. "autoload": {
  8126. "classmap": [
  8127. "src/"
  8128. ]
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "BSD-3-Clause"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Sebastian Bergmann",
  8137. "email": "sebastian@phpunit.de",
  8138. "role": "lead"
  8139. }
  8140. ],
  8141. "description": "Invoke callables with a timeout",
  8142. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8143. "keywords": [
  8144. "process"
  8145. ],
  8146. "support": {
  8147. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8148. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8149. },
  8150. "funding": [
  8151. {
  8152. "url": "https://github.com/sebastianbergmann",
  8153. "type": "github"
  8154. }
  8155. ],
  8156. "time": "2023-02-03T06:56:09+00:00"
  8157. },
  8158. {
  8159. "name": "phpunit/php-text-template",
  8160. "version": "3.0.1",
  8161. "source": {
  8162. "type": "git",
  8163. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8164. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8165. },
  8166. "dist": {
  8167. "type": "zip",
  8168. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8169. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8170. "shasum": ""
  8171. },
  8172. "require": {
  8173. "php": ">=8.1"
  8174. },
  8175. "require-dev": {
  8176. "phpunit/phpunit": "^10.0"
  8177. },
  8178. "type": "library",
  8179. "extra": {
  8180. "branch-alias": {
  8181. "dev-main": "3.0-dev"
  8182. }
  8183. },
  8184. "autoload": {
  8185. "classmap": [
  8186. "src/"
  8187. ]
  8188. },
  8189. "notification-url": "https://packagist.org/downloads/",
  8190. "license": [
  8191. "BSD-3-Clause"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Sebastian Bergmann",
  8196. "email": "sebastian@phpunit.de",
  8197. "role": "lead"
  8198. }
  8199. ],
  8200. "description": "Simple template engine.",
  8201. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8202. "keywords": [
  8203. "template"
  8204. ],
  8205. "support": {
  8206. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8207. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8208. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8209. },
  8210. "funding": [
  8211. {
  8212. "url": "https://github.com/sebastianbergmann",
  8213. "type": "github"
  8214. }
  8215. ],
  8216. "time": "2023-08-31T14:07:24+00:00"
  8217. },
  8218. {
  8219. "name": "phpunit/php-timer",
  8220. "version": "6.0.0",
  8221. "source": {
  8222. "type": "git",
  8223. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8224. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8225. },
  8226. "dist": {
  8227. "type": "zip",
  8228. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8229. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8230. "shasum": ""
  8231. },
  8232. "require": {
  8233. "php": ">=8.1"
  8234. },
  8235. "require-dev": {
  8236. "phpunit/phpunit": "^10.0"
  8237. },
  8238. "type": "library",
  8239. "extra": {
  8240. "branch-alias": {
  8241. "dev-main": "6.0-dev"
  8242. }
  8243. },
  8244. "autoload": {
  8245. "classmap": [
  8246. "src/"
  8247. ]
  8248. },
  8249. "notification-url": "https://packagist.org/downloads/",
  8250. "license": [
  8251. "BSD-3-Clause"
  8252. ],
  8253. "authors": [
  8254. {
  8255. "name": "Sebastian Bergmann",
  8256. "email": "sebastian@phpunit.de",
  8257. "role": "lead"
  8258. }
  8259. ],
  8260. "description": "Utility class for timing",
  8261. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8262. "keywords": [
  8263. "timer"
  8264. ],
  8265. "support": {
  8266. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8267. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8268. },
  8269. "funding": [
  8270. {
  8271. "url": "https://github.com/sebastianbergmann",
  8272. "type": "github"
  8273. }
  8274. ],
  8275. "time": "2023-02-03T06:57:52+00:00"
  8276. },
  8277. {
  8278. "name": "phpunit/phpunit",
  8279. "version": "10.5.20",
  8280. "source": {
  8281. "type": "git",
  8282. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8283. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8284. },
  8285. "dist": {
  8286. "type": "zip",
  8287. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8288. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8289. "shasum": ""
  8290. },
  8291. "require": {
  8292. "ext-dom": "*",
  8293. "ext-json": "*",
  8294. "ext-libxml": "*",
  8295. "ext-mbstring": "*",
  8296. "ext-xml": "*",
  8297. "ext-xmlwriter": "*",
  8298. "myclabs/deep-copy": "^1.10.1",
  8299. "phar-io/manifest": "^2.0.3",
  8300. "phar-io/version": "^3.0.2",
  8301. "php": ">=8.1",
  8302. "phpunit/php-code-coverage": "^10.1.5",
  8303. "phpunit/php-file-iterator": "^4.0",
  8304. "phpunit/php-invoker": "^4.0",
  8305. "phpunit/php-text-template": "^3.0",
  8306. "phpunit/php-timer": "^6.0",
  8307. "sebastian/cli-parser": "^2.0",
  8308. "sebastian/code-unit": "^2.0",
  8309. "sebastian/comparator": "^5.0",
  8310. "sebastian/diff": "^5.0",
  8311. "sebastian/environment": "^6.0",
  8312. "sebastian/exporter": "^5.1",
  8313. "sebastian/global-state": "^6.0.1",
  8314. "sebastian/object-enumerator": "^5.0",
  8315. "sebastian/recursion-context": "^5.0",
  8316. "sebastian/type": "^4.0",
  8317. "sebastian/version": "^4.0"
  8318. },
  8319. "suggest": {
  8320. "ext-soap": "To be able to generate mocks based on WSDL files"
  8321. },
  8322. "bin": [
  8323. "phpunit"
  8324. ],
  8325. "type": "library",
  8326. "extra": {
  8327. "branch-alias": {
  8328. "dev-main": "10.5-dev"
  8329. }
  8330. },
  8331. "autoload": {
  8332. "files": [
  8333. "src/Framework/Assert/Functions.php"
  8334. ],
  8335. "classmap": [
  8336. "src/"
  8337. ]
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "BSD-3-Clause"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Sebastian Bergmann",
  8346. "email": "sebastian@phpunit.de",
  8347. "role": "lead"
  8348. }
  8349. ],
  8350. "description": "The PHP Unit Testing framework.",
  8351. "homepage": "https://phpunit.de/",
  8352. "keywords": [
  8353. "phpunit",
  8354. "testing",
  8355. "xunit"
  8356. ],
  8357. "support": {
  8358. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8359. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8360. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8361. },
  8362. "funding": [
  8363. {
  8364. "url": "https://phpunit.de/sponsors.html",
  8365. "type": "custom"
  8366. },
  8367. {
  8368. "url": "https://github.com/sebastianbergmann",
  8369. "type": "github"
  8370. },
  8371. {
  8372. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8373. "type": "tidelift"
  8374. }
  8375. ],
  8376. "time": "2024-04-24T06:32:35+00:00"
  8377. },
  8378. {
  8379. "name": "react/cache",
  8380. "version": "v1.2.0",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/reactphp/cache.git",
  8384. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8389. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8390. "shasum": ""
  8391. },
  8392. "require": {
  8393. "php": ">=5.3.0",
  8394. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8395. },
  8396. "require-dev": {
  8397. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8398. },
  8399. "type": "library",
  8400. "autoload": {
  8401. "psr-4": {
  8402. "React\\Cache\\": "src/"
  8403. }
  8404. },
  8405. "notification-url": "https://packagist.org/downloads/",
  8406. "license": [
  8407. "MIT"
  8408. ],
  8409. "authors": [
  8410. {
  8411. "name": "Christian Lück",
  8412. "email": "christian@clue.engineering",
  8413. "homepage": "https://clue.engineering/"
  8414. },
  8415. {
  8416. "name": "Cees-Jan Kiewiet",
  8417. "email": "reactphp@ceesjankiewiet.nl",
  8418. "homepage": "https://wyrihaximus.net/"
  8419. },
  8420. {
  8421. "name": "Jan Sorgalla",
  8422. "email": "jsorgalla@gmail.com",
  8423. "homepage": "https://sorgalla.com/"
  8424. },
  8425. {
  8426. "name": "Chris Boden",
  8427. "email": "cboden@gmail.com",
  8428. "homepage": "https://cboden.dev/"
  8429. }
  8430. ],
  8431. "description": "Async, Promise-based cache interface for ReactPHP",
  8432. "keywords": [
  8433. "cache",
  8434. "caching",
  8435. "promise",
  8436. "reactphp"
  8437. ],
  8438. "support": {
  8439. "issues": "https://github.com/reactphp/cache/issues",
  8440. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8441. },
  8442. "funding": [
  8443. {
  8444. "url": "https://opencollective.com/reactphp",
  8445. "type": "open_collective"
  8446. }
  8447. ],
  8448. "time": "2022-11-30T15:59:55+00:00"
  8449. },
  8450. {
  8451. "name": "react/child-process",
  8452. "version": "v0.6.5",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/reactphp/child-process.git",
  8456. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8461. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8462. "shasum": ""
  8463. },
  8464. "require": {
  8465. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8466. "php": ">=5.3.0",
  8467. "react/event-loop": "^1.2",
  8468. "react/stream": "^1.2"
  8469. },
  8470. "require-dev": {
  8471. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8472. "react/socket": "^1.8",
  8473. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8474. },
  8475. "type": "library",
  8476. "autoload": {
  8477. "psr-4": {
  8478. "React\\ChildProcess\\": "src"
  8479. }
  8480. },
  8481. "notification-url": "https://packagist.org/downloads/",
  8482. "license": [
  8483. "MIT"
  8484. ],
  8485. "authors": [
  8486. {
  8487. "name": "Christian Lück",
  8488. "email": "christian@clue.engineering",
  8489. "homepage": "https://clue.engineering/"
  8490. },
  8491. {
  8492. "name": "Cees-Jan Kiewiet",
  8493. "email": "reactphp@ceesjankiewiet.nl",
  8494. "homepage": "https://wyrihaximus.net/"
  8495. },
  8496. {
  8497. "name": "Jan Sorgalla",
  8498. "email": "jsorgalla@gmail.com",
  8499. "homepage": "https://sorgalla.com/"
  8500. },
  8501. {
  8502. "name": "Chris Boden",
  8503. "email": "cboden@gmail.com",
  8504. "homepage": "https://cboden.dev/"
  8505. }
  8506. ],
  8507. "description": "Event-driven library for executing child processes with ReactPHP.",
  8508. "keywords": [
  8509. "event-driven",
  8510. "process",
  8511. "reactphp"
  8512. ],
  8513. "support": {
  8514. "issues": "https://github.com/reactphp/child-process/issues",
  8515. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8516. },
  8517. "funding": [
  8518. {
  8519. "url": "https://github.com/WyriHaximus",
  8520. "type": "github"
  8521. },
  8522. {
  8523. "url": "https://github.com/clue",
  8524. "type": "github"
  8525. }
  8526. ],
  8527. "time": "2022-09-16T13:41:56+00:00"
  8528. },
  8529. {
  8530. "name": "react/dns",
  8531. "version": "v1.12.0",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/reactphp/dns.git",
  8535. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8540. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8541. "shasum": ""
  8542. },
  8543. "require": {
  8544. "php": ">=5.3.0",
  8545. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8546. "react/event-loop": "^1.2",
  8547. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8548. },
  8549. "require-dev": {
  8550. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8551. "react/async": "^4 || ^3 || ^2",
  8552. "react/promise-timer": "^1.9"
  8553. },
  8554. "type": "library",
  8555. "autoload": {
  8556. "psr-4": {
  8557. "React\\Dns\\": "src/"
  8558. }
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Christian Lück",
  8567. "email": "christian@clue.engineering",
  8568. "homepage": "https://clue.engineering/"
  8569. },
  8570. {
  8571. "name": "Cees-Jan Kiewiet",
  8572. "email": "reactphp@ceesjankiewiet.nl",
  8573. "homepage": "https://wyrihaximus.net/"
  8574. },
  8575. {
  8576. "name": "Jan Sorgalla",
  8577. "email": "jsorgalla@gmail.com",
  8578. "homepage": "https://sorgalla.com/"
  8579. },
  8580. {
  8581. "name": "Chris Boden",
  8582. "email": "cboden@gmail.com",
  8583. "homepage": "https://cboden.dev/"
  8584. }
  8585. ],
  8586. "description": "Async DNS resolver for ReactPHP",
  8587. "keywords": [
  8588. "async",
  8589. "dns",
  8590. "dns-resolver",
  8591. "reactphp"
  8592. ],
  8593. "support": {
  8594. "issues": "https://github.com/reactphp/dns/issues",
  8595. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8596. },
  8597. "funding": [
  8598. {
  8599. "url": "https://opencollective.com/reactphp",
  8600. "type": "open_collective"
  8601. }
  8602. ],
  8603. "time": "2023-11-29T12:41:06+00:00"
  8604. },
  8605. {
  8606. "name": "react/event-loop",
  8607. "version": "v1.5.0",
  8608. "source": {
  8609. "type": "git",
  8610. "url": "https://github.com/reactphp/event-loop.git",
  8611. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8612. },
  8613. "dist": {
  8614. "type": "zip",
  8615. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8616. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8617. "shasum": ""
  8618. },
  8619. "require": {
  8620. "php": ">=5.3.0"
  8621. },
  8622. "require-dev": {
  8623. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8624. },
  8625. "suggest": {
  8626. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8627. },
  8628. "type": "library",
  8629. "autoload": {
  8630. "psr-4": {
  8631. "React\\EventLoop\\": "src/"
  8632. }
  8633. },
  8634. "notification-url": "https://packagist.org/downloads/",
  8635. "license": [
  8636. "MIT"
  8637. ],
  8638. "authors": [
  8639. {
  8640. "name": "Christian Lück",
  8641. "email": "christian@clue.engineering",
  8642. "homepage": "https://clue.engineering/"
  8643. },
  8644. {
  8645. "name": "Cees-Jan Kiewiet",
  8646. "email": "reactphp@ceesjankiewiet.nl",
  8647. "homepage": "https://wyrihaximus.net/"
  8648. },
  8649. {
  8650. "name": "Jan Sorgalla",
  8651. "email": "jsorgalla@gmail.com",
  8652. "homepage": "https://sorgalla.com/"
  8653. },
  8654. {
  8655. "name": "Chris Boden",
  8656. "email": "cboden@gmail.com",
  8657. "homepage": "https://cboden.dev/"
  8658. }
  8659. ],
  8660. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8661. "keywords": [
  8662. "asynchronous",
  8663. "event-loop"
  8664. ],
  8665. "support": {
  8666. "issues": "https://github.com/reactphp/event-loop/issues",
  8667. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8668. },
  8669. "funding": [
  8670. {
  8671. "url": "https://opencollective.com/reactphp",
  8672. "type": "open_collective"
  8673. }
  8674. ],
  8675. "time": "2023-11-13T13:48:05+00:00"
  8676. },
  8677. {
  8678. "name": "react/promise",
  8679. "version": "v3.2.0",
  8680. "source": {
  8681. "type": "git",
  8682. "url": "https://github.com/reactphp/promise.git",
  8683. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8684. },
  8685. "dist": {
  8686. "type": "zip",
  8687. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8688. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8689. "shasum": ""
  8690. },
  8691. "require": {
  8692. "php": ">=7.1.0"
  8693. },
  8694. "require-dev": {
  8695. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8696. "phpunit/phpunit": "^9.6 || ^7.5"
  8697. },
  8698. "type": "library",
  8699. "autoload": {
  8700. "files": [
  8701. "src/functions_include.php"
  8702. ],
  8703. "psr-4": {
  8704. "React\\Promise\\": "src/"
  8705. }
  8706. },
  8707. "notification-url": "https://packagist.org/downloads/",
  8708. "license": [
  8709. "MIT"
  8710. ],
  8711. "authors": [
  8712. {
  8713. "name": "Jan Sorgalla",
  8714. "email": "jsorgalla@gmail.com",
  8715. "homepage": "https://sorgalla.com/"
  8716. },
  8717. {
  8718. "name": "Christian Lück",
  8719. "email": "christian@clue.engineering",
  8720. "homepage": "https://clue.engineering/"
  8721. },
  8722. {
  8723. "name": "Cees-Jan Kiewiet",
  8724. "email": "reactphp@ceesjankiewiet.nl",
  8725. "homepage": "https://wyrihaximus.net/"
  8726. },
  8727. {
  8728. "name": "Chris Boden",
  8729. "email": "cboden@gmail.com",
  8730. "homepage": "https://cboden.dev/"
  8731. }
  8732. ],
  8733. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8734. "keywords": [
  8735. "promise",
  8736. "promises"
  8737. ],
  8738. "support": {
  8739. "issues": "https://github.com/reactphp/promise/issues",
  8740. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8741. },
  8742. "funding": [
  8743. {
  8744. "url": "https://opencollective.com/reactphp",
  8745. "type": "open_collective"
  8746. }
  8747. ],
  8748. "time": "2024-05-24T10:39:05+00:00"
  8749. },
  8750. {
  8751. "name": "react/socket",
  8752. "version": "v1.15.0",
  8753. "source": {
  8754. "type": "git",
  8755. "url": "https://github.com/reactphp/socket.git",
  8756. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8757. },
  8758. "dist": {
  8759. "type": "zip",
  8760. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8761. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8762. "shasum": ""
  8763. },
  8764. "require": {
  8765. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8766. "php": ">=5.3.0",
  8767. "react/dns": "^1.11",
  8768. "react/event-loop": "^1.2",
  8769. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8770. "react/stream": "^1.2"
  8771. },
  8772. "require-dev": {
  8773. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8774. "react/async": "^4 || ^3 || ^2",
  8775. "react/promise-stream": "^1.4",
  8776. "react/promise-timer": "^1.10"
  8777. },
  8778. "type": "library",
  8779. "autoload": {
  8780. "psr-4": {
  8781. "React\\Socket\\": "src/"
  8782. }
  8783. },
  8784. "notification-url": "https://packagist.org/downloads/",
  8785. "license": [
  8786. "MIT"
  8787. ],
  8788. "authors": [
  8789. {
  8790. "name": "Christian Lück",
  8791. "email": "christian@clue.engineering",
  8792. "homepage": "https://clue.engineering/"
  8793. },
  8794. {
  8795. "name": "Cees-Jan Kiewiet",
  8796. "email": "reactphp@ceesjankiewiet.nl",
  8797. "homepage": "https://wyrihaximus.net/"
  8798. },
  8799. {
  8800. "name": "Jan Sorgalla",
  8801. "email": "jsorgalla@gmail.com",
  8802. "homepage": "https://sorgalla.com/"
  8803. },
  8804. {
  8805. "name": "Chris Boden",
  8806. "email": "cboden@gmail.com",
  8807. "homepage": "https://cboden.dev/"
  8808. }
  8809. ],
  8810. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8811. "keywords": [
  8812. "Connection",
  8813. "Socket",
  8814. "async",
  8815. "reactphp",
  8816. "stream"
  8817. ],
  8818. "support": {
  8819. "issues": "https://github.com/reactphp/socket/issues",
  8820. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8821. },
  8822. "funding": [
  8823. {
  8824. "url": "https://opencollective.com/reactphp",
  8825. "type": "open_collective"
  8826. }
  8827. ],
  8828. "time": "2023-12-15T11:02:10+00:00"
  8829. },
  8830. {
  8831. "name": "react/stream",
  8832. "version": "v1.3.0",
  8833. "source": {
  8834. "type": "git",
  8835. "url": "https://github.com/reactphp/stream.git",
  8836. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8837. },
  8838. "dist": {
  8839. "type": "zip",
  8840. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8841. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8842. "shasum": ""
  8843. },
  8844. "require": {
  8845. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8846. "php": ">=5.3.8",
  8847. "react/event-loop": "^1.2"
  8848. },
  8849. "require-dev": {
  8850. "clue/stream-filter": "~1.2",
  8851. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8852. },
  8853. "type": "library",
  8854. "autoload": {
  8855. "psr-4": {
  8856. "React\\Stream\\": "src/"
  8857. }
  8858. },
  8859. "notification-url": "https://packagist.org/downloads/",
  8860. "license": [
  8861. "MIT"
  8862. ],
  8863. "authors": [
  8864. {
  8865. "name": "Christian Lück",
  8866. "email": "christian@clue.engineering",
  8867. "homepage": "https://clue.engineering/"
  8868. },
  8869. {
  8870. "name": "Cees-Jan Kiewiet",
  8871. "email": "reactphp@ceesjankiewiet.nl",
  8872. "homepage": "https://wyrihaximus.net/"
  8873. },
  8874. {
  8875. "name": "Jan Sorgalla",
  8876. "email": "jsorgalla@gmail.com",
  8877. "homepage": "https://sorgalla.com/"
  8878. },
  8879. {
  8880. "name": "Chris Boden",
  8881. "email": "cboden@gmail.com",
  8882. "homepage": "https://cboden.dev/"
  8883. }
  8884. ],
  8885. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8886. "keywords": [
  8887. "event-driven",
  8888. "io",
  8889. "non-blocking",
  8890. "pipe",
  8891. "reactphp",
  8892. "readable",
  8893. "stream",
  8894. "writable"
  8895. ],
  8896. "support": {
  8897. "issues": "https://github.com/reactphp/stream/issues",
  8898. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  8899. },
  8900. "funding": [
  8901. {
  8902. "url": "https://opencollective.com/reactphp",
  8903. "type": "open_collective"
  8904. }
  8905. ],
  8906. "time": "2023-06-16T10:52:11+00:00"
  8907. },
  8908. {
  8909. "name": "sebastian/cli-parser",
  8910. "version": "2.0.1",
  8911. "source": {
  8912. "type": "git",
  8913. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8914. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8915. },
  8916. "dist": {
  8917. "type": "zip",
  8918. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8919. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8920. "shasum": ""
  8921. },
  8922. "require": {
  8923. "php": ">=8.1"
  8924. },
  8925. "require-dev": {
  8926. "phpunit/phpunit": "^10.0"
  8927. },
  8928. "type": "library",
  8929. "extra": {
  8930. "branch-alias": {
  8931. "dev-main": "2.0-dev"
  8932. }
  8933. },
  8934. "autoload": {
  8935. "classmap": [
  8936. "src/"
  8937. ]
  8938. },
  8939. "notification-url": "https://packagist.org/downloads/",
  8940. "license": [
  8941. "BSD-3-Clause"
  8942. ],
  8943. "authors": [
  8944. {
  8945. "name": "Sebastian Bergmann",
  8946. "email": "sebastian@phpunit.de",
  8947. "role": "lead"
  8948. }
  8949. ],
  8950. "description": "Library for parsing CLI options",
  8951. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8952. "support": {
  8953. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8954. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8955. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8956. },
  8957. "funding": [
  8958. {
  8959. "url": "https://github.com/sebastianbergmann",
  8960. "type": "github"
  8961. }
  8962. ],
  8963. "time": "2024-03-02T07:12:49+00:00"
  8964. },
  8965. {
  8966. "name": "sebastian/code-unit",
  8967. "version": "2.0.0",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8971. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8976. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8977. "shasum": ""
  8978. },
  8979. "require": {
  8980. "php": ">=8.1"
  8981. },
  8982. "require-dev": {
  8983. "phpunit/phpunit": "^10.0"
  8984. },
  8985. "type": "library",
  8986. "extra": {
  8987. "branch-alias": {
  8988. "dev-main": "2.0-dev"
  8989. }
  8990. },
  8991. "autoload": {
  8992. "classmap": [
  8993. "src/"
  8994. ]
  8995. },
  8996. "notification-url": "https://packagist.org/downloads/",
  8997. "license": [
  8998. "BSD-3-Clause"
  8999. ],
  9000. "authors": [
  9001. {
  9002. "name": "Sebastian Bergmann",
  9003. "email": "sebastian@phpunit.de",
  9004. "role": "lead"
  9005. }
  9006. ],
  9007. "description": "Collection of value objects that represent the PHP code units",
  9008. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9009. "support": {
  9010. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9011. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9012. },
  9013. "funding": [
  9014. {
  9015. "url": "https://github.com/sebastianbergmann",
  9016. "type": "github"
  9017. }
  9018. ],
  9019. "time": "2023-02-03T06:58:43+00:00"
  9020. },
  9021. {
  9022. "name": "sebastian/code-unit-reverse-lookup",
  9023. "version": "3.0.0",
  9024. "source": {
  9025. "type": "git",
  9026. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9027. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9028. },
  9029. "dist": {
  9030. "type": "zip",
  9031. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9032. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9033. "shasum": ""
  9034. },
  9035. "require": {
  9036. "php": ">=8.1"
  9037. },
  9038. "require-dev": {
  9039. "phpunit/phpunit": "^10.0"
  9040. },
  9041. "type": "library",
  9042. "extra": {
  9043. "branch-alias": {
  9044. "dev-main": "3.0-dev"
  9045. }
  9046. },
  9047. "autoload": {
  9048. "classmap": [
  9049. "src/"
  9050. ]
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "BSD-3-Clause"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Sebastian Bergmann",
  9059. "email": "sebastian@phpunit.de"
  9060. }
  9061. ],
  9062. "description": "Looks up which function or method a line of code belongs to",
  9063. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9064. "support": {
  9065. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9066. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9067. },
  9068. "funding": [
  9069. {
  9070. "url": "https://github.com/sebastianbergmann",
  9071. "type": "github"
  9072. }
  9073. ],
  9074. "time": "2023-02-03T06:59:15+00:00"
  9075. },
  9076. {
  9077. "name": "sebastian/comparator",
  9078. "version": "5.0.1",
  9079. "source": {
  9080. "type": "git",
  9081. "url": "https://github.com/sebastianbergmann/comparator.git",
  9082. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9083. },
  9084. "dist": {
  9085. "type": "zip",
  9086. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9087. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9088. "shasum": ""
  9089. },
  9090. "require": {
  9091. "ext-dom": "*",
  9092. "ext-mbstring": "*",
  9093. "php": ">=8.1",
  9094. "sebastian/diff": "^5.0",
  9095. "sebastian/exporter": "^5.0"
  9096. },
  9097. "require-dev": {
  9098. "phpunit/phpunit": "^10.3"
  9099. },
  9100. "type": "library",
  9101. "extra": {
  9102. "branch-alias": {
  9103. "dev-main": "5.0-dev"
  9104. }
  9105. },
  9106. "autoload": {
  9107. "classmap": [
  9108. "src/"
  9109. ]
  9110. },
  9111. "notification-url": "https://packagist.org/downloads/",
  9112. "license": [
  9113. "BSD-3-Clause"
  9114. ],
  9115. "authors": [
  9116. {
  9117. "name": "Sebastian Bergmann",
  9118. "email": "sebastian@phpunit.de"
  9119. },
  9120. {
  9121. "name": "Jeff Welch",
  9122. "email": "whatthejeff@gmail.com"
  9123. },
  9124. {
  9125. "name": "Volker Dusch",
  9126. "email": "github@wallbash.com"
  9127. },
  9128. {
  9129. "name": "Bernhard Schussek",
  9130. "email": "bschussek@2bepublished.at"
  9131. }
  9132. ],
  9133. "description": "Provides the functionality to compare PHP values for equality",
  9134. "homepage": "https://github.com/sebastianbergmann/comparator",
  9135. "keywords": [
  9136. "comparator",
  9137. "compare",
  9138. "equality"
  9139. ],
  9140. "support": {
  9141. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9142. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9143. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9144. },
  9145. "funding": [
  9146. {
  9147. "url": "https://github.com/sebastianbergmann",
  9148. "type": "github"
  9149. }
  9150. ],
  9151. "time": "2023-08-14T13:18:12+00:00"
  9152. },
  9153. {
  9154. "name": "sebastian/complexity",
  9155. "version": "3.2.0",
  9156. "source": {
  9157. "type": "git",
  9158. "url": "https://github.com/sebastianbergmann/complexity.git",
  9159. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9160. },
  9161. "dist": {
  9162. "type": "zip",
  9163. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9164. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9165. "shasum": ""
  9166. },
  9167. "require": {
  9168. "nikic/php-parser": "^4.18 || ^5.0",
  9169. "php": ">=8.1"
  9170. },
  9171. "require-dev": {
  9172. "phpunit/phpunit": "^10.0"
  9173. },
  9174. "type": "library",
  9175. "extra": {
  9176. "branch-alias": {
  9177. "dev-main": "3.2-dev"
  9178. }
  9179. },
  9180. "autoload": {
  9181. "classmap": [
  9182. "src/"
  9183. ]
  9184. },
  9185. "notification-url": "https://packagist.org/downloads/",
  9186. "license": [
  9187. "BSD-3-Clause"
  9188. ],
  9189. "authors": [
  9190. {
  9191. "name": "Sebastian Bergmann",
  9192. "email": "sebastian@phpunit.de",
  9193. "role": "lead"
  9194. }
  9195. ],
  9196. "description": "Library for calculating the complexity of PHP code units",
  9197. "homepage": "https://github.com/sebastianbergmann/complexity",
  9198. "support": {
  9199. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9200. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9201. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9202. },
  9203. "funding": [
  9204. {
  9205. "url": "https://github.com/sebastianbergmann",
  9206. "type": "github"
  9207. }
  9208. ],
  9209. "time": "2023-12-21T08:37:17+00:00"
  9210. },
  9211. {
  9212. "name": "sebastian/diff",
  9213. "version": "5.1.1",
  9214. "source": {
  9215. "type": "git",
  9216. "url": "https://github.com/sebastianbergmann/diff.git",
  9217. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9218. },
  9219. "dist": {
  9220. "type": "zip",
  9221. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9222. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9223. "shasum": ""
  9224. },
  9225. "require": {
  9226. "php": ">=8.1"
  9227. },
  9228. "require-dev": {
  9229. "phpunit/phpunit": "^10.0",
  9230. "symfony/process": "^6.4"
  9231. },
  9232. "type": "library",
  9233. "extra": {
  9234. "branch-alias": {
  9235. "dev-main": "5.1-dev"
  9236. }
  9237. },
  9238. "autoload": {
  9239. "classmap": [
  9240. "src/"
  9241. ]
  9242. },
  9243. "notification-url": "https://packagist.org/downloads/",
  9244. "license": [
  9245. "BSD-3-Clause"
  9246. ],
  9247. "authors": [
  9248. {
  9249. "name": "Sebastian Bergmann",
  9250. "email": "sebastian@phpunit.de"
  9251. },
  9252. {
  9253. "name": "Kore Nordmann",
  9254. "email": "mail@kore-nordmann.de"
  9255. }
  9256. ],
  9257. "description": "Diff implementation",
  9258. "homepage": "https://github.com/sebastianbergmann/diff",
  9259. "keywords": [
  9260. "diff",
  9261. "udiff",
  9262. "unidiff",
  9263. "unified diff"
  9264. ],
  9265. "support": {
  9266. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9267. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9268. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9269. },
  9270. "funding": [
  9271. {
  9272. "url": "https://github.com/sebastianbergmann",
  9273. "type": "github"
  9274. }
  9275. ],
  9276. "time": "2024-03-02T07:15:17+00:00"
  9277. },
  9278. {
  9279. "name": "sebastian/environment",
  9280. "version": "6.1.0",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/sebastianbergmann/environment.git",
  9284. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9289. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9290. "shasum": ""
  9291. },
  9292. "require": {
  9293. "php": ">=8.1"
  9294. },
  9295. "require-dev": {
  9296. "phpunit/phpunit": "^10.0"
  9297. },
  9298. "suggest": {
  9299. "ext-posix": "*"
  9300. },
  9301. "type": "library",
  9302. "extra": {
  9303. "branch-alias": {
  9304. "dev-main": "6.1-dev"
  9305. }
  9306. },
  9307. "autoload": {
  9308. "classmap": [
  9309. "src/"
  9310. ]
  9311. },
  9312. "notification-url": "https://packagist.org/downloads/",
  9313. "license": [
  9314. "BSD-3-Clause"
  9315. ],
  9316. "authors": [
  9317. {
  9318. "name": "Sebastian Bergmann",
  9319. "email": "sebastian@phpunit.de"
  9320. }
  9321. ],
  9322. "description": "Provides functionality to handle HHVM/PHP environments",
  9323. "homepage": "https://github.com/sebastianbergmann/environment",
  9324. "keywords": [
  9325. "Xdebug",
  9326. "environment",
  9327. "hhvm"
  9328. ],
  9329. "support": {
  9330. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9331. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9332. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9333. },
  9334. "funding": [
  9335. {
  9336. "url": "https://github.com/sebastianbergmann",
  9337. "type": "github"
  9338. }
  9339. ],
  9340. "time": "2024-03-23T08:47:14+00:00"
  9341. },
  9342. {
  9343. "name": "sebastian/exporter",
  9344. "version": "5.1.2",
  9345. "source": {
  9346. "type": "git",
  9347. "url": "https://github.com/sebastianbergmann/exporter.git",
  9348. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9349. },
  9350. "dist": {
  9351. "type": "zip",
  9352. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9353. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9354. "shasum": ""
  9355. },
  9356. "require": {
  9357. "ext-mbstring": "*",
  9358. "php": ">=8.1",
  9359. "sebastian/recursion-context": "^5.0"
  9360. },
  9361. "require-dev": {
  9362. "phpunit/phpunit": "^10.0"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-main": "5.1-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de"
  9383. },
  9384. {
  9385. "name": "Jeff Welch",
  9386. "email": "whatthejeff@gmail.com"
  9387. },
  9388. {
  9389. "name": "Volker Dusch",
  9390. "email": "github@wallbash.com"
  9391. },
  9392. {
  9393. "name": "Adam Harvey",
  9394. "email": "aharvey@php.net"
  9395. },
  9396. {
  9397. "name": "Bernhard Schussek",
  9398. "email": "bschussek@gmail.com"
  9399. }
  9400. ],
  9401. "description": "Provides the functionality to export PHP variables for visualization",
  9402. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9403. "keywords": [
  9404. "export",
  9405. "exporter"
  9406. ],
  9407. "support": {
  9408. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9409. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9410. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9411. },
  9412. "funding": [
  9413. {
  9414. "url": "https://github.com/sebastianbergmann",
  9415. "type": "github"
  9416. }
  9417. ],
  9418. "time": "2024-03-02T07:17:12+00:00"
  9419. },
  9420. {
  9421. "name": "sebastian/global-state",
  9422. "version": "6.0.2",
  9423. "source": {
  9424. "type": "git",
  9425. "url": "https://github.com/sebastianbergmann/global-state.git",
  9426. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9427. },
  9428. "dist": {
  9429. "type": "zip",
  9430. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9431. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9432. "shasum": ""
  9433. },
  9434. "require": {
  9435. "php": ">=8.1",
  9436. "sebastian/object-reflector": "^3.0",
  9437. "sebastian/recursion-context": "^5.0"
  9438. },
  9439. "require-dev": {
  9440. "ext-dom": "*",
  9441. "phpunit/phpunit": "^10.0"
  9442. },
  9443. "type": "library",
  9444. "extra": {
  9445. "branch-alias": {
  9446. "dev-main": "6.0-dev"
  9447. }
  9448. },
  9449. "autoload": {
  9450. "classmap": [
  9451. "src/"
  9452. ]
  9453. },
  9454. "notification-url": "https://packagist.org/downloads/",
  9455. "license": [
  9456. "BSD-3-Clause"
  9457. ],
  9458. "authors": [
  9459. {
  9460. "name": "Sebastian Bergmann",
  9461. "email": "sebastian@phpunit.de"
  9462. }
  9463. ],
  9464. "description": "Snapshotting of global state",
  9465. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9466. "keywords": [
  9467. "global state"
  9468. ],
  9469. "support": {
  9470. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9471. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9472. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9473. },
  9474. "funding": [
  9475. {
  9476. "url": "https://github.com/sebastianbergmann",
  9477. "type": "github"
  9478. }
  9479. ],
  9480. "time": "2024-03-02T07:19:19+00:00"
  9481. },
  9482. {
  9483. "name": "sebastian/lines-of-code",
  9484. "version": "2.0.2",
  9485. "source": {
  9486. "type": "git",
  9487. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9488. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9489. },
  9490. "dist": {
  9491. "type": "zip",
  9492. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9493. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9494. "shasum": ""
  9495. },
  9496. "require": {
  9497. "nikic/php-parser": "^4.18 || ^5.0",
  9498. "php": ">=8.1"
  9499. },
  9500. "require-dev": {
  9501. "phpunit/phpunit": "^10.0"
  9502. },
  9503. "type": "library",
  9504. "extra": {
  9505. "branch-alias": {
  9506. "dev-main": "2.0-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "classmap": [
  9511. "src/"
  9512. ]
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "BSD-3-Clause"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Sebastian Bergmann",
  9521. "email": "sebastian@phpunit.de",
  9522. "role": "lead"
  9523. }
  9524. ],
  9525. "description": "Library for counting the lines of code in PHP source code",
  9526. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9527. "support": {
  9528. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9529. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9530. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9531. },
  9532. "funding": [
  9533. {
  9534. "url": "https://github.com/sebastianbergmann",
  9535. "type": "github"
  9536. }
  9537. ],
  9538. "time": "2023-12-21T08:38:20+00:00"
  9539. },
  9540. {
  9541. "name": "sebastian/object-enumerator",
  9542. "version": "5.0.0",
  9543. "source": {
  9544. "type": "git",
  9545. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9546. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9547. },
  9548. "dist": {
  9549. "type": "zip",
  9550. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9551. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9552. "shasum": ""
  9553. },
  9554. "require": {
  9555. "php": ">=8.1",
  9556. "sebastian/object-reflector": "^3.0",
  9557. "sebastian/recursion-context": "^5.0"
  9558. },
  9559. "require-dev": {
  9560. "phpunit/phpunit": "^10.0"
  9561. },
  9562. "type": "library",
  9563. "extra": {
  9564. "branch-alias": {
  9565. "dev-main": "5.0-dev"
  9566. }
  9567. },
  9568. "autoload": {
  9569. "classmap": [
  9570. "src/"
  9571. ]
  9572. },
  9573. "notification-url": "https://packagist.org/downloads/",
  9574. "license": [
  9575. "BSD-3-Clause"
  9576. ],
  9577. "authors": [
  9578. {
  9579. "name": "Sebastian Bergmann",
  9580. "email": "sebastian@phpunit.de"
  9581. }
  9582. ],
  9583. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9584. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9585. "support": {
  9586. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9587. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9588. },
  9589. "funding": [
  9590. {
  9591. "url": "https://github.com/sebastianbergmann",
  9592. "type": "github"
  9593. }
  9594. ],
  9595. "time": "2023-02-03T07:08:32+00:00"
  9596. },
  9597. {
  9598. "name": "sebastian/object-reflector",
  9599. "version": "3.0.0",
  9600. "source": {
  9601. "type": "git",
  9602. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9603. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9604. },
  9605. "dist": {
  9606. "type": "zip",
  9607. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9608. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9609. "shasum": ""
  9610. },
  9611. "require": {
  9612. "php": ">=8.1"
  9613. },
  9614. "require-dev": {
  9615. "phpunit/phpunit": "^10.0"
  9616. },
  9617. "type": "library",
  9618. "extra": {
  9619. "branch-alias": {
  9620. "dev-main": "3.0-dev"
  9621. }
  9622. },
  9623. "autoload": {
  9624. "classmap": [
  9625. "src/"
  9626. ]
  9627. },
  9628. "notification-url": "https://packagist.org/downloads/",
  9629. "license": [
  9630. "BSD-3-Clause"
  9631. ],
  9632. "authors": [
  9633. {
  9634. "name": "Sebastian Bergmann",
  9635. "email": "sebastian@phpunit.de"
  9636. }
  9637. ],
  9638. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9639. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9640. "support": {
  9641. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9642. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9643. },
  9644. "funding": [
  9645. {
  9646. "url": "https://github.com/sebastianbergmann",
  9647. "type": "github"
  9648. }
  9649. ],
  9650. "time": "2023-02-03T07:06:18+00:00"
  9651. },
  9652. {
  9653. "name": "sebastian/recursion-context",
  9654. "version": "5.0.0",
  9655. "source": {
  9656. "type": "git",
  9657. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9658. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9659. },
  9660. "dist": {
  9661. "type": "zip",
  9662. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9663. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9664. "shasum": ""
  9665. },
  9666. "require": {
  9667. "php": ">=8.1"
  9668. },
  9669. "require-dev": {
  9670. "phpunit/phpunit": "^10.0"
  9671. },
  9672. "type": "library",
  9673. "extra": {
  9674. "branch-alias": {
  9675. "dev-main": "5.0-dev"
  9676. }
  9677. },
  9678. "autoload": {
  9679. "classmap": [
  9680. "src/"
  9681. ]
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "license": [
  9685. "BSD-3-Clause"
  9686. ],
  9687. "authors": [
  9688. {
  9689. "name": "Sebastian Bergmann",
  9690. "email": "sebastian@phpunit.de"
  9691. },
  9692. {
  9693. "name": "Jeff Welch",
  9694. "email": "whatthejeff@gmail.com"
  9695. },
  9696. {
  9697. "name": "Adam Harvey",
  9698. "email": "aharvey@php.net"
  9699. }
  9700. ],
  9701. "description": "Provides functionality to recursively process PHP variables",
  9702. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9703. "support": {
  9704. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9705. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9706. },
  9707. "funding": [
  9708. {
  9709. "url": "https://github.com/sebastianbergmann",
  9710. "type": "github"
  9711. }
  9712. ],
  9713. "time": "2023-02-03T07:05:40+00:00"
  9714. },
  9715. {
  9716. "name": "sebastian/type",
  9717. "version": "4.0.0",
  9718. "source": {
  9719. "type": "git",
  9720. "url": "https://github.com/sebastianbergmann/type.git",
  9721. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9722. },
  9723. "dist": {
  9724. "type": "zip",
  9725. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9726. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9727. "shasum": ""
  9728. },
  9729. "require": {
  9730. "php": ">=8.1"
  9731. },
  9732. "require-dev": {
  9733. "phpunit/phpunit": "^10.0"
  9734. },
  9735. "type": "library",
  9736. "extra": {
  9737. "branch-alias": {
  9738. "dev-main": "4.0-dev"
  9739. }
  9740. },
  9741. "autoload": {
  9742. "classmap": [
  9743. "src/"
  9744. ]
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "license": [
  9748. "BSD-3-Clause"
  9749. ],
  9750. "authors": [
  9751. {
  9752. "name": "Sebastian Bergmann",
  9753. "email": "sebastian@phpunit.de",
  9754. "role": "lead"
  9755. }
  9756. ],
  9757. "description": "Collection of value objects that represent the types of the PHP type system",
  9758. "homepage": "https://github.com/sebastianbergmann/type",
  9759. "support": {
  9760. "issues": "https://github.com/sebastianbergmann/type/issues",
  9761. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9762. },
  9763. "funding": [
  9764. {
  9765. "url": "https://github.com/sebastianbergmann",
  9766. "type": "github"
  9767. }
  9768. ],
  9769. "time": "2023-02-03T07:10:45+00:00"
  9770. },
  9771. {
  9772. "name": "sebastian/version",
  9773. "version": "4.0.1",
  9774. "source": {
  9775. "type": "git",
  9776. "url": "https://github.com/sebastianbergmann/version.git",
  9777. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9778. },
  9779. "dist": {
  9780. "type": "zip",
  9781. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9782. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9783. "shasum": ""
  9784. },
  9785. "require": {
  9786. "php": ">=8.1"
  9787. },
  9788. "type": "library",
  9789. "extra": {
  9790. "branch-alias": {
  9791. "dev-main": "4.0-dev"
  9792. }
  9793. },
  9794. "autoload": {
  9795. "classmap": [
  9796. "src/"
  9797. ]
  9798. },
  9799. "notification-url": "https://packagist.org/downloads/",
  9800. "license": [
  9801. "BSD-3-Clause"
  9802. ],
  9803. "authors": [
  9804. {
  9805. "name": "Sebastian Bergmann",
  9806. "email": "sebastian@phpunit.de",
  9807. "role": "lead"
  9808. }
  9809. ],
  9810. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9811. "homepage": "https://github.com/sebastianbergmann/version",
  9812. "support": {
  9813. "issues": "https://github.com/sebastianbergmann/version/issues",
  9814. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9815. },
  9816. "funding": [
  9817. {
  9818. "url": "https://github.com/sebastianbergmann",
  9819. "type": "github"
  9820. }
  9821. ],
  9822. "time": "2023-02-07T11:34:05+00:00"
  9823. },
  9824. {
  9825. "name": "swoole/ide-helper",
  9826. "version": "5.1.2",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/swoole/ide-helper.git",
  9830. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9835. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9836. "shasum": ""
  9837. },
  9838. "type": "library",
  9839. "notification-url": "https://packagist.org/downloads/",
  9840. "license": [
  9841. "Apache-2.0"
  9842. ],
  9843. "authors": [
  9844. {
  9845. "name": "Team Swoole",
  9846. "email": "team@swoole.com"
  9847. }
  9848. ],
  9849. "description": "IDE help files for Swoole.",
  9850. "support": {
  9851. "issues": "https://github.com/swoole/ide-helper/issues",
  9852. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9853. },
  9854. "time": "2024-02-01T22:28:11+00:00"
  9855. },
  9856. {
  9857. "name": "symfony/event-dispatcher",
  9858. "version": "v6.4.8",
  9859. "source": {
  9860. "type": "git",
  9861. "url": "https://github.com/symfony/event-dispatcher.git",
  9862. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9863. },
  9864. "dist": {
  9865. "type": "zip",
  9866. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9867. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9868. "shasum": ""
  9869. },
  9870. "require": {
  9871. "php": ">=8.1",
  9872. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9873. },
  9874. "conflict": {
  9875. "symfony/dependency-injection": "<5.4",
  9876. "symfony/service-contracts": "<2.5"
  9877. },
  9878. "provide": {
  9879. "psr/event-dispatcher-implementation": "1.0",
  9880. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9881. },
  9882. "require-dev": {
  9883. "psr/log": "^1|^2|^3",
  9884. "symfony/config": "^5.4|^6.0|^7.0",
  9885. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9886. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9887. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9888. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9889. "symfony/service-contracts": "^2.5|^3",
  9890. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9891. },
  9892. "type": "library",
  9893. "autoload": {
  9894. "psr-4": {
  9895. "Symfony\\Component\\EventDispatcher\\": ""
  9896. },
  9897. "exclude-from-classmap": [
  9898. "/Tests/"
  9899. ]
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "MIT"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Fabien Potencier",
  9908. "email": "fabien@symfony.com"
  9909. },
  9910. {
  9911. "name": "Symfony Community",
  9912. "homepage": "https://symfony.com/contributors"
  9913. }
  9914. ],
  9915. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9916. "homepage": "https://symfony.com",
  9917. "support": {
  9918. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  9919. },
  9920. "funding": [
  9921. {
  9922. "url": "https://symfony.com/sponsor",
  9923. "type": "custom"
  9924. },
  9925. {
  9926. "url": "https://github.com/fabpot",
  9927. "type": "github"
  9928. },
  9929. {
  9930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9931. "type": "tidelift"
  9932. }
  9933. ],
  9934. "time": "2024-05-31T14:49:08+00:00"
  9935. },
  9936. {
  9937. "name": "symfony/event-dispatcher-contracts",
  9938. "version": "v3.5.0",
  9939. "source": {
  9940. "type": "git",
  9941. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9942. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9943. },
  9944. "dist": {
  9945. "type": "zip",
  9946. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9947. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9948. "shasum": ""
  9949. },
  9950. "require": {
  9951. "php": ">=8.1",
  9952. "psr/event-dispatcher": "^1"
  9953. },
  9954. "type": "library",
  9955. "extra": {
  9956. "branch-alias": {
  9957. "dev-main": "3.5-dev"
  9958. },
  9959. "thanks": {
  9960. "name": "symfony/contracts",
  9961. "url": "https://github.com/symfony/contracts"
  9962. }
  9963. },
  9964. "autoload": {
  9965. "psr-4": {
  9966. "Symfony\\Contracts\\EventDispatcher\\": ""
  9967. }
  9968. },
  9969. "notification-url": "https://packagist.org/downloads/",
  9970. "license": [
  9971. "MIT"
  9972. ],
  9973. "authors": [
  9974. {
  9975. "name": "Nicolas Grekas",
  9976. "email": "p@tchwork.com"
  9977. },
  9978. {
  9979. "name": "Symfony Community",
  9980. "homepage": "https://symfony.com/contributors"
  9981. }
  9982. ],
  9983. "description": "Generic abstractions related to dispatching event",
  9984. "homepage": "https://symfony.com",
  9985. "keywords": [
  9986. "abstractions",
  9987. "contracts",
  9988. "decoupling",
  9989. "interfaces",
  9990. "interoperability",
  9991. "standards"
  9992. ],
  9993. "support": {
  9994. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  9995. },
  9996. "funding": [
  9997. {
  9998. "url": "https://symfony.com/sponsor",
  9999. "type": "custom"
  10000. },
  10001. {
  10002. "url": "https://github.com/fabpot",
  10003. "type": "github"
  10004. },
  10005. {
  10006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10007. "type": "tidelift"
  10008. }
  10009. ],
  10010. "time": "2024-04-18T09:32:20+00:00"
  10011. },
  10012. {
  10013. "name": "symfony/filesystem",
  10014. "version": "v6.4.8",
  10015. "source": {
  10016. "type": "git",
  10017. "url": "https://github.com/symfony/filesystem.git",
  10018. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10019. },
  10020. "dist": {
  10021. "type": "zip",
  10022. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10023. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10024. "shasum": ""
  10025. },
  10026. "require": {
  10027. "php": ">=8.1",
  10028. "symfony/polyfill-ctype": "~1.8",
  10029. "symfony/polyfill-mbstring": "~1.8"
  10030. },
  10031. "require-dev": {
  10032. "symfony/process": "^5.4|^6.4|^7.0"
  10033. },
  10034. "type": "library",
  10035. "autoload": {
  10036. "psr-4": {
  10037. "Symfony\\Component\\Filesystem\\": ""
  10038. },
  10039. "exclude-from-classmap": [
  10040. "/Tests/"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "MIT"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Fabien Potencier",
  10050. "email": "fabien@symfony.com"
  10051. },
  10052. {
  10053. "name": "Symfony Community",
  10054. "homepage": "https://symfony.com/contributors"
  10055. }
  10056. ],
  10057. "description": "Provides basic utilities for the filesystem",
  10058. "homepage": "https://symfony.com",
  10059. "support": {
  10060. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10061. },
  10062. "funding": [
  10063. {
  10064. "url": "https://symfony.com/sponsor",
  10065. "type": "custom"
  10066. },
  10067. {
  10068. "url": "https://github.com/fabpot",
  10069. "type": "github"
  10070. },
  10071. {
  10072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10073. "type": "tidelift"
  10074. }
  10075. ],
  10076. "time": "2024-05-31T14:49:08+00:00"
  10077. },
  10078. {
  10079. "name": "symfony/http-foundation",
  10080. "version": "v6.4.8",
  10081. "source": {
  10082. "type": "git",
  10083. "url": "https://github.com/symfony/http-foundation.git",
  10084. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10085. },
  10086. "dist": {
  10087. "type": "zip",
  10088. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10089. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10090. "shasum": ""
  10091. },
  10092. "require": {
  10093. "php": ">=8.1",
  10094. "symfony/deprecation-contracts": "^2.5|^3",
  10095. "symfony/polyfill-mbstring": "~1.1",
  10096. "symfony/polyfill-php83": "^1.27"
  10097. },
  10098. "conflict": {
  10099. "symfony/cache": "<6.3"
  10100. },
  10101. "require-dev": {
  10102. "doctrine/dbal": "^2.13.1|^3|^4",
  10103. "predis/predis": "^1.1|^2.0",
  10104. "symfony/cache": "^6.3|^7.0",
  10105. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10106. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10107. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10108. "symfony/mime": "^5.4|^6.0|^7.0",
  10109. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10110. },
  10111. "type": "library",
  10112. "autoload": {
  10113. "psr-4": {
  10114. "Symfony\\Component\\HttpFoundation\\": ""
  10115. },
  10116. "exclude-from-classmap": [
  10117. "/Tests/"
  10118. ]
  10119. },
  10120. "notification-url": "https://packagist.org/downloads/",
  10121. "license": [
  10122. "MIT"
  10123. ],
  10124. "authors": [
  10125. {
  10126. "name": "Fabien Potencier",
  10127. "email": "fabien@symfony.com"
  10128. },
  10129. {
  10130. "name": "Symfony Community",
  10131. "homepage": "https://symfony.com/contributors"
  10132. }
  10133. ],
  10134. "description": "Defines an object-oriented layer for the HTTP specification",
  10135. "homepage": "https://symfony.com",
  10136. "support": {
  10137. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10138. },
  10139. "funding": [
  10140. {
  10141. "url": "https://symfony.com/sponsor",
  10142. "type": "custom"
  10143. },
  10144. {
  10145. "url": "https://github.com/fabpot",
  10146. "type": "github"
  10147. },
  10148. {
  10149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10150. "type": "tidelift"
  10151. }
  10152. ],
  10153. "time": "2024-05-31T14:49:08+00:00"
  10154. },
  10155. {
  10156. "name": "symfony/options-resolver",
  10157. "version": "v6.4.8",
  10158. "source": {
  10159. "type": "git",
  10160. "url": "https://github.com/symfony/options-resolver.git",
  10161. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10162. },
  10163. "dist": {
  10164. "type": "zip",
  10165. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10166. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10167. "shasum": ""
  10168. },
  10169. "require": {
  10170. "php": ">=8.1",
  10171. "symfony/deprecation-contracts": "^2.5|^3"
  10172. },
  10173. "type": "library",
  10174. "autoload": {
  10175. "psr-4": {
  10176. "Symfony\\Component\\OptionsResolver\\": ""
  10177. },
  10178. "exclude-from-classmap": [
  10179. "/Tests/"
  10180. ]
  10181. },
  10182. "notification-url": "https://packagist.org/downloads/",
  10183. "license": [
  10184. "MIT"
  10185. ],
  10186. "authors": [
  10187. {
  10188. "name": "Fabien Potencier",
  10189. "email": "fabien@symfony.com"
  10190. },
  10191. {
  10192. "name": "Symfony Community",
  10193. "homepage": "https://symfony.com/contributors"
  10194. }
  10195. ],
  10196. "description": "Provides an improved replacement for the array_replace PHP function",
  10197. "homepage": "https://symfony.com",
  10198. "keywords": [
  10199. "config",
  10200. "configuration",
  10201. "options"
  10202. ],
  10203. "support": {
  10204. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10205. },
  10206. "funding": [
  10207. {
  10208. "url": "https://symfony.com/sponsor",
  10209. "type": "custom"
  10210. },
  10211. {
  10212. "url": "https://github.com/fabpot",
  10213. "type": "github"
  10214. },
  10215. {
  10216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10217. "type": "tidelift"
  10218. }
  10219. ],
  10220. "time": "2024-05-31T14:49:08+00:00"
  10221. },
  10222. {
  10223. "name": "symfony/polyfill-php81",
  10224. "version": "v1.29.0",
  10225. "source": {
  10226. "type": "git",
  10227. "url": "https://github.com/symfony/polyfill-php81.git",
  10228. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10229. },
  10230. "dist": {
  10231. "type": "zip",
  10232. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10233. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10234. "shasum": ""
  10235. },
  10236. "require": {
  10237. "php": ">=7.1"
  10238. },
  10239. "type": "library",
  10240. "extra": {
  10241. "thanks": {
  10242. "name": "symfony/polyfill",
  10243. "url": "https://github.com/symfony/polyfill"
  10244. }
  10245. },
  10246. "autoload": {
  10247. "files": [
  10248. "bootstrap.php"
  10249. ],
  10250. "psr-4": {
  10251. "Symfony\\Polyfill\\Php81\\": ""
  10252. },
  10253. "classmap": [
  10254. "Resources/stubs"
  10255. ]
  10256. },
  10257. "notification-url": "https://packagist.org/downloads/",
  10258. "license": [
  10259. "MIT"
  10260. ],
  10261. "authors": [
  10262. {
  10263. "name": "Nicolas Grekas",
  10264. "email": "p@tchwork.com"
  10265. },
  10266. {
  10267. "name": "Symfony Community",
  10268. "homepage": "https://symfony.com/contributors"
  10269. }
  10270. ],
  10271. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10272. "homepage": "https://symfony.com",
  10273. "keywords": [
  10274. "compatibility",
  10275. "polyfill",
  10276. "portable",
  10277. "shim"
  10278. ],
  10279. "support": {
  10280. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10281. },
  10282. "funding": [
  10283. {
  10284. "url": "https://symfony.com/sponsor",
  10285. "type": "custom"
  10286. },
  10287. {
  10288. "url": "https://github.com/fabpot",
  10289. "type": "github"
  10290. },
  10291. {
  10292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10293. "type": "tidelift"
  10294. }
  10295. ],
  10296. "time": "2024-01-29T20:11:03+00:00"
  10297. },
  10298. {
  10299. "name": "symfony/polyfill-php83",
  10300. "version": "v1.29.0",
  10301. "source": {
  10302. "type": "git",
  10303. "url": "https://github.com/symfony/polyfill-php83.git",
  10304. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10305. },
  10306. "dist": {
  10307. "type": "zip",
  10308. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10309. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10310. "shasum": ""
  10311. },
  10312. "require": {
  10313. "php": ">=7.1",
  10314. "symfony/polyfill-php80": "^1.14"
  10315. },
  10316. "type": "library",
  10317. "extra": {
  10318. "thanks": {
  10319. "name": "symfony/polyfill",
  10320. "url": "https://github.com/symfony/polyfill"
  10321. }
  10322. },
  10323. "autoload": {
  10324. "files": [
  10325. "bootstrap.php"
  10326. ],
  10327. "psr-4": {
  10328. "Symfony\\Polyfill\\Php83\\": ""
  10329. },
  10330. "classmap": [
  10331. "Resources/stubs"
  10332. ]
  10333. },
  10334. "notification-url": "https://packagist.org/downloads/",
  10335. "license": [
  10336. "MIT"
  10337. ],
  10338. "authors": [
  10339. {
  10340. "name": "Nicolas Grekas",
  10341. "email": "p@tchwork.com"
  10342. },
  10343. {
  10344. "name": "Symfony Community",
  10345. "homepage": "https://symfony.com/contributors"
  10346. }
  10347. ],
  10348. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10349. "homepage": "https://symfony.com",
  10350. "keywords": [
  10351. "compatibility",
  10352. "polyfill",
  10353. "portable",
  10354. "shim"
  10355. ],
  10356. "support": {
  10357. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10358. },
  10359. "funding": [
  10360. {
  10361. "url": "https://symfony.com/sponsor",
  10362. "type": "custom"
  10363. },
  10364. {
  10365. "url": "https://github.com/fabpot",
  10366. "type": "github"
  10367. },
  10368. {
  10369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10370. "type": "tidelift"
  10371. }
  10372. ],
  10373. "time": "2024-01-29T20:11:03+00:00"
  10374. },
  10375. {
  10376. "name": "symfony/process",
  10377. "version": "v6.4.8",
  10378. "source": {
  10379. "type": "git",
  10380. "url": "https://github.com/symfony/process.git",
  10381. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10382. },
  10383. "dist": {
  10384. "type": "zip",
  10385. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10386. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10387. "shasum": ""
  10388. },
  10389. "require": {
  10390. "php": ">=8.1"
  10391. },
  10392. "type": "library",
  10393. "autoload": {
  10394. "psr-4": {
  10395. "Symfony\\Component\\Process\\": ""
  10396. },
  10397. "exclude-from-classmap": [
  10398. "/Tests/"
  10399. ]
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "MIT"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "Fabien Potencier",
  10408. "email": "fabien@symfony.com"
  10409. },
  10410. {
  10411. "name": "Symfony Community",
  10412. "homepage": "https://symfony.com/contributors"
  10413. }
  10414. ],
  10415. "description": "Executes commands in sub-processes",
  10416. "homepage": "https://symfony.com",
  10417. "support": {
  10418. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10419. },
  10420. "funding": [
  10421. {
  10422. "url": "https://symfony.com/sponsor",
  10423. "type": "custom"
  10424. },
  10425. {
  10426. "url": "https://github.com/fabpot",
  10427. "type": "github"
  10428. },
  10429. {
  10430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10431. "type": "tidelift"
  10432. }
  10433. ],
  10434. "time": "2024-05-31T14:49:08+00:00"
  10435. },
  10436. {
  10437. "name": "symfony/stopwatch",
  10438. "version": "v6.4.8",
  10439. "source": {
  10440. "type": "git",
  10441. "url": "https://github.com/symfony/stopwatch.git",
  10442. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10443. },
  10444. "dist": {
  10445. "type": "zip",
  10446. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10447. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10448. "shasum": ""
  10449. },
  10450. "require": {
  10451. "php": ">=8.1",
  10452. "symfony/service-contracts": "^2.5|^3"
  10453. },
  10454. "type": "library",
  10455. "autoload": {
  10456. "psr-4": {
  10457. "Symfony\\Component\\Stopwatch\\": ""
  10458. },
  10459. "exclude-from-classmap": [
  10460. "/Tests/"
  10461. ]
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "MIT"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Fabien Potencier",
  10470. "email": "fabien@symfony.com"
  10471. },
  10472. {
  10473. "name": "Symfony Community",
  10474. "homepage": "https://symfony.com/contributors"
  10475. }
  10476. ],
  10477. "description": "Provides a way to profile code",
  10478. "homepage": "https://symfony.com",
  10479. "support": {
  10480. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://symfony.com/sponsor",
  10485. "type": "custom"
  10486. },
  10487. {
  10488. "url": "https://github.com/fabpot",
  10489. "type": "github"
  10490. },
  10491. {
  10492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10493. "type": "tidelift"
  10494. }
  10495. ],
  10496. "time": "2024-05-31T14:49:08+00:00"
  10497. },
  10498. {
  10499. "name": "theseer/tokenizer",
  10500. "version": "1.2.3",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/theseer/tokenizer.git",
  10504. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10509. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10510. "shasum": ""
  10511. },
  10512. "require": {
  10513. "ext-dom": "*",
  10514. "ext-tokenizer": "*",
  10515. "ext-xmlwriter": "*",
  10516. "php": "^7.2 || ^8.0"
  10517. },
  10518. "type": "library",
  10519. "autoload": {
  10520. "classmap": [
  10521. "src/"
  10522. ]
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "BSD-3-Clause"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Arne Blankerts",
  10531. "email": "arne@blankerts.de",
  10532. "role": "Developer"
  10533. }
  10534. ],
  10535. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10536. "support": {
  10537. "issues": "https://github.com/theseer/tokenizer/issues",
  10538. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10539. },
  10540. "funding": [
  10541. {
  10542. "url": "https://github.com/theseer",
  10543. "type": "github"
  10544. }
  10545. ],
  10546. "time": "2024-03-03T12:36:25+00:00"
  10547. }
  10548. ],
  10549. "aliases": [],
  10550. "minimum-stability": "dev",
  10551. "stability-flags": [],
  10552. "prefer-stable": true,
  10553. "prefer-lowest": false,
  10554. "platform": {
  10555. "php": ">=8.1"
  10556. },
  10557. "platform-dev": [],
  10558. "plugin-api-version": "2.6.0"
  10559. }