composer.lock 378 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670
  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": "18f0eba83d85f976fd255237eb85f674",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "doctrine/annotations",
  80. "version": "2.0.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  89. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.10.28",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6.4 || ^7",
  104. "vimeo/psalm": "^4.30 || ^5.14"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  151. },
  152. "time": "2024-09-05T10:17:24+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  459. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.3"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2024-07-20T21:45:45+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.9.2",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  521. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  527. "guzzlehttp/psr7": "^2.7.0",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "guzzle/client-integration-tests": "3.0.2",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2024-07-24T11:22:20+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.4",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  647. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2024-10-17T10:06:22+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.7.0",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  730. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "0.9.0",
  746. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2024-07-18T11:15:46+00:00"
  834. },
  835. {
  836. "name": "hyperf/amqp",
  837. "version": "v3.1.42",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/amqp.git",
  841. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  846. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "doctrine/instantiator": "^1.2.0",
  851. "hyperf/codec": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/coroutine": "~3.1.0",
  854. "hyperf/pool": "~3.1.0",
  855. "hyperf/process": "~3.1.0",
  856. "hyperf/support": "~3.1.0",
  857. "hyperf/utils": "~3.1.0",
  858. "php": ">=8.1",
  859. "php-amqplib/php-amqplib": "^3.5",
  860. "psr/container": "^1.0 || ^2.0",
  861. "psr/event-dispatcher": "^1.0",
  862. "psr/log": "^1.0 || ^2.0 || ^3.0"
  863. },
  864. "suggest": {
  865. "hyperf/di": "Required to use annotations.",
  866. "hyperf/event": "Declare queue and start consumers automatically."
  867. },
  868. "type": "library",
  869. "extra": {
  870. "branch-alias": {
  871. "dev-master": "3.1-dev"
  872. },
  873. "hyperf": {
  874. "config": "Hyperf\\Amqp\\ConfigProvider"
  875. }
  876. },
  877. "autoload": {
  878. "psr-4": {
  879. "Hyperf\\Amqp\\": "src/"
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "MIT"
  885. ],
  886. "description": "A amqplib for hyperf.",
  887. "homepage": "https://hyperf.io",
  888. "keywords": [
  889. "AMQP",
  890. "hyperf",
  891. "php"
  892. ],
  893. "support": {
  894. "docs": "https://hyperf.wiki",
  895. "issues": "https://github.com/hyperf/hyperf/issues",
  896. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  897. "source": "https://github.com/hyperf/hyperf"
  898. },
  899. "funding": [
  900. {
  901. "url": "https://hyperf.wiki/#/zh-cn/donate",
  902. "type": "custom"
  903. },
  904. {
  905. "url": "https://opencollective.com/hyperf",
  906. "type": "open_collective"
  907. }
  908. ],
  909. "time": "2024-09-25T02:54:12+00:00"
  910. },
  911. {
  912. "name": "hyperf/cache",
  913. "version": "v3.1.43",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/hyperf/cache.git",
  917. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  922. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "hyperf/codec": "~3.1.0",
  927. "hyperf/collection": "~3.1.0",
  928. "hyperf/contract": "~3.1.0",
  929. "hyperf/support": "~3.1.0",
  930. "hyperf/utils": "~3.1.0",
  931. "php": ">=8.1",
  932. "psr/container": "^1.0 || ^2.0",
  933. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  934. },
  935. "suggest": {
  936. "hyperf/di": "Use cache annotations.",
  937. "hyperf/event": "Use listener to delete annotation cache."
  938. },
  939. "type": "library",
  940. "extra": {
  941. "branch-alias": {
  942. "dev-master": "3.1-dev"
  943. },
  944. "hyperf": {
  945. "config": "Hyperf\\Cache\\ConfigProvider"
  946. }
  947. },
  948. "autoload": {
  949. "psr-4": {
  950. "Hyperf\\Cache\\": "src/"
  951. }
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "description": "A cache component for hyperf.",
  958. "homepage": "https://hyperf.io",
  959. "keywords": [
  960. "cache",
  961. "hyperf",
  962. "php"
  963. ],
  964. "support": {
  965. "docs": "https://hyperf.wiki",
  966. "issues": "https://github.com/hyperf/hyperf/issues",
  967. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  968. "source": "https://github.com/hyperf/hyperf"
  969. },
  970. "funding": [
  971. {
  972. "url": "https://hyperf.wiki/#/zh-cn/donate",
  973. "type": "custom"
  974. },
  975. {
  976. "url": "https://opencollective.com/hyperf",
  977. "type": "open_collective"
  978. }
  979. ],
  980. "time": "2024-10-09T10:22:39+00:00"
  981. },
  982. {
  983. "name": "hyperf/code-parser",
  984. "version": "v3.1.42",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/hyperf/code-parser.git",
  988. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  993. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "hyperf/collection": "~3.1.0",
  998. "hyperf/stringable": "~3.1.0",
  999. "hyperf/support": "~3.1.0",
  1000. "php": ">=8.1"
  1001. },
  1002. "suggest": {
  1003. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1004. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1005. },
  1006. "type": "library",
  1007. "extra": {
  1008. "branch-alias": {
  1009. "dev-master": "3.1-dev"
  1010. }
  1011. },
  1012. "autoload": {
  1013. "psr-4": {
  1014. "Hyperf\\CodeParser\\": "src/"
  1015. }
  1016. },
  1017. "notification-url": "https://packagist.org/downloads/",
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "description": "A code parser component for Hyperf.",
  1022. "homepage": "https://hyperf.io",
  1023. "keywords": [
  1024. "code-parser",
  1025. "hyperf",
  1026. "php",
  1027. "swoole"
  1028. ],
  1029. "support": {
  1030. "docs": "https://hyperf.wiki",
  1031. "issues": "https://github.com/hyperf/hyperf/issues",
  1032. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1033. "source": "https://github.com/hyperf/hyperf"
  1034. },
  1035. "funding": [
  1036. {
  1037. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1038. "type": "custom"
  1039. },
  1040. {
  1041. "url": "https://opencollective.com/hyperf",
  1042. "type": "open_collective"
  1043. }
  1044. ],
  1045. "time": "2024-09-25T02:54:12+00:00"
  1046. },
  1047. {
  1048. "name": "hyperf/codec",
  1049. "version": "v3.1.42",
  1050. "source": {
  1051. "type": "git",
  1052. "url": "https://github.com/hyperf/codec.git",
  1053. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1054. },
  1055. "dist": {
  1056. "type": "zip",
  1057. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1058. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1059. "shasum": ""
  1060. },
  1061. "require": {
  1062. "ext-json": "*",
  1063. "ext-xml": "*",
  1064. "hyperf/contract": "~3.1.0",
  1065. "php": ">=8.1"
  1066. },
  1067. "suggest": {
  1068. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1069. },
  1070. "type": "library",
  1071. "extra": {
  1072. "branch-alias": {
  1073. "dev-master": "3.1-dev"
  1074. }
  1075. },
  1076. "autoload": {
  1077. "psr-4": {
  1078. "Hyperf\\Codec\\": "src/"
  1079. }
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "MIT"
  1084. ],
  1085. "description": "A codec component for Hyperf.",
  1086. "homepage": "https://hyperf.io",
  1087. "keywords": [
  1088. "codec",
  1089. "hyperf",
  1090. "php",
  1091. "swoole"
  1092. ],
  1093. "support": {
  1094. "docs": "https://hyperf.wiki",
  1095. "issues": "https://github.com/hyperf/hyperf/issues",
  1096. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1097. "source": "https://github.com/hyperf/hyperf"
  1098. },
  1099. "funding": [
  1100. {
  1101. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1102. "type": "custom"
  1103. },
  1104. {
  1105. "url": "https://opencollective.com/hyperf",
  1106. "type": "open_collective"
  1107. }
  1108. ],
  1109. "time": "2024-09-25T02:54:12+00:00"
  1110. },
  1111. {
  1112. "name": "hyperf/collection",
  1113. "version": "v3.1.47",
  1114. "source": {
  1115. "type": "git",
  1116. "url": "https://github.com/hyperf/collection.git",
  1117. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1118. },
  1119. "dist": {
  1120. "type": "zip",
  1121. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1122. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1123. "shasum": ""
  1124. },
  1125. "require": {
  1126. "hyperf/conditionable": "~3.1.0",
  1127. "hyperf/contract": "~3.1.0",
  1128. "hyperf/macroable": "~3.1.0",
  1129. "hyperf/stringable": "~3.1.0",
  1130. "php": ">=8.1"
  1131. },
  1132. "type": "library",
  1133. "extra": {
  1134. "branch-alias": {
  1135. "dev-master": "3.1-dev"
  1136. }
  1137. },
  1138. "autoload": {
  1139. "files": [
  1140. "src/Functions.php"
  1141. ],
  1142. "psr-4": {
  1143. "Hyperf\\Collection\\": "src/"
  1144. }
  1145. },
  1146. "notification-url": "https://packagist.org/downloads/",
  1147. "license": [
  1148. "MIT"
  1149. ],
  1150. "description": "Hyperf Collection package which come from illuminate/collections",
  1151. "homepage": "https://hyperf.io",
  1152. "keywords": [
  1153. "collection",
  1154. "hyperf",
  1155. "php",
  1156. "swoole"
  1157. ],
  1158. "support": {
  1159. "docs": "https://hyperf.wiki",
  1160. "issues": "https://github.com/hyperf/hyperf/issues",
  1161. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1162. "source": "https://github.com/hyperf/hyperf"
  1163. },
  1164. "funding": [
  1165. {
  1166. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1167. "type": "custom"
  1168. },
  1169. {
  1170. "url": "https://opencollective.com/hyperf",
  1171. "type": "open_collective"
  1172. }
  1173. ],
  1174. "time": "2024-11-28T01:51:55+00:00"
  1175. },
  1176. {
  1177. "name": "hyperf/command",
  1178. "version": "v3.1.42",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/hyperf/command.git",
  1182. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1187. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1188. "shasum": ""
  1189. },
  1190. "require": {
  1191. "hyperf/collection": "~3.1.0",
  1192. "hyperf/context": "~3.1.0",
  1193. "hyperf/contract": "~3.1.0",
  1194. "hyperf/coroutine": "~3.1.0",
  1195. "hyperf/di": "~3.1.0",
  1196. "hyperf/stringable": "~3.1.0",
  1197. "hyperf/support": "~3.1.0",
  1198. "hyperf/tappable": "~3.1.0",
  1199. "php": ">=8.1",
  1200. "psr/event-dispatcher": "^1.0",
  1201. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1202. },
  1203. "suggest": {
  1204. "hyperf/di": "Required to use annotations.",
  1205. "hyperf/event": "Required to use listeners."
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "3.1-dev"
  1211. },
  1212. "hyperf": {
  1213. "config": "Hyperf\\Command\\ConfigProvider"
  1214. }
  1215. },
  1216. "autoload": {
  1217. "psr-4": {
  1218. "Hyperf\\Command\\": "src/"
  1219. }
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "description": "Command for hyperf",
  1226. "keywords": [
  1227. "command",
  1228. "php",
  1229. "swoole"
  1230. ],
  1231. "support": {
  1232. "issues": "https://github.com/hyperf/command/issues",
  1233. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1234. },
  1235. "funding": [
  1236. {
  1237. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1238. "type": "custom"
  1239. },
  1240. {
  1241. "url": "https://opencollective.com/hyperf",
  1242. "type": "open_collective"
  1243. }
  1244. ],
  1245. "time": "2024-09-25T02:54:12+00:00"
  1246. },
  1247. {
  1248. "name": "hyperf/conditionable",
  1249. "version": "v3.1.42",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/hyperf/conditionable.git",
  1253. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1258. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1259. "shasum": ""
  1260. },
  1261. "require": {
  1262. "php": ">=8.1"
  1263. },
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "3.1-dev"
  1268. }
  1269. },
  1270. "autoload": {
  1271. "psr-4": {
  1272. "Hyperf\\Conditionable\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1280. "homepage": "https://hyperf.io",
  1281. "keywords": [
  1282. "conditionable",
  1283. "hyperf",
  1284. "php",
  1285. "swoole"
  1286. ],
  1287. "support": {
  1288. "docs": "https://hyperf.wiki",
  1289. "issues": "https://github.com/hyperf/hyperf/issues",
  1290. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1291. "source": "https://github.com/hyperf/hyperf"
  1292. },
  1293. "funding": [
  1294. {
  1295. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1296. "type": "custom"
  1297. },
  1298. {
  1299. "url": "https://opencollective.com/hyperf",
  1300. "type": "open_collective"
  1301. }
  1302. ],
  1303. "time": "2024-09-25T02:54:12+00:00"
  1304. },
  1305. {
  1306. "name": "hyperf/config",
  1307. "version": "v3.1.42",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/hyperf/config.git",
  1311. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1316. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1317. "shasum": ""
  1318. },
  1319. "require": {
  1320. "hyperf/collection": "~3.1.0",
  1321. "hyperf/contract": "~3.1.0",
  1322. "hyperf/support": "~3.1.0",
  1323. "php": ">=8.1",
  1324. "psr/container": "^1.0 || ^2.0",
  1325. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1326. },
  1327. "suggest": {
  1328. "hyperf/context": "Required to use config()",
  1329. "hyperf/di": "Allows using @Value annotation",
  1330. "hyperf/event": "Allows using @Value annotation",
  1331. "hyperf/framework": "Allows using @Value annotation",
  1332. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "branch-alias": {
  1337. "dev-master": "3.1-dev"
  1338. },
  1339. "hyperf": {
  1340. "config": "Hyperf\\Config\\ConfigProvider"
  1341. }
  1342. },
  1343. "autoload": {
  1344. "files": [
  1345. "./src/Functions.php"
  1346. ],
  1347. "psr-4": {
  1348. "Hyperf\\Config\\": "src/"
  1349. }
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "description": "An independent component that provides configuration container.",
  1356. "homepage": "https://hyperf.io",
  1357. "keywords": [
  1358. "config",
  1359. "configuration",
  1360. "hyperf",
  1361. "php",
  1362. "swoole"
  1363. ],
  1364. "support": {
  1365. "docs": "https://hyperf.wiki",
  1366. "issues": "https://github.com/hyperf/hyperf/issues",
  1367. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1368. "source": "https://github.com/hyperf/hyperf"
  1369. },
  1370. "funding": [
  1371. {
  1372. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1373. "type": "custom"
  1374. },
  1375. {
  1376. "url": "https://opencollective.com/hyperf",
  1377. "type": "open_collective"
  1378. }
  1379. ],
  1380. "time": "2024-09-25T02:54:12+00:00"
  1381. },
  1382. {
  1383. "name": "hyperf/config-center",
  1384. "version": "v3.1.42",
  1385. "source": {
  1386. "type": "git",
  1387. "url": "https://github.com/hyperf/config-center.git",
  1388. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1389. },
  1390. "dist": {
  1391. "type": "zip",
  1392. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1393. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1394. "shasum": ""
  1395. },
  1396. "require": {
  1397. "hyperf/support": "~3.1.0",
  1398. "php": ">=8.1"
  1399. },
  1400. "suggest": {
  1401. "hyperf/process": "^2.1"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Hyperf\\ConfigCenter\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "description": "The abstraction component of config center",
  1422. "homepage": "https://hyperf.io",
  1423. "keywords": [
  1424. "config-center",
  1425. "hyperf",
  1426. "php"
  1427. ],
  1428. "support": {
  1429. "docs": "https://hyperf.wiki",
  1430. "issues": "https://github.com/hyperf/hyperf/issues",
  1431. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1432. "source": "https://github.com/hyperf/hyperf"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1437. "type": "custom"
  1438. },
  1439. {
  1440. "url": "https://opencollective.com/hyperf",
  1441. "type": "open_collective"
  1442. }
  1443. ],
  1444. "time": "2024-09-25T02:54:12+00:00"
  1445. },
  1446. {
  1447. "name": "hyperf/config-nacos",
  1448. "version": "v3.1.42",
  1449. "source": {
  1450. "type": "git",
  1451. "url": "https://github.com/hyperf/config-nacos.git",
  1452. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1453. },
  1454. "dist": {
  1455. "type": "zip",
  1456. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1457. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1458. "shasum": ""
  1459. },
  1460. "require": {
  1461. "hyperf/codec": "~3.1.0",
  1462. "hyperf/config-center": "~3.1.0",
  1463. "hyperf/contract": "~3.1.0",
  1464. "hyperf/guzzle": "~3.1.0",
  1465. "hyperf/nacos": "~3.1.0",
  1466. "hyperf/support": "~3.1.0",
  1467. "hyperf/utils": "~3.1.0",
  1468. "jetbrains/phpstorm-attributes": "^1.0",
  1469. "php": ">=8.1"
  1470. },
  1471. "suggest": {
  1472. "ext-json": "*",
  1473. "ext-simplexml": "*",
  1474. "ext-yaml": "*",
  1475. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1476. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1477. "hyperf/process": "Required to use processes. (~2.2.0)"
  1478. },
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-master": "3.1-dev"
  1483. },
  1484. "hyperf": {
  1485. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1486. }
  1487. },
  1488. "autoload": {
  1489. "psr-4": {
  1490. "Hyperf\\ConfigNacos\\": "src/"
  1491. }
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "description": "A nacos adapter for config center component.",
  1498. "homepage": "https://hyperf.io",
  1499. "keywords": [
  1500. "hyperf",
  1501. "nacos",
  1502. "php",
  1503. "swoole"
  1504. ],
  1505. "support": {
  1506. "docs": "https://hyperf.wiki",
  1507. "issues": "https://github.com/hyperf/hyperf/issues",
  1508. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1509. "source": "https://github.com/hyperf/hyperf"
  1510. },
  1511. "funding": [
  1512. {
  1513. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1514. "type": "custom"
  1515. },
  1516. {
  1517. "url": "https://opencollective.com/hyperf",
  1518. "type": "open_collective"
  1519. }
  1520. ],
  1521. "time": "2024-09-25T02:54:12+00:00"
  1522. },
  1523. {
  1524. "name": "hyperf/constants",
  1525. "version": "v3.1.42",
  1526. "source": {
  1527. "type": "git",
  1528. "url": "https://github.com/hyperf/constants.git",
  1529. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1530. },
  1531. "dist": {
  1532. "type": "zip",
  1533. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1534. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1535. "shasum": ""
  1536. },
  1537. "require": {
  1538. "hyperf/di": "~3.1.0",
  1539. "hyperf/support": "~3.1.0",
  1540. "hyperf/utils": "~3.1.0",
  1541. "php": ">=8.1"
  1542. },
  1543. "suggest": {
  1544. "hyperf/translation": "Required to use translation."
  1545. },
  1546. "type": "library",
  1547. "extra": {
  1548. "branch-alias": {
  1549. "dev-master": "3.1-dev"
  1550. },
  1551. "hyperf": {
  1552. "config": "Hyperf\\Constants\\ConfigProvider"
  1553. }
  1554. },
  1555. "autoload": {
  1556. "psr-4": {
  1557. "Hyperf\\Constants\\": "src/"
  1558. }
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "MIT"
  1563. ],
  1564. "description": "A constants component for hyperf.",
  1565. "homepage": "https://hyperf.io",
  1566. "keywords": [
  1567. "constants",
  1568. "hyperf",
  1569. "php"
  1570. ],
  1571. "support": {
  1572. "docs": "https://hyperf.wiki",
  1573. "issues": "https://github.com/hyperf/hyperf/issues",
  1574. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1575. "source": "https://github.com/hyperf/hyperf"
  1576. },
  1577. "funding": [
  1578. {
  1579. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1580. "type": "custom"
  1581. },
  1582. {
  1583. "url": "https://opencollective.com/hyperf",
  1584. "type": "open_collective"
  1585. }
  1586. ],
  1587. "time": "2024-09-25T02:54:12+00:00"
  1588. },
  1589. {
  1590. "name": "hyperf/consul",
  1591. "version": "v3.1.42",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/hyperf/consul.git",
  1595. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1600. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1601. "shasum": ""
  1602. },
  1603. "require": {
  1604. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1605. "php": ">=8.1"
  1606. },
  1607. "type": "library",
  1608. "extra": {
  1609. "branch-alias": {
  1610. "dev-master": "3.1-dev"
  1611. },
  1612. "hyperf": {
  1613. "config": "Hyperf\\Consul\\ConfigProvider"
  1614. }
  1615. },
  1616. "autoload": {
  1617. "psr-4": {
  1618. "Hyperf\\Consul\\": "src/"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "description": "A Consul Client for Hyperf.",
  1626. "homepage": "https://hyperf.io",
  1627. "keywords": [
  1628. "consul",
  1629. "consul-client",
  1630. "hyperf",
  1631. "php",
  1632. "swoole"
  1633. ],
  1634. "support": {
  1635. "docs": "https://hyperf.wiki",
  1636. "issues": "https://github.com/hyperf/hyperf/issues",
  1637. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1638. "source": "https://github.com/hyperf/hyperf"
  1639. },
  1640. "funding": [
  1641. {
  1642. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1643. "type": "custom"
  1644. },
  1645. {
  1646. "url": "https://opencollective.com/hyperf",
  1647. "type": "open_collective"
  1648. }
  1649. ],
  1650. "time": "2024-09-25T02:54:12+00:00"
  1651. },
  1652. {
  1653. "name": "hyperf/context",
  1654. "version": "v3.1.42",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/hyperf/context.git",
  1658. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1663. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1664. "shasum": ""
  1665. },
  1666. "require": {
  1667. "hyperf/engine": "^2.0",
  1668. "php": ">=8.1"
  1669. },
  1670. "suggest": {
  1671. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1672. },
  1673. "type": "library",
  1674. "extra": {
  1675. "branch-alias": {
  1676. "dev-master": "3.1-dev"
  1677. }
  1678. },
  1679. "autoload": {
  1680. "psr-4": {
  1681. "Hyperf\\Context\\": "src/"
  1682. }
  1683. },
  1684. "notification-url": "https://packagist.org/downloads/",
  1685. "license": [
  1686. "MIT"
  1687. ],
  1688. "description": "A coroutine/application context library.",
  1689. "homepage": "https://hyperf.io",
  1690. "keywords": [
  1691. "Context",
  1692. "hyperf",
  1693. "php",
  1694. "swoole"
  1695. ],
  1696. "support": {
  1697. "docs": "https://hyperf.wiki",
  1698. "issues": "https://github.com/hyperf/hyperf/issues",
  1699. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1700. "source": "https://github.com/hyperf/hyperf"
  1701. },
  1702. "funding": [
  1703. {
  1704. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1705. "type": "custom"
  1706. },
  1707. {
  1708. "url": "https://opencollective.com/hyperf",
  1709. "type": "open_collective"
  1710. }
  1711. ],
  1712. "time": "2024-09-25T02:54:12+00:00"
  1713. },
  1714. {
  1715. "name": "hyperf/contract",
  1716. "version": "v3.1.42",
  1717. "source": {
  1718. "type": "git",
  1719. "url": "https://github.com/hyperf/contract.git",
  1720. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1721. },
  1722. "dist": {
  1723. "type": "zip",
  1724. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1725. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1726. "shasum": ""
  1727. },
  1728. "require": {
  1729. "php": ">=8.1"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "branch-alias": {
  1734. "dev-master": "3.1-dev"
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Hyperf\\Contract\\": "src/"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "description": "The contracts of Hyperf.",
  1747. "homepage": "https://hyperf.io",
  1748. "keywords": [
  1749. "hyperf",
  1750. "php",
  1751. "swoole"
  1752. ],
  1753. "support": {
  1754. "docs": "https://hyperf.wiki",
  1755. "issues": "https://github.com/hyperf/hyperf/issues",
  1756. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1757. "source": "https://github.com/hyperf/hyperf"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1762. "type": "custom"
  1763. },
  1764. {
  1765. "url": "https://opencollective.com/hyperf",
  1766. "type": "open_collective"
  1767. }
  1768. ],
  1769. "time": "2024-09-25T02:54:12+00:00"
  1770. },
  1771. {
  1772. "name": "hyperf/coordinator",
  1773. "version": "v3.1.42",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/hyperf/coordinator.git",
  1777. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1782. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "hyperf/engine": "^2.0",
  1787. "php": ">=8.1"
  1788. },
  1789. "type": "library",
  1790. "extra": {
  1791. "branch-alias": {
  1792. "dev-master": "3.1-dev"
  1793. }
  1794. },
  1795. "autoload": {
  1796. "files": [
  1797. "src/Functions.php"
  1798. ],
  1799. "psr-4": {
  1800. "Hyperf\\Coordinator\\": "src/"
  1801. }
  1802. },
  1803. "notification-url": "https://packagist.org/downloads/",
  1804. "license": [
  1805. "MIT"
  1806. ],
  1807. "description": "Hyperf Coordinator",
  1808. "homepage": "https://hyperf.io",
  1809. "keywords": [
  1810. "Coordinator",
  1811. "hyperf",
  1812. "php",
  1813. "swoole"
  1814. ],
  1815. "support": {
  1816. "docs": "https://hyperf.wiki",
  1817. "issues": "https://github.com/hyperf/hyperf/issues",
  1818. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1819. "source": "https://github.com/hyperf/hyperf"
  1820. },
  1821. "funding": [
  1822. {
  1823. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1824. "type": "custom"
  1825. },
  1826. {
  1827. "url": "https://opencollective.com/hyperf",
  1828. "type": "open_collective"
  1829. }
  1830. ],
  1831. "time": "2024-09-25T02:54:12+00:00"
  1832. },
  1833. {
  1834. "name": "hyperf/coroutine",
  1835. "version": "v3.1.42",
  1836. "source": {
  1837. "type": "git",
  1838. "url": "https://github.com/hyperf/coroutine.git",
  1839. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1840. },
  1841. "dist": {
  1842. "type": "zip",
  1843. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1844. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1845. "shasum": ""
  1846. },
  1847. "require": {
  1848. "hyperf/context": "~3.1.0",
  1849. "hyperf/contract": "~3.1.0",
  1850. "hyperf/engine": "^2.0",
  1851. "php": ">=8.1"
  1852. },
  1853. "type": "library",
  1854. "extra": {
  1855. "branch-alias": {
  1856. "dev-master": "3.1-dev"
  1857. }
  1858. },
  1859. "autoload": {
  1860. "files": [
  1861. "src/Functions.php"
  1862. ],
  1863. "psr-4": {
  1864. "Hyperf\\Coroutine\\": "src/"
  1865. }
  1866. },
  1867. "notification-url": "https://packagist.org/downloads/",
  1868. "license": [
  1869. "MIT"
  1870. ],
  1871. "description": "Hyperf Coroutine",
  1872. "homepage": "https://hyperf.io",
  1873. "keywords": [
  1874. "coroutine",
  1875. "hyperf",
  1876. "php",
  1877. "swoole"
  1878. ],
  1879. "support": {
  1880. "docs": "https://hyperf.wiki",
  1881. "issues": "https://github.com/hyperf/hyperf/issues",
  1882. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1883. "source": "https://github.com/hyperf/hyperf"
  1884. },
  1885. "funding": [
  1886. {
  1887. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1888. "type": "custom"
  1889. },
  1890. {
  1891. "url": "https://opencollective.com/hyperf",
  1892. "type": "open_collective"
  1893. }
  1894. ],
  1895. "time": "2024-09-25T02:54:12+00:00"
  1896. },
  1897. {
  1898. "name": "hyperf/database",
  1899. "version": "v3.1.47",
  1900. "source": {
  1901. "type": "git",
  1902. "url": "https://github.com/hyperf/database.git",
  1903. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d"
  1904. },
  1905. "dist": {
  1906. "type": "zip",
  1907. "url": "https://api.github.com/repos/hyperf/database/zipball/a53d2616486e0a77923542bb5cc363e207e5003d",
  1908. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d",
  1909. "shasum": ""
  1910. },
  1911. "require": {
  1912. "hyperf/code-parser": "~3.1.0",
  1913. "hyperf/collection": "~3.1.23",
  1914. "hyperf/conditionable": "~3.1.0",
  1915. "hyperf/macroable": "~3.1.0",
  1916. "hyperf/support": "~3.1.0",
  1917. "hyperf/tappable": "~3.1.0",
  1918. "hyperf/utils": "~3.1.0",
  1919. "nesbot/carbon": "^2.0",
  1920. "php": ">=8.1",
  1921. "psr/container": "^1.0 || ^2.0",
  1922. "psr/event-dispatcher": "^1.0"
  1923. },
  1924. "suggest": {
  1925. "doctrine/dbal": "Required to rename columns (^3.0).",
  1926. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1927. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1928. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1929. },
  1930. "type": "library",
  1931. "extra": {
  1932. "branch-alias": {
  1933. "dev-master": "3.1-dev"
  1934. }
  1935. },
  1936. "autoload": {
  1937. "psr-4": {
  1938. "Hyperf\\Database\\": "src/"
  1939. }
  1940. },
  1941. "notification-url": "https://packagist.org/downloads/",
  1942. "license": [
  1943. "MIT"
  1944. ],
  1945. "description": "A flexible database library.",
  1946. "homepage": "https://hyperf.io",
  1947. "keywords": [
  1948. "database",
  1949. "hyperf",
  1950. "php"
  1951. ],
  1952. "support": {
  1953. "docs": "https://hyperf.wiki",
  1954. "issues": "https://github.com/hyperf/hyperf/issues",
  1955. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1956. "source": "https://github.com/hyperf/hyperf"
  1957. },
  1958. "funding": [
  1959. {
  1960. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1961. "type": "custom"
  1962. },
  1963. {
  1964. "url": "https://opencollective.com/hyperf",
  1965. "type": "open_collective"
  1966. }
  1967. ],
  1968. "time": "2024-11-28T01:51:55+00:00"
  1969. },
  1970. {
  1971. "name": "hyperf/db-connection",
  1972. "version": "v3.1.44",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/hyperf/db-connection.git",
  1976. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  1981. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  1982. "shasum": ""
  1983. },
  1984. "require": {
  1985. "hyperf/database": "~3.1.0",
  1986. "hyperf/di": "~3.1.0",
  1987. "hyperf/framework": "~3.1.0",
  1988. "hyperf/model-listener": "~3.1.0",
  1989. "hyperf/pool": "~3.1.0",
  1990. "hyperf/support": "~3.1.0",
  1991. "hyperf/utils": "~3.1.0",
  1992. "php": ">=8.1",
  1993. "psr/container": "^1.0 || ^2.0"
  1994. },
  1995. "type": "library",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-master": "3.1-dev"
  1999. },
  2000. "hyperf": {
  2001. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Hyperf\\DbConnection\\": "src/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "description": "A hyperf db connection handler for hyperf/database.",
  2014. "homepage": "https://hyperf.io",
  2015. "keywords": [
  2016. "Connection",
  2017. "database",
  2018. "hyperf",
  2019. "php"
  2020. ],
  2021. "support": {
  2022. "docs": "https://hyperf.wiki",
  2023. "issues": "https://github.com/hyperf/hyperf/issues",
  2024. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2025. "source": "https://github.com/hyperf/hyperf"
  2026. },
  2027. "funding": [
  2028. {
  2029. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2030. "type": "custom"
  2031. },
  2032. {
  2033. "url": "https://opencollective.com/hyperf",
  2034. "type": "open_collective"
  2035. }
  2036. ],
  2037. "time": "2024-10-11T08:58:16+00:00"
  2038. },
  2039. {
  2040. "name": "hyperf/di",
  2041. "version": "v3.1.42",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/hyperf/di.git",
  2045. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2050. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "doctrine/instantiator": "^1.0",
  2055. "hyperf/code-parser": "~3.1.0",
  2056. "hyperf/pipeline": "~3.1.0",
  2057. "hyperf/stdlib": "~3.1.0",
  2058. "hyperf/support": "~3.1.0",
  2059. "nikic/php-parser": "^4.1",
  2060. "php": ">=8.1",
  2061. "php-di/phpdoc-reader": "^2.2",
  2062. "psr/container": "^1.0 || ^2.0",
  2063. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2064. "vlucas/phpdotenv": "^5.0"
  2065. },
  2066. "suggest": {
  2067. "ext-pcntl": "Required to scan annotations.",
  2068. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "branch-alias": {
  2073. "dev-master": "3.1-dev"
  2074. },
  2075. "hyperf": {
  2076. "config": "Hyperf\\Di\\ConfigProvider"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "psr-4": {
  2081. "Hyperf\\Di\\": "src/"
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "description": "A DI for Hyperf.",
  2089. "homepage": "https://hyperf.io",
  2090. "keywords": [
  2091. "annotation",
  2092. "di",
  2093. "hyperf",
  2094. "php",
  2095. "swoole"
  2096. ],
  2097. "support": {
  2098. "docs": "https://hyperf.wiki",
  2099. "issues": "https://github.com/hyperf/hyperf/issues",
  2100. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2101. "source": "https://github.com/hyperf/hyperf"
  2102. },
  2103. "funding": [
  2104. {
  2105. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2106. "type": "custom"
  2107. },
  2108. {
  2109. "url": "https://opencollective.com/hyperf",
  2110. "type": "open_collective"
  2111. }
  2112. ],
  2113. "time": "2024-09-25T02:54:12+00:00"
  2114. },
  2115. {
  2116. "name": "hyperf/dispatcher",
  2117. "version": "v3.1.42",
  2118. "source": {
  2119. "type": "git",
  2120. "url": "https://github.com/hyperf/dispatcher.git",
  2121. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2122. },
  2123. "dist": {
  2124. "type": "zip",
  2125. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2126. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2127. "shasum": ""
  2128. },
  2129. "require": {
  2130. "hyperf/contract": "~3.1.0",
  2131. "php": ">=8.1",
  2132. "psr/container": "^1.0 || ^2.0",
  2133. "psr/http-message": "^1.0 || ^2.0",
  2134. "psr/http-server-middleware": "^1.0"
  2135. },
  2136. "type": "library",
  2137. "extra": {
  2138. "branch-alias": {
  2139. "dev-master": "3.1-dev"
  2140. },
  2141. "hyperf": {
  2142. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2143. }
  2144. },
  2145. "autoload": {
  2146. "psr-4": {
  2147. "Hyperf\\Dispatcher\\": "src/"
  2148. }
  2149. },
  2150. "notification-url": "https://packagist.org/downloads/",
  2151. "license": [
  2152. "MIT"
  2153. ],
  2154. "description": "A HTTP Server for Hyperf.",
  2155. "homepage": "https://hyperf.io",
  2156. "keywords": [
  2157. "dispatcher",
  2158. "filter",
  2159. "hyperf",
  2160. "middleware",
  2161. "php",
  2162. "swoole"
  2163. ],
  2164. "support": {
  2165. "docs": "https://hyperf.wiki",
  2166. "issues": "https://github.com/hyperf/hyperf/issues",
  2167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2168. "source": "https://github.com/hyperf/hyperf"
  2169. },
  2170. "funding": [
  2171. {
  2172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2173. "type": "custom"
  2174. },
  2175. {
  2176. "url": "https://opencollective.com/hyperf",
  2177. "type": "open_collective"
  2178. }
  2179. ],
  2180. "time": "2024-09-25T02:54:12+00:00"
  2181. },
  2182. {
  2183. "name": "hyperf/engine",
  2184. "version": "v2.12.0",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/hyperf/engine.git",
  2188. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/hyperf/engine/zipball/f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2193. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "hyperf/engine-contract": "~1.11.0",
  2198. "php": ">=8.0"
  2199. },
  2200. "conflict": {
  2201. "ext-swoole": "<5.0"
  2202. },
  2203. "require-dev": {
  2204. "friendsofphp/php-cs-fixer": "^3.0",
  2205. "hyperf/guzzle": "^3.0",
  2206. "hyperf/http-message": "^3.0",
  2207. "mockery/mockery": "^1.5",
  2208. "phpstan/phpstan": "^1.0",
  2209. "phpunit/phpunit": "^9.4",
  2210. "swoole/ide-helper": "5.*"
  2211. },
  2212. "suggest": {
  2213. "ext-sockets": "*",
  2214. "ext-swoole": ">=5.0",
  2215. "hyperf/http-message": "Required to use ResponseEmitter.",
  2216. "psr/http-message": "Required to use WebSocket Frame."
  2217. },
  2218. "type": "library",
  2219. "extra": {
  2220. "branch-alias": {
  2221. "dev-master": "2.12-dev"
  2222. },
  2223. "hyperf": {
  2224. "config": "Hyperf\\Engine\\ConfigProvider"
  2225. }
  2226. },
  2227. "autoload": {
  2228. "files": [
  2229. "src/Functions.php"
  2230. ],
  2231. "psr-4": {
  2232. "Hyperf\\Engine\\": "src/"
  2233. }
  2234. },
  2235. "notification-url": "https://packagist.org/downloads/",
  2236. "license": [
  2237. "MIT"
  2238. ],
  2239. "description": "Coroutine engine provided by swoole.",
  2240. "keywords": [
  2241. "engine",
  2242. "hyperf",
  2243. "php",
  2244. "swoole"
  2245. ],
  2246. "support": {
  2247. "issues": "https://github.com/hyperf/engine/issues",
  2248. "source": "https://github.com/hyperf/engine/tree/v2.12.0"
  2249. },
  2250. "funding": [
  2251. {
  2252. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2253. "type": "custom"
  2254. },
  2255. {
  2256. "url": "https://opencollective.com/hyperf",
  2257. "type": "open_collective"
  2258. }
  2259. ],
  2260. "time": "2024-11-19T04:32:29+00:00"
  2261. },
  2262. {
  2263. "name": "hyperf/engine-contract",
  2264. "version": "v1.11.0",
  2265. "source": {
  2266. "type": "git",
  2267. "url": "https://github.com/hyperf/engine-contract.git",
  2268. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2269. },
  2270. "dist": {
  2271. "type": "zip",
  2272. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2273. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2274. "shasum": ""
  2275. },
  2276. "require": {
  2277. "php": ">=8.0"
  2278. },
  2279. "require-dev": {
  2280. "friendsofphp/php-cs-fixer": "^3.0",
  2281. "mockery/mockery": "^1.0",
  2282. "phpstan/phpstan": "^1.0",
  2283. "phpunit/phpunit": ">=7.0",
  2284. "psr/http-message": "^1.0",
  2285. "swoole/ide-helper": "^4.5"
  2286. },
  2287. "suggest": {
  2288. "psr/http-message": "Required to use WebSocket Frame."
  2289. },
  2290. "type": "library",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-master": "1.9-dev"
  2294. }
  2295. },
  2296. "autoload": {
  2297. "psr-4": {
  2298. "Hyperf\\Engine\\Contract\\": "src/"
  2299. }
  2300. },
  2301. "notification-url": "https://packagist.org/downloads/",
  2302. "license": [
  2303. "MIT"
  2304. ],
  2305. "description": "Contract for Coroutine Engine",
  2306. "keywords": [
  2307. "contract",
  2308. "coroutine",
  2309. "engine",
  2310. "hyperf",
  2311. "php"
  2312. ],
  2313. "support": {
  2314. "issues": "https://github.com/hyperf/engine-contract/issues",
  2315. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2316. },
  2317. "funding": [
  2318. {
  2319. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2320. "type": "custom"
  2321. },
  2322. {
  2323. "url": "https://opencollective.com/hyperf",
  2324. "type": "open_collective"
  2325. }
  2326. ],
  2327. "time": "2024-11-19T04:15:31+00:00"
  2328. },
  2329. {
  2330. "name": "hyperf/event",
  2331. "version": "v3.1.42",
  2332. "source": {
  2333. "type": "git",
  2334. "url": "https://github.com/hyperf/event.git",
  2335. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2336. },
  2337. "dist": {
  2338. "type": "zip",
  2339. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2340. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2341. "shasum": ""
  2342. },
  2343. "require": {
  2344. "hyperf/contract": "~3.1.0",
  2345. "hyperf/stdlib": "~3.1.0",
  2346. "php": ">=8.1",
  2347. "psr/event-dispatcher": "^1.0"
  2348. },
  2349. "suggest": {
  2350. "hyperf/di": "Required to use annotatioins."
  2351. },
  2352. "type": "library",
  2353. "extra": {
  2354. "branch-alias": {
  2355. "dev-master": "3.1-dev"
  2356. },
  2357. "hyperf": {
  2358. "config": "Hyperf\\Event\\ConfigProvider"
  2359. }
  2360. },
  2361. "autoload": {
  2362. "psr-4": {
  2363. "Hyperf\\Event\\": "src/"
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "description": "an event manager that implements PSR-14.",
  2371. "homepage": "https://hyperf.io",
  2372. "keywords": [
  2373. "event",
  2374. "hyperf",
  2375. "php",
  2376. "swoole"
  2377. ],
  2378. "support": {
  2379. "docs": "https://hyperf.wiki",
  2380. "issues": "https://github.com/hyperf/hyperf/issues",
  2381. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2382. "source": "https://github.com/hyperf/hyperf"
  2383. },
  2384. "funding": [
  2385. {
  2386. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2387. "type": "custom"
  2388. },
  2389. {
  2390. "url": "https://opencollective.com/hyperf",
  2391. "type": "open_collective"
  2392. }
  2393. ],
  2394. "time": "2024-09-25T02:54:12+00:00"
  2395. },
  2396. {
  2397. "name": "hyperf/exception-handler",
  2398. "version": "v3.1.42",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/hyperf/exception-handler.git",
  2402. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2407. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "hyperf/context": "~3.1.0",
  2412. "hyperf/contract": "~3.1.0",
  2413. "hyperf/dispatcher": "~3.1.0",
  2414. "hyperf/http-message": "~3.1.0",
  2415. "hyperf/stdlib": "~3.1.0",
  2416. "hyperf/support": "~3.1.0",
  2417. "php": ">=8.1",
  2418. "psr/container": "^1.0 || ^2.0",
  2419. "psr/http-message": "^1.0 || ^2.0",
  2420. "swow/psr7-plus": "^1.0"
  2421. },
  2422. "suggest": {
  2423. "hyperf/di": "Required to use #[ExceptionHandler]",
  2424. "hyperf/event": "Required to use listeners",
  2425. "hyperf/framework": "Required to use listeners",
  2426. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2427. },
  2428. "type": "library",
  2429. "extra": {
  2430. "branch-alias": {
  2431. "dev-master": "3.1-dev"
  2432. },
  2433. "hyperf": {
  2434. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2435. }
  2436. },
  2437. "autoload": {
  2438. "psr-4": {
  2439. "Hyperf\\ExceptionHandler\\": "src/"
  2440. }
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "MIT"
  2445. ],
  2446. "description": "Exception handler for hyperf",
  2447. "homepage": "https://hyperf.io",
  2448. "keywords": [
  2449. "exception-handler",
  2450. "php",
  2451. "swoole"
  2452. ],
  2453. "support": {
  2454. "docs": "https://hyperf.wiki",
  2455. "issues": "https://github.com/hyperf/hyperf/issues",
  2456. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2457. "source": "https://github.com/hyperf/hyperf"
  2458. },
  2459. "funding": [
  2460. {
  2461. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2462. "type": "custom"
  2463. },
  2464. {
  2465. "url": "https://opencollective.com/hyperf",
  2466. "type": "open_collective"
  2467. }
  2468. ],
  2469. "time": "2024-09-25T02:54:12+00:00"
  2470. },
  2471. {
  2472. "name": "hyperf/framework",
  2473. "version": "v3.1.42",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/hyperf/framework.git",
  2477. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2482. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2483. "shasum": ""
  2484. },
  2485. "require": {
  2486. "fig/http-message-util": "^1.1.2",
  2487. "hyperf/contract": "~3.1.0",
  2488. "hyperf/coordinator": "~3.1.0",
  2489. "hyperf/coroutine": "~3.1.0",
  2490. "php": ">=8.1",
  2491. "psr/container": "^1.0 || ^2.0",
  2492. "psr/event-dispatcher": "^1.0",
  2493. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2494. },
  2495. "suggest": {
  2496. "ext-swoole": "Required to use swoole engine.",
  2497. "hyperf/command": "Required to use Command annotation.",
  2498. "hyperf/di": "Required to use Command annotation.",
  2499. "hyperf/dispatcher": "Required to use BootApplication event.",
  2500. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-master": "3.1-dev"
  2506. },
  2507. "hyperf": {
  2508. "config": "Hyperf\\Framework\\ConfigProvider"
  2509. }
  2510. },
  2511. "autoload": {
  2512. "psr-4": {
  2513. "Hyperf\\Framework\\": "src/"
  2514. }
  2515. },
  2516. "notification-url": "https://packagist.org/downloads/",
  2517. "license": [
  2518. "MIT"
  2519. ],
  2520. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2521. "homepage": "https://hyperf.io",
  2522. "keywords": [
  2523. "Microservice",
  2524. "framework",
  2525. "hyperf",
  2526. "middleware",
  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-09-25T02:54:12+00:00"
  2547. },
  2548. {
  2549. "name": "hyperf/guzzle",
  2550. "version": "v3.1.42",
  2551. "source": {
  2552. "type": "git",
  2553. "url": "https://github.com/hyperf/guzzle.git",
  2554. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2555. },
  2556. "dist": {
  2557. "type": "zip",
  2558. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2559. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2560. "shasum": ""
  2561. },
  2562. "require": {
  2563. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2564. "php": ">=8.1",
  2565. "psr/container": "^1.0 || ^2.0",
  2566. "psr/http-message": "^1.0 || ^2.0"
  2567. },
  2568. "suggest": {
  2569. "ext-curl": "Required for CURL handler support",
  2570. "hyperf/pool": "Required to use pool handler."
  2571. },
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-master": "3.1-dev"
  2576. },
  2577. "hyperf": {
  2578. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2579. }
  2580. },
  2581. "autoload": {
  2582. "psr-4": {
  2583. "Hyperf\\Guzzle\\": "src/"
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "description": "Swoole coroutine handler for guzzle",
  2591. "keywords": [
  2592. "Guzzle",
  2593. "handler",
  2594. "php",
  2595. "swoole"
  2596. ],
  2597. "support": {
  2598. "issues": "https://github.com/hyperf/guzzle/issues",
  2599. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2600. },
  2601. "funding": [
  2602. {
  2603. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2604. "type": "custom"
  2605. },
  2606. {
  2607. "url": "https://opencollective.com/hyperf",
  2608. "type": "open_collective"
  2609. }
  2610. ],
  2611. "time": "2024-09-25T02:54:12+00:00"
  2612. },
  2613. {
  2614. "name": "hyperf/http-message",
  2615. "version": "v3.1.47",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/hyperf/http-message.git",
  2619. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/hyperf/http-message/zipball/53a7caa616ee7a196d2974348b1acbf75305bf7e",
  2624. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "hyperf/codec": "~3.1.0",
  2629. "hyperf/engine": "^2.11",
  2630. "hyperf/support": "~3.1.0",
  2631. "laminas/laminas-mime": "^2.7",
  2632. "php": ">=8.1",
  2633. "psr/http-message": "^1.0 || ^2.0",
  2634. "swow/psr7-plus": "^1.0"
  2635. },
  2636. "suggest": {
  2637. "psr/container": "Required to replace RequestParserInterface."
  2638. },
  2639. "type": "library",
  2640. "extra": {
  2641. "hyperf": {
  2642. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2643. },
  2644. "branch-alias": {
  2645. "dev-master": "3.1-dev"
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Hyperf\\HttpMessage\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "description": "microservice framework base on swoole",
  2658. "keywords": [
  2659. "http-message",
  2660. "hyperf",
  2661. "php",
  2662. "swoole"
  2663. ],
  2664. "support": {
  2665. "issues": "https://github.com/hyperf/http-message/issues",
  2666. "source": "https://github.com/hyperf/http-message/tree/v3.1.47"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2671. "type": "custom"
  2672. },
  2673. {
  2674. "url": "https://opencollective.com/hyperf",
  2675. "type": "open_collective"
  2676. }
  2677. ],
  2678. "time": "2024-11-28T02:09:19+00:00"
  2679. },
  2680. {
  2681. "name": "hyperf/http-server",
  2682. "version": "v3.1.42",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/hyperf/http-server.git",
  2686. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2691. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "hyperf/codec": "~3.1.0",
  2696. "hyperf/collection": "~3.1.0",
  2697. "hyperf/context": "~3.1.0",
  2698. "hyperf/contract": "~3.1.0",
  2699. "hyperf/coroutine": "~3.1.0",
  2700. "hyperf/dispatcher": "~3.1.0",
  2701. "hyperf/event": "~3.1.0",
  2702. "hyperf/exception-handler": "~3.1.0",
  2703. "hyperf/http-message": "~3.1.0",
  2704. "hyperf/macroable": "~3.1.0",
  2705. "hyperf/serializer": "~3.1.0",
  2706. "hyperf/server": "~3.1.0",
  2707. "hyperf/stdlib": "~3.1.0",
  2708. "hyperf/support": "~3.1.0",
  2709. "nikic/fast-route": "^1.3",
  2710. "php": ">=8.1",
  2711. "psr/container": "^1.0 || ^2.0",
  2712. "swow/psr7-plus": "^1.0"
  2713. },
  2714. "suggest": {
  2715. "hyperf/di": "Required to use annotations."
  2716. },
  2717. "type": "library",
  2718. "extra": {
  2719. "branch-alias": {
  2720. "dev-master": "3.1-dev"
  2721. },
  2722. "hyperf": {
  2723. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2724. }
  2725. },
  2726. "autoload": {
  2727. "psr-4": {
  2728. "Hyperf\\HttpServer\\": "src/"
  2729. }
  2730. },
  2731. "notification-url": "https://packagist.org/downloads/",
  2732. "license": [
  2733. "MIT"
  2734. ],
  2735. "description": "A HTTP Server for Hyperf.",
  2736. "homepage": "https://hyperf.io",
  2737. "keywords": [
  2738. "http",
  2739. "http-server",
  2740. "hyperf",
  2741. "php",
  2742. "swoole"
  2743. ],
  2744. "support": {
  2745. "docs": "https://hyperf.wiki",
  2746. "issues": "https://github.com/hyperf/hyperf/issues",
  2747. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2748. "source": "https://github.com/hyperf/hyperf"
  2749. },
  2750. "funding": [
  2751. {
  2752. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2753. "type": "custom"
  2754. },
  2755. {
  2756. "url": "https://opencollective.com/hyperf",
  2757. "type": "open_collective"
  2758. }
  2759. ],
  2760. "time": "2024-09-25T02:54:12+00:00"
  2761. },
  2762. {
  2763. "name": "hyperf/json-rpc",
  2764. "version": "v3.1.47",
  2765. "source": {
  2766. "type": "git",
  2767. "url": "https://github.com/hyperf/json-rpc.git",
  2768. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2769. },
  2770. "dist": {
  2771. "type": "zip",
  2772. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2773. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2774. "shasum": ""
  2775. },
  2776. "require": {
  2777. "hyperf/codec": "~3.1.0",
  2778. "hyperf/context": "~3.1.0",
  2779. "hyperf/contract": "~3.1.0",
  2780. "hyperf/engine": "^2.0",
  2781. "hyperf/http-message": "~3.1.0",
  2782. "hyperf/load-balancer": "~3.1.0",
  2783. "hyperf/rpc": "~3.1.0",
  2784. "hyperf/serializer": "~3.1.0",
  2785. "hyperf/support": "~3.1.0",
  2786. "hyperf/utils": "~3.1.0",
  2787. "php": ">=8.1",
  2788. "psr/container": "^1.0 || ^2.0",
  2789. "swow/psr7-plus": "^1.0"
  2790. },
  2791. "suggest": {
  2792. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2793. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2794. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2795. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2796. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "hyperf": {
  2801. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2802. },
  2803. "branch-alias": {
  2804. "dev-master": "3.1-dev"
  2805. }
  2806. },
  2807. "autoload": {
  2808. "psr-4": {
  2809. "Hyperf\\JsonRpc\\": "src/"
  2810. }
  2811. },
  2812. "notification-url": "https://packagist.org/downloads/",
  2813. "license": [
  2814. "MIT"
  2815. ],
  2816. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2817. "homepage": "https://hyperf.io",
  2818. "keywords": [
  2819. "hyperf",
  2820. "json-rpc",
  2821. "php",
  2822. "swoole"
  2823. ],
  2824. "support": {
  2825. "docs": "https://hyperf.wiki",
  2826. "issues": "https://github.com/hyperf/hyperf/issues",
  2827. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2828. "source": "https://github.com/hyperf/hyperf"
  2829. },
  2830. "funding": [
  2831. {
  2832. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2833. "type": "custom"
  2834. },
  2835. {
  2836. "url": "https://opencollective.com/hyperf",
  2837. "type": "open_collective"
  2838. }
  2839. ],
  2840. "time": "2024-11-28T01:51:55+00:00"
  2841. },
  2842. {
  2843. "name": "hyperf/load-balancer",
  2844. "version": "v3.1.42",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://github.com/hyperf/load-balancer.git",
  2848. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2853. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2854. "shasum": ""
  2855. },
  2856. "require": {
  2857. "hyperf/coordinator": "~3.1.0",
  2858. "hyperf/coroutine": "~3.1.0",
  2859. "markrogoyski/math-php": "^2.0",
  2860. "php": ">=8.1",
  2861. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2862. },
  2863. "type": "library",
  2864. "extra": {
  2865. "branch-alias": {
  2866. "dev-master": "3.1-dev"
  2867. },
  2868. "hyperf": {
  2869. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2870. }
  2871. },
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Hyperf\\LoadBalancer\\": "src/"
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "description": "A load balancer library for Hyperf.",
  2882. "homepage": "https://hyperf.io",
  2883. "keywords": [
  2884. "hyperf",
  2885. "load-balancer",
  2886. "php",
  2887. "swoole"
  2888. ],
  2889. "support": {
  2890. "docs": "https://hyperf.wiki",
  2891. "issues": "https://github.com/hyperf/hyperf/issues",
  2892. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2893. "source": "https://github.com/hyperf/hyperf"
  2894. },
  2895. "funding": [
  2896. {
  2897. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2898. "type": "custom"
  2899. },
  2900. {
  2901. "url": "https://opencollective.com/hyperf",
  2902. "type": "open_collective"
  2903. }
  2904. ],
  2905. "time": "2024-09-25T02:54:12+00:00"
  2906. },
  2907. {
  2908. "name": "hyperf/logger",
  2909. "version": "v3.1.42",
  2910. "source": {
  2911. "type": "git",
  2912. "url": "https://github.com/hyperf/logger.git",
  2913. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2914. },
  2915. "dist": {
  2916. "type": "zip",
  2917. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2918. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  2919. "shasum": ""
  2920. },
  2921. "require": {
  2922. "hyperf/contract": "~3.1.0",
  2923. "hyperf/support": "~3.1.0",
  2924. "hyperf/utils": "~3.1.0",
  2925. "monolog/monolog": "^2.7 || ^3.1",
  2926. "php": ">=8.1",
  2927. "psr/container": "^1.0 || ^2.0",
  2928. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2929. },
  2930. "type": "library",
  2931. "extra": {
  2932. "branch-alias": {
  2933. "dev-master": "3.1-dev"
  2934. },
  2935. "hyperf": {
  2936. "config": "Hyperf\\Logger\\ConfigProvider"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Hyperf\\Logger\\": "src/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "description": "A logger component for hyperf.",
  2949. "homepage": "https://hyperf.io",
  2950. "keywords": [
  2951. "hyperf",
  2952. "logger",
  2953. "php"
  2954. ],
  2955. "support": {
  2956. "docs": "https://hyperf.wiki",
  2957. "issues": "https://github.com/hyperf/hyperf/issues",
  2958. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2959. "source": "https://github.com/hyperf/hyperf"
  2960. },
  2961. "funding": [
  2962. {
  2963. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2964. "type": "custom"
  2965. },
  2966. {
  2967. "url": "https://opencollective.com/hyperf",
  2968. "type": "open_collective"
  2969. }
  2970. ],
  2971. "time": "2024-09-25T02:54:12+00:00"
  2972. },
  2973. {
  2974. "name": "hyperf/macroable",
  2975. "version": "v3.1.42",
  2976. "source": {
  2977. "type": "git",
  2978. "url": "https://github.com/hyperf/macroable.git",
  2979. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  2980. },
  2981. "dist": {
  2982. "type": "zip",
  2983. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  2984. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  2985. "shasum": ""
  2986. },
  2987. "require": {
  2988. "php": ">=8.1"
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "3.1-dev"
  2994. }
  2995. },
  2996. "autoload": {
  2997. "psr-4": {
  2998. "Hyperf\\Macroable\\": "src/"
  2999. }
  3000. },
  3001. "notification-url": "https://packagist.org/downloads/",
  3002. "license": [
  3003. "MIT"
  3004. ],
  3005. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3006. "homepage": "https://hyperf.io",
  3007. "keywords": [
  3008. "hyperf",
  3009. "macroable",
  3010. "php",
  3011. "swoole"
  3012. ],
  3013. "support": {
  3014. "docs": "https://hyperf.wiki",
  3015. "issues": "https://github.com/hyperf/hyperf/issues",
  3016. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3017. "source": "https://github.com/hyperf/hyperf"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://opencollective.com/hyperf",
  3026. "type": "open_collective"
  3027. }
  3028. ],
  3029. "time": "2024-09-25T02:54:12+00:00"
  3030. },
  3031. {
  3032. "name": "hyperf/memory",
  3033. "version": "v3.1.42",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/hyperf/memory.git",
  3037. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3042. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3043. "shasum": ""
  3044. },
  3045. "require": {
  3046. "php": ">=8.1"
  3047. },
  3048. "type": "library",
  3049. "extra": {
  3050. "branch-alias": {
  3051. "dev-master": "3.1-dev"
  3052. },
  3053. "hyperf": {
  3054. "config": "Hyperf\\Memory\\ConfigProvider"
  3055. }
  3056. },
  3057. "autoload": {
  3058. "psr-4": {
  3059. "Hyperf\\Memory\\": "src/"
  3060. }
  3061. },
  3062. "notification-url": "https://packagist.org/downloads/",
  3063. "license": [
  3064. "MIT"
  3065. ],
  3066. "description": "An independent component that use to operate and manage memory.",
  3067. "homepage": "https://hyperf.io",
  3068. "keywords": [
  3069. "hyperf",
  3070. "memory",
  3071. "php",
  3072. "swoole"
  3073. ],
  3074. "support": {
  3075. "docs": "https://hyperf.wiki",
  3076. "issues": "https://github.com/hyperf/hyperf/issues",
  3077. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3078. "source": "https://github.com/hyperf/hyperf"
  3079. },
  3080. "funding": [
  3081. {
  3082. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3083. "type": "custom"
  3084. },
  3085. {
  3086. "url": "https://opencollective.com/hyperf",
  3087. "type": "open_collective"
  3088. }
  3089. ],
  3090. "time": "2024-09-25T02:54:12+00:00"
  3091. },
  3092. {
  3093. "name": "hyperf/model-listener",
  3094. "version": "v3.1.42",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/hyperf/model-listener.git",
  3098. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3103. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3104. "shasum": ""
  3105. },
  3106. "require": {
  3107. "hyperf/contract": "~3.1.0",
  3108. "hyperf/database": "~3.1.0",
  3109. "hyperf/di": "~3.1.0",
  3110. "hyperf/event": "~3.1.0",
  3111. "hyperf/support": "~3.1.0",
  3112. "hyperf/utils": "~3.1.0",
  3113. "php": ">=8.1",
  3114. "psr/container": "^1.0 || ^2.0"
  3115. },
  3116. "type": "library",
  3117. "extra": {
  3118. "branch-alias": {
  3119. "dev-master": "3.1-dev"
  3120. },
  3121. "hyperf": {
  3122. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3123. }
  3124. },
  3125. "autoload": {
  3126. "psr-4": {
  3127. "Hyperf\\ModelListener\\": "src/"
  3128. }
  3129. },
  3130. "notification-url": "https://packagist.org/downloads/",
  3131. "license": [
  3132. "MIT"
  3133. ],
  3134. "description": "A model listener for Hyperf.",
  3135. "homepage": "https://hyperf.io",
  3136. "keywords": [
  3137. "hyperf",
  3138. "model-listener",
  3139. "php",
  3140. "swoole"
  3141. ],
  3142. "support": {
  3143. "docs": "https://hyperf.wiki",
  3144. "issues": "https://github.com/hyperf/hyperf/issues",
  3145. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3146. "source": "https://github.com/hyperf/hyperf"
  3147. },
  3148. "funding": [
  3149. {
  3150. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3151. "type": "custom"
  3152. },
  3153. {
  3154. "url": "https://opencollective.com/hyperf",
  3155. "type": "open_collective"
  3156. }
  3157. ],
  3158. "time": "2024-09-25T02:54:12+00:00"
  3159. },
  3160. {
  3161. "name": "hyperf/nacos",
  3162. "version": "v3.1.42",
  3163. "source": {
  3164. "type": "git",
  3165. "url": "https://github.com/hyperf/nacos.git",
  3166. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3167. },
  3168. "dist": {
  3169. "type": "zip",
  3170. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3171. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3172. "shasum": ""
  3173. },
  3174. "require": {
  3175. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3176. "hyperf/codec": "~3.1.0",
  3177. "hyperf/contract": "~3.1.0",
  3178. "hyperf/support": "~3.1.0",
  3179. "hyperf/utils": "~3.1.0",
  3180. "jetbrains/phpstorm-attributes": "^1.0",
  3181. "php": ">=8.1"
  3182. },
  3183. "type": "library",
  3184. "extra": {
  3185. "branch-alias": {
  3186. "dev-master": "3.1-dev"
  3187. },
  3188. "hyperf": {
  3189. "config": "Hyperf\\Nacos\\ConfigProvider"
  3190. }
  3191. },
  3192. "autoload": {
  3193. "psr-4": {
  3194. "Hyperf\\Nacos\\": "src/"
  3195. }
  3196. },
  3197. "notification-url": "https://packagist.org/downloads/",
  3198. "license": [
  3199. "MIT"
  3200. ],
  3201. "description": "Nacos SDK",
  3202. "keywords": [
  3203. "hyperf",
  3204. "nacos",
  3205. "php"
  3206. ],
  3207. "support": {
  3208. "issues": "https://github.com/hyperf/nacos/issues",
  3209. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3210. },
  3211. "funding": [
  3212. {
  3213. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3214. "type": "custom"
  3215. },
  3216. {
  3217. "url": "https://opencollective.com/hyperf",
  3218. "type": "open_collective"
  3219. }
  3220. ],
  3221. "time": "2024-09-25T02:54:12+00:00"
  3222. },
  3223. {
  3224. "name": "hyperf/pipeline",
  3225. "version": "v3.1.42",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/hyperf/pipeline.git",
  3229. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3234. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3235. "shasum": ""
  3236. },
  3237. "require": {
  3238. "php": ">=8.1",
  3239. "psr/container": "^1.0 || ^2.0"
  3240. },
  3241. "type": "library",
  3242. "extra": {
  3243. "branch-alias": {
  3244. "dev-master": "3.1-dev"
  3245. }
  3246. },
  3247. "autoload": {
  3248. "psr-4": {
  3249. "Hyperf\\Pipeline\\": "src/"
  3250. }
  3251. },
  3252. "notification-url": "https://packagist.org/downloads/",
  3253. "license": [
  3254. "MIT"
  3255. ],
  3256. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3257. "homepage": "https://hyperf.io",
  3258. "keywords": [
  3259. "hyperf",
  3260. "php",
  3261. "pipeline",
  3262. "swoole"
  3263. ],
  3264. "support": {
  3265. "docs": "https://hyperf.wiki",
  3266. "issues": "https://github.com/hyperf/hyperf/issues",
  3267. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3268. "source": "https://github.com/hyperf/hyperf"
  3269. },
  3270. "funding": [
  3271. {
  3272. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3273. "type": "custom"
  3274. },
  3275. {
  3276. "url": "https://opencollective.com/hyperf",
  3277. "type": "open_collective"
  3278. }
  3279. ],
  3280. "time": "2024-09-25T02:54:12+00:00"
  3281. },
  3282. {
  3283. "name": "hyperf/pool",
  3284. "version": "v3.1.42",
  3285. "source": {
  3286. "type": "git",
  3287. "url": "https://github.com/hyperf/pool.git",
  3288. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3289. },
  3290. "dist": {
  3291. "type": "zip",
  3292. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3293. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3294. "shasum": ""
  3295. },
  3296. "require": {
  3297. "hyperf/contract": "~3.1.0",
  3298. "hyperf/support": "~3.1.0",
  3299. "hyperf/utils": "~3.1.0",
  3300. "php": ">=8.1",
  3301. "psr/container": "^1.0 || ^2.0"
  3302. },
  3303. "suggest": {
  3304. "psr/event-dispatcher": "Required to use events."
  3305. },
  3306. "type": "library",
  3307. "extra": {
  3308. "branch-alias": {
  3309. "dev-master": "3.1-dev"
  3310. },
  3311. "hyperf": {
  3312. "config": "Hyperf\\Pool\\ConfigProvider"
  3313. }
  3314. },
  3315. "autoload": {
  3316. "psr-4": {
  3317. "Hyperf\\Pool\\": "src/"
  3318. }
  3319. },
  3320. "notification-url": "https://packagist.org/downloads/",
  3321. "license": [
  3322. "MIT"
  3323. ],
  3324. "description": "An independent universal connection pool component.",
  3325. "homepage": "https://hyperf.io",
  3326. "keywords": [
  3327. "connection-pool",
  3328. "hyperf",
  3329. "php",
  3330. "swoole"
  3331. ],
  3332. "support": {
  3333. "docs": "https://hyperf.wiki",
  3334. "issues": "https://github.com/hyperf/hyperf/issues",
  3335. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3336. "source": "https://github.com/hyperf/hyperf"
  3337. },
  3338. "funding": [
  3339. {
  3340. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3341. "type": "custom"
  3342. },
  3343. {
  3344. "url": "https://opencollective.com/hyperf",
  3345. "type": "open_collective"
  3346. }
  3347. ],
  3348. "time": "2024-09-25T02:54:12+00:00"
  3349. },
  3350. {
  3351. "name": "hyperf/process",
  3352. "version": "v3.1.42",
  3353. "source": {
  3354. "type": "git",
  3355. "url": "https://github.com/hyperf/process.git",
  3356. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3357. },
  3358. "dist": {
  3359. "type": "zip",
  3360. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3361. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3362. "shasum": ""
  3363. },
  3364. "require": {
  3365. "hyperf/contract": "~3.1.0",
  3366. "hyperf/support": "~3.1.0",
  3367. "hyperf/utils": "~3.1.0",
  3368. "php": ">=8.1",
  3369. "psr/container": "^1.0 || ^2.0",
  3370. "psr/event-dispatcher": "^1.0"
  3371. },
  3372. "suggest": {
  3373. "hyperf/di": "Required to use annotations.",
  3374. "hyperf/event": "Required to dump the message before and after process.",
  3375. "hyperf/framework": "Required to use BootProcessListener."
  3376. },
  3377. "type": "library",
  3378. "extra": {
  3379. "hyperf": {
  3380. "config": "Hyperf\\Process\\ConfigProvider"
  3381. },
  3382. "branch-alias": {
  3383. "dev-master": "3.1-dev"
  3384. }
  3385. },
  3386. "autoload": {
  3387. "psr-4": {
  3388. "Hyperf\\Process\\": "src/"
  3389. }
  3390. },
  3391. "notification-url": "https://packagist.org/downloads/",
  3392. "license": [
  3393. "MIT"
  3394. ],
  3395. "description": "A process component for hyperf.",
  3396. "homepage": "https://hyperf.io",
  3397. "keywords": [
  3398. "hyperf",
  3399. "php",
  3400. "process"
  3401. ],
  3402. "support": {
  3403. "docs": "https://hyperf.wiki",
  3404. "issues": "https://github.com/hyperf/hyperf/issues",
  3405. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3406. "source": "https://github.com/hyperf/hyperf"
  3407. },
  3408. "funding": [
  3409. {
  3410. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3411. "type": "custom"
  3412. },
  3413. {
  3414. "url": "https://opencollective.com/hyperf",
  3415. "type": "open_collective"
  3416. }
  3417. ],
  3418. "time": "2024-09-25T02:54:12+00:00"
  3419. },
  3420. {
  3421. "name": "hyperf/redis",
  3422. "version": "v3.1.42",
  3423. "source": {
  3424. "type": "git",
  3425. "url": "https://github.com/hyperf/redis.git",
  3426. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3427. },
  3428. "dist": {
  3429. "type": "zip",
  3430. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3431. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3432. "shasum": ""
  3433. },
  3434. "require": {
  3435. "ext-redis": "^5.0 || ^6.0",
  3436. "hyperf/contract": "~3.1.0",
  3437. "hyperf/pool": "~3.1.0",
  3438. "hyperf/support": "~3.1.0",
  3439. "hyperf/tappable": "~3.1.0",
  3440. "hyperf/utils": "~3.1.0",
  3441. "php": ">=8.1",
  3442. "psr/container": "^1.0 || ^2.0"
  3443. },
  3444. "suggest": {
  3445. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3446. "hyperf/di": "Create the RedisPool via dependency injection."
  3447. },
  3448. "type": "library",
  3449. "extra": {
  3450. "branch-alias": {
  3451. "dev-master": "3.1-dev"
  3452. },
  3453. "hyperf": {
  3454. "config": "Hyperf\\Redis\\ConfigProvider"
  3455. }
  3456. },
  3457. "autoload": {
  3458. "psr-4": {
  3459. "Hyperf\\Redis\\": "src/"
  3460. }
  3461. },
  3462. "notification-url": "https://packagist.org/downloads/",
  3463. "license": [
  3464. "MIT"
  3465. ],
  3466. "description": "A redis component for hyperf.",
  3467. "homepage": "https://hyperf.io",
  3468. "keywords": [
  3469. "hyperf",
  3470. "php",
  3471. "pool",
  3472. "redis"
  3473. ],
  3474. "support": {
  3475. "docs": "https://hyperf.wiki",
  3476. "issues": "https://github.com/hyperf/hyperf/issues",
  3477. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3478. "source": "https://github.com/hyperf/hyperf"
  3479. },
  3480. "funding": [
  3481. {
  3482. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3483. "type": "custom"
  3484. },
  3485. {
  3486. "url": "https://opencollective.com/hyperf",
  3487. "type": "open_collective"
  3488. }
  3489. ],
  3490. "time": "2024-09-25T02:54:12+00:00"
  3491. },
  3492. {
  3493. "name": "hyperf/rpc",
  3494. "version": "v3.1.42",
  3495. "source": {
  3496. "type": "git",
  3497. "url": "https://github.com/hyperf/rpc.git",
  3498. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3499. },
  3500. "dist": {
  3501. "type": "zip",
  3502. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3503. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3504. "shasum": ""
  3505. },
  3506. "require": {
  3507. "hyperf/codec": "~3.1.0",
  3508. "hyperf/contract": "~3.1.0",
  3509. "hyperf/support": "~3.1.0",
  3510. "jetbrains/phpstorm-attributes": "^1.0",
  3511. "php": ">=8.1"
  3512. },
  3513. "type": "library",
  3514. "extra": {
  3515. "branch-alias": {
  3516. "dev-master": "3.1-dev"
  3517. },
  3518. "hyperf": []
  3519. },
  3520. "autoload": {
  3521. "psr-4": {
  3522. "Hyperf\\Rpc\\": "src/"
  3523. }
  3524. },
  3525. "notification-url": "https://packagist.org/downloads/",
  3526. "license": [
  3527. "MIT"
  3528. ],
  3529. "description": "A rpc basic library for Hyperf.",
  3530. "homepage": "https://hyperf.io",
  3531. "keywords": [
  3532. "hyperf",
  3533. "php",
  3534. "rpc",
  3535. "swoole"
  3536. ],
  3537. "support": {
  3538. "docs": "https://hyperf.wiki",
  3539. "issues": "https://github.com/hyperf/hyperf/issues",
  3540. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3541. "source": "https://github.com/hyperf/hyperf"
  3542. },
  3543. "funding": [
  3544. {
  3545. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3546. "type": "custom"
  3547. },
  3548. {
  3549. "url": "https://opencollective.com/hyperf",
  3550. "type": "open_collective"
  3551. }
  3552. ],
  3553. "time": "2024-09-25T02:54:12+00:00"
  3554. },
  3555. {
  3556. "name": "hyperf/rpc-server",
  3557. "version": "v3.1.42",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/hyperf/rpc-server.git",
  3561. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3566. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "hyperf/http-server": "~3.1.0",
  3571. "hyperf/rpc": "~3.1.0",
  3572. "php": ">=8.1"
  3573. },
  3574. "suggest": {
  3575. "hyperf/di": "Required to use annotations."
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "branch-alias": {
  3580. "dev-master": "3.1-dev"
  3581. },
  3582. "hyperf": {
  3583. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3584. }
  3585. },
  3586. "autoload": {
  3587. "psr-4": {
  3588. "Hyperf\\RpcServer\\": "src/"
  3589. }
  3590. },
  3591. "notification-url": "https://packagist.org/downloads/",
  3592. "license": [
  3593. "MIT"
  3594. ],
  3595. "description": "An abstract rpc server component for Hyperf.",
  3596. "homepage": "https://hyperf.io",
  3597. "keywords": [
  3598. "hyperf",
  3599. "php",
  3600. "rpc",
  3601. "rpc-server",
  3602. "swoole"
  3603. ],
  3604. "support": {
  3605. "docs": "https://hyperf.wiki",
  3606. "issues": "https://github.com/hyperf/hyperf/issues",
  3607. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3608. "source": "https://github.com/hyperf/hyperf"
  3609. },
  3610. "funding": [
  3611. {
  3612. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3613. "type": "custom"
  3614. },
  3615. {
  3616. "url": "https://opencollective.com/hyperf",
  3617. "type": "open_collective"
  3618. }
  3619. ],
  3620. "time": "2024-09-25T02:54:12+00:00"
  3621. },
  3622. {
  3623. "name": "hyperf/serializer",
  3624. "version": "v3.1.42",
  3625. "source": {
  3626. "type": "git",
  3627. "url": "https://github.com/hyperf/serializer.git",
  3628. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3629. },
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3633. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3634. "shasum": ""
  3635. },
  3636. "require": {
  3637. "hyperf/contract": "~3.1.0",
  3638. "php": ">=8.1"
  3639. },
  3640. "suggest": {
  3641. "hyperf/di": "Required to use ExceptionNormalizer",
  3642. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3643. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "branch-alias": {
  3648. "dev-master": "3.1-dev"
  3649. },
  3650. "hyperf": {
  3651. "config": "Hyperf\\Serializer\\ConfigProvider"
  3652. }
  3653. },
  3654. "autoload": {
  3655. "psr-4": {
  3656. "Hyperf\\Serializer\\": "src/"
  3657. }
  3658. },
  3659. "notification-url": "https://packagist.org/downloads/",
  3660. "license": [
  3661. "MIT"
  3662. ],
  3663. "description": "A serializer component for Hyperf.",
  3664. "homepage": "https://hyperf.io",
  3665. "keywords": [
  3666. "hyperf",
  3667. "php",
  3668. "swoole",
  3669. "tappable"
  3670. ],
  3671. "support": {
  3672. "docs": "https://hyperf.wiki",
  3673. "issues": "https://github.com/hyperf/hyperf/issues",
  3674. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3675. "source": "https://github.com/hyperf/hyperf"
  3676. },
  3677. "funding": [
  3678. {
  3679. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3680. "type": "custom"
  3681. },
  3682. {
  3683. "url": "https://opencollective.com/hyperf",
  3684. "type": "open_collective"
  3685. }
  3686. ],
  3687. "time": "2024-09-25T02:54:12+00:00"
  3688. },
  3689. {
  3690. "name": "hyperf/server",
  3691. "version": "v3.1.42",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/hyperf/server.git",
  3695. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3700. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3701. "shasum": ""
  3702. },
  3703. "require": {
  3704. "hyperf/contract": "~3.1.0",
  3705. "hyperf/coordinator": "~3.1.0",
  3706. "hyperf/engine": "^2.8",
  3707. "hyperf/support": "~3.1.0",
  3708. "hyperf/tappable": "~3.1.0",
  3709. "php": ">=8.1",
  3710. "psr/container": "^1.0 || ^2.0",
  3711. "psr/event-dispatcher": "^1.0",
  3712. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3713. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3714. },
  3715. "suggest": {
  3716. "hyperf/event": "Dump the info after server start.",
  3717. "hyperf/framework": "Dump the info after server start."
  3718. },
  3719. "type": "library",
  3720. "extra": {
  3721. "branch-alias": {
  3722. "dev-master": "3.1-dev"
  3723. },
  3724. "hyperf": {
  3725. "config": "Hyperf\\Server\\ConfigProvider"
  3726. }
  3727. },
  3728. "autoload": {
  3729. "psr-4": {
  3730. "Hyperf\\Server\\": "src/"
  3731. }
  3732. },
  3733. "notification-url": "https://packagist.org/downloads/",
  3734. "license": [
  3735. "MIT"
  3736. ],
  3737. "description": "A base server library for Hyperf.",
  3738. "homepage": "https://hyperf.io",
  3739. "keywords": [
  3740. "hyperf",
  3741. "php",
  3742. "server",
  3743. "swoole"
  3744. ],
  3745. "support": {
  3746. "docs": "https://hyperf.wiki",
  3747. "issues": "https://github.com/hyperf/hyperf/issues",
  3748. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3749. "source": "https://github.com/hyperf/hyperf"
  3750. },
  3751. "funding": [
  3752. {
  3753. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3754. "type": "custom"
  3755. },
  3756. {
  3757. "url": "https://opencollective.com/hyperf",
  3758. "type": "open_collective"
  3759. }
  3760. ],
  3761. "time": "2024-09-25T02:54:12+00:00"
  3762. },
  3763. {
  3764. "name": "hyperf/service-governance",
  3765. "version": "v3.1.42",
  3766. "source": {
  3767. "type": "git",
  3768. "url": "https://github.com/hyperf/service-governance.git",
  3769. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3770. },
  3771. "dist": {
  3772. "type": "zip",
  3773. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3774. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3775. "shasum": ""
  3776. },
  3777. "require": {
  3778. "hyperf/contract": "~3.1.0",
  3779. "hyperf/support": "~3.1.0",
  3780. "jetbrains/phpstorm-attributes": "^1.0",
  3781. "php": ">=8.1"
  3782. },
  3783. "suggest": {
  3784. "hyperf/event": "Required to use RegisterServiceListener.",
  3785. "hyperf/framework": "Required to use RegisterServiceListener.",
  3786. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3787. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3788. },
  3789. "type": "library",
  3790. "extra": {
  3791. "branch-alias": {
  3792. "dev-master": "3.1-dev"
  3793. },
  3794. "hyperf": {
  3795. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3796. }
  3797. },
  3798. "autoload": {
  3799. "psr-4": {
  3800. "Hyperf\\ServiceGovernance\\": "src/"
  3801. }
  3802. },
  3803. "notification-url": "https://packagist.org/downloads/",
  3804. "license": [
  3805. "MIT"
  3806. ],
  3807. "description": "A service governance component for Hyperf.",
  3808. "homepage": "https://hyperf.io",
  3809. "keywords": [
  3810. "hyperf",
  3811. "php",
  3812. "service-governance",
  3813. "swoole"
  3814. ],
  3815. "support": {
  3816. "docs": "https://hyperf.wiki",
  3817. "issues": "https://github.com/hyperf/hyperf/issues",
  3818. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3819. "source": "https://github.com/hyperf/hyperf"
  3820. },
  3821. "funding": [
  3822. {
  3823. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3824. "type": "custom"
  3825. },
  3826. {
  3827. "url": "https://opencollective.com/hyperf",
  3828. "type": "open_collective"
  3829. }
  3830. ],
  3831. "time": "2024-09-25T02:54:12+00:00"
  3832. },
  3833. {
  3834. "name": "hyperf/service-governance-consul",
  3835. "version": "v3.1.42",
  3836. "source": {
  3837. "type": "git",
  3838. "url": "https://github.com/hyperf/service-governance-consul.git",
  3839. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3840. },
  3841. "dist": {
  3842. "type": "zip",
  3843. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3844. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3845. "shasum": ""
  3846. },
  3847. "require": {
  3848. "hyperf/consul": "~3.1.0",
  3849. "hyperf/contract": "~3.1.0",
  3850. "hyperf/service-governance": "~3.1.0",
  3851. "hyperf/support": "~3.1.0",
  3852. "hyperf/utils": "~3.1.0",
  3853. "php": ">=8.1"
  3854. },
  3855. "type": "library",
  3856. "extra": {
  3857. "branch-alias": {
  3858. "dev-master": "3.1-dev"
  3859. },
  3860. "hyperf": {
  3861. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3862. }
  3863. },
  3864. "autoload": {
  3865. "psr-4": {
  3866. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3867. }
  3868. },
  3869. "notification-url": "https://packagist.org/downloads/",
  3870. "license": [
  3871. "MIT"
  3872. ],
  3873. "description": "A consul adapter for service governance.",
  3874. "homepage": "https://hyperf.io",
  3875. "keywords": [
  3876. "consul-adapter",
  3877. "hyperf",
  3878. "php",
  3879. "service-governance",
  3880. "swoole"
  3881. ],
  3882. "support": {
  3883. "docs": "https://hyperf.wiki",
  3884. "issues": "https://github.com/hyperf/hyperf/issues",
  3885. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3886. "source": "https://github.com/hyperf/hyperf"
  3887. },
  3888. "funding": [
  3889. {
  3890. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3891. "type": "custom"
  3892. },
  3893. {
  3894. "url": "https://opencollective.com/hyperf",
  3895. "type": "open_collective"
  3896. }
  3897. ],
  3898. "time": "2024-09-25T02:54:12+00:00"
  3899. },
  3900. {
  3901. "name": "hyperf/service-governance-nacos",
  3902. "version": "v3.1.42",
  3903. "source": {
  3904. "type": "git",
  3905. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3906. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  3907. },
  3908. "dist": {
  3909. "type": "zip",
  3910. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  3911. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  3912. "shasum": ""
  3913. },
  3914. "require": {
  3915. "hyperf/codec": "~3.1.0",
  3916. "hyperf/contract": "~3.1.0",
  3917. "hyperf/nacos": "~3.1.0",
  3918. "hyperf/service-governance": "~3.1.0",
  3919. "hyperf/support": "~3.1.0",
  3920. "hyperf/utils": "~3.1.0",
  3921. "php": ">=8.1"
  3922. },
  3923. "type": "library",
  3924. "extra": {
  3925. "branch-alias": {
  3926. "dev-master": "3.1-dev"
  3927. },
  3928. "hyperf": {
  3929. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3930. }
  3931. },
  3932. "autoload": {
  3933. "psr-4": {
  3934. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3935. }
  3936. },
  3937. "notification-url": "https://packagist.org/downloads/",
  3938. "license": [
  3939. "MIT"
  3940. ],
  3941. "description": "A nacos adapter for service governance.",
  3942. "homepage": "https://hyperf.io",
  3943. "keywords": [
  3944. "hyperf",
  3945. "nacos-adapter",
  3946. "php",
  3947. "service-governance",
  3948. "swoole"
  3949. ],
  3950. "support": {
  3951. "docs": "https://hyperf.wiki",
  3952. "issues": "https://github.com/hyperf/hyperf/issues",
  3953. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3954. "source": "https://github.com/hyperf/hyperf"
  3955. },
  3956. "funding": [
  3957. {
  3958. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3959. "type": "custom"
  3960. },
  3961. {
  3962. "url": "https://opencollective.com/hyperf",
  3963. "type": "open_collective"
  3964. }
  3965. ],
  3966. "time": "2024-09-25T02:54:12+00:00"
  3967. },
  3968. {
  3969. "name": "hyperf/stdlib",
  3970. "version": "v3.1.42",
  3971. "source": {
  3972. "type": "git",
  3973. "url": "https://github.com/hyperf/stdlib.git",
  3974. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  3975. },
  3976. "dist": {
  3977. "type": "zip",
  3978. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3979. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3980. "shasum": ""
  3981. },
  3982. "require": {
  3983. "php": ">=8.1"
  3984. },
  3985. "type": "library",
  3986. "extra": {
  3987. "branch-alias": {
  3988. "dev-master": "3.1-dev"
  3989. }
  3990. },
  3991. "autoload": {
  3992. "psr-4": {
  3993. "Hyperf\\Stdlib\\": "src/"
  3994. }
  3995. },
  3996. "notification-url": "https://packagist.org/downloads/",
  3997. "license": [
  3998. "MIT"
  3999. ],
  4000. "description": "A stdlib component for Hyperf.",
  4001. "homepage": "https://hyperf.io",
  4002. "keywords": [
  4003. "hyperf",
  4004. "php",
  4005. "stdlib",
  4006. "swoole"
  4007. ],
  4008. "support": {
  4009. "docs": "https://hyperf.wiki",
  4010. "issues": "https://github.com/hyperf/hyperf/issues",
  4011. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4012. "source": "https://github.com/hyperf/hyperf"
  4013. },
  4014. "funding": [
  4015. {
  4016. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4017. "type": "custom"
  4018. },
  4019. {
  4020. "url": "https://opencollective.com/hyperf",
  4021. "type": "open_collective"
  4022. }
  4023. ],
  4024. "time": "2024-09-25T02:54:12+00:00"
  4025. },
  4026. {
  4027. "name": "hyperf/stringable",
  4028. "version": "v3.1.43",
  4029. "source": {
  4030. "type": "git",
  4031. "url": "https://github.com/hyperf/stringable.git",
  4032. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4033. },
  4034. "dist": {
  4035. "type": "zip",
  4036. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4037. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4038. "shasum": ""
  4039. },
  4040. "require": {
  4041. "ext-mbstring": "*",
  4042. "hyperf/collection": "~3.1.0",
  4043. "hyperf/conditionable": "~3.1.0",
  4044. "hyperf/macroable": "~3.1.0",
  4045. "hyperf/tappable": "~3.1.0",
  4046. "php": ">=8.1"
  4047. },
  4048. "suggest": {
  4049. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4050. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4051. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4052. },
  4053. "type": "library",
  4054. "extra": {
  4055. "branch-alias": {
  4056. "dev-master": "3.1-dev"
  4057. }
  4058. },
  4059. "autoload": {
  4060. "files": [
  4061. "src/Functions.php"
  4062. ],
  4063. "psr-4": {
  4064. "Hyperf\\Stringable\\": "src/"
  4065. }
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "description": "Hyperf Stringable package which come from illuminate/support",
  4072. "homepage": "https://hyperf.io",
  4073. "keywords": [
  4074. "hyperf",
  4075. "php",
  4076. "stringable",
  4077. "swoole"
  4078. ],
  4079. "support": {
  4080. "docs": "https://hyperf.wiki",
  4081. "issues": "https://github.com/hyperf/hyperf/issues",
  4082. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4083. "source": "https://github.com/hyperf/hyperf"
  4084. },
  4085. "funding": [
  4086. {
  4087. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4088. "type": "custom"
  4089. },
  4090. {
  4091. "url": "https://opencollective.com/hyperf",
  4092. "type": "open_collective"
  4093. }
  4094. ],
  4095. "time": "2024-10-09T02:28:40+00:00"
  4096. },
  4097. {
  4098. "name": "hyperf/support",
  4099. "version": "v3.1.47",
  4100. "source": {
  4101. "type": "git",
  4102. "url": "https://github.com/hyperf/support.git",
  4103. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4104. },
  4105. "dist": {
  4106. "type": "zip",
  4107. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4108. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4109. "shasum": ""
  4110. },
  4111. "require": {
  4112. "hyperf/collection": "~3.1.0",
  4113. "hyperf/context": "~3.1.0",
  4114. "hyperf/contract": "~3.1.0",
  4115. "hyperf/coroutine": "~3.1.0",
  4116. "hyperf/macroable": "~3.1.0",
  4117. "hyperf/stringable": "~3.1.0",
  4118. "php": ">=8.1"
  4119. },
  4120. "suggest": {
  4121. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4122. },
  4123. "type": "library",
  4124. "extra": {
  4125. "branch-alias": {
  4126. "dev-master": "3.1-dev"
  4127. }
  4128. },
  4129. "autoload": {
  4130. "files": [
  4131. "src/Functions.php"
  4132. ],
  4133. "psr-4": {
  4134. "Hyperf\\Support\\": "src/"
  4135. }
  4136. },
  4137. "notification-url": "https://packagist.org/downloads/",
  4138. "license": [
  4139. "MIT"
  4140. ],
  4141. "description": "A support component for Hyperf.",
  4142. "homepage": "https://hyperf.io",
  4143. "keywords": [
  4144. "hyperf",
  4145. "php",
  4146. "support",
  4147. "swoole"
  4148. ],
  4149. "support": {
  4150. "docs": "https://hyperf.wiki",
  4151. "issues": "https://github.com/hyperf/hyperf/issues",
  4152. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4153. "source": "https://github.com/hyperf/hyperf"
  4154. },
  4155. "funding": [
  4156. {
  4157. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4158. "type": "custom"
  4159. },
  4160. {
  4161. "url": "https://opencollective.com/hyperf",
  4162. "type": "open_collective"
  4163. }
  4164. ],
  4165. "time": "2024-11-28T01:51:55+00:00"
  4166. },
  4167. {
  4168. "name": "hyperf/tappable",
  4169. "version": "v3.1.42",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/hyperf/tappable.git",
  4173. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4178. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4179. "shasum": ""
  4180. },
  4181. "require": {
  4182. "php": ">=8.1"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-master": "3.1-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "files": [
  4192. "src/Functions.php"
  4193. ],
  4194. "psr-4": {
  4195. "Hyperf\\Tappable\\": "src/"
  4196. }
  4197. },
  4198. "notification-url": "https://packagist.org/downloads/",
  4199. "license": [
  4200. "MIT"
  4201. ],
  4202. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4203. "homepage": "https://hyperf.io",
  4204. "keywords": [
  4205. "hyperf",
  4206. "php",
  4207. "swoole",
  4208. "tappable"
  4209. ],
  4210. "support": {
  4211. "docs": "https://hyperf.wiki",
  4212. "issues": "https://github.com/hyperf/hyperf/issues",
  4213. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4214. "source": "https://github.com/hyperf/hyperf"
  4215. },
  4216. "funding": [
  4217. {
  4218. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4219. "type": "custom"
  4220. },
  4221. {
  4222. "url": "https://opencollective.com/hyperf",
  4223. "type": "open_collective"
  4224. }
  4225. ],
  4226. "time": "2024-09-25T02:54:12+00:00"
  4227. },
  4228. {
  4229. "name": "hyperf/utils",
  4230. "version": "v3.1.42",
  4231. "source": {
  4232. "type": "git",
  4233. "url": "https://github.com/hyperf/utils.git",
  4234. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4235. },
  4236. "dist": {
  4237. "type": "zip",
  4238. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4239. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4240. "shasum": ""
  4241. },
  4242. "require": {
  4243. "doctrine/inflector": "^2.0",
  4244. "hyperf/code-parser": "~3.1.0",
  4245. "hyperf/codec": "~3.1.0",
  4246. "hyperf/collection": "~3.1.0",
  4247. "hyperf/context": "~3.1.0",
  4248. "hyperf/contract": "~3.1.0",
  4249. "hyperf/coordinator": "~3.1.0",
  4250. "hyperf/coroutine": "~3.1.0",
  4251. "hyperf/engine": "^2.0",
  4252. "hyperf/macroable": "~3.1.0",
  4253. "hyperf/serializer": "~3.1.0",
  4254. "hyperf/stringable": "~3.1.0",
  4255. "hyperf/support": "~3.1.0",
  4256. "php": ">=8.1"
  4257. },
  4258. "type": "library",
  4259. "extra": {
  4260. "branch-alias": {
  4261. "dev-master": "3.1-dev"
  4262. }
  4263. },
  4264. "notification-url": "https://packagist.org/downloads/",
  4265. "license": [
  4266. "MIT"
  4267. ],
  4268. "description": "A tools package that could help developer solved the problem quickly.",
  4269. "homepage": "https://hyperf.io",
  4270. "keywords": [
  4271. "hyperf",
  4272. "php",
  4273. "swoole",
  4274. "utils"
  4275. ],
  4276. "support": {
  4277. "docs": "https://hyperf.wiki",
  4278. "issues": "https://github.com/hyperf/hyperf/issues",
  4279. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4280. "source": "https://github.com/hyperf/hyperf"
  4281. },
  4282. "funding": [
  4283. {
  4284. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4285. "type": "custom"
  4286. },
  4287. {
  4288. "url": "https://opencollective.com/hyperf",
  4289. "type": "open_collective"
  4290. }
  4291. ],
  4292. "time": "2024-09-25T02:54:12+00:00"
  4293. },
  4294. {
  4295. "name": "jetbrains/phpstorm-attributes",
  4296. "version": "1.2",
  4297. "source": {
  4298. "type": "git",
  4299. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4300. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4301. },
  4302. "dist": {
  4303. "type": "zip",
  4304. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4305. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4306. "shasum": ""
  4307. },
  4308. "type": "library",
  4309. "autoload": {
  4310. "psr-4": {
  4311. "JetBrains\\PhpStorm\\": "src/"
  4312. }
  4313. },
  4314. "notification-url": "https://packagist.org/downloads/",
  4315. "license": [
  4316. "Apache-2.0"
  4317. ],
  4318. "authors": [
  4319. {
  4320. "name": "JetBrains",
  4321. "homepage": "https://www.jetbrains.com"
  4322. }
  4323. ],
  4324. "description": "PhpStorm specific attributes",
  4325. "keywords": [
  4326. "attributes",
  4327. "jetbrains",
  4328. "phpstorm"
  4329. ],
  4330. "support": {
  4331. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4332. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4333. },
  4334. "time": "2024-10-11T10:46:19+00:00"
  4335. },
  4336. {
  4337. "name": "laminas/laminas-mime",
  4338. "version": "2.12.0",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://github.com/laminas/laminas-mime.git",
  4342. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4343. },
  4344. "dist": {
  4345. "type": "zip",
  4346. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4347. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4348. "shasum": ""
  4349. },
  4350. "require": {
  4351. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4352. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4353. },
  4354. "conflict": {
  4355. "zendframework/zend-mime": "*"
  4356. },
  4357. "require-dev": {
  4358. "laminas/laminas-coding-standard": "~2.4.0",
  4359. "laminas/laminas-mail": "^2.19.0",
  4360. "phpunit/phpunit": "~9.5.25"
  4361. },
  4362. "suggest": {
  4363. "laminas/laminas-mail": "Laminas\\Mail component"
  4364. },
  4365. "type": "library",
  4366. "autoload": {
  4367. "psr-4": {
  4368. "Laminas\\Mime\\": "src/"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "BSD-3-Clause"
  4374. ],
  4375. "description": "Create and parse MIME messages and parts",
  4376. "homepage": "https://laminas.dev",
  4377. "keywords": [
  4378. "laminas",
  4379. "mime"
  4380. ],
  4381. "support": {
  4382. "chat": "https://laminas.dev/chat",
  4383. "docs": "https://docs.laminas.dev/laminas-mime/",
  4384. "forum": "https://discourse.laminas.dev",
  4385. "issues": "https://github.com/laminas/laminas-mime/issues",
  4386. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4387. "source": "https://github.com/laminas/laminas-mime"
  4388. },
  4389. "funding": [
  4390. {
  4391. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4392. "type": "community_bridge"
  4393. }
  4394. ],
  4395. "abandoned": "symfony/mime",
  4396. "time": "2023-11-02T16:47:19+00:00"
  4397. },
  4398. {
  4399. "name": "laminas/laminas-stdlib",
  4400. "version": "3.20.0",
  4401. "source": {
  4402. "type": "git",
  4403. "url": "https://github.com/laminas/laminas-stdlib.git",
  4404. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4405. },
  4406. "dist": {
  4407. "type": "zip",
  4408. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4409. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4410. "shasum": ""
  4411. },
  4412. "require": {
  4413. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4414. },
  4415. "conflict": {
  4416. "zendframework/zend-stdlib": "*"
  4417. },
  4418. "require-dev": {
  4419. "laminas/laminas-coding-standard": "^3.0",
  4420. "phpbench/phpbench": "^1.3.1",
  4421. "phpunit/phpunit": "^10.5.38",
  4422. "psalm/plugin-phpunit": "^0.19.0",
  4423. "vimeo/psalm": "^5.26.1"
  4424. },
  4425. "type": "library",
  4426. "autoload": {
  4427. "psr-4": {
  4428. "Laminas\\Stdlib\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "BSD-3-Clause"
  4434. ],
  4435. "description": "SPL extensions, array utilities, error handlers, and more",
  4436. "homepage": "https://laminas.dev",
  4437. "keywords": [
  4438. "laminas",
  4439. "stdlib"
  4440. ],
  4441. "support": {
  4442. "chat": "https://laminas.dev/chat",
  4443. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4444. "forum": "https://discourse.laminas.dev",
  4445. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4446. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4447. "source": "https://github.com/laminas/laminas-stdlib"
  4448. },
  4449. "funding": [
  4450. {
  4451. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4452. "type": "community_bridge"
  4453. }
  4454. ],
  4455. "time": "2024-10-29T13:46:07+00:00"
  4456. },
  4457. {
  4458. "name": "markrogoyski/math-php",
  4459. "version": "v2.10.0",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://github.com/markrogoyski/math-php.git",
  4463. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4468. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4469. "shasum": ""
  4470. },
  4471. "require": {
  4472. "ext-json": "*",
  4473. "php": ">=7.2.0"
  4474. },
  4475. "require-dev": {
  4476. "php-coveralls/php-coveralls": "^2.0",
  4477. "php-parallel-lint/php-parallel-lint": "^1.2",
  4478. "phploc/phploc": "*",
  4479. "phpmd/phpmd": "^2.6",
  4480. "phpstan/phpstan": "^1.10",
  4481. "phpunit/phpunit": "^8.5",
  4482. "squizlabs/php_codesniffer": "3.*"
  4483. },
  4484. "type": "library",
  4485. "autoload": {
  4486. "psr-4": {
  4487. "MathPHP\\": "src/"
  4488. }
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Mark Rogoyski",
  4497. "email": "mark@rogoyski.com",
  4498. "homepage": "https://github.com/markrogoyski",
  4499. "role": "Lead developer"
  4500. },
  4501. {
  4502. "name": "Kevin Nowaczyk",
  4503. "homepage": "https://github.com/Beakerboy",
  4504. "role": "Developer"
  4505. },
  4506. {
  4507. "name": "MathPHP Community of Contributors",
  4508. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4509. }
  4510. ],
  4511. "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",
  4512. "homepage": "https://github.com/markrogoyski/math-php/",
  4513. "keywords": [
  4514. "algebra",
  4515. "combinatorics",
  4516. "distributions",
  4517. "linear algebra",
  4518. "math",
  4519. "mathematics",
  4520. "matrix",
  4521. "numerical analysis",
  4522. "probability",
  4523. "regressions",
  4524. "statistics"
  4525. ],
  4526. "support": {
  4527. "issues": "https://github.com/markrogoyski/math-php/issues",
  4528. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4529. },
  4530. "time": "2024-04-17T00:09:51+00:00"
  4531. },
  4532. {
  4533. "name": "monolog/monolog",
  4534. "version": "3.8.0",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://github.com/Seldaek/monolog.git",
  4538. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  4543. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  4544. "shasum": ""
  4545. },
  4546. "require": {
  4547. "php": ">=8.1",
  4548. "psr/log": "^2.0 || ^3.0"
  4549. },
  4550. "provide": {
  4551. "psr/log-implementation": "3.0.0"
  4552. },
  4553. "require-dev": {
  4554. "aws/aws-sdk-php": "^3.0",
  4555. "doctrine/couchdb": "~1.0@dev",
  4556. "elasticsearch/elasticsearch": "^7 || ^8",
  4557. "ext-json": "*",
  4558. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4559. "guzzlehttp/guzzle": "^7.4.5",
  4560. "guzzlehttp/psr7": "^2.2",
  4561. "mongodb/mongodb": "^1.8",
  4562. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4563. "php-console/php-console": "^3.1.8",
  4564. "phpstan/phpstan": "^2",
  4565. "phpstan/phpstan-deprecation-rules": "^2",
  4566. "phpstan/phpstan-strict-rules": "^2",
  4567. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4568. "predis/predis": "^1.1 || ^2",
  4569. "rollbar/rollbar": "^4.0",
  4570. "ruflin/elastica": "^7 || ^8",
  4571. "symfony/mailer": "^5.4 || ^6",
  4572. "symfony/mime": "^5.4 || ^6"
  4573. },
  4574. "suggest": {
  4575. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4576. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4577. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4578. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4579. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4580. "ext-mbstring": "Allow to work properly with unicode symbols",
  4581. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4582. "ext-openssl": "Required to send log messages using SSL",
  4583. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4584. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4585. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4586. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4587. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4588. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4589. },
  4590. "type": "library",
  4591. "extra": {
  4592. "branch-alias": {
  4593. "dev-main": "3.x-dev"
  4594. }
  4595. },
  4596. "autoload": {
  4597. "psr-4": {
  4598. "Monolog\\": "src/Monolog"
  4599. }
  4600. },
  4601. "notification-url": "https://packagist.org/downloads/",
  4602. "license": [
  4603. "MIT"
  4604. ],
  4605. "authors": [
  4606. {
  4607. "name": "Jordi Boggiano",
  4608. "email": "j.boggiano@seld.be",
  4609. "homepage": "https://seld.be"
  4610. }
  4611. ],
  4612. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4613. "homepage": "https://github.com/Seldaek/monolog",
  4614. "keywords": [
  4615. "log",
  4616. "logging",
  4617. "psr-3"
  4618. ],
  4619. "support": {
  4620. "issues": "https://github.com/Seldaek/monolog/issues",
  4621. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  4622. },
  4623. "funding": [
  4624. {
  4625. "url": "https://github.com/Seldaek",
  4626. "type": "github"
  4627. },
  4628. {
  4629. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4630. "type": "tidelift"
  4631. }
  4632. ],
  4633. "time": "2024-11-12T13:57:08+00:00"
  4634. },
  4635. {
  4636. "name": "nesbot/carbon",
  4637. "version": "2.72.5",
  4638. "source": {
  4639. "type": "git",
  4640. "url": "https://github.com/briannesbitt/Carbon.git",
  4641. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4642. },
  4643. "dist": {
  4644. "type": "zip",
  4645. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4646. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4647. "shasum": ""
  4648. },
  4649. "require": {
  4650. "carbonphp/carbon-doctrine-types": "*",
  4651. "ext-json": "*",
  4652. "php": "^7.1.8 || ^8.0",
  4653. "psr/clock": "^1.0",
  4654. "symfony/polyfill-mbstring": "^1.0",
  4655. "symfony/polyfill-php80": "^1.16",
  4656. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4657. },
  4658. "provide": {
  4659. "psr/clock-implementation": "1.0"
  4660. },
  4661. "require-dev": {
  4662. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4663. "doctrine/orm": "^2.7 || ^3.0",
  4664. "friendsofphp/php-cs-fixer": "^3.0",
  4665. "kylekatarnls/multi-tester": "^2.0",
  4666. "ondrejmirtes/better-reflection": "*",
  4667. "phpmd/phpmd": "^2.9",
  4668. "phpstan/extension-installer": "^1.0",
  4669. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4670. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4671. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4672. "squizlabs/php_codesniffer": "^3.4"
  4673. },
  4674. "bin": [
  4675. "bin/carbon"
  4676. ],
  4677. "type": "library",
  4678. "extra": {
  4679. "branch-alias": {
  4680. "dev-master": "3.x-dev",
  4681. "dev-2.x": "2.x-dev"
  4682. },
  4683. "laravel": {
  4684. "providers": [
  4685. "Carbon\\Laravel\\ServiceProvider"
  4686. ]
  4687. },
  4688. "phpstan": {
  4689. "includes": [
  4690. "extension.neon"
  4691. ]
  4692. }
  4693. },
  4694. "autoload": {
  4695. "psr-4": {
  4696. "Carbon\\": "src/Carbon/"
  4697. }
  4698. },
  4699. "notification-url": "https://packagist.org/downloads/",
  4700. "license": [
  4701. "MIT"
  4702. ],
  4703. "authors": [
  4704. {
  4705. "name": "Brian Nesbitt",
  4706. "email": "brian@nesbot.com",
  4707. "homepage": "https://markido.com"
  4708. },
  4709. {
  4710. "name": "kylekatarnls",
  4711. "homepage": "https://github.com/kylekatarnls"
  4712. }
  4713. ],
  4714. "description": "An API extension for DateTime that supports 281 different languages.",
  4715. "homepage": "https://carbon.nesbot.com",
  4716. "keywords": [
  4717. "date",
  4718. "datetime",
  4719. "time"
  4720. ],
  4721. "support": {
  4722. "docs": "https://carbon.nesbot.com/docs",
  4723. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4724. "source": "https://github.com/briannesbitt/Carbon"
  4725. },
  4726. "funding": [
  4727. {
  4728. "url": "https://github.com/sponsors/kylekatarnls",
  4729. "type": "github"
  4730. },
  4731. {
  4732. "url": "https://opencollective.com/Carbon#sponsor",
  4733. "type": "opencollective"
  4734. },
  4735. {
  4736. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4737. "type": "tidelift"
  4738. }
  4739. ],
  4740. "time": "2024-06-03T19:18:41+00:00"
  4741. },
  4742. {
  4743. "name": "nikic/fast-route",
  4744. "version": "v1.3.0",
  4745. "source": {
  4746. "type": "git",
  4747. "url": "https://github.com/nikic/FastRoute.git",
  4748. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4749. },
  4750. "dist": {
  4751. "type": "zip",
  4752. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4753. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4754. "shasum": ""
  4755. },
  4756. "require": {
  4757. "php": ">=5.4.0"
  4758. },
  4759. "require-dev": {
  4760. "phpunit/phpunit": "^4.8.35|~5.7"
  4761. },
  4762. "type": "library",
  4763. "autoload": {
  4764. "files": [
  4765. "src/functions.php"
  4766. ],
  4767. "psr-4": {
  4768. "FastRoute\\": "src/"
  4769. }
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "BSD-3-Clause"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Nikita Popov",
  4778. "email": "nikic@php.net"
  4779. }
  4780. ],
  4781. "description": "Fast request router for PHP",
  4782. "keywords": [
  4783. "router",
  4784. "routing"
  4785. ],
  4786. "support": {
  4787. "issues": "https://github.com/nikic/FastRoute/issues",
  4788. "source": "https://github.com/nikic/FastRoute/tree/master"
  4789. },
  4790. "time": "2018-02-13T20:26:39+00:00"
  4791. },
  4792. {
  4793. "name": "nikic/php-parser",
  4794. "version": "v4.19.4",
  4795. "source": {
  4796. "type": "git",
  4797. "url": "https://github.com/nikic/PHP-Parser.git",
  4798. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  4799. },
  4800. "dist": {
  4801. "type": "zip",
  4802. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4803. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4804. "shasum": ""
  4805. },
  4806. "require": {
  4807. "ext-tokenizer": "*",
  4808. "php": ">=7.1"
  4809. },
  4810. "require-dev": {
  4811. "ircmaxell/php-yacc": "^0.0.7",
  4812. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4813. },
  4814. "bin": [
  4815. "bin/php-parse"
  4816. ],
  4817. "type": "library",
  4818. "extra": {
  4819. "branch-alias": {
  4820. "dev-master": "4.9-dev"
  4821. }
  4822. },
  4823. "autoload": {
  4824. "psr-4": {
  4825. "PhpParser\\": "lib/PhpParser"
  4826. }
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "BSD-3-Clause"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Nikita Popov"
  4835. }
  4836. ],
  4837. "description": "A PHP parser written in PHP",
  4838. "keywords": [
  4839. "parser",
  4840. "php"
  4841. ],
  4842. "support": {
  4843. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4844. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  4845. },
  4846. "time": "2024-09-29T15:01:53+00:00"
  4847. },
  4848. {
  4849. "name": "paragonie/constant_time_encoding",
  4850. "version": "v3.0.0",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://github.com/paragonie/constant_time_encoding.git",
  4854. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  4859. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  4860. "shasum": ""
  4861. },
  4862. "require": {
  4863. "php": "^8"
  4864. },
  4865. "require-dev": {
  4866. "phpunit/phpunit": "^9",
  4867. "vimeo/psalm": "^4|^5"
  4868. },
  4869. "type": "library",
  4870. "autoload": {
  4871. "psr-4": {
  4872. "ParagonIE\\ConstantTime\\": "src/"
  4873. }
  4874. },
  4875. "notification-url": "https://packagist.org/downloads/",
  4876. "license": [
  4877. "MIT"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Paragon Initiative Enterprises",
  4882. "email": "security@paragonie.com",
  4883. "homepage": "https://paragonie.com",
  4884. "role": "Maintainer"
  4885. },
  4886. {
  4887. "name": "Steve 'Sc00bz' Thomas",
  4888. "email": "steve@tobtu.com",
  4889. "homepage": "https://www.tobtu.com",
  4890. "role": "Original Developer"
  4891. }
  4892. ],
  4893. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4894. "keywords": [
  4895. "base16",
  4896. "base32",
  4897. "base32_decode",
  4898. "base32_encode",
  4899. "base64",
  4900. "base64_decode",
  4901. "base64_encode",
  4902. "bin2hex",
  4903. "encoding",
  4904. "hex",
  4905. "hex2bin",
  4906. "rfc4648"
  4907. ],
  4908. "support": {
  4909. "email": "info@paragonie.com",
  4910. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  4911. "source": "https://github.com/paragonie/constant_time_encoding"
  4912. },
  4913. "time": "2024-05-08T12:36:18+00:00"
  4914. },
  4915. {
  4916. "name": "paragonie/random_compat",
  4917. "version": "v9.99.100",
  4918. "source": {
  4919. "type": "git",
  4920. "url": "https://github.com/paragonie/random_compat.git",
  4921. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  4922. },
  4923. "dist": {
  4924. "type": "zip",
  4925. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4926. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4927. "shasum": ""
  4928. },
  4929. "require": {
  4930. "php": ">= 7"
  4931. },
  4932. "require-dev": {
  4933. "phpunit/phpunit": "4.*|5.*",
  4934. "vimeo/psalm": "^1"
  4935. },
  4936. "suggest": {
  4937. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4938. },
  4939. "type": "library",
  4940. "notification-url": "https://packagist.org/downloads/",
  4941. "license": [
  4942. "MIT"
  4943. ],
  4944. "authors": [
  4945. {
  4946. "name": "Paragon Initiative Enterprises",
  4947. "email": "security@paragonie.com",
  4948. "homepage": "https://paragonie.com"
  4949. }
  4950. ],
  4951. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4952. "keywords": [
  4953. "csprng",
  4954. "polyfill",
  4955. "pseudorandom",
  4956. "random"
  4957. ],
  4958. "support": {
  4959. "email": "info@paragonie.com",
  4960. "issues": "https://github.com/paragonie/random_compat/issues",
  4961. "source": "https://github.com/paragonie/random_compat"
  4962. },
  4963. "time": "2020-10-15T08:29:30+00:00"
  4964. },
  4965. {
  4966. "name": "php-amqplib/php-amqplib",
  4967. "version": "v3.7.2",
  4968. "source": {
  4969. "type": "git",
  4970. "url": "https://github.com/php-amqplib/php-amqplib.git",
  4971. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  4972. },
  4973. "dist": {
  4974. "type": "zip",
  4975. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  4976. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  4977. "shasum": ""
  4978. },
  4979. "require": {
  4980. "ext-mbstring": "*",
  4981. "ext-sockets": "*",
  4982. "php": "^7.2||^8.0",
  4983. "phpseclib/phpseclib": "^2.0|^3.0"
  4984. },
  4985. "conflict": {
  4986. "php": "7.4.0 - 7.4.1"
  4987. },
  4988. "replace": {
  4989. "videlalvaro/php-amqplib": "self.version"
  4990. },
  4991. "require-dev": {
  4992. "ext-curl": "*",
  4993. "nategood/httpful": "^0.2.20",
  4994. "phpunit/phpunit": "^7.5|^9.5",
  4995. "squizlabs/php_codesniffer": "^3.6"
  4996. },
  4997. "type": "library",
  4998. "extra": {
  4999. "branch-alias": {
  5000. "dev-master": "3.0-dev"
  5001. }
  5002. },
  5003. "autoload": {
  5004. "psr-4": {
  5005. "PhpAmqpLib\\": "PhpAmqpLib/"
  5006. }
  5007. },
  5008. "notification-url": "https://packagist.org/downloads/",
  5009. "license": [
  5010. "LGPL-2.1-or-later"
  5011. ],
  5012. "authors": [
  5013. {
  5014. "name": "Alvaro Videla",
  5015. "role": "Original Maintainer"
  5016. },
  5017. {
  5018. "name": "Raúl Araya",
  5019. "email": "nubeiro@gmail.com",
  5020. "role": "Maintainer"
  5021. },
  5022. {
  5023. "name": "Luke Bakken",
  5024. "email": "luke@bakken.io",
  5025. "role": "Maintainer"
  5026. },
  5027. {
  5028. "name": "Ramūnas Dronga",
  5029. "email": "github@ramuno.lt",
  5030. "role": "Maintainer"
  5031. }
  5032. ],
  5033. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5034. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5035. "keywords": [
  5036. "message",
  5037. "queue",
  5038. "rabbitmq"
  5039. ],
  5040. "support": {
  5041. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5042. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5043. },
  5044. "time": "2024-11-21T09:21:41+00:00"
  5045. },
  5046. {
  5047. "name": "php-di/phpdoc-reader",
  5048. "version": "2.2.1",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5052. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5057. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5058. "shasum": ""
  5059. },
  5060. "require": {
  5061. "php": ">=7.2.0"
  5062. },
  5063. "require-dev": {
  5064. "mnapoli/hard-mode": "~0.3.0",
  5065. "phpunit/phpunit": "^8.5|^9.0"
  5066. },
  5067. "type": "library",
  5068. "autoload": {
  5069. "psr-4": {
  5070. "PhpDocReader\\": "src/PhpDocReader"
  5071. }
  5072. },
  5073. "notification-url": "https://packagist.org/downloads/",
  5074. "license": [
  5075. "MIT"
  5076. ],
  5077. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5078. "keywords": [
  5079. "phpdoc",
  5080. "reflection"
  5081. ],
  5082. "support": {
  5083. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5084. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5085. },
  5086. "time": "2020-10-12T12:39:22+00:00"
  5087. },
  5088. {
  5089. "name": "phpoption/phpoption",
  5090. "version": "1.9.3",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/schmittjoh/php-option.git",
  5094. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5099. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5100. "shasum": ""
  5101. },
  5102. "require": {
  5103. "php": "^7.2.5 || ^8.0"
  5104. },
  5105. "require-dev": {
  5106. "bamarni/composer-bin-plugin": "^1.8.2",
  5107. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5108. },
  5109. "type": "library",
  5110. "extra": {
  5111. "bamarni-bin": {
  5112. "bin-links": true,
  5113. "forward-command": false
  5114. },
  5115. "branch-alias": {
  5116. "dev-master": "1.9-dev"
  5117. }
  5118. },
  5119. "autoload": {
  5120. "psr-4": {
  5121. "PhpOption\\": "src/PhpOption/"
  5122. }
  5123. },
  5124. "notification-url": "https://packagist.org/downloads/",
  5125. "license": [
  5126. "Apache-2.0"
  5127. ],
  5128. "authors": [
  5129. {
  5130. "name": "Johannes M. Schmitt",
  5131. "email": "schmittjoh@gmail.com",
  5132. "homepage": "https://github.com/schmittjoh"
  5133. },
  5134. {
  5135. "name": "Graham Campbell",
  5136. "email": "hello@gjcampbell.co.uk",
  5137. "homepage": "https://github.com/GrahamCampbell"
  5138. }
  5139. ],
  5140. "description": "Option Type for PHP",
  5141. "keywords": [
  5142. "language",
  5143. "option",
  5144. "php",
  5145. "type"
  5146. ],
  5147. "support": {
  5148. "issues": "https://github.com/schmittjoh/php-option/issues",
  5149. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5150. },
  5151. "funding": [
  5152. {
  5153. "url": "https://github.com/GrahamCampbell",
  5154. "type": "github"
  5155. },
  5156. {
  5157. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5158. "type": "tidelift"
  5159. }
  5160. ],
  5161. "time": "2024-07-20T21:41:07+00:00"
  5162. },
  5163. {
  5164. "name": "phpseclib/phpseclib",
  5165. "version": "3.0.42",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/phpseclib/phpseclib.git",
  5169. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5174. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "paragonie/constant_time_encoding": "^1|^2|^3",
  5179. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5180. "php": ">=5.6.1"
  5181. },
  5182. "require-dev": {
  5183. "phpunit/phpunit": "*"
  5184. },
  5185. "suggest": {
  5186. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5187. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5188. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5189. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5190. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5191. },
  5192. "type": "library",
  5193. "autoload": {
  5194. "files": [
  5195. "phpseclib/bootstrap.php"
  5196. ],
  5197. "psr-4": {
  5198. "phpseclib3\\": "phpseclib/"
  5199. }
  5200. },
  5201. "notification-url": "https://packagist.org/downloads/",
  5202. "license": [
  5203. "MIT"
  5204. ],
  5205. "authors": [
  5206. {
  5207. "name": "Jim Wigginton",
  5208. "email": "terrafrost@php.net",
  5209. "role": "Lead Developer"
  5210. },
  5211. {
  5212. "name": "Patrick Monnerat",
  5213. "email": "pm@datasphere.ch",
  5214. "role": "Developer"
  5215. },
  5216. {
  5217. "name": "Andreas Fischer",
  5218. "email": "bantu@phpbb.com",
  5219. "role": "Developer"
  5220. },
  5221. {
  5222. "name": "Hans-Jürgen Petrich",
  5223. "email": "petrich@tronic-media.com",
  5224. "role": "Developer"
  5225. },
  5226. {
  5227. "name": "Graham Campbell",
  5228. "email": "graham@alt-three.com",
  5229. "role": "Developer"
  5230. }
  5231. ],
  5232. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5233. "homepage": "http://phpseclib.sourceforge.net",
  5234. "keywords": [
  5235. "BigInteger",
  5236. "aes",
  5237. "asn.1",
  5238. "asn1",
  5239. "blowfish",
  5240. "crypto",
  5241. "cryptography",
  5242. "encryption",
  5243. "rsa",
  5244. "security",
  5245. "sftp",
  5246. "signature",
  5247. "signing",
  5248. "ssh",
  5249. "twofish",
  5250. "x.509",
  5251. "x509"
  5252. ],
  5253. "support": {
  5254. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5255. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  5256. },
  5257. "funding": [
  5258. {
  5259. "url": "https://github.com/terrafrost",
  5260. "type": "github"
  5261. },
  5262. {
  5263. "url": "https://www.patreon.com/phpseclib",
  5264. "type": "patreon"
  5265. },
  5266. {
  5267. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5268. "type": "tidelift"
  5269. }
  5270. ],
  5271. "time": "2024-09-16T03:06:04+00:00"
  5272. },
  5273. {
  5274. "name": "psr/cache",
  5275. "version": "3.0.0",
  5276. "source": {
  5277. "type": "git",
  5278. "url": "https://github.com/php-fig/cache.git",
  5279. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5280. },
  5281. "dist": {
  5282. "type": "zip",
  5283. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5284. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5285. "shasum": ""
  5286. },
  5287. "require": {
  5288. "php": ">=8.0.0"
  5289. },
  5290. "type": "library",
  5291. "extra": {
  5292. "branch-alias": {
  5293. "dev-master": "1.0.x-dev"
  5294. }
  5295. },
  5296. "autoload": {
  5297. "psr-4": {
  5298. "Psr\\Cache\\": "src/"
  5299. }
  5300. },
  5301. "notification-url": "https://packagist.org/downloads/",
  5302. "license": [
  5303. "MIT"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "PHP-FIG",
  5308. "homepage": "https://www.php-fig.org/"
  5309. }
  5310. ],
  5311. "description": "Common interface for caching libraries",
  5312. "keywords": [
  5313. "cache",
  5314. "psr",
  5315. "psr-6"
  5316. ],
  5317. "support": {
  5318. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5319. },
  5320. "time": "2021-02-03T23:26:27+00:00"
  5321. },
  5322. {
  5323. "name": "psr/clock",
  5324. "version": "1.0.0",
  5325. "source": {
  5326. "type": "git",
  5327. "url": "https://github.com/php-fig/clock.git",
  5328. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5329. },
  5330. "dist": {
  5331. "type": "zip",
  5332. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5333. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5334. "shasum": ""
  5335. },
  5336. "require": {
  5337. "php": "^7.0 || ^8.0"
  5338. },
  5339. "type": "library",
  5340. "autoload": {
  5341. "psr-4": {
  5342. "Psr\\Clock\\": "src/"
  5343. }
  5344. },
  5345. "notification-url": "https://packagist.org/downloads/",
  5346. "license": [
  5347. "MIT"
  5348. ],
  5349. "authors": [
  5350. {
  5351. "name": "PHP-FIG",
  5352. "homepage": "https://www.php-fig.org/"
  5353. }
  5354. ],
  5355. "description": "Common interface for reading the clock.",
  5356. "homepage": "https://github.com/php-fig/clock",
  5357. "keywords": [
  5358. "clock",
  5359. "now",
  5360. "psr",
  5361. "psr-20",
  5362. "time"
  5363. ],
  5364. "support": {
  5365. "issues": "https://github.com/php-fig/clock/issues",
  5366. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5367. },
  5368. "time": "2022-11-25T14:36:26+00:00"
  5369. },
  5370. {
  5371. "name": "psr/container",
  5372. "version": "2.0.2",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/php-fig/container.git",
  5376. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5381. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "php": ">=7.4.0"
  5386. },
  5387. "type": "library",
  5388. "extra": {
  5389. "branch-alias": {
  5390. "dev-master": "2.0.x-dev"
  5391. }
  5392. },
  5393. "autoload": {
  5394. "psr-4": {
  5395. "Psr\\Container\\": "src/"
  5396. }
  5397. },
  5398. "notification-url": "https://packagist.org/downloads/",
  5399. "license": [
  5400. "MIT"
  5401. ],
  5402. "authors": [
  5403. {
  5404. "name": "PHP-FIG",
  5405. "homepage": "https://www.php-fig.org/"
  5406. }
  5407. ],
  5408. "description": "Common Container Interface (PHP FIG PSR-11)",
  5409. "homepage": "https://github.com/php-fig/container",
  5410. "keywords": [
  5411. "PSR-11",
  5412. "container",
  5413. "container-interface",
  5414. "container-interop",
  5415. "psr"
  5416. ],
  5417. "support": {
  5418. "issues": "https://github.com/php-fig/container/issues",
  5419. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5420. },
  5421. "time": "2021-11-05T16:47:00+00:00"
  5422. },
  5423. {
  5424. "name": "psr/event-dispatcher",
  5425. "version": "1.0.0",
  5426. "source": {
  5427. "type": "git",
  5428. "url": "https://github.com/php-fig/event-dispatcher.git",
  5429. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5430. },
  5431. "dist": {
  5432. "type": "zip",
  5433. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5434. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5435. "shasum": ""
  5436. },
  5437. "require": {
  5438. "php": ">=7.2.0"
  5439. },
  5440. "type": "library",
  5441. "extra": {
  5442. "branch-alias": {
  5443. "dev-master": "1.0.x-dev"
  5444. }
  5445. },
  5446. "autoload": {
  5447. "psr-4": {
  5448. "Psr\\EventDispatcher\\": "src/"
  5449. }
  5450. },
  5451. "notification-url": "https://packagist.org/downloads/",
  5452. "license": [
  5453. "MIT"
  5454. ],
  5455. "authors": [
  5456. {
  5457. "name": "PHP-FIG",
  5458. "homepage": "http://www.php-fig.org/"
  5459. }
  5460. ],
  5461. "description": "Standard interfaces for event handling.",
  5462. "keywords": [
  5463. "events",
  5464. "psr",
  5465. "psr-14"
  5466. ],
  5467. "support": {
  5468. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5469. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5470. },
  5471. "time": "2019-01-08T18:20:26+00:00"
  5472. },
  5473. {
  5474. "name": "psr/http-client",
  5475. "version": "1.0.3",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://github.com/php-fig/http-client.git",
  5479. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5484. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5485. "shasum": ""
  5486. },
  5487. "require": {
  5488. "php": "^7.0 || ^8.0",
  5489. "psr/http-message": "^1.0 || ^2.0"
  5490. },
  5491. "type": "library",
  5492. "extra": {
  5493. "branch-alias": {
  5494. "dev-master": "1.0.x-dev"
  5495. }
  5496. },
  5497. "autoload": {
  5498. "psr-4": {
  5499. "Psr\\Http\\Client\\": "src/"
  5500. }
  5501. },
  5502. "notification-url": "https://packagist.org/downloads/",
  5503. "license": [
  5504. "MIT"
  5505. ],
  5506. "authors": [
  5507. {
  5508. "name": "PHP-FIG",
  5509. "homepage": "https://www.php-fig.org/"
  5510. }
  5511. ],
  5512. "description": "Common interface for HTTP clients",
  5513. "homepage": "https://github.com/php-fig/http-client",
  5514. "keywords": [
  5515. "http",
  5516. "http-client",
  5517. "psr",
  5518. "psr-18"
  5519. ],
  5520. "support": {
  5521. "source": "https://github.com/php-fig/http-client"
  5522. },
  5523. "time": "2023-09-23T14:17:50+00:00"
  5524. },
  5525. {
  5526. "name": "psr/http-factory",
  5527. "version": "1.1.0",
  5528. "source": {
  5529. "type": "git",
  5530. "url": "https://github.com/php-fig/http-factory.git",
  5531. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5532. },
  5533. "dist": {
  5534. "type": "zip",
  5535. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5536. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5537. "shasum": ""
  5538. },
  5539. "require": {
  5540. "php": ">=7.1",
  5541. "psr/http-message": "^1.0 || ^2.0"
  5542. },
  5543. "type": "library",
  5544. "extra": {
  5545. "branch-alias": {
  5546. "dev-master": "1.0.x-dev"
  5547. }
  5548. },
  5549. "autoload": {
  5550. "psr-4": {
  5551. "Psr\\Http\\Message\\": "src/"
  5552. }
  5553. },
  5554. "notification-url": "https://packagist.org/downloads/",
  5555. "license": [
  5556. "MIT"
  5557. ],
  5558. "authors": [
  5559. {
  5560. "name": "PHP-FIG",
  5561. "homepage": "https://www.php-fig.org/"
  5562. }
  5563. ],
  5564. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5565. "keywords": [
  5566. "factory",
  5567. "http",
  5568. "message",
  5569. "psr",
  5570. "psr-17",
  5571. "psr-7",
  5572. "request",
  5573. "response"
  5574. ],
  5575. "support": {
  5576. "source": "https://github.com/php-fig/http-factory"
  5577. },
  5578. "time": "2024-04-15T12:06:14+00:00"
  5579. },
  5580. {
  5581. "name": "psr/http-message",
  5582. "version": "2.0",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/php-fig/http-message.git",
  5586. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5591. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5592. "shasum": ""
  5593. },
  5594. "require": {
  5595. "php": "^7.2 || ^8.0"
  5596. },
  5597. "type": "library",
  5598. "extra": {
  5599. "branch-alias": {
  5600. "dev-master": "2.0.x-dev"
  5601. }
  5602. },
  5603. "autoload": {
  5604. "psr-4": {
  5605. "Psr\\Http\\Message\\": "src/"
  5606. }
  5607. },
  5608. "notification-url": "https://packagist.org/downloads/",
  5609. "license": [
  5610. "MIT"
  5611. ],
  5612. "authors": [
  5613. {
  5614. "name": "PHP-FIG",
  5615. "homepage": "https://www.php-fig.org/"
  5616. }
  5617. ],
  5618. "description": "Common interface for HTTP messages",
  5619. "homepage": "https://github.com/php-fig/http-message",
  5620. "keywords": [
  5621. "http",
  5622. "http-message",
  5623. "psr",
  5624. "psr-7",
  5625. "request",
  5626. "response"
  5627. ],
  5628. "support": {
  5629. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5630. },
  5631. "time": "2023-04-04T09:54:51+00:00"
  5632. },
  5633. {
  5634. "name": "psr/http-server-handler",
  5635. "version": "1.0.2",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/php-fig/http-server-handler.git",
  5639. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5644. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "php": ">=7.0",
  5649. "psr/http-message": "^1.0 || ^2.0"
  5650. },
  5651. "type": "library",
  5652. "extra": {
  5653. "branch-alias": {
  5654. "dev-master": "1.0.x-dev"
  5655. }
  5656. },
  5657. "autoload": {
  5658. "psr-4": {
  5659. "Psr\\Http\\Server\\": "src/"
  5660. }
  5661. },
  5662. "notification-url": "https://packagist.org/downloads/",
  5663. "license": [
  5664. "MIT"
  5665. ],
  5666. "authors": [
  5667. {
  5668. "name": "PHP-FIG",
  5669. "homepage": "https://www.php-fig.org/"
  5670. }
  5671. ],
  5672. "description": "Common interface for HTTP server-side request handler",
  5673. "keywords": [
  5674. "handler",
  5675. "http",
  5676. "http-interop",
  5677. "psr",
  5678. "psr-15",
  5679. "psr-7",
  5680. "request",
  5681. "response",
  5682. "server"
  5683. ],
  5684. "support": {
  5685. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5686. },
  5687. "time": "2023-04-10T20:06:20+00:00"
  5688. },
  5689. {
  5690. "name": "psr/http-server-middleware",
  5691. "version": "1.0.2",
  5692. "source": {
  5693. "type": "git",
  5694. "url": "https://github.com/php-fig/http-server-middleware.git",
  5695. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5696. },
  5697. "dist": {
  5698. "type": "zip",
  5699. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5700. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5701. "shasum": ""
  5702. },
  5703. "require": {
  5704. "php": ">=7.0",
  5705. "psr/http-message": "^1.0 || ^2.0",
  5706. "psr/http-server-handler": "^1.0"
  5707. },
  5708. "type": "library",
  5709. "extra": {
  5710. "branch-alias": {
  5711. "dev-master": "1.0.x-dev"
  5712. }
  5713. },
  5714. "autoload": {
  5715. "psr-4": {
  5716. "Psr\\Http\\Server\\": "src/"
  5717. }
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "PHP-FIG",
  5726. "homepage": "https://www.php-fig.org/"
  5727. }
  5728. ],
  5729. "description": "Common interface for HTTP server-side middleware",
  5730. "keywords": [
  5731. "http",
  5732. "http-interop",
  5733. "middleware",
  5734. "psr",
  5735. "psr-15",
  5736. "psr-7",
  5737. "request",
  5738. "response"
  5739. ],
  5740. "support": {
  5741. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5742. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5743. },
  5744. "time": "2023-04-11T06:14:47+00:00"
  5745. },
  5746. {
  5747. "name": "psr/log",
  5748. "version": "3.0.2",
  5749. "source": {
  5750. "type": "git",
  5751. "url": "https://github.com/php-fig/log.git",
  5752. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5753. },
  5754. "dist": {
  5755. "type": "zip",
  5756. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5757. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5758. "shasum": ""
  5759. },
  5760. "require": {
  5761. "php": ">=8.0.0"
  5762. },
  5763. "type": "library",
  5764. "extra": {
  5765. "branch-alias": {
  5766. "dev-master": "3.x-dev"
  5767. }
  5768. },
  5769. "autoload": {
  5770. "psr-4": {
  5771. "Psr\\Log\\": "src"
  5772. }
  5773. },
  5774. "notification-url": "https://packagist.org/downloads/",
  5775. "license": [
  5776. "MIT"
  5777. ],
  5778. "authors": [
  5779. {
  5780. "name": "PHP-FIG",
  5781. "homepage": "https://www.php-fig.org/"
  5782. }
  5783. ],
  5784. "description": "Common interface for logging libraries",
  5785. "homepage": "https://github.com/php-fig/log",
  5786. "keywords": [
  5787. "log",
  5788. "psr",
  5789. "psr-3"
  5790. ],
  5791. "support": {
  5792. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5793. },
  5794. "time": "2024-09-11T13:17:53+00:00"
  5795. },
  5796. {
  5797. "name": "psr/simple-cache",
  5798. "version": "3.0.0",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/php-fig/simple-cache.git",
  5802. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5807. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5808. "shasum": ""
  5809. },
  5810. "require": {
  5811. "php": ">=8.0.0"
  5812. },
  5813. "type": "library",
  5814. "extra": {
  5815. "branch-alias": {
  5816. "dev-master": "3.0.x-dev"
  5817. }
  5818. },
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Psr\\SimpleCache\\": "src/"
  5822. }
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "MIT"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "PHP-FIG",
  5831. "homepage": "https://www.php-fig.org/"
  5832. }
  5833. ],
  5834. "description": "Common interfaces for simple caching",
  5835. "keywords": [
  5836. "cache",
  5837. "caching",
  5838. "psr",
  5839. "psr-16",
  5840. "simple-cache"
  5841. ],
  5842. "support": {
  5843. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5844. },
  5845. "time": "2021-10-29T13:26:27+00:00"
  5846. },
  5847. {
  5848. "name": "ralouphie/getallheaders",
  5849. "version": "3.0.3",
  5850. "source": {
  5851. "type": "git",
  5852. "url": "https://github.com/ralouphie/getallheaders.git",
  5853. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5854. },
  5855. "dist": {
  5856. "type": "zip",
  5857. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5858. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5859. "shasum": ""
  5860. },
  5861. "require": {
  5862. "php": ">=5.6"
  5863. },
  5864. "require-dev": {
  5865. "php-coveralls/php-coveralls": "^2.1",
  5866. "phpunit/phpunit": "^5 || ^6.5"
  5867. },
  5868. "type": "library",
  5869. "autoload": {
  5870. "files": [
  5871. "src/getallheaders.php"
  5872. ]
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "MIT"
  5877. ],
  5878. "authors": [
  5879. {
  5880. "name": "Ralph Khattar",
  5881. "email": "ralph.khattar@gmail.com"
  5882. }
  5883. ],
  5884. "description": "A polyfill for getallheaders.",
  5885. "support": {
  5886. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5887. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5888. },
  5889. "time": "2019-03-08T08:55:37+00:00"
  5890. },
  5891. {
  5892. "name": "swow/psr7-plus",
  5893. "version": "v1.1.2",
  5894. "source": {
  5895. "type": "git",
  5896. "url": "https://github.com/swow/psr7-plus.git",
  5897. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5898. },
  5899. "dist": {
  5900. "type": "zip",
  5901. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5902. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5903. "shasum": ""
  5904. },
  5905. "require": {
  5906. "php": ">=8.0",
  5907. "psr/http-client": "^1.0",
  5908. "psr/http-factory": "^1.0",
  5909. "psr/http-message": "^1.1|^2.0"
  5910. },
  5911. "type": "library",
  5912. "autoload": {
  5913. "psr-4": {
  5914. "Swow\\Psr7\\Message\\": "src/Message/"
  5915. }
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "Apache-2.0"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "twose",
  5924. "email": "twosee@php.net"
  5925. }
  5926. ],
  5927. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5928. "keywords": [
  5929. "http",
  5930. "psr17",
  5931. "psr7",
  5932. "swow",
  5933. "websocket"
  5934. ],
  5935. "support": {
  5936. "issues": "https://github.com/swow/swow",
  5937. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5938. },
  5939. "time": "2023-06-15T09:18:11+00:00"
  5940. },
  5941. {
  5942. "name": "symfony/console",
  5943. "version": "v6.4.15",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/symfony/console.git",
  5947. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  5952. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  5953. "shasum": ""
  5954. },
  5955. "require": {
  5956. "php": ">=8.1",
  5957. "symfony/deprecation-contracts": "^2.5|^3",
  5958. "symfony/polyfill-mbstring": "~1.0",
  5959. "symfony/service-contracts": "^2.5|^3",
  5960. "symfony/string": "^5.4|^6.0|^7.0"
  5961. },
  5962. "conflict": {
  5963. "symfony/dependency-injection": "<5.4",
  5964. "symfony/dotenv": "<5.4",
  5965. "symfony/event-dispatcher": "<5.4",
  5966. "symfony/lock": "<5.4",
  5967. "symfony/process": "<5.4"
  5968. },
  5969. "provide": {
  5970. "psr/log-implementation": "1.0|2.0|3.0"
  5971. },
  5972. "require-dev": {
  5973. "psr/log": "^1|^2|^3",
  5974. "symfony/config": "^5.4|^6.0|^7.0",
  5975. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5976. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5977. "symfony/http-foundation": "^6.4|^7.0",
  5978. "symfony/http-kernel": "^6.4|^7.0",
  5979. "symfony/lock": "^5.4|^6.0|^7.0",
  5980. "symfony/messenger": "^5.4|^6.0|^7.0",
  5981. "symfony/process": "^5.4|^6.0|^7.0",
  5982. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5983. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5984. },
  5985. "type": "library",
  5986. "autoload": {
  5987. "psr-4": {
  5988. "Symfony\\Component\\Console\\": ""
  5989. },
  5990. "exclude-from-classmap": [
  5991. "/Tests/"
  5992. ]
  5993. },
  5994. "notification-url": "https://packagist.org/downloads/",
  5995. "license": [
  5996. "MIT"
  5997. ],
  5998. "authors": [
  5999. {
  6000. "name": "Fabien Potencier",
  6001. "email": "fabien@symfony.com"
  6002. },
  6003. {
  6004. "name": "Symfony Community",
  6005. "homepage": "https://symfony.com/contributors"
  6006. }
  6007. ],
  6008. "description": "Eases the creation of beautiful and testable command line interfaces",
  6009. "homepage": "https://symfony.com",
  6010. "keywords": [
  6011. "cli",
  6012. "command-line",
  6013. "console",
  6014. "terminal"
  6015. ],
  6016. "support": {
  6017. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6018. },
  6019. "funding": [
  6020. {
  6021. "url": "https://symfony.com/sponsor",
  6022. "type": "custom"
  6023. },
  6024. {
  6025. "url": "https://github.com/fabpot",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6030. "type": "tidelift"
  6031. }
  6032. ],
  6033. "time": "2024-11-06T14:19:14+00:00"
  6034. },
  6035. {
  6036. "name": "symfony/deprecation-contracts",
  6037. "version": "v3.5.1",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/symfony/deprecation-contracts.git",
  6041. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6046. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6047. "shasum": ""
  6048. },
  6049. "require": {
  6050. "php": ">=8.1"
  6051. },
  6052. "type": "library",
  6053. "extra": {
  6054. "branch-alias": {
  6055. "dev-main": "3.5-dev"
  6056. },
  6057. "thanks": {
  6058. "name": "symfony/contracts",
  6059. "url": "https://github.com/symfony/contracts"
  6060. }
  6061. },
  6062. "autoload": {
  6063. "files": [
  6064. "function.php"
  6065. ]
  6066. },
  6067. "notification-url": "https://packagist.org/downloads/",
  6068. "license": [
  6069. "MIT"
  6070. ],
  6071. "authors": [
  6072. {
  6073. "name": "Nicolas Grekas",
  6074. "email": "p@tchwork.com"
  6075. },
  6076. {
  6077. "name": "Symfony Community",
  6078. "homepage": "https://symfony.com/contributors"
  6079. }
  6080. ],
  6081. "description": "A generic function and convention to trigger deprecation notices",
  6082. "homepage": "https://symfony.com",
  6083. "support": {
  6084. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6085. },
  6086. "funding": [
  6087. {
  6088. "url": "https://symfony.com/sponsor",
  6089. "type": "custom"
  6090. },
  6091. {
  6092. "url": "https://github.com/fabpot",
  6093. "type": "github"
  6094. },
  6095. {
  6096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6097. "type": "tidelift"
  6098. }
  6099. ],
  6100. "time": "2024-09-25T14:20:29+00:00"
  6101. },
  6102. {
  6103. "name": "symfony/finder",
  6104. "version": "v6.4.13",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://github.com/symfony/finder.git",
  6108. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6113. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6114. "shasum": ""
  6115. },
  6116. "require": {
  6117. "php": ">=8.1"
  6118. },
  6119. "require-dev": {
  6120. "symfony/filesystem": "^6.0|^7.0"
  6121. },
  6122. "type": "library",
  6123. "autoload": {
  6124. "psr-4": {
  6125. "Symfony\\Component\\Finder\\": ""
  6126. },
  6127. "exclude-from-classmap": [
  6128. "/Tests/"
  6129. ]
  6130. },
  6131. "notification-url": "https://packagist.org/downloads/",
  6132. "license": [
  6133. "MIT"
  6134. ],
  6135. "authors": [
  6136. {
  6137. "name": "Fabien Potencier",
  6138. "email": "fabien@symfony.com"
  6139. },
  6140. {
  6141. "name": "Symfony Community",
  6142. "homepage": "https://symfony.com/contributors"
  6143. }
  6144. ],
  6145. "description": "Finds files and directories via an intuitive fluent interface",
  6146. "homepage": "https://symfony.com",
  6147. "support": {
  6148. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  6149. },
  6150. "funding": [
  6151. {
  6152. "url": "https://symfony.com/sponsor",
  6153. "type": "custom"
  6154. },
  6155. {
  6156. "url": "https://github.com/fabpot",
  6157. "type": "github"
  6158. },
  6159. {
  6160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6161. "type": "tidelift"
  6162. }
  6163. ],
  6164. "time": "2024-10-01T08:30:56+00:00"
  6165. },
  6166. {
  6167. "name": "symfony/polyfill-ctype",
  6168. "version": "v1.31.0",
  6169. "source": {
  6170. "type": "git",
  6171. "url": "https://github.com/symfony/polyfill-ctype.git",
  6172. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6173. },
  6174. "dist": {
  6175. "type": "zip",
  6176. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6177. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6178. "shasum": ""
  6179. },
  6180. "require": {
  6181. "php": ">=7.2"
  6182. },
  6183. "provide": {
  6184. "ext-ctype": "*"
  6185. },
  6186. "suggest": {
  6187. "ext-ctype": "For best performance"
  6188. },
  6189. "type": "library",
  6190. "extra": {
  6191. "thanks": {
  6192. "name": "symfony/polyfill",
  6193. "url": "https://github.com/symfony/polyfill"
  6194. }
  6195. },
  6196. "autoload": {
  6197. "files": [
  6198. "bootstrap.php"
  6199. ],
  6200. "psr-4": {
  6201. "Symfony\\Polyfill\\Ctype\\": ""
  6202. }
  6203. },
  6204. "notification-url": "https://packagist.org/downloads/",
  6205. "license": [
  6206. "MIT"
  6207. ],
  6208. "authors": [
  6209. {
  6210. "name": "Gert de Pagter",
  6211. "email": "BackEndTea@gmail.com"
  6212. },
  6213. {
  6214. "name": "Symfony Community",
  6215. "homepage": "https://symfony.com/contributors"
  6216. }
  6217. ],
  6218. "description": "Symfony polyfill for ctype functions",
  6219. "homepage": "https://symfony.com",
  6220. "keywords": [
  6221. "compatibility",
  6222. "ctype",
  6223. "polyfill",
  6224. "portable"
  6225. ],
  6226. "support": {
  6227. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6228. },
  6229. "funding": [
  6230. {
  6231. "url": "https://symfony.com/sponsor",
  6232. "type": "custom"
  6233. },
  6234. {
  6235. "url": "https://github.com/fabpot",
  6236. "type": "github"
  6237. },
  6238. {
  6239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6240. "type": "tidelift"
  6241. }
  6242. ],
  6243. "time": "2024-09-09T11:45:10+00:00"
  6244. },
  6245. {
  6246. "name": "symfony/polyfill-intl-grapheme",
  6247. "version": "v1.31.0",
  6248. "source": {
  6249. "type": "git",
  6250. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6251. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6252. },
  6253. "dist": {
  6254. "type": "zip",
  6255. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6256. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6257. "shasum": ""
  6258. },
  6259. "require": {
  6260. "php": ">=7.2"
  6261. },
  6262. "suggest": {
  6263. "ext-intl": "For best performance"
  6264. },
  6265. "type": "library",
  6266. "extra": {
  6267. "thanks": {
  6268. "name": "symfony/polyfill",
  6269. "url": "https://github.com/symfony/polyfill"
  6270. }
  6271. },
  6272. "autoload": {
  6273. "files": [
  6274. "bootstrap.php"
  6275. ],
  6276. "psr-4": {
  6277. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6278. }
  6279. },
  6280. "notification-url": "https://packagist.org/downloads/",
  6281. "license": [
  6282. "MIT"
  6283. ],
  6284. "authors": [
  6285. {
  6286. "name": "Nicolas Grekas",
  6287. "email": "p@tchwork.com"
  6288. },
  6289. {
  6290. "name": "Symfony Community",
  6291. "homepage": "https://symfony.com/contributors"
  6292. }
  6293. ],
  6294. "description": "Symfony polyfill for intl's grapheme_* functions",
  6295. "homepage": "https://symfony.com",
  6296. "keywords": [
  6297. "compatibility",
  6298. "grapheme",
  6299. "intl",
  6300. "polyfill",
  6301. "portable",
  6302. "shim"
  6303. ],
  6304. "support": {
  6305. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6306. },
  6307. "funding": [
  6308. {
  6309. "url": "https://symfony.com/sponsor",
  6310. "type": "custom"
  6311. },
  6312. {
  6313. "url": "https://github.com/fabpot",
  6314. "type": "github"
  6315. },
  6316. {
  6317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6318. "type": "tidelift"
  6319. }
  6320. ],
  6321. "time": "2024-09-09T11:45:10+00:00"
  6322. },
  6323. {
  6324. "name": "symfony/polyfill-intl-normalizer",
  6325. "version": "v1.31.0",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6329. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6334. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "php": ">=7.2"
  6339. },
  6340. "suggest": {
  6341. "ext-intl": "For best performance"
  6342. },
  6343. "type": "library",
  6344. "extra": {
  6345. "thanks": {
  6346. "name": "symfony/polyfill",
  6347. "url": "https://github.com/symfony/polyfill"
  6348. }
  6349. },
  6350. "autoload": {
  6351. "files": [
  6352. "bootstrap.php"
  6353. ],
  6354. "psr-4": {
  6355. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6356. },
  6357. "classmap": [
  6358. "Resources/stubs"
  6359. ]
  6360. },
  6361. "notification-url": "https://packagist.org/downloads/",
  6362. "license": [
  6363. "MIT"
  6364. ],
  6365. "authors": [
  6366. {
  6367. "name": "Nicolas Grekas",
  6368. "email": "p@tchwork.com"
  6369. },
  6370. {
  6371. "name": "Symfony Community",
  6372. "homepage": "https://symfony.com/contributors"
  6373. }
  6374. ],
  6375. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6376. "homepage": "https://symfony.com",
  6377. "keywords": [
  6378. "compatibility",
  6379. "intl",
  6380. "normalizer",
  6381. "polyfill",
  6382. "portable",
  6383. "shim"
  6384. ],
  6385. "support": {
  6386. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6387. },
  6388. "funding": [
  6389. {
  6390. "url": "https://symfony.com/sponsor",
  6391. "type": "custom"
  6392. },
  6393. {
  6394. "url": "https://github.com/fabpot",
  6395. "type": "github"
  6396. },
  6397. {
  6398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6399. "type": "tidelift"
  6400. }
  6401. ],
  6402. "time": "2024-09-09T11:45:10+00:00"
  6403. },
  6404. {
  6405. "name": "symfony/polyfill-mbstring",
  6406. "version": "v1.31.0",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6410. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6415. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6416. "shasum": ""
  6417. },
  6418. "require": {
  6419. "php": ">=7.2"
  6420. },
  6421. "provide": {
  6422. "ext-mbstring": "*"
  6423. },
  6424. "suggest": {
  6425. "ext-mbstring": "For best performance"
  6426. },
  6427. "type": "library",
  6428. "extra": {
  6429. "thanks": {
  6430. "name": "symfony/polyfill",
  6431. "url": "https://github.com/symfony/polyfill"
  6432. }
  6433. },
  6434. "autoload": {
  6435. "files": [
  6436. "bootstrap.php"
  6437. ],
  6438. "psr-4": {
  6439. "Symfony\\Polyfill\\Mbstring\\": ""
  6440. }
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "MIT"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "Nicolas Grekas",
  6449. "email": "p@tchwork.com"
  6450. },
  6451. {
  6452. "name": "Symfony Community",
  6453. "homepage": "https://symfony.com/contributors"
  6454. }
  6455. ],
  6456. "description": "Symfony polyfill for the Mbstring extension",
  6457. "homepage": "https://symfony.com",
  6458. "keywords": [
  6459. "compatibility",
  6460. "mbstring",
  6461. "polyfill",
  6462. "portable",
  6463. "shim"
  6464. ],
  6465. "support": {
  6466. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6467. },
  6468. "funding": [
  6469. {
  6470. "url": "https://symfony.com/sponsor",
  6471. "type": "custom"
  6472. },
  6473. {
  6474. "url": "https://github.com/fabpot",
  6475. "type": "github"
  6476. },
  6477. {
  6478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6479. "type": "tidelift"
  6480. }
  6481. ],
  6482. "time": "2024-09-09T11:45:10+00:00"
  6483. },
  6484. {
  6485. "name": "symfony/polyfill-php80",
  6486. "version": "v1.31.0",
  6487. "source": {
  6488. "type": "git",
  6489. "url": "https://github.com/symfony/polyfill-php80.git",
  6490. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6491. },
  6492. "dist": {
  6493. "type": "zip",
  6494. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6495. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6496. "shasum": ""
  6497. },
  6498. "require": {
  6499. "php": ">=7.2"
  6500. },
  6501. "type": "library",
  6502. "extra": {
  6503. "thanks": {
  6504. "name": "symfony/polyfill",
  6505. "url": "https://github.com/symfony/polyfill"
  6506. }
  6507. },
  6508. "autoload": {
  6509. "files": [
  6510. "bootstrap.php"
  6511. ],
  6512. "psr-4": {
  6513. "Symfony\\Polyfill\\Php80\\": ""
  6514. },
  6515. "classmap": [
  6516. "Resources/stubs"
  6517. ]
  6518. },
  6519. "notification-url": "https://packagist.org/downloads/",
  6520. "license": [
  6521. "MIT"
  6522. ],
  6523. "authors": [
  6524. {
  6525. "name": "Ion Bazan",
  6526. "email": "ion.bazan@gmail.com"
  6527. },
  6528. {
  6529. "name": "Nicolas Grekas",
  6530. "email": "p@tchwork.com"
  6531. },
  6532. {
  6533. "name": "Symfony Community",
  6534. "homepage": "https://symfony.com/contributors"
  6535. }
  6536. ],
  6537. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6538. "homepage": "https://symfony.com",
  6539. "keywords": [
  6540. "compatibility",
  6541. "polyfill",
  6542. "portable",
  6543. "shim"
  6544. ],
  6545. "support": {
  6546. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6547. },
  6548. "funding": [
  6549. {
  6550. "url": "https://symfony.com/sponsor",
  6551. "type": "custom"
  6552. },
  6553. {
  6554. "url": "https://github.com/fabpot",
  6555. "type": "github"
  6556. },
  6557. {
  6558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6559. "type": "tidelift"
  6560. }
  6561. ],
  6562. "time": "2024-09-09T11:45:10+00:00"
  6563. },
  6564. {
  6565. "name": "symfony/service-contracts",
  6566. "version": "v3.5.1",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/symfony/service-contracts.git",
  6570. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6575. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6576. "shasum": ""
  6577. },
  6578. "require": {
  6579. "php": ">=8.1",
  6580. "psr/container": "^1.1|^2.0",
  6581. "symfony/deprecation-contracts": "^2.5|^3"
  6582. },
  6583. "conflict": {
  6584. "ext-psr": "<1.1|>=2"
  6585. },
  6586. "type": "library",
  6587. "extra": {
  6588. "branch-alias": {
  6589. "dev-main": "3.5-dev"
  6590. },
  6591. "thanks": {
  6592. "name": "symfony/contracts",
  6593. "url": "https://github.com/symfony/contracts"
  6594. }
  6595. },
  6596. "autoload": {
  6597. "psr-4": {
  6598. "Symfony\\Contracts\\Service\\": ""
  6599. },
  6600. "exclude-from-classmap": [
  6601. "/Test/"
  6602. ]
  6603. },
  6604. "notification-url": "https://packagist.org/downloads/",
  6605. "license": [
  6606. "MIT"
  6607. ],
  6608. "authors": [
  6609. {
  6610. "name": "Nicolas Grekas",
  6611. "email": "p@tchwork.com"
  6612. },
  6613. {
  6614. "name": "Symfony Community",
  6615. "homepage": "https://symfony.com/contributors"
  6616. }
  6617. ],
  6618. "description": "Generic abstractions related to writing services",
  6619. "homepage": "https://symfony.com",
  6620. "keywords": [
  6621. "abstractions",
  6622. "contracts",
  6623. "decoupling",
  6624. "interfaces",
  6625. "interoperability",
  6626. "standards"
  6627. ],
  6628. "support": {
  6629. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  6630. },
  6631. "funding": [
  6632. {
  6633. "url": "https://symfony.com/sponsor",
  6634. "type": "custom"
  6635. },
  6636. {
  6637. "url": "https://github.com/fabpot",
  6638. "type": "github"
  6639. },
  6640. {
  6641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6642. "type": "tidelift"
  6643. }
  6644. ],
  6645. "time": "2024-09-25T14:20:29+00:00"
  6646. },
  6647. {
  6648. "name": "symfony/string",
  6649. "version": "v6.4.15",
  6650. "source": {
  6651. "type": "git",
  6652. "url": "https://github.com/symfony/string.git",
  6653. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  6654. },
  6655. "dist": {
  6656. "type": "zip",
  6657. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  6658. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  6659. "shasum": ""
  6660. },
  6661. "require": {
  6662. "php": ">=8.1",
  6663. "symfony/polyfill-ctype": "~1.8",
  6664. "symfony/polyfill-intl-grapheme": "~1.0",
  6665. "symfony/polyfill-intl-normalizer": "~1.0",
  6666. "symfony/polyfill-mbstring": "~1.0"
  6667. },
  6668. "conflict": {
  6669. "symfony/translation-contracts": "<2.5"
  6670. },
  6671. "require-dev": {
  6672. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6673. "symfony/http-client": "^5.4|^6.0|^7.0",
  6674. "symfony/intl": "^6.2|^7.0",
  6675. "symfony/translation-contracts": "^2.5|^3.0",
  6676. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6677. },
  6678. "type": "library",
  6679. "autoload": {
  6680. "files": [
  6681. "Resources/functions.php"
  6682. ],
  6683. "psr-4": {
  6684. "Symfony\\Component\\String\\": ""
  6685. },
  6686. "exclude-from-classmap": [
  6687. "/Tests/"
  6688. ]
  6689. },
  6690. "notification-url": "https://packagist.org/downloads/",
  6691. "license": [
  6692. "MIT"
  6693. ],
  6694. "authors": [
  6695. {
  6696. "name": "Nicolas Grekas",
  6697. "email": "p@tchwork.com"
  6698. },
  6699. {
  6700. "name": "Symfony Community",
  6701. "homepage": "https://symfony.com/contributors"
  6702. }
  6703. ],
  6704. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6705. "homepage": "https://symfony.com",
  6706. "keywords": [
  6707. "grapheme",
  6708. "i18n",
  6709. "string",
  6710. "unicode",
  6711. "utf-8",
  6712. "utf8"
  6713. ],
  6714. "support": {
  6715. "source": "https://github.com/symfony/string/tree/v6.4.15"
  6716. },
  6717. "funding": [
  6718. {
  6719. "url": "https://symfony.com/sponsor",
  6720. "type": "custom"
  6721. },
  6722. {
  6723. "url": "https://github.com/fabpot",
  6724. "type": "github"
  6725. },
  6726. {
  6727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6728. "type": "tidelift"
  6729. }
  6730. ],
  6731. "time": "2024-11-13T13:31:12+00:00"
  6732. },
  6733. {
  6734. "name": "symfony/translation",
  6735. "version": "v6.4.13",
  6736. "source": {
  6737. "type": "git",
  6738. "url": "https://github.com/symfony/translation.git",
  6739. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  6740. },
  6741. "dist": {
  6742. "type": "zip",
  6743. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6744. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6745. "shasum": ""
  6746. },
  6747. "require": {
  6748. "php": ">=8.1",
  6749. "symfony/deprecation-contracts": "^2.5|^3",
  6750. "symfony/polyfill-mbstring": "~1.0",
  6751. "symfony/translation-contracts": "^2.5|^3.0"
  6752. },
  6753. "conflict": {
  6754. "symfony/config": "<5.4",
  6755. "symfony/console": "<5.4",
  6756. "symfony/dependency-injection": "<5.4",
  6757. "symfony/http-client-contracts": "<2.5",
  6758. "symfony/http-kernel": "<5.4",
  6759. "symfony/service-contracts": "<2.5",
  6760. "symfony/twig-bundle": "<5.4",
  6761. "symfony/yaml": "<5.4"
  6762. },
  6763. "provide": {
  6764. "symfony/translation-implementation": "2.3|3.0"
  6765. },
  6766. "require-dev": {
  6767. "nikic/php-parser": "^4.18|^5.0",
  6768. "psr/log": "^1|^2|^3",
  6769. "symfony/config": "^5.4|^6.0|^7.0",
  6770. "symfony/console": "^5.4|^6.0|^7.0",
  6771. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6772. "symfony/finder": "^5.4|^6.0|^7.0",
  6773. "symfony/http-client-contracts": "^2.5|^3.0",
  6774. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6775. "symfony/intl": "^5.4|^6.0|^7.0",
  6776. "symfony/polyfill-intl-icu": "^1.21",
  6777. "symfony/routing": "^5.4|^6.0|^7.0",
  6778. "symfony/service-contracts": "^2.5|^3",
  6779. "symfony/yaml": "^5.4|^6.0|^7.0"
  6780. },
  6781. "type": "library",
  6782. "autoload": {
  6783. "files": [
  6784. "Resources/functions.php"
  6785. ],
  6786. "psr-4": {
  6787. "Symfony\\Component\\Translation\\": ""
  6788. },
  6789. "exclude-from-classmap": [
  6790. "/Tests/"
  6791. ]
  6792. },
  6793. "notification-url": "https://packagist.org/downloads/",
  6794. "license": [
  6795. "MIT"
  6796. ],
  6797. "authors": [
  6798. {
  6799. "name": "Fabien Potencier",
  6800. "email": "fabien@symfony.com"
  6801. },
  6802. {
  6803. "name": "Symfony Community",
  6804. "homepage": "https://symfony.com/contributors"
  6805. }
  6806. ],
  6807. "description": "Provides tools to internationalize your application",
  6808. "homepage": "https://symfony.com",
  6809. "support": {
  6810. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  6811. },
  6812. "funding": [
  6813. {
  6814. "url": "https://symfony.com/sponsor",
  6815. "type": "custom"
  6816. },
  6817. {
  6818. "url": "https://github.com/fabpot",
  6819. "type": "github"
  6820. },
  6821. {
  6822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6823. "type": "tidelift"
  6824. }
  6825. ],
  6826. "time": "2024-09-27T18:14:25+00:00"
  6827. },
  6828. {
  6829. "name": "symfony/translation-contracts",
  6830. "version": "v3.5.1",
  6831. "source": {
  6832. "type": "git",
  6833. "url": "https://github.com/symfony/translation-contracts.git",
  6834. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  6835. },
  6836. "dist": {
  6837. "type": "zip",
  6838. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  6839. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  6840. "shasum": ""
  6841. },
  6842. "require": {
  6843. "php": ">=8.1"
  6844. },
  6845. "type": "library",
  6846. "extra": {
  6847. "branch-alias": {
  6848. "dev-main": "3.5-dev"
  6849. },
  6850. "thanks": {
  6851. "name": "symfony/contracts",
  6852. "url": "https://github.com/symfony/contracts"
  6853. }
  6854. },
  6855. "autoload": {
  6856. "psr-4": {
  6857. "Symfony\\Contracts\\Translation\\": ""
  6858. },
  6859. "exclude-from-classmap": [
  6860. "/Test/"
  6861. ]
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "MIT"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Nicolas Grekas",
  6870. "email": "p@tchwork.com"
  6871. },
  6872. {
  6873. "name": "Symfony Community",
  6874. "homepage": "https://symfony.com/contributors"
  6875. }
  6876. ],
  6877. "description": "Generic abstractions related to translation",
  6878. "homepage": "https://symfony.com",
  6879. "keywords": [
  6880. "abstractions",
  6881. "contracts",
  6882. "decoupling",
  6883. "interfaces",
  6884. "interoperability",
  6885. "standards"
  6886. ],
  6887. "support": {
  6888. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  6889. },
  6890. "funding": [
  6891. {
  6892. "url": "https://symfony.com/sponsor",
  6893. "type": "custom"
  6894. },
  6895. {
  6896. "url": "https://github.com/fabpot",
  6897. "type": "github"
  6898. },
  6899. {
  6900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6901. "type": "tidelift"
  6902. }
  6903. ],
  6904. "time": "2024-09-25T14:20:29+00:00"
  6905. },
  6906. {
  6907. "name": "vlucas/phpdotenv",
  6908. "version": "v5.6.1",
  6909. "source": {
  6910. "type": "git",
  6911. "url": "https://github.com/vlucas/phpdotenv.git",
  6912. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  6913. },
  6914. "dist": {
  6915. "type": "zip",
  6916. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6917. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6918. "shasum": ""
  6919. },
  6920. "require": {
  6921. "ext-pcre": "*",
  6922. "graham-campbell/result-type": "^1.1.3",
  6923. "php": "^7.2.5 || ^8.0",
  6924. "phpoption/phpoption": "^1.9.3",
  6925. "symfony/polyfill-ctype": "^1.24",
  6926. "symfony/polyfill-mbstring": "^1.24",
  6927. "symfony/polyfill-php80": "^1.24"
  6928. },
  6929. "require-dev": {
  6930. "bamarni/composer-bin-plugin": "^1.8.2",
  6931. "ext-filter": "*",
  6932. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6933. },
  6934. "suggest": {
  6935. "ext-filter": "Required to use the boolean validator."
  6936. },
  6937. "type": "library",
  6938. "extra": {
  6939. "bamarni-bin": {
  6940. "bin-links": true,
  6941. "forward-command": false
  6942. },
  6943. "branch-alias": {
  6944. "dev-master": "5.6-dev"
  6945. }
  6946. },
  6947. "autoload": {
  6948. "psr-4": {
  6949. "Dotenv\\": "src/"
  6950. }
  6951. },
  6952. "notification-url": "https://packagist.org/downloads/",
  6953. "license": [
  6954. "BSD-3-Clause"
  6955. ],
  6956. "authors": [
  6957. {
  6958. "name": "Graham Campbell",
  6959. "email": "hello@gjcampbell.co.uk",
  6960. "homepage": "https://github.com/GrahamCampbell"
  6961. },
  6962. {
  6963. "name": "Vance Lucas",
  6964. "email": "vance@vancelucas.com",
  6965. "homepage": "https://github.com/vlucas"
  6966. }
  6967. ],
  6968. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6969. "keywords": [
  6970. "dotenv",
  6971. "env",
  6972. "environment"
  6973. ],
  6974. "support": {
  6975. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6976. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  6977. },
  6978. "funding": [
  6979. {
  6980. "url": "https://github.com/GrahamCampbell",
  6981. "type": "github"
  6982. },
  6983. {
  6984. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6985. "type": "tidelift"
  6986. }
  6987. ],
  6988. "time": "2024-07-20T21:52:34+00:00"
  6989. }
  6990. ],
  6991. "packages-dev": [
  6992. {
  6993. "name": "clue/ndjson-react",
  6994. "version": "v1.3.0",
  6995. "source": {
  6996. "type": "git",
  6997. "url": "https://github.com/clue/reactphp-ndjson.git",
  6998. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6999. },
  7000. "dist": {
  7001. "type": "zip",
  7002. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7003. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7004. "shasum": ""
  7005. },
  7006. "require": {
  7007. "php": ">=5.3",
  7008. "react/stream": "^1.2"
  7009. },
  7010. "require-dev": {
  7011. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7012. "react/event-loop": "^1.2"
  7013. },
  7014. "type": "library",
  7015. "autoload": {
  7016. "psr-4": {
  7017. "Clue\\React\\NDJson\\": "src/"
  7018. }
  7019. },
  7020. "notification-url": "https://packagist.org/downloads/",
  7021. "license": [
  7022. "MIT"
  7023. ],
  7024. "authors": [
  7025. {
  7026. "name": "Christian Lück",
  7027. "email": "christian@clue.engineering"
  7028. }
  7029. ],
  7030. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7031. "homepage": "https://github.com/clue/reactphp-ndjson",
  7032. "keywords": [
  7033. "NDJSON",
  7034. "json",
  7035. "jsonlines",
  7036. "newline",
  7037. "reactphp",
  7038. "streaming"
  7039. ],
  7040. "support": {
  7041. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7042. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7043. },
  7044. "funding": [
  7045. {
  7046. "url": "https://clue.engineering/support",
  7047. "type": "custom"
  7048. },
  7049. {
  7050. "url": "https://github.com/clue",
  7051. "type": "github"
  7052. }
  7053. ],
  7054. "time": "2022-12-23T10:58:28+00:00"
  7055. },
  7056. {
  7057. "name": "composer/pcre",
  7058. "version": "3.3.2",
  7059. "source": {
  7060. "type": "git",
  7061. "url": "https://github.com/composer/pcre.git",
  7062. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  7063. },
  7064. "dist": {
  7065. "type": "zip",
  7066. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7067. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7068. "shasum": ""
  7069. },
  7070. "require": {
  7071. "php": "^7.4 || ^8.0"
  7072. },
  7073. "conflict": {
  7074. "phpstan/phpstan": "<1.11.10"
  7075. },
  7076. "require-dev": {
  7077. "phpstan/phpstan": "^1.12 || ^2",
  7078. "phpstan/phpstan-strict-rules": "^1 || ^2",
  7079. "phpunit/phpunit": "^8 || ^9"
  7080. },
  7081. "type": "library",
  7082. "extra": {
  7083. "branch-alias": {
  7084. "dev-main": "3.x-dev"
  7085. },
  7086. "phpstan": {
  7087. "includes": [
  7088. "extension.neon"
  7089. ]
  7090. }
  7091. },
  7092. "autoload": {
  7093. "psr-4": {
  7094. "Composer\\Pcre\\": "src"
  7095. }
  7096. },
  7097. "notification-url": "https://packagist.org/downloads/",
  7098. "license": [
  7099. "MIT"
  7100. ],
  7101. "authors": [
  7102. {
  7103. "name": "Jordi Boggiano",
  7104. "email": "j.boggiano@seld.be",
  7105. "homepage": "http://seld.be"
  7106. }
  7107. ],
  7108. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7109. "keywords": [
  7110. "PCRE",
  7111. "preg",
  7112. "regex",
  7113. "regular expression"
  7114. ],
  7115. "support": {
  7116. "issues": "https://github.com/composer/pcre/issues",
  7117. "source": "https://github.com/composer/pcre/tree/3.3.2"
  7118. },
  7119. "funding": [
  7120. {
  7121. "url": "https://packagist.com",
  7122. "type": "custom"
  7123. },
  7124. {
  7125. "url": "https://github.com/composer",
  7126. "type": "github"
  7127. },
  7128. {
  7129. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7130. "type": "tidelift"
  7131. }
  7132. ],
  7133. "time": "2024-11-12T16:29:46+00:00"
  7134. },
  7135. {
  7136. "name": "composer/semver",
  7137. "version": "3.4.3",
  7138. "source": {
  7139. "type": "git",
  7140. "url": "https://github.com/composer/semver.git",
  7141. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7142. },
  7143. "dist": {
  7144. "type": "zip",
  7145. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7146. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7147. "shasum": ""
  7148. },
  7149. "require": {
  7150. "php": "^5.3.2 || ^7.0 || ^8.0"
  7151. },
  7152. "require-dev": {
  7153. "phpstan/phpstan": "^1.11",
  7154. "symfony/phpunit-bridge": "^3 || ^7"
  7155. },
  7156. "type": "library",
  7157. "extra": {
  7158. "branch-alias": {
  7159. "dev-main": "3.x-dev"
  7160. }
  7161. },
  7162. "autoload": {
  7163. "psr-4": {
  7164. "Composer\\Semver\\": "src"
  7165. }
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "MIT"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Nils Adermann",
  7174. "email": "naderman@naderman.de",
  7175. "homepage": "http://www.naderman.de"
  7176. },
  7177. {
  7178. "name": "Jordi Boggiano",
  7179. "email": "j.boggiano@seld.be",
  7180. "homepage": "http://seld.be"
  7181. },
  7182. {
  7183. "name": "Rob Bast",
  7184. "email": "rob.bast@gmail.com",
  7185. "homepage": "http://robbast.nl"
  7186. }
  7187. ],
  7188. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7189. "keywords": [
  7190. "semantic",
  7191. "semver",
  7192. "validation",
  7193. "versioning"
  7194. ],
  7195. "support": {
  7196. "irc": "ircs://irc.libera.chat:6697/composer",
  7197. "issues": "https://github.com/composer/semver/issues",
  7198. "source": "https://github.com/composer/semver/tree/3.4.3"
  7199. },
  7200. "funding": [
  7201. {
  7202. "url": "https://packagist.com",
  7203. "type": "custom"
  7204. },
  7205. {
  7206. "url": "https://github.com/composer",
  7207. "type": "github"
  7208. },
  7209. {
  7210. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7211. "type": "tidelift"
  7212. }
  7213. ],
  7214. "time": "2024-09-19T14:15:21+00:00"
  7215. },
  7216. {
  7217. "name": "composer/xdebug-handler",
  7218. "version": "3.0.5",
  7219. "source": {
  7220. "type": "git",
  7221. "url": "https://github.com/composer/xdebug-handler.git",
  7222. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7223. },
  7224. "dist": {
  7225. "type": "zip",
  7226. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7227. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7228. "shasum": ""
  7229. },
  7230. "require": {
  7231. "composer/pcre": "^1 || ^2 || ^3",
  7232. "php": "^7.2.5 || ^8.0",
  7233. "psr/log": "^1 || ^2 || ^3"
  7234. },
  7235. "require-dev": {
  7236. "phpstan/phpstan": "^1.0",
  7237. "phpstan/phpstan-strict-rules": "^1.1",
  7238. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7239. },
  7240. "type": "library",
  7241. "autoload": {
  7242. "psr-4": {
  7243. "Composer\\XdebugHandler\\": "src"
  7244. }
  7245. },
  7246. "notification-url": "https://packagist.org/downloads/",
  7247. "license": [
  7248. "MIT"
  7249. ],
  7250. "authors": [
  7251. {
  7252. "name": "John Stevenson",
  7253. "email": "john-stevenson@blueyonder.co.uk"
  7254. }
  7255. ],
  7256. "description": "Restarts a process without Xdebug.",
  7257. "keywords": [
  7258. "Xdebug",
  7259. "performance"
  7260. ],
  7261. "support": {
  7262. "irc": "ircs://irc.libera.chat:6697/composer",
  7263. "issues": "https://github.com/composer/xdebug-handler/issues",
  7264. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7265. },
  7266. "funding": [
  7267. {
  7268. "url": "https://packagist.com",
  7269. "type": "custom"
  7270. },
  7271. {
  7272. "url": "https://github.com/composer",
  7273. "type": "github"
  7274. },
  7275. {
  7276. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7277. "type": "tidelift"
  7278. }
  7279. ],
  7280. "time": "2024-05-06T16:37:16+00:00"
  7281. },
  7282. {
  7283. "name": "evenement/evenement",
  7284. "version": "v3.0.2",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/igorw/evenement.git",
  7288. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7293. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": ">=7.0"
  7298. },
  7299. "require-dev": {
  7300. "phpunit/phpunit": "^9 || ^6"
  7301. },
  7302. "type": "library",
  7303. "autoload": {
  7304. "psr-4": {
  7305. "Evenement\\": "src/"
  7306. }
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "Igor Wiedler",
  7315. "email": "igor@wiedler.ch"
  7316. }
  7317. ],
  7318. "description": "Événement is a very simple event dispatching library for PHP",
  7319. "keywords": [
  7320. "event-dispatcher",
  7321. "event-emitter"
  7322. ],
  7323. "support": {
  7324. "issues": "https://github.com/igorw/evenement/issues",
  7325. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7326. },
  7327. "time": "2023-08-08T05:53:35+00:00"
  7328. },
  7329. {
  7330. "name": "fidry/cpu-core-counter",
  7331. "version": "1.2.0",
  7332. "source": {
  7333. "type": "git",
  7334. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7335. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7336. },
  7337. "dist": {
  7338. "type": "zip",
  7339. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7340. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7341. "shasum": ""
  7342. },
  7343. "require": {
  7344. "php": "^7.2 || ^8.0"
  7345. },
  7346. "require-dev": {
  7347. "fidry/makefile": "^0.2.0",
  7348. "fidry/php-cs-fixer-config": "^1.1.2",
  7349. "phpstan/extension-installer": "^1.2.0",
  7350. "phpstan/phpstan": "^1.9.2",
  7351. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7352. "phpstan/phpstan-phpunit": "^1.2.2",
  7353. "phpstan/phpstan-strict-rules": "^1.4.4",
  7354. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7355. "webmozarts/strict-phpunit": "^7.5"
  7356. },
  7357. "type": "library",
  7358. "autoload": {
  7359. "psr-4": {
  7360. "Fidry\\CpuCoreCounter\\": "src/"
  7361. }
  7362. },
  7363. "notification-url": "https://packagist.org/downloads/",
  7364. "license": [
  7365. "MIT"
  7366. ],
  7367. "authors": [
  7368. {
  7369. "name": "Théo FIDRY",
  7370. "email": "theo.fidry@gmail.com"
  7371. }
  7372. ],
  7373. "description": "Tiny utility to get the number of CPU cores.",
  7374. "keywords": [
  7375. "CPU",
  7376. "core"
  7377. ],
  7378. "support": {
  7379. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7380. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7381. },
  7382. "funding": [
  7383. {
  7384. "url": "https://github.com/theofidry",
  7385. "type": "github"
  7386. }
  7387. ],
  7388. "time": "2024-08-06T10:04:20+00:00"
  7389. },
  7390. {
  7391. "name": "friendsofphp/php-cs-fixer",
  7392. "version": "v3.65.0",
  7393. "source": {
  7394. "type": "git",
  7395. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7396. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  7397. },
  7398. "dist": {
  7399. "type": "zip",
  7400. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  7401. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  7402. "shasum": ""
  7403. },
  7404. "require": {
  7405. "clue/ndjson-react": "^1.0",
  7406. "composer/semver": "^3.4",
  7407. "composer/xdebug-handler": "^3.0.3",
  7408. "ext-filter": "*",
  7409. "ext-json": "*",
  7410. "ext-tokenizer": "*",
  7411. "fidry/cpu-core-counter": "^1.2",
  7412. "php": "^7.4 || ^8.0",
  7413. "react/child-process": "^0.6.5",
  7414. "react/event-loop": "^1.0",
  7415. "react/promise": "^2.0 || ^3.0",
  7416. "react/socket": "^1.0",
  7417. "react/stream": "^1.0",
  7418. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7419. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7420. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7421. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7422. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7423. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7424. "symfony/polyfill-mbstring": "^1.28",
  7425. "symfony/polyfill-php80": "^1.28",
  7426. "symfony/polyfill-php81": "^1.28",
  7427. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7428. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7429. },
  7430. "require-dev": {
  7431. "facile-it/paraunit": "^1.3.1 || ^2.4",
  7432. "infection/infection": "^0.29.8",
  7433. "justinrainbow/json-schema": "^5.3 || ^6.0",
  7434. "keradus/cli-executor": "^2.1",
  7435. "mikey179/vfsstream": "^1.6.12",
  7436. "php-coveralls/php-coveralls": "^2.7",
  7437. "php-cs-fixer/accessible-object": "^1.1",
  7438. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  7439. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  7440. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  7441. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  7442. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  7443. },
  7444. "suggest": {
  7445. "ext-dom": "For handling output formats in XML",
  7446. "ext-mbstring": "For handling non-UTF8 characters."
  7447. },
  7448. "bin": [
  7449. "php-cs-fixer"
  7450. ],
  7451. "type": "application",
  7452. "autoload": {
  7453. "psr-4": {
  7454. "PhpCsFixer\\": "src/"
  7455. },
  7456. "exclude-from-classmap": [
  7457. "src/Fixer/Internal/*"
  7458. ]
  7459. },
  7460. "notification-url": "https://packagist.org/downloads/",
  7461. "license": [
  7462. "MIT"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Fabien Potencier",
  7467. "email": "fabien@symfony.com"
  7468. },
  7469. {
  7470. "name": "Dariusz Rumiński",
  7471. "email": "dariusz.ruminski@gmail.com"
  7472. }
  7473. ],
  7474. "description": "A tool to automatically fix PHP code style",
  7475. "keywords": [
  7476. "Static code analysis",
  7477. "fixer",
  7478. "standards",
  7479. "static analysis"
  7480. ],
  7481. "support": {
  7482. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7483. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  7484. },
  7485. "funding": [
  7486. {
  7487. "url": "https://github.com/keradus",
  7488. "type": "github"
  7489. }
  7490. ],
  7491. "time": "2024-11-25T00:39:24+00:00"
  7492. },
  7493. {
  7494. "name": "hamcrest/hamcrest-php",
  7495. "version": "v2.0.1",
  7496. "source": {
  7497. "type": "git",
  7498. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7499. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7500. },
  7501. "dist": {
  7502. "type": "zip",
  7503. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7504. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7505. "shasum": ""
  7506. },
  7507. "require": {
  7508. "php": "^5.3|^7.0|^8.0"
  7509. },
  7510. "replace": {
  7511. "cordoval/hamcrest-php": "*",
  7512. "davedevelopment/hamcrest-php": "*",
  7513. "kodova/hamcrest-php": "*"
  7514. },
  7515. "require-dev": {
  7516. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7517. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7518. },
  7519. "type": "library",
  7520. "extra": {
  7521. "branch-alias": {
  7522. "dev-master": "2.1-dev"
  7523. }
  7524. },
  7525. "autoload": {
  7526. "classmap": [
  7527. "hamcrest"
  7528. ]
  7529. },
  7530. "notification-url": "https://packagist.org/downloads/",
  7531. "license": [
  7532. "BSD-3-Clause"
  7533. ],
  7534. "description": "This is the PHP port of Hamcrest Matchers",
  7535. "keywords": [
  7536. "test"
  7537. ],
  7538. "support": {
  7539. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7540. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7541. },
  7542. "time": "2020-07-09T08:09:16+00:00"
  7543. },
  7544. {
  7545. "name": "hyperf/devtool",
  7546. "version": "v3.1.42",
  7547. "source": {
  7548. "type": "git",
  7549. "url": "https://github.com/hyperf/devtool.git",
  7550. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  7551. },
  7552. "dist": {
  7553. "type": "zip",
  7554. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7555. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7556. "shasum": ""
  7557. },
  7558. "require": {
  7559. "hyperf/code-parser": "~3.1.0",
  7560. "hyperf/command": "~3.1.0",
  7561. "hyperf/contract": "~3.1.0",
  7562. "hyperf/di": "~3.1.0",
  7563. "hyperf/support": "~3.1.0",
  7564. "hyperf/utils": "~3.1.0",
  7565. "php": ">=8.1"
  7566. },
  7567. "type": "library",
  7568. "extra": {
  7569. "branch-alias": {
  7570. "dev-master": "3.1-dev"
  7571. },
  7572. "hyperf": {
  7573. "config": "Hyperf\\Devtool\\ConfigProvider"
  7574. }
  7575. },
  7576. "autoload": {
  7577. "psr-4": {
  7578. "Hyperf\\Devtool\\": "src/"
  7579. }
  7580. },
  7581. "notification-url": "https://packagist.org/downloads/",
  7582. "license": [
  7583. "MIT"
  7584. ],
  7585. "description": "A Devtool for Hyperf.",
  7586. "homepage": "https://hyperf.io",
  7587. "keywords": [
  7588. "dev",
  7589. "devtool",
  7590. "hyperf",
  7591. "php",
  7592. "swoole"
  7593. ],
  7594. "support": {
  7595. "docs": "https://hyperf.wiki",
  7596. "issues": "https://github.com/hyperf/hyperf/issues",
  7597. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7598. "source": "https://github.com/hyperf/hyperf"
  7599. },
  7600. "funding": [
  7601. {
  7602. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7603. "type": "custom"
  7604. },
  7605. {
  7606. "url": "https://opencollective.com/hyperf",
  7607. "type": "open_collective"
  7608. }
  7609. ],
  7610. "time": "2024-09-25T02:54:12+00:00"
  7611. },
  7612. {
  7613. "name": "hyperf/testing",
  7614. "version": "v3.1.46",
  7615. "source": {
  7616. "type": "git",
  7617. "url": "https://github.com/hyperf/testing.git",
  7618. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa"
  7619. },
  7620. "dist": {
  7621. "type": "zip",
  7622. "url": "https://api.github.com/repos/hyperf/testing/zipball/d703d287817c577acfee0cec108dc2f4217ac9fa",
  7623. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa",
  7624. "shasum": ""
  7625. },
  7626. "require": {
  7627. "hyperf/codec": "~3.1.0",
  7628. "hyperf/collection": "~3.1.0",
  7629. "hyperf/contract": "~3.1.0",
  7630. "hyperf/coroutine": "~3.1.0",
  7631. "hyperf/http-message": "~3.1.0",
  7632. "hyperf/http-server": "~3.1.0",
  7633. "hyperf/support": "~3.1.0",
  7634. "hyperf/utils": "~3.1.0",
  7635. "php": ">=8.1",
  7636. "phpunit/phpunit": "^10.0",
  7637. "psr/container": "^1.0 || ^2.0",
  7638. "symfony/http-foundation": "^5.4 || ^6.0"
  7639. },
  7640. "suggest": {
  7641. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7642. },
  7643. "bin": [
  7644. "co-phpunit"
  7645. ],
  7646. "type": "library",
  7647. "extra": {
  7648. "branch-alias": {
  7649. "dev-master": "3.1-dev"
  7650. }
  7651. },
  7652. "autoload": {
  7653. "psr-4": {
  7654. "Hyperf\\Testing\\": "src/"
  7655. }
  7656. },
  7657. "notification-url": "https://packagist.org/downloads/",
  7658. "license": [
  7659. "MIT"
  7660. ],
  7661. "description": "Testing for hyperf",
  7662. "keywords": [
  7663. "dev",
  7664. "php",
  7665. "swoole",
  7666. "testing"
  7667. ],
  7668. "support": {
  7669. "source": "https://github.com/hyperf/testing/tree/v3.1.46"
  7670. },
  7671. "funding": [
  7672. {
  7673. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7674. "type": "custom"
  7675. },
  7676. {
  7677. "url": "https://opencollective.com/hyperf",
  7678. "type": "open_collective"
  7679. }
  7680. ],
  7681. "time": "2024-11-20T07:42:54+00:00"
  7682. },
  7683. {
  7684. "name": "hyperf/watcher",
  7685. "version": "v3.1.43",
  7686. "source": {
  7687. "type": "git",
  7688. "url": "https://github.com/hyperf/watcher.git",
  7689. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  7690. },
  7691. "dist": {
  7692. "type": "zip",
  7693. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7694. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7695. "shasum": ""
  7696. },
  7697. "require": {
  7698. "ext-posix": "*",
  7699. "hyperf/codec": "~3.1.0",
  7700. "hyperf/command": "~3.1.0",
  7701. "hyperf/di": "~3.1.0",
  7702. "hyperf/framework": "~3.1.0",
  7703. "hyperf/support": "~3.1.0",
  7704. "php": ">=8.1"
  7705. },
  7706. "type": "library",
  7707. "extra": {
  7708. "branch-alias": {
  7709. "dev-master": "3.1-dev"
  7710. },
  7711. "hyperf": {
  7712. "config": "Hyperf\\Watcher\\ConfigProvider"
  7713. }
  7714. },
  7715. "autoload": {
  7716. "files": [
  7717. "src/Functions.php"
  7718. ],
  7719. "psr-4": {
  7720. "Hyperf\\Watcher\\": "src/"
  7721. }
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "MIT"
  7726. ],
  7727. "description": "Hot reload watcher for Hyperf",
  7728. "keywords": [
  7729. "dev",
  7730. "hyperf",
  7731. "php"
  7732. ],
  7733. "support": {
  7734. "issues": "https://github.com/hyperf/watcher/issues",
  7735. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  7736. },
  7737. "funding": [
  7738. {
  7739. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7740. "type": "custom"
  7741. },
  7742. {
  7743. "url": "https://opencollective.com/hyperf",
  7744. "type": "open_collective"
  7745. }
  7746. ],
  7747. "time": "2024-10-06T12:33:12+00:00"
  7748. },
  7749. {
  7750. "name": "mockery/mockery",
  7751. "version": "1.6.12",
  7752. "source": {
  7753. "type": "git",
  7754. "url": "https://github.com/mockery/mockery.git",
  7755. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7756. },
  7757. "dist": {
  7758. "type": "zip",
  7759. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7760. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7761. "shasum": ""
  7762. },
  7763. "require": {
  7764. "hamcrest/hamcrest-php": "^2.0.1",
  7765. "lib-pcre": ">=7.0",
  7766. "php": ">=7.3"
  7767. },
  7768. "conflict": {
  7769. "phpunit/phpunit": "<8.0"
  7770. },
  7771. "require-dev": {
  7772. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7773. "symplify/easy-coding-standard": "^12.1.14"
  7774. },
  7775. "type": "library",
  7776. "autoload": {
  7777. "files": [
  7778. "library/helpers.php",
  7779. "library/Mockery.php"
  7780. ],
  7781. "psr-4": {
  7782. "Mockery\\": "library/Mockery"
  7783. }
  7784. },
  7785. "notification-url": "https://packagist.org/downloads/",
  7786. "license": [
  7787. "BSD-3-Clause"
  7788. ],
  7789. "authors": [
  7790. {
  7791. "name": "Pádraic Brady",
  7792. "email": "padraic.brady@gmail.com",
  7793. "homepage": "https://github.com/padraic",
  7794. "role": "Author"
  7795. },
  7796. {
  7797. "name": "Dave Marshall",
  7798. "email": "dave.marshall@atstsolutions.co.uk",
  7799. "homepage": "https://davedevelopment.co.uk",
  7800. "role": "Developer"
  7801. },
  7802. {
  7803. "name": "Nathanael Esayeas",
  7804. "email": "nathanael.esayeas@protonmail.com",
  7805. "homepage": "https://github.com/ghostwriter",
  7806. "role": "Lead Developer"
  7807. }
  7808. ],
  7809. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7810. "homepage": "https://github.com/mockery/mockery",
  7811. "keywords": [
  7812. "BDD",
  7813. "TDD",
  7814. "library",
  7815. "mock",
  7816. "mock objects",
  7817. "mockery",
  7818. "stub",
  7819. "test",
  7820. "test double",
  7821. "testing"
  7822. ],
  7823. "support": {
  7824. "docs": "https://docs.mockery.io/",
  7825. "issues": "https://github.com/mockery/mockery/issues",
  7826. "rss": "https://github.com/mockery/mockery/releases.atom",
  7827. "security": "https://github.com/mockery/mockery/security/advisories",
  7828. "source": "https://github.com/mockery/mockery"
  7829. },
  7830. "time": "2024-05-16T03:13:13+00:00"
  7831. },
  7832. {
  7833. "name": "myclabs/deep-copy",
  7834. "version": "1.12.1",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://github.com/myclabs/DeepCopy.git",
  7838. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  7843. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  7844. "shasum": ""
  7845. },
  7846. "require": {
  7847. "php": "^7.1 || ^8.0"
  7848. },
  7849. "conflict": {
  7850. "doctrine/collections": "<1.6.8",
  7851. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7852. },
  7853. "require-dev": {
  7854. "doctrine/collections": "^1.6.8",
  7855. "doctrine/common": "^2.13.3 || ^3.2.2",
  7856. "phpspec/prophecy": "^1.10",
  7857. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7858. },
  7859. "type": "library",
  7860. "autoload": {
  7861. "files": [
  7862. "src/DeepCopy/deep_copy.php"
  7863. ],
  7864. "psr-4": {
  7865. "DeepCopy\\": "src/DeepCopy/"
  7866. }
  7867. },
  7868. "notification-url": "https://packagist.org/downloads/",
  7869. "license": [
  7870. "MIT"
  7871. ],
  7872. "description": "Create deep copies (clones) of your objects",
  7873. "keywords": [
  7874. "clone",
  7875. "copy",
  7876. "duplicate",
  7877. "object",
  7878. "object graph"
  7879. ],
  7880. "support": {
  7881. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7882. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  7883. },
  7884. "funding": [
  7885. {
  7886. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7887. "type": "tidelift"
  7888. }
  7889. ],
  7890. "time": "2024-11-08T17:47:46+00:00"
  7891. },
  7892. {
  7893. "name": "phar-io/manifest",
  7894. "version": "2.0.4",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/phar-io/manifest.git",
  7898. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7903. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7904. "shasum": ""
  7905. },
  7906. "require": {
  7907. "ext-dom": "*",
  7908. "ext-libxml": "*",
  7909. "ext-phar": "*",
  7910. "ext-xmlwriter": "*",
  7911. "phar-io/version": "^3.0.1",
  7912. "php": "^7.2 || ^8.0"
  7913. },
  7914. "type": "library",
  7915. "extra": {
  7916. "branch-alias": {
  7917. "dev-master": "2.0.x-dev"
  7918. }
  7919. },
  7920. "autoload": {
  7921. "classmap": [
  7922. "src/"
  7923. ]
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "BSD-3-Clause"
  7928. ],
  7929. "authors": [
  7930. {
  7931. "name": "Arne Blankerts",
  7932. "email": "arne@blankerts.de",
  7933. "role": "Developer"
  7934. },
  7935. {
  7936. "name": "Sebastian Heuer",
  7937. "email": "sebastian@phpeople.de",
  7938. "role": "Developer"
  7939. },
  7940. {
  7941. "name": "Sebastian Bergmann",
  7942. "email": "sebastian@phpunit.de",
  7943. "role": "Developer"
  7944. }
  7945. ],
  7946. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7947. "support": {
  7948. "issues": "https://github.com/phar-io/manifest/issues",
  7949. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7950. },
  7951. "funding": [
  7952. {
  7953. "url": "https://github.com/theseer",
  7954. "type": "github"
  7955. }
  7956. ],
  7957. "time": "2024-03-03T12:33:53+00:00"
  7958. },
  7959. {
  7960. "name": "phar-io/version",
  7961. "version": "3.2.1",
  7962. "source": {
  7963. "type": "git",
  7964. "url": "https://github.com/phar-io/version.git",
  7965. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7966. },
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7970. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7971. "shasum": ""
  7972. },
  7973. "require": {
  7974. "php": "^7.2 || ^8.0"
  7975. },
  7976. "type": "library",
  7977. "autoload": {
  7978. "classmap": [
  7979. "src/"
  7980. ]
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "BSD-3-Clause"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Arne Blankerts",
  7989. "email": "arne@blankerts.de",
  7990. "role": "Developer"
  7991. },
  7992. {
  7993. "name": "Sebastian Heuer",
  7994. "email": "sebastian@phpeople.de",
  7995. "role": "Developer"
  7996. },
  7997. {
  7998. "name": "Sebastian Bergmann",
  7999. "email": "sebastian@phpunit.de",
  8000. "role": "Developer"
  8001. }
  8002. ],
  8003. "description": "Library for handling version information and constraints",
  8004. "support": {
  8005. "issues": "https://github.com/phar-io/version/issues",
  8006. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8007. },
  8008. "time": "2022-02-21T01:04:05+00:00"
  8009. },
  8010. {
  8011. "name": "phpstan/phpstan",
  8012. "version": "1.12.12",
  8013. "source": {
  8014. "type": "git",
  8015. "url": "https://github.com/phpstan/phpstan.git",
  8016. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0"
  8017. },
  8018. "dist": {
  8019. "type": "zip",
  8020. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  8021. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  8022. "shasum": ""
  8023. },
  8024. "require": {
  8025. "php": "^7.2|^8.0"
  8026. },
  8027. "conflict": {
  8028. "phpstan/phpstan-shim": "*"
  8029. },
  8030. "bin": [
  8031. "phpstan",
  8032. "phpstan.phar"
  8033. ],
  8034. "type": "library",
  8035. "autoload": {
  8036. "files": [
  8037. "bootstrap.php"
  8038. ]
  8039. },
  8040. "notification-url": "https://packagist.org/downloads/",
  8041. "license": [
  8042. "MIT"
  8043. ],
  8044. "description": "PHPStan - PHP Static Analysis Tool",
  8045. "keywords": [
  8046. "dev",
  8047. "static analysis"
  8048. ],
  8049. "support": {
  8050. "docs": "https://phpstan.org/user-guide/getting-started",
  8051. "forum": "https://github.com/phpstan/phpstan/discussions",
  8052. "issues": "https://github.com/phpstan/phpstan/issues",
  8053. "security": "https://github.com/phpstan/phpstan/security/policy",
  8054. "source": "https://github.com/phpstan/phpstan-src"
  8055. },
  8056. "funding": [
  8057. {
  8058. "url": "https://github.com/ondrejmirtes",
  8059. "type": "github"
  8060. },
  8061. {
  8062. "url": "https://github.com/phpstan",
  8063. "type": "github"
  8064. }
  8065. ],
  8066. "time": "2024-11-28T22:13:23+00:00"
  8067. },
  8068. {
  8069. "name": "phpunit/php-code-coverage",
  8070. "version": "10.1.16",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8074. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8079. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8080. "shasum": ""
  8081. },
  8082. "require": {
  8083. "ext-dom": "*",
  8084. "ext-libxml": "*",
  8085. "ext-xmlwriter": "*",
  8086. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8087. "php": ">=8.1",
  8088. "phpunit/php-file-iterator": "^4.1.0",
  8089. "phpunit/php-text-template": "^3.0.1",
  8090. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8091. "sebastian/complexity": "^3.2.0",
  8092. "sebastian/environment": "^6.1.0",
  8093. "sebastian/lines-of-code": "^2.0.2",
  8094. "sebastian/version": "^4.0.1",
  8095. "theseer/tokenizer": "^1.2.3"
  8096. },
  8097. "require-dev": {
  8098. "phpunit/phpunit": "^10.1"
  8099. },
  8100. "suggest": {
  8101. "ext-pcov": "PHP extension that provides line coverage",
  8102. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8103. },
  8104. "type": "library",
  8105. "extra": {
  8106. "branch-alias": {
  8107. "dev-main": "10.1.x-dev"
  8108. }
  8109. },
  8110. "autoload": {
  8111. "classmap": [
  8112. "src/"
  8113. ]
  8114. },
  8115. "notification-url": "https://packagist.org/downloads/",
  8116. "license": [
  8117. "BSD-3-Clause"
  8118. ],
  8119. "authors": [
  8120. {
  8121. "name": "Sebastian Bergmann",
  8122. "email": "sebastian@phpunit.de",
  8123. "role": "lead"
  8124. }
  8125. ],
  8126. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8127. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8128. "keywords": [
  8129. "coverage",
  8130. "testing",
  8131. "xunit"
  8132. ],
  8133. "support": {
  8134. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8135. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8136. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8137. },
  8138. "funding": [
  8139. {
  8140. "url": "https://github.com/sebastianbergmann",
  8141. "type": "github"
  8142. }
  8143. ],
  8144. "time": "2024-08-22T04:31:57+00:00"
  8145. },
  8146. {
  8147. "name": "phpunit/php-file-iterator",
  8148. "version": "4.1.0",
  8149. "source": {
  8150. "type": "git",
  8151. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8152. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8153. },
  8154. "dist": {
  8155. "type": "zip",
  8156. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8157. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8158. "shasum": ""
  8159. },
  8160. "require": {
  8161. "php": ">=8.1"
  8162. },
  8163. "require-dev": {
  8164. "phpunit/phpunit": "^10.0"
  8165. },
  8166. "type": "library",
  8167. "extra": {
  8168. "branch-alias": {
  8169. "dev-main": "4.0-dev"
  8170. }
  8171. },
  8172. "autoload": {
  8173. "classmap": [
  8174. "src/"
  8175. ]
  8176. },
  8177. "notification-url": "https://packagist.org/downloads/",
  8178. "license": [
  8179. "BSD-3-Clause"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Sebastian Bergmann",
  8184. "email": "sebastian@phpunit.de",
  8185. "role": "lead"
  8186. }
  8187. ],
  8188. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8189. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8190. "keywords": [
  8191. "filesystem",
  8192. "iterator"
  8193. ],
  8194. "support": {
  8195. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8196. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8197. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8198. },
  8199. "funding": [
  8200. {
  8201. "url": "https://github.com/sebastianbergmann",
  8202. "type": "github"
  8203. }
  8204. ],
  8205. "time": "2023-08-31T06:24:48+00:00"
  8206. },
  8207. {
  8208. "name": "phpunit/php-invoker",
  8209. "version": "4.0.0",
  8210. "source": {
  8211. "type": "git",
  8212. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8213. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8214. },
  8215. "dist": {
  8216. "type": "zip",
  8217. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8218. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8219. "shasum": ""
  8220. },
  8221. "require": {
  8222. "php": ">=8.1"
  8223. },
  8224. "require-dev": {
  8225. "ext-pcntl": "*",
  8226. "phpunit/phpunit": "^10.0"
  8227. },
  8228. "suggest": {
  8229. "ext-pcntl": "*"
  8230. },
  8231. "type": "library",
  8232. "extra": {
  8233. "branch-alias": {
  8234. "dev-main": "4.0-dev"
  8235. }
  8236. },
  8237. "autoload": {
  8238. "classmap": [
  8239. "src/"
  8240. ]
  8241. },
  8242. "notification-url": "https://packagist.org/downloads/",
  8243. "license": [
  8244. "BSD-3-Clause"
  8245. ],
  8246. "authors": [
  8247. {
  8248. "name": "Sebastian Bergmann",
  8249. "email": "sebastian@phpunit.de",
  8250. "role": "lead"
  8251. }
  8252. ],
  8253. "description": "Invoke callables with a timeout",
  8254. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8255. "keywords": [
  8256. "process"
  8257. ],
  8258. "support": {
  8259. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8260. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8261. },
  8262. "funding": [
  8263. {
  8264. "url": "https://github.com/sebastianbergmann",
  8265. "type": "github"
  8266. }
  8267. ],
  8268. "time": "2023-02-03T06:56:09+00:00"
  8269. },
  8270. {
  8271. "name": "phpunit/php-text-template",
  8272. "version": "3.0.1",
  8273. "source": {
  8274. "type": "git",
  8275. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8276. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8277. },
  8278. "dist": {
  8279. "type": "zip",
  8280. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8281. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8282. "shasum": ""
  8283. },
  8284. "require": {
  8285. "php": ">=8.1"
  8286. },
  8287. "require-dev": {
  8288. "phpunit/phpunit": "^10.0"
  8289. },
  8290. "type": "library",
  8291. "extra": {
  8292. "branch-alias": {
  8293. "dev-main": "3.0-dev"
  8294. }
  8295. },
  8296. "autoload": {
  8297. "classmap": [
  8298. "src/"
  8299. ]
  8300. },
  8301. "notification-url": "https://packagist.org/downloads/",
  8302. "license": [
  8303. "BSD-3-Clause"
  8304. ],
  8305. "authors": [
  8306. {
  8307. "name": "Sebastian Bergmann",
  8308. "email": "sebastian@phpunit.de",
  8309. "role": "lead"
  8310. }
  8311. ],
  8312. "description": "Simple template engine.",
  8313. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8314. "keywords": [
  8315. "template"
  8316. ],
  8317. "support": {
  8318. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8319. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8320. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8321. },
  8322. "funding": [
  8323. {
  8324. "url": "https://github.com/sebastianbergmann",
  8325. "type": "github"
  8326. }
  8327. ],
  8328. "time": "2023-08-31T14:07:24+00:00"
  8329. },
  8330. {
  8331. "name": "phpunit/php-timer",
  8332. "version": "6.0.0",
  8333. "source": {
  8334. "type": "git",
  8335. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8336. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8337. },
  8338. "dist": {
  8339. "type": "zip",
  8340. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8341. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8342. "shasum": ""
  8343. },
  8344. "require": {
  8345. "php": ">=8.1"
  8346. },
  8347. "require-dev": {
  8348. "phpunit/phpunit": "^10.0"
  8349. },
  8350. "type": "library",
  8351. "extra": {
  8352. "branch-alias": {
  8353. "dev-main": "6.0-dev"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "classmap": [
  8358. "src/"
  8359. ]
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "BSD-3-Clause"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Sebastian Bergmann",
  8368. "email": "sebastian@phpunit.de",
  8369. "role": "lead"
  8370. }
  8371. ],
  8372. "description": "Utility class for timing",
  8373. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8374. "keywords": [
  8375. "timer"
  8376. ],
  8377. "support": {
  8378. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8379. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8380. },
  8381. "funding": [
  8382. {
  8383. "url": "https://github.com/sebastianbergmann",
  8384. "type": "github"
  8385. }
  8386. ],
  8387. "time": "2023-02-03T06:57:52+00:00"
  8388. },
  8389. {
  8390. "name": "phpunit/phpunit",
  8391. "version": "10.5.38",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8395. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  8396. },
  8397. "dist": {
  8398. "type": "zip",
  8399. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8400. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8401. "shasum": ""
  8402. },
  8403. "require": {
  8404. "ext-dom": "*",
  8405. "ext-json": "*",
  8406. "ext-libxml": "*",
  8407. "ext-mbstring": "*",
  8408. "ext-xml": "*",
  8409. "ext-xmlwriter": "*",
  8410. "myclabs/deep-copy": "^1.12.0",
  8411. "phar-io/manifest": "^2.0.4",
  8412. "phar-io/version": "^3.2.1",
  8413. "php": ">=8.1",
  8414. "phpunit/php-code-coverage": "^10.1.16",
  8415. "phpunit/php-file-iterator": "^4.1.0",
  8416. "phpunit/php-invoker": "^4.0.0",
  8417. "phpunit/php-text-template": "^3.0.1",
  8418. "phpunit/php-timer": "^6.0.0",
  8419. "sebastian/cli-parser": "^2.0.1",
  8420. "sebastian/code-unit": "^2.0.0",
  8421. "sebastian/comparator": "^5.0.3",
  8422. "sebastian/diff": "^5.1.1",
  8423. "sebastian/environment": "^6.1.0",
  8424. "sebastian/exporter": "^5.1.2",
  8425. "sebastian/global-state": "^6.0.2",
  8426. "sebastian/object-enumerator": "^5.0.0",
  8427. "sebastian/recursion-context": "^5.0.0",
  8428. "sebastian/type": "^4.0.0",
  8429. "sebastian/version": "^4.0.1"
  8430. },
  8431. "suggest": {
  8432. "ext-soap": "To be able to generate mocks based on WSDL files"
  8433. },
  8434. "bin": [
  8435. "phpunit"
  8436. ],
  8437. "type": "library",
  8438. "extra": {
  8439. "branch-alias": {
  8440. "dev-main": "10.5-dev"
  8441. }
  8442. },
  8443. "autoload": {
  8444. "files": [
  8445. "src/Framework/Assert/Functions.php"
  8446. ],
  8447. "classmap": [
  8448. "src/"
  8449. ]
  8450. },
  8451. "notification-url": "https://packagist.org/downloads/",
  8452. "license": [
  8453. "BSD-3-Clause"
  8454. ],
  8455. "authors": [
  8456. {
  8457. "name": "Sebastian Bergmann",
  8458. "email": "sebastian@phpunit.de",
  8459. "role": "lead"
  8460. }
  8461. ],
  8462. "description": "The PHP Unit Testing framework.",
  8463. "homepage": "https://phpunit.de/",
  8464. "keywords": [
  8465. "phpunit",
  8466. "testing",
  8467. "xunit"
  8468. ],
  8469. "support": {
  8470. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8471. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8472. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  8473. },
  8474. "funding": [
  8475. {
  8476. "url": "https://phpunit.de/sponsors.html",
  8477. "type": "custom"
  8478. },
  8479. {
  8480. "url": "https://github.com/sebastianbergmann",
  8481. "type": "github"
  8482. },
  8483. {
  8484. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8485. "type": "tidelift"
  8486. }
  8487. ],
  8488. "time": "2024-10-28T13:06:21+00:00"
  8489. },
  8490. {
  8491. "name": "react/cache",
  8492. "version": "v1.2.0",
  8493. "source": {
  8494. "type": "git",
  8495. "url": "https://github.com/reactphp/cache.git",
  8496. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8497. },
  8498. "dist": {
  8499. "type": "zip",
  8500. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8501. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8502. "shasum": ""
  8503. },
  8504. "require": {
  8505. "php": ">=5.3.0",
  8506. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8507. },
  8508. "require-dev": {
  8509. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8510. },
  8511. "type": "library",
  8512. "autoload": {
  8513. "psr-4": {
  8514. "React\\Cache\\": "src/"
  8515. }
  8516. },
  8517. "notification-url": "https://packagist.org/downloads/",
  8518. "license": [
  8519. "MIT"
  8520. ],
  8521. "authors": [
  8522. {
  8523. "name": "Christian Lück",
  8524. "email": "christian@clue.engineering",
  8525. "homepage": "https://clue.engineering/"
  8526. },
  8527. {
  8528. "name": "Cees-Jan Kiewiet",
  8529. "email": "reactphp@ceesjankiewiet.nl",
  8530. "homepage": "https://wyrihaximus.net/"
  8531. },
  8532. {
  8533. "name": "Jan Sorgalla",
  8534. "email": "jsorgalla@gmail.com",
  8535. "homepage": "https://sorgalla.com/"
  8536. },
  8537. {
  8538. "name": "Chris Boden",
  8539. "email": "cboden@gmail.com",
  8540. "homepage": "https://cboden.dev/"
  8541. }
  8542. ],
  8543. "description": "Async, Promise-based cache interface for ReactPHP",
  8544. "keywords": [
  8545. "cache",
  8546. "caching",
  8547. "promise",
  8548. "reactphp"
  8549. ],
  8550. "support": {
  8551. "issues": "https://github.com/reactphp/cache/issues",
  8552. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8553. },
  8554. "funding": [
  8555. {
  8556. "url": "https://opencollective.com/reactphp",
  8557. "type": "open_collective"
  8558. }
  8559. ],
  8560. "time": "2022-11-30T15:59:55+00:00"
  8561. },
  8562. {
  8563. "name": "react/child-process",
  8564. "version": "v0.6.5",
  8565. "source": {
  8566. "type": "git",
  8567. "url": "https://github.com/reactphp/child-process.git",
  8568. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8569. },
  8570. "dist": {
  8571. "type": "zip",
  8572. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8573. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8574. "shasum": ""
  8575. },
  8576. "require": {
  8577. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8578. "php": ">=5.3.0",
  8579. "react/event-loop": "^1.2",
  8580. "react/stream": "^1.2"
  8581. },
  8582. "require-dev": {
  8583. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8584. "react/socket": "^1.8",
  8585. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8586. },
  8587. "type": "library",
  8588. "autoload": {
  8589. "psr-4": {
  8590. "React\\ChildProcess\\": "src"
  8591. }
  8592. },
  8593. "notification-url": "https://packagist.org/downloads/",
  8594. "license": [
  8595. "MIT"
  8596. ],
  8597. "authors": [
  8598. {
  8599. "name": "Christian Lück",
  8600. "email": "christian@clue.engineering",
  8601. "homepage": "https://clue.engineering/"
  8602. },
  8603. {
  8604. "name": "Cees-Jan Kiewiet",
  8605. "email": "reactphp@ceesjankiewiet.nl",
  8606. "homepage": "https://wyrihaximus.net/"
  8607. },
  8608. {
  8609. "name": "Jan Sorgalla",
  8610. "email": "jsorgalla@gmail.com",
  8611. "homepage": "https://sorgalla.com/"
  8612. },
  8613. {
  8614. "name": "Chris Boden",
  8615. "email": "cboden@gmail.com",
  8616. "homepage": "https://cboden.dev/"
  8617. }
  8618. ],
  8619. "description": "Event-driven library for executing child processes with ReactPHP.",
  8620. "keywords": [
  8621. "event-driven",
  8622. "process",
  8623. "reactphp"
  8624. ],
  8625. "support": {
  8626. "issues": "https://github.com/reactphp/child-process/issues",
  8627. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8628. },
  8629. "funding": [
  8630. {
  8631. "url": "https://github.com/WyriHaximus",
  8632. "type": "github"
  8633. },
  8634. {
  8635. "url": "https://github.com/clue",
  8636. "type": "github"
  8637. }
  8638. ],
  8639. "time": "2022-09-16T13:41:56+00:00"
  8640. },
  8641. {
  8642. "name": "react/dns",
  8643. "version": "v1.13.0",
  8644. "source": {
  8645. "type": "git",
  8646. "url": "https://github.com/reactphp/dns.git",
  8647. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8648. },
  8649. "dist": {
  8650. "type": "zip",
  8651. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8652. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8653. "shasum": ""
  8654. },
  8655. "require": {
  8656. "php": ">=5.3.0",
  8657. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8658. "react/event-loop": "^1.2",
  8659. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8660. },
  8661. "require-dev": {
  8662. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8663. "react/async": "^4.3 || ^3 || ^2",
  8664. "react/promise-timer": "^1.11"
  8665. },
  8666. "type": "library",
  8667. "autoload": {
  8668. "psr-4": {
  8669. "React\\Dns\\": "src/"
  8670. }
  8671. },
  8672. "notification-url": "https://packagist.org/downloads/",
  8673. "license": [
  8674. "MIT"
  8675. ],
  8676. "authors": [
  8677. {
  8678. "name": "Christian Lück",
  8679. "email": "christian@clue.engineering",
  8680. "homepage": "https://clue.engineering/"
  8681. },
  8682. {
  8683. "name": "Cees-Jan Kiewiet",
  8684. "email": "reactphp@ceesjankiewiet.nl",
  8685. "homepage": "https://wyrihaximus.net/"
  8686. },
  8687. {
  8688. "name": "Jan Sorgalla",
  8689. "email": "jsorgalla@gmail.com",
  8690. "homepage": "https://sorgalla.com/"
  8691. },
  8692. {
  8693. "name": "Chris Boden",
  8694. "email": "cboden@gmail.com",
  8695. "homepage": "https://cboden.dev/"
  8696. }
  8697. ],
  8698. "description": "Async DNS resolver for ReactPHP",
  8699. "keywords": [
  8700. "async",
  8701. "dns",
  8702. "dns-resolver",
  8703. "reactphp"
  8704. ],
  8705. "support": {
  8706. "issues": "https://github.com/reactphp/dns/issues",
  8707. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8708. },
  8709. "funding": [
  8710. {
  8711. "url": "https://opencollective.com/reactphp",
  8712. "type": "open_collective"
  8713. }
  8714. ],
  8715. "time": "2024-06-13T14:18:03+00:00"
  8716. },
  8717. {
  8718. "name": "react/event-loop",
  8719. "version": "v1.5.0",
  8720. "source": {
  8721. "type": "git",
  8722. "url": "https://github.com/reactphp/event-loop.git",
  8723. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8724. },
  8725. "dist": {
  8726. "type": "zip",
  8727. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8728. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8729. "shasum": ""
  8730. },
  8731. "require": {
  8732. "php": ">=5.3.0"
  8733. },
  8734. "require-dev": {
  8735. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8736. },
  8737. "suggest": {
  8738. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8739. },
  8740. "type": "library",
  8741. "autoload": {
  8742. "psr-4": {
  8743. "React\\EventLoop\\": "src/"
  8744. }
  8745. },
  8746. "notification-url": "https://packagist.org/downloads/",
  8747. "license": [
  8748. "MIT"
  8749. ],
  8750. "authors": [
  8751. {
  8752. "name": "Christian Lück",
  8753. "email": "christian@clue.engineering",
  8754. "homepage": "https://clue.engineering/"
  8755. },
  8756. {
  8757. "name": "Cees-Jan Kiewiet",
  8758. "email": "reactphp@ceesjankiewiet.nl",
  8759. "homepage": "https://wyrihaximus.net/"
  8760. },
  8761. {
  8762. "name": "Jan Sorgalla",
  8763. "email": "jsorgalla@gmail.com",
  8764. "homepage": "https://sorgalla.com/"
  8765. },
  8766. {
  8767. "name": "Chris Boden",
  8768. "email": "cboden@gmail.com",
  8769. "homepage": "https://cboden.dev/"
  8770. }
  8771. ],
  8772. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8773. "keywords": [
  8774. "asynchronous",
  8775. "event-loop"
  8776. ],
  8777. "support": {
  8778. "issues": "https://github.com/reactphp/event-loop/issues",
  8779. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8780. },
  8781. "funding": [
  8782. {
  8783. "url": "https://opencollective.com/reactphp",
  8784. "type": "open_collective"
  8785. }
  8786. ],
  8787. "time": "2023-11-13T13:48:05+00:00"
  8788. },
  8789. {
  8790. "name": "react/promise",
  8791. "version": "v3.2.0",
  8792. "source": {
  8793. "type": "git",
  8794. "url": "https://github.com/reactphp/promise.git",
  8795. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8796. },
  8797. "dist": {
  8798. "type": "zip",
  8799. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8800. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8801. "shasum": ""
  8802. },
  8803. "require": {
  8804. "php": ">=7.1.0"
  8805. },
  8806. "require-dev": {
  8807. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8808. "phpunit/phpunit": "^9.6 || ^7.5"
  8809. },
  8810. "type": "library",
  8811. "autoload": {
  8812. "files": [
  8813. "src/functions_include.php"
  8814. ],
  8815. "psr-4": {
  8816. "React\\Promise\\": "src/"
  8817. }
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "MIT"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Jan Sorgalla",
  8826. "email": "jsorgalla@gmail.com",
  8827. "homepage": "https://sorgalla.com/"
  8828. },
  8829. {
  8830. "name": "Christian Lück",
  8831. "email": "christian@clue.engineering",
  8832. "homepage": "https://clue.engineering/"
  8833. },
  8834. {
  8835. "name": "Cees-Jan Kiewiet",
  8836. "email": "reactphp@ceesjankiewiet.nl",
  8837. "homepage": "https://wyrihaximus.net/"
  8838. },
  8839. {
  8840. "name": "Chris Boden",
  8841. "email": "cboden@gmail.com",
  8842. "homepage": "https://cboden.dev/"
  8843. }
  8844. ],
  8845. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8846. "keywords": [
  8847. "promise",
  8848. "promises"
  8849. ],
  8850. "support": {
  8851. "issues": "https://github.com/reactphp/promise/issues",
  8852. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8853. },
  8854. "funding": [
  8855. {
  8856. "url": "https://opencollective.com/reactphp",
  8857. "type": "open_collective"
  8858. }
  8859. ],
  8860. "time": "2024-05-24T10:39:05+00:00"
  8861. },
  8862. {
  8863. "name": "react/socket",
  8864. "version": "v1.16.0",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/reactphp/socket.git",
  8868. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8873. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8878. "php": ">=5.3.0",
  8879. "react/dns": "^1.13",
  8880. "react/event-loop": "^1.2",
  8881. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  8882. "react/stream": "^1.4"
  8883. },
  8884. "require-dev": {
  8885. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8886. "react/async": "^4.3 || ^3.3 || ^2",
  8887. "react/promise-stream": "^1.4",
  8888. "react/promise-timer": "^1.11"
  8889. },
  8890. "type": "library",
  8891. "autoload": {
  8892. "psr-4": {
  8893. "React\\Socket\\": "src/"
  8894. }
  8895. },
  8896. "notification-url": "https://packagist.org/downloads/",
  8897. "license": [
  8898. "MIT"
  8899. ],
  8900. "authors": [
  8901. {
  8902. "name": "Christian Lück",
  8903. "email": "christian@clue.engineering",
  8904. "homepage": "https://clue.engineering/"
  8905. },
  8906. {
  8907. "name": "Cees-Jan Kiewiet",
  8908. "email": "reactphp@ceesjankiewiet.nl",
  8909. "homepage": "https://wyrihaximus.net/"
  8910. },
  8911. {
  8912. "name": "Jan Sorgalla",
  8913. "email": "jsorgalla@gmail.com",
  8914. "homepage": "https://sorgalla.com/"
  8915. },
  8916. {
  8917. "name": "Chris Boden",
  8918. "email": "cboden@gmail.com",
  8919. "homepage": "https://cboden.dev/"
  8920. }
  8921. ],
  8922. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8923. "keywords": [
  8924. "Connection",
  8925. "Socket",
  8926. "async",
  8927. "reactphp",
  8928. "stream"
  8929. ],
  8930. "support": {
  8931. "issues": "https://github.com/reactphp/socket/issues",
  8932. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  8933. },
  8934. "funding": [
  8935. {
  8936. "url": "https://opencollective.com/reactphp",
  8937. "type": "open_collective"
  8938. }
  8939. ],
  8940. "time": "2024-07-26T10:38:09+00:00"
  8941. },
  8942. {
  8943. "name": "react/stream",
  8944. "version": "v1.4.0",
  8945. "source": {
  8946. "type": "git",
  8947. "url": "https://github.com/reactphp/stream.git",
  8948. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  8949. },
  8950. "dist": {
  8951. "type": "zip",
  8952. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8953. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8954. "shasum": ""
  8955. },
  8956. "require": {
  8957. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8958. "php": ">=5.3.8",
  8959. "react/event-loop": "^1.2"
  8960. },
  8961. "require-dev": {
  8962. "clue/stream-filter": "~1.2",
  8963. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8964. },
  8965. "type": "library",
  8966. "autoload": {
  8967. "psr-4": {
  8968. "React\\Stream\\": "src/"
  8969. }
  8970. },
  8971. "notification-url": "https://packagist.org/downloads/",
  8972. "license": [
  8973. "MIT"
  8974. ],
  8975. "authors": [
  8976. {
  8977. "name": "Christian Lück",
  8978. "email": "christian@clue.engineering",
  8979. "homepage": "https://clue.engineering/"
  8980. },
  8981. {
  8982. "name": "Cees-Jan Kiewiet",
  8983. "email": "reactphp@ceesjankiewiet.nl",
  8984. "homepage": "https://wyrihaximus.net/"
  8985. },
  8986. {
  8987. "name": "Jan Sorgalla",
  8988. "email": "jsorgalla@gmail.com",
  8989. "homepage": "https://sorgalla.com/"
  8990. },
  8991. {
  8992. "name": "Chris Boden",
  8993. "email": "cboden@gmail.com",
  8994. "homepage": "https://cboden.dev/"
  8995. }
  8996. ],
  8997. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8998. "keywords": [
  8999. "event-driven",
  9000. "io",
  9001. "non-blocking",
  9002. "pipe",
  9003. "reactphp",
  9004. "readable",
  9005. "stream",
  9006. "writable"
  9007. ],
  9008. "support": {
  9009. "issues": "https://github.com/reactphp/stream/issues",
  9010. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9011. },
  9012. "funding": [
  9013. {
  9014. "url": "https://opencollective.com/reactphp",
  9015. "type": "open_collective"
  9016. }
  9017. ],
  9018. "time": "2024-06-11T12:45:25+00:00"
  9019. },
  9020. {
  9021. "name": "sebastian/cli-parser",
  9022. "version": "2.0.1",
  9023. "source": {
  9024. "type": "git",
  9025. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9026. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9027. },
  9028. "dist": {
  9029. "type": "zip",
  9030. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9031. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9032. "shasum": ""
  9033. },
  9034. "require": {
  9035. "php": ">=8.1"
  9036. },
  9037. "require-dev": {
  9038. "phpunit/phpunit": "^10.0"
  9039. },
  9040. "type": "library",
  9041. "extra": {
  9042. "branch-alias": {
  9043. "dev-main": "2.0-dev"
  9044. }
  9045. },
  9046. "autoload": {
  9047. "classmap": [
  9048. "src/"
  9049. ]
  9050. },
  9051. "notification-url": "https://packagist.org/downloads/",
  9052. "license": [
  9053. "BSD-3-Clause"
  9054. ],
  9055. "authors": [
  9056. {
  9057. "name": "Sebastian Bergmann",
  9058. "email": "sebastian@phpunit.de",
  9059. "role": "lead"
  9060. }
  9061. ],
  9062. "description": "Library for parsing CLI options",
  9063. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9064. "support": {
  9065. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9066. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9067. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9068. },
  9069. "funding": [
  9070. {
  9071. "url": "https://github.com/sebastianbergmann",
  9072. "type": "github"
  9073. }
  9074. ],
  9075. "time": "2024-03-02T07:12:49+00:00"
  9076. },
  9077. {
  9078. "name": "sebastian/code-unit",
  9079. "version": "2.0.0",
  9080. "source": {
  9081. "type": "git",
  9082. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9083. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9084. },
  9085. "dist": {
  9086. "type": "zip",
  9087. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9088. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9089. "shasum": ""
  9090. },
  9091. "require": {
  9092. "php": ">=8.1"
  9093. },
  9094. "require-dev": {
  9095. "phpunit/phpunit": "^10.0"
  9096. },
  9097. "type": "library",
  9098. "extra": {
  9099. "branch-alias": {
  9100. "dev-main": "2.0-dev"
  9101. }
  9102. },
  9103. "autoload": {
  9104. "classmap": [
  9105. "src/"
  9106. ]
  9107. },
  9108. "notification-url": "https://packagist.org/downloads/",
  9109. "license": [
  9110. "BSD-3-Clause"
  9111. ],
  9112. "authors": [
  9113. {
  9114. "name": "Sebastian Bergmann",
  9115. "email": "sebastian@phpunit.de",
  9116. "role": "lead"
  9117. }
  9118. ],
  9119. "description": "Collection of value objects that represent the PHP code units",
  9120. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9121. "support": {
  9122. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9123. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9124. },
  9125. "funding": [
  9126. {
  9127. "url": "https://github.com/sebastianbergmann",
  9128. "type": "github"
  9129. }
  9130. ],
  9131. "time": "2023-02-03T06:58:43+00:00"
  9132. },
  9133. {
  9134. "name": "sebastian/code-unit-reverse-lookup",
  9135. "version": "3.0.0",
  9136. "source": {
  9137. "type": "git",
  9138. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9139. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9140. },
  9141. "dist": {
  9142. "type": "zip",
  9143. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9144. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9145. "shasum": ""
  9146. },
  9147. "require": {
  9148. "php": ">=8.1"
  9149. },
  9150. "require-dev": {
  9151. "phpunit/phpunit": "^10.0"
  9152. },
  9153. "type": "library",
  9154. "extra": {
  9155. "branch-alias": {
  9156. "dev-main": "3.0-dev"
  9157. }
  9158. },
  9159. "autoload": {
  9160. "classmap": [
  9161. "src/"
  9162. ]
  9163. },
  9164. "notification-url": "https://packagist.org/downloads/",
  9165. "license": [
  9166. "BSD-3-Clause"
  9167. ],
  9168. "authors": [
  9169. {
  9170. "name": "Sebastian Bergmann",
  9171. "email": "sebastian@phpunit.de"
  9172. }
  9173. ],
  9174. "description": "Looks up which function or method a line of code belongs to",
  9175. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9176. "support": {
  9177. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9178. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9179. },
  9180. "funding": [
  9181. {
  9182. "url": "https://github.com/sebastianbergmann",
  9183. "type": "github"
  9184. }
  9185. ],
  9186. "time": "2023-02-03T06:59:15+00:00"
  9187. },
  9188. {
  9189. "name": "sebastian/comparator",
  9190. "version": "5.0.3",
  9191. "source": {
  9192. "type": "git",
  9193. "url": "https://github.com/sebastianbergmann/comparator.git",
  9194. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9195. },
  9196. "dist": {
  9197. "type": "zip",
  9198. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9199. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9200. "shasum": ""
  9201. },
  9202. "require": {
  9203. "ext-dom": "*",
  9204. "ext-mbstring": "*",
  9205. "php": ">=8.1",
  9206. "sebastian/diff": "^5.0",
  9207. "sebastian/exporter": "^5.0"
  9208. },
  9209. "require-dev": {
  9210. "phpunit/phpunit": "^10.5"
  9211. },
  9212. "type": "library",
  9213. "extra": {
  9214. "branch-alias": {
  9215. "dev-main": "5.0-dev"
  9216. }
  9217. },
  9218. "autoload": {
  9219. "classmap": [
  9220. "src/"
  9221. ]
  9222. },
  9223. "notification-url": "https://packagist.org/downloads/",
  9224. "license": [
  9225. "BSD-3-Clause"
  9226. ],
  9227. "authors": [
  9228. {
  9229. "name": "Sebastian Bergmann",
  9230. "email": "sebastian@phpunit.de"
  9231. },
  9232. {
  9233. "name": "Jeff Welch",
  9234. "email": "whatthejeff@gmail.com"
  9235. },
  9236. {
  9237. "name": "Volker Dusch",
  9238. "email": "github@wallbash.com"
  9239. },
  9240. {
  9241. "name": "Bernhard Schussek",
  9242. "email": "bschussek@2bepublished.at"
  9243. }
  9244. ],
  9245. "description": "Provides the functionality to compare PHP values for equality",
  9246. "homepage": "https://github.com/sebastianbergmann/comparator",
  9247. "keywords": [
  9248. "comparator",
  9249. "compare",
  9250. "equality"
  9251. ],
  9252. "support": {
  9253. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9254. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9255. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9256. },
  9257. "funding": [
  9258. {
  9259. "url": "https://github.com/sebastianbergmann",
  9260. "type": "github"
  9261. }
  9262. ],
  9263. "time": "2024-10-18T14:56:07+00:00"
  9264. },
  9265. {
  9266. "name": "sebastian/complexity",
  9267. "version": "3.2.0",
  9268. "source": {
  9269. "type": "git",
  9270. "url": "https://github.com/sebastianbergmann/complexity.git",
  9271. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9272. },
  9273. "dist": {
  9274. "type": "zip",
  9275. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9276. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9277. "shasum": ""
  9278. },
  9279. "require": {
  9280. "nikic/php-parser": "^4.18 || ^5.0",
  9281. "php": ">=8.1"
  9282. },
  9283. "require-dev": {
  9284. "phpunit/phpunit": "^10.0"
  9285. },
  9286. "type": "library",
  9287. "extra": {
  9288. "branch-alias": {
  9289. "dev-main": "3.2-dev"
  9290. }
  9291. },
  9292. "autoload": {
  9293. "classmap": [
  9294. "src/"
  9295. ]
  9296. },
  9297. "notification-url": "https://packagist.org/downloads/",
  9298. "license": [
  9299. "BSD-3-Clause"
  9300. ],
  9301. "authors": [
  9302. {
  9303. "name": "Sebastian Bergmann",
  9304. "email": "sebastian@phpunit.de",
  9305. "role": "lead"
  9306. }
  9307. ],
  9308. "description": "Library for calculating the complexity of PHP code units",
  9309. "homepage": "https://github.com/sebastianbergmann/complexity",
  9310. "support": {
  9311. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9312. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9313. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9314. },
  9315. "funding": [
  9316. {
  9317. "url": "https://github.com/sebastianbergmann",
  9318. "type": "github"
  9319. }
  9320. ],
  9321. "time": "2023-12-21T08:37:17+00:00"
  9322. },
  9323. {
  9324. "name": "sebastian/diff",
  9325. "version": "5.1.1",
  9326. "source": {
  9327. "type": "git",
  9328. "url": "https://github.com/sebastianbergmann/diff.git",
  9329. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9330. },
  9331. "dist": {
  9332. "type": "zip",
  9333. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9334. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9335. "shasum": ""
  9336. },
  9337. "require": {
  9338. "php": ">=8.1"
  9339. },
  9340. "require-dev": {
  9341. "phpunit/phpunit": "^10.0",
  9342. "symfony/process": "^6.4"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-main": "5.1-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Sebastian Bergmann",
  9362. "email": "sebastian@phpunit.de"
  9363. },
  9364. {
  9365. "name": "Kore Nordmann",
  9366. "email": "mail@kore-nordmann.de"
  9367. }
  9368. ],
  9369. "description": "Diff implementation",
  9370. "homepage": "https://github.com/sebastianbergmann/diff",
  9371. "keywords": [
  9372. "diff",
  9373. "udiff",
  9374. "unidiff",
  9375. "unified diff"
  9376. ],
  9377. "support": {
  9378. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9379. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9380. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9381. },
  9382. "funding": [
  9383. {
  9384. "url": "https://github.com/sebastianbergmann",
  9385. "type": "github"
  9386. }
  9387. ],
  9388. "time": "2024-03-02T07:15:17+00:00"
  9389. },
  9390. {
  9391. "name": "sebastian/environment",
  9392. "version": "6.1.0",
  9393. "source": {
  9394. "type": "git",
  9395. "url": "https://github.com/sebastianbergmann/environment.git",
  9396. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9397. },
  9398. "dist": {
  9399. "type": "zip",
  9400. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9401. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9402. "shasum": ""
  9403. },
  9404. "require": {
  9405. "php": ">=8.1"
  9406. },
  9407. "require-dev": {
  9408. "phpunit/phpunit": "^10.0"
  9409. },
  9410. "suggest": {
  9411. "ext-posix": "*"
  9412. },
  9413. "type": "library",
  9414. "extra": {
  9415. "branch-alias": {
  9416. "dev-main": "6.1-dev"
  9417. }
  9418. },
  9419. "autoload": {
  9420. "classmap": [
  9421. "src/"
  9422. ]
  9423. },
  9424. "notification-url": "https://packagist.org/downloads/",
  9425. "license": [
  9426. "BSD-3-Clause"
  9427. ],
  9428. "authors": [
  9429. {
  9430. "name": "Sebastian Bergmann",
  9431. "email": "sebastian@phpunit.de"
  9432. }
  9433. ],
  9434. "description": "Provides functionality to handle HHVM/PHP environments",
  9435. "homepage": "https://github.com/sebastianbergmann/environment",
  9436. "keywords": [
  9437. "Xdebug",
  9438. "environment",
  9439. "hhvm"
  9440. ],
  9441. "support": {
  9442. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9443. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9444. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9445. },
  9446. "funding": [
  9447. {
  9448. "url": "https://github.com/sebastianbergmann",
  9449. "type": "github"
  9450. }
  9451. ],
  9452. "time": "2024-03-23T08:47:14+00:00"
  9453. },
  9454. {
  9455. "name": "sebastian/exporter",
  9456. "version": "5.1.2",
  9457. "source": {
  9458. "type": "git",
  9459. "url": "https://github.com/sebastianbergmann/exporter.git",
  9460. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9461. },
  9462. "dist": {
  9463. "type": "zip",
  9464. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9465. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9466. "shasum": ""
  9467. },
  9468. "require": {
  9469. "ext-mbstring": "*",
  9470. "php": ">=8.1",
  9471. "sebastian/recursion-context": "^5.0"
  9472. },
  9473. "require-dev": {
  9474. "phpunit/phpunit": "^10.0"
  9475. },
  9476. "type": "library",
  9477. "extra": {
  9478. "branch-alias": {
  9479. "dev-main": "5.1-dev"
  9480. }
  9481. },
  9482. "autoload": {
  9483. "classmap": [
  9484. "src/"
  9485. ]
  9486. },
  9487. "notification-url": "https://packagist.org/downloads/",
  9488. "license": [
  9489. "BSD-3-Clause"
  9490. ],
  9491. "authors": [
  9492. {
  9493. "name": "Sebastian Bergmann",
  9494. "email": "sebastian@phpunit.de"
  9495. },
  9496. {
  9497. "name": "Jeff Welch",
  9498. "email": "whatthejeff@gmail.com"
  9499. },
  9500. {
  9501. "name": "Volker Dusch",
  9502. "email": "github@wallbash.com"
  9503. },
  9504. {
  9505. "name": "Adam Harvey",
  9506. "email": "aharvey@php.net"
  9507. },
  9508. {
  9509. "name": "Bernhard Schussek",
  9510. "email": "bschussek@gmail.com"
  9511. }
  9512. ],
  9513. "description": "Provides the functionality to export PHP variables for visualization",
  9514. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9515. "keywords": [
  9516. "export",
  9517. "exporter"
  9518. ],
  9519. "support": {
  9520. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9521. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9522. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9523. },
  9524. "funding": [
  9525. {
  9526. "url": "https://github.com/sebastianbergmann",
  9527. "type": "github"
  9528. }
  9529. ],
  9530. "time": "2024-03-02T07:17:12+00:00"
  9531. },
  9532. {
  9533. "name": "sebastian/global-state",
  9534. "version": "6.0.2",
  9535. "source": {
  9536. "type": "git",
  9537. "url": "https://github.com/sebastianbergmann/global-state.git",
  9538. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9539. },
  9540. "dist": {
  9541. "type": "zip",
  9542. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9543. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9544. "shasum": ""
  9545. },
  9546. "require": {
  9547. "php": ">=8.1",
  9548. "sebastian/object-reflector": "^3.0",
  9549. "sebastian/recursion-context": "^5.0"
  9550. },
  9551. "require-dev": {
  9552. "ext-dom": "*",
  9553. "phpunit/phpunit": "^10.0"
  9554. },
  9555. "type": "library",
  9556. "extra": {
  9557. "branch-alias": {
  9558. "dev-main": "6.0-dev"
  9559. }
  9560. },
  9561. "autoload": {
  9562. "classmap": [
  9563. "src/"
  9564. ]
  9565. },
  9566. "notification-url": "https://packagist.org/downloads/",
  9567. "license": [
  9568. "BSD-3-Clause"
  9569. ],
  9570. "authors": [
  9571. {
  9572. "name": "Sebastian Bergmann",
  9573. "email": "sebastian@phpunit.de"
  9574. }
  9575. ],
  9576. "description": "Snapshotting of global state",
  9577. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9578. "keywords": [
  9579. "global state"
  9580. ],
  9581. "support": {
  9582. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9583. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9584. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9585. },
  9586. "funding": [
  9587. {
  9588. "url": "https://github.com/sebastianbergmann",
  9589. "type": "github"
  9590. }
  9591. ],
  9592. "time": "2024-03-02T07:19:19+00:00"
  9593. },
  9594. {
  9595. "name": "sebastian/lines-of-code",
  9596. "version": "2.0.2",
  9597. "source": {
  9598. "type": "git",
  9599. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9600. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9601. },
  9602. "dist": {
  9603. "type": "zip",
  9604. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9605. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9606. "shasum": ""
  9607. },
  9608. "require": {
  9609. "nikic/php-parser": "^4.18 || ^5.0",
  9610. "php": ">=8.1"
  9611. },
  9612. "require-dev": {
  9613. "phpunit/phpunit": "^10.0"
  9614. },
  9615. "type": "library",
  9616. "extra": {
  9617. "branch-alias": {
  9618. "dev-main": "2.0-dev"
  9619. }
  9620. },
  9621. "autoload": {
  9622. "classmap": [
  9623. "src/"
  9624. ]
  9625. },
  9626. "notification-url": "https://packagist.org/downloads/",
  9627. "license": [
  9628. "BSD-3-Clause"
  9629. ],
  9630. "authors": [
  9631. {
  9632. "name": "Sebastian Bergmann",
  9633. "email": "sebastian@phpunit.de",
  9634. "role": "lead"
  9635. }
  9636. ],
  9637. "description": "Library for counting the lines of code in PHP source code",
  9638. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9639. "support": {
  9640. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9641. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9642. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9643. },
  9644. "funding": [
  9645. {
  9646. "url": "https://github.com/sebastianbergmann",
  9647. "type": "github"
  9648. }
  9649. ],
  9650. "time": "2023-12-21T08:38:20+00:00"
  9651. },
  9652. {
  9653. "name": "sebastian/object-enumerator",
  9654. "version": "5.0.0",
  9655. "source": {
  9656. "type": "git",
  9657. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9658. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9659. },
  9660. "dist": {
  9661. "type": "zip",
  9662. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9663. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9664. "shasum": ""
  9665. },
  9666. "require": {
  9667. "php": ">=8.1",
  9668. "sebastian/object-reflector": "^3.0",
  9669. "sebastian/recursion-context": "^5.0"
  9670. },
  9671. "require-dev": {
  9672. "phpunit/phpunit": "^10.0"
  9673. },
  9674. "type": "library",
  9675. "extra": {
  9676. "branch-alias": {
  9677. "dev-main": "5.0-dev"
  9678. }
  9679. },
  9680. "autoload": {
  9681. "classmap": [
  9682. "src/"
  9683. ]
  9684. },
  9685. "notification-url": "https://packagist.org/downloads/",
  9686. "license": [
  9687. "BSD-3-Clause"
  9688. ],
  9689. "authors": [
  9690. {
  9691. "name": "Sebastian Bergmann",
  9692. "email": "sebastian@phpunit.de"
  9693. }
  9694. ],
  9695. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9696. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9697. "support": {
  9698. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9699. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9700. },
  9701. "funding": [
  9702. {
  9703. "url": "https://github.com/sebastianbergmann",
  9704. "type": "github"
  9705. }
  9706. ],
  9707. "time": "2023-02-03T07:08:32+00:00"
  9708. },
  9709. {
  9710. "name": "sebastian/object-reflector",
  9711. "version": "3.0.0",
  9712. "source": {
  9713. "type": "git",
  9714. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9715. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9716. },
  9717. "dist": {
  9718. "type": "zip",
  9719. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9720. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9721. "shasum": ""
  9722. },
  9723. "require": {
  9724. "php": ">=8.1"
  9725. },
  9726. "require-dev": {
  9727. "phpunit/phpunit": "^10.0"
  9728. },
  9729. "type": "library",
  9730. "extra": {
  9731. "branch-alias": {
  9732. "dev-main": "3.0-dev"
  9733. }
  9734. },
  9735. "autoload": {
  9736. "classmap": [
  9737. "src/"
  9738. ]
  9739. },
  9740. "notification-url": "https://packagist.org/downloads/",
  9741. "license": [
  9742. "BSD-3-Clause"
  9743. ],
  9744. "authors": [
  9745. {
  9746. "name": "Sebastian Bergmann",
  9747. "email": "sebastian@phpunit.de"
  9748. }
  9749. ],
  9750. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9751. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9752. "support": {
  9753. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9754. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9755. },
  9756. "funding": [
  9757. {
  9758. "url": "https://github.com/sebastianbergmann",
  9759. "type": "github"
  9760. }
  9761. ],
  9762. "time": "2023-02-03T07:06:18+00:00"
  9763. },
  9764. {
  9765. "name": "sebastian/recursion-context",
  9766. "version": "5.0.0",
  9767. "source": {
  9768. "type": "git",
  9769. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9770. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9771. },
  9772. "dist": {
  9773. "type": "zip",
  9774. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9775. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9776. "shasum": ""
  9777. },
  9778. "require": {
  9779. "php": ">=8.1"
  9780. },
  9781. "require-dev": {
  9782. "phpunit/phpunit": "^10.0"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-main": "5.0-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "classmap": [
  9792. "src/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "BSD-3-Clause"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Sebastian Bergmann",
  9802. "email": "sebastian@phpunit.de"
  9803. },
  9804. {
  9805. "name": "Jeff Welch",
  9806. "email": "whatthejeff@gmail.com"
  9807. },
  9808. {
  9809. "name": "Adam Harvey",
  9810. "email": "aharvey@php.net"
  9811. }
  9812. ],
  9813. "description": "Provides functionality to recursively process PHP variables",
  9814. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9815. "support": {
  9816. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9817. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9818. },
  9819. "funding": [
  9820. {
  9821. "url": "https://github.com/sebastianbergmann",
  9822. "type": "github"
  9823. }
  9824. ],
  9825. "time": "2023-02-03T07:05:40+00:00"
  9826. },
  9827. {
  9828. "name": "sebastian/type",
  9829. "version": "4.0.0",
  9830. "source": {
  9831. "type": "git",
  9832. "url": "https://github.com/sebastianbergmann/type.git",
  9833. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9834. },
  9835. "dist": {
  9836. "type": "zip",
  9837. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9838. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9839. "shasum": ""
  9840. },
  9841. "require": {
  9842. "php": ">=8.1"
  9843. },
  9844. "require-dev": {
  9845. "phpunit/phpunit": "^10.0"
  9846. },
  9847. "type": "library",
  9848. "extra": {
  9849. "branch-alias": {
  9850. "dev-main": "4.0-dev"
  9851. }
  9852. },
  9853. "autoload": {
  9854. "classmap": [
  9855. "src/"
  9856. ]
  9857. },
  9858. "notification-url": "https://packagist.org/downloads/",
  9859. "license": [
  9860. "BSD-3-Clause"
  9861. ],
  9862. "authors": [
  9863. {
  9864. "name": "Sebastian Bergmann",
  9865. "email": "sebastian@phpunit.de",
  9866. "role": "lead"
  9867. }
  9868. ],
  9869. "description": "Collection of value objects that represent the types of the PHP type system",
  9870. "homepage": "https://github.com/sebastianbergmann/type",
  9871. "support": {
  9872. "issues": "https://github.com/sebastianbergmann/type/issues",
  9873. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9874. },
  9875. "funding": [
  9876. {
  9877. "url": "https://github.com/sebastianbergmann",
  9878. "type": "github"
  9879. }
  9880. ],
  9881. "time": "2023-02-03T07:10:45+00:00"
  9882. },
  9883. {
  9884. "name": "sebastian/version",
  9885. "version": "4.0.1",
  9886. "source": {
  9887. "type": "git",
  9888. "url": "https://github.com/sebastianbergmann/version.git",
  9889. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9890. },
  9891. "dist": {
  9892. "type": "zip",
  9893. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9894. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9895. "shasum": ""
  9896. },
  9897. "require": {
  9898. "php": ">=8.1"
  9899. },
  9900. "type": "library",
  9901. "extra": {
  9902. "branch-alias": {
  9903. "dev-main": "4.0-dev"
  9904. }
  9905. },
  9906. "autoload": {
  9907. "classmap": [
  9908. "src/"
  9909. ]
  9910. },
  9911. "notification-url": "https://packagist.org/downloads/",
  9912. "license": [
  9913. "BSD-3-Clause"
  9914. ],
  9915. "authors": [
  9916. {
  9917. "name": "Sebastian Bergmann",
  9918. "email": "sebastian@phpunit.de",
  9919. "role": "lead"
  9920. }
  9921. ],
  9922. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9923. "homepage": "https://github.com/sebastianbergmann/version",
  9924. "support": {
  9925. "issues": "https://github.com/sebastianbergmann/version/issues",
  9926. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9927. },
  9928. "funding": [
  9929. {
  9930. "url": "https://github.com/sebastianbergmann",
  9931. "type": "github"
  9932. }
  9933. ],
  9934. "time": "2023-02-07T11:34:05+00:00"
  9935. },
  9936. {
  9937. "name": "swoole/ide-helper",
  9938. "version": "5.1.6",
  9939. "source": {
  9940. "type": "git",
  9941. "url": "https://github.com/swoole/ide-helper.git",
  9942. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  9943. },
  9944. "dist": {
  9945. "type": "zip",
  9946. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  9947. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  9948. "shasum": ""
  9949. },
  9950. "type": "library",
  9951. "notification-url": "https://packagist.org/downloads/",
  9952. "license": [
  9953. "Apache-2.0"
  9954. ],
  9955. "authors": [
  9956. {
  9957. "name": "Team Swoole",
  9958. "email": "team@swoole.com"
  9959. }
  9960. ],
  9961. "description": "IDE help files for Swoole.",
  9962. "support": {
  9963. "issues": "https://github.com/swoole/ide-helper/issues",
  9964. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  9965. },
  9966. "time": "2024-11-29T07:21:36+00:00"
  9967. },
  9968. {
  9969. "name": "symfony/event-dispatcher",
  9970. "version": "v6.4.13",
  9971. "source": {
  9972. "type": "git",
  9973. "url": "https://github.com/symfony/event-dispatcher.git",
  9974. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  9975. },
  9976. "dist": {
  9977. "type": "zip",
  9978. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9979. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9980. "shasum": ""
  9981. },
  9982. "require": {
  9983. "php": ">=8.1",
  9984. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9985. },
  9986. "conflict": {
  9987. "symfony/dependency-injection": "<5.4",
  9988. "symfony/service-contracts": "<2.5"
  9989. },
  9990. "provide": {
  9991. "psr/event-dispatcher-implementation": "1.0",
  9992. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9993. },
  9994. "require-dev": {
  9995. "psr/log": "^1|^2|^3",
  9996. "symfony/config": "^5.4|^6.0|^7.0",
  9997. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9998. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9999. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10000. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10001. "symfony/service-contracts": "^2.5|^3",
  10002. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10003. },
  10004. "type": "library",
  10005. "autoload": {
  10006. "psr-4": {
  10007. "Symfony\\Component\\EventDispatcher\\": ""
  10008. },
  10009. "exclude-from-classmap": [
  10010. "/Tests/"
  10011. ]
  10012. },
  10013. "notification-url": "https://packagist.org/downloads/",
  10014. "license": [
  10015. "MIT"
  10016. ],
  10017. "authors": [
  10018. {
  10019. "name": "Fabien Potencier",
  10020. "email": "fabien@symfony.com"
  10021. },
  10022. {
  10023. "name": "Symfony Community",
  10024. "homepage": "https://symfony.com/contributors"
  10025. }
  10026. ],
  10027. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10028. "homepage": "https://symfony.com",
  10029. "support": {
  10030. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10031. },
  10032. "funding": [
  10033. {
  10034. "url": "https://symfony.com/sponsor",
  10035. "type": "custom"
  10036. },
  10037. {
  10038. "url": "https://github.com/fabpot",
  10039. "type": "github"
  10040. },
  10041. {
  10042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10043. "type": "tidelift"
  10044. }
  10045. ],
  10046. "time": "2024-09-25T14:18:03+00:00"
  10047. },
  10048. {
  10049. "name": "symfony/event-dispatcher-contracts",
  10050. "version": "v3.5.1",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10054. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10059. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10060. "shasum": ""
  10061. },
  10062. "require": {
  10063. "php": ">=8.1",
  10064. "psr/event-dispatcher": "^1"
  10065. },
  10066. "type": "library",
  10067. "extra": {
  10068. "branch-alias": {
  10069. "dev-main": "3.5-dev"
  10070. },
  10071. "thanks": {
  10072. "name": "symfony/contracts",
  10073. "url": "https://github.com/symfony/contracts"
  10074. }
  10075. },
  10076. "autoload": {
  10077. "psr-4": {
  10078. "Symfony\\Contracts\\EventDispatcher\\": ""
  10079. }
  10080. },
  10081. "notification-url": "https://packagist.org/downloads/",
  10082. "license": [
  10083. "MIT"
  10084. ],
  10085. "authors": [
  10086. {
  10087. "name": "Nicolas Grekas",
  10088. "email": "p@tchwork.com"
  10089. },
  10090. {
  10091. "name": "Symfony Community",
  10092. "homepage": "https://symfony.com/contributors"
  10093. }
  10094. ],
  10095. "description": "Generic abstractions related to dispatching event",
  10096. "homepage": "https://symfony.com",
  10097. "keywords": [
  10098. "abstractions",
  10099. "contracts",
  10100. "decoupling",
  10101. "interfaces",
  10102. "interoperability",
  10103. "standards"
  10104. ],
  10105. "support": {
  10106. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  10107. },
  10108. "funding": [
  10109. {
  10110. "url": "https://symfony.com/sponsor",
  10111. "type": "custom"
  10112. },
  10113. {
  10114. "url": "https://github.com/fabpot",
  10115. "type": "github"
  10116. },
  10117. {
  10118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10119. "type": "tidelift"
  10120. }
  10121. ],
  10122. "time": "2024-09-25T14:20:29+00:00"
  10123. },
  10124. {
  10125. "name": "symfony/filesystem",
  10126. "version": "v6.4.13",
  10127. "source": {
  10128. "type": "git",
  10129. "url": "https://github.com/symfony/filesystem.git",
  10130. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  10131. },
  10132. "dist": {
  10133. "type": "zip",
  10134. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10135. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10136. "shasum": ""
  10137. },
  10138. "require": {
  10139. "php": ">=8.1",
  10140. "symfony/polyfill-ctype": "~1.8",
  10141. "symfony/polyfill-mbstring": "~1.8"
  10142. },
  10143. "require-dev": {
  10144. "symfony/process": "^5.4|^6.4|^7.0"
  10145. },
  10146. "type": "library",
  10147. "autoload": {
  10148. "psr-4": {
  10149. "Symfony\\Component\\Filesystem\\": ""
  10150. },
  10151. "exclude-from-classmap": [
  10152. "/Tests/"
  10153. ]
  10154. },
  10155. "notification-url": "https://packagist.org/downloads/",
  10156. "license": [
  10157. "MIT"
  10158. ],
  10159. "authors": [
  10160. {
  10161. "name": "Fabien Potencier",
  10162. "email": "fabien@symfony.com"
  10163. },
  10164. {
  10165. "name": "Symfony Community",
  10166. "homepage": "https://symfony.com/contributors"
  10167. }
  10168. ],
  10169. "description": "Provides basic utilities for the filesystem",
  10170. "homepage": "https://symfony.com",
  10171. "support": {
  10172. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  10173. },
  10174. "funding": [
  10175. {
  10176. "url": "https://symfony.com/sponsor",
  10177. "type": "custom"
  10178. },
  10179. {
  10180. "url": "https://github.com/fabpot",
  10181. "type": "github"
  10182. },
  10183. {
  10184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10185. "type": "tidelift"
  10186. }
  10187. ],
  10188. "time": "2024-10-25T15:07:50+00:00"
  10189. },
  10190. {
  10191. "name": "symfony/http-foundation",
  10192. "version": "v6.4.16",
  10193. "source": {
  10194. "type": "git",
  10195. "url": "https://github.com/symfony/http-foundation.git",
  10196. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  10197. },
  10198. "dist": {
  10199. "type": "zip",
  10200. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10201. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10202. "shasum": ""
  10203. },
  10204. "require": {
  10205. "php": ">=8.1",
  10206. "symfony/deprecation-contracts": "^2.5|^3",
  10207. "symfony/polyfill-mbstring": "~1.1",
  10208. "symfony/polyfill-php83": "^1.27"
  10209. },
  10210. "conflict": {
  10211. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10212. },
  10213. "require-dev": {
  10214. "doctrine/dbal": "^2.13.1|^3|^4",
  10215. "predis/predis": "^1.1|^2.0",
  10216. "symfony/cache": "^6.4.12|^7.1.5",
  10217. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10218. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10219. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10220. "symfony/mime": "^5.4|^6.0|^7.0",
  10221. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10222. },
  10223. "type": "library",
  10224. "autoload": {
  10225. "psr-4": {
  10226. "Symfony\\Component\\HttpFoundation\\": ""
  10227. },
  10228. "exclude-from-classmap": [
  10229. "/Tests/"
  10230. ]
  10231. },
  10232. "notification-url": "https://packagist.org/downloads/",
  10233. "license": [
  10234. "MIT"
  10235. ],
  10236. "authors": [
  10237. {
  10238. "name": "Fabien Potencier",
  10239. "email": "fabien@symfony.com"
  10240. },
  10241. {
  10242. "name": "Symfony Community",
  10243. "homepage": "https://symfony.com/contributors"
  10244. }
  10245. ],
  10246. "description": "Defines an object-oriented layer for the HTTP specification",
  10247. "homepage": "https://symfony.com",
  10248. "support": {
  10249. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  10250. },
  10251. "funding": [
  10252. {
  10253. "url": "https://symfony.com/sponsor",
  10254. "type": "custom"
  10255. },
  10256. {
  10257. "url": "https://github.com/fabpot",
  10258. "type": "github"
  10259. },
  10260. {
  10261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10262. "type": "tidelift"
  10263. }
  10264. ],
  10265. "time": "2024-11-13T18:58:10+00:00"
  10266. },
  10267. {
  10268. "name": "symfony/options-resolver",
  10269. "version": "v6.4.16",
  10270. "source": {
  10271. "type": "git",
  10272. "url": "https://github.com/symfony/options-resolver.git",
  10273. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  10274. },
  10275. "dist": {
  10276. "type": "zip",
  10277. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  10278. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  10279. "shasum": ""
  10280. },
  10281. "require": {
  10282. "php": ">=8.1",
  10283. "symfony/deprecation-contracts": "^2.5|^3"
  10284. },
  10285. "type": "library",
  10286. "autoload": {
  10287. "psr-4": {
  10288. "Symfony\\Component\\OptionsResolver\\": ""
  10289. },
  10290. "exclude-from-classmap": [
  10291. "/Tests/"
  10292. ]
  10293. },
  10294. "notification-url": "https://packagist.org/downloads/",
  10295. "license": [
  10296. "MIT"
  10297. ],
  10298. "authors": [
  10299. {
  10300. "name": "Fabien Potencier",
  10301. "email": "fabien@symfony.com"
  10302. },
  10303. {
  10304. "name": "Symfony Community",
  10305. "homepage": "https://symfony.com/contributors"
  10306. }
  10307. ],
  10308. "description": "Provides an improved replacement for the array_replace PHP function",
  10309. "homepage": "https://symfony.com",
  10310. "keywords": [
  10311. "config",
  10312. "configuration",
  10313. "options"
  10314. ],
  10315. "support": {
  10316. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  10317. },
  10318. "funding": [
  10319. {
  10320. "url": "https://symfony.com/sponsor",
  10321. "type": "custom"
  10322. },
  10323. {
  10324. "url": "https://github.com/fabpot",
  10325. "type": "github"
  10326. },
  10327. {
  10328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10329. "type": "tidelift"
  10330. }
  10331. ],
  10332. "time": "2024-11-20T10:57:02+00:00"
  10333. },
  10334. {
  10335. "name": "symfony/polyfill-php81",
  10336. "version": "v1.31.0",
  10337. "source": {
  10338. "type": "git",
  10339. "url": "https://github.com/symfony/polyfill-php81.git",
  10340. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10341. },
  10342. "dist": {
  10343. "type": "zip",
  10344. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10345. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10346. "shasum": ""
  10347. },
  10348. "require": {
  10349. "php": ">=7.2"
  10350. },
  10351. "type": "library",
  10352. "extra": {
  10353. "thanks": {
  10354. "name": "symfony/polyfill",
  10355. "url": "https://github.com/symfony/polyfill"
  10356. }
  10357. },
  10358. "autoload": {
  10359. "files": [
  10360. "bootstrap.php"
  10361. ],
  10362. "psr-4": {
  10363. "Symfony\\Polyfill\\Php81\\": ""
  10364. },
  10365. "classmap": [
  10366. "Resources/stubs"
  10367. ]
  10368. },
  10369. "notification-url": "https://packagist.org/downloads/",
  10370. "license": [
  10371. "MIT"
  10372. ],
  10373. "authors": [
  10374. {
  10375. "name": "Nicolas Grekas",
  10376. "email": "p@tchwork.com"
  10377. },
  10378. {
  10379. "name": "Symfony Community",
  10380. "homepage": "https://symfony.com/contributors"
  10381. }
  10382. ],
  10383. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10384. "homepage": "https://symfony.com",
  10385. "keywords": [
  10386. "compatibility",
  10387. "polyfill",
  10388. "portable",
  10389. "shim"
  10390. ],
  10391. "support": {
  10392. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10393. },
  10394. "funding": [
  10395. {
  10396. "url": "https://symfony.com/sponsor",
  10397. "type": "custom"
  10398. },
  10399. {
  10400. "url": "https://github.com/fabpot",
  10401. "type": "github"
  10402. },
  10403. {
  10404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10405. "type": "tidelift"
  10406. }
  10407. ],
  10408. "time": "2024-09-09T11:45:10+00:00"
  10409. },
  10410. {
  10411. "name": "symfony/polyfill-php83",
  10412. "version": "v1.31.0",
  10413. "source": {
  10414. "type": "git",
  10415. "url": "https://github.com/symfony/polyfill-php83.git",
  10416. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10417. },
  10418. "dist": {
  10419. "type": "zip",
  10420. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10421. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10422. "shasum": ""
  10423. },
  10424. "require": {
  10425. "php": ">=7.2"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "thanks": {
  10430. "name": "symfony/polyfill",
  10431. "url": "https://github.com/symfony/polyfill"
  10432. }
  10433. },
  10434. "autoload": {
  10435. "files": [
  10436. "bootstrap.php"
  10437. ],
  10438. "psr-4": {
  10439. "Symfony\\Polyfill\\Php83\\": ""
  10440. },
  10441. "classmap": [
  10442. "Resources/stubs"
  10443. ]
  10444. },
  10445. "notification-url": "https://packagist.org/downloads/",
  10446. "license": [
  10447. "MIT"
  10448. ],
  10449. "authors": [
  10450. {
  10451. "name": "Nicolas Grekas",
  10452. "email": "p@tchwork.com"
  10453. },
  10454. {
  10455. "name": "Symfony Community",
  10456. "homepage": "https://symfony.com/contributors"
  10457. }
  10458. ],
  10459. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10460. "homepage": "https://symfony.com",
  10461. "keywords": [
  10462. "compatibility",
  10463. "polyfill",
  10464. "portable",
  10465. "shim"
  10466. ],
  10467. "support": {
  10468. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  10469. },
  10470. "funding": [
  10471. {
  10472. "url": "https://symfony.com/sponsor",
  10473. "type": "custom"
  10474. },
  10475. {
  10476. "url": "https://github.com/fabpot",
  10477. "type": "github"
  10478. },
  10479. {
  10480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10481. "type": "tidelift"
  10482. }
  10483. ],
  10484. "time": "2024-09-09T11:45:10+00:00"
  10485. },
  10486. {
  10487. "name": "symfony/process",
  10488. "version": "v6.4.15",
  10489. "source": {
  10490. "type": "git",
  10491. "url": "https://github.com/symfony/process.git",
  10492. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  10493. },
  10494. "dist": {
  10495. "type": "zip",
  10496. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  10497. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  10498. "shasum": ""
  10499. },
  10500. "require": {
  10501. "php": ">=8.1"
  10502. },
  10503. "type": "library",
  10504. "autoload": {
  10505. "psr-4": {
  10506. "Symfony\\Component\\Process\\": ""
  10507. },
  10508. "exclude-from-classmap": [
  10509. "/Tests/"
  10510. ]
  10511. },
  10512. "notification-url": "https://packagist.org/downloads/",
  10513. "license": [
  10514. "MIT"
  10515. ],
  10516. "authors": [
  10517. {
  10518. "name": "Fabien Potencier",
  10519. "email": "fabien@symfony.com"
  10520. },
  10521. {
  10522. "name": "Symfony Community",
  10523. "homepage": "https://symfony.com/contributors"
  10524. }
  10525. ],
  10526. "description": "Executes commands in sub-processes",
  10527. "homepage": "https://symfony.com",
  10528. "support": {
  10529. "source": "https://github.com/symfony/process/tree/v6.4.15"
  10530. },
  10531. "funding": [
  10532. {
  10533. "url": "https://symfony.com/sponsor",
  10534. "type": "custom"
  10535. },
  10536. {
  10537. "url": "https://github.com/fabpot",
  10538. "type": "github"
  10539. },
  10540. {
  10541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10542. "type": "tidelift"
  10543. }
  10544. ],
  10545. "time": "2024-11-06T14:19:14+00:00"
  10546. },
  10547. {
  10548. "name": "symfony/stopwatch",
  10549. "version": "v6.4.13",
  10550. "source": {
  10551. "type": "git",
  10552. "url": "https://github.com/symfony/stopwatch.git",
  10553. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  10554. },
  10555. "dist": {
  10556. "type": "zip",
  10557. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10558. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10559. "shasum": ""
  10560. },
  10561. "require": {
  10562. "php": ">=8.1",
  10563. "symfony/service-contracts": "^2.5|^3"
  10564. },
  10565. "type": "library",
  10566. "autoload": {
  10567. "psr-4": {
  10568. "Symfony\\Component\\Stopwatch\\": ""
  10569. },
  10570. "exclude-from-classmap": [
  10571. "/Tests/"
  10572. ]
  10573. },
  10574. "notification-url": "https://packagist.org/downloads/",
  10575. "license": [
  10576. "MIT"
  10577. ],
  10578. "authors": [
  10579. {
  10580. "name": "Fabien Potencier",
  10581. "email": "fabien@symfony.com"
  10582. },
  10583. {
  10584. "name": "Symfony Community",
  10585. "homepage": "https://symfony.com/contributors"
  10586. }
  10587. ],
  10588. "description": "Provides a way to profile code",
  10589. "homepage": "https://symfony.com",
  10590. "support": {
  10591. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://symfony.com/sponsor",
  10596. "type": "custom"
  10597. },
  10598. {
  10599. "url": "https://github.com/fabpot",
  10600. "type": "github"
  10601. },
  10602. {
  10603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10604. "type": "tidelift"
  10605. }
  10606. ],
  10607. "time": "2024-09-25T14:18:03+00:00"
  10608. },
  10609. {
  10610. "name": "theseer/tokenizer",
  10611. "version": "1.2.3",
  10612. "source": {
  10613. "type": "git",
  10614. "url": "https://github.com/theseer/tokenizer.git",
  10615. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10616. },
  10617. "dist": {
  10618. "type": "zip",
  10619. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10620. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10621. "shasum": ""
  10622. },
  10623. "require": {
  10624. "ext-dom": "*",
  10625. "ext-tokenizer": "*",
  10626. "ext-xmlwriter": "*",
  10627. "php": "^7.2 || ^8.0"
  10628. },
  10629. "type": "library",
  10630. "autoload": {
  10631. "classmap": [
  10632. "src/"
  10633. ]
  10634. },
  10635. "notification-url": "https://packagist.org/downloads/",
  10636. "license": [
  10637. "BSD-3-Clause"
  10638. ],
  10639. "authors": [
  10640. {
  10641. "name": "Arne Blankerts",
  10642. "email": "arne@blankerts.de",
  10643. "role": "Developer"
  10644. }
  10645. ],
  10646. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10647. "support": {
  10648. "issues": "https://github.com/theseer/tokenizer/issues",
  10649. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10650. },
  10651. "funding": [
  10652. {
  10653. "url": "https://github.com/theseer",
  10654. "type": "github"
  10655. }
  10656. ],
  10657. "time": "2024-03-03T12:36:25+00:00"
  10658. }
  10659. ],
  10660. "aliases": [],
  10661. "minimum-stability": "dev",
  10662. "stability-flags": [],
  10663. "prefer-stable": true,
  10664. "prefer-lowest": false,
  10665. "platform": {
  10666. "php": ">=8.1"
  10667. },
  10668. "platform-dev": [],
  10669. "plugin-api-version": "2.6.0"
  10670. }