composer.lock 376 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634
  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": "6fc437c88f7dd6b81abfce2f28c92f05",
  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": "overtrue/pinyin",
  5058. "version": "5.3.4",
  5059. "source": {
  5060. "type": "git",
  5061. "url": "https://github.com/overtrue/pinyin.git",
  5062. "reference": "03d8697763c32595f54c855911bc77abf00fea14"
  5063. },
  5064. "dist": {
  5065. "type": "zip",
  5066. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/03d8697763c32595f54c855911bc77abf00fea14",
  5067. "reference": "03d8697763c32595f54c855911bc77abf00fea14",
  5068. "shasum": ""
  5069. },
  5070. "require": {
  5071. "php": ">=8.0.2"
  5072. },
  5073. "require-dev": {
  5074. "brainmaestro/composer-git-hooks": "^3.0",
  5075. "friendsofphp/php-cs-fixer": "^3.2",
  5076. "laravel/pint": "^1.10",
  5077. "nunomaduro/termwind": "^1.0|^2.0",
  5078. "phpunit/phpunit": "^10.0|^11.2"
  5079. },
  5080. "bin": [
  5081. "bin/pinyin"
  5082. ],
  5083. "type": "library",
  5084. "extra": {
  5085. "hooks": {
  5086. "pre-push": [
  5087. "composer pint",
  5088. "composer test"
  5089. ],
  5090. "pre-commit": [
  5091. "composer pint",
  5092. "composer test"
  5093. ]
  5094. }
  5095. },
  5096. "autoload": {
  5097. "psr-4": {
  5098. "Overtrue\\Pinyin\\": "src/"
  5099. }
  5100. },
  5101. "notification-url": "https://packagist.org/downloads/",
  5102. "license": [
  5103. "MIT"
  5104. ],
  5105. "authors": [
  5106. {
  5107. "name": "overtrue",
  5108. "email": "anzhengchao@gmail.com",
  5109. "homepage": "http://github.com/overtrue"
  5110. }
  5111. ],
  5112. "description": "Chinese to pinyin translator.",
  5113. "homepage": "https://github.com/overtrue/pinyin",
  5114. "keywords": [
  5115. "Chinese",
  5116. "Pinyin",
  5117. "cn2pinyin"
  5118. ],
  5119. "support": {
  5120. "issues": "https://github.com/overtrue/pinyin/issues",
  5121. "source": "https://github.com/overtrue/pinyin/tree/5.3.4"
  5122. },
  5123. "funding": [
  5124. {
  5125. "url": "https://github.com/overtrue",
  5126. "type": "github"
  5127. }
  5128. ],
  5129. "time": "2025-03-16T02:16:27+00:00"
  5130. },
  5131. {
  5132. "name": "php-di/phpdoc-reader",
  5133. "version": "2.2.1",
  5134. "source": {
  5135. "type": "git",
  5136. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5137. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5138. },
  5139. "dist": {
  5140. "type": "zip",
  5141. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5142. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5143. "shasum": ""
  5144. },
  5145. "require": {
  5146. "php": ">=7.2.0"
  5147. },
  5148. "require-dev": {
  5149. "mnapoli/hard-mode": "~0.3.0",
  5150. "phpunit/phpunit": "^8.5|^9.0"
  5151. },
  5152. "type": "library",
  5153. "autoload": {
  5154. "psr-4": {
  5155. "PhpDocReader\\": "src/PhpDocReader"
  5156. }
  5157. },
  5158. "notification-url": "https://packagist.org/downloads/",
  5159. "license": [
  5160. "MIT"
  5161. ],
  5162. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5163. "keywords": [
  5164. "phpdoc",
  5165. "reflection"
  5166. ],
  5167. "support": {
  5168. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5169. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5170. },
  5171. "time": "2020-10-12T12:39:22+00:00"
  5172. },
  5173. {
  5174. "name": "phpoption/phpoption",
  5175. "version": "1.9.2",
  5176. "source": {
  5177. "type": "git",
  5178. "url": "https://github.com/schmittjoh/php-option.git",
  5179. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5180. },
  5181. "dist": {
  5182. "type": "zip",
  5183. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5184. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5185. "shasum": ""
  5186. },
  5187. "require": {
  5188. "php": "^7.2.5 || ^8.0"
  5189. },
  5190. "require-dev": {
  5191. "bamarni/composer-bin-plugin": "^1.8.2",
  5192. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5193. },
  5194. "type": "library",
  5195. "extra": {
  5196. "bamarni-bin": {
  5197. "bin-links": true,
  5198. "forward-command": true
  5199. },
  5200. "branch-alias": {
  5201. "dev-master": "1.9-dev"
  5202. }
  5203. },
  5204. "autoload": {
  5205. "psr-4": {
  5206. "PhpOption\\": "src/PhpOption/"
  5207. }
  5208. },
  5209. "notification-url": "https://packagist.org/downloads/",
  5210. "license": [
  5211. "Apache-2.0"
  5212. ],
  5213. "authors": [
  5214. {
  5215. "name": "Johannes M. Schmitt",
  5216. "email": "schmittjoh@gmail.com",
  5217. "homepage": "https://github.com/schmittjoh"
  5218. },
  5219. {
  5220. "name": "Graham Campbell",
  5221. "email": "hello@gjcampbell.co.uk",
  5222. "homepage": "https://github.com/GrahamCampbell"
  5223. }
  5224. ],
  5225. "description": "Option Type for PHP",
  5226. "keywords": [
  5227. "language",
  5228. "option",
  5229. "php",
  5230. "type"
  5231. ],
  5232. "support": {
  5233. "issues": "https://github.com/schmittjoh/php-option/issues",
  5234. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5235. },
  5236. "funding": [
  5237. {
  5238. "url": "https://github.com/GrahamCampbell",
  5239. "type": "github"
  5240. },
  5241. {
  5242. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5243. "type": "tidelift"
  5244. }
  5245. ],
  5246. "time": "2023-11-12T21:59:55+00:00"
  5247. },
  5248. {
  5249. "name": "psr/cache",
  5250. "version": "3.0.0",
  5251. "source": {
  5252. "type": "git",
  5253. "url": "https://github.com/php-fig/cache.git",
  5254. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5255. },
  5256. "dist": {
  5257. "type": "zip",
  5258. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5259. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5260. "shasum": ""
  5261. },
  5262. "require": {
  5263. "php": ">=8.0.0"
  5264. },
  5265. "type": "library",
  5266. "extra": {
  5267. "branch-alias": {
  5268. "dev-master": "1.0.x-dev"
  5269. }
  5270. },
  5271. "autoload": {
  5272. "psr-4": {
  5273. "Psr\\Cache\\": "src/"
  5274. }
  5275. },
  5276. "notification-url": "https://packagist.org/downloads/",
  5277. "license": [
  5278. "MIT"
  5279. ],
  5280. "authors": [
  5281. {
  5282. "name": "PHP-FIG",
  5283. "homepage": "https://www.php-fig.org/"
  5284. }
  5285. ],
  5286. "description": "Common interface for caching libraries",
  5287. "keywords": [
  5288. "cache",
  5289. "psr",
  5290. "psr-6"
  5291. ],
  5292. "support": {
  5293. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5294. },
  5295. "time": "2021-02-03T23:26:27+00:00"
  5296. },
  5297. {
  5298. "name": "psr/clock",
  5299. "version": "1.0.0",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/php-fig/clock.git",
  5303. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5308. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5309. "shasum": ""
  5310. },
  5311. "require": {
  5312. "php": "^7.0 || ^8.0"
  5313. },
  5314. "type": "library",
  5315. "autoload": {
  5316. "psr-4": {
  5317. "Psr\\Clock\\": "src/"
  5318. }
  5319. },
  5320. "notification-url": "https://packagist.org/downloads/",
  5321. "license": [
  5322. "MIT"
  5323. ],
  5324. "authors": [
  5325. {
  5326. "name": "PHP-FIG",
  5327. "homepage": "https://www.php-fig.org/"
  5328. }
  5329. ],
  5330. "description": "Common interface for reading the clock.",
  5331. "homepage": "https://github.com/php-fig/clock",
  5332. "keywords": [
  5333. "clock",
  5334. "now",
  5335. "psr",
  5336. "psr-20",
  5337. "time"
  5338. ],
  5339. "support": {
  5340. "issues": "https://github.com/php-fig/clock/issues",
  5341. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5342. },
  5343. "time": "2022-11-25T14:36:26+00:00"
  5344. },
  5345. {
  5346. "name": "psr/container",
  5347. "version": "2.0.2",
  5348. "source": {
  5349. "type": "git",
  5350. "url": "https://github.com/php-fig/container.git",
  5351. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5352. },
  5353. "dist": {
  5354. "type": "zip",
  5355. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5356. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5357. "shasum": ""
  5358. },
  5359. "require": {
  5360. "php": ">=7.4.0"
  5361. },
  5362. "type": "library",
  5363. "extra": {
  5364. "branch-alias": {
  5365. "dev-master": "2.0.x-dev"
  5366. }
  5367. },
  5368. "autoload": {
  5369. "psr-4": {
  5370. "Psr\\Container\\": "src/"
  5371. }
  5372. },
  5373. "notification-url": "https://packagist.org/downloads/",
  5374. "license": [
  5375. "MIT"
  5376. ],
  5377. "authors": [
  5378. {
  5379. "name": "PHP-FIG",
  5380. "homepage": "https://www.php-fig.org/"
  5381. }
  5382. ],
  5383. "description": "Common Container Interface (PHP FIG PSR-11)",
  5384. "homepage": "https://github.com/php-fig/container",
  5385. "keywords": [
  5386. "PSR-11",
  5387. "container",
  5388. "container-interface",
  5389. "container-interop",
  5390. "psr"
  5391. ],
  5392. "support": {
  5393. "issues": "https://github.com/php-fig/container/issues",
  5394. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5395. },
  5396. "time": "2021-11-05T16:47:00+00:00"
  5397. },
  5398. {
  5399. "name": "psr/event-dispatcher",
  5400. "version": "1.0.0",
  5401. "source": {
  5402. "type": "git",
  5403. "url": "https://github.com/php-fig/event-dispatcher.git",
  5404. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5405. },
  5406. "dist": {
  5407. "type": "zip",
  5408. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5409. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5410. "shasum": ""
  5411. },
  5412. "require": {
  5413. "php": ">=7.2.0"
  5414. },
  5415. "type": "library",
  5416. "extra": {
  5417. "branch-alias": {
  5418. "dev-master": "1.0.x-dev"
  5419. }
  5420. },
  5421. "autoload": {
  5422. "psr-4": {
  5423. "Psr\\EventDispatcher\\": "src/"
  5424. }
  5425. },
  5426. "notification-url": "https://packagist.org/downloads/",
  5427. "license": [
  5428. "MIT"
  5429. ],
  5430. "authors": [
  5431. {
  5432. "name": "PHP-FIG",
  5433. "homepage": "http://www.php-fig.org/"
  5434. }
  5435. ],
  5436. "description": "Standard interfaces for event handling.",
  5437. "keywords": [
  5438. "events",
  5439. "psr",
  5440. "psr-14"
  5441. ],
  5442. "support": {
  5443. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5444. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5445. },
  5446. "time": "2019-01-08T18:20:26+00:00"
  5447. },
  5448. {
  5449. "name": "psr/http-client",
  5450. "version": "1.0.3",
  5451. "source": {
  5452. "type": "git",
  5453. "url": "https://github.com/php-fig/http-client.git",
  5454. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5455. },
  5456. "dist": {
  5457. "type": "zip",
  5458. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5459. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5460. "shasum": ""
  5461. },
  5462. "require": {
  5463. "php": "^7.0 || ^8.0",
  5464. "psr/http-message": "^1.0 || ^2.0"
  5465. },
  5466. "type": "library",
  5467. "extra": {
  5468. "branch-alias": {
  5469. "dev-master": "1.0.x-dev"
  5470. }
  5471. },
  5472. "autoload": {
  5473. "psr-4": {
  5474. "Psr\\Http\\Client\\": "src/"
  5475. }
  5476. },
  5477. "notification-url": "https://packagist.org/downloads/",
  5478. "license": [
  5479. "MIT"
  5480. ],
  5481. "authors": [
  5482. {
  5483. "name": "PHP-FIG",
  5484. "homepage": "https://www.php-fig.org/"
  5485. }
  5486. ],
  5487. "description": "Common interface for HTTP clients",
  5488. "homepage": "https://github.com/php-fig/http-client",
  5489. "keywords": [
  5490. "http",
  5491. "http-client",
  5492. "psr",
  5493. "psr-18"
  5494. ],
  5495. "support": {
  5496. "source": "https://github.com/php-fig/http-client"
  5497. },
  5498. "time": "2023-09-23T14:17:50+00:00"
  5499. },
  5500. {
  5501. "name": "psr/http-factory",
  5502. "version": "1.1.0",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://github.com/php-fig/http-factory.git",
  5506. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5511. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5512. "shasum": ""
  5513. },
  5514. "require": {
  5515. "php": ">=7.1",
  5516. "psr/http-message": "^1.0 || ^2.0"
  5517. },
  5518. "type": "library",
  5519. "extra": {
  5520. "branch-alias": {
  5521. "dev-master": "1.0.x-dev"
  5522. }
  5523. },
  5524. "autoload": {
  5525. "psr-4": {
  5526. "Psr\\Http\\Message\\": "src/"
  5527. }
  5528. },
  5529. "notification-url": "https://packagist.org/downloads/",
  5530. "license": [
  5531. "MIT"
  5532. ],
  5533. "authors": [
  5534. {
  5535. "name": "PHP-FIG",
  5536. "homepage": "https://www.php-fig.org/"
  5537. }
  5538. ],
  5539. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5540. "keywords": [
  5541. "factory",
  5542. "http",
  5543. "message",
  5544. "psr",
  5545. "psr-17",
  5546. "psr-7",
  5547. "request",
  5548. "response"
  5549. ],
  5550. "support": {
  5551. "source": "https://github.com/php-fig/http-factory"
  5552. },
  5553. "time": "2024-04-15T12:06:14+00:00"
  5554. },
  5555. {
  5556. "name": "psr/http-message",
  5557. "version": "2.0",
  5558. "source": {
  5559. "type": "git",
  5560. "url": "https://github.com/php-fig/http-message.git",
  5561. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5562. },
  5563. "dist": {
  5564. "type": "zip",
  5565. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5566. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5567. "shasum": ""
  5568. },
  5569. "require": {
  5570. "php": "^7.2 || ^8.0"
  5571. },
  5572. "type": "library",
  5573. "extra": {
  5574. "branch-alias": {
  5575. "dev-master": "2.0.x-dev"
  5576. }
  5577. },
  5578. "autoload": {
  5579. "psr-4": {
  5580. "Psr\\Http\\Message\\": "src/"
  5581. }
  5582. },
  5583. "notification-url": "https://packagist.org/downloads/",
  5584. "license": [
  5585. "MIT"
  5586. ],
  5587. "authors": [
  5588. {
  5589. "name": "PHP-FIG",
  5590. "homepage": "https://www.php-fig.org/"
  5591. }
  5592. ],
  5593. "description": "Common interface for HTTP messages",
  5594. "homepage": "https://github.com/php-fig/http-message",
  5595. "keywords": [
  5596. "http",
  5597. "http-message",
  5598. "psr",
  5599. "psr-7",
  5600. "request",
  5601. "response"
  5602. ],
  5603. "support": {
  5604. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5605. },
  5606. "time": "2023-04-04T09:54:51+00:00"
  5607. },
  5608. {
  5609. "name": "psr/http-server-handler",
  5610. "version": "1.0.2",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://github.com/php-fig/http-server-handler.git",
  5614. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5619. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5620. "shasum": ""
  5621. },
  5622. "require": {
  5623. "php": ">=7.0",
  5624. "psr/http-message": "^1.0 || ^2.0"
  5625. },
  5626. "type": "library",
  5627. "extra": {
  5628. "branch-alias": {
  5629. "dev-master": "1.0.x-dev"
  5630. }
  5631. },
  5632. "autoload": {
  5633. "psr-4": {
  5634. "Psr\\Http\\Server\\": "src/"
  5635. }
  5636. },
  5637. "notification-url": "https://packagist.org/downloads/",
  5638. "license": [
  5639. "MIT"
  5640. ],
  5641. "authors": [
  5642. {
  5643. "name": "PHP-FIG",
  5644. "homepage": "https://www.php-fig.org/"
  5645. }
  5646. ],
  5647. "description": "Common interface for HTTP server-side request handler",
  5648. "keywords": [
  5649. "handler",
  5650. "http",
  5651. "http-interop",
  5652. "psr",
  5653. "psr-15",
  5654. "psr-7",
  5655. "request",
  5656. "response",
  5657. "server"
  5658. ],
  5659. "support": {
  5660. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5661. },
  5662. "time": "2023-04-10T20:06:20+00:00"
  5663. },
  5664. {
  5665. "name": "psr/http-server-middleware",
  5666. "version": "1.0.2",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://github.com/php-fig/http-server-middleware.git",
  5670. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5675. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5676. "shasum": ""
  5677. },
  5678. "require": {
  5679. "php": ">=7.0",
  5680. "psr/http-message": "^1.0 || ^2.0",
  5681. "psr/http-server-handler": "^1.0"
  5682. },
  5683. "type": "library",
  5684. "extra": {
  5685. "branch-alias": {
  5686. "dev-master": "1.0.x-dev"
  5687. }
  5688. },
  5689. "autoload": {
  5690. "psr-4": {
  5691. "Psr\\Http\\Server\\": "src/"
  5692. }
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "MIT"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "PHP-FIG",
  5701. "homepage": "https://www.php-fig.org/"
  5702. }
  5703. ],
  5704. "description": "Common interface for HTTP server-side middleware",
  5705. "keywords": [
  5706. "http",
  5707. "http-interop",
  5708. "middleware",
  5709. "psr",
  5710. "psr-15",
  5711. "psr-7",
  5712. "request",
  5713. "response"
  5714. ],
  5715. "support": {
  5716. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5717. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5718. },
  5719. "time": "2023-04-11T06:14:47+00:00"
  5720. },
  5721. {
  5722. "name": "psr/log",
  5723. "version": "3.0.0",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://github.com/php-fig/log.git",
  5727. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5732. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  5733. "shasum": ""
  5734. },
  5735. "require": {
  5736. "php": ">=8.0.0"
  5737. },
  5738. "type": "library",
  5739. "extra": {
  5740. "branch-alias": {
  5741. "dev-master": "3.x-dev"
  5742. }
  5743. },
  5744. "autoload": {
  5745. "psr-4": {
  5746. "Psr\\Log\\": "src"
  5747. }
  5748. },
  5749. "notification-url": "https://packagist.org/downloads/",
  5750. "license": [
  5751. "MIT"
  5752. ],
  5753. "authors": [
  5754. {
  5755. "name": "PHP-FIG",
  5756. "homepage": "https://www.php-fig.org/"
  5757. }
  5758. ],
  5759. "description": "Common interface for logging libraries",
  5760. "homepage": "https://github.com/php-fig/log",
  5761. "keywords": [
  5762. "log",
  5763. "psr",
  5764. "psr-3"
  5765. ],
  5766. "support": {
  5767. "source": "https://github.com/php-fig/log/tree/3.0.0"
  5768. },
  5769. "time": "2021-07-14T16:46:02+00:00"
  5770. },
  5771. {
  5772. "name": "psr/simple-cache",
  5773. "version": "3.0.0",
  5774. "source": {
  5775. "type": "git",
  5776. "url": "https://github.com/php-fig/simple-cache.git",
  5777. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5778. },
  5779. "dist": {
  5780. "type": "zip",
  5781. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5782. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5783. "shasum": ""
  5784. },
  5785. "require": {
  5786. "php": ">=8.0.0"
  5787. },
  5788. "type": "library",
  5789. "extra": {
  5790. "branch-alias": {
  5791. "dev-master": "3.0.x-dev"
  5792. }
  5793. },
  5794. "autoload": {
  5795. "psr-4": {
  5796. "Psr\\SimpleCache\\": "src/"
  5797. }
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "MIT"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "PHP-FIG",
  5806. "homepage": "https://www.php-fig.org/"
  5807. }
  5808. ],
  5809. "description": "Common interfaces for simple caching",
  5810. "keywords": [
  5811. "cache",
  5812. "caching",
  5813. "psr",
  5814. "psr-16",
  5815. "simple-cache"
  5816. ],
  5817. "support": {
  5818. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5819. },
  5820. "time": "2021-10-29T13:26:27+00:00"
  5821. },
  5822. {
  5823. "name": "ralouphie/getallheaders",
  5824. "version": "3.0.3",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://github.com/ralouphie/getallheaders.git",
  5828. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5833. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5834. "shasum": ""
  5835. },
  5836. "require": {
  5837. "php": ">=5.6"
  5838. },
  5839. "require-dev": {
  5840. "php-coveralls/php-coveralls": "^2.1",
  5841. "phpunit/phpunit": "^5 || ^6.5"
  5842. },
  5843. "type": "library",
  5844. "autoload": {
  5845. "files": [
  5846. "src/getallheaders.php"
  5847. ]
  5848. },
  5849. "notification-url": "https://packagist.org/downloads/",
  5850. "license": [
  5851. "MIT"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "Ralph Khattar",
  5856. "email": "ralph.khattar@gmail.com"
  5857. }
  5858. ],
  5859. "description": "A polyfill for getallheaders.",
  5860. "support": {
  5861. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5862. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5863. },
  5864. "time": "2019-03-08T08:55:37+00:00"
  5865. },
  5866. {
  5867. "name": "swow/psr7-plus",
  5868. "version": "v1.1.2",
  5869. "source": {
  5870. "type": "git",
  5871. "url": "https://github.com/swow/psr7-plus.git",
  5872. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5873. },
  5874. "dist": {
  5875. "type": "zip",
  5876. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5877. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5878. "shasum": ""
  5879. },
  5880. "require": {
  5881. "php": ">=8.0",
  5882. "psr/http-client": "^1.0",
  5883. "psr/http-factory": "^1.0",
  5884. "psr/http-message": "^1.1|^2.0"
  5885. },
  5886. "type": "library",
  5887. "autoload": {
  5888. "psr-4": {
  5889. "Swow\\Psr7\\Message\\": "src/Message/"
  5890. }
  5891. },
  5892. "notification-url": "https://packagist.org/downloads/",
  5893. "license": [
  5894. "Apache-2.0"
  5895. ],
  5896. "authors": [
  5897. {
  5898. "name": "twose",
  5899. "email": "twosee@php.net"
  5900. }
  5901. ],
  5902. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5903. "keywords": [
  5904. "http",
  5905. "psr17",
  5906. "psr7",
  5907. "swow",
  5908. "websocket"
  5909. ],
  5910. "support": {
  5911. "issues": "https://github.com/swow/swow",
  5912. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5913. },
  5914. "time": "2023-06-15T09:18:11+00:00"
  5915. },
  5916. {
  5917. "name": "symfony/console",
  5918. "version": "v6.4.8",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://github.com/symfony/console.git",
  5922. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  5923. },
  5924. "dist": {
  5925. "type": "zip",
  5926. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5927. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  5928. "shasum": ""
  5929. },
  5930. "require": {
  5931. "php": ">=8.1",
  5932. "symfony/deprecation-contracts": "^2.5|^3",
  5933. "symfony/polyfill-mbstring": "~1.0",
  5934. "symfony/service-contracts": "^2.5|^3",
  5935. "symfony/string": "^5.4|^6.0|^7.0"
  5936. },
  5937. "conflict": {
  5938. "symfony/dependency-injection": "<5.4",
  5939. "symfony/dotenv": "<5.4",
  5940. "symfony/event-dispatcher": "<5.4",
  5941. "symfony/lock": "<5.4",
  5942. "symfony/process": "<5.4"
  5943. },
  5944. "provide": {
  5945. "psr/log-implementation": "1.0|2.0|3.0"
  5946. },
  5947. "require-dev": {
  5948. "psr/log": "^1|^2|^3",
  5949. "symfony/config": "^5.4|^6.0|^7.0",
  5950. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5951. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5952. "symfony/http-foundation": "^6.4|^7.0",
  5953. "symfony/http-kernel": "^6.4|^7.0",
  5954. "symfony/lock": "^5.4|^6.0|^7.0",
  5955. "symfony/messenger": "^5.4|^6.0|^7.0",
  5956. "symfony/process": "^5.4|^6.0|^7.0",
  5957. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5958. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5959. },
  5960. "type": "library",
  5961. "autoload": {
  5962. "psr-4": {
  5963. "Symfony\\Component\\Console\\": ""
  5964. },
  5965. "exclude-from-classmap": [
  5966. "/Tests/"
  5967. ]
  5968. },
  5969. "notification-url": "https://packagist.org/downloads/",
  5970. "license": [
  5971. "MIT"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "Fabien Potencier",
  5976. "email": "fabien@symfony.com"
  5977. },
  5978. {
  5979. "name": "Symfony Community",
  5980. "homepage": "https://symfony.com/contributors"
  5981. }
  5982. ],
  5983. "description": "Eases the creation of beautiful and testable command line interfaces",
  5984. "homepage": "https://symfony.com",
  5985. "keywords": [
  5986. "cli",
  5987. "command-line",
  5988. "console",
  5989. "terminal"
  5990. ],
  5991. "support": {
  5992. "source": "https://github.com/symfony/console/tree/v6.4.8"
  5993. },
  5994. "funding": [
  5995. {
  5996. "url": "https://symfony.com/sponsor",
  5997. "type": "custom"
  5998. },
  5999. {
  6000. "url": "https://github.com/fabpot",
  6001. "type": "github"
  6002. },
  6003. {
  6004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6005. "type": "tidelift"
  6006. }
  6007. ],
  6008. "time": "2024-05-31T14:49:08+00:00"
  6009. },
  6010. {
  6011. "name": "symfony/deprecation-contracts",
  6012. "version": "v3.5.0",
  6013. "source": {
  6014. "type": "git",
  6015. "url": "https://github.com/symfony/deprecation-contracts.git",
  6016. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6017. },
  6018. "dist": {
  6019. "type": "zip",
  6020. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6021. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6022. "shasum": ""
  6023. },
  6024. "require": {
  6025. "php": ">=8.1"
  6026. },
  6027. "type": "library",
  6028. "extra": {
  6029. "branch-alias": {
  6030. "dev-main": "3.5-dev"
  6031. },
  6032. "thanks": {
  6033. "name": "symfony/contracts",
  6034. "url": "https://github.com/symfony/contracts"
  6035. }
  6036. },
  6037. "autoload": {
  6038. "files": [
  6039. "function.php"
  6040. ]
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "license": [
  6044. "MIT"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Nicolas Grekas",
  6049. "email": "p@tchwork.com"
  6050. },
  6051. {
  6052. "name": "Symfony Community",
  6053. "homepage": "https://symfony.com/contributors"
  6054. }
  6055. ],
  6056. "description": "A generic function and convention to trigger deprecation notices",
  6057. "homepage": "https://symfony.com",
  6058. "support": {
  6059. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6060. },
  6061. "funding": [
  6062. {
  6063. "url": "https://symfony.com/sponsor",
  6064. "type": "custom"
  6065. },
  6066. {
  6067. "url": "https://github.com/fabpot",
  6068. "type": "github"
  6069. },
  6070. {
  6071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6072. "type": "tidelift"
  6073. }
  6074. ],
  6075. "time": "2024-04-18T09:32:20+00:00"
  6076. },
  6077. {
  6078. "name": "symfony/finder",
  6079. "version": "v6.4.8",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/symfony/finder.git",
  6083. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  6088. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  6089. "shasum": ""
  6090. },
  6091. "require": {
  6092. "php": ">=8.1"
  6093. },
  6094. "require-dev": {
  6095. "symfony/filesystem": "^6.0|^7.0"
  6096. },
  6097. "type": "library",
  6098. "autoload": {
  6099. "psr-4": {
  6100. "Symfony\\Component\\Finder\\": ""
  6101. },
  6102. "exclude-from-classmap": [
  6103. "/Tests/"
  6104. ]
  6105. },
  6106. "notification-url": "https://packagist.org/downloads/",
  6107. "license": [
  6108. "MIT"
  6109. ],
  6110. "authors": [
  6111. {
  6112. "name": "Fabien Potencier",
  6113. "email": "fabien@symfony.com"
  6114. },
  6115. {
  6116. "name": "Symfony Community",
  6117. "homepage": "https://symfony.com/contributors"
  6118. }
  6119. ],
  6120. "description": "Finds files and directories via an intuitive fluent interface",
  6121. "homepage": "https://symfony.com",
  6122. "support": {
  6123. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  6124. },
  6125. "funding": [
  6126. {
  6127. "url": "https://symfony.com/sponsor",
  6128. "type": "custom"
  6129. },
  6130. {
  6131. "url": "https://github.com/fabpot",
  6132. "type": "github"
  6133. },
  6134. {
  6135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6136. "type": "tidelift"
  6137. }
  6138. ],
  6139. "time": "2024-05-31T14:49:08+00:00"
  6140. },
  6141. {
  6142. "name": "symfony/polyfill-ctype",
  6143. "version": "v1.29.0",
  6144. "source": {
  6145. "type": "git",
  6146. "url": "https://github.com/symfony/polyfill-ctype.git",
  6147. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  6148. },
  6149. "dist": {
  6150. "type": "zip",
  6151. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6152. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  6153. "shasum": ""
  6154. },
  6155. "require": {
  6156. "php": ">=7.1"
  6157. },
  6158. "provide": {
  6159. "ext-ctype": "*"
  6160. },
  6161. "suggest": {
  6162. "ext-ctype": "For best performance"
  6163. },
  6164. "type": "library",
  6165. "extra": {
  6166. "thanks": {
  6167. "name": "symfony/polyfill",
  6168. "url": "https://github.com/symfony/polyfill"
  6169. }
  6170. },
  6171. "autoload": {
  6172. "files": [
  6173. "bootstrap.php"
  6174. ],
  6175. "psr-4": {
  6176. "Symfony\\Polyfill\\Ctype\\": ""
  6177. }
  6178. },
  6179. "notification-url": "https://packagist.org/downloads/",
  6180. "license": [
  6181. "MIT"
  6182. ],
  6183. "authors": [
  6184. {
  6185. "name": "Gert de Pagter",
  6186. "email": "BackEndTea@gmail.com"
  6187. },
  6188. {
  6189. "name": "Symfony Community",
  6190. "homepage": "https://symfony.com/contributors"
  6191. }
  6192. ],
  6193. "description": "Symfony polyfill for ctype functions",
  6194. "homepage": "https://symfony.com",
  6195. "keywords": [
  6196. "compatibility",
  6197. "ctype",
  6198. "polyfill",
  6199. "portable"
  6200. ],
  6201. "support": {
  6202. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  6203. },
  6204. "funding": [
  6205. {
  6206. "url": "https://symfony.com/sponsor",
  6207. "type": "custom"
  6208. },
  6209. {
  6210. "url": "https://github.com/fabpot",
  6211. "type": "github"
  6212. },
  6213. {
  6214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6215. "type": "tidelift"
  6216. }
  6217. ],
  6218. "time": "2024-01-29T20:11:03+00:00"
  6219. },
  6220. {
  6221. "name": "symfony/polyfill-intl-grapheme",
  6222. "version": "v1.29.0",
  6223. "source": {
  6224. "type": "git",
  6225. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6226. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  6227. },
  6228. "dist": {
  6229. "type": "zip",
  6230. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6231. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  6232. "shasum": ""
  6233. },
  6234. "require": {
  6235. "php": ">=7.1"
  6236. },
  6237. "suggest": {
  6238. "ext-intl": "For best performance"
  6239. },
  6240. "type": "library",
  6241. "extra": {
  6242. "thanks": {
  6243. "name": "symfony/polyfill",
  6244. "url": "https://github.com/symfony/polyfill"
  6245. }
  6246. },
  6247. "autoload": {
  6248. "files": [
  6249. "bootstrap.php"
  6250. ],
  6251. "psr-4": {
  6252. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6253. }
  6254. },
  6255. "notification-url": "https://packagist.org/downloads/",
  6256. "license": [
  6257. "MIT"
  6258. ],
  6259. "authors": [
  6260. {
  6261. "name": "Nicolas Grekas",
  6262. "email": "p@tchwork.com"
  6263. },
  6264. {
  6265. "name": "Symfony Community",
  6266. "homepage": "https://symfony.com/contributors"
  6267. }
  6268. ],
  6269. "description": "Symfony polyfill for intl's grapheme_* functions",
  6270. "homepage": "https://symfony.com",
  6271. "keywords": [
  6272. "compatibility",
  6273. "grapheme",
  6274. "intl",
  6275. "polyfill",
  6276. "portable",
  6277. "shim"
  6278. ],
  6279. "support": {
  6280. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  6281. },
  6282. "funding": [
  6283. {
  6284. "url": "https://symfony.com/sponsor",
  6285. "type": "custom"
  6286. },
  6287. {
  6288. "url": "https://github.com/fabpot",
  6289. "type": "github"
  6290. },
  6291. {
  6292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6293. "type": "tidelift"
  6294. }
  6295. ],
  6296. "time": "2024-01-29T20:11:03+00:00"
  6297. },
  6298. {
  6299. "name": "symfony/polyfill-intl-normalizer",
  6300. "version": "v1.29.0",
  6301. "source": {
  6302. "type": "git",
  6303. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6304. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  6305. },
  6306. "dist": {
  6307. "type": "zip",
  6308. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  6309. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  6310. "shasum": ""
  6311. },
  6312. "require": {
  6313. "php": ">=7.1"
  6314. },
  6315. "suggest": {
  6316. "ext-intl": "For best performance"
  6317. },
  6318. "type": "library",
  6319. "extra": {
  6320. "thanks": {
  6321. "name": "symfony/polyfill",
  6322. "url": "https://github.com/symfony/polyfill"
  6323. }
  6324. },
  6325. "autoload": {
  6326. "files": [
  6327. "bootstrap.php"
  6328. ],
  6329. "psr-4": {
  6330. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6331. },
  6332. "classmap": [
  6333. "Resources/stubs"
  6334. ]
  6335. },
  6336. "notification-url": "https://packagist.org/downloads/",
  6337. "license": [
  6338. "MIT"
  6339. ],
  6340. "authors": [
  6341. {
  6342. "name": "Nicolas Grekas",
  6343. "email": "p@tchwork.com"
  6344. },
  6345. {
  6346. "name": "Symfony Community",
  6347. "homepage": "https://symfony.com/contributors"
  6348. }
  6349. ],
  6350. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6351. "homepage": "https://symfony.com",
  6352. "keywords": [
  6353. "compatibility",
  6354. "intl",
  6355. "normalizer",
  6356. "polyfill",
  6357. "portable",
  6358. "shim"
  6359. ],
  6360. "support": {
  6361. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  6362. },
  6363. "funding": [
  6364. {
  6365. "url": "https://symfony.com/sponsor",
  6366. "type": "custom"
  6367. },
  6368. {
  6369. "url": "https://github.com/fabpot",
  6370. "type": "github"
  6371. },
  6372. {
  6373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6374. "type": "tidelift"
  6375. }
  6376. ],
  6377. "time": "2024-01-29T20:11:03+00:00"
  6378. },
  6379. {
  6380. "name": "symfony/polyfill-mbstring",
  6381. "version": "v1.29.0",
  6382. "source": {
  6383. "type": "git",
  6384. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6385. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  6386. },
  6387. "dist": {
  6388. "type": "zip",
  6389. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6390. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  6391. "shasum": ""
  6392. },
  6393. "require": {
  6394. "php": ">=7.1"
  6395. },
  6396. "provide": {
  6397. "ext-mbstring": "*"
  6398. },
  6399. "suggest": {
  6400. "ext-mbstring": "For best performance"
  6401. },
  6402. "type": "library",
  6403. "extra": {
  6404. "thanks": {
  6405. "name": "symfony/polyfill",
  6406. "url": "https://github.com/symfony/polyfill"
  6407. }
  6408. },
  6409. "autoload": {
  6410. "files": [
  6411. "bootstrap.php"
  6412. ],
  6413. "psr-4": {
  6414. "Symfony\\Polyfill\\Mbstring\\": ""
  6415. }
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "MIT"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "Nicolas Grekas",
  6424. "email": "p@tchwork.com"
  6425. },
  6426. {
  6427. "name": "Symfony Community",
  6428. "homepage": "https://symfony.com/contributors"
  6429. }
  6430. ],
  6431. "description": "Symfony polyfill for the Mbstring extension",
  6432. "homepage": "https://symfony.com",
  6433. "keywords": [
  6434. "compatibility",
  6435. "mbstring",
  6436. "polyfill",
  6437. "portable",
  6438. "shim"
  6439. ],
  6440. "support": {
  6441. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  6442. },
  6443. "funding": [
  6444. {
  6445. "url": "https://symfony.com/sponsor",
  6446. "type": "custom"
  6447. },
  6448. {
  6449. "url": "https://github.com/fabpot",
  6450. "type": "github"
  6451. },
  6452. {
  6453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6454. "type": "tidelift"
  6455. }
  6456. ],
  6457. "time": "2024-01-29T20:11:03+00:00"
  6458. },
  6459. {
  6460. "name": "symfony/polyfill-php80",
  6461. "version": "v1.29.0",
  6462. "source": {
  6463. "type": "git",
  6464. "url": "https://github.com/symfony/polyfill-php80.git",
  6465. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  6466. },
  6467. "dist": {
  6468. "type": "zip",
  6469. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6470. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  6471. "shasum": ""
  6472. },
  6473. "require": {
  6474. "php": ">=7.1"
  6475. },
  6476. "type": "library",
  6477. "extra": {
  6478. "thanks": {
  6479. "name": "symfony/polyfill",
  6480. "url": "https://github.com/symfony/polyfill"
  6481. }
  6482. },
  6483. "autoload": {
  6484. "files": [
  6485. "bootstrap.php"
  6486. ],
  6487. "psr-4": {
  6488. "Symfony\\Polyfill\\Php80\\": ""
  6489. },
  6490. "classmap": [
  6491. "Resources/stubs"
  6492. ]
  6493. },
  6494. "notification-url": "https://packagist.org/downloads/",
  6495. "license": [
  6496. "MIT"
  6497. ],
  6498. "authors": [
  6499. {
  6500. "name": "Ion Bazan",
  6501. "email": "ion.bazan@gmail.com"
  6502. },
  6503. {
  6504. "name": "Nicolas Grekas",
  6505. "email": "p@tchwork.com"
  6506. },
  6507. {
  6508. "name": "Symfony Community",
  6509. "homepage": "https://symfony.com/contributors"
  6510. }
  6511. ],
  6512. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6513. "homepage": "https://symfony.com",
  6514. "keywords": [
  6515. "compatibility",
  6516. "polyfill",
  6517. "portable",
  6518. "shim"
  6519. ],
  6520. "support": {
  6521. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6522. },
  6523. "funding": [
  6524. {
  6525. "url": "https://symfony.com/sponsor",
  6526. "type": "custom"
  6527. },
  6528. {
  6529. "url": "https://github.com/fabpot",
  6530. "type": "github"
  6531. },
  6532. {
  6533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6534. "type": "tidelift"
  6535. }
  6536. ],
  6537. "time": "2024-01-29T20:11:03+00:00"
  6538. },
  6539. {
  6540. "name": "symfony/service-contracts",
  6541. "version": "v3.5.0",
  6542. "source": {
  6543. "type": "git",
  6544. "url": "https://github.com/symfony/service-contracts.git",
  6545. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6546. },
  6547. "dist": {
  6548. "type": "zip",
  6549. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6550. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6551. "shasum": ""
  6552. },
  6553. "require": {
  6554. "php": ">=8.1",
  6555. "psr/container": "^1.1|^2.0",
  6556. "symfony/deprecation-contracts": "^2.5|^3"
  6557. },
  6558. "conflict": {
  6559. "ext-psr": "<1.1|>=2"
  6560. },
  6561. "type": "library",
  6562. "extra": {
  6563. "branch-alias": {
  6564. "dev-main": "3.5-dev"
  6565. },
  6566. "thanks": {
  6567. "name": "symfony/contracts",
  6568. "url": "https://github.com/symfony/contracts"
  6569. }
  6570. },
  6571. "autoload": {
  6572. "psr-4": {
  6573. "Symfony\\Contracts\\Service\\": ""
  6574. },
  6575. "exclude-from-classmap": [
  6576. "/Test/"
  6577. ]
  6578. },
  6579. "notification-url": "https://packagist.org/downloads/",
  6580. "license": [
  6581. "MIT"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "Nicolas Grekas",
  6586. "email": "p@tchwork.com"
  6587. },
  6588. {
  6589. "name": "Symfony Community",
  6590. "homepage": "https://symfony.com/contributors"
  6591. }
  6592. ],
  6593. "description": "Generic abstractions related to writing services",
  6594. "homepage": "https://symfony.com",
  6595. "keywords": [
  6596. "abstractions",
  6597. "contracts",
  6598. "decoupling",
  6599. "interfaces",
  6600. "interoperability",
  6601. "standards"
  6602. ],
  6603. "support": {
  6604. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6605. },
  6606. "funding": [
  6607. {
  6608. "url": "https://symfony.com/sponsor",
  6609. "type": "custom"
  6610. },
  6611. {
  6612. "url": "https://github.com/fabpot",
  6613. "type": "github"
  6614. },
  6615. {
  6616. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6617. "type": "tidelift"
  6618. }
  6619. ],
  6620. "time": "2024-04-18T09:32:20+00:00"
  6621. },
  6622. {
  6623. "name": "symfony/string",
  6624. "version": "v6.4.8",
  6625. "source": {
  6626. "type": "git",
  6627. "url": "https://github.com/symfony/string.git",
  6628. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  6629. },
  6630. "dist": {
  6631. "type": "zip",
  6632. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6633. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  6634. "shasum": ""
  6635. },
  6636. "require": {
  6637. "php": ">=8.1",
  6638. "symfony/polyfill-ctype": "~1.8",
  6639. "symfony/polyfill-intl-grapheme": "~1.0",
  6640. "symfony/polyfill-intl-normalizer": "~1.0",
  6641. "symfony/polyfill-mbstring": "~1.0"
  6642. },
  6643. "conflict": {
  6644. "symfony/translation-contracts": "<2.5"
  6645. },
  6646. "require-dev": {
  6647. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6648. "symfony/http-client": "^5.4|^6.0|^7.0",
  6649. "symfony/intl": "^6.2|^7.0",
  6650. "symfony/translation-contracts": "^2.5|^3.0",
  6651. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6652. },
  6653. "type": "library",
  6654. "autoload": {
  6655. "files": [
  6656. "Resources/functions.php"
  6657. ],
  6658. "psr-4": {
  6659. "Symfony\\Component\\String\\": ""
  6660. },
  6661. "exclude-from-classmap": [
  6662. "/Tests/"
  6663. ]
  6664. },
  6665. "notification-url": "https://packagist.org/downloads/",
  6666. "license": [
  6667. "MIT"
  6668. ],
  6669. "authors": [
  6670. {
  6671. "name": "Nicolas Grekas",
  6672. "email": "p@tchwork.com"
  6673. },
  6674. {
  6675. "name": "Symfony Community",
  6676. "homepage": "https://symfony.com/contributors"
  6677. }
  6678. ],
  6679. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6680. "homepage": "https://symfony.com",
  6681. "keywords": [
  6682. "grapheme",
  6683. "i18n",
  6684. "string",
  6685. "unicode",
  6686. "utf-8",
  6687. "utf8"
  6688. ],
  6689. "support": {
  6690. "source": "https://github.com/symfony/string/tree/v6.4.8"
  6691. },
  6692. "funding": [
  6693. {
  6694. "url": "https://symfony.com/sponsor",
  6695. "type": "custom"
  6696. },
  6697. {
  6698. "url": "https://github.com/fabpot",
  6699. "type": "github"
  6700. },
  6701. {
  6702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6703. "type": "tidelift"
  6704. }
  6705. ],
  6706. "time": "2024-05-31T14:49:08+00:00"
  6707. },
  6708. {
  6709. "name": "symfony/translation",
  6710. "version": "v6.4.8",
  6711. "source": {
  6712. "type": "git",
  6713. "url": "https://github.com/symfony/translation.git",
  6714. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  6715. },
  6716. "dist": {
  6717. "type": "zip",
  6718. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6719. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  6720. "shasum": ""
  6721. },
  6722. "require": {
  6723. "php": ">=8.1",
  6724. "symfony/deprecation-contracts": "^2.5|^3",
  6725. "symfony/polyfill-mbstring": "~1.0",
  6726. "symfony/translation-contracts": "^2.5|^3.0"
  6727. },
  6728. "conflict": {
  6729. "symfony/config": "<5.4",
  6730. "symfony/console": "<5.4",
  6731. "symfony/dependency-injection": "<5.4",
  6732. "symfony/http-client-contracts": "<2.5",
  6733. "symfony/http-kernel": "<5.4",
  6734. "symfony/service-contracts": "<2.5",
  6735. "symfony/twig-bundle": "<5.4",
  6736. "symfony/yaml": "<5.4"
  6737. },
  6738. "provide": {
  6739. "symfony/translation-implementation": "2.3|3.0"
  6740. },
  6741. "require-dev": {
  6742. "nikic/php-parser": "^4.18|^5.0",
  6743. "psr/log": "^1|^2|^3",
  6744. "symfony/config": "^5.4|^6.0|^7.0",
  6745. "symfony/console": "^5.4|^6.0|^7.0",
  6746. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6747. "symfony/finder": "^5.4|^6.0|^7.0",
  6748. "symfony/http-client-contracts": "^2.5|^3.0",
  6749. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6750. "symfony/intl": "^5.4|^6.0|^7.0",
  6751. "symfony/polyfill-intl-icu": "^1.21",
  6752. "symfony/routing": "^5.4|^6.0|^7.0",
  6753. "symfony/service-contracts": "^2.5|^3",
  6754. "symfony/yaml": "^5.4|^6.0|^7.0"
  6755. },
  6756. "type": "library",
  6757. "autoload": {
  6758. "files": [
  6759. "Resources/functions.php"
  6760. ],
  6761. "psr-4": {
  6762. "Symfony\\Component\\Translation\\": ""
  6763. },
  6764. "exclude-from-classmap": [
  6765. "/Tests/"
  6766. ]
  6767. },
  6768. "notification-url": "https://packagist.org/downloads/",
  6769. "license": [
  6770. "MIT"
  6771. ],
  6772. "authors": [
  6773. {
  6774. "name": "Fabien Potencier",
  6775. "email": "fabien@symfony.com"
  6776. },
  6777. {
  6778. "name": "Symfony Community",
  6779. "homepage": "https://symfony.com/contributors"
  6780. }
  6781. ],
  6782. "description": "Provides tools to internationalize your application",
  6783. "homepage": "https://symfony.com",
  6784. "support": {
  6785. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  6786. },
  6787. "funding": [
  6788. {
  6789. "url": "https://symfony.com/sponsor",
  6790. "type": "custom"
  6791. },
  6792. {
  6793. "url": "https://github.com/fabpot",
  6794. "type": "github"
  6795. },
  6796. {
  6797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6798. "type": "tidelift"
  6799. }
  6800. ],
  6801. "time": "2024-05-31T14:49:08+00:00"
  6802. },
  6803. {
  6804. "name": "symfony/translation-contracts",
  6805. "version": "v3.5.0",
  6806. "source": {
  6807. "type": "git",
  6808. "url": "https://github.com/symfony/translation-contracts.git",
  6809. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6810. },
  6811. "dist": {
  6812. "type": "zip",
  6813. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6814. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6815. "shasum": ""
  6816. },
  6817. "require": {
  6818. "php": ">=8.1"
  6819. },
  6820. "type": "library",
  6821. "extra": {
  6822. "branch-alias": {
  6823. "dev-main": "3.5-dev"
  6824. },
  6825. "thanks": {
  6826. "name": "symfony/contracts",
  6827. "url": "https://github.com/symfony/contracts"
  6828. }
  6829. },
  6830. "autoload": {
  6831. "psr-4": {
  6832. "Symfony\\Contracts\\Translation\\": ""
  6833. },
  6834. "exclude-from-classmap": [
  6835. "/Test/"
  6836. ]
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "MIT"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Nicolas Grekas",
  6845. "email": "p@tchwork.com"
  6846. },
  6847. {
  6848. "name": "Symfony Community",
  6849. "homepage": "https://symfony.com/contributors"
  6850. }
  6851. ],
  6852. "description": "Generic abstractions related to translation",
  6853. "homepage": "https://symfony.com",
  6854. "keywords": [
  6855. "abstractions",
  6856. "contracts",
  6857. "decoupling",
  6858. "interfaces",
  6859. "interoperability",
  6860. "standards"
  6861. ],
  6862. "support": {
  6863. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6864. },
  6865. "funding": [
  6866. {
  6867. "url": "https://symfony.com/sponsor",
  6868. "type": "custom"
  6869. },
  6870. {
  6871. "url": "https://github.com/fabpot",
  6872. "type": "github"
  6873. },
  6874. {
  6875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6876. "type": "tidelift"
  6877. }
  6878. ],
  6879. "time": "2024-04-18T09:32:20+00:00"
  6880. },
  6881. {
  6882. "name": "vlucas/phpdotenv",
  6883. "version": "v5.6.0",
  6884. "source": {
  6885. "type": "git",
  6886. "url": "https://github.com/vlucas/phpdotenv.git",
  6887. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  6888. },
  6889. "dist": {
  6890. "type": "zip",
  6891. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6892. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  6893. "shasum": ""
  6894. },
  6895. "require": {
  6896. "ext-pcre": "*",
  6897. "graham-campbell/result-type": "^1.1.2",
  6898. "php": "^7.2.5 || ^8.0",
  6899. "phpoption/phpoption": "^1.9.2",
  6900. "symfony/polyfill-ctype": "^1.24",
  6901. "symfony/polyfill-mbstring": "^1.24",
  6902. "symfony/polyfill-php80": "^1.24"
  6903. },
  6904. "require-dev": {
  6905. "bamarni/composer-bin-plugin": "^1.8.2",
  6906. "ext-filter": "*",
  6907. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6908. },
  6909. "suggest": {
  6910. "ext-filter": "Required to use the boolean validator."
  6911. },
  6912. "type": "library",
  6913. "extra": {
  6914. "bamarni-bin": {
  6915. "bin-links": true,
  6916. "forward-command": true
  6917. },
  6918. "branch-alias": {
  6919. "dev-master": "5.6-dev"
  6920. }
  6921. },
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Dotenv\\": "src/"
  6925. }
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "BSD-3-Clause"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Graham Campbell",
  6934. "email": "hello@gjcampbell.co.uk",
  6935. "homepage": "https://github.com/GrahamCampbell"
  6936. },
  6937. {
  6938. "name": "Vance Lucas",
  6939. "email": "vance@vancelucas.com",
  6940. "homepage": "https://github.com/vlucas"
  6941. }
  6942. ],
  6943. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6944. "keywords": [
  6945. "dotenv",
  6946. "env",
  6947. "environment"
  6948. ],
  6949. "support": {
  6950. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6951. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  6952. },
  6953. "funding": [
  6954. {
  6955. "url": "https://github.com/GrahamCampbell",
  6956. "type": "github"
  6957. },
  6958. {
  6959. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6960. "type": "tidelift"
  6961. }
  6962. ],
  6963. "time": "2023-11-12T22:43:29+00:00"
  6964. }
  6965. ],
  6966. "packages-dev": [
  6967. {
  6968. "name": "clue/ndjson-react",
  6969. "version": "v1.3.0",
  6970. "source": {
  6971. "type": "git",
  6972. "url": "https://github.com/clue/reactphp-ndjson.git",
  6973. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6974. },
  6975. "dist": {
  6976. "type": "zip",
  6977. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6978. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6979. "shasum": ""
  6980. },
  6981. "require": {
  6982. "php": ">=5.3",
  6983. "react/stream": "^1.2"
  6984. },
  6985. "require-dev": {
  6986. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6987. "react/event-loop": "^1.2"
  6988. },
  6989. "type": "library",
  6990. "autoload": {
  6991. "psr-4": {
  6992. "Clue\\React\\NDJson\\": "src/"
  6993. }
  6994. },
  6995. "notification-url": "https://packagist.org/downloads/",
  6996. "license": [
  6997. "MIT"
  6998. ],
  6999. "authors": [
  7000. {
  7001. "name": "Christian Lück",
  7002. "email": "christian@clue.engineering"
  7003. }
  7004. ],
  7005. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7006. "homepage": "https://github.com/clue/reactphp-ndjson",
  7007. "keywords": [
  7008. "NDJSON",
  7009. "json",
  7010. "jsonlines",
  7011. "newline",
  7012. "reactphp",
  7013. "streaming"
  7014. ],
  7015. "support": {
  7016. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7017. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7018. },
  7019. "funding": [
  7020. {
  7021. "url": "https://clue.engineering/support",
  7022. "type": "custom"
  7023. },
  7024. {
  7025. "url": "https://github.com/clue",
  7026. "type": "github"
  7027. }
  7028. ],
  7029. "time": "2022-12-23T10:58:28+00:00"
  7030. },
  7031. {
  7032. "name": "composer/pcre",
  7033. "version": "3.1.4",
  7034. "source": {
  7035. "type": "git",
  7036. "url": "https://github.com/composer/pcre.git",
  7037. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  7038. },
  7039. "dist": {
  7040. "type": "zip",
  7041. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  7042. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  7043. "shasum": ""
  7044. },
  7045. "require": {
  7046. "php": "^7.4 || ^8.0"
  7047. },
  7048. "require-dev": {
  7049. "phpstan/phpstan": "^1.3",
  7050. "phpstan/phpstan-strict-rules": "^1.1",
  7051. "symfony/phpunit-bridge": "^5"
  7052. },
  7053. "type": "library",
  7054. "extra": {
  7055. "branch-alias": {
  7056. "dev-main": "3.x-dev"
  7057. }
  7058. },
  7059. "autoload": {
  7060. "psr-4": {
  7061. "Composer\\Pcre\\": "src"
  7062. }
  7063. },
  7064. "notification-url": "https://packagist.org/downloads/",
  7065. "license": [
  7066. "MIT"
  7067. ],
  7068. "authors": [
  7069. {
  7070. "name": "Jordi Boggiano",
  7071. "email": "j.boggiano@seld.be",
  7072. "homepage": "http://seld.be"
  7073. }
  7074. ],
  7075. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7076. "keywords": [
  7077. "PCRE",
  7078. "preg",
  7079. "regex",
  7080. "regular expression"
  7081. ],
  7082. "support": {
  7083. "issues": "https://github.com/composer/pcre/issues",
  7084. "source": "https://github.com/composer/pcre/tree/3.1.4"
  7085. },
  7086. "funding": [
  7087. {
  7088. "url": "https://packagist.com",
  7089. "type": "custom"
  7090. },
  7091. {
  7092. "url": "https://github.com/composer",
  7093. "type": "github"
  7094. },
  7095. {
  7096. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7097. "type": "tidelift"
  7098. }
  7099. ],
  7100. "time": "2024-05-27T13:40:54+00:00"
  7101. },
  7102. {
  7103. "name": "composer/semver",
  7104. "version": "3.4.0",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://github.com/composer/semver.git",
  7108. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7113. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7114. "shasum": ""
  7115. },
  7116. "require": {
  7117. "php": "^5.3.2 || ^7.0 || ^8.0"
  7118. },
  7119. "require-dev": {
  7120. "phpstan/phpstan": "^1.4",
  7121. "symfony/phpunit-bridge": "^4.2 || ^5"
  7122. },
  7123. "type": "library",
  7124. "extra": {
  7125. "branch-alias": {
  7126. "dev-main": "3.x-dev"
  7127. }
  7128. },
  7129. "autoload": {
  7130. "psr-4": {
  7131. "Composer\\Semver\\": "src"
  7132. }
  7133. },
  7134. "notification-url": "https://packagist.org/downloads/",
  7135. "license": [
  7136. "MIT"
  7137. ],
  7138. "authors": [
  7139. {
  7140. "name": "Nils Adermann",
  7141. "email": "naderman@naderman.de",
  7142. "homepage": "http://www.naderman.de"
  7143. },
  7144. {
  7145. "name": "Jordi Boggiano",
  7146. "email": "j.boggiano@seld.be",
  7147. "homepage": "http://seld.be"
  7148. },
  7149. {
  7150. "name": "Rob Bast",
  7151. "email": "rob.bast@gmail.com",
  7152. "homepage": "http://robbast.nl"
  7153. }
  7154. ],
  7155. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7156. "keywords": [
  7157. "semantic",
  7158. "semver",
  7159. "validation",
  7160. "versioning"
  7161. ],
  7162. "support": {
  7163. "irc": "ircs://irc.libera.chat:6697/composer",
  7164. "issues": "https://github.com/composer/semver/issues",
  7165. "source": "https://github.com/composer/semver/tree/3.4.0"
  7166. },
  7167. "funding": [
  7168. {
  7169. "url": "https://packagist.com",
  7170. "type": "custom"
  7171. },
  7172. {
  7173. "url": "https://github.com/composer",
  7174. "type": "github"
  7175. },
  7176. {
  7177. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7178. "type": "tidelift"
  7179. }
  7180. ],
  7181. "time": "2023-08-31T09:50:34+00:00"
  7182. },
  7183. {
  7184. "name": "composer/xdebug-handler",
  7185. "version": "3.0.5",
  7186. "source": {
  7187. "type": "git",
  7188. "url": "https://github.com/composer/xdebug-handler.git",
  7189. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7190. },
  7191. "dist": {
  7192. "type": "zip",
  7193. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7194. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7195. "shasum": ""
  7196. },
  7197. "require": {
  7198. "composer/pcre": "^1 || ^2 || ^3",
  7199. "php": "^7.2.5 || ^8.0",
  7200. "psr/log": "^1 || ^2 || ^3"
  7201. },
  7202. "require-dev": {
  7203. "phpstan/phpstan": "^1.0",
  7204. "phpstan/phpstan-strict-rules": "^1.1",
  7205. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7206. },
  7207. "type": "library",
  7208. "autoload": {
  7209. "psr-4": {
  7210. "Composer\\XdebugHandler\\": "src"
  7211. }
  7212. },
  7213. "notification-url": "https://packagist.org/downloads/",
  7214. "license": [
  7215. "MIT"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "John Stevenson",
  7220. "email": "john-stevenson@blueyonder.co.uk"
  7221. }
  7222. ],
  7223. "description": "Restarts a process without Xdebug.",
  7224. "keywords": [
  7225. "Xdebug",
  7226. "performance"
  7227. ],
  7228. "support": {
  7229. "irc": "ircs://irc.libera.chat:6697/composer",
  7230. "issues": "https://github.com/composer/xdebug-handler/issues",
  7231. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7232. },
  7233. "funding": [
  7234. {
  7235. "url": "https://packagist.com",
  7236. "type": "custom"
  7237. },
  7238. {
  7239. "url": "https://github.com/composer",
  7240. "type": "github"
  7241. },
  7242. {
  7243. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7244. "type": "tidelift"
  7245. }
  7246. ],
  7247. "time": "2024-05-06T16:37:16+00:00"
  7248. },
  7249. {
  7250. "name": "evenement/evenement",
  7251. "version": "v3.0.2",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/igorw/evenement.git",
  7255. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7260. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7261. "shasum": ""
  7262. },
  7263. "require": {
  7264. "php": ">=7.0"
  7265. },
  7266. "require-dev": {
  7267. "phpunit/phpunit": "^9 || ^6"
  7268. },
  7269. "type": "library",
  7270. "autoload": {
  7271. "psr-4": {
  7272. "Evenement\\": "src/"
  7273. }
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "Igor Wiedler",
  7282. "email": "igor@wiedler.ch"
  7283. }
  7284. ],
  7285. "description": "Événement is a very simple event dispatching library for PHP",
  7286. "keywords": [
  7287. "event-dispatcher",
  7288. "event-emitter"
  7289. ],
  7290. "support": {
  7291. "issues": "https://github.com/igorw/evenement/issues",
  7292. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7293. },
  7294. "time": "2023-08-08T05:53:35+00:00"
  7295. },
  7296. {
  7297. "name": "fidry/cpu-core-counter",
  7298. "version": "1.1.0",
  7299. "source": {
  7300. "type": "git",
  7301. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7302. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  7303. },
  7304. "dist": {
  7305. "type": "zip",
  7306. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7307. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  7308. "shasum": ""
  7309. },
  7310. "require": {
  7311. "php": "^7.2 || ^8.0"
  7312. },
  7313. "require-dev": {
  7314. "fidry/makefile": "^0.2.0",
  7315. "fidry/php-cs-fixer-config": "^1.1.2",
  7316. "phpstan/extension-installer": "^1.2.0",
  7317. "phpstan/phpstan": "^1.9.2",
  7318. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7319. "phpstan/phpstan-phpunit": "^1.2.2",
  7320. "phpstan/phpstan-strict-rules": "^1.4.4",
  7321. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7322. "webmozarts/strict-phpunit": "^7.5"
  7323. },
  7324. "type": "library",
  7325. "autoload": {
  7326. "psr-4": {
  7327. "Fidry\\CpuCoreCounter\\": "src/"
  7328. }
  7329. },
  7330. "notification-url": "https://packagist.org/downloads/",
  7331. "license": [
  7332. "MIT"
  7333. ],
  7334. "authors": [
  7335. {
  7336. "name": "Théo FIDRY",
  7337. "email": "theo.fidry@gmail.com"
  7338. }
  7339. ],
  7340. "description": "Tiny utility to get the number of CPU cores.",
  7341. "keywords": [
  7342. "CPU",
  7343. "core"
  7344. ],
  7345. "support": {
  7346. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7347. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  7348. },
  7349. "funding": [
  7350. {
  7351. "url": "https://github.com/theofidry",
  7352. "type": "github"
  7353. }
  7354. ],
  7355. "time": "2024-02-07T09:43:46+00:00"
  7356. },
  7357. {
  7358. "name": "friendsofphp/php-cs-fixer",
  7359. "version": "v3.58.1",
  7360. "source": {
  7361. "type": "git",
  7362. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7363. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  7364. },
  7365. "dist": {
  7366. "type": "zip",
  7367. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  7368. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  7369. "shasum": ""
  7370. },
  7371. "require": {
  7372. "clue/ndjson-react": "^1.0",
  7373. "composer/semver": "^3.4",
  7374. "composer/xdebug-handler": "^3.0.3",
  7375. "ext-filter": "*",
  7376. "ext-json": "*",
  7377. "ext-tokenizer": "*",
  7378. "fidry/cpu-core-counter": "^1.0",
  7379. "php": "^7.4 || ^8.0",
  7380. "react/child-process": "^0.6.5",
  7381. "react/event-loop": "^1.0",
  7382. "react/promise": "^2.0 || ^3.0",
  7383. "react/socket": "^1.0",
  7384. "react/stream": "^1.0",
  7385. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7386. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7387. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7388. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7389. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7390. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7391. "symfony/polyfill-mbstring": "^1.28",
  7392. "symfony/polyfill-php80": "^1.28",
  7393. "symfony/polyfill-php81": "^1.28",
  7394. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7395. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7396. },
  7397. "require-dev": {
  7398. "facile-it/paraunit": "^1.3 || ^2.0",
  7399. "infection/infection": "^0.27.11",
  7400. "justinrainbow/json-schema": "^5.2",
  7401. "keradus/cli-executor": "^2.1",
  7402. "mikey179/vfsstream": "^1.6.11",
  7403. "php-coveralls/php-coveralls": "^2.7",
  7404. "php-cs-fixer/accessible-object": "^1.1",
  7405. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7406. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7407. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7408. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7409. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7410. },
  7411. "suggest": {
  7412. "ext-dom": "For handling output formats in XML",
  7413. "ext-mbstring": "For handling non-UTF8 characters."
  7414. },
  7415. "bin": [
  7416. "php-cs-fixer"
  7417. ],
  7418. "type": "application",
  7419. "autoload": {
  7420. "psr-4": {
  7421. "PhpCsFixer\\": "src/"
  7422. }
  7423. },
  7424. "notification-url": "https://packagist.org/downloads/",
  7425. "license": [
  7426. "MIT"
  7427. ],
  7428. "authors": [
  7429. {
  7430. "name": "Fabien Potencier",
  7431. "email": "fabien@symfony.com"
  7432. },
  7433. {
  7434. "name": "Dariusz Rumiński",
  7435. "email": "dariusz.ruminski@gmail.com"
  7436. }
  7437. ],
  7438. "description": "A tool to automatically fix PHP code style",
  7439. "keywords": [
  7440. "Static code analysis",
  7441. "fixer",
  7442. "standards",
  7443. "static analysis"
  7444. ],
  7445. "support": {
  7446. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7447. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  7448. },
  7449. "funding": [
  7450. {
  7451. "url": "https://github.com/keradus",
  7452. "type": "github"
  7453. }
  7454. ],
  7455. "time": "2024-05-29T16:39:07+00:00"
  7456. },
  7457. {
  7458. "name": "hamcrest/hamcrest-php",
  7459. "version": "v2.0.1",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7463. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7468. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7469. "shasum": ""
  7470. },
  7471. "require": {
  7472. "php": "^5.3|^7.0|^8.0"
  7473. },
  7474. "replace": {
  7475. "cordoval/hamcrest-php": "*",
  7476. "davedevelopment/hamcrest-php": "*",
  7477. "kodova/hamcrest-php": "*"
  7478. },
  7479. "require-dev": {
  7480. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7481. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7482. },
  7483. "type": "library",
  7484. "extra": {
  7485. "branch-alias": {
  7486. "dev-master": "2.1-dev"
  7487. }
  7488. },
  7489. "autoload": {
  7490. "classmap": [
  7491. "hamcrest"
  7492. ]
  7493. },
  7494. "notification-url": "https://packagist.org/downloads/",
  7495. "license": [
  7496. "BSD-3-Clause"
  7497. ],
  7498. "description": "This is the PHP port of Hamcrest Matchers",
  7499. "keywords": [
  7500. "test"
  7501. ],
  7502. "support": {
  7503. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7504. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7505. },
  7506. "time": "2020-07-09T08:09:16+00:00"
  7507. },
  7508. {
  7509. "name": "hyperf/devtool",
  7510. "version": "v3.1.19",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/hyperf/devtool.git",
  7514. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7519. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "hyperf/code-parser": "~3.1.0",
  7524. "hyperf/command": "~3.1.0",
  7525. "hyperf/contract": "~3.1.0",
  7526. "hyperf/di": "~3.1.0",
  7527. "hyperf/support": "~3.1.0",
  7528. "hyperf/utils": "~3.1.0",
  7529. "php": ">=8.1"
  7530. },
  7531. "type": "library",
  7532. "extra": {
  7533. "branch-alias": {
  7534. "dev-master": "3.1-dev"
  7535. },
  7536. "hyperf": {
  7537. "config": "Hyperf\\Devtool\\ConfigProvider"
  7538. }
  7539. },
  7540. "autoload": {
  7541. "psr-4": {
  7542. "Hyperf\\Devtool\\": "src/"
  7543. }
  7544. },
  7545. "notification-url": "https://packagist.org/downloads/",
  7546. "license": [
  7547. "MIT"
  7548. ],
  7549. "description": "A Devtool for Hyperf.",
  7550. "homepage": "https://hyperf.io",
  7551. "keywords": [
  7552. "dev",
  7553. "devtool",
  7554. "hyperf",
  7555. "php",
  7556. "swoole"
  7557. ],
  7558. "support": {
  7559. "docs": "https://hyperf.wiki",
  7560. "issues": "https://github.com/hyperf/hyperf/issues",
  7561. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7562. "source": "https://github.com/hyperf/hyperf"
  7563. },
  7564. "funding": [
  7565. {
  7566. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7567. "type": "custom"
  7568. },
  7569. {
  7570. "url": "https://opencollective.com/hyperf",
  7571. "type": "open_collective"
  7572. }
  7573. ],
  7574. "time": "2024-04-13T06:53:08+00:00"
  7575. },
  7576. {
  7577. "name": "hyperf/testing",
  7578. "version": "v3.1.21",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/hyperf/testing.git",
  7582. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7587. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "hyperf/codec": "~3.1.0",
  7592. "hyperf/collection": "~3.1.0",
  7593. "hyperf/contract": "~3.1.0",
  7594. "hyperf/coroutine": "~3.1.0",
  7595. "hyperf/http-message": "~3.1.0",
  7596. "hyperf/http-server": "~3.1.0",
  7597. "hyperf/support": "~3.1.0",
  7598. "hyperf/utils": "~3.1.0",
  7599. "php": ">=8.1",
  7600. "phpunit/phpunit": "^10.0",
  7601. "psr/container": "^1.0|^2.0",
  7602. "symfony/http-foundation": "^5.4|^6.0"
  7603. },
  7604. "suggest": {
  7605. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7606. },
  7607. "bin": [
  7608. "co-phpunit"
  7609. ],
  7610. "type": "library",
  7611. "extra": {
  7612. "branch-alias": {
  7613. "dev-master": "3.1-dev"
  7614. }
  7615. },
  7616. "autoload": {
  7617. "psr-4": {
  7618. "Hyperf\\Testing\\": "src/"
  7619. }
  7620. },
  7621. "notification-url": "https://packagist.org/downloads/",
  7622. "license": [
  7623. "MIT"
  7624. ],
  7625. "description": "Testing for hyperf",
  7626. "keywords": [
  7627. "dev",
  7628. "php",
  7629. "swoole",
  7630. "testing"
  7631. ],
  7632. "support": {
  7633. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  7634. },
  7635. "funding": [
  7636. {
  7637. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7638. "type": "custom"
  7639. },
  7640. {
  7641. "url": "https://opencollective.com/hyperf",
  7642. "type": "open_collective"
  7643. }
  7644. ],
  7645. "time": "2024-05-07T05:34:51+00:00"
  7646. },
  7647. {
  7648. "name": "hyperf/watcher",
  7649. "version": "v3.1.21",
  7650. "source": {
  7651. "type": "git",
  7652. "url": "https://github.com/hyperf/watcher.git",
  7653. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  7654. },
  7655. "dist": {
  7656. "type": "zip",
  7657. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7658. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  7659. "shasum": ""
  7660. },
  7661. "require": {
  7662. "ext-posix": "*",
  7663. "hyperf/codec": "~3.1.0",
  7664. "hyperf/command": "~3.1.0",
  7665. "hyperf/di": "~3.1.0",
  7666. "hyperf/framework": "~3.1.0",
  7667. "hyperf/support": "~3.1.0",
  7668. "php": ">=8.1"
  7669. },
  7670. "type": "library",
  7671. "extra": {
  7672. "branch-alias": {
  7673. "dev-master": "3.1-dev"
  7674. },
  7675. "hyperf": {
  7676. "config": "Hyperf\\Watcher\\ConfigProvider"
  7677. }
  7678. },
  7679. "autoload": {
  7680. "files": [
  7681. "src/Functions.php"
  7682. ],
  7683. "psr-4": {
  7684. "Hyperf\\Watcher\\": "src/"
  7685. }
  7686. },
  7687. "notification-url": "https://packagist.org/downloads/",
  7688. "license": [
  7689. "MIT"
  7690. ],
  7691. "description": "Hot reload watcher for Hyperf",
  7692. "keywords": [
  7693. "dev",
  7694. "hyperf",
  7695. "php"
  7696. ],
  7697. "support": {
  7698. "issues": "https://github.com/hyperf/watcher/issues",
  7699. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  7700. },
  7701. "funding": [
  7702. {
  7703. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7704. "type": "custom"
  7705. },
  7706. {
  7707. "url": "https://opencollective.com/hyperf",
  7708. "type": "open_collective"
  7709. }
  7710. ],
  7711. "time": "2024-05-09T13:40:44+00:00"
  7712. },
  7713. {
  7714. "name": "mockery/mockery",
  7715. "version": "1.6.12",
  7716. "source": {
  7717. "type": "git",
  7718. "url": "https://github.com/mockery/mockery.git",
  7719. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7720. },
  7721. "dist": {
  7722. "type": "zip",
  7723. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7724. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7725. "shasum": ""
  7726. },
  7727. "require": {
  7728. "hamcrest/hamcrest-php": "^2.0.1",
  7729. "lib-pcre": ">=7.0",
  7730. "php": ">=7.3"
  7731. },
  7732. "conflict": {
  7733. "phpunit/phpunit": "<8.0"
  7734. },
  7735. "require-dev": {
  7736. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7737. "symplify/easy-coding-standard": "^12.1.14"
  7738. },
  7739. "type": "library",
  7740. "autoload": {
  7741. "files": [
  7742. "library/helpers.php",
  7743. "library/Mockery.php"
  7744. ],
  7745. "psr-4": {
  7746. "Mockery\\": "library/Mockery"
  7747. }
  7748. },
  7749. "notification-url": "https://packagist.org/downloads/",
  7750. "license": [
  7751. "BSD-3-Clause"
  7752. ],
  7753. "authors": [
  7754. {
  7755. "name": "Pádraic Brady",
  7756. "email": "padraic.brady@gmail.com",
  7757. "homepage": "https://github.com/padraic",
  7758. "role": "Author"
  7759. },
  7760. {
  7761. "name": "Dave Marshall",
  7762. "email": "dave.marshall@atstsolutions.co.uk",
  7763. "homepage": "https://davedevelopment.co.uk",
  7764. "role": "Developer"
  7765. },
  7766. {
  7767. "name": "Nathanael Esayeas",
  7768. "email": "nathanael.esayeas@protonmail.com",
  7769. "homepage": "https://github.com/ghostwriter",
  7770. "role": "Lead Developer"
  7771. }
  7772. ],
  7773. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7774. "homepage": "https://github.com/mockery/mockery",
  7775. "keywords": [
  7776. "BDD",
  7777. "TDD",
  7778. "library",
  7779. "mock",
  7780. "mock objects",
  7781. "mockery",
  7782. "stub",
  7783. "test",
  7784. "test double",
  7785. "testing"
  7786. ],
  7787. "support": {
  7788. "docs": "https://docs.mockery.io/",
  7789. "issues": "https://github.com/mockery/mockery/issues",
  7790. "rss": "https://github.com/mockery/mockery/releases.atom",
  7791. "security": "https://github.com/mockery/mockery/security/advisories",
  7792. "source": "https://github.com/mockery/mockery"
  7793. },
  7794. "time": "2024-05-16T03:13:13+00:00"
  7795. },
  7796. {
  7797. "name": "myclabs/deep-copy",
  7798. "version": "1.11.1",
  7799. "source": {
  7800. "type": "git",
  7801. "url": "https://github.com/myclabs/DeepCopy.git",
  7802. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7803. },
  7804. "dist": {
  7805. "type": "zip",
  7806. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7807. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7808. "shasum": ""
  7809. },
  7810. "require": {
  7811. "php": "^7.1 || ^8.0"
  7812. },
  7813. "conflict": {
  7814. "doctrine/collections": "<1.6.8",
  7815. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7816. },
  7817. "require-dev": {
  7818. "doctrine/collections": "^1.6.8",
  7819. "doctrine/common": "^2.13.3 || ^3.2.2",
  7820. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7821. },
  7822. "type": "library",
  7823. "autoload": {
  7824. "files": [
  7825. "src/DeepCopy/deep_copy.php"
  7826. ],
  7827. "psr-4": {
  7828. "DeepCopy\\": "src/DeepCopy/"
  7829. }
  7830. },
  7831. "notification-url": "https://packagist.org/downloads/",
  7832. "license": [
  7833. "MIT"
  7834. ],
  7835. "description": "Create deep copies (clones) of your objects",
  7836. "keywords": [
  7837. "clone",
  7838. "copy",
  7839. "duplicate",
  7840. "object",
  7841. "object graph"
  7842. ],
  7843. "support": {
  7844. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7845. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7846. },
  7847. "funding": [
  7848. {
  7849. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7850. "type": "tidelift"
  7851. }
  7852. ],
  7853. "time": "2023-03-08T13:26:56+00:00"
  7854. },
  7855. {
  7856. "name": "phar-io/manifest",
  7857. "version": "2.0.4",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/phar-io/manifest.git",
  7861. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7866. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7867. "shasum": ""
  7868. },
  7869. "require": {
  7870. "ext-dom": "*",
  7871. "ext-libxml": "*",
  7872. "ext-phar": "*",
  7873. "ext-xmlwriter": "*",
  7874. "phar-io/version": "^3.0.1",
  7875. "php": "^7.2 || ^8.0"
  7876. },
  7877. "type": "library",
  7878. "extra": {
  7879. "branch-alias": {
  7880. "dev-master": "2.0.x-dev"
  7881. }
  7882. },
  7883. "autoload": {
  7884. "classmap": [
  7885. "src/"
  7886. ]
  7887. },
  7888. "notification-url": "https://packagist.org/downloads/",
  7889. "license": [
  7890. "BSD-3-Clause"
  7891. ],
  7892. "authors": [
  7893. {
  7894. "name": "Arne Blankerts",
  7895. "email": "arne@blankerts.de",
  7896. "role": "Developer"
  7897. },
  7898. {
  7899. "name": "Sebastian Heuer",
  7900. "email": "sebastian@phpeople.de",
  7901. "role": "Developer"
  7902. },
  7903. {
  7904. "name": "Sebastian Bergmann",
  7905. "email": "sebastian@phpunit.de",
  7906. "role": "Developer"
  7907. }
  7908. ],
  7909. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7910. "support": {
  7911. "issues": "https://github.com/phar-io/manifest/issues",
  7912. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7913. },
  7914. "funding": [
  7915. {
  7916. "url": "https://github.com/theseer",
  7917. "type": "github"
  7918. }
  7919. ],
  7920. "time": "2024-03-03T12:33:53+00:00"
  7921. },
  7922. {
  7923. "name": "phar-io/version",
  7924. "version": "3.2.1",
  7925. "source": {
  7926. "type": "git",
  7927. "url": "https://github.com/phar-io/version.git",
  7928. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7929. },
  7930. "dist": {
  7931. "type": "zip",
  7932. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7933. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7934. "shasum": ""
  7935. },
  7936. "require": {
  7937. "php": "^7.2 || ^8.0"
  7938. },
  7939. "type": "library",
  7940. "autoload": {
  7941. "classmap": [
  7942. "src/"
  7943. ]
  7944. },
  7945. "notification-url": "https://packagist.org/downloads/",
  7946. "license": [
  7947. "BSD-3-Clause"
  7948. ],
  7949. "authors": [
  7950. {
  7951. "name": "Arne Blankerts",
  7952. "email": "arne@blankerts.de",
  7953. "role": "Developer"
  7954. },
  7955. {
  7956. "name": "Sebastian Heuer",
  7957. "email": "sebastian@phpeople.de",
  7958. "role": "Developer"
  7959. },
  7960. {
  7961. "name": "Sebastian Bergmann",
  7962. "email": "sebastian@phpunit.de",
  7963. "role": "Developer"
  7964. }
  7965. ],
  7966. "description": "Library for handling version information and constraints",
  7967. "support": {
  7968. "issues": "https://github.com/phar-io/version/issues",
  7969. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7970. },
  7971. "time": "2022-02-21T01:04:05+00:00"
  7972. },
  7973. {
  7974. "name": "phpstan/phpstan",
  7975. "version": "1.11.3",
  7976. "source": {
  7977. "type": "git",
  7978. "url": "https://github.com/phpstan/phpstan.git",
  7979. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5"
  7980. },
  7981. "dist": {
  7982. "type": "zip",
  7983. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7984. "reference": "e64220a05c1209fc856d58e789c3b7a32c0bb9a5",
  7985. "shasum": ""
  7986. },
  7987. "require": {
  7988. "php": "^7.2|^8.0"
  7989. },
  7990. "conflict": {
  7991. "phpstan/phpstan-shim": "*"
  7992. },
  7993. "bin": [
  7994. "phpstan",
  7995. "phpstan.phar"
  7996. ],
  7997. "type": "library",
  7998. "autoload": {
  7999. "files": [
  8000. "bootstrap.php"
  8001. ]
  8002. },
  8003. "notification-url": "https://packagist.org/downloads/",
  8004. "license": [
  8005. "MIT"
  8006. ],
  8007. "description": "PHPStan - PHP Static Analysis Tool",
  8008. "keywords": [
  8009. "dev",
  8010. "static analysis"
  8011. ],
  8012. "support": {
  8013. "docs": "https://phpstan.org/user-guide/getting-started",
  8014. "forum": "https://github.com/phpstan/phpstan/discussions",
  8015. "issues": "https://github.com/phpstan/phpstan/issues",
  8016. "security": "https://github.com/phpstan/phpstan/security/policy",
  8017. "source": "https://github.com/phpstan/phpstan-src"
  8018. },
  8019. "funding": [
  8020. {
  8021. "url": "https://github.com/ondrejmirtes",
  8022. "type": "github"
  8023. },
  8024. {
  8025. "url": "https://github.com/phpstan",
  8026. "type": "github"
  8027. }
  8028. ],
  8029. "time": "2024-05-31T13:53:37+00:00"
  8030. },
  8031. {
  8032. "name": "phpunit/php-code-coverage",
  8033. "version": "10.1.14",
  8034. "source": {
  8035. "type": "git",
  8036. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8037. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  8038. },
  8039. "dist": {
  8040. "type": "zip",
  8041. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8042. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  8043. "shasum": ""
  8044. },
  8045. "require": {
  8046. "ext-dom": "*",
  8047. "ext-libxml": "*",
  8048. "ext-xmlwriter": "*",
  8049. "nikic/php-parser": "^4.18 || ^5.0",
  8050. "php": ">=8.1",
  8051. "phpunit/php-file-iterator": "^4.0",
  8052. "phpunit/php-text-template": "^3.0",
  8053. "sebastian/code-unit-reverse-lookup": "^3.0",
  8054. "sebastian/complexity": "^3.0",
  8055. "sebastian/environment": "^6.0",
  8056. "sebastian/lines-of-code": "^2.0",
  8057. "sebastian/version": "^4.0",
  8058. "theseer/tokenizer": "^1.2.0"
  8059. },
  8060. "require-dev": {
  8061. "phpunit/phpunit": "^10.1"
  8062. },
  8063. "suggest": {
  8064. "ext-pcov": "PHP extension that provides line coverage",
  8065. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8066. },
  8067. "type": "library",
  8068. "extra": {
  8069. "branch-alias": {
  8070. "dev-main": "10.1-dev"
  8071. }
  8072. },
  8073. "autoload": {
  8074. "classmap": [
  8075. "src/"
  8076. ]
  8077. },
  8078. "notification-url": "https://packagist.org/downloads/",
  8079. "license": [
  8080. "BSD-3-Clause"
  8081. ],
  8082. "authors": [
  8083. {
  8084. "name": "Sebastian Bergmann",
  8085. "email": "sebastian@phpunit.de",
  8086. "role": "lead"
  8087. }
  8088. ],
  8089. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8090. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8091. "keywords": [
  8092. "coverage",
  8093. "testing",
  8094. "xunit"
  8095. ],
  8096. "support": {
  8097. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8098. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8099. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8100. },
  8101. "funding": [
  8102. {
  8103. "url": "https://github.com/sebastianbergmann",
  8104. "type": "github"
  8105. }
  8106. ],
  8107. "time": "2024-03-12T15:33:41+00:00"
  8108. },
  8109. {
  8110. "name": "phpunit/php-file-iterator",
  8111. "version": "4.1.0",
  8112. "source": {
  8113. "type": "git",
  8114. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8115. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8116. },
  8117. "dist": {
  8118. "type": "zip",
  8119. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8120. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8121. "shasum": ""
  8122. },
  8123. "require": {
  8124. "php": ">=8.1"
  8125. },
  8126. "require-dev": {
  8127. "phpunit/phpunit": "^10.0"
  8128. },
  8129. "type": "library",
  8130. "extra": {
  8131. "branch-alias": {
  8132. "dev-main": "4.0-dev"
  8133. }
  8134. },
  8135. "autoload": {
  8136. "classmap": [
  8137. "src/"
  8138. ]
  8139. },
  8140. "notification-url": "https://packagist.org/downloads/",
  8141. "license": [
  8142. "BSD-3-Clause"
  8143. ],
  8144. "authors": [
  8145. {
  8146. "name": "Sebastian Bergmann",
  8147. "email": "sebastian@phpunit.de",
  8148. "role": "lead"
  8149. }
  8150. ],
  8151. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8152. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8153. "keywords": [
  8154. "filesystem",
  8155. "iterator"
  8156. ],
  8157. "support": {
  8158. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8159. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8160. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8161. },
  8162. "funding": [
  8163. {
  8164. "url": "https://github.com/sebastianbergmann",
  8165. "type": "github"
  8166. }
  8167. ],
  8168. "time": "2023-08-31T06:24:48+00:00"
  8169. },
  8170. {
  8171. "name": "phpunit/php-invoker",
  8172. "version": "4.0.0",
  8173. "source": {
  8174. "type": "git",
  8175. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8176. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8177. },
  8178. "dist": {
  8179. "type": "zip",
  8180. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8181. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8182. "shasum": ""
  8183. },
  8184. "require": {
  8185. "php": ">=8.1"
  8186. },
  8187. "require-dev": {
  8188. "ext-pcntl": "*",
  8189. "phpunit/phpunit": "^10.0"
  8190. },
  8191. "suggest": {
  8192. "ext-pcntl": "*"
  8193. },
  8194. "type": "library",
  8195. "extra": {
  8196. "branch-alias": {
  8197. "dev-main": "4.0-dev"
  8198. }
  8199. },
  8200. "autoload": {
  8201. "classmap": [
  8202. "src/"
  8203. ]
  8204. },
  8205. "notification-url": "https://packagist.org/downloads/",
  8206. "license": [
  8207. "BSD-3-Clause"
  8208. ],
  8209. "authors": [
  8210. {
  8211. "name": "Sebastian Bergmann",
  8212. "email": "sebastian@phpunit.de",
  8213. "role": "lead"
  8214. }
  8215. ],
  8216. "description": "Invoke callables with a timeout",
  8217. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8218. "keywords": [
  8219. "process"
  8220. ],
  8221. "support": {
  8222. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8223. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8224. },
  8225. "funding": [
  8226. {
  8227. "url": "https://github.com/sebastianbergmann",
  8228. "type": "github"
  8229. }
  8230. ],
  8231. "time": "2023-02-03T06:56:09+00:00"
  8232. },
  8233. {
  8234. "name": "phpunit/php-text-template",
  8235. "version": "3.0.1",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8239. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8244. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": ">=8.1"
  8249. },
  8250. "require-dev": {
  8251. "phpunit/phpunit": "^10.0"
  8252. },
  8253. "type": "library",
  8254. "extra": {
  8255. "branch-alias": {
  8256. "dev-main": "3.0-dev"
  8257. }
  8258. },
  8259. "autoload": {
  8260. "classmap": [
  8261. "src/"
  8262. ]
  8263. },
  8264. "notification-url": "https://packagist.org/downloads/",
  8265. "license": [
  8266. "BSD-3-Clause"
  8267. ],
  8268. "authors": [
  8269. {
  8270. "name": "Sebastian Bergmann",
  8271. "email": "sebastian@phpunit.de",
  8272. "role": "lead"
  8273. }
  8274. ],
  8275. "description": "Simple template engine.",
  8276. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8277. "keywords": [
  8278. "template"
  8279. ],
  8280. "support": {
  8281. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8282. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8283. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8284. },
  8285. "funding": [
  8286. {
  8287. "url": "https://github.com/sebastianbergmann",
  8288. "type": "github"
  8289. }
  8290. ],
  8291. "time": "2023-08-31T14:07:24+00:00"
  8292. },
  8293. {
  8294. "name": "phpunit/php-timer",
  8295. "version": "6.0.0",
  8296. "source": {
  8297. "type": "git",
  8298. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8299. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8300. },
  8301. "dist": {
  8302. "type": "zip",
  8303. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8304. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8305. "shasum": ""
  8306. },
  8307. "require": {
  8308. "php": ">=8.1"
  8309. },
  8310. "require-dev": {
  8311. "phpunit/phpunit": "^10.0"
  8312. },
  8313. "type": "library",
  8314. "extra": {
  8315. "branch-alias": {
  8316. "dev-main": "6.0-dev"
  8317. }
  8318. },
  8319. "autoload": {
  8320. "classmap": [
  8321. "src/"
  8322. ]
  8323. },
  8324. "notification-url": "https://packagist.org/downloads/",
  8325. "license": [
  8326. "BSD-3-Clause"
  8327. ],
  8328. "authors": [
  8329. {
  8330. "name": "Sebastian Bergmann",
  8331. "email": "sebastian@phpunit.de",
  8332. "role": "lead"
  8333. }
  8334. ],
  8335. "description": "Utility class for timing",
  8336. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8337. "keywords": [
  8338. "timer"
  8339. ],
  8340. "support": {
  8341. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8342. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8343. },
  8344. "funding": [
  8345. {
  8346. "url": "https://github.com/sebastianbergmann",
  8347. "type": "github"
  8348. }
  8349. ],
  8350. "time": "2023-02-03T06:57:52+00:00"
  8351. },
  8352. {
  8353. "name": "phpunit/phpunit",
  8354. "version": "10.5.20",
  8355. "source": {
  8356. "type": "git",
  8357. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8358. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  8359. },
  8360. "dist": {
  8361. "type": "zip",
  8362. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8363. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  8364. "shasum": ""
  8365. },
  8366. "require": {
  8367. "ext-dom": "*",
  8368. "ext-json": "*",
  8369. "ext-libxml": "*",
  8370. "ext-mbstring": "*",
  8371. "ext-xml": "*",
  8372. "ext-xmlwriter": "*",
  8373. "myclabs/deep-copy": "^1.10.1",
  8374. "phar-io/manifest": "^2.0.3",
  8375. "phar-io/version": "^3.0.2",
  8376. "php": ">=8.1",
  8377. "phpunit/php-code-coverage": "^10.1.5",
  8378. "phpunit/php-file-iterator": "^4.0",
  8379. "phpunit/php-invoker": "^4.0",
  8380. "phpunit/php-text-template": "^3.0",
  8381. "phpunit/php-timer": "^6.0",
  8382. "sebastian/cli-parser": "^2.0",
  8383. "sebastian/code-unit": "^2.0",
  8384. "sebastian/comparator": "^5.0",
  8385. "sebastian/diff": "^5.0",
  8386. "sebastian/environment": "^6.0",
  8387. "sebastian/exporter": "^5.1",
  8388. "sebastian/global-state": "^6.0.1",
  8389. "sebastian/object-enumerator": "^5.0",
  8390. "sebastian/recursion-context": "^5.0",
  8391. "sebastian/type": "^4.0",
  8392. "sebastian/version": "^4.0"
  8393. },
  8394. "suggest": {
  8395. "ext-soap": "To be able to generate mocks based on WSDL files"
  8396. },
  8397. "bin": [
  8398. "phpunit"
  8399. ],
  8400. "type": "library",
  8401. "extra": {
  8402. "branch-alias": {
  8403. "dev-main": "10.5-dev"
  8404. }
  8405. },
  8406. "autoload": {
  8407. "files": [
  8408. "src/Framework/Assert/Functions.php"
  8409. ],
  8410. "classmap": [
  8411. "src/"
  8412. ]
  8413. },
  8414. "notification-url": "https://packagist.org/downloads/",
  8415. "license": [
  8416. "BSD-3-Clause"
  8417. ],
  8418. "authors": [
  8419. {
  8420. "name": "Sebastian Bergmann",
  8421. "email": "sebastian@phpunit.de",
  8422. "role": "lead"
  8423. }
  8424. ],
  8425. "description": "The PHP Unit Testing framework.",
  8426. "homepage": "https://phpunit.de/",
  8427. "keywords": [
  8428. "phpunit",
  8429. "testing",
  8430. "xunit"
  8431. ],
  8432. "support": {
  8433. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8434. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8435. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  8436. },
  8437. "funding": [
  8438. {
  8439. "url": "https://phpunit.de/sponsors.html",
  8440. "type": "custom"
  8441. },
  8442. {
  8443. "url": "https://github.com/sebastianbergmann",
  8444. "type": "github"
  8445. },
  8446. {
  8447. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8448. "type": "tidelift"
  8449. }
  8450. ],
  8451. "time": "2024-04-24T06:32:35+00:00"
  8452. },
  8453. {
  8454. "name": "react/cache",
  8455. "version": "v1.2.0",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://github.com/reactphp/cache.git",
  8459. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8464. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8465. "shasum": ""
  8466. },
  8467. "require": {
  8468. "php": ">=5.3.0",
  8469. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8470. },
  8471. "require-dev": {
  8472. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8473. },
  8474. "type": "library",
  8475. "autoload": {
  8476. "psr-4": {
  8477. "React\\Cache\\": "src/"
  8478. }
  8479. },
  8480. "notification-url": "https://packagist.org/downloads/",
  8481. "license": [
  8482. "MIT"
  8483. ],
  8484. "authors": [
  8485. {
  8486. "name": "Christian Lück",
  8487. "email": "christian@clue.engineering",
  8488. "homepage": "https://clue.engineering/"
  8489. },
  8490. {
  8491. "name": "Cees-Jan Kiewiet",
  8492. "email": "reactphp@ceesjankiewiet.nl",
  8493. "homepage": "https://wyrihaximus.net/"
  8494. },
  8495. {
  8496. "name": "Jan Sorgalla",
  8497. "email": "jsorgalla@gmail.com",
  8498. "homepage": "https://sorgalla.com/"
  8499. },
  8500. {
  8501. "name": "Chris Boden",
  8502. "email": "cboden@gmail.com",
  8503. "homepage": "https://cboden.dev/"
  8504. }
  8505. ],
  8506. "description": "Async, Promise-based cache interface for ReactPHP",
  8507. "keywords": [
  8508. "cache",
  8509. "caching",
  8510. "promise",
  8511. "reactphp"
  8512. ],
  8513. "support": {
  8514. "issues": "https://github.com/reactphp/cache/issues",
  8515. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8516. },
  8517. "funding": [
  8518. {
  8519. "url": "https://opencollective.com/reactphp",
  8520. "type": "open_collective"
  8521. }
  8522. ],
  8523. "time": "2022-11-30T15:59:55+00:00"
  8524. },
  8525. {
  8526. "name": "react/child-process",
  8527. "version": "v0.6.5",
  8528. "source": {
  8529. "type": "git",
  8530. "url": "https://github.com/reactphp/child-process.git",
  8531. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8532. },
  8533. "dist": {
  8534. "type": "zip",
  8535. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8536. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8537. "shasum": ""
  8538. },
  8539. "require": {
  8540. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8541. "php": ">=5.3.0",
  8542. "react/event-loop": "^1.2",
  8543. "react/stream": "^1.2"
  8544. },
  8545. "require-dev": {
  8546. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8547. "react/socket": "^1.8",
  8548. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8549. },
  8550. "type": "library",
  8551. "autoload": {
  8552. "psr-4": {
  8553. "React\\ChildProcess\\": "src"
  8554. }
  8555. },
  8556. "notification-url": "https://packagist.org/downloads/",
  8557. "license": [
  8558. "MIT"
  8559. ],
  8560. "authors": [
  8561. {
  8562. "name": "Christian Lück",
  8563. "email": "christian@clue.engineering",
  8564. "homepage": "https://clue.engineering/"
  8565. },
  8566. {
  8567. "name": "Cees-Jan Kiewiet",
  8568. "email": "reactphp@ceesjankiewiet.nl",
  8569. "homepage": "https://wyrihaximus.net/"
  8570. },
  8571. {
  8572. "name": "Jan Sorgalla",
  8573. "email": "jsorgalla@gmail.com",
  8574. "homepage": "https://sorgalla.com/"
  8575. },
  8576. {
  8577. "name": "Chris Boden",
  8578. "email": "cboden@gmail.com",
  8579. "homepage": "https://cboden.dev/"
  8580. }
  8581. ],
  8582. "description": "Event-driven library for executing child processes with ReactPHP.",
  8583. "keywords": [
  8584. "event-driven",
  8585. "process",
  8586. "reactphp"
  8587. ],
  8588. "support": {
  8589. "issues": "https://github.com/reactphp/child-process/issues",
  8590. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8591. },
  8592. "funding": [
  8593. {
  8594. "url": "https://github.com/WyriHaximus",
  8595. "type": "github"
  8596. },
  8597. {
  8598. "url": "https://github.com/clue",
  8599. "type": "github"
  8600. }
  8601. ],
  8602. "time": "2022-09-16T13:41:56+00:00"
  8603. },
  8604. {
  8605. "name": "react/dns",
  8606. "version": "v1.12.0",
  8607. "source": {
  8608. "type": "git",
  8609. "url": "https://github.com/reactphp/dns.git",
  8610. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  8611. },
  8612. "dist": {
  8613. "type": "zip",
  8614. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  8615. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  8616. "shasum": ""
  8617. },
  8618. "require": {
  8619. "php": ">=5.3.0",
  8620. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8621. "react/event-loop": "^1.2",
  8622. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  8623. },
  8624. "require-dev": {
  8625. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8626. "react/async": "^4 || ^3 || ^2",
  8627. "react/promise-timer": "^1.9"
  8628. },
  8629. "type": "library",
  8630. "autoload": {
  8631. "psr-4": {
  8632. "React\\Dns\\": "src/"
  8633. }
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "MIT"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "Christian Lück",
  8642. "email": "christian@clue.engineering",
  8643. "homepage": "https://clue.engineering/"
  8644. },
  8645. {
  8646. "name": "Cees-Jan Kiewiet",
  8647. "email": "reactphp@ceesjankiewiet.nl",
  8648. "homepage": "https://wyrihaximus.net/"
  8649. },
  8650. {
  8651. "name": "Jan Sorgalla",
  8652. "email": "jsorgalla@gmail.com",
  8653. "homepage": "https://sorgalla.com/"
  8654. },
  8655. {
  8656. "name": "Chris Boden",
  8657. "email": "cboden@gmail.com",
  8658. "homepage": "https://cboden.dev/"
  8659. }
  8660. ],
  8661. "description": "Async DNS resolver for ReactPHP",
  8662. "keywords": [
  8663. "async",
  8664. "dns",
  8665. "dns-resolver",
  8666. "reactphp"
  8667. ],
  8668. "support": {
  8669. "issues": "https://github.com/reactphp/dns/issues",
  8670. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  8671. },
  8672. "funding": [
  8673. {
  8674. "url": "https://opencollective.com/reactphp",
  8675. "type": "open_collective"
  8676. }
  8677. ],
  8678. "time": "2023-11-29T12:41:06+00:00"
  8679. },
  8680. {
  8681. "name": "react/event-loop",
  8682. "version": "v1.5.0",
  8683. "source": {
  8684. "type": "git",
  8685. "url": "https://github.com/reactphp/event-loop.git",
  8686. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8687. },
  8688. "dist": {
  8689. "type": "zip",
  8690. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8691. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8692. "shasum": ""
  8693. },
  8694. "require": {
  8695. "php": ">=5.3.0"
  8696. },
  8697. "require-dev": {
  8698. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8699. },
  8700. "suggest": {
  8701. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8702. },
  8703. "type": "library",
  8704. "autoload": {
  8705. "psr-4": {
  8706. "React\\EventLoop\\": "src/"
  8707. }
  8708. },
  8709. "notification-url": "https://packagist.org/downloads/",
  8710. "license": [
  8711. "MIT"
  8712. ],
  8713. "authors": [
  8714. {
  8715. "name": "Christian Lück",
  8716. "email": "christian@clue.engineering",
  8717. "homepage": "https://clue.engineering/"
  8718. },
  8719. {
  8720. "name": "Cees-Jan Kiewiet",
  8721. "email": "reactphp@ceesjankiewiet.nl",
  8722. "homepage": "https://wyrihaximus.net/"
  8723. },
  8724. {
  8725. "name": "Jan Sorgalla",
  8726. "email": "jsorgalla@gmail.com",
  8727. "homepage": "https://sorgalla.com/"
  8728. },
  8729. {
  8730. "name": "Chris Boden",
  8731. "email": "cboden@gmail.com",
  8732. "homepage": "https://cboden.dev/"
  8733. }
  8734. ],
  8735. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8736. "keywords": [
  8737. "asynchronous",
  8738. "event-loop"
  8739. ],
  8740. "support": {
  8741. "issues": "https://github.com/reactphp/event-loop/issues",
  8742. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8743. },
  8744. "funding": [
  8745. {
  8746. "url": "https://opencollective.com/reactphp",
  8747. "type": "open_collective"
  8748. }
  8749. ],
  8750. "time": "2023-11-13T13:48:05+00:00"
  8751. },
  8752. {
  8753. "name": "react/promise",
  8754. "version": "v3.2.0",
  8755. "source": {
  8756. "type": "git",
  8757. "url": "https://github.com/reactphp/promise.git",
  8758. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8759. },
  8760. "dist": {
  8761. "type": "zip",
  8762. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8763. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8764. "shasum": ""
  8765. },
  8766. "require": {
  8767. "php": ">=7.1.0"
  8768. },
  8769. "require-dev": {
  8770. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8771. "phpunit/phpunit": "^9.6 || ^7.5"
  8772. },
  8773. "type": "library",
  8774. "autoload": {
  8775. "files": [
  8776. "src/functions_include.php"
  8777. ],
  8778. "psr-4": {
  8779. "React\\Promise\\": "src/"
  8780. }
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "MIT"
  8785. ],
  8786. "authors": [
  8787. {
  8788. "name": "Jan Sorgalla",
  8789. "email": "jsorgalla@gmail.com",
  8790. "homepage": "https://sorgalla.com/"
  8791. },
  8792. {
  8793. "name": "Christian Lück",
  8794. "email": "christian@clue.engineering",
  8795. "homepage": "https://clue.engineering/"
  8796. },
  8797. {
  8798. "name": "Cees-Jan Kiewiet",
  8799. "email": "reactphp@ceesjankiewiet.nl",
  8800. "homepage": "https://wyrihaximus.net/"
  8801. },
  8802. {
  8803. "name": "Chris Boden",
  8804. "email": "cboden@gmail.com",
  8805. "homepage": "https://cboden.dev/"
  8806. }
  8807. ],
  8808. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8809. "keywords": [
  8810. "promise",
  8811. "promises"
  8812. ],
  8813. "support": {
  8814. "issues": "https://github.com/reactphp/promise/issues",
  8815. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8816. },
  8817. "funding": [
  8818. {
  8819. "url": "https://opencollective.com/reactphp",
  8820. "type": "open_collective"
  8821. }
  8822. ],
  8823. "time": "2024-05-24T10:39:05+00:00"
  8824. },
  8825. {
  8826. "name": "react/socket",
  8827. "version": "v1.15.0",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/reactphp/socket.git",
  8831. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8836. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8841. "php": ">=5.3.0",
  8842. "react/dns": "^1.11",
  8843. "react/event-loop": "^1.2",
  8844. "react/promise": "^3 || ^2.6 || ^1.2.1",
  8845. "react/stream": "^1.2"
  8846. },
  8847. "require-dev": {
  8848. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8849. "react/async": "^4 || ^3 || ^2",
  8850. "react/promise-stream": "^1.4",
  8851. "react/promise-timer": "^1.10"
  8852. },
  8853. "type": "library",
  8854. "autoload": {
  8855. "psr-4": {
  8856. "React\\Socket\\": "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": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8886. "keywords": [
  8887. "Connection",
  8888. "Socket",
  8889. "async",
  8890. "reactphp",
  8891. "stream"
  8892. ],
  8893. "support": {
  8894. "issues": "https://github.com/reactphp/socket/issues",
  8895. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  8896. },
  8897. "funding": [
  8898. {
  8899. "url": "https://opencollective.com/reactphp",
  8900. "type": "open_collective"
  8901. }
  8902. ],
  8903. "time": "2023-12-15T11:02:10+00:00"
  8904. },
  8905. {
  8906. "name": "react/stream",
  8907. "version": "v1.3.0",
  8908. "source": {
  8909. "type": "git",
  8910. "url": "https://github.com/reactphp/stream.git",
  8911. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  8912. },
  8913. "dist": {
  8914. "type": "zip",
  8915. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8916. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  8917. "shasum": ""
  8918. },
  8919. "require": {
  8920. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8921. "php": ">=5.3.8",
  8922. "react/event-loop": "^1.2"
  8923. },
  8924. "require-dev": {
  8925. "clue/stream-filter": "~1.2",
  8926. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8927. },
  8928. "type": "library",
  8929. "autoload": {
  8930. "psr-4": {
  8931. "React\\Stream\\": "src/"
  8932. }
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "MIT"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Christian Lück",
  8941. "email": "christian@clue.engineering",
  8942. "homepage": "https://clue.engineering/"
  8943. },
  8944. {
  8945. "name": "Cees-Jan Kiewiet",
  8946. "email": "reactphp@ceesjankiewiet.nl",
  8947. "homepage": "https://wyrihaximus.net/"
  8948. },
  8949. {
  8950. "name": "Jan Sorgalla",
  8951. "email": "jsorgalla@gmail.com",
  8952. "homepage": "https://sorgalla.com/"
  8953. },
  8954. {
  8955. "name": "Chris Boden",
  8956. "email": "cboden@gmail.com",
  8957. "homepage": "https://cboden.dev/"
  8958. }
  8959. ],
  8960. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8961. "keywords": [
  8962. "event-driven",
  8963. "io",
  8964. "non-blocking",
  8965. "pipe",
  8966. "reactphp",
  8967. "readable",
  8968. "stream",
  8969. "writable"
  8970. ],
  8971. "support": {
  8972. "issues": "https://github.com/reactphp/stream/issues",
  8973. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  8974. },
  8975. "funding": [
  8976. {
  8977. "url": "https://opencollective.com/reactphp",
  8978. "type": "open_collective"
  8979. }
  8980. ],
  8981. "time": "2023-06-16T10:52:11+00:00"
  8982. },
  8983. {
  8984. "name": "sebastian/cli-parser",
  8985. "version": "2.0.1",
  8986. "source": {
  8987. "type": "git",
  8988. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8989. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8990. },
  8991. "dist": {
  8992. "type": "zip",
  8993. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8994. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8995. "shasum": ""
  8996. },
  8997. "require": {
  8998. "php": ">=8.1"
  8999. },
  9000. "require-dev": {
  9001. "phpunit/phpunit": "^10.0"
  9002. },
  9003. "type": "library",
  9004. "extra": {
  9005. "branch-alias": {
  9006. "dev-main": "2.0-dev"
  9007. }
  9008. },
  9009. "autoload": {
  9010. "classmap": [
  9011. "src/"
  9012. ]
  9013. },
  9014. "notification-url": "https://packagist.org/downloads/",
  9015. "license": [
  9016. "BSD-3-Clause"
  9017. ],
  9018. "authors": [
  9019. {
  9020. "name": "Sebastian Bergmann",
  9021. "email": "sebastian@phpunit.de",
  9022. "role": "lead"
  9023. }
  9024. ],
  9025. "description": "Library for parsing CLI options",
  9026. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9027. "support": {
  9028. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9029. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9030. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9031. },
  9032. "funding": [
  9033. {
  9034. "url": "https://github.com/sebastianbergmann",
  9035. "type": "github"
  9036. }
  9037. ],
  9038. "time": "2024-03-02T07:12:49+00:00"
  9039. },
  9040. {
  9041. "name": "sebastian/code-unit",
  9042. "version": "2.0.0",
  9043. "source": {
  9044. "type": "git",
  9045. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9046. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9047. },
  9048. "dist": {
  9049. "type": "zip",
  9050. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9051. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9052. "shasum": ""
  9053. },
  9054. "require": {
  9055. "php": ">=8.1"
  9056. },
  9057. "require-dev": {
  9058. "phpunit/phpunit": "^10.0"
  9059. },
  9060. "type": "library",
  9061. "extra": {
  9062. "branch-alias": {
  9063. "dev-main": "2.0-dev"
  9064. }
  9065. },
  9066. "autoload": {
  9067. "classmap": [
  9068. "src/"
  9069. ]
  9070. },
  9071. "notification-url": "https://packagist.org/downloads/",
  9072. "license": [
  9073. "BSD-3-Clause"
  9074. ],
  9075. "authors": [
  9076. {
  9077. "name": "Sebastian Bergmann",
  9078. "email": "sebastian@phpunit.de",
  9079. "role": "lead"
  9080. }
  9081. ],
  9082. "description": "Collection of value objects that represent the PHP code units",
  9083. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9084. "support": {
  9085. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9086. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://github.com/sebastianbergmann",
  9091. "type": "github"
  9092. }
  9093. ],
  9094. "time": "2023-02-03T06:58:43+00:00"
  9095. },
  9096. {
  9097. "name": "sebastian/code-unit-reverse-lookup",
  9098. "version": "3.0.0",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9102. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9107. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9108. "shasum": ""
  9109. },
  9110. "require": {
  9111. "php": ">=8.1"
  9112. },
  9113. "require-dev": {
  9114. "phpunit/phpunit": "^10.0"
  9115. },
  9116. "type": "library",
  9117. "extra": {
  9118. "branch-alias": {
  9119. "dev-main": "3.0-dev"
  9120. }
  9121. },
  9122. "autoload": {
  9123. "classmap": [
  9124. "src/"
  9125. ]
  9126. },
  9127. "notification-url": "https://packagist.org/downloads/",
  9128. "license": [
  9129. "BSD-3-Clause"
  9130. ],
  9131. "authors": [
  9132. {
  9133. "name": "Sebastian Bergmann",
  9134. "email": "sebastian@phpunit.de"
  9135. }
  9136. ],
  9137. "description": "Looks up which function or method a line of code belongs to",
  9138. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9139. "support": {
  9140. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9141. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9142. },
  9143. "funding": [
  9144. {
  9145. "url": "https://github.com/sebastianbergmann",
  9146. "type": "github"
  9147. }
  9148. ],
  9149. "time": "2023-02-03T06:59:15+00:00"
  9150. },
  9151. {
  9152. "name": "sebastian/comparator",
  9153. "version": "5.0.1",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/sebastianbergmann/comparator.git",
  9157. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  9162. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "ext-dom": "*",
  9167. "ext-mbstring": "*",
  9168. "php": ">=8.1",
  9169. "sebastian/diff": "^5.0",
  9170. "sebastian/exporter": "^5.0"
  9171. },
  9172. "require-dev": {
  9173. "phpunit/phpunit": "^10.3"
  9174. },
  9175. "type": "library",
  9176. "extra": {
  9177. "branch-alias": {
  9178. "dev-main": "5.0-dev"
  9179. }
  9180. },
  9181. "autoload": {
  9182. "classmap": [
  9183. "src/"
  9184. ]
  9185. },
  9186. "notification-url": "https://packagist.org/downloads/",
  9187. "license": [
  9188. "BSD-3-Clause"
  9189. ],
  9190. "authors": [
  9191. {
  9192. "name": "Sebastian Bergmann",
  9193. "email": "sebastian@phpunit.de"
  9194. },
  9195. {
  9196. "name": "Jeff Welch",
  9197. "email": "whatthejeff@gmail.com"
  9198. },
  9199. {
  9200. "name": "Volker Dusch",
  9201. "email": "github@wallbash.com"
  9202. },
  9203. {
  9204. "name": "Bernhard Schussek",
  9205. "email": "bschussek@2bepublished.at"
  9206. }
  9207. ],
  9208. "description": "Provides the functionality to compare PHP values for equality",
  9209. "homepage": "https://github.com/sebastianbergmann/comparator",
  9210. "keywords": [
  9211. "comparator",
  9212. "compare",
  9213. "equality"
  9214. ],
  9215. "support": {
  9216. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9217. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9218. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  9219. },
  9220. "funding": [
  9221. {
  9222. "url": "https://github.com/sebastianbergmann",
  9223. "type": "github"
  9224. }
  9225. ],
  9226. "time": "2023-08-14T13:18:12+00:00"
  9227. },
  9228. {
  9229. "name": "sebastian/complexity",
  9230. "version": "3.2.0",
  9231. "source": {
  9232. "type": "git",
  9233. "url": "https://github.com/sebastianbergmann/complexity.git",
  9234. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9235. },
  9236. "dist": {
  9237. "type": "zip",
  9238. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9239. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9240. "shasum": ""
  9241. },
  9242. "require": {
  9243. "nikic/php-parser": "^4.18 || ^5.0",
  9244. "php": ">=8.1"
  9245. },
  9246. "require-dev": {
  9247. "phpunit/phpunit": "^10.0"
  9248. },
  9249. "type": "library",
  9250. "extra": {
  9251. "branch-alias": {
  9252. "dev-main": "3.2-dev"
  9253. }
  9254. },
  9255. "autoload": {
  9256. "classmap": [
  9257. "src/"
  9258. ]
  9259. },
  9260. "notification-url": "https://packagist.org/downloads/",
  9261. "license": [
  9262. "BSD-3-Clause"
  9263. ],
  9264. "authors": [
  9265. {
  9266. "name": "Sebastian Bergmann",
  9267. "email": "sebastian@phpunit.de",
  9268. "role": "lead"
  9269. }
  9270. ],
  9271. "description": "Library for calculating the complexity of PHP code units",
  9272. "homepage": "https://github.com/sebastianbergmann/complexity",
  9273. "support": {
  9274. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9275. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9276. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9277. },
  9278. "funding": [
  9279. {
  9280. "url": "https://github.com/sebastianbergmann",
  9281. "type": "github"
  9282. }
  9283. ],
  9284. "time": "2023-12-21T08:37:17+00:00"
  9285. },
  9286. {
  9287. "name": "sebastian/diff",
  9288. "version": "5.1.1",
  9289. "source": {
  9290. "type": "git",
  9291. "url": "https://github.com/sebastianbergmann/diff.git",
  9292. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9293. },
  9294. "dist": {
  9295. "type": "zip",
  9296. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9297. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9298. "shasum": ""
  9299. },
  9300. "require": {
  9301. "php": ">=8.1"
  9302. },
  9303. "require-dev": {
  9304. "phpunit/phpunit": "^10.0",
  9305. "symfony/process": "^6.4"
  9306. },
  9307. "type": "library",
  9308. "extra": {
  9309. "branch-alias": {
  9310. "dev-main": "5.1-dev"
  9311. }
  9312. },
  9313. "autoload": {
  9314. "classmap": [
  9315. "src/"
  9316. ]
  9317. },
  9318. "notification-url": "https://packagist.org/downloads/",
  9319. "license": [
  9320. "BSD-3-Clause"
  9321. ],
  9322. "authors": [
  9323. {
  9324. "name": "Sebastian Bergmann",
  9325. "email": "sebastian@phpunit.de"
  9326. },
  9327. {
  9328. "name": "Kore Nordmann",
  9329. "email": "mail@kore-nordmann.de"
  9330. }
  9331. ],
  9332. "description": "Diff implementation",
  9333. "homepage": "https://github.com/sebastianbergmann/diff",
  9334. "keywords": [
  9335. "diff",
  9336. "udiff",
  9337. "unidiff",
  9338. "unified diff"
  9339. ],
  9340. "support": {
  9341. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9342. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9343. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9344. },
  9345. "funding": [
  9346. {
  9347. "url": "https://github.com/sebastianbergmann",
  9348. "type": "github"
  9349. }
  9350. ],
  9351. "time": "2024-03-02T07:15:17+00:00"
  9352. },
  9353. {
  9354. "name": "sebastian/environment",
  9355. "version": "6.1.0",
  9356. "source": {
  9357. "type": "git",
  9358. "url": "https://github.com/sebastianbergmann/environment.git",
  9359. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9360. },
  9361. "dist": {
  9362. "type": "zip",
  9363. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9364. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9365. "shasum": ""
  9366. },
  9367. "require": {
  9368. "php": ">=8.1"
  9369. },
  9370. "require-dev": {
  9371. "phpunit/phpunit": "^10.0"
  9372. },
  9373. "suggest": {
  9374. "ext-posix": "*"
  9375. },
  9376. "type": "library",
  9377. "extra": {
  9378. "branch-alias": {
  9379. "dev-main": "6.1-dev"
  9380. }
  9381. },
  9382. "autoload": {
  9383. "classmap": [
  9384. "src/"
  9385. ]
  9386. },
  9387. "notification-url": "https://packagist.org/downloads/",
  9388. "license": [
  9389. "BSD-3-Clause"
  9390. ],
  9391. "authors": [
  9392. {
  9393. "name": "Sebastian Bergmann",
  9394. "email": "sebastian@phpunit.de"
  9395. }
  9396. ],
  9397. "description": "Provides functionality to handle HHVM/PHP environments",
  9398. "homepage": "https://github.com/sebastianbergmann/environment",
  9399. "keywords": [
  9400. "Xdebug",
  9401. "environment",
  9402. "hhvm"
  9403. ],
  9404. "support": {
  9405. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9406. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9407. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9408. },
  9409. "funding": [
  9410. {
  9411. "url": "https://github.com/sebastianbergmann",
  9412. "type": "github"
  9413. }
  9414. ],
  9415. "time": "2024-03-23T08:47:14+00:00"
  9416. },
  9417. {
  9418. "name": "sebastian/exporter",
  9419. "version": "5.1.2",
  9420. "source": {
  9421. "type": "git",
  9422. "url": "https://github.com/sebastianbergmann/exporter.git",
  9423. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9424. },
  9425. "dist": {
  9426. "type": "zip",
  9427. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9428. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9429. "shasum": ""
  9430. },
  9431. "require": {
  9432. "ext-mbstring": "*",
  9433. "php": ">=8.1",
  9434. "sebastian/recursion-context": "^5.0"
  9435. },
  9436. "require-dev": {
  9437. "phpunit/phpunit": "^10.0"
  9438. },
  9439. "type": "library",
  9440. "extra": {
  9441. "branch-alias": {
  9442. "dev-main": "5.1-dev"
  9443. }
  9444. },
  9445. "autoload": {
  9446. "classmap": [
  9447. "src/"
  9448. ]
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "BSD-3-Clause"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "Sebastian Bergmann",
  9457. "email": "sebastian@phpunit.de"
  9458. },
  9459. {
  9460. "name": "Jeff Welch",
  9461. "email": "whatthejeff@gmail.com"
  9462. },
  9463. {
  9464. "name": "Volker Dusch",
  9465. "email": "github@wallbash.com"
  9466. },
  9467. {
  9468. "name": "Adam Harvey",
  9469. "email": "aharvey@php.net"
  9470. },
  9471. {
  9472. "name": "Bernhard Schussek",
  9473. "email": "bschussek@gmail.com"
  9474. }
  9475. ],
  9476. "description": "Provides the functionality to export PHP variables for visualization",
  9477. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9478. "keywords": [
  9479. "export",
  9480. "exporter"
  9481. ],
  9482. "support": {
  9483. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9484. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9485. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9486. },
  9487. "funding": [
  9488. {
  9489. "url": "https://github.com/sebastianbergmann",
  9490. "type": "github"
  9491. }
  9492. ],
  9493. "time": "2024-03-02T07:17:12+00:00"
  9494. },
  9495. {
  9496. "name": "sebastian/global-state",
  9497. "version": "6.0.2",
  9498. "source": {
  9499. "type": "git",
  9500. "url": "https://github.com/sebastianbergmann/global-state.git",
  9501. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9502. },
  9503. "dist": {
  9504. "type": "zip",
  9505. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9506. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9507. "shasum": ""
  9508. },
  9509. "require": {
  9510. "php": ">=8.1",
  9511. "sebastian/object-reflector": "^3.0",
  9512. "sebastian/recursion-context": "^5.0"
  9513. },
  9514. "require-dev": {
  9515. "ext-dom": "*",
  9516. "phpunit/phpunit": "^10.0"
  9517. },
  9518. "type": "library",
  9519. "extra": {
  9520. "branch-alias": {
  9521. "dev-main": "6.0-dev"
  9522. }
  9523. },
  9524. "autoload": {
  9525. "classmap": [
  9526. "src/"
  9527. ]
  9528. },
  9529. "notification-url": "https://packagist.org/downloads/",
  9530. "license": [
  9531. "BSD-3-Clause"
  9532. ],
  9533. "authors": [
  9534. {
  9535. "name": "Sebastian Bergmann",
  9536. "email": "sebastian@phpunit.de"
  9537. }
  9538. ],
  9539. "description": "Snapshotting of global state",
  9540. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9541. "keywords": [
  9542. "global state"
  9543. ],
  9544. "support": {
  9545. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9546. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9547. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9548. },
  9549. "funding": [
  9550. {
  9551. "url": "https://github.com/sebastianbergmann",
  9552. "type": "github"
  9553. }
  9554. ],
  9555. "time": "2024-03-02T07:19:19+00:00"
  9556. },
  9557. {
  9558. "name": "sebastian/lines-of-code",
  9559. "version": "2.0.2",
  9560. "source": {
  9561. "type": "git",
  9562. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9563. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9564. },
  9565. "dist": {
  9566. "type": "zip",
  9567. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9568. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9569. "shasum": ""
  9570. },
  9571. "require": {
  9572. "nikic/php-parser": "^4.18 || ^5.0",
  9573. "php": ">=8.1"
  9574. },
  9575. "require-dev": {
  9576. "phpunit/phpunit": "^10.0"
  9577. },
  9578. "type": "library",
  9579. "extra": {
  9580. "branch-alias": {
  9581. "dev-main": "2.0-dev"
  9582. }
  9583. },
  9584. "autoload": {
  9585. "classmap": [
  9586. "src/"
  9587. ]
  9588. },
  9589. "notification-url": "https://packagist.org/downloads/",
  9590. "license": [
  9591. "BSD-3-Clause"
  9592. ],
  9593. "authors": [
  9594. {
  9595. "name": "Sebastian Bergmann",
  9596. "email": "sebastian@phpunit.de",
  9597. "role": "lead"
  9598. }
  9599. ],
  9600. "description": "Library for counting the lines of code in PHP source code",
  9601. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9602. "support": {
  9603. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9604. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9605. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9606. },
  9607. "funding": [
  9608. {
  9609. "url": "https://github.com/sebastianbergmann",
  9610. "type": "github"
  9611. }
  9612. ],
  9613. "time": "2023-12-21T08:38:20+00:00"
  9614. },
  9615. {
  9616. "name": "sebastian/object-enumerator",
  9617. "version": "5.0.0",
  9618. "source": {
  9619. "type": "git",
  9620. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9621. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9622. },
  9623. "dist": {
  9624. "type": "zip",
  9625. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9626. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9627. "shasum": ""
  9628. },
  9629. "require": {
  9630. "php": ">=8.1",
  9631. "sebastian/object-reflector": "^3.0",
  9632. "sebastian/recursion-context": "^5.0"
  9633. },
  9634. "require-dev": {
  9635. "phpunit/phpunit": "^10.0"
  9636. },
  9637. "type": "library",
  9638. "extra": {
  9639. "branch-alias": {
  9640. "dev-main": "5.0-dev"
  9641. }
  9642. },
  9643. "autoload": {
  9644. "classmap": [
  9645. "src/"
  9646. ]
  9647. },
  9648. "notification-url": "https://packagist.org/downloads/",
  9649. "license": [
  9650. "BSD-3-Clause"
  9651. ],
  9652. "authors": [
  9653. {
  9654. "name": "Sebastian Bergmann",
  9655. "email": "sebastian@phpunit.de"
  9656. }
  9657. ],
  9658. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9659. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9660. "support": {
  9661. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9662. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9663. },
  9664. "funding": [
  9665. {
  9666. "url": "https://github.com/sebastianbergmann",
  9667. "type": "github"
  9668. }
  9669. ],
  9670. "time": "2023-02-03T07:08:32+00:00"
  9671. },
  9672. {
  9673. "name": "sebastian/object-reflector",
  9674. "version": "3.0.0",
  9675. "source": {
  9676. "type": "git",
  9677. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9678. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9679. },
  9680. "dist": {
  9681. "type": "zip",
  9682. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9683. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9684. "shasum": ""
  9685. },
  9686. "require": {
  9687. "php": ">=8.1"
  9688. },
  9689. "require-dev": {
  9690. "phpunit/phpunit": "^10.0"
  9691. },
  9692. "type": "library",
  9693. "extra": {
  9694. "branch-alias": {
  9695. "dev-main": "3.0-dev"
  9696. }
  9697. },
  9698. "autoload": {
  9699. "classmap": [
  9700. "src/"
  9701. ]
  9702. },
  9703. "notification-url": "https://packagist.org/downloads/",
  9704. "license": [
  9705. "BSD-3-Clause"
  9706. ],
  9707. "authors": [
  9708. {
  9709. "name": "Sebastian Bergmann",
  9710. "email": "sebastian@phpunit.de"
  9711. }
  9712. ],
  9713. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9714. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9715. "support": {
  9716. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9717. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9718. },
  9719. "funding": [
  9720. {
  9721. "url": "https://github.com/sebastianbergmann",
  9722. "type": "github"
  9723. }
  9724. ],
  9725. "time": "2023-02-03T07:06:18+00:00"
  9726. },
  9727. {
  9728. "name": "sebastian/recursion-context",
  9729. "version": "5.0.0",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9733. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9738. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "php": ">=8.1"
  9743. },
  9744. "require-dev": {
  9745. "phpunit/phpunit": "^10.0"
  9746. },
  9747. "type": "library",
  9748. "extra": {
  9749. "branch-alias": {
  9750. "dev-main": "5.0-dev"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "classmap": [
  9755. "src/"
  9756. ]
  9757. },
  9758. "notification-url": "https://packagist.org/downloads/",
  9759. "license": [
  9760. "BSD-3-Clause"
  9761. ],
  9762. "authors": [
  9763. {
  9764. "name": "Sebastian Bergmann",
  9765. "email": "sebastian@phpunit.de"
  9766. },
  9767. {
  9768. "name": "Jeff Welch",
  9769. "email": "whatthejeff@gmail.com"
  9770. },
  9771. {
  9772. "name": "Adam Harvey",
  9773. "email": "aharvey@php.net"
  9774. }
  9775. ],
  9776. "description": "Provides functionality to recursively process PHP variables",
  9777. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9778. "support": {
  9779. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9780. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9781. },
  9782. "funding": [
  9783. {
  9784. "url": "https://github.com/sebastianbergmann",
  9785. "type": "github"
  9786. }
  9787. ],
  9788. "time": "2023-02-03T07:05:40+00:00"
  9789. },
  9790. {
  9791. "name": "sebastian/type",
  9792. "version": "4.0.0",
  9793. "source": {
  9794. "type": "git",
  9795. "url": "https://github.com/sebastianbergmann/type.git",
  9796. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9797. },
  9798. "dist": {
  9799. "type": "zip",
  9800. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9801. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9802. "shasum": ""
  9803. },
  9804. "require": {
  9805. "php": ">=8.1"
  9806. },
  9807. "require-dev": {
  9808. "phpunit/phpunit": "^10.0"
  9809. },
  9810. "type": "library",
  9811. "extra": {
  9812. "branch-alias": {
  9813. "dev-main": "4.0-dev"
  9814. }
  9815. },
  9816. "autoload": {
  9817. "classmap": [
  9818. "src/"
  9819. ]
  9820. },
  9821. "notification-url": "https://packagist.org/downloads/",
  9822. "license": [
  9823. "BSD-3-Clause"
  9824. ],
  9825. "authors": [
  9826. {
  9827. "name": "Sebastian Bergmann",
  9828. "email": "sebastian@phpunit.de",
  9829. "role": "lead"
  9830. }
  9831. ],
  9832. "description": "Collection of value objects that represent the types of the PHP type system",
  9833. "homepage": "https://github.com/sebastianbergmann/type",
  9834. "support": {
  9835. "issues": "https://github.com/sebastianbergmann/type/issues",
  9836. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9837. },
  9838. "funding": [
  9839. {
  9840. "url": "https://github.com/sebastianbergmann",
  9841. "type": "github"
  9842. }
  9843. ],
  9844. "time": "2023-02-03T07:10:45+00:00"
  9845. },
  9846. {
  9847. "name": "sebastian/version",
  9848. "version": "4.0.1",
  9849. "source": {
  9850. "type": "git",
  9851. "url": "https://github.com/sebastianbergmann/version.git",
  9852. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9853. },
  9854. "dist": {
  9855. "type": "zip",
  9856. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9857. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9858. "shasum": ""
  9859. },
  9860. "require": {
  9861. "php": ">=8.1"
  9862. },
  9863. "type": "library",
  9864. "extra": {
  9865. "branch-alias": {
  9866. "dev-main": "4.0-dev"
  9867. }
  9868. },
  9869. "autoload": {
  9870. "classmap": [
  9871. "src/"
  9872. ]
  9873. },
  9874. "notification-url": "https://packagist.org/downloads/",
  9875. "license": [
  9876. "BSD-3-Clause"
  9877. ],
  9878. "authors": [
  9879. {
  9880. "name": "Sebastian Bergmann",
  9881. "email": "sebastian@phpunit.de",
  9882. "role": "lead"
  9883. }
  9884. ],
  9885. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9886. "homepage": "https://github.com/sebastianbergmann/version",
  9887. "support": {
  9888. "issues": "https://github.com/sebastianbergmann/version/issues",
  9889. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9890. },
  9891. "funding": [
  9892. {
  9893. "url": "https://github.com/sebastianbergmann",
  9894. "type": "github"
  9895. }
  9896. ],
  9897. "time": "2023-02-07T11:34:05+00:00"
  9898. },
  9899. {
  9900. "name": "swoole/ide-helper",
  9901. "version": "5.1.2",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/swoole/ide-helper.git",
  9905. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  9910. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  9911. "shasum": ""
  9912. },
  9913. "type": "library",
  9914. "notification-url": "https://packagist.org/downloads/",
  9915. "license": [
  9916. "Apache-2.0"
  9917. ],
  9918. "authors": [
  9919. {
  9920. "name": "Team Swoole",
  9921. "email": "team@swoole.com"
  9922. }
  9923. ],
  9924. "description": "IDE help files for Swoole.",
  9925. "support": {
  9926. "issues": "https://github.com/swoole/ide-helper/issues",
  9927. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  9928. },
  9929. "time": "2024-02-01T22:28:11+00:00"
  9930. },
  9931. {
  9932. "name": "symfony/event-dispatcher",
  9933. "version": "v6.4.8",
  9934. "source": {
  9935. "type": "git",
  9936. "url": "https://github.com/symfony/event-dispatcher.git",
  9937. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  9938. },
  9939. "dist": {
  9940. "type": "zip",
  9941. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  9942. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  9943. "shasum": ""
  9944. },
  9945. "require": {
  9946. "php": ">=8.1",
  9947. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9948. },
  9949. "conflict": {
  9950. "symfony/dependency-injection": "<5.4",
  9951. "symfony/service-contracts": "<2.5"
  9952. },
  9953. "provide": {
  9954. "psr/event-dispatcher-implementation": "1.0",
  9955. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9956. },
  9957. "require-dev": {
  9958. "psr/log": "^1|^2|^3",
  9959. "symfony/config": "^5.4|^6.0|^7.0",
  9960. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9961. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9962. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9963. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9964. "symfony/service-contracts": "^2.5|^3",
  9965. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9966. },
  9967. "type": "library",
  9968. "autoload": {
  9969. "psr-4": {
  9970. "Symfony\\Component\\EventDispatcher\\": ""
  9971. },
  9972. "exclude-from-classmap": [
  9973. "/Tests/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "MIT"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Fabien Potencier",
  9983. "email": "fabien@symfony.com"
  9984. },
  9985. {
  9986. "name": "Symfony Community",
  9987. "homepage": "https://symfony.com/contributors"
  9988. }
  9989. ],
  9990. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9991. "homepage": "https://symfony.com",
  9992. "support": {
  9993. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  9994. },
  9995. "funding": [
  9996. {
  9997. "url": "https://symfony.com/sponsor",
  9998. "type": "custom"
  9999. },
  10000. {
  10001. "url": "https://github.com/fabpot",
  10002. "type": "github"
  10003. },
  10004. {
  10005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10006. "type": "tidelift"
  10007. }
  10008. ],
  10009. "time": "2024-05-31T14:49:08+00:00"
  10010. },
  10011. {
  10012. "name": "symfony/event-dispatcher-contracts",
  10013. "version": "v3.5.0",
  10014. "source": {
  10015. "type": "git",
  10016. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10017. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  10018. },
  10019. "dist": {
  10020. "type": "zip",
  10021. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  10022. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  10023. "shasum": ""
  10024. },
  10025. "require": {
  10026. "php": ">=8.1",
  10027. "psr/event-dispatcher": "^1"
  10028. },
  10029. "type": "library",
  10030. "extra": {
  10031. "branch-alias": {
  10032. "dev-main": "3.5-dev"
  10033. },
  10034. "thanks": {
  10035. "name": "symfony/contracts",
  10036. "url": "https://github.com/symfony/contracts"
  10037. }
  10038. },
  10039. "autoload": {
  10040. "psr-4": {
  10041. "Symfony\\Contracts\\EventDispatcher\\": ""
  10042. }
  10043. },
  10044. "notification-url": "https://packagist.org/downloads/",
  10045. "license": [
  10046. "MIT"
  10047. ],
  10048. "authors": [
  10049. {
  10050. "name": "Nicolas Grekas",
  10051. "email": "p@tchwork.com"
  10052. },
  10053. {
  10054. "name": "Symfony Community",
  10055. "homepage": "https://symfony.com/contributors"
  10056. }
  10057. ],
  10058. "description": "Generic abstractions related to dispatching event",
  10059. "homepage": "https://symfony.com",
  10060. "keywords": [
  10061. "abstractions",
  10062. "contracts",
  10063. "decoupling",
  10064. "interfaces",
  10065. "interoperability",
  10066. "standards"
  10067. ],
  10068. "support": {
  10069. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  10070. },
  10071. "funding": [
  10072. {
  10073. "url": "https://symfony.com/sponsor",
  10074. "type": "custom"
  10075. },
  10076. {
  10077. "url": "https://github.com/fabpot",
  10078. "type": "github"
  10079. },
  10080. {
  10081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10082. "type": "tidelift"
  10083. }
  10084. ],
  10085. "time": "2024-04-18T09:32:20+00:00"
  10086. },
  10087. {
  10088. "name": "symfony/filesystem",
  10089. "version": "v6.4.8",
  10090. "source": {
  10091. "type": "git",
  10092. "url": "https://github.com/symfony/filesystem.git",
  10093. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  10094. },
  10095. "dist": {
  10096. "type": "zip",
  10097. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10098. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  10099. "shasum": ""
  10100. },
  10101. "require": {
  10102. "php": ">=8.1",
  10103. "symfony/polyfill-ctype": "~1.8",
  10104. "symfony/polyfill-mbstring": "~1.8"
  10105. },
  10106. "require-dev": {
  10107. "symfony/process": "^5.4|^6.4|^7.0"
  10108. },
  10109. "type": "library",
  10110. "autoload": {
  10111. "psr-4": {
  10112. "Symfony\\Component\\Filesystem\\": ""
  10113. },
  10114. "exclude-from-classmap": [
  10115. "/Tests/"
  10116. ]
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "MIT"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Fabien Potencier",
  10125. "email": "fabien@symfony.com"
  10126. },
  10127. {
  10128. "name": "Symfony Community",
  10129. "homepage": "https://symfony.com/contributors"
  10130. }
  10131. ],
  10132. "description": "Provides basic utilities for the filesystem",
  10133. "homepage": "https://symfony.com",
  10134. "support": {
  10135. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  10136. },
  10137. "funding": [
  10138. {
  10139. "url": "https://symfony.com/sponsor",
  10140. "type": "custom"
  10141. },
  10142. {
  10143. "url": "https://github.com/fabpot",
  10144. "type": "github"
  10145. },
  10146. {
  10147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10148. "type": "tidelift"
  10149. }
  10150. ],
  10151. "time": "2024-05-31T14:49:08+00:00"
  10152. },
  10153. {
  10154. "name": "symfony/http-foundation",
  10155. "version": "v6.4.8",
  10156. "source": {
  10157. "type": "git",
  10158. "url": "https://github.com/symfony/http-foundation.git",
  10159. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  10160. },
  10161. "dist": {
  10162. "type": "zip",
  10163. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  10164. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  10165. "shasum": ""
  10166. },
  10167. "require": {
  10168. "php": ">=8.1",
  10169. "symfony/deprecation-contracts": "^2.5|^3",
  10170. "symfony/polyfill-mbstring": "~1.1",
  10171. "symfony/polyfill-php83": "^1.27"
  10172. },
  10173. "conflict": {
  10174. "symfony/cache": "<6.3"
  10175. },
  10176. "require-dev": {
  10177. "doctrine/dbal": "^2.13.1|^3|^4",
  10178. "predis/predis": "^1.1|^2.0",
  10179. "symfony/cache": "^6.3|^7.0",
  10180. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10181. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10182. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10183. "symfony/mime": "^5.4|^6.0|^7.0",
  10184. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10185. },
  10186. "type": "library",
  10187. "autoload": {
  10188. "psr-4": {
  10189. "Symfony\\Component\\HttpFoundation\\": ""
  10190. },
  10191. "exclude-from-classmap": [
  10192. "/Tests/"
  10193. ]
  10194. },
  10195. "notification-url": "https://packagist.org/downloads/",
  10196. "license": [
  10197. "MIT"
  10198. ],
  10199. "authors": [
  10200. {
  10201. "name": "Fabien Potencier",
  10202. "email": "fabien@symfony.com"
  10203. },
  10204. {
  10205. "name": "Symfony Community",
  10206. "homepage": "https://symfony.com/contributors"
  10207. }
  10208. ],
  10209. "description": "Defines an object-oriented layer for the HTTP specification",
  10210. "homepage": "https://symfony.com",
  10211. "support": {
  10212. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  10213. },
  10214. "funding": [
  10215. {
  10216. "url": "https://symfony.com/sponsor",
  10217. "type": "custom"
  10218. },
  10219. {
  10220. "url": "https://github.com/fabpot",
  10221. "type": "github"
  10222. },
  10223. {
  10224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10225. "type": "tidelift"
  10226. }
  10227. ],
  10228. "time": "2024-05-31T14:49:08+00:00"
  10229. },
  10230. {
  10231. "name": "symfony/options-resolver",
  10232. "version": "v6.4.8",
  10233. "source": {
  10234. "type": "git",
  10235. "url": "https://github.com/symfony/options-resolver.git",
  10236. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  10237. },
  10238. "dist": {
  10239. "type": "zip",
  10240. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  10241. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  10242. "shasum": ""
  10243. },
  10244. "require": {
  10245. "php": ">=8.1",
  10246. "symfony/deprecation-contracts": "^2.5|^3"
  10247. },
  10248. "type": "library",
  10249. "autoload": {
  10250. "psr-4": {
  10251. "Symfony\\Component\\OptionsResolver\\": ""
  10252. },
  10253. "exclude-from-classmap": [
  10254. "/Tests/"
  10255. ]
  10256. },
  10257. "notification-url": "https://packagist.org/downloads/",
  10258. "license": [
  10259. "MIT"
  10260. ],
  10261. "authors": [
  10262. {
  10263. "name": "Fabien Potencier",
  10264. "email": "fabien@symfony.com"
  10265. },
  10266. {
  10267. "name": "Symfony Community",
  10268. "homepage": "https://symfony.com/contributors"
  10269. }
  10270. ],
  10271. "description": "Provides an improved replacement for the array_replace PHP function",
  10272. "homepage": "https://symfony.com",
  10273. "keywords": [
  10274. "config",
  10275. "configuration",
  10276. "options"
  10277. ],
  10278. "support": {
  10279. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  10280. },
  10281. "funding": [
  10282. {
  10283. "url": "https://symfony.com/sponsor",
  10284. "type": "custom"
  10285. },
  10286. {
  10287. "url": "https://github.com/fabpot",
  10288. "type": "github"
  10289. },
  10290. {
  10291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10292. "type": "tidelift"
  10293. }
  10294. ],
  10295. "time": "2024-05-31T14:49:08+00:00"
  10296. },
  10297. {
  10298. "name": "symfony/polyfill-php81",
  10299. "version": "v1.29.0",
  10300. "source": {
  10301. "type": "git",
  10302. "url": "https://github.com/symfony/polyfill-php81.git",
  10303. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10304. },
  10305. "dist": {
  10306. "type": "zip",
  10307. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10308. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10309. "shasum": ""
  10310. },
  10311. "require": {
  10312. "php": ">=7.1"
  10313. },
  10314. "type": "library",
  10315. "extra": {
  10316. "thanks": {
  10317. "name": "symfony/polyfill",
  10318. "url": "https://github.com/symfony/polyfill"
  10319. }
  10320. },
  10321. "autoload": {
  10322. "files": [
  10323. "bootstrap.php"
  10324. ],
  10325. "psr-4": {
  10326. "Symfony\\Polyfill\\Php81\\": ""
  10327. },
  10328. "classmap": [
  10329. "Resources/stubs"
  10330. ]
  10331. },
  10332. "notification-url": "https://packagist.org/downloads/",
  10333. "license": [
  10334. "MIT"
  10335. ],
  10336. "authors": [
  10337. {
  10338. "name": "Nicolas Grekas",
  10339. "email": "p@tchwork.com"
  10340. },
  10341. {
  10342. "name": "Symfony Community",
  10343. "homepage": "https://symfony.com/contributors"
  10344. }
  10345. ],
  10346. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10347. "homepage": "https://symfony.com",
  10348. "keywords": [
  10349. "compatibility",
  10350. "polyfill",
  10351. "portable",
  10352. "shim"
  10353. ],
  10354. "support": {
  10355. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10356. },
  10357. "funding": [
  10358. {
  10359. "url": "https://symfony.com/sponsor",
  10360. "type": "custom"
  10361. },
  10362. {
  10363. "url": "https://github.com/fabpot",
  10364. "type": "github"
  10365. },
  10366. {
  10367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10368. "type": "tidelift"
  10369. }
  10370. ],
  10371. "time": "2024-01-29T20:11:03+00:00"
  10372. },
  10373. {
  10374. "name": "symfony/polyfill-php83",
  10375. "version": "v1.29.0",
  10376. "source": {
  10377. "type": "git",
  10378. "url": "https://github.com/symfony/polyfill-php83.git",
  10379. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  10380. },
  10381. "dist": {
  10382. "type": "zip",
  10383. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  10384. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  10385. "shasum": ""
  10386. },
  10387. "require": {
  10388. "php": ">=7.1",
  10389. "symfony/polyfill-php80": "^1.14"
  10390. },
  10391. "type": "library",
  10392. "extra": {
  10393. "thanks": {
  10394. "name": "symfony/polyfill",
  10395. "url": "https://github.com/symfony/polyfill"
  10396. }
  10397. },
  10398. "autoload": {
  10399. "files": [
  10400. "bootstrap.php"
  10401. ],
  10402. "psr-4": {
  10403. "Symfony\\Polyfill\\Php83\\": ""
  10404. },
  10405. "classmap": [
  10406. "Resources/stubs"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "MIT"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Nicolas Grekas",
  10416. "email": "p@tchwork.com"
  10417. },
  10418. {
  10419. "name": "Symfony Community",
  10420. "homepage": "https://symfony.com/contributors"
  10421. }
  10422. ],
  10423. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10424. "homepage": "https://symfony.com",
  10425. "keywords": [
  10426. "compatibility",
  10427. "polyfill",
  10428. "portable",
  10429. "shim"
  10430. ],
  10431. "support": {
  10432. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  10433. },
  10434. "funding": [
  10435. {
  10436. "url": "https://symfony.com/sponsor",
  10437. "type": "custom"
  10438. },
  10439. {
  10440. "url": "https://github.com/fabpot",
  10441. "type": "github"
  10442. },
  10443. {
  10444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10445. "type": "tidelift"
  10446. }
  10447. ],
  10448. "time": "2024-01-29T20:11:03+00:00"
  10449. },
  10450. {
  10451. "name": "symfony/process",
  10452. "version": "v6.4.8",
  10453. "source": {
  10454. "type": "git",
  10455. "url": "https://github.com/symfony/process.git",
  10456. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  10457. },
  10458. "dist": {
  10459. "type": "zip",
  10460. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10461. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  10462. "shasum": ""
  10463. },
  10464. "require": {
  10465. "php": ">=8.1"
  10466. },
  10467. "type": "library",
  10468. "autoload": {
  10469. "psr-4": {
  10470. "Symfony\\Component\\Process\\": ""
  10471. },
  10472. "exclude-from-classmap": [
  10473. "/Tests/"
  10474. ]
  10475. },
  10476. "notification-url": "https://packagist.org/downloads/",
  10477. "license": [
  10478. "MIT"
  10479. ],
  10480. "authors": [
  10481. {
  10482. "name": "Fabien Potencier",
  10483. "email": "fabien@symfony.com"
  10484. },
  10485. {
  10486. "name": "Symfony Community",
  10487. "homepage": "https://symfony.com/contributors"
  10488. }
  10489. ],
  10490. "description": "Executes commands in sub-processes",
  10491. "homepage": "https://symfony.com",
  10492. "support": {
  10493. "source": "https://github.com/symfony/process/tree/v6.4.8"
  10494. },
  10495. "funding": [
  10496. {
  10497. "url": "https://symfony.com/sponsor",
  10498. "type": "custom"
  10499. },
  10500. {
  10501. "url": "https://github.com/fabpot",
  10502. "type": "github"
  10503. },
  10504. {
  10505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10506. "type": "tidelift"
  10507. }
  10508. ],
  10509. "time": "2024-05-31T14:49:08+00:00"
  10510. },
  10511. {
  10512. "name": "symfony/stopwatch",
  10513. "version": "v6.4.8",
  10514. "source": {
  10515. "type": "git",
  10516. "url": "https://github.com/symfony/stopwatch.git",
  10517. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  10518. },
  10519. "dist": {
  10520. "type": "zip",
  10521. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  10522. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  10523. "shasum": ""
  10524. },
  10525. "require": {
  10526. "php": ">=8.1",
  10527. "symfony/service-contracts": "^2.5|^3"
  10528. },
  10529. "type": "library",
  10530. "autoload": {
  10531. "psr-4": {
  10532. "Symfony\\Component\\Stopwatch\\": ""
  10533. },
  10534. "exclude-from-classmap": [
  10535. "/Tests/"
  10536. ]
  10537. },
  10538. "notification-url": "https://packagist.org/downloads/",
  10539. "license": [
  10540. "MIT"
  10541. ],
  10542. "authors": [
  10543. {
  10544. "name": "Fabien Potencier",
  10545. "email": "fabien@symfony.com"
  10546. },
  10547. {
  10548. "name": "Symfony Community",
  10549. "homepage": "https://symfony.com/contributors"
  10550. }
  10551. ],
  10552. "description": "Provides a way to profile code",
  10553. "homepage": "https://symfony.com",
  10554. "support": {
  10555. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  10556. },
  10557. "funding": [
  10558. {
  10559. "url": "https://symfony.com/sponsor",
  10560. "type": "custom"
  10561. },
  10562. {
  10563. "url": "https://github.com/fabpot",
  10564. "type": "github"
  10565. },
  10566. {
  10567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10568. "type": "tidelift"
  10569. }
  10570. ],
  10571. "time": "2024-05-31T14:49:08+00:00"
  10572. },
  10573. {
  10574. "name": "theseer/tokenizer",
  10575. "version": "1.2.3",
  10576. "source": {
  10577. "type": "git",
  10578. "url": "https://github.com/theseer/tokenizer.git",
  10579. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10580. },
  10581. "dist": {
  10582. "type": "zip",
  10583. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10584. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10585. "shasum": ""
  10586. },
  10587. "require": {
  10588. "ext-dom": "*",
  10589. "ext-tokenizer": "*",
  10590. "ext-xmlwriter": "*",
  10591. "php": "^7.2 || ^8.0"
  10592. },
  10593. "type": "library",
  10594. "autoload": {
  10595. "classmap": [
  10596. "src/"
  10597. ]
  10598. },
  10599. "notification-url": "https://packagist.org/downloads/",
  10600. "license": [
  10601. "BSD-3-Clause"
  10602. ],
  10603. "authors": [
  10604. {
  10605. "name": "Arne Blankerts",
  10606. "email": "arne@blankerts.de",
  10607. "role": "Developer"
  10608. }
  10609. ],
  10610. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10611. "support": {
  10612. "issues": "https://github.com/theseer/tokenizer/issues",
  10613. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10614. },
  10615. "funding": [
  10616. {
  10617. "url": "https://github.com/theseer",
  10618. "type": "github"
  10619. }
  10620. ],
  10621. "time": "2024-03-03T12:36:25+00:00"
  10622. }
  10623. ],
  10624. "aliases": [],
  10625. "minimum-stability": "dev",
  10626. "stability-flags": {},
  10627. "prefer-stable": true,
  10628. "prefer-lowest": false,
  10629. "platform": {
  10630. "php": ">=8.1"
  10631. },
  10632. "platform-dev": {},
  10633. "plugin-api-version": "2.6.0"
  10634. }