composer.lock 402 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348
  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": "328ea22b284a6e78776b0e3c42d9a4fe",
  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": "easyswoole/spl",
  394. "version": "2.1.3",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/easy-swoole/spl.git",
  398. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  403. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  404. "shasum": "",
  405. "mirrors": [
  406. {
  407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  408. "preferred": true
  409. }
  410. ]
  411. },
  412. "require": {
  413. "ext-dom": "*",
  414. "ext-json": "*",
  415. "ext-simplexml": "*",
  416. "php": ">=8.1.0"
  417. },
  418. "require-dev": {
  419. "easyswoole/phpunit": "^1.0",
  420. "easyswoole/swoole-ide-helper": "^1.0"
  421. },
  422. "type": "library",
  423. "autoload": {
  424. "psr-4": {
  425. "EasySwoole\\Spl\\": "src/",
  426. "EasySwoole\\Spl\\Test\\": "test/"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "Apache-2.0"
  432. ],
  433. "authors": [
  434. {
  435. "name": "YF",
  436. "email": "291323003@qq.com"
  437. }
  438. ],
  439. "description": "php stander lib",
  440. "homepage": "https://www.easyswoole.com/",
  441. "keywords": [
  442. "async",
  443. "easyswoole",
  444. "framework",
  445. "swoole"
  446. ],
  447. "support": {
  448. "issues": "https://github.com/easy-swoole/spl/issues",
  449. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  450. },
  451. "time": "2024-07-09T14:44:25+00:00"
  452. },
  453. {
  454. "name": "easyswoole/verifycode",
  455. "version": "3.1.2",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/easy-swoole/verify-code.git",
  459. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  464. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  465. "shasum": "",
  466. "mirrors": [
  467. {
  468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  469. "preferred": true
  470. }
  471. ]
  472. },
  473. "require": {
  474. "easyswoole/spl": "^2.0",
  475. "ext-gd": "*",
  476. "php": ">=8.1"
  477. },
  478. "type": "library",
  479. "autoload": {
  480. "psr-4": {
  481. "EasySwoole\\VerifyCode\\": "src"
  482. }
  483. },
  484. "notification-url": "https://packagist.org/downloads/",
  485. "license": [
  486. "Apache-2.0"
  487. ],
  488. "authors": [
  489. {
  490. "name": "YF",
  491. "email": "291323003@qq.com"
  492. },
  493. {
  494. "name": "evalor",
  495. "email": "mipone@foxmail.com"
  496. }
  497. ],
  498. "support": {
  499. "issues": "https://github.com/easy-swoole/verify-code/issues",
  500. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  501. },
  502. "time": "2023-09-06T06:45:56+00:00"
  503. },
  504. {
  505. "name": "fig/http-message-util",
  506. "version": "1.1.5",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/php-fig/http-message-util.git",
  510. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  515. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "php": "^5.3 || ^7.0 || ^8.0"
  520. },
  521. "suggest": {
  522. "psr/http-message": "The package containing the PSR-7 interfaces"
  523. },
  524. "type": "library",
  525. "extra": {
  526. "branch-alias": {
  527. "dev-master": "1.1.x-dev"
  528. }
  529. },
  530. "autoload": {
  531. "psr-4": {
  532. "Fig\\Http\\Message\\": "src/"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "PHP-FIG",
  542. "homepage": "https://www.php-fig.org/"
  543. }
  544. ],
  545. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  546. "keywords": [
  547. "http",
  548. "http-message",
  549. "psr",
  550. "psr-7",
  551. "request",
  552. "response"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/php-fig/http-message-util/issues",
  556. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  557. },
  558. "time": "2020-11-24T22:02:12+00:00"
  559. },
  560. {
  561. "name": "graham-campbell/result-type",
  562. "version": "v1.1.3",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  566. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  571. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": "^7.2.5 || ^8.0",
  576. "phpoption/phpoption": "^1.9.3"
  577. },
  578. "require-dev": {
  579. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  580. },
  581. "type": "library",
  582. "autoload": {
  583. "psr-4": {
  584. "GrahamCampbell\\ResultType\\": "src/"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "MIT"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Graham Campbell",
  594. "email": "hello@gjcampbell.co.uk",
  595. "homepage": "https://github.com/GrahamCampbell"
  596. }
  597. ],
  598. "description": "An Implementation Of The Result Type",
  599. "keywords": [
  600. "Graham Campbell",
  601. "GrahamCampbell",
  602. "Result Type",
  603. "Result-Type",
  604. "result"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  608. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  609. },
  610. "funding": [
  611. {
  612. "url": "https://github.com/GrahamCampbell",
  613. "type": "github"
  614. },
  615. {
  616. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  617. "type": "tidelift"
  618. }
  619. ],
  620. "time": "2024-07-20T21:45:45+00:00"
  621. },
  622. {
  623. "name": "guzzlehttp/guzzle",
  624. "version": "7.9.2",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/guzzle/guzzle.git",
  628. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  633. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "ext-json": "*",
  638. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  639. "guzzlehttp/psr7": "^2.7.0",
  640. "php": "^7.2.5 || ^8.0",
  641. "psr/http-client": "^1.0",
  642. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  643. },
  644. "provide": {
  645. "psr/http-client-implementation": "1.0"
  646. },
  647. "require-dev": {
  648. "bamarni/composer-bin-plugin": "^1.8.2",
  649. "ext-curl": "*",
  650. "guzzle/client-integration-tests": "3.0.2",
  651. "php-http/message-factory": "^1.1",
  652. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  653. "psr/log": "^1.1 || ^2.0 || ^3.0"
  654. },
  655. "suggest": {
  656. "ext-curl": "Required for CURL handler support",
  657. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  658. "psr/log": "Required for using the Log middleware"
  659. },
  660. "type": "library",
  661. "extra": {
  662. "bamarni-bin": {
  663. "bin-links": true,
  664. "forward-command": false
  665. }
  666. },
  667. "autoload": {
  668. "files": [
  669. "src/functions_include.php"
  670. ],
  671. "psr-4": {
  672. "GuzzleHttp\\": "src/"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Graham Campbell",
  682. "email": "hello@gjcampbell.co.uk",
  683. "homepage": "https://github.com/GrahamCampbell"
  684. },
  685. {
  686. "name": "Michael Dowling",
  687. "email": "mtdowling@gmail.com",
  688. "homepage": "https://github.com/mtdowling"
  689. },
  690. {
  691. "name": "Jeremy Lindblom",
  692. "email": "jeremeamia@gmail.com",
  693. "homepage": "https://github.com/jeremeamia"
  694. },
  695. {
  696. "name": "George Mponos",
  697. "email": "gmponos@gmail.com",
  698. "homepage": "https://github.com/gmponos"
  699. },
  700. {
  701. "name": "Tobias Nyholm",
  702. "email": "tobias.nyholm@gmail.com",
  703. "homepage": "https://github.com/Nyholm"
  704. },
  705. {
  706. "name": "Márk Sági-Kazár",
  707. "email": "mark.sagikazar@gmail.com",
  708. "homepage": "https://github.com/sagikazarmark"
  709. },
  710. {
  711. "name": "Tobias Schultze",
  712. "email": "webmaster@tubo-world.de",
  713. "homepage": "https://github.com/Tobion"
  714. }
  715. ],
  716. "description": "Guzzle is a PHP HTTP client library",
  717. "keywords": [
  718. "client",
  719. "curl",
  720. "framework",
  721. "http",
  722. "http client",
  723. "psr-18",
  724. "psr-7",
  725. "rest",
  726. "web service"
  727. ],
  728. "support": {
  729. "issues": "https://github.com/guzzle/guzzle/issues",
  730. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  731. },
  732. "funding": [
  733. {
  734. "url": "https://github.com/GrahamCampbell",
  735. "type": "github"
  736. },
  737. {
  738. "url": "https://github.com/Nyholm",
  739. "type": "github"
  740. },
  741. {
  742. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  743. "type": "tidelift"
  744. }
  745. ],
  746. "time": "2024-07-24T11:22:20+00:00"
  747. },
  748. {
  749. "name": "guzzlehttp/promises",
  750. "version": "2.0.4",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/guzzle/promises.git",
  754. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  759. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "php": "^7.2.5 || ^8.0"
  764. },
  765. "require-dev": {
  766. "bamarni/composer-bin-plugin": "^1.8.2",
  767. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  768. },
  769. "type": "library",
  770. "extra": {
  771. "bamarni-bin": {
  772. "bin-links": true,
  773. "forward-command": false
  774. }
  775. },
  776. "autoload": {
  777. "psr-4": {
  778. "GuzzleHttp\\Promise\\": "src/"
  779. }
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "MIT"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Graham Campbell",
  788. "email": "hello@gjcampbell.co.uk",
  789. "homepage": "https://github.com/GrahamCampbell"
  790. },
  791. {
  792. "name": "Michael Dowling",
  793. "email": "mtdowling@gmail.com",
  794. "homepage": "https://github.com/mtdowling"
  795. },
  796. {
  797. "name": "Tobias Nyholm",
  798. "email": "tobias.nyholm@gmail.com",
  799. "homepage": "https://github.com/Nyholm"
  800. },
  801. {
  802. "name": "Tobias Schultze",
  803. "email": "webmaster@tubo-world.de",
  804. "homepage": "https://github.com/Tobion"
  805. }
  806. ],
  807. "description": "Guzzle promises library",
  808. "keywords": [
  809. "promise"
  810. ],
  811. "support": {
  812. "issues": "https://github.com/guzzle/promises/issues",
  813. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  814. },
  815. "funding": [
  816. {
  817. "url": "https://github.com/GrahamCampbell",
  818. "type": "github"
  819. },
  820. {
  821. "url": "https://github.com/Nyholm",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  826. "type": "tidelift"
  827. }
  828. ],
  829. "time": "2024-10-17T10:06:22+00:00"
  830. },
  831. {
  832. "name": "guzzlehttp/psr7",
  833. "version": "2.7.0",
  834. "source": {
  835. "type": "git",
  836. "url": "https://github.com/guzzle/psr7.git",
  837. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  838. },
  839. "dist": {
  840. "type": "zip",
  841. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  842. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  843. "shasum": ""
  844. },
  845. "require": {
  846. "php": "^7.2.5 || ^8.0",
  847. "psr/http-factory": "^1.0",
  848. "psr/http-message": "^1.1 || ^2.0",
  849. "ralouphie/getallheaders": "^3.0"
  850. },
  851. "provide": {
  852. "psr/http-factory-implementation": "1.0",
  853. "psr/http-message-implementation": "1.0"
  854. },
  855. "require-dev": {
  856. "bamarni/composer-bin-plugin": "^1.8.2",
  857. "http-interop/http-factory-tests": "0.9.0",
  858. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  859. },
  860. "suggest": {
  861. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  862. },
  863. "type": "library",
  864. "extra": {
  865. "bamarni-bin": {
  866. "bin-links": true,
  867. "forward-command": false
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "GuzzleHttp\\Psr7\\": "src/"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Graham Campbell",
  882. "email": "hello@gjcampbell.co.uk",
  883. "homepage": "https://github.com/GrahamCampbell"
  884. },
  885. {
  886. "name": "Michael Dowling",
  887. "email": "mtdowling@gmail.com",
  888. "homepage": "https://github.com/mtdowling"
  889. },
  890. {
  891. "name": "George Mponos",
  892. "email": "gmponos@gmail.com",
  893. "homepage": "https://github.com/gmponos"
  894. },
  895. {
  896. "name": "Tobias Nyholm",
  897. "email": "tobias.nyholm@gmail.com",
  898. "homepage": "https://github.com/Nyholm"
  899. },
  900. {
  901. "name": "Márk Sági-Kazár",
  902. "email": "mark.sagikazar@gmail.com",
  903. "homepage": "https://github.com/sagikazarmark"
  904. },
  905. {
  906. "name": "Tobias Schultze",
  907. "email": "webmaster@tubo-world.de",
  908. "homepage": "https://github.com/Tobion"
  909. },
  910. {
  911. "name": "Márk Sági-Kazár",
  912. "email": "mark.sagikazar@gmail.com",
  913. "homepage": "https://sagikazarmark.hu"
  914. }
  915. ],
  916. "description": "PSR-7 message implementation that also provides common utility methods",
  917. "keywords": [
  918. "http",
  919. "message",
  920. "psr-7",
  921. "request",
  922. "response",
  923. "stream",
  924. "uri",
  925. "url"
  926. ],
  927. "support": {
  928. "issues": "https://github.com/guzzle/psr7/issues",
  929. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  930. },
  931. "funding": [
  932. {
  933. "url": "https://github.com/GrahamCampbell",
  934. "type": "github"
  935. },
  936. {
  937. "url": "https://github.com/Nyholm",
  938. "type": "github"
  939. },
  940. {
  941. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  942. "type": "tidelift"
  943. }
  944. ],
  945. "time": "2024-07-18T11:15:46+00:00"
  946. },
  947. {
  948. "name": "hyperf/amqp",
  949. "version": "v3.1.42",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/hyperf/amqp.git",
  953. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  958. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  959. "shasum": ""
  960. },
  961. "require": {
  962. "doctrine/instantiator": "^1.2.0",
  963. "hyperf/codec": "~3.1.0",
  964. "hyperf/contract": "~3.1.0",
  965. "hyperf/coroutine": "~3.1.0",
  966. "hyperf/pool": "~3.1.0",
  967. "hyperf/process": "~3.1.0",
  968. "hyperf/support": "~3.1.0",
  969. "hyperf/utils": "~3.1.0",
  970. "php": ">=8.1",
  971. "php-amqplib/php-amqplib": "^3.5",
  972. "psr/container": "^1.0 || ^2.0",
  973. "psr/event-dispatcher": "^1.0",
  974. "psr/log": "^1.0 || ^2.0 || ^3.0"
  975. },
  976. "suggest": {
  977. "hyperf/di": "Required to use annotations.",
  978. "hyperf/event": "Declare queue and start consumers automatically."
  979. },
  980. "type": "library",
  981. "extra": {
  982. "hyperf": {
  983. "config": "Hyperf\\Amqp\\ConfigProvider"
  984. },
  985. "branch-alias": {
  986. "dev-master": "3.1-dev"
  987. }
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "Hyperf\\Amqp\\": "src/"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "MIT"
  997. ],
  998. "description": "A amqplib for hyperf.",
  999. "homepage": "https://hyperf.io",
  1000. "keywords": [
  1001. "AMQP",
  1002. "hyperf",
  1003. "php"
  1004. ],
  1005. "support": {
  1006. "docs": "https://hyperf.wiki",
  1007. "issues": "https://github.com/hyperf/hyperf/issues",
  1008. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1009. "source": "https://github.com/hyperf/hyperf"
  1010. },
  1011. "funding": [
  1012. {
  1013. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1014. "type": "custom"
  1015. },
  1016. {
  1017. "url": "https://opencollective.com/hyperf",
  1018. "type": "open_collective"
  1019. }
  1020. ],
  1021. "time": "2024-09-25T02:54:12+00:00"
  1022. },
  1023. {
  1024. "name": "hyperf/async-queue",
  1025. "version": "v3.1.42",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/hyperf/async-queue.git",
  1029. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1034. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1035. "shasum": ""
  1036. },
  1037. "require": {
  1038. "hyperf/codec": "~3.1.0",
  1039. "hyperf/collection": "~3.1.0",
  1040. "hyperf/command": "~3.1.0",
  1041. "hyperf/contract": "~3.1.0",
  1042. "hyperf/support": "~3.1.0",
  1043. "hyperf/utils": "~3.1.0",
  1044. "php": ">=8.1",
  1045. "psr/container": "^1.0 || ^2.0",
  1046. "psr/event-dispatcher": "^1.0"
  1047. },
  1048. "suggest": {
  1049. "hyperf/di": "Required to use annotations.",
  1050. "hyperf/event": "Required to dispatch a event.",
  1051. "hyperf/logger": "Required to use QueueHandleListener.",
  1052. "hyperf/process": "Auto register the consumer process for server."
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "hyperf": {
  1057. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1058. },
  1059. "branch-alias": {
  1060. "dev-master": "3.1-dev"
  1061. }
  1062. },
  1063. "autoload": {
  1064. "files": [
  1065. "src/Functions.php"
  1066. ],
  1067. "psr-4": {
  1068. "Hyperf\\AsyncQueue\\": "src/"
  1069. }
  1070. },
  1071. "notification-url": "https://packagist.org/downloads/",
  1072. "license": [
  1073. "MIT"
  1074. ],
  1075. "description": "A async queue component for hyperf.",
  1076. "homepage": "https://hyperf.io",
  1077. "keywords": [
  1078. "async-queue",
  1079. "hyperf",
  1080. "php"
  1081. ],
  1082. "support": {
  1083. "docs": "https://hyperf.wiki",
  1084. "issues": "https://github.com/hyperf/hyperf/issues",
  1085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1086. "source": "https://github.com/hyperf/hyperf"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1091. "type": "custom"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/hyperf",
  1095. "type": "open_collective"
  1096. }
  1097. ],
  1098. "time": "2024-09-25T02:54:12+00:00"
  1099. },
  1100. {
  1101. "name": "hyperf/cache",
  1102. "version": "v3.1.43",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/hyperf/cache.git",
  1106. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1111. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "hyperf/codec": "~3.1.0",
  1116. "hyperf/collection": "~3.1.0",
  1117. "hyperf/contract": "~3.1.0",
  1118. "hyperf/support": "~3.1.0",
  1119. "hyperf/utils": "~3.1.0",
  1120. "php": ">=8.1",
  1121. "psr/container": "^1.0 || ^2.0",
  1122. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1123. },
  1124. "suggest": {
  1125. "hyperf/di": "Use cache annotations.",
  1126. "hyperf/event": "Use listener to delete annotation cache."
  1127. },
  1128. "type": "library",
  1129. "extra": {
  1130. "hyperf": {
  1131. "config": "Hyperf\\Cache\\ConfigProvider"
  1132. },
  1133. "branch-alias": {
  1134. "dev-master": "3.1-dev"
  1135. }
  1136. },
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Hyperf\\Cache\\": "src/"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "description": "A cache component for hyperf.",
  1147. "homepage": "https://hyperf.io",
  1148. "keywords": [
  1149. "cache",
  1150. "hyperf",
  1151. "php"
  1152. ],
  1153. "support": {
  1154. "docs": "https://hyperf.wiki",
  1155. "issues": "https://github.com/hyperf/hyperf/issues",
  1156. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1157. "source": "https://github.com/hyperf/hyperf"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1162. "type": "custom"
  1163. },
  1164. {
  1165. "url": "https://opencollective.com/hyperf",
  1166. "type": "open_collective"
  1167. }
  1168. ],
  1169. "time": "2024-10-09T10:22:39+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/code-parser",
  1173. "version": "v3.1.42",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/code-parser.git",
  1177. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1182. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "hyperf/collection": "~3.1.0",
  1187. "hyperf/stringable": "~3.1.0",
  1188. "hyperf/support": "~3.1.0",
  1189. "php": ">=8.1"
  1190. },
  1191. "suggest": {
  1192. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1193. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1194. },
  1195. "type": "library",
  1196. "extra": {
  1197. "branch-alias": {
  1198. "dev-master": "3.1-dev"
  1199. }
  1200. },
  1201. "autoload": {
  1202. "psr-4": {
  1203. "Hyperf\\CodeParser\\": "src/"
  1204. }
  1205. },
  1206. "notification-url": "https://packagist.org/downloads/",
  1207. "license": [
  1208. "MIT"
  1209. ],
  1210. "description": "A code parser component for Hyperf.",
  1211. "homepage": "https://hyperf.io",
  1212. "keywords": [
  1213. "code-parser",
  1214. "hyperf",
  1215. "php",
  1216. "swoole"
  1217. ],
  1218. "support": {
  1219. "docs": "https://hyperf.wiki",
  1220. "issues": "https://github.com/hyperf/hyperf/issues",
  1221. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1222. "source": "https://github.com/hyperf/hyperf"
  1223. },
  1224. "funding": [
  1225. {
  1226. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1227. "type": "custom"
  1228. },
  1229. {
  1230. "url": "https://opencollective.com/hyperf",
  1231. "type": "open_collective"
  1232. }
  1233. ],
  1234. "time": "2024-09-25T02:54:12+00:00"
  1235. },
  1236. {
  1237. "name": "hyperf/codec",
  1238. "version": "v3.1.42",
  1239. "source": {
  1240. "type": "git",
  1241. "url": "https://github.com/hyperf/codec.git",
  1242. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1243. },
  1244. "dist": {
  1245. "type": "zip",
  1246. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1247. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1248. "shasum": ""
  1249. },
  1250. "require": {
  1251. "ext-json": "*",
  1252. "ext-xml": "*",
  1253. "hyperf/contract": "~3.1.0",
  1254. "php": ">=8.1"
  1255. },
  1256. "suggest": {
  1257. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1258. },
  1259. "type": "library",
  1260. "extra": {
  1261. "branch-alias": {
  1262. "dev-master": "3.1-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Hyperf\\Codec\\": "src/"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "description": "A codec component for Hyperf.",
  1275. "homepage": "https://hyperf.io",
  1276. "keywords": [
  1277. "codec",
  1278. "hyperf",
  1279. "php",
  1280. "swoole"
  1281. ],
  1282. "support": {
  1283. "docs": "https://hyperf.wiki",
  1284. "issues": "https://github.com/hyperf/hyperf/issues",
  1285. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1286. "source": "https://github.com/hyperf/hyperf"
  1287. },
  1288. "funding": [
  1289. {
  1290. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1291. "type": "custom"
  1292. },
  1293. {
  1294. "url": "https://opencollective.com/hyperf",
  1295. "type": "open_collective"
  1296. }
  1297. ],
  1298. "time": "2024-09-25T02:54:12+00:00"
  1299. },
  1300. {
  1301. "name": "hyperf/collection",
  1302. "version": "v3.1.47",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/hyperf/collection.git",
  1306. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1311. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1312. "shasum": ""
  1313. },
  1314. "require": {
  1315. "hyperf/conditionable": "~3.1.0",
  1316. "hyperf/contract": "~3.1.0",
  1317. "hyperf/macroable": "~3.1.0",
  1318. "hyperf/stringable": "~3.1.0",
  1319. "php": ">=8.1"
  1320. },
  1321. "type": "library",
  1322. "extra": {
  1323. "branch-alias": {
  1324. "dev-master": "3.1-dev"
  1325. }
  1326. },
  1327. "autoload": {
  1328. "files": [
  1329. "src/Functions.php"
  1330. ],
  1331. "psr-4": {
  1332. "Hyperf\\Collection\\": "src/"
  1333. }
  1334. },
  1335. "notification-url": "https://packagist.org/downloads/",
  1336. "license": [
  1337. "MIT"
  1338. ],
  1339. "description": "Hyperf Collection package which come from illuminate/collections",
  1340. "homepage": "https://hyperf.io",
  1341. "keywords": [
  1342. "collection",
  1343. "hyperf",
  1344. "php",
  1345. "swoole"
  1346. ],
  1347. "support": {
  1348. "docs": "https://hyperf.wiki",
  1349. "issues": "https://github.com/hyperf/hyperf/issues",
  1350. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1351. "source": "https://github.com/hyperf/hyperf"
  1352. },
  1353. "funding": [
  1354. {
  1355. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1356. "type": "custom"
  1357. },
  1358. {
  1359. "url": "https://opencollective.com/hyperf",
  1360. "type": "open_collective"
  1361. }
  1362. ],
  1363. "time": "2024-11-28T01:51:55+00:00"
  1364. },
  1365. {
  1366. "name": "hyperf/command",
  1367. "version": "v3.1.42",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/hyperf/command.git",
  1371. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1376. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "hyperf/collection": "~3.1.0",
  1381. "hyperf/context": "~3.1.0",
  1382. "hyperf/contract": "~3.1.0",
  1383. "hyperf/coroutine": "~3.1.0",
  1384. "hyperf/di": "~3.1.0",
  1385. "hyperf/stringable": "~3.1.0",
  1386. "hyperf/support": "~3.1.0",
  1387. "hyperf/tappable": "~3.1.0",
  1388. "php": ">=8.1",
  1389. "psr/event-dispatcher": "^1.0",
  1390. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1391. },
  1392. "suggest": {
  1393. "hyperf/di": "Required to use annotations.",
  1394. "hyperf/event": "Required to use listeners."
  1395. },
  1396. "type": "library",
  1397. "extra": {
  1398. "hyperf": {
  1399. "config": "Hyperf\\Command\\ConfigProvider"
  1400. },
  1401. "branch-alias": {
  1402. "dev-master": "3.1-dev"
  1403. }
  1404. },
  1405. "autoload": {
  1406. "psr-4": {
  1407. "Hyperf\\Command\\": "src/"
  1408. }
  1409. },
  1410. "notification-url": "https://packagist.org/downloads/",
  1411. "license": [
  1412. "MIT"
  1413. ],
  1414. "description": "Command for hyperf",
  1415. "keywords": [
  1416. "command",
  1417. "php",
  1418. "swoole"
  1419. ],
  1420. "support": {
  1421. "issues": "https://github.com/hyperf/command/issues",
  1422. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1423. },
  1424. "funding": [
  1425. {
  1426. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1427. "type": "custom"
  1428. },
  1429. {
  1430. "url": "https://opencollective.com/hyperf",
  1431. "type": "open_collective"
  1432. }
  1433. ],
  1434. "time": "2024-09-25T02:54:12+00:00"
  1435. },
  1436. {
  1437. "name": "hyperf/conditionable",
  1438. "version": "v3.1.42",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/hyperf/conditionable.git",
  1442. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1447. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "php": ">=8.1"
  1452. },
  1453. "type": "library",
  1454. "extra": {
  1455. "branch-alias": {
  1456. "dev-master": "3.1-dev"
  1457. }
  1458. },
  1459. "autoload": {
  1460. "psr-4": {
  1461. "Hyperf\\Conditionable\\": "src/"
  1462. }
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "MIT"
  1467. ],
  1468. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1469. "homepage": "https://hyperf.io",
  1470. "keywords": [
  1471. "conditionable",
  1472. "hyperf",
  1473. "php",
  1474. "swoole"
  1475. ],
  1476. "support": {
  1477. "docs": "https://hyperf.wiki",
  1478. "issues": "https://github.com/hyperf/hyperf/issues",
  1479. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1480. "source": "https://github.com/hyperf/hyperf"
  1481. },
  1482. "funding": [
  1483. {
  1484. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1485. "type": "custom"
  1486. },
  1487. {
  1488. "url": "https://opencollective.com/hyperf",
  1489. "type": "open_collective"
  1490. }
  1491. ],
  1492. "time": "2024-09-25T02:54:12+00:00"
  1493. },
  1494. {
  1495. "name": "hyperf/config",
  1496. "version": "v3.1.42",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/hyperf/config.git",
  1500. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1505. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "hyperf/collection": "~3.1.0",
  1510. "hyperf/contract": "~3.1.0",
  1511. "hyperf/support": "~3.1.0",
  1512. "php": ">=8.1",
  1513. "psr/container": "^1.0 || ^2.0",
  1514. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1515. },
  1516. "suggest": {
  1517. "hyperf/context": "Required to use config()",
  1518. "hyperf/di": "Allows using @Value annotation",
  1519. "hyperf/event": "Allows using @Value annotation",
  1520. "hyperf/framework": "Allows using @Value annotation",
  1521. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1522. },
  1523. "type": "library",
  1524. "extra": {
  1525. "hyperf": {
  1526. "config": "Hyperf\\Config\\ConfigProvider"
  1527. },
  1528. "branch-alias": {
  1529. "dev-master": "3.1-dev"
  1530. }
  1531. },
  1532. "autoload": {
  1533. "files": [
  1534. "./src/Functions.php"
  1535. ],
  1536. "psr-4": {
  1537. "Hyperf\\Config\\": "src/"
  1538. }
  1539. },
  1540. "notification-url": "https://packagist.org/downloads/",
  1541. "license": [
  1542. "MIT"
  1543. ],
  1544. "description": "An independent component that provides configuration container.",
  1545. "homepage": "https://hyperf.io",
  1546. "keywords": [
  1547. "config",
  1548. "configuration",
  1549. "hyperf",
  1550. "php",
  1551. "swoole"
  1552. ],
  1553. "support": {
  1554. "docs": "https://hyperf.wiki",
  1555. "issues": "https://github.com/hyperf/hyperf/issues",
  1556. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1557. "source": "https://github.com/hyperf/hyperf"
  1558. },
  1559. "funding": [
  1560. {
  1561. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1562. "type": "custom"
  1563. },
  1564. {
  1565. "url": "https://opencollective.com/hyperf",
  1566. "type": "open_collective"
  1567. }
  1568. ],
  1569. "time": "2024-09-25T02:54:12+00:00"
  1570. },
  1571. {
  1572. "name": "hyperf/config-center",
  1573. "version": "v3.1.42",
  1574. "source": {
  1575. "type": "git",
  1576. "url": "https://github.com/hyperf/config-center.git",
  1577. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1578. },
  1579. "dist": {
  1580. "type": "zip",
  1581. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1582. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1583. "shasum": ""
  1584. },
  1585. "require": {
  1586. "hyperf/support": "~3.1.0",
  1587. "php": ">=8.1"
  1588. },
  1589. "suggest": {
  1590. "hyperf/process": "^2.1"
  1591. },
  1592. "type": "library",
  1593. "extra": {
  1594. "hyperf": {
  1595. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1596. },
  1597. "branch-alias": {
  1598. "dev-master": "3.1-dev"
  1599. }
  1600. },
  1601. "autoload": {
  1602. "psr-4": {
  1603. "Hyperf\\ConfigCenter\\": "src/"
  1604. }
  1605. },
  1606. "notification-url": "https://packagist.org/downloads/",
  1607. "license": [
  1608. "MIT"
  1609. ],
  1610. "description": "The abstraction component of config center",
  1611. "homepage": "https://hyperf.io",
  1612. "keywords": [
  1613. "config-center",
  1614. "hyperf",
  1615. "php"
  1616. ],
  1617. "support": {
  1618. "docs": "https://hyperf.wiki",
  1619. "issues": "https://github.com/hyperf/hyperf/issues",
  1620. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1621. "source": "https://github.com/hyperf/hyperf"
  1622. },
  1623. "funding": [
  1624. {
  1625. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1626. "type": "custom"
  1627. },
  1628. {
  1629. "url": "https://opencollective.com/hyperf",
  1630. "type": "open_collective"
  1631. }
  1632. ],
  1633. "time": "2024-09-25T02:54:12+00:00"
  1634. },
  1635. {
  1636. "name": "hyperf/config-nacos",
  1637. "version": "v3.1.42",
  1638. "source": {
  1639. "type": "git",
  1640. "url": "https://github.com/hyperf/config-nacos.git",
  1641. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1642. },
  1643. "dist": {
  1644. "type": "zip",
  1645. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1646. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1647. "shasum": ""
  1648. },
  1649. "require": {
  1650. "hyperf/codec": "~3.1.0",
  1651. "hyperf/config-center": "~3.1.0",
  1652. "hyperf/contract": "~3.1.0",
  1653. "hyperf/guzzle": "~3.1.0",
  1654. "hyperf/nacos": "~3.1.0",
  1655. "hyperf/support": "~3.1.0",
  1656. "hyperf/utils": "~3.1.0",
  1657. "jetbrains/phpstorm-attributes": "^1.0",
  1658. "php": ">=8.1"
  1659. },
  1660. "suggest": {
  1661. "ext-json": "*",
  1662. "ext-simplexml": "*",
  1663. "ext-yaml": "*",
  1664. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1665. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1666. "hyperf/process": "Required to use processes. (~2.2.0)"
  1667. },
  1668. "type": "library",
  1669. "extra": {
  1670. "hyperf": {
  1671. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1672. },
  1673. "branch-alias": {
  1674. "dev-master": "3.1-dev"
  1675. }
  1676. },
  1677. "autoload": {
  1678. "psr-4": {
  1679. "Hyperf\\ConfigNacos\\": "src/"
  1680. }
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "description": "A nacos adapter for config center component.",
  1687. "homepage": "https://hyperf.io",
  1688. "keywords": [
  1689. "hyperf",
  1690. "nacos",
  1691. "php",
  1692. "swoole"
  1693. ],
  1694. "support": {
  1695. "docs": "https://hyperf.wiki",
  1696. "issues": "https://github.com/hyperf/hyperf/issues",
  1697. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1698. "source": "https://github.com/hyperf/hyperf"
  1699. },
  1700. "funding": [
  1701. {
  1702. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1703. "type": "custom"
  1704. },
  1705. {
  1706. "url": "https://opencollective.com/hyperf",
  1707. "type": "open_collective"
  1708. }
  1709. ],
  1710. "time": "2024-09-25T02:54:12+00:00"
  1711. },
  1712. {
  1713. "name": "hyperf/constants",
  1714. "version": "v3.1.42",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/hyperf/constants.git",
  1718. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1723. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1724. "shasum": ""
  1725. },
  1726. "require": {
  1727. "hyperf/di": "~3.1.0",
  1728. "hyperf/support": "~3.1.0",
  1729. "hyperf/utils": "~3.1.0",
  1730. "php": ">=8.1"
  1731. },
  1732. "suggest": {
  1733. "hyperf/translation": "Required to use translation."
  1734. },
  1735. "type": "library",
  1736. "extra": {
  1737. "hyperf": {
  1738. "config": "Hyperf\\Constants\\ConfigProvider"
  1739. },
  1740. "branch-alias": {
  1741. "dev-master": "3.1-dev"
  1742. }
  1743. },
  1744. "autoload": {
  1745. "psr-4": {
  1746. "Hyperf\\Constants\\": "src/"
  1747. }
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "MIT"
  1752. ],
  1753. "description": "A constants component for hyperf.",
  1754. "homepage": "https://hyperf.io",
  1755. "keywords": [
  1756. "constants",
  1757. "hyperf",
  1758. "php"
  1759. ],
  1760. "support": {
  1761. "docs": "https://hyperf.wiki",
  1762. "issues": "https://github.com/hyperf/hyperf/issues",
  1763. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1764. "source": "https://github.com/hyperf/hyperf"
  1765. },
  1766. "funding": [
  1767. {
  1768. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1769. "type": "custom"
  1770. },
  1771. {
  1772. "url": "https://opencollective.com/hyperf",
  1773. "type": "open_collective"
  1774. }
  1775. ],
  1776. "time": "2024-09-25T02:54:12+00:00"
  1777. },
  1778. {
  1779. "name": "hyperf/consul",
  1780. "version": "v3.1.42",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/hyperf/consul.git",
  1784. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1789. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1790. "shasum": ""
  1791. },
  1792. "require": {
  1793. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1794. "php": ">=8.1"
  1795. },
  1796. "type": "library",
  1797. "extra": {
  1798. "hyperf": {
  1799. "config": "Hyperf\\Consul\\ConfigProvider"
  1800. },
  1801. "branch-alias": {
  1802. "dev-master": "3.1-dev"
  1803. }
  1804. },
  1805. "autoload": {
  1806. "psr-4": {
  1807. "Hyperf\\Consul\\": "src/"
  1808. }
  1809. },
  1810. "notification-url": "https://packagist.org/downloads/",
  1811. "license": [
  1812. "MIT"
  1813. ],
  1814. "description": "A Consul Client for Hyperf.",
  1815. "homepage": "https://hyperf.io",
  1816. "keywords": [
  1817. "consul",
  1818. "consul-client",
  1819. "hyperf",
  1820. "php",
  1821. "swoole"
  1822. ],
  1823. "support": {
  1824. "docs": "https://hyperf.wiki",
  1825. "issues": "https://github.com/hyperf/hyperf/issues",
  1826. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1827. "source": "https://github.com/hyperf/hyperf"
  1828. },
  1829. "funding": [
  1830. {
  1831. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1832. "type": "custom"
  1833. },
  1834. {
  1835. "url": "https://opencollective.com/hyperf",
  1836. "type": "open_collective"
  1837. }
  1838. ],
  1839. "time": "2024-09-25T02:54:12+00:00"
  1840. },
  1841. {
  1842. "name": "hyperf/context",
  1843. "version": "v3.1.42",
  1844. "source": {
  1845. "type": "git",
  1846. "url": "https://github.com/hyperf/context.git",
  1847. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1848. },
  1849. "dist": {
  1850. "type": "zip",
  1851. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1852. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1853. "shasum": ""
  1854. },
  1855. "require": {
  1856. "hyperf/engine": "^2.0",
  1857. "php": ">=8.1"
  1858. },
  1859. "suggest": {
  1860. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1861. },
  1862. "type": "library",
  1863. "extra": {
  1864. "branch-alias": {
  1865. "dev-master": "3.1-dev"
  1866. }
  1867. },
  1868. "autoload": {
  1869. "psr-4": {
  1870. "Hyperf\\Context\\": "src/"
  1871. }
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "description": "A coroutine/application context library.",
  1878. "homepage": "https://hyperf.io",
  1879. "keywords": [
  1880. "Context",
  1881. "hyperf",
  1882. "php",
  1883. "swoole"
  1884. ],
  1885. "support": {
  1886. "docs": "https://hyperf.wiki",
  1887. "issues": "https://github.com/hyperf/hyperf/issues",
  1888. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1889. "source": "https://github.com/hyperf/hyperf"
  1890. },
  1891. "funding": [
  1892. {
  1893. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1894. "type": "custom"
  1895. },
  1896. {
  1897. "url": "https://opencollective.com/hyperf",
  1898. "type": "open_collective"
  1899. }
  1900. ],
  1901. "time": "2024-09-25T02:54:12+00:00"
  1902. },
  1903. {
  1904. "name": "hyperf/contract",
  1905. "version": "v3.1.42",
  1906. "source": {
  1907. "type": "git",
  1908. "url": "https://github.com/hyperf/contract.git",
  1909. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1910. },
  1911. "dist": {
  1912. "type": "zip",
  1913. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1914. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1915. "shasum": ""
  1916. },
  1917. "require": {
  1918. "php": ">=8.1"
  1919. },
  1920. "type": "library",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-master": "3.1-dev"
  1924. }
  1925. },
  1926. "autoload": {
  1927. "psr-4": {
  1928. "Hyperf\\Contract\\": "src/"
  1929. }
  1930. },
  1931. "notification-url": "https://packagist.org/downloads/",
  1932. "license": [
  1933. "MIT"
  1934. ],
  1935. "description": "The contracts of Hyperf.",
  1936. "homepage": "https://hyperf.io",
  1937. "keywords": [
  1938. "hyperf",
  1939. "php",
  1940. "swoole"
  1941. ],
  1942. "support": {
  1943. "docs": "https://hyperf.wiki",
  1944. "issues": "https://github.com/hyperf/hyperf/issues",
  1945. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1946. "source": "https://github.com/hyperf/hyperf"
  1947. },
  1948. "funding": [
  1949. {
  1950. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1951. "type": "custom"
  1952. },
  1953. {
  1954. "url": "https://opencollective.com/hyperf",
  1955. "type": "open_collective"
  1956. }
  1957. ],
  1958. "time": "2024-09-25T02:54:12+00:00"
  1959. },
  1960. {
  1961. "name": "hyperf/coordinator",
  1962. "version": "v3.1.42",
  1963. "source": {
  1964. "type": "git",
  1965. "url": "https://github.com/hyperf/coordinator.git",
  1966. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1967. },
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1971. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1972. "shasum": ""
  1973. },
  1974. "require": {
  1975. "hyperf/engine": "^2.0",
  1976. "php": ">=8.1"
  1977. },
  1978. "type": "library",
  1979. "extra": {
  1980. "branch-alias": {
  1981. "dev-master": "3.1-dev"
  1982. }
  1983. },
  1984. "autoload": {
  1985. "files": [
  1986. "src/Functions.php"
  1987. ],
  1988. "psr-4": {
  1989. "Hyperf\\Coordinator\\": "src/"
  1990. }
  1991. },
  1992. "notification-url": "https://packagist.org/downloads/",
  1993. "license": [
  1994. "MIT"
  1995. ],
  1996. "description": "Hyperf Coordinator",
  1997. "homepage": "https://hyperf.io",
  1998. "keywords": [
  1999. "Coordinator",
  2000. "hyperf",
  2001. "php",
  2002. "swoole"
  2003. ],
  2004. "support": {
  2005. "docs": "https://hyperf.wiki",
  2006. "issues": "https://github.com/hyperf/hyperf/issues",
  2007. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2008. "source": "https://github.com/hyperf/hyperf"
  2009. },
  2010. "funding": [
  2011. {
  2012. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2013. "type": "custom"
  2014. },
  2015. {
  2016. "url": "https://opencollective.com/hyperf",
  2017. "type": "open_collective"
  2018. }
  2019. ],
  2020. "time": "2024-09-25T02:54:12+00:00"
  2021. },
  2022. {
  2023. "name": "hyperf/coroutine",
  2024. "version": "v3.1.49",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://github.com/hyperf/coroutine.git",
  2028. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/959ea68ac700061d8f7b76708bc52f588b66979b",
  2033. "reference": "959ea68ac700061d8f7b76708bc52f588b66979b",
  2034. "shasum": ""
  2035. },
  2036. "require": {
  2037. "hyperf/context": "~3.1.0",
  2038. "hyperf/contract": "~3.1.0",
  2039. "hyperf/engine": "^2.0",
  2040. "php": ">=8.1"
  2041. },
  2042. "type": "library",
  2043. "extra": {
  2044. "branch-alias": {
  2045. "dev-master": "3.1-dev"
  2046. }
  2047. },
  2048. "autoload": {
  2049. "files": [
  2050. "src/Functions.php"
  2051. ],
  2052. "psr-4": {
  2053. "Hyperf\\Coroutine\\": "src/"
  2054. }
  2055. },
  2056. "notification-url": "https://packagist.org/downloads/",
  2057. "license": [
  2058. "MIT"
  2059. ],
  2060. "description": "Hyperf Coroutine",
  2061. "homepage": "https://hyperf.io",
  2062. "keywords": [
  2063. "coroutine",
  2064. "hyperf",
  2065. "php",
  2066. "swoole"
  2067. ],
  2068. "support": {
  2069. "docs": "https://hyperf.wiki",
  2070. "issues": "https://github.com/hyperf/hyperf/issues",
  2071. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2072. "source": "https://github.com/hyperf/hyperf"
  2073. },
  2074. "funding": [
  2075. {
  2076. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2077. "type": "custom"
  2078. },
  2079. {
  2080. "url": "https://opencollective.com/hyperf",
  2081. "type": "open_collective"
  2082. }
  2083. ],
  2084. "time": "2024-12-13T07:51:52+00:00"
  2085. },
  2086. {
  2087. "name": "hyperf/database",
  2088. "version": "v3.1.48",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/hyperf/database.git",
  2092. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2097. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "hyperf/code-parser": "~3.1.0",
  2102. "hyperf/collection": "~3.1.23",
  2103. "hyperf/conditionable": "~3.1.0",
  2104. "hyperf/macroable": "~3.1.0",
  2105. "hyperf/support": "~3.1.0",
  2106. "hyperf/tappable": "~3.1.0",
  2107. "hyperf/utils": "~3.1.0",
  2108. "nesbot/carbon": "^2.0",
  2109. "php": ">=8.1",
  2110. "psr/container": "^1.0 || ^2.0",
  2111. "psr/event-dispatcher": "^1.0"
  2112. },
  2113. "suggest": {
  2114. "doctrine/dbal": "Required to rename columns (^3.0).",
  2115. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2116. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2117. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2118. },
  2119. "type": "library",
  2120. "extra": {
  2121. "branch-alias": {
  2122. "dev-master": "3.1-dev"
  2123. }
  2124. },
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Hyperf\\Database\\": "src/"
  2128. }
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "MIT"
  2133. ],
  2134. "description": "A flexible database library.",
  2135. "homepage": "https://hyperf.io",
  2136. "keywords": [
  2137. "database",
  2138. "hyperf",
  2139. "php"
  2140. ],
  2141. "support": {
  2142. "docs": "https://hyperf.wiki",
  2143. "issues": "https://github.com/hyperf/hyperf/issues",
  2144. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2145. "source": "https://github.com/hyperf/hyperf"
  2146. },
  2147. "funding": [
  2148. {
  2149. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2150. "type": "custom"
  2151. },
  2152. {
  2153. "url": "https://opencollective.com/hyperf",
  2154. "type": "open_collective"
  2155. }
  2156. ],
  2157. "time": "2024-12-12T01:58:16+00:00"
  2158. },
  2159. {
  2160. "name": "hyperf/db-connection",
  2161. "version": "v3.1.44",
  2162. "source": {
  2163. "type": "git",
  2164. "url": "https://github.com/hyperf/db-connection.git",
  2165. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2166. },
  2167. "dist": {
  2168. "type": "zip",
  2169. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2170. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2171. "shasum": ""
  2172. },
  2173. "require": {
  2174. "hyperf/database": "~3.1.0",
  2175. "hyperf/di": "~3.1.0",
  2176. "hyperf/framework": "~3.1.0",
  2177. "hyperf/model-listener": "~3.1.0",
  2178. "hyperf/pool": "~3.1.0",
  2179. "hyperf/support": "~3.1.0",
  2180. "hyperf/utils": "~3.1.0",
  2181. "php": ">=8.1",
  2182. "psr/container": "^1.0 || ^2.0"
  2183. },
  2184. "type": "library",
  2185. "extra": {
  2186. "hyperf": {
  2187. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2188. },
  2189. "branch-alias": {
  2190. "dev-master": "3.1-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-4": {
  2195. "Hyperf\\DbConnection\\": "src/"
  2196. }
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "description": "A hyperf db connection handler for hyperf/database.",
  2203. "homepage": "https://hyperf.io",
  2204. "keywords": [
  2205. "Connection",
  2206. "database",
  2207. "hyperf",
  2208. "php"
  2209. ],
  2210. "support": {
  2211. "docs": "https://hyperf.wiki",
  2212. "issues": "https://github.com/hyperf/hyperf/issues",
  2213. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2214. "source": "https://github.com/hyperf/hyperf"
  2215. },
  2216. "funding": [
  2217. {
  2218. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2219. "type": "custom"
  2220. },
  2221. {
  2222. "url": "https://opencollective.com/hyperf",
  2223. "type": "open_collective"
  2224. }
  2225. ],
  2226. "time": "2024-10-11T08:58:16+00:00"
  2227. },
  2228. {
  2229. "name": "hyperf/di",
  2230. "version": "v3.1.42",
  2231. "source": {
  2232. "type": "git",
  2233. "url": "https://github.com/hyperf/di.git",
  2234. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2235. },
  2236. "dist": {
  2237. "type": "zip",
  2238. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2239. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2240. "shasum": ""
  2241. },
  2242. "require": {
  2243. "doctrine/instantiator": "^1.0",
  2244. "hyperf/code-parser": "~3.1.0",
  2245. "hyperf/pipeline": "~3.1.0",
  2246. "hyperf/stdlib": "~3.1.0",
  2247. "hyperf/support": "~3.1.0",
  2248. "nikic/php-parser": "^4.1",
  2249. "php": ">=8.1",
  2250. "php-di/phpdoc-reader": "^2.2",
  2251. "psr/container": "^1.0 || ^2.0",
  2252. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2253. "vlucas/phpdotenv": "^5.0"
  2254. },
  2255. "suggest": {
  2256. "ext-pcntl": "Required to scan annotations.",
  2257. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2258. },
  2259. "type": "library",
  2260. "extra": {
  2261. "hyperf": {
  2262. "config": "Hyperf\\Di\\ConfigProvider"
  2263. },
  2264. "branch-alias": {
  2265. "dev-master": "3.1-dev"
  2266. }
  2267. },
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Hyperf\\Di\\": "src/"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "description": "A DI for Hyperf.",
  2278. "homepage": "https://hyperf.io",
  2279. "keywords": [
  2280. "annotation",
  2281. "di",
  2282. "hyperf",
  2283. "php",
  2284. "swoole"
  2285. ],
  2286. "support": {
  2287. "docs": "https://hyperf.wiki",
  2288. "issues": "https://github.com/hyperf/hyperf/issues",
  2289. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2290. "source": "https://github.com/hyperf/hyperf"
  2291. },
  2292. "funding": [
  2293. {
  2294. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2295. "type": "custom"
  2296. },
  2297. {
  2298. "url": "https://opencollective.com/hyperf",
  2299. "type": "open_collective"
  2300. }
  2301. ],
  2302. "time": "2024-09-25T02:54:12+00:00"
  2303. },
  2304. {
  2305. "name": "hyperf/dispatcher",
  2306. "version": "v3.1.42",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/hyperf/dispatcher.git",
  2310. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2315. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2316. "shasum": ""
  2317. },
  2318. "require": {
  2319. "hyperf/contract": "~3.1.0",
  2320. "php": ">=8.1",
  2321. "psr/container": "^1.0 || ^2.0",
  2322. "psr/http-message": "^1.0 || ^2.0",
  2323. "psr/http-server-middleware": "^1.0"
  2324. },
  2325. "type": "library",
  2326. "extra": {
  2327. "hyperf": {
  2328. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2329. },
  2330. "branch-alias": {
  2331. "dev-master": "3.1-dev"
  2332. }
  2333. },
  2334. "autoload": {
  2335. "psr-4": {
  2336. "Hyperf\\Dispatcher\\": "src/"
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "MIT"
  2342. ],
  2343. "description": "A HTTP Server for Hyperf.",
  2344. "homepage": "https://hyperf.io",
  2345. "keywords": [
  2346. "dispatcher",
  2347. "filter",
  2348. "hyperf",
  2349. "middleware",
  2350. "php",
  2351. "swoole"
  2352. ],
  2353. "support": {
  2354. "docs": "https://hyperf.wiki",
  2355. "issues": "https://github.com/hyperf/hyperf/issues",
  2356. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2357. "source": "https://github.com/hyperf/hyperf"
  2358. },
  2359. "funding": [
  2360. {
  2361. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2362. "type": "custom"
  2363. },
  2364. {
  2365. "url": "https://opencollective.com/hyperf",
  2366. "type": "open_collective"
  2367. }
  2368. ],
  2369. "time": "2024-09-25T02:54:12+00:00"
  2370. },
  2371. {
  2372. "name": "hyperf/engine",
  2373. "version": "v2.12.1",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://github.com/hyperf/engine.git",
  2377. "reference": "90be8143841482dcd00051050986251e126c6132"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://api.github.com/repos/hyperf/engine/zipball/90be8143841482dcd00051050986251e126c6132",
  2382. "reference": "90be8143841482dcd00051050986251e126c6132",
  2383. "shasum": ""
  2384. },
  2385. "require": {
  2386. "hyperf/engine-contract": "~1.11.0",
  2387. "php": ">=8.0"
  2388. },
  2389. "conflict": {
  2390. "ext-swoole": "<5.0"
  2391. },
  2392. "require-dev": {
  2393. "friendsofphp/php-cs-fixer": "^3.0",
  2394. "hyperf/guzzle": "^3.0",
  2395. "hyperf/http-message": "^3.0",
  2396. "mockery/mockery": "^1.5",
  2397. "phpstan/phpstan": "^1.0",
  2398. "phpunit/phpunit": "^9.4",
  2399. "swoole/ide-helper": "5.*"
  2400. },
  2401. "suggest": {
  2402. "ext-sockets": "*",
  2403. "ext-swoole": ">=5.0",
  2404. "hyperf/http-message": "Required to use ResponseEmitter.",
  2405. "psr/http-message": "Required to use WebSocket Frame."
  2406. },
  2407. "type": "library",
  2408. "extra": {
  2409. "hyperf": {
  2410. "config": "Hyperf\\Engine\\ConfigProvider"
  2411. },
  2412. "branch-alias": {
  2413. "dev-master": "2.12-dev"
  2414. }
  2415. },
  2416. "autoload": {
  2417. "files": [
  2418. "src/Functions.php"
  2419. ],
  2420. "psr-4": {
  2421. "Hyperf\\Engine\\": "src/"
  2422. }
  2423. },
  2424. "notification-url": "https://packagist.org/downloads/",
  2425. "license": [
  2426. "MIT"
  2427. ],
  2428. "description": "Coroutine engine provided by swoole.",
  2429. "keywords": [
  2430. "engine",
  2431. "hyperf",
  2432. "php",
  2433. "swoole"
  2434. ],
  2435. "support": {
  2436. "issues": "https://github.com/hyperf/engine/issues",
  2437. "source": "https://github.com/hyperf/engine/tree/v2.12.1"
  2438. },
  2439. "funding": [
  2440. {
  2441. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2442. "type": "custom"
  2443. },
  2444. {
  2445. "url": "https://opencollective.com/hyperf",
  2446. "type": "open_collective"
  2447. }
  2448. ],
  2449. "time": "2024-12-17T12:36:21+00:00"
  2450. },
  2451. {
  2452. "name": "hyperf/engine-contract",
  2453. "version": "v1.11.0",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://github.com/hyperf/engine-contract.git",
  2457. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2462. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2463. "shasum": ""
  2464. },
  2465. "require": {
  2466. "php": ">=8.0"
  2467. },
  2468. "require-dev": {
  2469. "friendsofphp/php-cs-fixer": "^3.0",
  2470. "mockery/mockery": "^1.0",
  2471. "phpstan/phpstan": "^1.0",
  2472. "phpunit/phpunit": ">=7.0",
  2473. "psr/http-message": "^1.0",
  2474. "swoole/ide-helper": "^4.5"
  2475. },
  2476. "suggest": {
  2477. "psr/http-message": "Required to use WebSocket Frame."
  2478. },
  2479. "type": "library",
  2480. "extra": {
  2481. "branch-alias": {
  2482. "dev-master": "1.9-dev"
  2483. }
  2484. },
  2485. "autoload": {
  2486. "psr-4": {
  2487. "Hyperf\\Engine\\Contract\\": "src/"
  2488. }
  2489. },
  2490. "notification-url": "https://packagist.org/downloads/",
  2491. "license": [
  2492. "MIT"
  2493. ],
  2494. "description": "Contract for Coroutine Engine",
  2495. "keywords": [
  2496. "contract",
  2497. "coroutine",
  2498. "engine",
  2499. "hyperf",
  2500. "php"
  2501. ],
  2502. "support": {
  2503. "issues": "https://github.com/hyperf/engine-contract/issues",
  2504. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2505. },
  2506. "funding": [
  2507. {
  2508. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2509. "type": "custom"
  2510. },
  2511. {
  2512. "url": "https://opencollective.com/hyperf",
  2513. "type": "open_collective"
  2514. }
  2515. ],
  2516. "time": "2024-11-19T04:15:31+00:00"
  2517. },
  2518. {
  2519. "name": "hyperf/event",
  2520. "version": "v3.1.42",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://github.com/hyperf/event.git",
  2524. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2529. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2530. "shasum": ""
  2531. },
  2532. "require": {
  2533. "hyperf/contract": "~3.1.0",
  2534. "hyperf/stdlib": "~3.1.0",
  2535. "php": ">=8.1",
  2536. "psr/event-dispatcher": "^1.0"
  2537. },
  2538. "suggest": {
  2539. "hyperf/di": "Required to use annotatioins."
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "hyperf": {
  2544. "config": "Hyperf\\Event\\ConfigProvider"
  2545. },
  2546. "branch-alias": {
  2547. "dev-master": "3.1-dev"
  2548. }
  2549. },
  2550. "autoload": {
  2551. "psr-4": {
  2552. "Hyperf\\Event\\": "src/"
  2553. }
  2554. },
  2555. "notification-url": "https://packagist.org/downloads/",
  2556. "license": [
  2557. "MIT"
  2558. ],
  2559. "description": "an event manager that implements PSR-14.",
  2560. "homepage": "https://hyperf.io",
  2561. "keywords": [
  2562. "event",
  2563. "hyperf",
  2564. "php",
  2565. "swoole"
  2566. ],
  2567. "support": {
  2568. "docs": "https://hyperf.wiki",
  2569. "issues": "https://github.com/hyperf/hyperf/issues",
  2570. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2571. "source": "https://github.com/hyperf/hyperf"
  2572. },
  2573. "funding": [
  2574. {
  2575. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2576. "type": "custom"
  2577. },
  2578. {
  2579. "url": "https://opencollective.com/hyperf",
  2580. "type": "open_collective"
  2581. }
  2582. ],
  2583. "time": "2024-09-25T02:54:12+00:00"
  2584. },
  2585. {
  2586. "name": "hyperf/exception-handler",
  2587. "version": "v3.1.42",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/hyperf/exception-handler.git",
  2591. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2596. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "hyperf/context": "~3.1.0",
  2601. "hyperf/contract": "~3.1.0",
  2602. "hyperf/dispatcher": "~3.1.0",
  2603. "hyperf/http-message": "~3.1.0",
  2604. "hyperf/stdlib": "~3.1.0",
  2605. "hyperf/support": "~3.1.0",
  2606. "php": ">=8.1",
  2607. "psr/container": "^1.0 || ^2.0",
  2608. "psr/http-message": "^1.0 || ^2.0",
  2609. "swow/psr7-plus": "^1.0"
  2610. },
  2611. "suggest": {
  2612. "hyperf/di": "Required to use #[ExceptionHandler]",
  2613. "hyperf/event": "Required to use listeners",
  2614. "hyperf/framework": "Required to use listeners",
  2615. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2616. },
  2617. "type": "library",
  2618. "extra": {
  2619. "hyperf": {
  2620. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2621. },
  2622. "branch-alias": {
  2623. "dev-master": "3.1-dev"
  2624. }
  2625. },
  2626. "autoload": {
  2627. "psr-4": {
  2628. "Hyperf\\ExceptionHandler\\": "src/"
  2629. }
  2630. },
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "MIT"
  2634. ],
  2635. "description": "Exception handler for hyperf",
  2636. "homepage": "https://hyperf.io",
  2637. "keywords": [
  2638. "exception-handler",
  2639. "php",
  2640. "swoole"
  2641. ],
  2642. "support": {
  2643. "docs": "https://hyperf.wiki",
  2644. "issues": "https://github.com/hyperf/hyperf/issues",
  2645. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2646. "source": "https://github.com/hyperf/hyperf"
  2647. },
  2648. "funding": [
  2649. {
  2650. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2651. "type": "custom"
  2652. },
  2653. {
  2654. "url": "https://opencollective.com/hyperf",
  2655. "type": "open_collective"
  2656. }
  2657. ],
  2658. "time": "2024-09-25T02:54:12+00:00"
  2659. },
  2660. {
  2661. "name": "hyperf/framework",
  2662. "version": "v3.1.42",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/hyperf/framework.git",
  2666. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2671. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2672. "shasum": ""
  2673. },
  2674. "require": {
  2675. "fig/http-message-util": "^1.1.2",
  2676. "hyperf/contract": "~3.1.0",
  2677. "hyperf/coordinator": "~3.1.0",
  2678. "hyperf/coroutine": "~3.1.0",
  2679. "php": ">=8.1",
  2680. "psr/container": "^1.0 || ^2.0",
  2681. "psr/event-dispatcher": "^1.0",
  2682. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2683. },
  2684. "suggest": {
  2685. "ext-swoole": "Required to use swoole engine.",
  2686. "hyperf/command": "Required to use Command annotation.",
  2687. "hyperf/di": "Required to use Command annotation.",
  2688. "hyperf/dispatcher": "Required to use BootApplication event.",
  2689. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2690. },
  2691. "type": "library",
  2692. "extra": {
  2693. "hyperf": {
  2694. "config": "Hyperf\\Framework\\ConfigProvider"
  2695. },
  2696. "branch-alias": {
  2697. "dev-master": "3.1-dev"
  2698. }
  2699. },
  2700. "autoload": {
  2701. "psr-4": {
  2702. "Hyperf\\Framework\\": "src/"
  2703. }
  2704. },
  2705. "notification-url": "https://packagist.org/downloads/",
  2706. "license": [
  2707. "MIT"
  2708. ],
  2709. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2710. "homepage": "https://hyperf.io",
  2711. "keywords": [
  2712. "Microservice",
  2713. "framework",
  2714. "hyperf",
  2715. "middleware",
  2716. "php",
  2717. "swoole"
  2718. ],
  2719. "support": {
  2720. "docs": "https://hyperf.wiki",
  2721. "issues": "https://github.com/hyperf/hyperf/issues",
  2722. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2723. "source": "https://github.com/hyperf/hyperf"
  2724. },
  2725. "funding": [
  2726. {
  2727. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2728. "type": "custom"
  2729. },
  2730. {
  2731. "url": "https://opencollective.com/hyperf",
  2732. "type": "open_collective"
  2733. }
  2734. ],
  2735. "time": "2024-09-25T02:54:12+00:00"
  2736. },
  2737. {
  2738. "name": "hyperf/guzzle",
  2739. "version": "v3.1.42",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/hyperf/guzzle.git",
  2743. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2748. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2753. "php": ">=8.1",
  2754. "psr/container": "^1.0 || ^2.0",
  2755. "psr/http-message": "^1.0 || ^2.0"
  2756. },
  2757. "suggest": {
  2758. "ext-curl": "Required for CURL handler support",
  2759. "hyperf/pool": "Required to use pool handler."
  2760. },
  2761. "type": "library",
  2762. "extra": {
  2763. "hyperf": {
  2764. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2765. },
  2766. "branch-alias": {
  2767. "dev-master": "3.1-dev"
  2768. }
  2769. },
  2770. "autoload": {
  2771. "psr-4": {
  2772. "Hyperf\\Guzzle\\": "src/"
  2773. }
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "MIT"
  2778. ],
  2779. "description": "Swoole coroutine handler for guzzle",
  2780. "keywords": [
  2781. "Guzzle",
  2782. "handler",
  2783. "php",
  2784. "swoole"
  2785. ],
  2786. "support": {
  2787. "issues": "https://github.com/hyperf/guzzle/issues",
  2788. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2789. },
  2790. "funding": [
  2791. {
  2792. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2793. "type": "custom"
  2794. },
  2795. {
  2796. "url": "https://opencollective.com/hyperf",
  2797. "type": "open_collective"
  2798. }
  2799. ],
  2800. "time": "2024-09-25T02:54:12+00:00"
  2801. },
  2802. {
  2803. "name": "hyperf/http-message",
  2804. "version": "v3.1.48",
  2805. "source": {
  2806. "type": "git",
  2807. "url": "https://github.com/hyperf/http-message.git",
  2808. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2809. },
  2810. "dist": {
  2811. "type": "zip",
  2812. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2813. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2814. "shasum": ""
  2815. },
  2816. "require": {
  2817. "hyperf/codec": "~3.1.0",
  2818. "hyperf/engine": "^2.11",
  2819. "hyperf/support": "~3.1.0",
  2820. "laminas/laminas-mime": "^2.7",
  2821. "php": ">=8.1",
  2822. "psr/http-message": "^1.0 || ^2.0",
  2823. "swow/psr7-plus": "^1.0"
  2824. },
  2825. "suggest": {
  2826. "psr/container": "Required to replace RequestParserInterface."
  2827. },
  2828. "type": "library",
  2829. "extra": {
  2830. "hyperf": {
  2831. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2832. },
  2833. "branch-alias": {
  2834. "dev-master": "3.1-dev"
  2835. }
  2836. },
  2837. "autoload": {
  2838. "psr-4": {
  2839. "Hyperf\\HttpMessage\\": "src/"
  2840. }
  2841. },
  2842. "notification-url": "https://packagist.org/downloads/",
  2843. "license": [
  2844. "MIT"
  2845. ],
  2846. "description": "microservice framework base on swoole",
  2847. "keywords": [
  2848. "http-message",
  2849. "hyperf",
  2850. "php",
  2851. "swoole"
  2852. ],
  2853. "support": {
  2854. "issues": "https://github.com/hyperf/http-message/issues",
  2855. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2856. },
  2857. "funding": [
  2858. {
  2859. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2860. "type": "custom"
  2861. },
  2862. {
  2863. "url": "https://opencollective.com/hyperf",
  2864. "type": "open_collective"
  2865. }
  2866. ],
  2867. "time": "2024-12-05T02:41:08+00:00"
  2868. },
  2869. {
  2870. "name": "hyperf/http-server",
  2871. "version": "v3.1.42",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/hyperf/http-server.git",
  2875. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2880. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2881. "shasum": ""
  2882. },
  2883. "require": {
  2884. "hyperf/codec": "~3.1.0",
  2885. "hyperf/collection": "~3.1.0",
  2886. "hyperf/context": "~3.1.0",
  2887. "hyperf/contract": "~3.1.0",
  2888. "hyperf/coroutine": "~3.1.0",
  2889. "hyperf/dispatcher": "~3.1.0",
  2890. "hyperf/event": "~3.1.0",
  2891. "hyperf/exception-handler": "~3.1.0",
  2892. "hyperf/http-message": "~3.1.0",
  2893. "hyperf/macroable": "~3.1.0",
  2894. "hyperf/serializer": "~3.1.0",
  2895. "hyperf/server": "~3.1.0",
  2896. "hyperf/stdlib": "~3.1.0",
  2897. "hyperf/support": "~3.1.0",
  2898. "nikic/fast-route": "^1.3",
  2899. "php": ">=8.1",
  2900. "psr/container": "^1.0 || ^2.0",
  2901. "swow/psr7-plus": "^1.0"
  2902. },
  2903. "suggest": {
  2904. "hyperf/di": "Required to use annotations."
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "hyperf": {
  2909. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2910. },
  2911. "branch-alias": {
  2912. "dev-master": "3.1-dev"
  2913. }
  2914. },
  2915. "autoload": {
  2916. "psr-4": {
  2917. "Hyperf\\HttpServer\\": "src/"
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "description": "A HTTP Server for Hyperf.",
  2925. "homepage": "https://hyperf.io",
  2926. "keywords": [
  2927. "http",
  2928. "http-server",
  2929. "hyperf",
  2930. "php",
  2931. "swoole"
  2932. ],
  2933. "support": {
  2934. "docs": "https://hyperf.wiki",
  2935. "issues": "https://github.com/hyperf/hyperf/issues",
  2936. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2937. "source": "https://github.com/hyperf/hyperf"
  2938. },
  2939. "funding": [
  2940. {
  2941. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2942. "type": "custom"
  2943. },
  2944. {
  2945. "url": "https://opencollective.com/hyperf",
  2946. "type": "open_collective"
  2947. }
  2948. ],
  2949. "time": "2024-09-25T02:54:12+00:00"
  2950. },
  2951. {
  2952. "name": "hyperf/json-rpc",
  2953. "version": "v3.1.47",
  2954. "source": {
  2955. "type": "git",
  2956. "url": "https://github.com/hyperf/json-rpc.git",
  2957. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2958. },
  2959. "dist": {
  2960. "type": "zip",
  2961. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2962. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2963. "shasum": ""
  2964. },
  2965. "require": {
  2966. "hyperf/codec": "~3.1.0",
  2967. "hyperf/context": "~3.1.0",
  2968. "hyperf/contract": "~3.1.0",
  2969. "hyperf/engine": "^2.0",
  2970. "hyperf/http-message": "~3.1.0",
  2971. "hyperf/load-balancer": "~3.1.0",
  2972. "hyperf/rpc": "~3.1.0",
  2973. "hyperf/serializer": "~3.1.0",
  2974. "hyperf/support": "~3.1.0",
  2975. "hyperf/utils": "~3.1.0",
  2976. "php": ">=8.1",
  2977. "psr/container": "^1.0 || ^2.0",
  2978. "swow/psr7-plus": "^1.0"
  2979. },
  2980. "suggest": {
  2981. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2982. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2983. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2984. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2985. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2986. },
  2987. "type": "library",
  2988. "extra": {
  2989. "hyperf": {
  2990. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2991. },
  2992. "branch-alias": {
  2993. "dev-master": "3.1-dev"
  2994. }
  2995. },
  2996. "autoload": {
  2997. "psr-4": {
  2998. "Hyperf\\JsonRpc\\": "src/"
  2999. }
  3000. },
  3001. "notification-url": "https://packagist.org/downloads/",
  3002. "license": [
  3003. "MIT"
  3004. ],
  3005. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3006. "homepage": "https://hyperf.io",
  3007. "keywords": [
  3008. "hyperf",
  3009. "json-rpc",
  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-11-28T01:51:55+00:00"
  3030. },
  3031. {
  3032. "name": "hyperf/load-balancer",
  3033. "version": "v3.1.42",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/hyperf/load-balancer.git",
  3037. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3042. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3043. "shasum": ""
  3044. },
  3045. "require": {
  3046. "hyperf/coordinator": "~3.1.0",
  3047. "hyperf/coroutine": "~3.1.0",
  3048. "markrogoyski/math-php": "^2.0",
  3049. "php": ">=8.1",
  3050. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3051. },
  3052. "type": "library",
  3053. "extra": {
  3054. "hyperf": {
  3055. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3056. },
  3057. "branch-alias": {
  3058. "dev-master": "3.1-dev"
  3059. }
  3060. },
  3061. "autoload": {
  3062. "psr-4": {
  3063. "Hyperf\\LoadBalancer\\": "src/"
  3064. }
  3065. },
  3066. "notification-url": "https://packagist.org/downloads/",
  3067. "license": [
  3068. "MIT"
  3069. ],
  3070. "description": "A load balancer library for Hyperf.",
  3071. "homepage": "https://hyperf.io",
  3072. "keywords": [
  3073. "hyperf",
  3074. "load-balancer",
  3075. "php",
  3076. "swoole"
  3077. ],
  3078. "support": {
  3079. "docs": "https://hyperf.wiki",
  3080. "issues": "https://github.com/hyperf/hyperf/issues",
  3081. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3082. "source": "https://github.com/hyperf/hyperf"
  3083. },
  3084. "funding": [
  3085. {
  3086. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3087. "type": "custom"
  3088. },
  3089. {
  3090. "url": "https://opencollective.com/hyperf",
  3091. "type": "open_collective"
  3092. }
  3093. ],
  3094. "time": "2024-09-25T02:54:12+00:00"
  3095. },
  3096. {
  3097. "name": "hyperf/logger",
  3098. "version": "v3.1.42",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/hyperf/logger.git",
  3102. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3107. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3108. "shasum": ""
  3109. },
  3110. "require": {
  3111. "hyperf/contract": "~3.1.0",
  3112. "hyperf/support": "~3.1.0",
  3113. "hyperf/utils": "~3.1.0",
  3114. "monolog/monolog": "^2.7 || ^3.1",
  3115. "php": ">=8.1",
  3116. "psr/container": "^1.0 || ^2.0",
  3117. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3118. },
  3119. "type": "library",
  3120. "extra": {
  3121. "hyperf": {
  3122. "config": "Hyperf\\Logger\\ConfigProvider"
  3123. },
  3124. "branch-alias": {
  3125. "dev-master": "3.1-dev"
  3126. }
  3127. },
  3128. "autoload": {
  3129. "psr-4": {
  3130. "Hyperf\\Logger\\": "src/"
  3131. }
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "description": "A logger component for hyperf.",
  3138. "homepage": "https://hyperf.io",
  3139. "keywords": [
  3140. "hyperf",
  3141. "logger",
  3142. "php"
  3143. ],
  3144. "support": {
  3145. "docs": "https://hyperf.wiki",
  3146. "issues": "https://github.com/hyperf/hyperf/issues",
  3147. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3148. "source": "https://github.com/hyperf/hyperf"
  3149. },
  3150. "funding": [
  3151. {
  3152. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3153. "type": "custom"
  3154. },
  3155. {
  3156. "url": "https://opencollective.com/hyperf",
  3157. "type": "open_collective"
  3158. }
  3159. ],
  3160. "time": "2024-09-25T02:54:12+00:00"
  3161. },
  3162. {
  3163. "name": "hyperf/macroable",
  3164. "version": "v3.1.42",
  3165. "source": {
  3166. "type": "git",
  3167. "url": "https://github.com/hyperf/macroable.git",
  3168. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3169. },
  3170. "dist": {
  3171. "type": "zip",
  3172. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3173. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3174. "shasum": ""
  3175. },
  3176. "require": {
  3177. "php": ">=8.1"
  3178. },
  3179. "type": "library",
  3180. "extra": {
  3181. "branch-alias": {
  3182. "dev-master": "3.1-dev"
  3183. }
  3184. },
  3185. "autoload": {
  3186. "psr-4": {
  3187. "Hyperf\\Macroable\\": "src/"
  3188. }
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "MIT"
  3193. ],
  3194. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3195. "homepage": "https://hyperf.io",
  3196. "keywords": [
  3197. "hyperf",
  3198. "macroable",
  3199. "php",
  3200. "swoole"
  3201. ],
  3202. "support": {
  3203. "docs": "https://hyperf.wiki",
  3204. "issues": "https://github.com/hyperf/hyperf/issues",
  3205. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3206. "source": "https://github.com/hyperf/hyperf"
  3207. },
  3208. "funding": [
  3209. {
  3210. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3211. "type": "custom"
  3212. },
  3213. {
  3214. "url": "https://opencollective.com/hyperf",
  3215. "type": "open_collective"
  3216. }
  3217. ],
  3218. "time": "2024-09-25T02:54:12+00:00"
  3219. },
  3220. {
  3221. "name": "hyperf/memory",
  3222. "version": "v3.1.42",
  3223. "source": {
  3224. "type": "git",
  3225. "url": "https://github.com/hyperf/memory.git",
  3226. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3227. },
  3228. "dist": {
  3229. "type": "zip",
  3230. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3231. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3232. "shasum": ""
  3233. },
  3234. "require": {
  3235. "php": ">=8.1"
  3236. },
  3237. "type": "library",
  3238. "extra": {
  3239. "hyperf": {
  3240. "config": "Hyperf\\Memory\\ConfigProvider"
  3241. },
  3242. "branch-alias": {
  3243. "dev-master": "3.1-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "Hyperf\\Memory\\": "src/"
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "description": "An independent component that use to operate and manage memory.",
  3256. "homepage": "https://hyperf.io",
  3257. "keywords": [
  3258. "hyperf",
  3259. "memory",
  3260. "php",
  3261. "swoole"
  3262. ],
  3263. "support": {
  3264. "docs": "https://hyperf.wiki",
  3265. "issues": "https://github.com/hyperf/hyperf/issues",
  3266. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3267. "source": "https://github.com/hyperf/hyperf"
  3268. },
  3269. "funding": [
  3270. {
  3271. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3272. "type": "custom"
  3273. },
  3274. {
  3275. "url": "https://opencollective.com/hyperf",
  3276. "type": "open_collective"
  3277. }
  3278. ],
  3279. "time": "2024-09-25T02:54:12+00:00"
  3280. },
  3281. {
  3282. "name": "hyperf/model-listener",
  3283. "version": "v3.1.42",
  3284. "source": {
  3285. "type": "git",
  3286. "url": "https://github.com/hyperf/model-listener.git",
  3287. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3288. },
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3292. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "hyperf/contract": "~3.1.0",
  3297. "hyperf/database": "~3.1.0",
  3298. "hyperf/di": "~3.1.0",
  3299. "hyperf/event": "~3.1.0",
  3300. "hyperf/support": "~3.1.0",
  3301. "hyperf/utils": "~3.1.0",
  3302. "php": ">=8.1",
  3303. "psr/container": "^1.0 || ^2.0"
  3304. },
  3305. "type": "library",
  3306. "extra": {
  3307. "hyperf": {
  3308. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3309. },
  3310. "branch-alias": {
  3311. "dev-master": "3.1-dev"
  3312. }
  3313. },
  3314. "autoload": {
  3315. "psr-4": {
  3316. "Hyperf\\ModelListener\\": "src/"
  3317. }
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "description": "A model listener for Hyperf.",
  3324. "homepage": "https://hyperf.io",
  3325. "keywords": [
  3326. "hyperf",
  3327. "model-listener",
  3328. "php",
  3329. "swoole"
  3330. ],
  3331. "support": {
  3332. "docs": "https://hyperf.wiki",
  3333. "issues": "https://github.com/hyperf/hyperf/issues",
  3334. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3335. "source": "https://github.com/hyperf/hyperf"
  3336. },
  3337. "funding": [
  3338. {
  3339. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3340. "type": "custom"
  3341. },
  3342. {
  3343. "url": "https://opencollective.com/hyperf",
  3344. "type": "open_collective"
  3345. }
  3346. ],
  3347. "time": "2024-09-25T02:54:12+00:00"
  3348. },
  3349. {
  3350. "name": "hyperf/nacos",
  3351. "version": "v3.1.42",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/hyperf/nacos.git",
  3355. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3360. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3365. "hyperf/codec": "~3.1.0",
  3366. "hyperf/contract": "~3.1.0",
  3367. "hyperf/support": "~3.1.0",
  3368. "hyperf/utils": "~3.1.0",
  3369. "jetbrains/phpstorm-attributes": "^1.0",
  3370. "php": ">=8.1"
  3371. },
  3372. "type": "library",
  3373. "extra": {
  3374. "hyperf": {
  3375. "config": "Hyperf\\Nacos\\ConfigProvider"
  3376. },
  3377. "branch-alias": {
  3378. "dev-master": "3.1-dev"
  3379. }
  3380. },
  3381. "autoload": {
  3382. "psr-4": {
  3383. "Hyperf\\Nacos\\": "src/"
  3384. }
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "description": "Nacos SDK",
  3391. "keywords": [
  3392. "hyperf",
  3393. "nacos",
  3394. "php"
  3395. ],
  3396. "support": {
  3397. "issues": "https://github.com/hyperf/nacos/issues",
  3398. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3399. },
  3400. "funding": [
  3401. {
  3402. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3403. "type": "custom"
  3404. },
  3405. {
  3406. "url": "https://opencollective.com/hyperf",
  3407. "type": "open_collective"
  3408. }
  3409. ],
  3410. "time": "2024-09-25T02:54:12+00:00"
  3411. },
  3412. {
  3413. "name": "hyperf/pipeline",
  3414. "version": "v3.1.42",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/hyperf/pipeline.git",
  3418. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3423. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "php": ">=8.1",
  3428. "psr/container": "^1.0 || ^2.0"
  3429. },
  3430. "type": "library",
  3431. "extra": {
  3432. "branch-alias": {
  3433. "dev-master": "3.1-dev"
  3434. }
  3435. },
  3436. "autoload": {
  3437. "psr-4": {
  3438. "Hyperf\\Pipeline\\": "src/"
  3439. }
  3440. },
  3441. "notification-url": "https://packagist.org/downloads/",
  3442. "license": [
  3443. "MIT"
  3444. ],
  3445. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3446. "homepage": "https://hyperf.io",
  3447. "keywords": [
  3448. "hyperf",
  3449. "php",
  3450. "pipeline",
  3451. "swoole"
  3452. ],
  3453. "support": {
  3454. "docs": "https://hyperf.wiki",
  3455. "issues": "https://github.com/hyperf/hyperf/issues",
  3456. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3457. "source": "https://github.com/hyperf/hyperf"
  3458. },
  3459. "funding": [
  3460. {
  3461. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3462. "type": "custom"
  3463. },
  3464. {
  3465. "url": "https://opencollective.com/hyperf",
  3466. "type": "open_collective"
  3467. }
  3468. ],
  3469. "time": "2024-09-25T02:54:12+00:00"
  3470. },
  3471. {
  3472. "name": "hyperf/pool",
  3473. "version": "v3.1.42",
  3474. "source": {
  3475. "type": "git",
  3476. "url": "https://github.com/hyperf/pool.git",
  3477. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3478. },
  3479. "dist": {
  3480. "type": "zip",
  3481. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3482. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3483. "shasum": ""
  3484. },
  3485. "require": {
  3486. "hyperf/contract": "~3.1.0",
  3487. "hyperf/support": "~3.1.0",
  3488. "hyperf/utils": "~3.1.0",
  3489. "php": ">=8.1",
  3490. "psr/container": "^1.0 || ^2.0"
  3491. },
  3492. "suggest": {
  3493. "psr/event-dispatcher": "Required to use events."
  3494. },
  3495. "type": "library",
  3496. "extra": {
  3497. "hyperf": {
  3498. "config": "Hyperf\\Pool\\ConfigProvider"
  3499. },
  3500. "branch-alias": {
  3501. "dev-master": "3.1-dev"
  3502. }
  3503. },
  3504. "autoload": {
  3505. "psr-4": {
  3506. "Hyperf\\Pool\\": "src/"
  3507. }
  3508. },
  3509. "notification-url": "https://packagist.org/downloads/",
  3510. "license": [
  3511. "MIT"
  3512. ],
  3513. "description": "An independent universal connection pool component.",
  3514. "homepage": "https://hyperf.io",
  3515. "keywords": [
  3516. "connection-pool",
  3517. "hyperf",
  3518. "php",
  3519. "swoole"
  3520. ],
  3521. "support": {
  3522. "docs": "https://hyperf.wiki",
  3523. "issues": "https://github.com/hyperf/hyperf/issues",
  3524. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3525. "source": "https://github.com/hyperf/hyperf"
  3526. },
  3527. "funding": [
  3528. {
  3529. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3530. "type": "custom"
  3531. },
  3532. {
  3533. "url": "https://opencollective.com/hyperf",
  3534. "type": "open_collective"
  3535. }
  3536. ],
  3537. "time": "2024-09-25T02:54:12+00:00"
  3538. },
  3539. {
  3540. "name": "hyperf/process",
  3541. "version": "v3.1.48",
  3542. "source": {
  3543. "type": "git",
  3544. "url": "https://github.com/hyperf/process.git",
  3545. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3546. },
  3547. "dist": {
  3548. "type": "zip",
  3549. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3550. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3551. "shasum": ""
  3552. },
  3553. "require": {
  3554. "hyperf/contract": "~3.1.0",
  3555. "hyperf/support": "~3.1.0",
  3556. "hyperf/utils": "~3.1.0",
  3557. "php": ">=8.1",
  3558. "psr/container": "^1.0 || ^2.0",
  3559. "psr/event-dispatcher": "^1.0"
  3560. },
  3561. "suggest": {
  3562. "hyperf/di": "Required to use annotations.",
  3563. "hyperf/event": "Required to dump the message before and after process.",
  3564. "hyperf/framework": "Required to use BootProcessListener."
  3565. },
  3566. "type": "library",
  3567. "extra": {
  3568. "hyperf": {
  3569. "config": "Hyperf\\Process\\ConfigProvider"
  3570. },
  3571. "branch-alias": {
  3572. "dev-master": "3.1-dev"
  3573. }
  3574. },
  3575. "autoload": {
  3576. "psr-4": {
  3577. "Hyperf\\Process\\": "src/"
  3578. }
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "description": "A process component for hyperf.",
  3585. "homepage": "https://hyperf.io",
  3586. "keywords": [
  3587. "hyperf",
  3588. "php",
  3589. "process"
  3590. ],
  3591. "support": {
  3592. "docs": "https://hyperf.wiki",
  3593. "issues": "https://github.com/hyperf/hyperf/issues",
  3594. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3595. "source": "https://github.com/hyperf/hyperf"
  3596. },
  3597. "funding": [
  3598. {
  3599. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3600. "type": "custom"
  3601. },
  3602. {
  3603. "url": "https://opencollective.com/hyperf",
  3604. "type": "open_collective"
  3605. }
  3606. ],
  3607. "time": "2024-12-02T10:54:30+00:00"
  3608. },
  3609. {
  3610. "name": "hyperf/redis",
  3611. "version": "v3.1.42",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://github.com/hyperf/redis.git",
  3615. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3616. },
  3617. "dist": {
  3618. "type": "zip",
  3619. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3620. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3621. "shasum": ""
  3622. },
  3623. "require": {
  3624. "ext-redis": "^5.0 || ^6.0",
  3625. "hyperf/contract": "~3.1.0",
  3626. "hyperf/pool": "~3.1.0",
  3627. "hyperf/support": "~3.1.0",
  3628. "hyperf/tappable": "~3.1.0",
  3629. "hyperf/utils": "~3.1.0",
  3630. "php": ">=8.1",
  3631. "psr/container": "^1.0 || ^2.0"
  3632. },
  3633. "suggest": {
  3634. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3635. "hyperf/di": "Create the RedisPool via dependency injection."
  3636. },
  3637. "type": "library",
  3638. "extra": {
  3639. "hyperf": {
  3640. "config": "Hyperf\\Redis\\ConfigProvider"
  3641. },
  3642. "branch-alias": {
  3643. "dev-master": "3.1-dev"
  3644. }
  3645. },
  3646. "autoload": {
  3647. "psr-4": {
  3648. "Hyperf\\Redis\\": "src/"
  3649. }
  3650. },
  3651. "notification-url": "https://packagist.org/downloads/",
  3652. "license": [
  3653. "MIT"
  3654. ],
  3655. "description": "A redis component for hyperf.",
  3656. "homepage": "https://hyperf.io",
  3657. "keywords": [
  3658. "hyperf",
  3659. "php",
  3660. "pool",
  3661. "redis"
  3662. ],
  3663. "support": {
  3664. "docs": "https://hyperf.wiki",
  3665. "issues": "https://github.com/hyperf/hyperf/issues",
  3666. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3667. "source": "https://github.com/hyperf/hyperf"
  3668. },
  3669. "funding": [
  3670. {
  3671. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3672. "type": "custom"
  3673. },
  3674. {
  3675. "url": "https://opencollective.com/hyperf",
  3676. "type": "open_collective"
  3677. }
  3678. ],
  3679. "time": "2024-09-25T02:54:12+00:00"
  3680. },
  3681. {
  3682. "name": "hyperf/rpc",
  3683. "version": "v3.1.42",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/hyperf/rpc.git",
  3687. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3692. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3693. "shasum": ""
  3694. },
  3695. "require": {
  3696. "hyperf/codec": "~3.1.0",
  3697. "hyperf/contract": "~3.1.0",
  3698. "hyperf/support": "~3.1.0",
  3699. "jetbrains/phpstorm-attributes": "^1.0",
  3700. "php": ">=8.1"
  3701. },
  3702. "type": "library",
  3703. "extra": {
  3704. "hyperf": [],
  3705. "branch-alias": {
  3706. "dev-master": "3.1-dev"
  3707. }
  3708. },
  3709. "autoload": {
  3710. "psr-4": {
  3711. "Hyperf\\Rpc\\": "src/"
  3712. }
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "MIT"
  3717. ],
  3718. "description": "A rpc basic library for Hyperf.",
  3719. "homepage": "https://hyperf.io",
  3720. "keywords": [
  3721. "hyperf",
  3722. "php",
  3723. "rpc",
  3724. "swoole"
  3725. ],
  3726. "support": {
  3727. "docs": "https://hyperf.wiki",
  3728. "issues": "https://github.com/hyperf/hyperf/issues",
  3729. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3730. "source": "https://github.com/hyperf/hyperf"
  3731. },
  3732. "funding": [
  3733. {
  3734. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3735. "type": "custom"
  3736. },
  3737. {
  3738. "url": "https://opencollective.com/hyperf",
  3739. "type": "open_collective"
  3740. }
  3741. ],
  3742. "time": "2024-09-25T02:54:12+00:00"
  3743. },
  3744. {
  3745. "name": "hyperf/rpc-server",
  3746. "version": "v3.1.42",
  3747. "source": {
  3748. "type": "git",
  3749. "url": "https://github.com/hyperf/rpc-server.git",
  3750. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3751. },
  3752. "dist": {
  3753. "type": "zip",
  3754. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3755. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3756. "shasum": ""
  3757. },
  3758. "require": {
  3759. "hyperf/http-server": "~3.1.0",
  3760. "hyperf/rpc": "~3.1.0",
  3761. "php": ">=8.1"
  3762. },
  3763. "suggest": {
  3764. "hyperf/di": "Required to use annotations."
  3765. },
  3766. "type": "library",
  3767. "extra": {
  3768. "hyperf": {
  3769. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3770. },
  3771. "branch-alias": {
  3772. "dev-master": "3.1-dev"
  3773. }
  3774. },
  3775. "autoload": {
  3776. "psr-4": {
  3777. "Hyperf\\RpcServer\\": "src/"
  3778. }
  3779. },
  3780. "notification-url": "https://packagist.org/downloads/",
  3781. "license": [
  3782. "MIT"
  3783. ],
  3784. "description": "An abstract rpc server component for Hyperf.",
  3785. "homepage": "https://hyperf.io",
  3786. "keywords": [
  3787. "hyperf",
  3788. "php",
  3789. "rpc",
  3790. "rpc-server",
  3791. "swoole"
  3792. ],
  3793. "support": {
  3794. "docs": "https://hyperf.wiki",
  3795. "issues": "https://github.com/hyperf/hyperf/issues",
  3796. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3797. "source": "https://github.com/hyperf/hyperf"
  3798. },
  3799. "funding": [
  3800. {
  3801. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3802. "type": "custom"
  3803. },
  3804. {
  3805. "url": "https://opencollective.com/hyperf",
  3806. "type": "open_collective"
  3807. }
  3808. ],
  3809. "time": "2024-09-25T02:54:12+00:00"
  3810. },
  3811. {
  3812. "name": "hyperf/serializer",
  3813. "version": "v3.1.42",
  3814. "source": {
  3815. "type": "git",
  3816. "url": "https://github.com/hyperf/serializer.git",
  3817. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3818. },
  3819. "dist": {
  3820. "type": "zip",
  3821. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3822. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3823. "shasum": ""
  3824. },
  3825. "require": {
  3826. "hyperf/contract": "~3.1.0",
  3827. "php": ">=8.1"
  3828. },
  3829. "suggest": {
  3830. "hyperf/di": "Required to use ExceptionNormalizer",
  3831. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3832. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3833. },
  3834. "type": "library",
  3835. "extra": {
  3836. "hyperf": {
  3837. "config": "Hyperf\\Serializer\\ConfigProvider"
  3838. },
  3839. "branch-alias": {
  3840. "dev-master": "3.1-dev"
  3841. }
  3842. },
  3843. "autoload": {
  3844. "psr-4": {
  3845. "Hyperf\\Serializer\\": "src/"
  3846. }
  3847. },
  3848. "notification-url": "https://packagist.org/downloads/",
  3849. "license": [
  3850. "MIT"
  3851. ],
  3852. "description": "A serializer component for Hyperf.",
  3853. "homepage": "https://hyperf.io",
  3854. "keywords": [
  3855. "hyperf",
  3856. "php",
  3857. "swoole",
  3858. "tappable"
  3859. ],
  3860. "support": {
  3861. "docs": "https://hyperf.wiki",
  3862. "issues": "https://github.com/hyperf/hyperf/issues",
  3863. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3864. "source": "https://github.com/hyperf/hyperf"
  3865. },
  3866. "funding": [
  3867. {
  3868. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3869. "type": "custom"
  3870. },
  3871. {
  3872. "url": "https://opencollective.com/hyperf",
  3873. "type": "open_collective"
  3874. }
  3875. ],
  3876. "time": "2024-09-25T02:54:12+00:00"
  3877. },
  3878. {
  3879. "name": "hyperf/server",
  3880. "version": "v3.1.42",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/hyperf/server.git",
  3884. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3889. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3890. "shasum": ""
  3891. },
  3892. "require": {
  3893. "hyperf/contract": "~3.1.0",
  3894. "hyperf/coordinator": "~3.1.0",
  3895. "hyperf/engine": "^2.8",
  3896. "hyperf/support": "~3.1.0",
  3897. "hyperf/tappable": "~3.1.0",
  3898. "php": ">=8.1",
  3899. "psr/container": "^1.0 || ^2.0",
  3900. "psr/event-dispatcher": "^1.0",
  3901. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3902. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3903. },
  3904. "suggest": {
  3905. "hyperf/event": "Dump the info after server start.",
  3906. "hyperf/framework": "Dump the info after server start."
  3907. },
  3908. "type": "library",
  3909. "extra": {
  3910. "hyperf": {
  3911. "config": "Hyperf\\Server\\ConfigProvider"
  3912. },
  3913. "branch-alias": {
  3914. "dev-master": "3.1-dev"
  3915. }
  3916. },
  3917. "autoload": {
  3918. "psr-4": {
  3919. "Hyperf\\Server\\": "src/"
  3920. }
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "MIT"
  3925. ],
  3926. "description": "A base server library for Hyperf.",
  3927. "homepage": "https://hyperf.io",
  3928. "keywords": [
  3929. "hyperf",
  3930. "php",
  3931. "server",
  3932. "swoole"
  3933. ],
  3934. "support": {
  3935. "docs": "https://hyperf.wiki",
  3936. "issues": "https://github.com/hyperf/hyperf/issues",
  3937. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3938. "source": "https://github.com/hyperf/hyperf"
  3939. },
  3940. "funding": [
  3941. {
  3942. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3943. "type": "custom"
  3944. },
  3945. {
  3946. "url": "https://opencollective.com/hyperf",
  3947. "type": "open_collective"
  3948. }
  3949. ],
  3950. "time": "2024-09-25T02:54:12+00:00"
  3951. },
  3952. {
  3953. "name": "hyperf/service-governance",
  3954. "version": "v3.1.42",
  3955. "source": {
  3956. "type": "git",
  3957. "url": "https://github.com/hyperf/service-governance.git",
  3958. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3959. },
  3960. "dist": {
  3961. "type": "zip",
  3962. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3963. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3964. "shasum": ""
  3965. },
  3966. "require": {
  3967. "hyperf/contract": "~3.1.0",
  3968. "hyperf/support": "~3.1.0",
  3969. "jetbrains/phpstorm-attributes": "^1.0",
  3970. "php": ">=8.1"
  3971. },
  3972. "suggest": {
  3973. "hyperf/event": "Required to use RegisterServiceListener.",
  3974. "hyperf/framework": "Required to use RegisterServiceListener.",
  3975. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3976. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3977. },
  3978. "type": "library",
  3979. "extra": {
  3980. "hyperf": {
  3981. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3982. },
  3983. "branch-alias": {
  3984. "dev-master": "3.1-dev"
  3985. }
  3986. },
  3987. "autoload": {
  3988. "psr-4": {
  3989. "Hyperf\\ServiceGovernance\\": "src/"
  3990. }
  3991. },
  3992. "notification-url": "https://packagist.org/downloads/",
  3993. "license": [
  3994. "MIT"
  3995. ],
  3996. "description": "A service governance component for Hyperf.",
  3997. "homepage": "https://hyperf.io",
  3998. "keywords": [
  3999. "hyperf",
  4000. "php",
  4001. "service-governance",
  4002. "swoole"
  4003. ],
  4004. "support": {
  4005. "docs": "https://hyperf.wiki",
  4006. "issues": "https://github.com/hyperf/hyperf/issues",
  4007. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4008. "source": "https://github.com/hyperf/hyperf"
  4009. },
  4010. "funding": [
  4011. {
  4012. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4013. "type": "custom"
  4014. },
  4015. {
  4016. "url": "https://opencollective.com/hyperf",
  4017. "type": "open_collective"
  4018. }
  4019. ],
  4020. "time": "2024-09-25T02:54:12+00:00"
  4021. },
  4022. {
  4023. "name": "hyperf/service-governance-consul",
  4024. "version": "v3.1.42",
  4025. "source": {
  4026. "type": "git",
  4027. "url": "https://github.com/hyperf/service-governance-consul.git",
  4028. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4029. },
  4030. "dist": {
  4031. "type": "zip",
  4032. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4033. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4034. "shasum": ""
  4035. },
  4036. "require": {
  4037. "hyperf/consul": "~3.1.0",
  4038. "hyperf/contract": "~3.1.0",
  4039. "hyperf/service-governance": "~3.1.0",
  4040. "hyperf/support": "~3.1.0",
  4041. "hyperf/utils": "~3.1.0",
  4042. "php": ">=8.1"
  4043. },
  4044. "type": "library",
  4045. "extra": {
  4046. "hyperf": {
  4047. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4048. },
  4049. "branch-alias": {
  4050. "dev-master": "3.1-dev"
  4051. }
  4052. },
  4053. "autoload": {
  4054. "psr-4": {
  4055. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4056. }
  4057. },
  4058. "notification-url": "https://packagist.org/downloads/",
  4059. "license": [
  4060. "MIT"
  4061. ],
  4062. "description": "A consul adapter for service governance.",
  4063. "homepage": "https://hyperf.io",
  4064. "keywords": [
  4065. "consul-adapter",
  4066. "hyperf",
  4067. "php",
  4068. "service-governance",
  4069. "swoole"
  4070. ],
  4071. "support": {
  4072. "docs": "https://hyperf.wiki",
  4073. "issues": "https://github.com/hyperf/hyperf/issues",
  4074. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4075. "source": "https://github.com/hyperf/hyperf"
  4076. },
  4077. "funding": [
  4078. {
  4079. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4080. "type": "custom"
  4081. },
  4082. {
  4083. "url": "https://opencollective.com/hyperf",
  4084. "type": "open_collective"
  4085. }
  4086. ],
  4087. "time": "2024-09-25T02:54:12+00:00"
  4088. },
  4089. {
  4090. "name": "hyperf/service-governance-nacos",
  4091. "version": "v3.1.42",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4095. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4100. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4101. "shasum": ""
  4102. },
  4103. "require": {
  4104. "hyperf/codec": "~3.1.0",
  4105. "hyperf/contract": "~3.1.0",
  4106. "hyperf/nacos": "~3.1.0",
  4107. "hyperf/service-governance": "~3.1.0",
  4108. "hyperf/support": "~3.1.0",
  4109. "hyperf/utils": "~3.1.0",
  4110. "php": ">=8.1"
  4111. },
  4112. "type": "library",
  4113. "extra": {
  4114. "hyperf": {
  4115. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4116. },
  4117. "branch-alias": {
  4118. "dev-master": "3.1-dev"
  4119. }
  4120. },
  4121. "autoload": {
  4122. "psr-4": {
  4123. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4124. }
  4125. },
  4126. "notification-url": "https://packagist.org/downloads/",
  4127. "license": [
  4128. "MIT"
  4129. ],
  4130. "description": "A nacos adapter for service governance.",
  4131. "homepage": "https://hyperf.io",
  4132. "keywords": [
  4133. "hyperf",
  4134. "nacos-adapter",
  4135. "php",
  4136. "service-governance",
  4137. "swoole"
  4138. ],
  4139. "support": {
  4140. "docs": "https://hyperf.wiki",
  4141. "issues": "https://github.com/hyperf/hyperf/issues",
  4142. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4143. "source": "https://github.com/hyperf/hyperf"
  4144. },
  4145. "funding": [
  4146. {
  4147. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4148. "type": "custom"
  4149. },
  4150. {
  4151. "url": "https://opencollective.com/hyperf",
  4152. "type": "open_collective"
  4153. }
  4154. ],
  4155. "time": "2024-09-25T02:54:12+00:00"
  4156. },
  4157. {
  4158. "name": "hyperf/stdlib",
  4159. "version": "v3.1.42",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/hyperf/stdlib.git",
  4163. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4168. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4169. "shasum": ""
  4170. },
  4171. "require": {
  4172. "php": ">=8.1"
  4173. },
  4174. "type": "library",
  4175. "extra": {
  4176. "branch-alias": {
  4177. "dev-master": "3.1-dev"
  4178. }
  4179. },
  4180. "autoload": {
  4181. "psr-4": {
  4182. "Hyperf\\Stdlib\\": "src/"
  4183. }
  4184. },
  4185. "notification-url": "https://packagist.org/downloads/",
  4186. "license": [
  4187. "MIT"
  4188. ],
  4189. "description": "A stdlib component for Hyperf.",
  4190. "homepage": "https://hyperf.io",
  4191. "keywords": [
  4192. "hyperf",
  4193. "php",
  4194. "stdlib",
  4195. "swoole"
  4196. ],
  4197. "support": {
  4198. "docs": "https://hyperf.wiki",
  4199. "issues": "https://github.com/hyperf/hyperf/issues",
  4200. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4201. "source": "https://github.com/hyperf/hyperf"
  4202. },
  4203. "funding": [
  4204. {
  4205. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4206. "type": "custom"
  4207. },
  4208. {
  4209. "url": "https://opencollective.com/hyperf",
  4210. "type": "open_collective"
  4211. }
  4212. ],
  4213. "time": "2024-09-25T02:54:12+00:00"
  4214. },
  4215. {
  4216. "name": "hyperf/stringable",
  4217. "version": "v3.1.43",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/hyperf/stringable.git",
  4221. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4226. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4227. "shasum": ""
  4228. },
  4229. "require": {
  4230. "ext-mbstring": "*",
  4231. "hyperf/collection": "~3.1.0",
  4232. "hyperf/conditionable": "~3.1.0",
  4233. "hyperf/macroable": "~3.1.0",
  4234. "hyperf/tappable": "~3.1.0",
  4235. "php": ">=8.1"
  4236. },
  4237. "suggest": {
  4238. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4239. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4240. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4241. },
  4242. "type": "library",
  4243. "extra": {
  4244. "branch-alias": {
  4245. "dev-master": "3.1-dev"
  4246. }
  4247. },
  4248. "autoload": {
  4249. "files": [
  4250. "src/Functions.php"
  4251. ],
  4252. "psr-4": {
  4253. "Hyperf\\Stringable\\": "src/"
  4254. }
  4255. },
  4256. "notification-url": "https://packagist.org/downloads/",
  4257. "license": [
  4258. "MIT"
  4259. ],
  4260. "description": "Hyperf Stringable package which come from illuminate/support",
  4261. "homepage": "https://hyperf.io",
  4262. "keywords": [
  4263. "hyperf",
  4264. "php",
  4265. "stringable",
  4266. "swoole"
  4267. ],
  4268. "support": {
  4269. "docs": "https://hyperf.wiki",
  4270. "issues": "https://github.com/hyperf/hyperf/issues",
  4271. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4272. "source": "https://github.com/hyperf/hyperf"
  4273. },
  4274. "funding": [
  4275. {
  4276. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4277. "type": "custom"
  4278. },
  4279. {
  4280. "url": "https://opencollective.com/hyperf",
  4281. "type": "open_collective"
  4282. }
  4283. ],
  4284. "time": "2024-10-09T02:28:40+00:00"
  4285. },
  4286. {
  4287. "name": "hyperf/support",
  4288. "version": "v3.1.47",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://github.com/hyperf/support.git",
  4292. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4297. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4298. "shasum": ""
  4299. },
  4300. "require": {
  4301. "hyperf/collection": "~3.1.0",
  4302. "hyperf/context": "~3.1.0",
  4303. "hyperf/contract": "~3.1.0",
  4304. "hyperf/coroutine": "~3.1.0",
  4305. "hyperf/macroable": "~3.1.0",
  4306. "hyperf/stringable": "~3.1.0",
  4307. "php": ">=8.1"
  4308. },
  4309. "suggest": {
  4310. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4311. },
  4312. "type": "library",
  4313. "extra": {
  4314. "branch-alias": {
  4315. "dev-master": "3.1-dev"
  4316. }
  4317. },
  4318. "autoload": {
  4319. "files": [
  4320. "src/Functions.php"
  4321. ],
  4322. "psr-4": {
  4323. "Hyperf\\Support\\": "src/"
  4324. }
  4325. },
  4326. "notification-url": "https://packagist.org/downloads/",
  4327. "license": [
  4328. "MIT"
  4329. ],
  4330. "description": "A support component for Hyperf.",
  4331. "homepage": "https://hyperf.io",
  4332. "keywords": [
  4333. "hyperf",
  4334. "php",
  4335. "support",
  4336. "swoole"
  4337. ],
  4338. "support": {
  4339. "docs": "https://hyperf.wiki",
  4340. "issues": "https://github.com/hyperf/hyperf/issues",
  4341. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4342. "source": "https://github.com/hyperf/hyperf"
  4343. },
  4344. "funding": [
  4345. {
  4346. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4347. "type": "custom"
  4348. },
  4349. {
  4350. "url": "https://opencollective.com/hyperf",
  4351. "type": "open_collective"
  4352. }
  4353. ],
  4354. "time": "2024-11-28T01:51:55+00:00"
  4355. },
  4356. {
  4357. "name": "hyperf/tappable",
  4358. "version": "v3.1.42",
  4359. "source": {
  4360. "type": "git",
  4361. "url": "https://github.com/hyperf/tappable.git",
  4362. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4363. },
  4364. "dist": {
  4365. "type": "zip",
  4366. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4367. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4368. "shasum": ""
  4369. },
  4370. "require": {
  4371. "php": ">=8.1"
  4372. },
  4373. "type": "library",
  4374. "extra": {
  4375. "branch-alias": {
  4376. "dev-master": "3.1-dev"
  4377. }
  4378. },
  4379. "autoload": {
  4380. "files": [
  4381. "src/Functions.php"
  4382. ],
  4383. "psr-4": {
  4384. "Hyperf\\Tappable\\": "src/"
  4385. }
  4386. },
  4387. "notification-url": "https://packagist.org/downloads/",
  4388. "license": [
  4389. "MIT"
  4390. ],
  4391. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4392. "homepage": "https://hyperf.io",
  4393. "keywords": [
  4394. "hyperf",
  4395. "php",
  4396. "swoole",
  4397. "tappable"
  4398. ],
  4399. "support": {
  4400. "docs": "https://hyperf.wiki",
  4401. "issues": "https://github.com/hyperf/hyperf/issues",
  4402. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4403. "source": "https://github.com/hyperf/hyperf"
  4404. },
  4405. "funding": [
  4406. {
  4407. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4408. "type": "custom"
  4409. },
  4410. {
  4411. "url": "https://opencollective.com/hyperf",
  4412. "type": "open_collective"
  4413. }
  4414. ],
  4415. "time": "2024-09-25T02:54:12+00:00"
  4416. },
  4417. {
  4418. "name": "hyperf/utils",
  4419. "version": "v3.1.42",
  4420. "source": {
  4421. "type": "git",
  4422. "url": "https://github.com/hyperf/utils.git",
  4423. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4424. },
  4425. "dist": {
  4426. "type": "zip",
  4427. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4428. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4429. "shasum": ""
  4430. },
  4431. "require": {
  4432. "doctrine/inflector": "^2.0",
  4433. "hyperf/code-parser": "~3.1.0",
  4434. "hyperf/codec": "~3.1.0",
  4435. "hyperf/collection": "~3.1.0",
  4436. "hyperf/context": "~3.1.0",
  4437. "hyperf/contract": "~3.1.0",
  4438. "hyperf/coordinator": "~3.1.0",
  4439. "hyperf/coroutine": "~3.1.0",
  4440. "hyperf/engine": "^2.0",
  4441. "hyperf/macroable": "~3.1.0",
  4442. "hyperf/serializer": "~3.1.0",
  4443. "hyperf/stringable": "~3.1.0",
  4444. "hyperf/support": "~3.1.0",
  4445. "php": ">=8.1"
  4446. },
  4447. "type": "library",
  4448. "extra": {
  4449. "branch-alias": {
  4450. "dev-master": "3.1-dev"
  4451. }
  4452. },
  4453. "notification-url": "https://packagist.org/downloads/",
  4454. "license": [
  4455. "MIT"
  4456. ],
  4457. "description": "A tools package that could help developer solved the problem quickly.",
  4458. "homepage": "https://hyperf.io",
  4459. "keywords": [
  4460. "hyperf",
  4461. "php",
  4462. "swoole",
  4463. "utils"
  4464. ],
  4465. "support": {
  4466. "docs": "https://hyperf.wiki",
  4467. "issues": "https://github.com/hyperf/hyperf/issues",
  4468. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4469. "source": "https://github.com/hyperf/hyperf"
  4470. },
  4471. "funding": [
  4472. {
  4473. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4474. "type": "custom"
  4475. },
  4476. {
  4477. "url": "https://opencollective.com/hyperf",
  4478. "type": "open_collective"
  4479. }
  4480. ],
  4481. "time": "2024-09-25T02:54:12+00:00"
  4482. },
  4483. {
  4484. "name": "jaeger/g-http",
  4485. "version": "V2.0.1",
  4486. "source": {
  4487. "type": "git",
  4488. "url": "https://github.com/jae-jae/GHttp.git",
  4489. "reference": "29cb537c57f230980ca10622de190f04831e35e6"
  4490. },
  4491. "dist": {
  4492. "type": "zip",
  4493. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/29cb537c57f230980ca10622de190f04831e35e6",
  4494. "reference": "29cb537c57f230980ca10622de190f04831e35e6",
  4495. "shasum": ""
  4496. },
  4497. "require": {
  4498. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  4499. "php": ">=8.1",
  4500. "symfony/cache": "^6.4 || ^7.0"
  4501. },
  4502. "require-dev": {
  4503. "predis/predis": "^2.2"
  4504. },
  4505. "type": "library",
  4506. "autoload": {
  4507. "psr-4": {
  4508. "Jaeger\\": "src"
  4509. }
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "MIT"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "Jaeger",
  4518. "email": "JaegerCode@gmail.com"
  4519. }
  4520. ],
  4521. "description": "Simple Http client base on GuzzleHttp",
  4522. "support": {
  4523. "issues": "https://github.com/jae-jae/GHttp/issues",
  4524. "source": "https://github.com/jae-jae/GHttp/tree/V2.0.1"
  4525. },
  4526. "time": "2024-06-14T08:13:32+00:00"
  4527. },
  4528. {
  4529. "name": "jaeger/phpquery-single",
  4530. "version": "1.1.1",
  4531. "source": {
  4532. "type": "git",
  4533. "url": "https://github.com/jae-jae/phpQuery-single.git",
  4534. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  4535. },
  4536. "dist": {
  4537. "type": "zip",
  4538. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  4539. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  4540. "shasum": ""
  4541. },
  4542. "require": {
  4543. "php": ">=5.3.0"
  4544. },
  4545. "type": "library",
  4546. "autoload": {
  4547. "classmap": [
  4548. "phpQuery.php"
  4549. ]
  4550. },
  4551. "notification-url": "https://packagist.org/downloads/",
  4552. "license": [
  4553. "MIT"
  4554. ],
  4555. "authors": [
  4556. {
  4557. "name": "Tobiasz Cudnik",
  4558. "email": "tobiasz.cudnik@gmail.com",
  4559. "homepage": "https://github.com/TobiaszCudnik",
  4560. "role": "Developer"
  4561. },
  4562. {
  4563. "name": "Jaeger",
  4564. "role": "Packager"
  4565. }
  4566. ],
  4567. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  4568. "homepage": "http://code.google.com/p/phpquery/",
  4569. "support": {
  4570. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  4571. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  4572. },
  4573. "time": "2022-03-26T15:01:16+00:00"
  4574. },
  4575. {
  4576. "name": "jaeger/querylist",
  4577. "version": "V4.4.6",
  4578. "source": {
  4579. "type": "git",
  4580. "url": "https://github.com/jae-jae/QueryList.git",
  4581. "reference": "939f4e41b94b4d3ef77071fb7f386abd2ceeb59a"
  4582. },
  4583. "dist": {
  4584. "type": "zip",
  4585. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/939f4e41b94b4d3ef77071fb7f386abd2ceeb59a",
  4586. "reference": "939f4e41b94b4d3ef77071fb7f386abd2ceeb59a",
  4587. "shasum": ""
  4588. },
  4589. "require": {
  4590. "ext-dom": "*",
  4591. "jaeger/g-http": "^2.0",
  4592. "jaeger/phpquery-single": "^1",
  4593. "php": ">=8.1",
  4594. "symfony/var-dumper": ">3.4"
  4595. },
  4596. "require-dev": {
  4597. "phpunit/phpunit": "^8.5"
  4598. },
  4599. "type": "library",
  4600. "autoload": {
  4601. "files": [
  4602. "src/Collect/Support/helpers.php",
  4603. "src/Collect/Support/alias.php"
  4604. ],
  4605. "psr-4": {
  4606. "QL\\": "src"
  4607. }
  4608. },
  4609. "notification-url": "https://packagist.org/downloads/",
  4610. "license": [
  4611. "MIT"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "Jaeger",
  4616. "email": "JaegerCode@gmail.com"
  4617. }
  4618. ],
  4619. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  4620. "homepage": "http://querylist.cc",
  4621. "keywords": [
  4622. "QueryList",
  4623. "phpQuery",
  4624. "spider"
  4625. ],
  4626. "support": {
  4627. "issues": "https://github.com/jae-jae/QueryList/issues",
  4628. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.6"
  4629. },
  4630. "funding": [
  4631. {
  4632. "url": "https://opencollective.com/querylist",
  4633. "type": "open_collective"
  4634. }
  4635. ],
  4636. "time": "2024-12-13T06:16:14+00:00"
  4637. },
  4638. {
  4639. "name": "jetbrains/phpstorm-attributes",
  4640. "version": "1.2",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4644. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4649. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4650. "shasum": ""
  4651. },
  4652. "type": "library",
  4653. "autoload": {
  4654. "psr-4": {
  4655. "JetBrains\\PhpStorm\\": "src/"
  4656. }
  4657. },
  4658. "notification-url": "https://packagist.org/downloads/",
  4659. "license": [
  4660. "Apache-2.0"
  4661. ],
  4662. "authors": [
  4663. {
  4664. "name": "JetBrains",
  4665. "homepage": "https://www.jetbrains.com"
  4666. }
  4667. ],
  4668. "description": "PhpStorm specific attributes",
  4669. "keywords": [
  4670. "attributes",
  4671. "jetbrains",
  4672. "phpstorm"
  4673. ],
  4674. "support": {
  4675. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4676. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4677. },
  4678. "time": "2024-10-11T10:46:19+00:00"
  4679. },
  4680. {
  4681. "name": "laminas/laminas-mime",
  4682. "version": "2.12.0",
  4683. "source": {
  4684. "type": "git",
  4685. "url": "https://github.com/laminas/laminas-mime.git",
  4686. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4687. },
  4688. "dist": {
  4689. "type": "zip",
  4690. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4691. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4692. "shasum": ""
  4693. },
  4694. "require": {
  4695. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4696. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4697. },
  4698. "conflict": {
  4699. "zendframework/zend-mime": "*"
  4700. },
  4701. "require-dev": {
  4702. "laminas/laminas-coding-standard": "~2.4.0",
  4703. "laminas/laminas-mail": "^2.19.0",
  4704. "phpunit/phpunit": "~9.5.25"
  4705. },
  4706. "suggest": {
  4707. "laminas/laminas-mail": "Laminas\\Mail component"
  4708. },
  4709. "type": "library",
  4710. "autoload": {
  4711. "psr-4": {
  4712. "Laminas\\Mime\\": "src/"
  4713. }
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "BSD-3-Clause"
  4718. ],
  4719. "description": "Create and parse MIME messages and parts",
  4720. "homepage": "https://laminas.dev",
  4721. "keywords": [
  4722. "laminas",
  4723. "mime"
  4724. ],
  4725. "support": {
  4726. "chat": "https://laminas.dev/chat",
  4727. "docs": "https://docs.laminas.dev/laminas-mime/",
  4728. "forum": "https://discourse.laminas.dev",
  4729. "issues": "https://github.com/laminas/laminas-mime/issues",
  4730. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4731. "source": "https://github.com/laminas/laminas-mime"
  4732. },
  4733. "funding": [
  4734. {
  4735. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4736. "type": "community_bridge"
  4737. }
  4738. ],
  4739. "abandoned": "symfony/mime",
  4740. "time": "2023-11-02T16:47:19+00:00"
  4741. },
  4742. {
  4743. "name": "laminas/laminas-stdlib",
  4744. "version": "3.20.0",
  4745. "source": {
  4746. "type": "git",
  4747. "url": "https://github.com/laminas/laminas-stdlib.git",
  4748. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4749. },
  4750. "dist": {
  4751. "type": "zip",
  4752. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4753. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4754. "shasum": ""
  4755. },
  4756. "require": {
  4757. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4758. },
  4759. "conflict": {
  4760. "zendframework/zend-stdlib": "*"
  4761. },
  4762. "require-dev": {
  4763. "laminas/laminas-coding-standard": "^3.0",
  4764. "phpbench/phpbench": "^1.3.1",
  4765. "phpunit/phpunit": "^10.5.38",
  4766. "psalm/plugin-phpunit": "^0.19.0",
  4767. "vimeo/psalm": "^5.26.1"
  4768. },
  4769. "type": "library",
  4770. "autoload": {
  4771. "psr-4": {
  4772. "Laminas\\Stdlib\\": "src/"
  4773. }
  4774. },
  4775. "notification-url": "https://packagist.org/downloads/",
  4776. "license": [
  4777. "BSD-3-Clause"
  4778. ],
  4779. "description": "SPL extensions, array utilities, error handlers, and more",
  4780. "homepage": "https://laminas.dev",
  4781. "keywords": [
  4782. "laminas",
  4783. "stdlib"
  4784. ],
  4785. "support": {
  4786. "chat": "https://laminas.dev/chat",
  4787. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4788. "forum": "https://discourse.laminas.dev",
  4789. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4790. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4791. "source": "https://github.com/laminas/laminas-stdlib"
  4792. },
  4793. "funding": [
  4794. {
  4795. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4796. "type": "community_bridge"
  4797. }
  4798. ],
  4799. "time": "2024-10-29T13:46:07+00:00"
  4800. },
  4801. {
  4802. "name": "markrogoyski/math-php",
  4803. "version": "v2.10.0",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/markrogoyski/math-php.git",
  4807. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4812. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4813. "shasum": ""
  4814. },
  4815. "require": {
  4816. "ext-json": "*",
  4817. "php": ">=7.2.0"
  4818. },
  4819. "require-dev": {
  4820. "php-coveralls/php-coveralls": "^2.0",
  4821. "php-parallel-lint/php-parallel-lint": "^1.2",
  4822. "phploc/phploc": "*",
  4823. "phpmd/phpmd": "^2.6",
  4824. "phpstan/phpstan": "^1.10",
  4825. "phpunit/phpunit": "^8.5",
  4826. "squizlabs/php_codesniffer": "3.*"
  4827. },
  4828. "type": "library",
  4829. "autoload": {
  4830. "psr-4": {
  4831. "MathPHP\\": "src/"
  4832. }
  4833. },
  4834. "notification-url": "https://packagist.org/downloads/",
  4835. "license": [
  4836. "MIT"
  4837. ],
  4838. "authors": [
  4839. {
  4840. "name": "Mark Rogoyski",
  4841. "email": "mark@rogoyski.com",
  4842. "homepage": "https://github.com/markrogoyski",
  4843. "role": "Lead developer"
  4844. },
  4845. {
  4846. "name": "Kevin Nowaczyk",
  4847. "homepage": "https://github.com/Beakerboy",
  4848. "role": "Developer"
  4849. },
  4850. {
  4851. "name": "MathPHP Community of Contributors",
  4852. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4853. }
  4854. ],
  4855. "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",
  4856. "homepage": "https://github.com/markrogoyski/math-php/",
  4857. "keywords": [
  4858. "algebra",
  4859. "combinatorics",
  4860. "distributions",
  4861. "linear algebra",
  4862. "math",
  4863. "mathematics",
  4864. "matrix",
  4865. "numerical analysis",
  4866. "probability",
  4867. "regressions",
  4868. "statistics"
  4869. ],
  4870. "support": {
  4871. "issues": "https://github.com/markrogoyski/math-php/issues",
  4872. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4873. },
  4874. "time": "2024-04-17T00:09:51+00:00"
  4875. },
  4876. {
  4877. "name": "monolog/monolog",
  4878. "version": "3.8.1",
  4879. "source": {
  4880. "type": "git",
  4881. "url": "https://github.com/Seldaek/monolog.git",
  4882. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4883. },
  4884. "dist": {
  4885. "type": "zip",
  4886. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4887. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4888. "shasum": ""
  4889. },
  4890. "require": {
  4891. "php": ">=8.1",
  4892. "psr/log": "^2.0 || ^3.0"
  4893. },
  4894. "provide": {
  4895. "psr/log-implementation": "3.0.0"
  4896. },
  4897. "require-dev": {
  4898. "aws/aws-sdk-php": "^3.0",
  4899. "doctrine/couchdb": "~1.0@dev",
  4900. "elasticsearch/elasticsearch": "^7 || ^8",
  4901. "ext-json": "*",
  4902. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4903. "guzzlehttp/guzzle": "^7.4.5",
  4904. "guzzlehttp/psr7": "^2.2",
  4905. "mongodb/mongodb": "^1.8",
  4906. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4907. "php-console/php-console": "^3.1.8",
  4908. "phpstan/phpstan": "^2",
  4909. "phpstan/phpstan-deprecation-rules": "^2",
  4910. "phpstan/phpstan-strict-rules": "^2",
  4911. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4912. "predis/predis": "^1.1 || ^2",
  4913. "rollbar/rollbar": "^4.0",
  4914. "ruflin/elastica": "^7 || ^8",
  4915. "symfony/mailer": "^5.4 || ^6",
  4916. "symfony/mime": "^5.4 || ^6"
  4917. },
  4918. "suggest": {
  4919. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4920. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4921. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4922. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4923. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4924. "ext-mbstring": "Allow to work properly with unicode symbols",
  4925. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4926. "ext-openssl": "Required to send log messages using SSL",
  4927. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4928. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4929. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4930. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4931. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4932. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4933. },
  4934. "type": "library",
  4935. "extra": {
  4936. "branch-alias": {
  4937. "dev-main": "3.x-dev"
  4938. }
  4939. },
  4940. "autoload": {
  4941. "psr-4": {
  4942. "Monolog\\": "src/Monolog"
  4943. }
  4944. },
  4945. "notification-url": "https://packagist.org/downloads/",
  4946. "license": [
  4947. "MIT"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "Jordi Boggiano",
  4952. "email": "j.boggiano@seld.be",
  4953. "homepage": "https://seld.be"
  4954. }
  4955. ],
  4956. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4957. "homepage": "https://github.com/Seldaek/monolog",
  4958. "keywords": [
  4959. "log",
  4960. "logging",
  4961. "psr-3"
  4962. ],
  4963. "support": {
  4964. "issues": "https://github.com/Seldaek/monolog/issues",
  4965. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4966. },
  4967. "funding": [
  4968. {
  4969. "url": "https://github.com/Seldaek",
  4970. "type": "github"
  4971. },
  4972. {
  4973. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4974. "type": "tidelift"
  4975. }
  4976. ],
  4977. "time": "2024-12-05T17:15:07+00:00"
  4978. },
  4979. {
  4980. "name": "nesbot/carbon",
  4981. "version": "2.72.5",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://github.com/briannesbitt/Carbon.git",
  4985. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4990. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4991. "shasum": ""
  4992. },
  4993. "require": {
  4994. "carbonphp/carbon-doctrine-types": "*",
  4995. "ext-json": "*",
  4996. "php": "^7.1.8 || ^8.0",
  4997. "psr/clock": "^1.0",
  4998. "symfony/polyfill-mbstring": "^1.0",
  4999. "symfony/polyfill-php80": "^1.16",
  5000. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5001. },
  5002. "provide": {
  5003. "psr/clock-implementation": "1.0"
  5004. },
  5005. "require-dev": {
  5006. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5007. "doctrine/orm": "^2.7 || ^3.0",
  5008. "friendsofphp/php-cs-fixer": "^3.0",
  5009. "kylekatarnls/multi-tester": "^2.0",
  5010. "ondrejmirtes/better-reflection": "*",
  5011. "phpmd/phpmd": "^2.9",
  5012. "phpstan/extension-installer": "^1.0",
  5013. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5014. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5015. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5016. "squizlabs/php_codesniffer": "^3.4"
  5017. },
  5018. "bin": [
  5019. "bin/carbon"
  5020. ],
  5021. "type": "library",
  5022. "extra": {
  5023. "laravel": {
  5024. "providers": [
  5025. "Carbon\\Laravel\\ServiceProvider"
  5026. ]
  5027. },
  5028. "phpstan": {
  5029. "includes": [
  5030. "extension.neon"
  5031. ]
  5032. },
  5033. "branch-alias": {
  5034. "dev-2.x": "2.x-dev",
  5035. "dev-master": "3.x-dev"
  5036. }
  5037. },
  5038. "autoload": {
  5039. "psr-4": {
  5040. "Carbon\\": "src/Carbon/"
  5041. }
  5042. },
  5043. "notification-url": "https://packagist.org/downloads/",
  5044. "license": [
  5045. "MIT"
  5046. ],
  5047. "authors": [
  5048. {
  5049. "name": "Brian Nesbitt",
  5050. "email": "brian@nesbot.com",
  5051. "homepage": "https://markido.com"
  5052. },
  5053. {
  5054. "name": "kylekatarnls",
  5055. "homepage": "https://github.com/kylekatarnls"
  5056. }
  5057. ],
  5058. "description": "An API extension for DateTime that supports 281 different languages.",
  5059. "homepage": "https://carbon.nesbot.com",
  5060. "keywords": [
  5061. "date",
  5062. "datetime",
  5063. "time"
  5064. ],
  5065. "support": {
  5066. "docs": "https://carbon.nesbot.com/docs",
  5067. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5068. "source": "https://github.com/briannesbitt/Carbon"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://github.com/sponsors/kylekatarnls",
  5073. "type": "github"
  5074. },
  5075. {
  5076. "url": "https://opencollective.com/Carbon#sponsor",
  5077. "type": "opencollective"
  5078. },
  5079. {
  5080. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5081. "type": "tidelift"
  5082. }
  5083. ],
  5084. "time": "2024-06-03T19:18:41+00:00"
  5085. },
  5086. {
  5087. "name": "nikic/fast-route",
  5088. "version": "v1.3.0",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/nikic/FastRoute.git",
  5092. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5097. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5098. "shasum": ""
  5099. },
  5100. "require": {
  5101. "php": ">=5.4.0"
  5102. },
  5103. "require-dev": {
  5104. "phpunit/phpunit": "^4.8.35|~5.7"
  5105. },
  5106. "type": "library",
  5107. "autoload": {
  5108. "files": [
  5109. "src/functions.php"
  5110. ],
  5111. "psr-4": {
  5112. "FastRoute\\": "src/"
  5113. }
  5114. },
  5115. "notification-url": "https://packagist.org/downloads/",
  5116. "license": [
  5117. "BSD-3-Clause"
  5118. ],
  5119. "authors": [
  5120. {
  5121. "name": "Nikita Popov",
  5122. "email": "nikic@php.net"
  5123. }
  5124. ],
  5125. "description": "Fast request router for PHP",
  5126. "keywords": [
  5127. "router",
  5128. "routing"
  5129. ],
  5130. "support": {
  5131. "issues": "https://github.com/nikic/FastRoute/issues",
  5132. "source": "https://github.com/nikic/FastRoute/tree/master"
  5133. },
  5134. "time": "2018-02-13T20:26:39+00:00"
  5135. },
  5136. {
  5137. "name": "nikic/php-parser",
  5138. "version": "v4.19.4",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/nikic/PHP-Parser.git",
  5142. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5147. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5148. "shasum": ""
  5149. },
  5150. "require": {
  5151. "ext-tokenizer": "*",
  5152. "php": ">=7.1"
  5153. },
  5154. "require-dev": {
  5155. "ircmaxell/php-yacc": "^0.0.7",
  5156. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5157. },
  5158. "bin": [
  5159. "bin/php-parse"
  5160. ],
  5161. "type": "library",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-master": "4.9-dev"
  5165. }
  5166. },
  5167. "autoload": {
  5168. "psr-4": {
  5169. "PhpParser\\": "lib/PhpParser"
  5170. }
  5171. },
  5172. "notification-url": "https://packagist.org/downloads/",
  5173. "license": [
  5174. "BSD-3-Clause"
  5175. ],
  5176. "authors": [
  5177. {
  5178. "name": "Nikita Popov"
  5179. }
  5180. ],
  5181. "description": "A PHP parser written in PHP",
  5182. "keywords": [
  5183. "parser",
  5184. "php"
  5185. ],
  5186. "support": {
  5187. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5188. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5189. },
  5190. "time": "2024-09-29T15:01:53+00:00"
  5191. },
  5192. {
  5193. "name": "paragonie/constant_time_encoding",
  5194. "version": "v3.0.0",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5198. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5203. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "php": "^8"
  5208. },
  5209. "require-dev": {
  5210. "phpunit/phpunit": "^9",
  5211. "vimeo/psalm": "^4|^5"
  5212. },
  5213. "type": "library",
  5214. "autoload": {
  5215. "psr-4": {
  5216. "ParagonIE\\ConstantTime\\": "src/"
  5217. }
  5218. },
  5219. "notification-url": "https://packagist.org/downloads/",
  5220. "license": [
  5221. "MIT"
  5222. ],
  5223. "authors": [
  5224. {
  5225. "name": "Paragon Initiative Enterprises",
  5226. "email": "security@paragonie.com",
  5227. "homepage": "https://paragonie.com",
  5228. "role": "Maintainer"
  5229. },
  5230. {
  5231. "name": "Steve 'Sc00bz' Thomas",
  5232. "email": "steve@tobtu.com",
  5233. "homepage": "https://www.tobtu.com",
  5234. "role": "Original Developer"
  5235. }
  5236. ],
  5237. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5238. "keywords": [
  5239. "base16",
  5240. "base32",
  5241. "base32_decode",
  5242. "base32_encode",
  5243. "base64",
  5244. "base64_decode",
  5245. "base64_encode",
  5246. "bin2hex",
  5247. "encoding",
  5248. "hex",
  5249. "hex2bin",
  5250. "rfc4648"
  5251. ],
  5252. "support": {
  5253. "email": "info@paragonie.com",
  5254. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5255. "source": "https://github.com/paragonie/constant_time_encoding"
  5256. },
  5257. "time": "2024-05-08T12:36:18+00:00"
  5258. },
  5259. {
  5260. "name": "paragonie/random_compat",
  5261. "version": "v9.99.100",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://github.com/paragonie/random_compat.git",
  5265. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5266. },
  5267. "dist": {
  5268. "type": "zip",
  5269. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5270. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5271. "shasum": ""
  5272. },
  5273. "require": {
  5274. "php": ">= 7"
  5275. },
  5276. "require-dev": {
  5277. "phpunit/phpunit": "4.*|5.*",
  5278. "vimeo/psalm": "^1"
  5279. },
  5280. "suggest": {
  5281. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5282. },
  5283. "type": "library",
  5284. "notification-url": "https://packagist.org/downloads/",
  5285. "license": [
  5286. "MIT"
  5287. ],
  5288. "authors": [
  5289. {
  5290. "name": "Paragon Initiative Enterprises",
  5291. "email": "security@paragonie.com",
  5292. "homepage": "https://paragonie.com"
  5293. }
  5294. ],
  5295. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5296. "keywords": [
  5297. "csprng",
  5298. "polyfill",
  5299. "pseudorandom",
  5300. "random"
  5301. ],
  5302. "support": {
  5303. "email": "info@paragonie.com",
  5304. "issues": "https://github.com/paragonie/random_compat/issues",
  5305. "source": "https://github.com/paragonie/random_compat"
  5306. },
  5307. "time": "2020-10-15T08:29:30+00:00"
  5308. },
  5309. {
  5310. "name": "php-amqplib/php-amqplib",
  5311. "version": "v3.7.2",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5315. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5320. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5321. "shasum": ""
  5322. },
  5323. "require": {
  5324. "ext-mbstring": "*",
  5325. "ext-sockets": "*",
  5326. "php": "^7.2||^8.0",
  5327. "phpseclib/phpseclib": "^2.0|^3.0"
  5328. },
  5329. "conflict": {
  5330. "php": "7.4.0 - 7.4.1"
  5331. },
  5332. "replace": {
  5333. "videlalvaro/php-amqplib": "self.version"
  5334. },
  5335. "require-dev": {
  5336. "ext-curl": "*",
  5337. "nategood/httpful": "^0.2.20",
  5338. "phpunit/phpunit": "^7.5|^9.5",
  5339. "squizlabs/php_codesniffer": "^3.6"
  5340. },
  5341. "type": "library",
  5342. "extra": {
  5343. "branch-alias": {
  5344. "dev-master": "3.0-dev"
  5345. }
  5346. },
  5347. "autoload": {
  5348. "psr-4": {
  5349. "PhpAmqpLib\\": "PhpAmqpLib/"
  5350. }
  5351. },
  5352. "notification-url": "https://packagist.org/downloads/",
  5353. "license": [
  5354. "LGPL-2.1-or-later"
  5355. ],
  5356. "authors": [
  5357. {
  5358. "name": "Alvaro Videla",
  5359. "role": "Original Maintainer"
  5360. },
  5361. {
  5362. "name": "Raúl Araya",
  5363. "email": "nubeiro@gmail.com",
  5364. "role": "Maintainer"
  5365. },
  5366. {
  5367. "name": "Luke Bakken",
  5368. "email": "luke@bakken.io",
  5369. "role": "Maintainer"
  5370. },
  5371. {
  5372. "name": "Ramūnas Dronga",
  5373. "email": "github@ramuno.lt",
  5374. "role": "Maintainer"
  5375. }
  5376. ],
  5377. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5378. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5379. "keywords": [
  5380. "message",
  5381. "queue",
  5382. "rabbitmq"
  5383. ],
  5384. "support": {
  5385. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5386. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5387. },
  5388. "time": "2024-11-21T09:21:41+00:00"
  5389. },
  5390. {
  5391. "name": "php-di/phpdoc-reader",
  5392. "version": "2.2.1",
  5393. "source": {
  5394. "type": "git",
  5395. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5396. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5397. },
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5401. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5402. "shasum": ""
  5403. },
  5404. "require": {
  5405. "php": ">=7.2.0"
  5406. },
  5407. "require-dev": {
  5408. "mnapoli/hard-mode": "~0.3.0",
  5409. "phpunit/phpunit": "^8.5|^9.0"
  5410. },
  5411. "type": "library",
  5412. "autoload": {
  5413. "psr-4": {
  5414. "PhpDocReader\\": "src/PhpDocReader"
  5415. }
  5416. },
  5417. "notification-url": "https://packagist.org/downloads/",
  5418. "license": [
  5419. "MIT"
  5420. ],
  5421. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5422. "keywords": [
  5423. "phpdoc",
  5424. "reflection"
  5425. ],
  5426. "support": {
  5427. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5428. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5429. },
  5430. "time": "2020-10-12T12:39:22+00:00"
  5431. },
  5432. {
  5433. "name": "phpoption/phpoption",
  5434. "version": "1.9.3",
  5435. "source": {
  5436. "type": "git",
  5437. "url": "https://github.com/schmittjoh/php-option.git",
  5438. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5439. },
  5440. "dist": {
  5441. "type": "zip",
  5442. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5443. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5444. "shasum": ""
  5445. },
  5446. "require": {
  5447. "php": "^7.2.5 || ^8.0"
  5448. },
  5449. "require-dev": {
  5450. "bamarni/composer-bin-plugin": "^1.8.2",
  5451. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5452. },
  5453. "type": "library",
  5454. "extra": {
  5455. "bamarni-bin": {
  5456. "bin-links": true,
  5457. "forward-command": false
  5458. },
  5459. "branch-alias": {
  5460. "dev-master": "1.9-dev"
  5461. }
  5462. },
  5463. "autoload": {
  5464. "psr-4": {
  5465. "PhpOption\\": "src/PhpOption/"
  5466. }
  5467. },
  5468. "notification-url": "https://packagist.org/downloads/",
  5469. "license": [
  5470. "Apache-2.0"
  5471. ],
  5472. "authors": [
  5473. {
  5474. "name": "Johannes M. Schmitt",
  5475. "email": "schmittjoh@gmail.com",
  5476. "homepage": "https://github.com/schmittjoh"
  5477. },
  5478. {
  5479. "name": "Graham Campbell",
  5480. "email": "hello@gjcampbell.co.uk",
  5481. "homepage": "https://github.com/GrahamCampbell"
  5482. }
  5483. ],
  5484. "description": "Option Type for PHP",
  5485. "keywords": [
  5486. "language",
  5487. "option",
  5488. "php",
  5489. "type"
  5490. ],
  5491. "support": {
  5492. "issues": "https://github.com/schmittjoh/php-option/issues",
  5493. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5494. },
  5495. "funding": [
  5496. {
  5497. "url": "https://github.com/GrahamCampbell",
  5498. "type": "github"
  5499. },
  5500. {
  5501. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5502. "type": "tidelift"
  5503. }
  5504. ],
  5505. "time": "2024-07-20T21:41:07+00:00"
  5506. },
  5507. {
  5508. "name": "phpseclib/phpseclib",
  5509. "version": "3.0.43",
  5510. "source": {
  5511. "type": "git",
  5512. "url": "https://github.com/phpseclib/phpseclib.git",
  5513. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5514. },
  5515. "dist": {
  5516. "type": "zip",
  5517. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5518. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5519. "shasum": ""
  5520. },
  5521. "require": {
  5522. "paragonie/constant_time_encoding": "^1|^2|^3",
  5523. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5524. "php": ">=5.6.1"
  5525. },
  5526. "require-dev": {
  5527. "phpunit/phpunit": "*"
  5528. },
  5529. "suggest": {
  5530. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5531. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5532. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5533. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5534. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5535. },
  5536. "type": "library",
  5537. "autoload": {
  5538. "files": [
  5539. "phpseclib/bootstrap.php"
  5540. ],
  5541. "psr-4": {
  5542. "phpseclib3\\": "phpseclib/"
  5543. }
  5544. },
  5545. "notification-url": "https://packagist.org/downloads/",
  5546. "license": [
  5547. "MIT"
  5548. ],
  5549. "authors": [
  5550. {
  5551. "name": "Jim Wigginton",
  5552. "email": "terrafrost@php.net",
  5553. "role": "Lead Developer"
  5554. },
  5555. {
  5556. "name": "Patrick Monnerat",
  5557. "email": "pm@datasphere.ch",
  5558. "role": "Developer"
  5559. },
  5560. {
  5561. "name": "Andreas Fischer",
  5562. "email": "bantu@phpbb.com",
  5563. "role": "Developer"
  5564. },
  5565. {
  5566. "name": "Hans-Jürgen Petrich",
  5567. "email": "petrich@tronic-media.com",
  5568. "role": "Developer"
  5569. },
  5570. {
  5571. "name": "Graham Campbell",
  5572. "email": "graham@alt-three.com",
  5573. "role": "Developer"
  5574. }
  5575. ],
  5576. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5577. "homepage": "http://phpseclib.sourceforge.net",
  5578. "keywords": [
  5579. "BigInteger",
  5580. "aes",
  5581. "asn.1",
  5582. "asn1",
  5583. "blowfish",
  5584. "crypto",
  5585. "cryptography",
  5586. "encryption",
  5587. "rsa",
  5588. "security",
  5589. "sftp",
  5590. "signature",
  5591. "signing",
  5592. "ssh",
  5593. "twofish",
  5594. "x.509",
  5595. "x509"
  5596. ],
  5597. "support": {
  5598. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5599. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5600. },
  5601. "funding": [
  5602. {
  5603. "url": "https://github.com/terrafrost",
  5604. "type": "github"
  5605. },
  5606. {
  5607. "url": "https://www.patreon.com/phpseclib",
  5608. "type": "patreon"
  5609. },
  5610. {
  5611. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5612. "type": "tidelift"
  5613. }
  5614. ],
  5615. "time": "2024-12-14T21:12:59+00:00"
  5616. },
  5617. {
  5618. "name": "psr/cache",
  5619. "version": "3.0.0",
  5620. "source": {
  5621. "type": "git",
  5622. "url": "https://github.com/php-fig/cache.git",
  5623. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5624. },
  5625. "dist": {
  5626. "type": "zip",
  5627. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5628. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5629. "shasum": ""
  5630. },
  5631. "require": {
  5632. "php": ">=8.0.0"
  5633. },
  5634. "type": "library",
  5635. "extra": {
  5636. "branch-alias": {
  5637. "dev-master": "1.0.x-dev"
  5638. }
  5639. },
  5640. "autoload": {
  5641. "psr-4": {
  5642. "Psr\\Cache\\": "src/"
  5643. }
  5644. },
  5645. "notification-url": "https://packagist.org/downloads/",
  5646. "license": [
  5647. "MIT"
  5648. ],
  5649. "authors": [
  5650. {
  5651. "name": "PHP-FIG",
  5652. "homepage": "https://www.php-fig.org/"
  5653. }
  5654. ],
  5655. "description": "Common interface for caching libraries",
  5656. "keywords": [
  5657. "cache",
  5658. "psr",
  5659. "psr-6"
  5660. ],
  5661. "support": {
  5662. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5663. },
  5664. "time": "2021-02-03T23:26:27+00:00"
  5665. },
  5666. {
  5667. "name": "psr/clock",
  5668. "version": "1.0.0",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://github.com/php-fig/clock.git",
  5672. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5677. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5678. "shasum": ""
  5679. },
  5680. "require": {
  5681. "php": "^7.0 || ^8.0"
  5682. },
  5683. "type": "library",
  5684. "autoload": {
  5685. "psr-4": {
  5686. "Psr\\Clock\\": "src/"
  5687. }
  5688. },
  5689. "notification-url": "https://packagist.org/downloads/",
  5690. "license": [
  5691. "MIT"
  5692. ],
  5693. "authors": [
  5694. {
  5695. "name": "PHP-FIG",
  5696. "homepage": "https://www.php-fig.org/"
  5697. }
  5698. ],
  5699. "description": "Common interface for reading the clock.",
  5700. "homepage": "https://github.com/php-fig/clock",
  5701. "keywords": [
  5702. "clock",
  5703. "now",
  5704. "psr",
  5705. "psr-20",
  5706. "time"
  5707. ],
  5708. "support": {
  5709. "issues": "https://github.com/php-fig/clock/issues",
  5710. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5711. },
  5712. "time": "2022-11-25T14:36:26+00:00"
  5713. },
  5714. {
  5715. "name": "psr/container",
  5716. "version": "2.0.2",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://github.com/php-fig/container.git",
  5720. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5721. },
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5725. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5726. "shasum": ""
  5727. },
  5728. "require": {
  5729. "php": ">=7.4.0"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-master": "2.0.x-dev"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "psr-4": {
  5739. "Psr\\Container\\": "src/"
  5740. }
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "MIT"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "PHP-FIG",
  5749. "homepage": "https://www.php-fig.org/"
  5750. }
  5751. ],
  5752. "description": "Common Container Interface (PHP FIG PSR-11)",
  5753. "homepage": "https://github.com/php-fig/container",
  5754. "keywords": [
  5755. "PSR-11",
  5756. "container",
  5757. "container-interface",
  5758. "container-interop",
  5759. "psr"
  5760. ],
  5761. "support": {
  5762. "issues": "https://github.com/php-fig/container/issues",
  5763. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5764. },
  5765. "time": "2021-11-05T16:47:00+00:00"
  5766. },
  5767. {
  5768. "name": "psr/event-dispatcher",
  5769. "version": "1.0.0",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/php-fig/event-dispatcher.git",
  5773. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5778. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5779. "shasum": ""
  5780. },
  5781. "require": {
  5782. "php": ">=7.2.0"
  5783. },
  5784. "type": "library",
  5785. "extra": {
  5786. "branch-alias": {
  5787. "dev-master": "1.0.x-dev"
  5788. }
  5789. },
  5790. "autoload": {
  5791. "psr-4": {
  5792. "Psr\\EventDispatcher\\": "src/"
  5793. }
  5794. },
  5795. "notification-url": "https://packagist.org/downloads/",
  5796. "license": [
  5797. "MIT"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "PHP-FIG",
  5802. "homepage": "http://www.php-fig.org/"
  5803. }
  5804. ],
  5805. "description": "Standard interfaces for event handling.",
  5806. "keywords": [
  5807. "events",
  5808. "psr",
  5809. "psr-14"
  5810. ],
  5811. "support": {
  5812. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5813. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5814. },
  5815. "time": "2019-01-08T18:20:26+00:00"
  5816. },
  5817. {
  5818. "name": "psr/http-client",
  5819. "version": "1.0.3",
  5820. "source": {
  5821. "type": "git",
  5822. "url": "https://github.com/php-fig/http-client.git",
  5823. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5824. },
  5825. "dist": {
  5826. "type": "zip",
  5827. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5828. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5829. "shasum": ""
  5830. },
  5831. "require": {
  5832. "php": "^7.0 || ^8.0",
  5833. "psr/http-message": "^1.0 || ^2.0"
  5834. },
  5835. "type": "library",
  5836. "extra": {
  5837. "branch-alias": {
  5838. "dev-master": "1.0.x-dev"
  5839. }
  5840. },
  5841. "autoload": {
  5842. "psr-4": {
  5843. "Psr\\Http\\Client\\": "src/"
  5844. }
  5845. },
  5846. "notification-url": "https://packagist.org/downloads/",
  5847. "license": [
  5848. "MIT"
  5849. ],
  5850. "authors": [
  5851. {
  5852. "name": "PHP-FIG",
  5853. "homepage": "https://www.php-fig.org/"
  5854. }
  5855. ],
  5856. "description": "Common interface for HTTP clients",
  5857. "homepage": "https://github.com/php-fig/http-client",
  5858. "keywords": [
  5859. "http",
  5860. "http-client",
  5861. "psr",
  5862. "psr-18"
  5863. ],
  5864. "support": {
  5865. "source": "https://github.com/php-fig/http-client"
  5866. },
  5867. "time": "2023-09-23T14:17:50+00:00"
  5868. },
  5869. {
  5870. "name": "psr/http-factory",
  5871. "version": "1.1.0",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/php-fig/http-factory.git",
  5875. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5880. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5881. "shasum": ""
  5882. },
  5883. "require": {
  5884. "php": ">=7.1",
  5885. "psr/http-message": "^1.0 || ^2.0"
  5886. },
  5887. "type": "library",
  5888. "extra": {
  5889. "branch-alias": {
  5890. "dev-master": "1.0.x-dev"
  5891. }
  5892. },
  5893. "autoload": {
  5894. "psr-4": {
  5895. "Psr\\Http\\Message\\": "src/"
  5896. }
  5897. },
  5898. "notification-url": "https://packagist.org/downloads/",
  5899. "license": [
  5900. "MIT"
  5901. ],
  5902. "authors": [
  5903. {
  5904. "name": "PHP-FIG",
  5905. "homepage": "https://www.php-fig.org/"
  5906. }
  5907. ],
  5908. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5909. "keywords": [
  5910. "factory",
  5911. "http",
  5912. "message",
  5913. "psr",
  5914. "psr-17",
  5915. "psr-7",
  5916. "request",
  5917. "response"
  5918. ],
  5919. "support": {
  5920. "source": "https://github.com/php-fig/http-factory"
  5921. },
  5922. "time": "2024-04-15T12:06:14+00:00"
  5923. },
  5924. {
  5925. "name": "psr/http-message",
  5926. "version": "2.0",
  5927. "source": {
  5928. "type": "git",
  5929. "url": "https://github.com/php-fig/http-message.git",
  5930. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5931. },
  5932. "dist": {
  5933. "type": "zip",
  5934. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5935. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5936. "shasum": ""
  5937. },
  5938. "require": {
  5939. "php": "^7.2 || ^8.0"
  5940. },
  5941. "type": "library",
  5942. "extra": {
  5943. "branch-alias": {
  5944. "dev-master": "2.0.x-dev"
  5945. }
  5946. },
  5947. "autoload": {
  5948. "psr-4": {
  5949. "Psr\\Http\\Message\\": "src/"
  5950. }
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "MIT"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "PHP-FIG",
  5959. "homepage": "https://www.php-fig.org/"
  5960. }
  5961. ],
  5962. "description": "Common interface for HTTP messages",
  5963. "homepage": "https://github.com/php-fig/http-message",
  5964. "keywords": [
  5965. "http",
  5966. "http-message",
  5967. "psr",
  5968. "psr-7",
  5969. "request",
  5970. "response"
  5971. ],
  5972. "support": {
  5973. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5974. },
  5975. "time": "2023-04-04T09:54:51+00:00"
  5976. },
  5977. {
  5978. "name": "psr/http-server-handler",
  5979. "version": "1.0.2",
  5980. "source": {
  5981. "type": "git",
  5982. "url": "https://github.com/php-fig/http-server-handler.git",
  5983. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5984. },
  5985. "dist": {
  5986. "type": "zip",
  5987. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5988. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5989. "shasum": ""
  5990. },
  5991. "require": {
  5992. "php": ">=7.0",
  5993. "psr/http-message": "^1.0 || ^2.0"
  5994. },
  5995. "type": "library",
  5996. "extra": {
  5997. "branch-alias": {
  5998. "dev-master": "1.0.x-dev"
  5999. }
  6000. },
  6001. "autoload": {
  6002. "psr-4": {
  6003. "Psr\\Http\\Server\\": "src/"
  6004. }
  6005. },
  6006. "notification-url": "https://packagist.org/downloads/",
  6007. "license": [
  6008. "MIT"
  6009. ],
  6010. "authors": [
  6011. {
  6012. "name": "PHP-FIG",
  6013. "homepage": "https://www.php-fig.org/"
  6014. }
  6015. ],
  6016. "description": "Common interface for HTTP server-side request handler",
  6017. "keywords": [
  6018. "handler",
  6019. "http",
  6020. "http-interop",
  6021. "psr",
  6022. "psr-15",
  6023. "psr-7",
  6024. "request",
  6025. "response",
  6026. "server"
  6027. ],
  6028. "support": {
  6029. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6030. },
  6031. "time": "2023-04-10T20:06:20+00:00"
  6032. },
  6033. {
  6034. "name": "psr/http-server-middleware",
  6035. "version": "1.0.2",
  6036. "source": {
  6037. "type": "git",
  6038. "url": "https://github.com/php-fig/http-server-middleware.git",
  6039. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6040. },
  6041. "dist": {
  6042. "type": "zip",
  6043. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6044. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6045. "shasum": ""
  6046. },
  6047. "require": {
  6048. "php": ">=7.0",
  6049. "psr/http-message": "^1.0 || ^2.0",
  6050. "psr/http-server-handler": "^1.0"
  6051. },
  6052. "type": "library",
  6053. "extra": {
  6054. "branch-alias": {
  6055. "dev-master": "1.0.x-dev"
  6056. }
  6057. },
  6058. "autoload": {
  6059. "psr-4": {
  6060. "Psr\\Http\\Server\\": "src/"
  6061. }
  6062. },
  6063. "notification-url": "https://packagist.org/downloads/",
  6064. "license": [
  6065. "MIT"
  6066. ],
  6067. "authors": [
  6068. {
  6069. "name": "PHP-FIG",
  6070. "homepage": "https://www.php-fig.org/"
  6071. }
  6072. ],
  6073. "description": "Common interface for HTTP server-side middleware",
  6074. "keywords": [
  6075. "http",
  6076. "http-interop",
  6077. "middleware",
  6078. "psr",
  6079. "psr-15",
  6080. "psr-7",
  6081. "request",
  6082. "response"
  6083. ],
  6084. "support": {
  6085. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6086. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6087. },
  6088. "time": "2023-04-11T06:14:47+00:00"
  6089. },
  6090. {
  6091. "name": "psr/log",
  6092. "version": "3.0.2",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://github.com/php-fig/log.git",
  6096. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6101. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6102. "shasum": ""
  6103. },
  6104. "require": {
  6105. "php": ">=8.0.0"
  6106. },
  6107. "type": "library",
  6108. "extra": {
  6109. "branch-alias": {
  6110. "dev-master": "3.x-dev"
  6111. }
  6112. },
  6113. "autoload": {
  6114. "psr-4": {
  6115. "Psr\\Log\\": "src"
  6116. }
  6117. },
  6118. "notification-url": "https://packagist.org/downloads/",
  6119. "license": [
  6120. "MIT"
  6121. ],
  6122. "authors": [
  6123. {
  6124. "name": "PHP-FIG",
  6125. "homepage": "https://www.php-fig.org/"
  6126. }
  6127. ],
  6128. "description": "Common interface for logging libraries",
  6129. "homepage": "https://github.com/php-fig/log",
  6130. "keywords": [
  6131. "log",
  6132. "psr",
  6133. "psr-3"
  6134. ],
  6135. "support": {
  6136. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6137. },
  6138. "time": "2024-09-11T13:17:53+00:00"
  6139. },
  6140. {
  6141. "name": "psr/simple-cache",
  6142. "version": "3.0.0",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://github.com/php-fig/simple-cache.git",
  6146. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6151. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6152. "shasum": ""
  6153. },
  6154. "require": {
  6155. "php": ">=8.0.0"
  6156. },
  6157. "type": "library",
  6158. "extra": {
  6159. "branch-alias": {
  6160. "dev-master": "3.0.x-dev"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Psr\\SimpleCache\\": "src/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "MIT"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "PHP-FIG",
  6175. "homepage": "https://www.php-fig.org/"
  6176. }
  6177. ],
  6178. "description": "Common interfaces for simple caching",
  6179. "keywords": [
  6180. "cache",
  6181. "caching",
  6182. "psr",
  6183. "psr-16",
  6184. "simple-cache"
  6185. ],
  6186. "support": {
  6187. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6188. },
  6189. "time": "2021-10-29T13:26:27+00:00"
  6190. },
  6191. {
  6192. "name": "ralouphie/getallheaders",
  6193. "version": "3.0.3",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/ralouphie/getallheaders.git",
  6197. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6202. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "php": ">=5.6"
  6207. },
  6208. "require-dev": {
  6209. "php-coveralls/php-coveralls": "^2.1",
  6210. "phpunit/phpunit": "^5 || ^6.5"
  6211. },
  6212. "type": "library",
  6213. "autoload": {
  6214. "files": [
  6215. "src/getallheaders.php"
  6216. ]
  6217. },
  6218. "notification-url": "https://packagist.org/downloads/",
  6219. "license": [
  6220. "MIT"
  6221. ],
  6222. "authors": [
  6223. {
  6224. "name": "Ralph Khattar",
  6225. "email": "ralph.khattar@gmail.com"
  6226. }
  6227. ],
  6228. "description": "A polyfill for getallheaders.",
  6229. "support": {
  6230. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6231. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6232. },
  6233. "time": "2019-03-08T08:55:37+00:00"
  6234. },
  6235. {
  6236. "name": "swow/psr7-plus",
  6237. "version": "v1.1.2",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://github.com/swow/psr7-plus.git",
  6241. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6246. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6247. "shasum": ""
  6248. },
  6249. "require": {
  6250. "php": ">=8.0",
  6251. "psr/http-client": "^1.0",
  6252. "psr/http-factory": "^1.0",
  6253. "psr/http-message": "^1.1|^2.0"
  6254. },
  6255. "type": "library",
  6256. "autoload": {
  6257. "psr-4": {
  6258. "Swow\\Psr7\\Message\\": "src/Message/"
  6259. }
  6260. },
  6261. "notification-url": "https://packagist.org/downloads/",
  6262. "license": [
  6263. "Apache-2.0"
  6264. ],
  6265. "authors": [
  6266. {
  6267. "name": "twose",
  6268. "email": "twosee@php.net"
  6269. }
  6270. ],
  6271. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6272. "keywords": [
  6273. "http",
  6274. "psr17",
  6275. "psr7",
  6276. "swow",
  6277. "websocket"
  6278. ],
  6279. "support": {
  6280. "issues": "https://github.com/swow/swow",
  6281. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6282. },
  6283. "time": "2023-06-15T09:18:11+00:00"
  6284. },
  6285. {
  6286. "name": "symfony/cache",
  6287. "version": "v6.4.16",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://github.com/symfony/cache.git",
  6291. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://api.github.com/repos/symfony/cache/zipball/70d60e9a3603108563010f8592dff15a6f15dfae",
  6296. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae",
  6297. "shasum": ""
  6298. },
  6299. "require": {
  6300. "php": ">=8.1",
  6301. "psr/cache": "^2.0|^3.0",
  6302. "psr/log": "^1.1|^2|^3",
  6303. "symfony/cache-contracts": "^2.5|^3",
  6304. "symfony/service-contracts": "^2.5|^3",
  6305. "symfony/var-exporter": "^6.3.6|^7.0"
  6306. },
  6307. "conflict": {
  6308. "doctrine/dbal": "<2.13.1",
  6309. "symfony/dependency-injection": "<5.4",
  6310. "symfony/http-kernel": "<5.4",
  6311. "symfony/var-dumper": "<5.4"
  6312. },
  6313. "provide": {
  6314. "psr/cache-implementation": "2.0|3.0",
  6315. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  6316. "symfony/cache-implementation": "1.1|2.0|3.0"
  6317. },
  6318. "require-dev": {
  6319. "cache/integration-tests": "dev-master",
  6320. "doctrine/dbal": "^2.13.1|^3|^4",
  6321. "predis/predis": "^1.1|^2.0",
  6322. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6323. "symfony/config": "^5.4|^6.0|^7.0",
  6324. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6325. "symfony/filesystem": "^5.4|^6.0|^7.0",
  6326. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6327. "symfony/messenger": "^5.4|^6.0|^7.0",
  6328. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6329. },
  6330. "type": "library",
  6331. "autoload": {
  6332. "psr-4": {
  6333. "Symfony\\Component\\Cache\\": ""
  6334. },
  6335. "classmap": [
  6336. "Traits/ValueWrapper.php"
  6337. ],
  6338. "exclude-from-classmap": [
  6339. "/Tests/"
  6340. ]
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "MIT"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Nicolas Grekas",
  6349. "email": "p@tchwork.com"
  6350. },
  6351. {
  6352. "name": "Symfony Community",
  6353. "homepage": "https://symfony.com/contributors"
  6354. }
  6355. ],
  6356. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6357. "homepage": "https://symfony.com",
  6358. "keywords": [
  6359. "caching",
  6360. "psr6"
  6361. ],
  6362. "support": {
  6363. "source": "https://github.com/symfony/cache/tree/v6.4.16"
  6364. },
  6365. "funding": [
  6366. {
  6367. "url": "https://symfony.com/sponsor",
  6368. "type": "custom"
  6369. },
  6370. {
  6371. "url": "https://github.com/fabpot",
  6372. "type": "github"
  6373. },
  6374. {
  6375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6376. "type": "tidelift"
  6377. }
  6378. ],
  6379. "time": "2024-11-20T10:10:54+00:00"
  6380. },
  6381. {
  6382. "name": "symfony/cache-contracts",
  6383. "version": "v3.5.1",
  6384. "source": {
  6385. "type": "git",
  6386. "url": "https://github.com/symfony/cache-contracts.git",
  6387. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  6388. },
  6389. "dist": {
  6390. "type": "zip",
  6391. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6392. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6393. "shasum": ""
  6394. },
  6395. "require": {
  6396. "php": ">=8.1",
  6397. "psr/cache": "^3.0"
  6398. },
  6399. "type": "library",
  6400. "extra": {
  6401. "branch-alias": {
  6402. "dev-main": "3.5-dev"
  6403. },
  6404. "thanks": {
  6405. "name": "symfony/contracts",
  6406. "url": "https://github.com/symfony/contracts"
  6407. }
  6408. },
  6409. "autoload": {
  6410. "psr-4": {
  6411. "Symfony\\Contracts\\Cache\\": ""
  6412. }
  6413. },
  6414. "notification-url": "https://packagist.org/downloads/",
  6415. "license": [
  6416. "MIT"
  6417. ],
  6418. "authors": [
  6419. {
  6420. "name": "Nicolas Grekas",
  6421. "email": "p@tchwork.com"
  6422. },
  6423. {
  6424. "name": "Symfony Community",
  6425. "homepage": "https://symfony.com/contributors"
  6426. }
  6427. ],
  6428. "description": "Generic abstractions related to caching",
  6429. "homepage": "https://symfony.com",
  6430. "keywords": [
  6431. "abstractions",
  6432. "contracts",
  6433. "decoupling",
  6434. "interfaces",
  6435. "interoperability",
  6436. "standards"
  6437. ],
  6438. "support": {
  6439. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  6440. },
  6441. "funding": [
  6442. {
  6443. "url": "https://symfony.com/sponsor",
  6444. "type": "custom"
  6445. },
  6446. {
  6447. "url": "https://github.com/fabpot",
  6448. "type": "github"
  6449. },
  6450. {
  6451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6452. "type": "tidelift"
  6453. }
  6454. ],
  6455. "time": "2024-09-25T14:20:29+00:00"
  6456. },
  6457. {
  6458. "name": "symfony/console",
  6459. "version": "v6.4.15",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://github.com/symfony/console.git",
  6463. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6468. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6469. "shasum": ""
  6470. },
  6471. "require": {
  6472. "php": ">=8.1",
  6473. "symfony/deprecation-contracts": "^2.5|^3",
  6474. "symfony/polyfill-mbstring": "~1.0",
  6475. "symfony/service-contracts": "^2.5|^3",
  6476. "symfony/string": "^5.4|^6.0|^7.0"
  6477. },
  6478. "conflict": {
  6479. "symfony/dependency-injection": "<5.4",
  6480. "symfony/dotenv": "<5.4",
  6481. "symfony/event-dispatcher": "<5.4",
  6482. "symfony/lock": "<5.4",
  6483. "symfony/process": "<5.4"
  6484. },
  6485. "provide": {
  6486. "psr/log-implementation": "1.0|2.0|3.0"
  6487. },
  6488. "require-dev": {
  6489. "psr/log": "^1|^2|^3",
  6490. "symfony/config": "^5.4|^6.0|^7.0",
  6491. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6492. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6493. "symfony/http-foundation": "^6.4|^7.0",
  6494. "symfony/http-kernel": "^6.4|^7.0",
  6495. "symfony/lock": "^5.4|^6.0|^7.0",
  6496. "symfony/messenger": "^5.4|^6.0|^7.0",
  6497. "symfony/process": "^5.4|^6.0|^7.0",
  6498. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6499. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6500. },
  6501. "type": "library",
  6502. "autoload": {
  6503. "psr-4": {
  6504. "Symfony\\Component\\Console\\": ""
  6505. },
  6506. "exclude-from-classmap": [
  6507. "/Tests/"
  6508. ]
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "MIT"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Fabien Potencier",
  6517. "email": "fabien@symfony.com"
  6518. },
  6519. {
  6520. "name": "Symfony Community",
  6521. "homepage": "https://symfony.com/contributors"
  6522. }
  6523. ],
  6524. "description": "Eases the creation of beautiful and testable command line interfaces",
  6525. "homepage": "https://symfony.com",
  6526. "keywords": [
  6527. "cli",
  6528. "command-line",
  6529. "console",
  6530. "terminal"
  6531. ],
  6532. "support": {
  6533. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6534. },
  6535. "funding": [
  6536. {
  6537. "url": "https://symfony.com/sponsor",
  6538. "type": "custom"
  6539. },
  6540. {
  6541. "url": "https://github.com/fabpot",
  6542. "type": "github"
  6543. },
  6544. {
  6545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6546. "type": "tidelift"
  6547. }
  6548. ],
  6549. "time": "2024-11-06T14:19:14+00:00"
  6550. },
  6551. {
  6552. "name": "symfony/deprecation-contracts",
  6553. "version": "v3.5.1",
  6554. "source": {
  6555. "type": "git",
  6556. "url": "https://github.com/symfony/deprecation-contracts.git",
  6557. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6558. },
  6559. "dist": {
  6560. "type": "zip",
  6561. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6562. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6563. "shasum": ""
  6564. },
  6565. "require": {
  6566. "php": ">=8.1"
  6567. },
  6568. "type": "library",
  6569. "extra": {
  6570. "branch-alias": {
  6571. "dev-main": "3.5-dev"
  6572. },
  6573. "thanks": {
  6574. "name": "symfony/contracts",
  6575. "url": "https://github.com/symfony/contracts"
  6576. }
  6577. },
  6578. "autoload": {
  6579. "files": [
  6580. "function.php"
  6581. ]
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Nicolas Grekas",
  6590. "email": "p@tchwork.com"
  6591. },
  6592. {
  6593. "name": "Symfony Community",
  6594. "homepage": "https://symfony.com/contributors"
  6595. }
  6596. ],
  6597. "description": "A generic function and convention to trigger deprecation notices",
  6598. "homepage": "https://symfony.com",
  6599. "support": {
  6600. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6601. },
  6602. "funding": [
  6603. {
  6604. "url": "https://symfony.com/sponsor",
  6605. "type": "custom"
  6606. },
  6607. {
  6608. "url": "https://github.com/fabpot",
  6609. "type": "github"
  6610. },
  6611. {
  6612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6613. "type": "tidelift"
  6614. }
  6615. ],
  6616. "time": "2024-09-25T14:20:29+00:00"
  6617. },
  6618. {
  6619. "name": "symfony/finder",
  6620. "version": "v6.4.13",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/symfony/finder.git",
  6624. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6629. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6630. "shasum": ""
  6631. },
  6632. "require": {
  6633. "php": ">=8.1"
  6634. },
  6635. "require-dev": {
  6636. "symfony/filesystem": "^6.0|^7.0"
  6637. },
  6638. "type": "library",
  6639. "autoload": {
  6640. "psr-4": {
  6641. "Symfony\\Component\\Finder\\": ""
  6642. },
  6643. "exclude-from-classmap": [
  6644. "/Tests/"
  6645. ]
  6646. },
  6647. "notification-url": "https://packagist.org/downloads/",
  6648. "license": [
  6649. "MIT"
  6650. ],
  6651. "authors": [
  6652. {
  6653. "name": "Fabien Potencier",
  6654. "email": "fabien@symfony.com"
  6655. },
  6656. {
  6657. "name": "Symfony Community",
  6658. "homepage": "https://symfony.com/contributors"
  6659. }
  6660. ],
  6661. "description": "Finds files and directories via an intuitive fluent interface",
  6662. "homepage": "https://symfony.com",
  6663. "support": {
  6664. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  6665. },
  6666. "funding": [
  6667. {
  6668. "url": "https://symfony.com/sponsor",
  6669. "type": "custom"
  6670. },
  6671. {
  6672. "url": "https://github.com/fabpot",
  6673. "type": "github"
  6674. },
  6675. {
  6676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6677. "type": "tidelift"
  6678. }
  6679. ],
  6680. "time": "2024-10-01T08:30:56+00:00"
  6681. },
  6682. {
  6683. "name": "symfony/polyfill-ctype",
  6684. "version": "v1.31.0",
  6685. "source": {
  6686. "type": "git",
  6687. "url": "https://github.com/symfony/polyfill-ctype.git",
  6688. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6689. },
  6690. "dist": {
  6691. "type": "zip",
  6692. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6693. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6694. "shasum": ""
  6695. },
  6696. "require": {
  6697. "php": ">=7.2"
  6698. },
  6699. "provide": {
  6700. "ext-ctype": "*"
  6701. },
  6702. "suggest": {
  6703. "ext-ctype": "For best performance"
  6704. },
  6705. "type": "library",
  6706. "extra": {
  6707. "thanks": {
  6708. "url": "https://github.com/symfony/polyfill",
  6709. "name": "symfony/polyfill"
  6710. }
  6711. },
  6712. "autoload": {
  6713. "files": [
  6714. "bootstrap.php"
  6715. ],
  6716. "psr-4": {
  6717. "Symfony\\Polyfill\\Ctype\\": ""
  6718. }
  6719. },
  6720. "notification-url": "https://packagist.org/downloads/",
  6721. "license": [
  6722. "MIT"
  6723. ],
  6724. "authors": [
  6725. {
  6726. "name": "Gert de Pagter",
  6727. "email": "BackEndTea@gmail.com"
  6728. },
  6729. {
  6730. "name": "Symfony Community",
  6731. "homepage": "https://symfony.com/contributors"
  6732. }
  6733. ],
  6734. "description": "Symfony polyfill for ctype functions",
  6735. "homepage": "https://symfony.com",
  6736. "keywords": [
  6737. "compatibility",
  6738. "ctype",
  6739. "polyfill",
  6740. "portable"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2024-09-09T11:45:10+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/polyfill-intl-grapheme",
  6763. "version": "v1.31.0",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6767. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6772. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "php": ">=7.2"
  6777. },
  6778. "suggest": {
  6779. "ext-intl": "For best performance"
  6780. },
  6781. "type": "library",
  6782. "extra": {
  6783. "thanks": {
  6784. "url": "https://github.com/symfony/polyfill",
  6785. "name": "symfony/polyfill"
  6786. }
  6787. },
  6788. "autoload": {
  6789. "files": [
  6790. "bootstrap.php"
  6791. ],
  6792. "psr-4": {
  6793. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6794. }
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "MIT"
  6799. ],
  6800. "authors": [
  6801. {
  6802. "name": "Nicolas Grekas",
  6803. "email": "p@tchwork.com"
  6804. },
  6805. {
  6806. "name": "Symfony Community",
  6807. "homepage": "https://symfony.com/contributors"
  6808. }
  6809. ],
  6810. "description": "Symfony polyfill for intl's grapheme_* functions",
  6811. "homepage": "https://symfony.com",
  6812. "keywords": [
  6813. "compatibility",
  6814. "grapheme",
  6815. "intl",
  6816. "polyfill",
  6817. "portable",
  6818. "shim"
  6819. ],
  6820. "support": {
  6821. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6822. },
  6823. "funding": [
  6824. {
  6825. "url": "https://symfony.com/sponsor",
  6826. "type": "custom"
  6827. },
  6828. {
  6829. "url": "https://github.com/fabpot",
  6830. "type": "github"
  6831. },
  6832. {
  6833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6834. "type": "tidelift"
  6835. }
  6836. ],
  6837. "time": "2024-09-09T11:45:10+00:00"
  6838. },
  6839. {
  6840. "name": "symfony/polyfill-intl-normalizer",
  6841. "version": "v1.31.0",
  6842. "source": {
  6843. "type": "git",
  6844. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6845. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6846. },
  6847. "dist": {
  6848. "type": "zip",
  6849. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6850. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6851. "shasum": ""
  6852. },
  6853. "require": {
  6854. "php": ">=7.2"
  6855. },
  6856. "suggest": {
  6857. "ext-intl": "For best performance"
  6858. },
  6859. "type": "library",
  6860. "extra": {
  6861. "thanks": {
  6862. "url": "https://github.com/symfony/polyfill",
  6863. "name": "symfony/polyfill"
  6864. }
  6865. },
  6866. "autoload": {
  6867. "files": [
  6868. "bootstrap.php"
  6869. ],
  6870. "psr-4": {
  6871. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6872. },
  6873. "classmap": [
  6874. "Resources/stubs"
  6875. ]
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "MIT"
  6880. ],
  6881. "authors": [
  6882. {
  6883. "name": "Nicolas Grekas",
  6884. "email": "p@tchwork.com"
  6885. },
  6886. {
  6887. "name": "Symfony Community",
  6888. "homepage": "https://symfony.com/contributors"
  6889. }
  6890. ],
  6891. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6892. "homepage": "https://symfony.com",
  6893. "keywords": [
  6894. "compatibility",
  6895. "intl",
  6896. "normalizer",
  6897. "polyfill",
  6898. "portable",
  6899. "shim"
  6900. ],
  6901. "support": {
  6902. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6903. },
  6904. "funding": [
  6905. {
  6906. "url": "https://symfony.com/sponsor",
  6907. "type": "custom"
  6908. },
  6909. {
  6910. "url": "https://github.com/fabpot",
  6911. "type": "github"
  6912. },
  6913. {
  6914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6915. "type": "tidelift"
  6916. }
  6917. ],
  6918. "time": "2024-09-09T11:45:10+00:00"
  6919. },
  6920. {
  6921. "name": "symfony/polyfill-mbstring",
  6922. "version": "v1.31.0",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6926. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6931. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6932. "shasum": ""
  6933. },
  6934. "require": {
  6935. "php": ">=7.2"
  6936. },
  6937. "provide": {
  6938. "ext-mbstring": "*"
  6939. },
  6940. "suggest": {
  6941. "ext-mbstring": "For best performance"
  6942. },
  6943. "type": "library",
  6944. "extra": {
  6945. "thanks": {
  6946. "url": "https://github.com/symfony/polyfill",
  6947. "name": "symfony/polyfill"
  6948. }
  6949. },
  6950. "autoload": {
  6951. "files": [
  6952. "bootstrap.php"
  6953. ],
  6954. "psr-4": {
  6955. "Symfony\\Polyfill\\Mbstring\\": ""
  6956. }
  6957. },
  6958. "notification-url": "https://packagist.org/downloads/",
  6959. "license": [
  6960. "MIT"
  6961. ],
  6962. "authors": [
  6963. {
  6964. "name": "Nicolas Grekas",
  6965. "email": "p@tchwork.com"
  6966. },
  6967. {
  6968. "name": "Symfony Community",
  6969. "homepage": "https://symfony.com/contributors"
  6970. }
  6971. ],
  6972. "description": "Symfony polyfill for the Mbstring extension",
  6973. "homepage": "https://symfony.com",
  6974. "keywords": [
  6975. "compatibility",
  6976. "mbstring",
  6977. "polyfill",
  6978. "portable",
  6979. "shim"
  6980. ],
  6981. "support": {
  6982. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6983. },
  6984. "funding": [
  6985. {
  6986. "url": "https://symfony.com/sponsor",
  6987. "type": "custom"
  6988. },
  6989. {
  6990. "url": "https://github.com/fabpot",
  6991. "type": "github"
  6992. },
  6993. {
  6994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6995. "type": "tidelift"
  6996. }
  6997. ],
  6998. "time": "2024-09-09T11:45:10+00:00"
  6999. },
  7000. {
  7001. "name": "symfony/polyfill-php80",
  7002. "version": "v1.31.0",
  7003. "source": {
  7004. "type": "git",
  7005. "url": "https://github.com/symfony/polyfill-php80.git",
  7006. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7007. },
  7008. "dist": {
  7009. "type": "zip",
  7010. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7011. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7012. "shasum": ""
  7013. },
  7014. "require": {
  7015. "php": ">=7.2"
  7016. },
  7017. "type": "library",
  7018. "extra": {
  7019. "thanks": {
  7020. "url": "https://github.com/symfony/polyfill",
  7021. "name": "symfony/polyfill"
  7022. }
  7023. },
  7024. "autoload": {
  7025. "files": [
  7026. "bootstrap.php"
  7027. ],
  7028. "psr-4": {
  7029. "Symfony\\Polyfill\\Php80\\": ""
  7030. },
  7031. "classmap": [
  7032. "Resources/stubs"
  7033. ]
  7034. },
  7035. "notification-url": "https://packagist.org/downloads/",
  7036. "license": [
  7037. "MIT"
  7038. ],
  7039. "authors": [
  7040. {
  7041. "name": "Ion Bazan",
  7042. "email": "ion.bazan@gmail.com"
  7043. },
  7044. {
  7045. "name": "Nicolas Grekas",
  7046. "email": "p@tchwork.com"
  7047. },
  7048. {
  7049. "name": "Symfony Community",
  7050. "homepage": "https://symfony.com/contributors"
  7051. }
  7052. ],
  7053. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7054. "homepage": "https://symfony.com",
  7055. "keywords": [
  7056. "compatibility",
  7057. "polyfill",
  7058. "portable",
  7059. "shim"
  7060. ],
  7061. "support": {
  7062. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7063. },
  7064. "funding": [
  7065. {
  7066. "url": "https://symfony.com/sponsor",
  7067. "type": "custom"
  7068. },
  7069. {
  7070. "url": "https://github.com/fabpot",
  7071. "type": "github"
  7072. },
  7073. {
  7074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7075. "type": "tidelift"
  7076. }
  7077. ],
  7078. "time": "2024-09-09T11:45:10+00:00"
  7079. },
  7080. {
  7081. "name": "symfony/service-contracts",
  7082. "version": "v3.5.1",
  7083. "source": {
  7084. "type": "git",
  7085. "url": "https://github.com/symfony/service-contracts.git",
  7086. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7087. },
  7088. "dist": {
  7089. "type": "zip",
  7090. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7091. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7092. "shasum": ""
  7093. },
  7094. "require": {
  7095. "php": ">=8.1",
  7096. "psr/container": "^1.1|^2.0",
  7097. "symfony/deprecation-contracts": "^2.5|^3"
  7098. },
  7099. "conflict": {
  7100. "ext-psr": "<1.1|>=2"
  7101. },
  7102. "type": "library",
  7103. "extra": {
  7104. "branch-alias": {
  7105. "dev-main": "3.5-dev"
  7106. },
  7107. "thanks": {
  7108. "name": "symfony/contracts",
  7109. "url": "https://github.com/symfony/contracts"
  7110. }
  7111. },
  7112. "autoload": {
  7113. "psr-4": {
  7114. "Symfony\\Contracts\\Service\\": ""
  7115. },
  7116. "exclude-from-classmap": [
  7117. "/Test/"
  7118. ]
  7119. },
  7120. "notification-url": "https://packagist.org/downloads/",
  7121. "license": [
  7122. "MIT"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Nicolas Grekas",
  7127. "email": "p@tchwork.com"
  7128. },
  7129. {
  7130. "name": "Symfony Community",
  7131. "homepage": "https://symfony.com/contributors"
  7132. }
  7133. ],
  7134. "description": "Generic abstractions related to writing services",
  7135. "homepage": "https://symfony.com",
  7136. "keywords": [
  7137. "abstractions",
  7138. "contracts",
  7139. "decoupling",
  7140. "interfaces",
  7141. "interoperability",
  7142. "standards"
  7143. ],
  7144. "support": {
  7145. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7146. },
  7147. "funding": [
  7148. {
  7149. "url": "https://symfony.com/sponsor",
  7150. "type": "custom"
  7151. },
  7152. {
  7153. "url": "https://github.com/fabpot",
  7154. "type": "github"
  7155. },
  7156. {
  7157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7158. "type": "tidelift"
  7159. }
  7160. ],
  7161. "time": "2024-09-25T14:20:29+00:00"
  7162. },
  7163. {
  7164. "name": "symfony/string",
  7165. "version": "v6.4.15",
  7166. "source": {
  7167. "type": "git",
  7168. "url": "https://github.com/symfony/string.git",
  7169. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7170. },
  7171. "dist": {
  7172. "type": "zip",
  7173. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7174. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7175. "shasum": ""
  7176. },
  7177. "require": {
  7178. "php": ">=8.1",
  7179. "symfony/polyfill-ctype": "~1.8",
  7180. "symfony/polyfill-intl-grapheme": "~1.0",
  7181. "symfony/polyfill-intl-normalizer": "~1.0",
  7182. "symfony/polyfill-mbstring": "~1.0"
  7183. },
  7184. "conflict": {
  7185. "symfony/translation-contracts": "<2.5"
  7186. },
  7187. "require-dev": {
  7188. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7189. "symfony/http-client": "^5.4|^6.0|^7.0",
  7190. "symfony/intl": "^6.2|^7.0",
  7191. "symfony/translation-contracts": "^2.5|^3.0",
  7192. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7193. },
  7194. "type": "library",
  7195. "autoload": {
  7196. "files": [
  7197. "Resources/functions.php"
  7198. ],
  7199. "psr-4": {
  7200. "Symfony\\Component\\String\\": ""
  7201. },
  7202. "exclude-from-classmap": [
  7203. "/Tests/"
  7204. ]
  7205. },
  7206. "notification-url": "https://packagist.org/downloads/",
  7207. "license": [
  7208. "MIT"
  7209. ],
  7210. "authors": [
  7211. {
  7212. "name": "Nicolas Grekas",
  7213. "email": "p@tchwork.com"
  7214. },
  7215. {
  7216. "name": "Symfony Community",
  7217. "homepage": "https://symfony.com/contributors"
  7218. }
  7219. ],
  7220. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7221. "homepage": "https://symfony.com",
  7222. "keywords": [
  7223. "grapheme",
  7224. "i18n",
  7225. "string",
  7226. "unicode",
  7227. "utf-8",
  7228. "utf8"
  7229. ],
  7230. "support": {
  7231. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7232. },
  7233. "funding": [
  7234. {
  7235. "url": "https://symfony.com/sponsor",
  7236. "type": "custom"
  7237. },
  7238. {
  7239. "url": "https://github.com/fabpot",
  7240. "type": "github"
  7241. },
  7242. {
  7243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7244. "type": "tidelift"
  7245. }
  7246. ],
  7247. "time": "2024-11-13T13:31:12+00:00"
  7248. },
  7249. {
  7250. "name": "symfony/translation",
  7251. "version": "v6.4.13",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/symfony/translation.git",
  7255. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7260. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7261. "shasum": ""
  7262. },
  7263. "require": {
  7264. "php": ">=8.1",
  7265. "symfony/deprecation-contracts": "^2.5|^3",
  7266. "symfony/polyfill-mbstring": "~1.0",
  7267. "symfony/translation-contracts": "^2.5|^3.0"
  7268. },
  7269. "conflict": {
  7270. "symfony/config": "<5.4",
  7271. "symfony/console": "<5.4",
  7272. "symfony/dependency-injection": "<5.4",
  7273. "symfony/http-client-contracts": "<2.5",
  7274. "symfony/http-kernel": "<5.4",
  7275. "symfony/service-contracts": "<2.5",
  7276. "symfony/twig-bundle": "<5.4",
  7277. "symfony/yaml": "<5.4"
  7278. },
  7279. "provide": {
  7280. "symfony/translation-implementation": "2.3|3.0"
  7281. },
  7282. "require-dev": {
  7283. "nikic/php-parser": "^4.18|^5.0",
  7284. "psr/log": "^1|^2|^3",
  7285. "symfony/config": "^5.4|^6.0|^7.0",
  7286. "symfony/console": "^5.4|^6.0|^7.0",
  7287. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7288. "symfony/finder": "^5.4|^6.0|^7.0",
  7289. "symfony/http-client-contracts": "^2.5|^3.0",
  7290. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7291. "symfony/intl": "^5.4|^6.0|^7.0",
  7292. "symfony/polyfill-intl-icu": "^1.21",
  7293. "symfony/routing": "^5.4|^6.0|^7.0",
  7294. "symfony/service-contracts": "^2.5|^3",
  7295. "symfony/yaml": "^5.4|^6.0|^7.0"
  7296. },
  7297. "type": "library",
  7298. "autoload": {
  7299. "files": [
  7300. "Resources/functions.php"
  7301. ],
  7302. "psr-4": {
  7303. "Symfony\\Component\\Translation\\": ""
  7304. },
  7305. "exclude-from-classmap": [
  7306. "/Tests/"
  7307. ]
  7308. },
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "MIT"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "Fabien Potencier",
  7316. "email": "fabien@symfony.com"
  7317. },
  7318. {
  7319. "name": "Symfony Community",
  7320. "homepage": "https://symfony.com/contributors"
  7321. }
  7322. ],
  7323. "description": "Provides tools to internationalize your application",
  7324. "homepage": "https://symfony.com",
  7325. "support": {
  7326. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7327. },
  7328. "funding": [
  7329. {
  7330. "url": "https://symfony.com/sponsor",
  7331. "type": "custom"
  7332. },
  7333. {
  7334. "url": "https://github.com/fabpot",
  7335. "type": "github"
  7336. },
  7337. {
  7338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7339. "type": "tidelift"
  7340. }
  7341. ],
  7342. "time": "2024-09-27T18:14:25+00:00"
  7343. },
  7344. {
  7345. "name": "symfony/translation-contracts",
  7346. "version": "v3.5.1",
  7347. "source": {
  7348. "type": "git",
  7349. "url": "https://github.com/symfony/translation-contracts.git",
  7350. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7351. },
  7352. "dist": {
  7353. "type": "zip",
  7354. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7355. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7356. "shasum": ""
  7357. },
  7358. "require": {
  7359. "php": ">=8.1"
  7360. },
  7361. "type": "library",
  7362. "extra": {
  7363. "branch-alias": {
  7364. "dev-main": "3.5-dev"
  7365. },
  7366. "thanks": {
  7367. "name": "symfony/contracts",
  7368. "url": "https://github.com/symfony/contracts"
  7369. }
  7370. },
  7371. "autoload": {
  7372. "psr-4": {
  7373. "Symfony\\Contracts\\Translation\\": ""
  7374. },
  7375. "exclude-from-classmap": [
  7376. "/Test/"
  7377. ]
  7378. },
  7379. "notification-url": "https://packagist.org/downloads/",
  7380. "license": [
  7381. "MIT"
  7382. ],
  7383. "authors": [
  7384. {
  7385. "name": "Nicolas Grekas",
  7386. "email": "p@tchwork.com"
  7387. },
  7388. {
  7389. "name": "Symfony Community",
  7390. "homepage": "https://symfony.com/contributors"
  7391. }
  7392. ],
  7393. "description": "Generic abstractions related to translation",
  7394. "homepage": "https://symfony.com",
  7395. "keywords": [
  7396. "abstractions",
  7397. "contracts",
  7398. "decoupling",
  7399. "interfaces",
  7400. "interoperability",
  7401. "standards"
  7402. ],
  7403. "support": {
  7404. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7405. },
  7406. "funding": [
  7407. {
  7408. "url": "https://symfony.com/sponsor",
  7409. "type": "custom"
  7410. },
  7411. {
  7412. "url": "https://github.com/fabpot",
  7413. "type": "github"
  7414. },
  7415. {
  7416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7417. "type": "tidelift"
  7418. }
  7419. ],
  7420. "time": "2024-09-25T14:20:29+00:00"
  7421. },
  7422. {
  7423. "name": "symfony/var-dumper",
  7424. "version": "v6.4.15",
  7425. "source": {
  7426. "type": "git",
  7427. "url": "https://github.com/symfony/var-dumper.git",
  7428. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80"
  7429. },
  7430. "dist": {
  7431. "type": "zip",
  7432. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7433. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7434. "shasum": ""
  7435. },
  7436. "require": {
  7437. "php": ">=8.1",
  7438. "symfony/deprecation-contracts": "^2.5|^3",
  7439. "symfony/polyfill-mbstring": "~1.0"
  7440. },
  7441. "conflict": {
  7442. "symfony/console": "<5.4"
  7443. },
  7444. "require-dev": {
  7445. "ext-iconv": "*",
  7446. "symfony/console": "^5.4|^6.0|^7.0",
  7447. "symfony/error-handler": "^6.3|^7.0",
  7448. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7449. "symfony/process": "^5.4|^6.0|^7.0",
  7450. "symfony/uid": "^5.4|^6.0|^7.0",
  7451. "twig/twig": "^2.13|^3.0.4"
  7452. },
  7453. "bin": [
  7454. "Resources/bin/var-dump-server"
  7455. ],
  7456. "type": "library",
  7457. "autoload": {
  7458. "files": [
  7459. "Resources/functions/dump.php"
  7460. ],
  7461. "psr-4": {
  7462. "Symfony\\Component\\VarDumper\\": ""
  7463. },
  7464. "exclude-from-classmap": [
  7465. "/Tests/"
  7466. ]
  7467. },
  7468. "notification-url": "https://packagist.org/downloads/",
  7469. "license": [
  7470. "MIT"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "Nicolas Grekas",
  7475. "email": "p@tchwork.com"
  7476. },
  7477. {
  7478. "name": "Symfony Community",
  7479. "homepage": "https://symfony.com/contributors"
  7480. }
  7481. ],
  7482. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7483. "homepage": "https://symfony.com",
  7484. "keywords": [
  7485. "debug",
  7486. "dump"
  7487. ],
  7488. "support": {
  7489. "source": "https://github.com/symfony/var-dumper/tree/v6.4.15"
  7490. },
  7491. "funding": [
  7492. {
  7493. "url": "https://symfony.com/sponsor",
  7494. "type": "custom"
  7495. },
  7496. {
  7497. "url": "https://github.com/fabpot",
  7498. "type": "github"
  7499. },
  7500. {
  7501. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7502. "type": "tidelift"
  7503. }
  7504. ],
  7505. "time": "2024-11-08T15:28:48+00:00"
  7506. },
  7507. {
  7508. "name": "symfony/var-exporter",
  7509. "version": "v6.4.13",
  7510. "source": {
  7511. "type": "git",
  7512. "url": "https://github.com/symfony/var-exporter.git",
  7513. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7514. },
  7515. "dist": {
  7516. "type": "zip",
  7517. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7518. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7519. "shasum": ""
  7520. },
  7521. "require": {
  7522. "php": ">=8.1",
  7523. "symfony/deprecation-contracts": "^2.5|^3"
  7524. },
  7525. "require-dev": {
  7526. "symfony/property-access": "^6.4|^7.0",
  7527. "symfony/serializer": "^6.4|^7.0",
  7528. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7529. },
  7530. "type": "library",
  7531. "autoload": {
  7532. "psr-4": {
  7533. "Symfony\\Component\\VarExporter\\": ""
  7534. },
  7535. "exclude-from-classmap": [
  7536. "/Tests/"
  7537. ]
  7538. },
  7539. "notification-url": "https://packagist.org/downloads/",
  7540. "license": [
  7541. "MIT"
  7542. ],
  7543. "authors": [
  7544. {
  7545. "name": "Nicolas Grekas",
  7546. "email": "p@tchwork.com"
  7547. },
  7548. {
  7549. "name": "Symfony Community",
  7550. "homepage": "https://symfony.com/contributors"
  7551. }
  7552. ],
  7553. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7554. "homepage": "https://symfony.com",
  7555. "keywords": [
  7556. "clone",
  7557. "construct",
  7558. "export",
  7559. "hydrate",
  7560. "instantiate",
  7561. "lazy-loading",
  7562. "proxy",
  7563. "serialize"
  7564. ],
  7565. "support": {
  7566. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7567. },
  7568. "funding": [
  7569. {
  7570. "url": "https://symfony.com/sponsor",
  7571. "type": "custom"
  7572. },
  7573. {
  7574. "url": "https://github.com/fabpot",
  7575. "type": "github"
  7576. },
  7577. {
  7578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7579. "type": "tidelift"
  7580. }
  7581. ],
  7582. "time": "2024-09-25T14:18:03+00:00"
  7583. },
  7584. {
  7585. "name": "vlucas/phpdotenv",
  7586. "version": "v5.6.1",
  7587. "source": {
  7588. "type": "git",
  7589. "url": "https://github.com/vlucas/phpdotenv.git",
  7590. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7591. },
  7592. "dist": {
  7593. "type": "zip",
  7594. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7595. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7596. "shasum": ""
  7597. },
  7598. "require": {
  7599. "ext-pcre": "*",
  7600. "graham-campbell/result-type": "^1.1.3",
  7601. "php": "^7.2.5 || ^8.0",
  7602. "phpoption/phpoption": "^1.9.3",
  7603. "symfony/polyfill-ctype": "^1.24",
  7604. "symfony/polyfill-mbstring": "^1.24",
  7605. "symfony/polyfill-php80": "^1.24"
  7606. },
  7607. "require-dev": {
  7608. "bamarni/composer-bin-plugin": "^1.8.2",
  7609. "ext-filter": "*",
  7610. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7611. },
  7612. "suggest": {
  7613. "ext-filter": "Required to use the boolean validator."
  7614. },
  7615. "type": "library",
  7616. "extra": {
  7617. "bamarni-bin": {
  7618. "bin-links": true,
  7619. "forward-command": false
  7620. },
  7621. "branch-alias": {
  7622. "dev-master": "5.6-dev"
  7623. }
  7624. },
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Dotenv\\": "src/"
  7628. }
  7629. },
  7630. "notification-url": "https://packagist.org/downloads/",
  7631. "license": [
  7632. "BSD-3-Clause"
  7633. ],
  7634. "authors": [
  7635. {
  7636. "name": "Graham Campbell",
  7637. "email": "hello@gjcampbell.co.uk",
  7638. "homepage": "https://github.com/GrahamCampbell"
  7639. },
  7640. {
  7641. "name": "Vance Lucas",
  7642. "email": "vance@vancelucas.com",
  7643. "homepage": "https://github.com/vlucas"
  7644. }
  7645. ],
  7646. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7647. "keywords": [
  7648. "dotenv",
  7649. "env",
  7650. "environment"
  7651. ],
  7652. "support": {
  7653. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7654. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7655. },
  7656. "funding": [
  7657. {
  7658. "url": "https://github.com/GrahamCampbell",
  7659. "type": "github"
  7660. },
  7661. {
  7662. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7663. "type": "tidelift"
  7664. }
  7665. ],
  7666. "time": "2024-07-20T21:52:34+00:00"
  7667. }
  7668. ],
  7669. "packages-dev": [
  7670. {
  7671. "name": "clue/ndjson-react",
  7672. "version": "v1.3.0",
  7673. "source": {
  7674. "type": "git",
  7675. "url": "https://github.com/clue/reactphp-ndjson.git",
  7676. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7677. },
  7678. "dist": {
  7679. "type": "zip",
  7680. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7681. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7682. "shasum": ""
  7683. },
  7684. "require": {
  7685. "php": ">=5.3",
  7686. "react/stream": "^1.2"
  7687. },
  7688. "require-dev": {
  7689. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7690. "react/event-loop": "^1.2"
  7691. },
  7692. "type": "library",
  7693. "autoload": {
  7694. "psr-4": {
  7695. "Clue\\React\\NDJson\\": "src/"
  7696. }
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "MIT"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Christian Lück",
  7705. "email": "christian@clue.engineering"
  7706. }
  7707. ],
  7708. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7709. "homepage": "https://github.com/clue/reactphp-ndjson",
  7710. "keywords": [
  7711. "NDJSON",
  7712. "json",
  7713. "jsonlines",
  7714. "newline",
  7715. "reactphp",
  7716. "streaming"
  7717. ],
  7718. "support": {
  7719. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7720. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7721. },
  7722. "funding": [
  7723. {
  7724. "url": "https://clue.engineering/support",
  7725. "type": "custom"
  7726. },
  7727. {
  7728. "url": "https://github.com/clue",
  7729. "type": "github"
  7730. }
  7731. ],
  7732. "time": "2022-12-23T10:58:28+00:00"
  7733. },
  7734. {
  7735. "name": "composer/pcre",
  7736. "version": "3.3.2",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/composer/pcre.git",
  7740. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7745. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7746. "shasum": ""
  7747. },
  7748. "require": {
  7749. "php": "^7.4 || ^8.0"
  7750. },
  7751. "conflict": {
  7752. "phpstan/phpstan": "<1.11.10"
  7753. },
  7754. "require-dev": {
  7755. "phpstan/phpstan": "^1.12 || ^2",
  7756. "phpstan/phpstan-strict-rules": "^1 || ^2",
  7757. "phpunit/phpunit": "^8 || ^9"
  7758. },
  7759. "type": "library",
  7760. "extra": {
  7761. "phpstan": {
  7762. "includes": [
  7763. "extension.neon"
  7764. ]
  7765. },
  7766. "branch-alias": {
  7767. "dev-main": "3.x-dev"
  7768. }
  7769. },
  7770. "autoload": {
  7771. "psr-4": {
  7772. "Composer\\Pcre\\": "src"
  7773. }
  7774. },
  7775. "notification-url": "https://packagist.org/downloads/",
  7776. "license": [
  7777. "MIT"
  7778. ],
  7779. "authors": [
  7780. {
  7781. "name": "Jordi Boggiano",
  7782. "email": "j.boggiano@seld.be",
  7783. "homepage": "http://seld.be"
  7784. }
  7785. ],
  7786. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7787. "keywords": [
  7788. "PCRE",
  7789. "preg",
  7790. "regex",
  7791. "regular expression"
  7792. ],
  7793. "support": {
  7794. "issues": "https://github.com/composer/pcre/issues",
  7795. "source": "https://github.com/composer/pcre/tree/3.3.2"
  7796. },
  7797. "funding": [
  7798. {
  7799. "url": "https://packagist.com",
  7800. "type": "custom"
  7801. },
  7802. {
  7803. "url": "https://github.com/composer",
  7804. "type": "github"
  7805. },
  7806. {
  7807. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7808. "type": "tidelift"
  7809. }
  7810. ],
  7811. "time": "2024-11-12T16:29:46+00:00"
  7812. },
  7813. {
  7814. "name": "composer/semver",
  7815. "version": "3.4.3",
  7816. "source": {
  7817. "type": "git",
  7818. "url": "https://github.com/composer/semver.git",
  7819. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7820. },
  7821. "dist": {
  7822. "type": "zip",
  7823. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7824. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7825. "shasum": ""
  7826. },
  7827. "require": {
  7828. "php": "^5.3.2 || ^7.0 || ^8.0"
  7829. },
  7830. "require-dev": {
  7831. "phpstan/phpstan": "^1.11",
  7832. "symfony/phpunit-bridge": "^3 || ^7"
  7833. },
  7834. "type": "library",
  7835. "extra": {
  7836. "branch-alias": {
  7837. "dev-main": "3.x-dev"
  7838. }
  7839. },
  7840. "autoload": {
  7841. "psr-4": {
  7842. "Composer\\Semver\\": "src"
  7843. }
  7844. },
  7845. "notification-url": "https://packagist.org/downloads/",
  7846. "license": [
  7847. "MIT"
  7848. ],
  7849. "authors": [
  7850. {
  7851. "name": "Nils Adermann",
  7852. "email": "naderman@naderman.de",
  7853. "homepage": "http://www.naderman.de"
  7854. },
  7855. {
  7856. "name": "Jordi Boggiano",
  7857. "email": "j.boggiano@seld.be",
  7858. "homepage": "http://seld.be"
  7859. },
  7860. {
  7861. "name": "Rob Bast",
  7862. "email": "rob.bast@gmail.com",
  7863. "homepage": "http://robbast.nl"
  7864. }
  7865. ],
  7866. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7867. "keywords": [
  7868. "semantic",
  7869. "semver",
  7870. "validation",
  7871. "versioning"
  7872. ],
  7873. "support": {
  7874. "irc": "ircs://irc.libera.chat:6697/composer",
  7875. "issues": "https://github.com/composer/semver/issues",
  7876. "source": "https://github.com/composer/semver/tree/3.4.3"
  7877. },
  7878. "funding": [
  7879. {
  7880. "url": "https://packagist.com",
  7881. "type": "custom"
  7882. },
  7883. {
  7884. "url": "https://github.com/composer",
  7885. "type": "github"
  7886. },
  7887. {
  7888. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7889. "type": "tidelift"
  7890. }
  7891. ],
  7892. "time": "2024-09-19T14:15:21+00:00"
  7893. },
  7894. {
  7895. "name": "composer/xdebug-handler",
  7896. "version": "3.0.5",
  7897. "source": {
  7898. "type": "git",
  7899. "url": "https://github.com/composer/xdebug-handler.git",
  7900. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7901. },
  7902. "dist": {
  7903. "type": "zip",
  7904. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7905. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7906. "shasum": ""
  7907. },
  7908. "require": {
  7909. "composer/pcre": "^1 || ^2 || ^3",
  7910. "php": "^7.2.5 || ^8.0",
  7911. "psr/log": "^1 || ^2 || ^3"
  7912. },
  7913. "require-dev": {
  7914. "phpstan/phpstan": "^1.0",
  7915. "phpstan/phpstan-strict-rules": "^1.1",
  7916. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7917. },
  7918. "type": "library",
  7919. "autoload": {
  7920. "psr-4": {
  7921. "Composer\\XdebugHandler\\": "src"
  7922. }
  7923. },
  7924. "notification-url": "https://packagist.org/downloads/",
  7925. "license": [
  7926. "MIT"
  7927. ],
  7928. "authors": [
  7929. {
  7930. "name": "John Stevenson",
  7931. "email": "john-stevenson@blueyonder.co.uk"
  7932. }
  7933. ],
  7934. "description": "Restarts a process without Xdebug.",
  7935. "keywords": [
  7936. "Xdebug",
  7937. "performance"
  7938. ],
  7939. "support": {
  7940. "irc": "ircs://irc.libera.chat:6697/composer",
  7941. "issues": "https://github.com/composer/xdebug-handler/issues",
  7942. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7943. },
  7944. "funding": [
  7945. {
  7946. "url": "https://packagist.com",
  7947. "type": "custom"
  7948. },
  7949. {
  7950. "url": "https://github.com/composer",
  7951. "type": "github"
  7952. },
  7953. {
  7954. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7955. "type": "tidelift"
  7956. }
  7957. ],
  7958. "time": "2024-05-06T16:37:16+00:00"
  7959. },
  7960. {
  7961. "name": "evenement/evenement",
  7962. "version": "v3.0.2",
  7963. "source": {
  7964. "type": "git",
  7965. "url": "https://github.com/igorw/evenement.git",
  7966. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7967. },
  7968. "dist": {
  7969. "type": "zip",
  7970. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7971. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7972. "shasum": ""
  7973. },
  7974. "require": {
  7975. "php": ">=7.0"
  7976. },
  7977. "require-dev": {
  7978. "phpunit/phpunit": "^9 || ^6"
  7979. },
  7980. "type": "library",
  7981. "autoload": {
  7982. "psr-4": {
  7983. "Evenement\\": "src/"
  7984. }
  7985. },
  7986. "notification-url": "https://packagist.org/downloads/",
  7987. "license": [
  7988. "MIT"
  7989. ],
  7990. "authors": [
  7991. {
  7992. "name": "Igor Wiedler",
  7993. "email": "igor@wiedler.ch"
  7994. }
  7995. ],
  7996. "description": "Événement is a very simple event dispatching library for PHP",
  7997. "keywords": [
  7998. "event-dispatcher",
  7999. "event-emitter"
  8000. ],
  8001. "support": {
  8002. "issues": "https://github.com/igorw/evenement/issues",
  8003. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8004. },
  8005. "time": "2023-08-08T05:53:35+00:00"
  8006. },
  8007. {
  8008. "name": "fidry/cpu-core-counter",
  8009. "version": "1.2.0",
  8010. "source": {
  8011. "type": "git",
  8012. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8013. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8014. },
  8015. "dist": {
  8016. "type": "zip",
  8017. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8018. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8019. "shasum": ""
  8020. },
  8021. "require": {
  8022. "php": "^7.2 || ^8.0"
  8023. },
  8024. "require-dev": {
  8025. "fidry/makefile": "^0.2.0",
  8026. "fidry/php-cs-fixer-config": "^1.1.2",
  8027. "phpstan/extension-installer": "^1.2.0",
  8028. "phpstan/phpstan": "^1.9.2",
  8029. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8030. "phpstan/phpstan-phpunit": "^1.2.2",
  8031. "phpstan/phpstan-strict-rules": "^1.4.4",
  8032. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8033. "webmozarts/strict-phpunit": "^7.5"
  8034. },
  8035. "type": "library",
  8036. "autoload": {
  8037. "psr-4": {
  8038. "Fidry\\CpuCoreCounter\\": "src/"
  8039. }
  8040. },
  8041. "notification-url": "https://packagist.org/downloads/",
  8042. "license": [
  8043. "MIT"
  8044. ],
  8045. "authors": [
  8046. {
  8047. "name": "Théo FIDRY",
  8048. "email": "theo.fidry@gmail.com"
  8049. }
  8050. ],
  8051. "description": "Tiny utility to get the number of CPU cores.",
  8052. "keywords": [
  8053. "CPU",
  8054. "core"
  8055. ],
  8056. "support": {
  8057. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8058. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8059. },
  8060. "funding": [
  8061. {
  8062. "url": "https://github.com/theofidry",
  8063. "type": "github"
  8064. }
  8065. ],
  8066. "time": "2024-08-06T10:04:20+00:00"
  8067. },
  8068. {
  8069. "name": "friendsofphp/php-cs-fixer",
  8070. "version": "v3.65.0",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8074. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8079. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8080. "shasum": ""
  8081. },
  8082. "require": {
  8083. "clue/ndjson-react": "^1.0",
  8084. "composer/semver": "^3.4",
  8085. "composer/xdebug-handler": "^3.0.3",
  8086. "ext-filter": "*",
  8087. "ext-json": "*",
  8088. "ext-tokenizer": "*",
  8089. "fidry/cpu-core-counter": "^1.2",
  8090. "php": "^7.4 || ^8.0",
  8091. "react/child-process": "^0.6.5",
  8092. "react/event-loop": "^1.0",
  8093. "react/promise": "^2.0 || ^3.0",
  8094. "react/socket": "^1.0",
  8095. "react/stream": "^1.0",
  8096. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8097. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8098. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8099. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8100. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8101. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8102. "symfony/polyfill-mbstring": "^1.28",
  8103. "symfony/polyfill-php80": "^1.28",
  8104. "symfony/polyfill-php81": "^1.28",
  8105. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8106. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8107. },
  8108. "require-dev": {
  8109. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8110. "infection/infection": "^0.29.8",
  8111. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8112. "keradus/cli-executor": "^2.1",
  8113. "mikey179/vfsstream": "^1.6.12",
  8114. "php-coveralls/php-coveralls": "^2.7",
  8115. "php-cs-fixer/accessible-object": "^1.1",
  8116. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8117. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8118. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8119. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8120. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8121. },
  8122. "suggest": {
  8123. "ext-dom": "For handling output formats in XML",
  8124. "ext-mbstring": "For handling non-UTF8 characters."
  8125. },
  8126. "bin": [
  8127. "php-cs-fixer"
  8128. ],
  8129. "type": "application",
  8130. "autoload": {
  8131. "psr-4": {
  8132. "PhpCsFixer\\": "src/"
  8133. },
  8134. "exclude-from-classmap": [
  8135. "src/Fixer/Internal/*"
  8136. ]
  8137. },
  8138. "notification-url": "https://packagist.org/downloads/",
  8139. "license": [
  8140. "MIT"
  8141. ],
  8142. "authors": [
  8143. {
  8144. "name": "Fabien Potencier",
  8145. "email": "fabien@symfony.com"
  8146. },
  8147. {
  8148. "name": "Dariusz Rumiński",
  8149. "email": "dariusz.ruminski@gmail.com"
  8150. }
  8151. ],
  8152. "description": "A tool to automatically fix PHP code style",
  8153. "keywords": [
  8154. "Static code analysis",
  8155. "fixer",
  8156. "standards",
  8157. "static analysis"
  8158. ],
  8159. "support": {
  8160. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8161. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  8162. },
  8163. "funding": [
  8164. {
  8165. "url": "https://github.com/keradus",
  8166. "type": "github"
  8167. }
  8168. ],
  8169. "time": "2024-11-25T00:39:24+00:00"
  8170. },
  8171. {
  8172. "name": "hamcrest/hamcrest-php",
  8173. "version": "v2.0.1",
  8174. "source": {
  8175. "type": "git",
  8176. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8177. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8178. },
  8179. "dist": {
  8180. "type": "zip",
  8181. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8182. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8183. "shasum": ""
  8184. },
  8185. "require": {
  8186. "php": "^5.3|^7.0|^8.0"
  8187. },
  8188. "replace": {
  8189. "cordoval/hamcrest-php": "*",
  8190. "davedevelopment/hamcrest-php": "*",
  8191. "kodova/hamcrest-php": "*"
  8192. },
  8193. "require-dev": {
  8194. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8195. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8196. },
  8197. "type": "library",
  8198. "extra": {
  8199. "branch-alias": {
  8200. "dev-master": "2.1-dev"
  8201. }
  8202. },
  8203. "autoload": {
  8204. "classmap": [
  8205. "hamcrest"
  8206. ]
  8207. },
  8208. "notification-url": "https://packagist.org/downloads/",
  8209. "license": [
  8210. "BSD-3-Clause"
  8211. ],
  8212. "description": "This is the PHP port of Hamcrest Matchers",
  8213. "keywords": [
  8214. "test"
  8215. ],
  8216. "support": {
  8217. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8218. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8219. },
  8220. "time": "2020-07-09T08:09:16+00:00"
  8221. },
  8222. {
  8223. "name": "hyperf/devtool",
  8224. "version": "v3.1.42",
  8225. "source": {
  8226. "type": "git",
  8227. "url": "https://github.com/hyperf/devtool.git",
  8228. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8229. },
  8230. "dist": {
  8231. "type": "zip",
  8232. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8233. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8234. "shasum": ""
  8235. },
  8236. "require": {
  8237. "hyperf/code-parser": "~3.1.0",
  8238. "hyperf/command": "~3.1.0",
  8239. "hyperf/contract": "~3.1.0",
  8240. "hyperf/di": "~3.1.0",
  8241. "hyperf/support": "~3.1.0",
  8242. "hyperf/utils": "~3.1.0",
  8243. "php": ">=8.1"
  8244. },
  8245. "type": "library",
  8246. "extra": {
  8247. "hyperf": {
  8248. "config": "Hyperf\\Devtool\\ConfigProvider"
  8249. },
  8250. "branch-alias": {
  8251. "dev-master": "3.1-dev"
  8252. }
  8253. },
  8254. "autoload": {
  8255. "psr-4": {
  8256. "Hyperf\\Devtool\\": "src/"
  8257. }
  8258. },
  8259. "notification-url": "https://packagist.org/downloads/",
  8260. "license": [
  8261. "MIT"
  8262. ],
  8263. "description": "A Devtool for Hyperf.",
  8264. "homepage": "https://hyperf.io",
  8265. "keywords": [
  8266. "dev",
  8267. "devtool",
  8268. "hyperf",
  8269. "php",
  8270. "swoole"
  8271. ],
  8272. "support": {
  8273. "docs": "https://hyperf.wiki",
  8274. "issues": "https://github.com/hyperf/hyperf/issues",
  8275. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8276. "source": "https://github.com/hyperf/hyperf"
  8277. },
  8278. "funding": [
  8279. {
  8280. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8281. "type": "custom"
  8282. },
  8283. {
  8284. "url": "https://opencollective.com/hyperf",
  8285. "type": "open_collective"
  8286. }
  8287. ],
  8288. "time": "2024-09-25T02:54:12+00:00"
  8289. },
  8290. {
  8291. "name": "hyperf/testing",
  8292. "version": "v3.1.48",
  8293. "source": {
  8294. "type": "git",
  8295. "url": "https://github.com/hyperf/testing.git",
  8296. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  8297. },
  8298. "dist": {
  8299. "type": "zip",
  8300. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8301. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8302. "shasum": ""
  8303. },
  8304. "require": {
  8305. "hyperf/codec": "~3.1.0",
  8306. "hyperf/collection": "~3.1.0",
  8307. "hyperf/contract": "~3.1.0",
  8308. "hyperf/coroutine": "~3.1.0",
  8309. "hyperf/http-message": "~3.1.0",
  8310. "hyperf/http-server": "~3.1.0",
  8311. "hyperf/support": "~3.1.0",
  8312. "hyperf/utils": "~3.1.0",
  8313. "php": ">=8.1",
  8314. "phpunit/phpunit": "^10.0",
  8315. "psr/container": "^1.0 || ^2.0",
  8316. "symfony/http-foundation": "^5.4 || ^6.0"
  8317. },
  8318. "suggest": {
  8319. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8320. },
  8321. "bin": [
  8322. "co-phpunit"
  8323. ],
  8324. "type": "library",
  8325. "extra": {
  8326. "branch-alias": {
  8327. "dev-master": "3.1-dev"
  8328. }
  8329. },
  8330. "autoload": {
  8331. "psr-4": {
  8332. "Hyperf\\Testing\\": "src/"
  8333. }
  8334. },
  8335. "notification-url": "https://packagist.org/downloads/",
  8336. "license": [
  8337. "MIT"
  8338. ],
  8339. "description": "Testing for hyperf",
  8340. "keywords": [
  8341. "dev",
  8342. "php",
  8343. "swoole",
  8344. "testing"
  8345. ],
  8346. "support": {
  8347. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  8348. },
  8349. "funding": [
  8350. {
  8351. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8352. "type": "custom"
  8353. },
  8354. {
  8355. "url": "https://opencollective.com/hyperf",
  8356. "type": "open_collective"
  8357. }
  8358. ],
  8359. "time": "2024-12-12T02:12:29+00:00"
  8360. },
  8361. {
  8362. "name": "hyperf/watcher",
  8363. "version": "v3.1.43",
  8364. "source": {
  8365. "type": "git",
  8366. "url": "https://github.com/hyperf/watcher.git",
  8367. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8368. },
  8369. "dist": {
  8370. "type": "zip",
  8371. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8372. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8373. "shasum": ""
  8374. },
  8375. "require": {
  8376. "ext-posix": "*",
  8377. "hyperf/codec": "~3.1.0",
  8378. "hyperf/command": "~3.1.0",
  8379. "hyperf/di": "~3.1.0",
  8380. "hyperf/framework": "~3.1.0",
  8381. "hyperf/support": "~3.1.0",
  8382. "php": ">=8.1"
  8383. },
  8384. "type": "library",
  8385. "extra": {
  8386. "hyperf": {
  8387. "config": "Hyperf\\Watcher\\ConfigProvider"
  8388. },
  8389. "branch-alias": {
  8390. "dev-master": "3.1-dev"
  8391. }
  8392. },
  8393. "autoload": {
  8394. "files": [
  8395. "src/Functions.php"
  8396. ],
  8397. "psr-4": {
  8398. "Hyperf\\Watcher\\": "src/"
  8399. }
  8400. },
  8401. "notification-url": "https://packagist.org/downloads/",
  8402. "license": [
  8403. "MIT"
  8404. ],
  8405. "description": "Hot reload watcher for Hyperf",
  8406. "keywords": [
  8407. "dev",
  8408. "hyperf",
  8409. "php"
  8410. ],
  8411. "support": {
  8412. "issues": "https://github.com/hyperf/watcher/issues",
  8413. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8414. },
  8415. "funding": [
  8416. {
  8417. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8418. "type": "custom"
  8419. },
  8420. {
  8421. "url": "https://opencollective.com/hyperf",
  8422. "type": "open_collective"
  8423. }
  8424. ],
  8425. "time": "2024-10-06T12:33:12+00:00"
  8426. },
  8427. {
  8428. "name": "mockery/mockery",
  8429. "version": "1.6.12",
  8430. "source": {
  8431. "type": "git",
  8432. "url": "https://github.com/mockery/mockery.git",
  8433. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8434. },
  8435. "dist": {
  8436. "type": "zip",
  8437. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8438. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8439. "shasum": ""
  8440. },
  8441. "require": {
  8442. "hamcrest/hamcrest-php": "^2.0.1",
  8443. "lib-pcre": ">=7.0",
  8444. "php": ">=7.3"
  8445. },
  8446. "conflict": {
  8447. "phpunit/phpunit": "<8.0"
  8448. },
  8449. "require-dev": {
  8450. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8451. "symplify/easy-coding-standard": "^12.1.14"
  8452. },
  8453. "type": "library",
  8454. "autoload": {
  8455. "files": [
  8456. "library/helpers.php",
  8457. "library/Mockery.php"
  8458. ],
  8459. "psr-4": {
  8460. "Mockery\\": "library/Mockery"
  8461. }
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "BSD-3-Clause"
  8466. ],
  8467. "authors": [
  8468. {
  8469. "name": "Pádraic Brady",
  8470. "email": "padraic.brady@gmail.com",
  8471. "homepage": "https://github.com/padraic",
  8472. "role": "Author"
  8473. },
  8474. {
  8475. "name": "Dave Marshall",
  8476. "email": "dave.marshall@atstsolutions.co.uk",
  8477. "homepage": "https://davedevelopment.co.uk",
  8478. "role": "Developer"
  8479. },
  8480. {
  8481. "name": "Nathanael Esayeas",
  8482. "email": "nathanael.esayeas@protonmail.com",
  8483. "homepage": "https://github.com/ghostwriter",
  8484. "role": "Lead Developer"
  8485. }
  8486. ],
  8487. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8488. "homepage": "https://github.com/mockery/mockery",
  8489. "keywords": [
  8490. "BDD",
  8491. "TDD",
  8492. "library",
  8493. "mock",
  8494. "mock objects",
  8495. "mockery",
  8496. "stub",
  8497. "test",
  8498. "test double",
  8499. "testing"
  8500. ],
  8501. "support": {
  8502. "docs": "https://docs.mockery.io/",
  8503. "issues": "https://github.com/mockery/mockery/issues",
  8504. "rss": "https://github.com/mockery/mockery/releases.atom",
  8505. "security": "https://github.com/mockery/mockery/security/advisories",
  8506. "source": "https://github.com/mockery/mockery"
  8507. },
  8508. "time": "2024-05-16T03:13:13+00:00"
  8509. },
  8510. {
  8511. "name": "myclabs/deep-copy",
  8512. "version": "1.12.1",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/myclabs/DeepCopy.git",
  8516. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8521. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "php": "^7.1 || ^8.0"
  8526. },
  8527. "conflict": {
  8528. "doctrine/collections": "<1.6.8",
  8529. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8530. },
  8531. "require-dev": {
  8532. "doctrine/collections": "^1.6.8",
  8533. "doctrine/common": "^2.13.3 || ^3.2.2",
  8534. "phpspec/prophecy": "^1.10",
  8535. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8536. },
  8537. "type": "library",
  8538. "autoload": {
  8539. "files": [
  8540. "src/DeepCopy/deep_copy.php"
  8541. ],
  8542. "psr-4": {
  8543. "DeepCopy\\": "src/DeepCopy/"
  8544. }
  8545. },
  8546. "notification-url": "https://packagist.org/downloads/",
  8547. "license": [
  8548. "MIT"
  8549. ],
  8550. "description": "Create deep copies (clones) of your objects",
  8551. "keywords": [
  8552. "clone",
  8553. "copy",
  8554. "duplicate",
  8555. "object",
  8556. "object graph"
  8557. ],
  8558. "support": {
  8559. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8560. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8561. },
  8562. "funding": [
  8563. {
  8564. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8565. "type": "tidelift"
  8566. }
  8567. ],
  8568. "time": "2024-11-08T17:47:46+00:00"
  8569. },
  8570. {
  8571. "name": "phar-io/manifest",
  8572. "version": "2.0.4",
  8573. "source": {
  8574. "type": "git",
  8575. "url": "https://github.com/phar-io/manifest.git",
  8576. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8577. },
  8578. "dist": {
  8579. "type": "zip",
  8580. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8581. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8582. "shasum": ""
  8583. },
  8584. "require": {
  8585. "ext-dom": "*",
  8586. "ext-libxml": "*",
  8587. "ext-phar": "*",
  8588. "ext-xmlwriter": "*",
  8589. "phar-io/version": "^3.0.1",
  8590. "php": "^7.2 || ^8.0"
  8591. },
  8592. "type": "library",
  8593. "extra": {
  8594. "branch-alias": {
  8595. "dev-master": "2.0.x-dev"
  8596. }
  8597. },
  8598. "autoload": {
  8599. "classmap": [
  8600. "src/"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "BSD-3-Clause"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Arne Blankerts",
  8610. "email": "arne@blankerts.de",
  8611. "role": "Developer"
  8612. },
  8613. {
  8614. "name": "Sebastian Heuer",
  8615. "email": "sebastian@phpeople.de",
  8616. "role": "Developer"
  8617. },
  8618. {
  8619. "name": "Sebastian Bergmann",
  8620. "email": "sebastian@phpunit.de",
  8621. "role": "Developer"
  8622. }
  8623. ],
  8624. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8625. "support": {
  8626. "issues": "https://github.com/phar-io/manifest/issues",
  8627. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8628. },
  8629. "funding": [
  8630. {
  8631. "url": "https://github.com/theseer",
  8632. "type": "github"
  8633. }
  8634. ],
  8635. "time": "2024-03-03T12:33:53+00:00"
  8636. },
  8637. {
  8638. "name": "phar-io/version",
  8639. "version": "3.2.1",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/phar-io/version.git",
  8643. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8648. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8649. "shasum": ""
  8650. },
  8651. "require": {
  8652. "php": "^7.2 || ^8.0"
  8653. },
  8654. "type": "library",
  8655. "autoload": {
  8656. "classmap": [
  8657. "src/"
  8658. ]
  8659. },
  8660. "notification-url": "https://packagist.org/downloads/",
  8661. "license": [
  8662. "BSD-3-Clause"
  8663. ],
  8664. "authors": [
  8665. {
  8666. "name": "Arne Blankerts",
  8667. "email": "arne@blankerts.de",
  8668. "role": "Developer"
  8669. },
  8670. {
  8671. "name": "Sebastian Heuer",
  8672. "email": "sebastian@phpeople.de",
  8673. "role": "Developer"
  8674. },
  8675. {
  8676. "name": "Sebastian Bergmann",
  8677. "email": "sebastian@phpunit.de",
  8678. "role": "Developer"
  8679. }
  8680. ],
  8681. "description": "Library for handling version information and constraints",
  8682. "support": {
  8683. "issues": "https://github.com/phar-io/version/issues",
  8684. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8685. },
  8686. "time": "2022-02-21T01:04:05+00:00"
  8687. },
  8688. {
  8689. "name": "phpstan/phpstan",
  8690. "version": "1.12.13",
  8691. "source": {
  8692. "type": "git",
  8693. "url": "https://github.com/phpstan/phpstan.git",
  8694. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f"
  8695. },
  8696. "dist": {
  8697. "type": "zip",
  8698. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9b469068840cfa031e1deaf2fa1886d00e20680f",
  8699. "reference": "9b469068840cfa031e1deaf2fa1886d00e20680f",
  8700. "shasum": ""
  8701. },
  8702. "require": {
  8703. "php": "^7.2|^8.0"
  8704. },
  8705. "conflict": {
  8706. "phpstan/phpstan-shim": "*"
  8707. },
  8708. "bin": [
  8709. "phpstan",
  8710. "phpstan.phar"
  8711. ],
  8712. "type": "library",
  8713. "autoload": {
  8714. "files": [
  8715. "bootstrap.php"
  8716. ]
  8717. },
  8718. "notification-url": "https://packagist.org/downloads/",
  8719. "license": [
  8720. "MIT"
  8721. ],
  8722. "description": "PHPStan - PHP Static Analysis Tool",
  8723. "keywords": [
  8724. "dev",
  8725. "static analysis"
  8726. ],
  8727. "support": {
  8728. "docs": "https://phpstan.org/user-guide/getting-started",
  8729. "forum": "https://github.com/phpstan/phpstan/discussions",
  8730. "issues": "https://github.com/phpstan/phpstan/issues",
  8731. "security": "https://github.com/phpstan/phpstan/security/policy",
  8732. "source": "https://github.com/phpstan/phpstan-src"
  8733. },
  8734. "funding": [
  8735. {
  8736. "url": "https://github.com/ondrejmirtes",
  8737. "type": "github"
  8738. },
  8739. {
  8740. "url": "https://github.com/phpstan",
  8741. "type": "github"
  8742. }
  8743. ],
  8744. "time": "2024-12-17T17:00:20+00:00"
  8745. },
  8746. {
  8747. "name": "phpunit/php-code-coverage",
  8748. "version": "10.1.16",
  8749. "source": {
  8750. "type": "git",
  8751. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8752. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8753. },
  8754. "dist": {
  8755. "type": "zip",
  8756. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8757. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8758. "shasum": ""
  8759. },
  8760. "require": {
  8761. "ext-dom": "*",
  8762. "ext-libxml": "*",
  8763. "ext-xmlwriter": "*",
  8764. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8765. "php": ">=8.1",
  8766. "phpunit/php-file-iterator": "^4.1.0",
  8767. "phpunit/php-text-template": "^3.0.1",
  8768. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8769. "sebastian/complexity": "^3.2.0",
  8770. "sebastian/environment": "^6.1.0",
  8771. "sebastian/lines-of-code": "^2.0.2",
  8772. "sebastian/version": "^4.0.1",
  8773. "theseer/tokenizer": "^1.2.3"
  8774. },
  8775. "require-dev": {
  8776. "phpunit/phpunit": "^10.1"
  8777. },
  8778. "suggest": {
  8779. "ext-pcov": "PHP extension that provides line coverage",
  8780. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8781. },
  8782. "type": "library",
  8783. "extra": {
  8784. "branch-alias": {
  8785. "dev-main": "10.1.x-dev"
  8786. }
  8787. },
  8788. "autoload": {
  8789. "classmap": [
  8790. "src/"
  8791. ]
  8792. },
  8793. "notification-url": "https://packagist.org/downloads/",
  8794. "license": [
  8795. "BSD-3-Clause"
  8796. ],
  8797. "authors": [
  8798. {
  8799. "name": "Sebastian Bergmann",
  8800. "email": "sebastian@phpunit.de",
  8801. "role": "lead"
  8802. }
  8803. ],
  8804. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8805. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8806. "keywords": [
  8807. "coverage",
  8808. "testing",
  8809. "xunit"
  8810. ],
  8811. "support": {
  8812. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8813. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8814. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8815. },
  8816. "funding": [
  8817. {
  8818. "url": "https://github.com/sebastianbergmann",
  8819. "type": "github"
  8820. }
  8821. ],
  8822. "time": "2024-08-22T04:31:57+00:00"
  8823. },
  8824. {
  8825. "name": "phpunit/php-file-iterator",
  8826. "version": "4.1.0",
  8827. "source": {
  8828. "type": "git",
  8829. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8830. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8831. },
  8832. "dist": {
  8833. "type": "zip",
  8834. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8835. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8836. "shasum": ""
  8837. },
  8838. "require": {
  8839. "php": ">=8.1"
  8840. },
  8841. "require-dev": {
  8842. "phpunit/phpunit": "^10.0"
  8843. },
  8844. "type": "library",
  8845. "extra": {
  8846. "branch-alias": {
  8847. "dev-main": "4.0-dev"
  8848. }
  8849. },
  8850. "autoload": {
  8851. "classmap": [
  8852. "src/"
  8853. ]
  8854. },
  8855. "notification-url": "https://packagist.org/downloads/",
  8856. "license": [
  8857. "BSD-3-Clause"
  8858. ],
  8859. "authors": [
  8860. {
  8861. "name": "Sebastian Bergmann",
  8862. "email": "sebastian@phpunit.de",
  8863. "role": "lead"
  8864. }
  8865. ],
  8866. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8867. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8868. "keywords": [
  8869. "filesystem",
  8870. "iterator"
  8871. ],
  8872. "support": {
  8873. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8874. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8875. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8876. },
  8877. "funding": [
  8878. {
  8879. "url": "https://github.com/sebastianbergmann",
  8880. "type": "github"
  8881. }
  8882. ],
  8883. "time": "2023-08-31T06:24:48+00:00"
  8884. },
  8885. {
  8886. "name": "phpunit/php-invoker",
  8887. "version": "4.0.0",
  8888. "source": {
  8889. "type": "git",
  8890. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8891. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8892. },
  8893. "dist": {
  8894. "type": "zip",
  8895. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8896. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8897. "shasum": ""
  8898. },
  8899. "require": {
  8900. "php": ">=8.1"
  8901. },
  8902. "require-dev": {
  8903. "ext-pcntl": "*",
  8904. "phpunit/phpunit": "^10.0"
  8905. },
  8906. "suggest": {
  8907. "ext-pcntl": "*"
  8908. },
  8909. "type": "library",
  8910. "extra": {
  8911. "branch-alias": {
  8912. "dev-main": "4.0-dev"
  8913. }
  8914. },
  8915. "autoload": {
  8916. "classmap": [
  8917. "src/"
  8918. ]
  8919. },
  8920. "notification-url": "https://packagist.org/downloads/",
  8921. "license": [
  8922. "BSD-3-Clause"
  8923. ],
  8924. "authors": [
  8925. {
  8926. "name": "Sebastian Bergmann",
  8927. "email": "sebastian@phpunit.de",
  8928. "role": "lead"
  8929. }
  8930. ],
  8931. "description": "Invoke callables with a timeout",
  8932. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8933. "keywords": [
  8934. "process"
  8935. ],
  8936. "support": {
  8937. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8938. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8939. },
  8940. "funding": [
  8941. {
  8942. "url": "https://github.com/sebastianbergmann",
  8943. "type": "github"
  8944. }
  8945. ],
  8946. "time": "2023-02-03T06:56:09+00:00"
  8947. },
  8948. {
  8949. "name": "phpunit/php-text-template",
  8950. "version": "3.0.1",
  8951. "source": {
  8952. "type": "git",
  8953. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8954. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8955. },
  8956. "dist": {
  8957. "type": "zip",
  8958. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8959. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8960. "shasum": ""
  8961. },
  8962. "require": {
  8963. "php": ">=8.1"
  8964. },
  8965. "require-dev": {
  8966. "phpunit/phpunit": "^10.0"
  8967. },
  8968. "type": "library",
  8969. "extra": {
  8970. "branch-alias": {
  8971. "dev-main": "3.0-dev"
  8972. }
  8973. },
  8974. "autoload": {
  8975. "classmap": [
  8976. "src/"
  8977. ]
  8978. },
  8979. "notification-url": "https://packagist.org/downloads/",
  8980. "license": [
  8981. "BSD-3-Clause"
  8982. ],
  8983. "authors": [
  8984. {
  8985. "name": "Sebastian Bergmann",
  8986. "email": "sebastian@phpunit.de",
  8987. "role": "lead"
  8988. }
  8989. ],
  8990. "description": "Simple template engine.",
  8991. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8992. "keywords": [
  8993. "template"
  8994. ],
  8995. "support": {
  8996. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8997. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8998. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8999. },
  9000. "funding": [
  9001. {
  9002. "url": "https://github.com/sebastianbergmann",
  9003. "type": "github"
  9004. }
  9005. ],
  9006. "time": "2023-08-31T14:07:24+00:00"
  9007. },
  9008. {
  9009. "name": "phpunit/php-timer",
  9010. "version": "6.0.0",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9014. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9019. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "php": ">=8.1"
  9024. },
  9025. "require-dev": {
  9026. "phpunit/phpunit": "^10.0"
  9027. },
  9028. "type": "library",
  9029. "extra": {
  9030. "branch-alias": {
  9031. "dev-main": "6.0-dev"
  9032. }
  9033. },
  9034. "autoload": {
  9035. "classmap": [
  9036. "src/"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "BSD-3-Clause"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Sebastian Bergmann",
  9046. "email": "sebastian@phpunit.de",
  9047. "role": "lead"
  9048. }
  9049. ],
  9050. "description": "Utility class for timing",
  9051. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9052. "keywords": [
  9053. "timer"
  9054. ],
  9055. "support": {
  9056. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9057. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9058. },
  9059. "funding": [
  9060. {
  9061. "url": "https://github.com/sebastianbergmann",
  9062. "type": "github"
  9063. }
  9064. ],
  9065. "time": "2023-02-03T06:57:52+00:00"
  9066. },
  9067. {
  9068. "name": "phpunit/phpunit",
  9069. "version": "10.5.40",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9073. "reference": "e6ddda95af52f69c1e0c7b4f977cccb58048798c"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e6ddda95af52f69c1e0c7b4f977cccb58048798c",
  9078. "reference": "e6ddda95af52f69c1e0c7b4f977cccb58048798c",
  9079. "shasum": ""
  9080. },
  9081. "require": {
  9082. "ext-dom": "*",
  9083. "ext-json": "*",
  9084. "ext-libxml": "*",
  9085. "ext-mbstring": "*",
  9086. "ext-xml": "*",
  9087. "ext-xmlwriter": "*",
  9088. "myclabs/deep-copy": "^1.12.1",
  9089. "phar-io/manifest": "^2.0.4",
  9090. "phar-io/version": "^3.2.1",
  9091. "php": ">=8.1",
  9092. "phpunit/php-code-coverage": "^10.1.16",
  9093. "phpunit/php-file-iterator": "^4.1.0",
  9094. "phpunit/php-invoker": "^4.0.0",
  9095. "phpunit/php-text-template": "^3.0.1",
  9096. "phpunit/php-timer": "^6.0.0",
  9097. "sebastian/cli-parser": "^2.0.1",
  9098. "sebastian/code-unit": "^2.0.0",
  9099. "sebastian/comparator": "^5.0.3",
  9100. "sebastian/diff": "^5.1.1",
  9101. "sebastian/environment": "^6.1.0",
  9102. "sebastian/exporter": "^5.1.2",
  9103. "sebastian/global-state": "^6.0.2",
  9104. "sebastian/object-enumerator": "^5.0.0",
  9105. "sebastian/recursion-context": "^5.0.0",
  9106. "sebastian/type": "^4.0.0",
  9107. "sebastian/version": "^4.0.1"
  9108. },
  9109. "suggest": {
  9110. "ext-soap": "To be able to generate mocks based on WSDL files"
  9111. },
  9112. "bin": [
  9113. "phpunit"
  9114. ],
  9115. "type": "library",
  9116. "extra": {
  9117. "branch-alias": {
  9118. "dev-main": "10.5-dev"
  9119. }
  9120. },
  9121. "autoload": {
  9122. "files": [
  9123. "src/Framework/Assert/Functions.php"
  9124. ],
  9125. "classmap": [
  9126. "src/"
  9127. ]
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Sebastian Bergmann",
  9136. "email": "sebastian@phpunit.de",
  9137. "role": "lead"
  9138. }
  9139. ],
  9140. "description": "The PHP Unit Testing framework.",
  9141. "homepage": "https://phpunit.de/",
  9142. "keywords": [
  9143. "phpunit",
  9144. "testing",
  9145. "xunit"
  9146. ],
  9147. "support": {
  9148. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9149. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9150. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.40"
  9151. },
  9152. "funding": [
  9153. {
  9154. "url": "https://phpunit.de/sponsors.html",
  9155. "type": "custom"
  9156. },
  9157. {
  9158. "url": "https://github.com/sebastianbergmann",
  9159. "type": "github"
  9160. },
  9161. {
  9162. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9163. "type": "tidelift"
  9164. }
  9165. ],
  9166. "time": "2024-12-21T05:49:06+00:00"
  9167. },
  9168. {
  9169. "name": "react/cache",
  9170. "version": "v1.2.0",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/reactphp/cache.git",
  9174. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9179. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9180. "shasum": ""
  9181. },
  9182. "require": {
  9183. "php": ">=5.3.0",
  9184. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9185. },
  9186. "require-dev": {
  9187. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9188. },
  9189. "type": "library",
  9190. "autoload": {
  9191. "psr-4": {
  9192. "React\\Cache\\": "src/"
  9193. }
  9194. },
  9195. "notification-url": "https://packagist.org/downloads/",
  9196. "license": [
  9197. "MIT"
  9198. ],
  9199. "authors": [
  9200. {
  9201. "name": "Christian Lück",
  9202. "email": "christian@clue.engineering",
  9203. "homepage": "https://clue.engineering/"
  9204. },
  9205. {
  9206. "name": "Cees-Jan Kiewiet",
  9207. "email": "reactphp@ceesjankiewiet.nl",
  9208. "homepage": "https://wyrihaximus.net/"
  9209. },
  9210. {
  9211. "name": "Jan Sorgalla",
  9212. "email": "jsorgalla@gmail.com",
  9213. "homepage": "https://sorgalla.com/"
  9214. },
  9215. {
  9216. "name": "Chris Boden",
  9217. "email": "cboden@gmail.com",
  9218. "homepage": "https://cboden.dev/"
  9219. }
  9220. ],
  9221. "description": "Async, Promise-based cache interface for ReactPHP",
  9222. "keywords": [
  9223. "cache",
  9224. "caching",
  9225. "promise",
  9226. "reactphp"
  9227. ],
  9228. "support": {
  9229. "issues": "https://github.com/reactphp/cache/issues",
  9230. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9231. },
  9232. "funding": [
  9233. {
  9234. "url": "https://opencollective.com/reactphp",
  9235. "type": "open_collective"
  9236. }
  9237. ],
  9238. "time": "2022-11-30T15:59:55+00:00"
  9239. },
  9240. {
  9241. "name": "react/child-process",
  9242. "version": "v0.6.5",
  9243. "source": {
  9244. "type": "git",
  9245. "url": "https://github.com/reactphp/child-process.git",
  9246. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9247. },
  9248. "dist": {
  9249. "type": "zip",
  9250. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9251. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9252. "shasum": ""
  9253. },
  9254. "require": {
  9255. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9256. "php": ">=5.3.0",
  9257. "react/event-loop": "^1.2",
  9258. "react/stream": "^1.2"
  9259. },
  9260. "require-dev": {
  9261. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9262. "react/socket": "^1.8",
  9263. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9264. },
  9265. "type": "library",
  9266. "autoload": {
  9267. "psr-4": {
  9268. "React\\ChildProcess\\": "src"
  9269. }
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "MIT"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "Christian Lück",
  9278. "email": "christian@clue.engineering",
  9279. "homepage": "https://clue.engineering/"
  9280. },
  9281. {
  9282. "name": "Cees-Jan Kiewiet",
  9283. "email": "reactphp@ceesjankiewiet.nl",
  9284. "homepage": "https://wyrihaximus.net/"
  9285. },
  9286. {
  9287. "name": "Jan Sorgalla",
  9288. "email": "jsorgalla@gmail.com",
  9289. "homepage": "https://sorgalla.com/"
  9290. },
  9291. {
  9292. "name": "Chris Boden",
  9293. "email": "cboden@gmail.com",
  9294. "homepage": "https://cboden.dev/"
  9295. }
  9296. ],
  9297. "description": "Event-driven library for executing child processes with ReactPHP.",
  9298. "keywords": [
  9299. "event-driven",
  9300. "process",
  9301. "reactphp"
  9302. ],
  9303. "support": {
  9304. "issues": "https://github.com/reactphp/child-process/issues",
  9305. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9306. },
  9307. "funding": [
  9308. {
  9309. "url": "https://github.com/WyriHaximus",
  9310. "type": "github"
  9311. },
  9312. {
  9313. "url": "https://github.com/clue",
  9314. "type": "github"
  9315. }
  9316. ],
  9317. "time": "2022-09-16T13:41:56+00:00"
  9318. },
  9319. {
  9320. "name": "react/dns",
  9321. "version": "v1.13.0",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/reactphp/dns.git",
  9325. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9330. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9331. "shasum": ""
  9332. },
  9333. "require": {
  9334. "php": ">=5.3.0",
  9335. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9336. "react/event-loop": "^1.2",
  9337. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9338. },
  9339. "require-dev": {
  9340. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9341. "react/async": "^4.3 || ^3 || ^2",
  9342. "react/promise-timer": "^1.11"
  9343. },
  9344. "type": "library",
  9345. "autoload": {
  9346. "psr-4": {
  9347. "React\\Dns\\": "src/"
  9348. }
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "license": [
  9352. "MIT"
  9353. ],
  9354. "authors": [
  9355. {
  9356. "name": "Christian Lück",
  9357. "email": "christian@clue.engineering",
  9358. "homepage": "https://clue.engineering/"
  9359. },
  9360. {
  9361. "name": "Cees-Jan Kiewiet",
  9362. "email": "reactphp@ceesjankiewiet.nl",
  9363. "homepage": "https://wyrihaximus.net/"
  9364. },
  9365. {
  9366. "name": "Jan Sorgalla",
  9367. "email": "jsorgalla@gmail.com",
  9368. "homepage": "https://sorgalla.com/"
  9369. },
  9370. {
  9371. "name": "Chris Boden",
  9372. "email": "cboden@gmail.com",
  9373. "homepage": "https://cboden.dev/"
  9374. }
  9375. ],
  9376. "description": "Async DNS resolver for ReactPHP",
  9377. "keywords": [
  9378. "async",
  9379. "dns",
  9380. "dns-resolver",
  9381. "reactphp"
  9382. ],
  9383. "support": {
  9384. "issues": "https://github.com/reactphp/dns/issues",
  9385. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9386. },
  9387. "funding": [
  9388. {
  9389. "url": "https://opencollective.com/reactphp",
  9390. "type": "open_collective"
  9391. }
  9392. ],
  9393. "time": "2024-06-13T14:18:03+00:00"
  9394. },
  9395. {
  9396. "name": "react/event-loop",
  9397. "version": "v1.5.0",
  9398. "source": {
  9399. "type": "git",
  9400. "url": "https://github.com/reactphp/event-loop.git",
  9401. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9402. },
  9403. "dist": {
  9404. "type": "zip",
  9405. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9406. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9407. "shasum": ""
  9408. },
  9409. "require": {
  9410. "php": ">=5.3.0"
  9411. },
  9412. "require-dev": {
  9413. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9414. },
  9415. "suggest": {
  9416. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9417. },
  9418. "type": "library",
  9419. "autoload": {
  9420. "psr-4": {
  9421. "React\\EventLoop\\": "src/"
  9422. }
  9423. },
  9424. "notification-url": "https://packagist.org/downloads/",
  9425. "license": [
  9426. "MIT"
  9427. ],
  9428. "authors": [
  9429. {
  9430. "name": "Christian Lück",
  9431. "email": "christian@clue.engineering",
  9432. "homepage": "https://clue.engineering/"
  9433. },
  9434. {
  9435. "name": "Cees-Jan Kiewiet",
  9436. "email": "reactphp@ceesjankiewiet.nl",
  9437. "homepage": "https://wyrihaximus.net/"
  9438. },
  9439. {
  9440. "name": "Jan Sorgalla",
  9441. "email": "jsorgalla@gmail.com",
  9442. "homepage": "https://sorgalla.com/"
  9443. },
  9444. {
  9445. "name": "Chris Boden",
  9446. "email": "cboden@gmail.com",
  9447. "homepage": "https://cboden.dev/"
  9448. }
  9449. ],
  9450. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9451. "keywords": [
  9452. "asynchronous",
  9453. "event-loop"
  9454. ],
  9455. "support": {
  9456. "issues": "https://github.com/reactphp/event-loop/issues",
  9457. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9458. },
  9459. "funding": [
  9460. {
  9461. "url": "https://opencollective.com/reactphp",
  9462. "type": "open_collective"
  9463. }
  9464. ],
  9465. "time": "2023-11-13T13:48:05+00:00"
  9466. },
  9467. {
  9468. "name": "react/promise",
  9469. "version": "v3.2.0",
  9470. "source": {
  9471. "type": "git",
  9472. "url": "https://github.com/reactphp/promise.git",
  9473. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9474. },
  9475. "dist": {
  9476. "type": "zip",
  9477. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9478. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9479. "shasum": ""
  9480. },
  9481. "require": {
  9482. "php": ">=7.1.0"
  9483. },
  9484. "require-dev": {
  9485. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9486. "phpunit/phpunit": "^9.6 || ^7.5"
  9487. },
  9488. "type": "library",
  9489. "autoload": {
  9490. "files": [
  9491. "src/functions_include.php"
  9492. ],
  9493. "psr-4": {
  9494. "React\\Promise\\": "src/"
  9495. }
  9496. },
  9497. "notification-url": "https://packagist.org/downloads/",
  9498. "license": [
  9499. "MIT"
  9500. ],
  9501. "authors": [
  9502. {
  9503. "name": "Jan Sorgalla",
  9504. "email": "jsorgalla@gmail.com",
  9505. "homepage": "https://sorgalla.com/"
  9506. },
  9507. {
  9508. "name": "Christian Lück",
  9509. "email": "christian@clue.engineering",
  9510. "homepage": "https://clue.engineering/"
  9511. },
  9512. {
  9513. "name": "Cees-Jan Kiewiet",
  9514. "email": "reactphp@ceesjankiewiet.nl",
  9515. "homepage": "https://wyrihaximus.net/"
  9516. },
  9517. {
  9518. "name": "Chris Boden",
  9519. "email": "cboden@gmail.com",
  9520. "homepage": "https://cboden.dev/"
  9521. }
  9522. ],
  9523. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9524. "keywords": [
  9525. "promise",
  9526. "promises"
  9527. ],
  9528. "support": {
  9529. "issues": "https://github.com/reactphp/promise/issues",
  9530. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9531. },
  9532. "funding": [
  9533. {
  9534. "url": "https://opencollective.com/reactphp",
  9535. "type": "open_collective"
  9536. }
  9537. ],
  9538. "time": "2024-05-24T10:39:05+00:00"
  9539. },
  9540. {
  9541. "name": "react/socket",
  9542. "version": "v1.16.0",
  9543. "source": {
  9544. "type": "git",
  9545. "url": "https://github.com/reactphp/socket.git",
  9546. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9547. },
  9548. "dist": {
  9549. "type": "zip",
  9550. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9551. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9552. "shasum": ""
  9553. },
  9554. "require": {
  9555. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9556. "php": ">=5.3.0",
  9557. "react/dns": "^1.13",
  9558. "react/event-loop": "^1.2",
  9559. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9560. "react/stream": "^1.4"
  9561. },
  9562. "require-dev": {
  9563. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9564. "react/async": "^4.3 || ^3.3 || ^2",
  9565. "react/promise-stream": "^1.4",
  9566. "react/promise-timer": "^1.11"
  9567. },
  9568. "type": "library",
  9569. "autoload": {
  9570. "psr-4": {
  9571. "React\\Socket\\": "src/"
  9572. }
  9573. },
  9574. "notification-url": "https://packagist.org/downloads/",
  9575. "license": [
  9576. "MIT"
  9577. ],
  9578. "authors": [
  9579. {
  9580. "name": "Christian Lück",
  9581. "email": "christian@clue.engineering",
  9582. "homepage": "https://clue.engineering/"
  9583. },
  9584. {
  9585. "name": "Cees-Jan Kiewiet",
  9586. "email": "reactphp@ceesjankiewiet.nl",
  9587. "homepage": "https://wyrihaximus.net/"
  9588. },
  9589. {
  9590. "name": "Jan Sorgalla",
  9591. "email": "jsorgalla@gmail.com",
  9592. "homepage": "https://sorgalla.com/"
  9593. },
  9594. {
  9595. "name": "Chris Boden",
  9596. "email": "cboden@gmail.com",
  9597. "homepage": "https://cboden.dev/"
  9598. }
  9599. ],
  9600. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9601. "keywords": [
  9602. "Connection",
  9603. "Socket",
  9604. "async",
  9605. "reactphp",
  9606. "stream"
  9607. ],
  9608. "support": {
  9609. "issues": "https://github.com/reactphp/socket/issues",
  9610. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9611. },
  9612. "funding": [
  9613. {
  9614. "url": "https://opencollective.com/reactphp",
  9615. "type": "open_collective"
  9616. }
  9617. ],
  9618. "time": "2024-07-26T10:38:09+00:00"
  9619. },
  9620. {
  9621. "name": "react/stream",
  9622. "version": "v1.4.0",
  9623. "source": {
  9624. "type": "git",
  9625. "url": "https://github.com/reactphp/stream.git",
  9626. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9627. },
  9628. "dist": {
  9629. "type": "zip",
  9630. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9631. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9632. "shasum": ""
  9633. },
  9634. "require": {
  9635. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9636. "php": ">=5.3.8",
  9637. "react/event-loop": "^1.2"
  9638. },
  9639. "require-dev": {
  9640. "clue/stream-filter": "~1.2",
  9641. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9642. },
  9643. "type": "library",
  9644. "autoload": {
  9645. "psr-4": {
  9646. "React\\Stream\\": "src/"
  9647. }
  9648. },
  9649. "notification-url": "https://packagist.org/downloads/",
  9650. "license": [
  9651. "MIT"
  9652. ],
  9653. "authors": [
  9654. {
  9655. "name": "Christian Lück",
  9656. "email": "christian@clue.engineering",
  9657. "homepage": "https://clue.engineering/"
  9658. },
  9659. {
  9660. "name": "Cees-Jan Kiewiet",
  9661. "email": "reactphp@ceesjankiewiet.nl",
  9662. "homepage": "https://wyrihaximus.net/"
  9663. },
  9664. {
  9665. "name": "Jan Sorgalla",
  9666. "email": "jsorgalla@gmail.com",
  9667. "homepage": "https://sorgalla.com/"
  9668. },
  9669. {
  9670. "name": "Chris Boden",
  9671. "email": "cboden@gmail.com",
  9672. "homepage": "https://cboden.dev/"
  9673. }
  9674. ],
  9675. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9676. "keywords": [
  9677. "event-driven",
  9678. "io",
  9679. "non-blocking",
  9680. "pipe",
  9681. "reactphp",
  9682. "readable",
  9683. "stream",
  9684. "writable"
  9685. ],
  9686. "support": {
  9687. "issues": "https://github.com/reactphp/stream/issues",
  9688. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9689. },
  9690. "funding": [
  9691. {
  9692. "url": "https://opencollective.com/reactphp",
  9693. "type": "open_collective"
  9694. }
  9695. ],
  9696. "time": "2024-06-11T12:45:25+00:00"
  9697. },
  9698. {
  9699. "name": "sebastian/cli-parser",
  9700. "version": "2.0.1",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9704. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9709. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": ">=8.1"
  9714. },
  9715. "require-dev": {
  9716. "phpunit/phpunit": "^10.0"
  9717. },
  9718. "type": "library",
  9719. "extra": {
  9720. "branch-alias": {
  9721. "dev-main": "2.0-dev"
  9722. }
  9723. },
  9724. "autoload": {
  9725. "classmap": [
  9726. "src/"
  9727. ]
  9728. },
  9729. "notification-url": "https://packagist.org/downloads/",
  9730. "license": [
  9731. "BSD-3-Clause"
  9732. ],
  9733. "authors": [
  9734. {
  9735. "name": "Sebastian Bergmann",
  9736. "email": "sebastian@phpunit.de",
  9737. "role": "lead"
  9738. }
  9739. ],
  9740. "description": "Library for parsing CLI options",
  9741. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9742. "support": {
  9743. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9744. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9745. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9746. },
  9747. "funding": [
  9748. {
  9749. "url": "https://github.com/sebastianbergmann",
  9750. "type": "github"
  9751. }
  9752. ],
  9753. "time": "2024-03-02T07:12:49+00:00"
  9754. },
  9755. {
  9756. "name": "sebastian/code-unit",
  9757. "version": "2.0.0",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9761. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9766. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9767. "shasum": ""
  9768. },
  9769. "require": {
  9770. "php": ">=8.1"
  9771. },
  9772. "require-dev": {
  9773. "phpunit/phpunit": "^10.0"
  9774. },
  9775. "type": "library",
  9776. "extra": {
  9777. "branch-alias": {
  9778. "dev-main": "2.0-dev"
  9779. }
  9780. },
  9781. "autoload": {
  9782. "classmap": [
  9783. "src/"
  9784. ]
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "BSD-3-Clause"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Sebastian Bergmann",
  9793. "email": "sebastian@phpunit.de",
  9794. "role": "lead"
  9795. }
  9796. ],
  9797. "description": "Collection of value objects that represent the PHP code units",
  9798. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9799. "support": {
  9800. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9801. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9802. },
  9803. "funding": [
  9804. {
  9805. "url": "https://github.com/sebastianbergmann",
  9806. "type": "github"
  9807. }
  9808. ],
  9809. "time": "2023-02-03T06:58:43+00:00"
  9810. },
  9811. {
  9812. "name": "sebastian/code-unit-reverse-lookup",
  9813. "version": "3.0.0",
  9814. "source": {
  9815. "type": "git",
  9816. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9817. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9818. },
  9819. "dist": {
  9820. "type": "zip",
  9821. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9822. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9823. "shasum": ""
  9824. },
  9825. "require": {
  9826. "php": ">=8.1"
  9827. },
  9828. "require-dev": {
  9829. "phpunit/phpunit": "^10.0"
  9830. },
  9831. "type": "library",
  9832. "extra": {
  9833. "branch-alias": {
  9834. "dev-main": "3.0-dev"
  9835. }
  9836. },
  9837. "autoload": {
  9838. "classmap": [
  9839. "src/"
  9840. ]
  9841. },
  9842. "notification-url": "https://packagist.org/downloads/",
  9843. "license": [
  9844. "BSD-3-Clause"
  9845. ],
  9846. "authors": [
  9847. {
  9848. "name": "Sebastian Bergmann",
  9849. "email": "sebastian@phpunit.de"
  9850. }
  9851. ],
  9852. "description": "Looks up which function or method a line of code belongs to",
  9853. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9854. "support": {
  9855. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9856. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9857. },
  9858. "funding": [
  9859. {
  9860. "url": "https://github.com/sebastianbergmann",
  9861. "type": "github"
  9862. }
  9863. ],
  9864. "time": "2023-02-03T06:59:15+00:00"
  9865. },
  9866. {
  9867. "name": "sebastian/comparator",
  9868. "version": "5.0.3",
  9869. "source": {
  9870. "type": "git",
  9871. "url": "https://github.com/sebastianbergmann/comparator.git",
  9872. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9873. },
  9874. "dist": {
  9875. "type": "zip",
  9876. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9877. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9878. "shasum": ""
  9879. },
  9880. "require": {
  9881. "ext-dom": "*",
  9882. "ext-mbstring": "*",
  9883. "php": ">=8.1",
  9884. "sebastian/diff": "^5.0",
  9885. "sebastian/exporter": "^5.0"
  9886. },
  9887. "require-dev": {
  9888. "phpunit/phpunit": "^10.5"
  9889. },
  9890. "type": "library",
  9891. "extra": {
  9892. "branch-alias": {
  9893. "dev-main": "5.0-dev"
  9894. }
  9895. },
  9896. "autoload": {
  9897. "classmap": [
  9898. "src/"
  9899. ]
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "BSD-3-Clause"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Sebastian Bergmann",
  9908. "email": "sebastian@phpunit.de"
  9909. },
  9910. {
  9911. "name": "Jeff Welch",
  9912. "email": "whatthejeff@gmail.com"
  9913. },
  9914. {
  9915. "name": "Volker Dusch",
  9916. "email": "github@wallbash.com"
  9917. },
  9918. {
  9919. "name": "Bernhard Schussek",
  9920. "email": "bschussek@2bepublished.at"
  9921. }
  9922. ],
  9923. "description": "Provides the functionality to compare PHP values for equality",
  9924. "homepage": "https://github.com/sebastianbergmann/comparator",
  9925. "keywords": [
  9926. "comparator",
  9927. "compare",
  9928. "equality"
  9929. ],
  9930. "support": {
  9931. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9932. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9933. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9934. },
  9935. "funding": [
  9936. {
  9937. "url": "https://github.com/sebastianbergmann",
  9938. "type": "github"
  9939. }
  9940. ],
  9941. "time": "2024-10-18T14:56:07+00:00"
  9942. },
  9943. {
  9944. "name": "sebastian/complexity",
  9945. "version": "3.2.0",
  9946. "source": {
  9947. "type": "git",
  9948. "url": "https://github.com/sebastianbergmann/complexity.git",
  9949. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9950. },
  9951. "dist": {
  9952. "type": "zip",
  9953. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9954. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9955. "shasum": ""
  9956. },
  9957. "require": {
  9958. "nikic/php-parser": "^4.18 || ^5.0",
  9959. "php": ">=8.1"
  9960. },
  9961. "require-dev": {
  9962. "phpunit/phpunit": "^10.0"
  9963. },
  9964. "type": "library",
  9965. "extra": {
  9966. "branch-alias": {
  9967. "dev-main": "3.2-dev"
  9968. }
  9969. },
  9970. "autoload": {
  9971. "classmap": [
  9972. "src/"
  9973. ]
  9974. },
  9975. "notification-url": "https://packagist.org/downloads/",
  9976. "license": [
  9977. "BSD-3-Clause"
  9978. ],
  9979. "authors": [
  9980. {
  9981. "name": "Sebastian Bergmann",
  9982. "email": "sebastian@phpunit.de",
  9983. "role": "lead"
  9984. }
  9985. ],
  9986. "description": "Library for calculating the complexity of PHP code units",
  9987. "homepage": "https://github.com/sebastianbergmann/complexity",
  9988. "support": {
  9989. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9990. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9991. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9992. },
  9993. "funding": [
  9994. {
  9995. "url": "https://github.com/sebastianbergmann",
  9996. "type": "github"
  9997. }
  9998. ],
  9999. "time": "2023-12-21T08:37:17+00:00"
  10000. },
  10001. {
  10002. "name": "sebastian/diff",
  10003. "version": "5.1.1",
  10004. "source": {
  10005. "type": "git",
  10006. "url": "https://github.com/sebastianbergmann/diff.git",
  10007. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10008. },
  10009. "dist": {
  10010. "type": "zip",
  10011. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10012. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10013. "shasum": ""
  10014. },
  10015. "require": {
  10016. "php": ">=8.1"
  10017. },
  10018. "require-dev": {
  10019. "phpunit/phpunit": "^10.0",
  10020. "symfony/process": "^6.4"
  10021. },
  10022. "type": "library",
  10023. "extra": {
  10024. "branch-alias": {
  10025. "dev-main": "5.1-dev"
  10026. }
  10027. },
  10028. "autoload": {
  10029. "classmap": [
  10030. "src/"
  10031. ]
  10032. },
  10033. "notification-url": "https://packagist.org/downloads/",
  10034. "license": [
  10035. "BSD-3-Clause"
  10036. ],
  10037. "authors": [
  10038. {
  10039. "name": "Sebastian Bergmann",
  10040. "email": "sebastian@phpunit.de"
  10041. },
  10042. {
  10043. "name": "Kore Nordmann",
  10044. "email": "mail@kore-nordmann.de"
  10045. }
  10046. ],
  10047. "description": "Diff implementation",
  10048. "homepage": "https://github.com/sebastianbergmann/diff",
  10049. "keywords": [
  10050. "diff",
  10051. "udiff",
  10052. "unidiff",
  10053. "unified diff"
  10054. ],
  10055. "support": {
  10056. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10057. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10058. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10059. },
  10060. "funding": [
  10061. {
  10062. "url": "https://github.com/sebastianbergmann",
  10063. "type": "github"
  10064. }
  10065. ],
  10066. "time": "2024-03-02T07:15:17+00:00"
  10067. },
  10068. {
  10069. "name": "sebastian/environment",
  10070. "version": "6.1.0",
  10071. "source": {
  10072. "type": "git",
  10073. "url": "https://github.com/sebastianbergmann/environment.git",
  10074. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10075. },
  10076. "dist": {
  10077. "type": "zip",
  10078. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10079. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10080. "shasum": ""
  10081. },
  10082. "require": {
  10083. "php": ">=8.1"
  10084. },
  10085. "require-dev": {
  10086. "phpunit/phpunit": "^10.0"
  10087. },
  10088. "suggest": {
  10089. "ext-posix": "*"
  10090. },
  10091. "type": "library",
  10092. "extra": {
  10093. "branch-alias": {
  10094. "dev-main": "6.1-dev"
  10095. }
  10096. },
  10097. "autoload": {
  10098. "classmap": [
  10099. "src/"
  10100. ]
  10101. },
  10102. "notification-url": "https://packagist.org/downloads/",
  10103. "license": [
  10104. "BSD-3-Clause"
  10105. ],
  10106. "authors": [
  10107. {
  10108. "name": "Sebastian Bergmann",
  10109. "email": "sebastian@phpunit.de"
  10110. }
  10111. ],
  10112. "description": "Provides functionality to handle HHVM/PHP environments",
  10113. "homepage": "https://github.com/sebastianbergmann/environment",
  10114. "keywords": [
  10115. "Xdebug",
  10116. "environment",
  10117. "hhvm"
  10118. ],
  10119. "support": {
  10120. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10121. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10122. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10123. },
  10124. "funding": [
  10125. {
  10126. "url": "https://github.com/sebastianbergmann",
  10127. "type": "github"
  10128. }
  10129. ],
  10130. "time": "2024-03-23T08:47:14+00:00"
  10131. },
  10132. {
  10133. "name": "sebastian/exporter",
  10134. "version": "5.1.2",
  10135. "source": {
  10136. "type": "git",
  10137. "url": "https://github.com/sebastianbergmann/exporter.git",
  10138. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10139. },
  10140. "dist": {
  10141. "type": "zip",
  10142. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10143. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10144. "shasum": ""
  10145. },
  10146. "require": {
  10147. "ext-mbstring": "*",
  10148. "php": ">=8.1",
  10149. "sebastian/recursion-context": "^5.0"
  10150. },
  10151. "require-dev": {
  10152. "phpunit/phpunit": "^10.0"
  10153. },
  10154. "type": "library",
  10155. "extra": {
  10156. "branch-alias": {
  10157. "dev-main": "5.1-dev"
  10158. }
  10159. },
  10160. "autoload": {
  10161. "classmap": [
  10162. "src/"
  10163. ]
  10164. },
  10165. "notification-url": "https://packagist.org/downloads/",
  10166. "license": [
  10167. "BSD-3-Clause"
  10168. ],
  10169. "authors": [
  10170. {
  10171. "name": "Sebastian Bergmann",
  10172. "email": "sebastian@phpunit.de"
  10173. },
  10174. {
  10175. "name": "Jeff Welch",
  10176. "email": "whatthejeff@gmail.com"
  10177. },
  10178. {
  10179. "name": "Volker Dusch",
  10180. "email": "github@wallbash.com"
  10181. },
  10182. {
  10183. "name": "Adam Harvey",
  10184. "email": "aharvey@php.net"
  10185. },
  10186. {
  10187. "name": "Bernhard Schussek",
  10188. "email": "bschussek@gmail.com"
  10189. }
  10190. ],
  10191. "description": "Provides the functionality to export PHP variables for visualization",
  10192. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10193. "keywords": [
  10194. "export",
  10195. "exporter"
  10196. ],
  10197. "support": {
  10198. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10199. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10200. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10201. },
  10202. "funding": [
  10203. {
  10204. "url": "https://github.com/sebastianbergmann",
  10205. "type": "github"
  10206. }
  10207. ],
  10208. "time": "2024-03-02T07:17:12+00:00"
  10209. },
  10210. {
  10211. "name": "sebastian/global-state",
  10212. "version": "6.0.2",
  10213. "source": {
  10214. "type": "git",
  10215. "url": "https://github.com/sebastianbergmann/global-state.git",
  10216. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10217. },
  10218. "dist": {
  10219. "type": "zip",
  10220. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10221. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10222. "shasum": ""
  10223. },
  10224. "require": {
  10225. "php": ">=8.1",
  10226. "sebastian/object-reflector": "^3.0",
  10227. "sebastian/recursion-context": "^5.0"
  10228. },
  10229. "require-dev": {
  10230. "ext-dom": "*",
  10231. "phpunit/phpunit": "^10.0"
  10232. },
  10233. "type": "library",
  10234. "extra": {
  10235. "branch-alias": {
  10236. "dev-main": "6.0-dev"
  10237. }
  10238. },
  10239. "autoload": {
  10240. "classmap": [
  10241. "src/"
  10242. ]
  10243. },
  10244. "notification-url": "https://packagist.org/downloads/",
  10245. "license": [
  10246. "BSD-3-Clause"
  10247. ],
  10248. "authors": [
  10249. {
  10250. "name": "Sebastian Bergmann",
  10251. "email": "sebastian@phpunit.de"
  10252. }
  10253. ],
  10254. "description": "Snapshotting of global state",
  10255. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10256. "keywords": [
  10257. "global state"
  10258. ],
  10259. "support": {
  10260. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10261. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10262. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10263. },
  10264. "funding": [
  10265. {
  10266. "url": "https://github.com/sebastianbergmann",
  10267. "type": "github"
  10268. }
  10269. ],
  10270. "time": "2024-03-02T07:19:19+00:00"
  10271. },
  10272. {
  10273. "name": "sebastian/lines-of-code",
  10274. "version": "2.0.2",
  10275. "source": {
  10276. "type": "git",
  10277. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10278. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10279. },
  10280. "dist": {
  10281. "type": "zip",
  10282. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10283. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10284. "shasum": ""
  10285. },
  10286. "require": {
  10287. "nikic/php-parser": "^4.18 || ^5.0",
  10288. "php": ">=8.1"
  10289. },
  10290. "require-dev": {
  10291. "phpunit/phpunit": "^10.0"
  10292. },
  10293. "type": "library",
  10294. "extra": {
  10295. "branch-alias": {
  10296. "dev-main": "2.0-dev"
  10297. }
  10298. },
  10299. "autoload": {
  10300. "classmap": [
  10301. "src/"
  10302. ]
  10303. },
  10304. "notification-url": "https://packagist.org/downloads/",
  10305. "license": [
  10306. "BSD-3-Clause"
  10307. ],
  10308. "authors": [
  10309. {
  10310. "name": "Sebastian Bergmann",
  10311. "email": "sebastian@phpunit.de",
  10312. "role": "lead"
  10313. }
  10314. ],
  10315. "description": "Library for counting the lines of code in PHP source code",
  10316. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10317. "support": {
  10318. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10319. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10320. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://github.com/sebastianbergmann",
  10325. "type": "github"
  10326. }
  10327. ],
  10328. "time": "2023-12-21T08:38:20+00:00"
  10329. },
  10330. {
  10331. "name": "sebastian/object-enumerator",
  10332. "version": "5.0.0",
  10333. "source": {
  10334. "type": "git",
  10335. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10336. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10337. },
  10338. "dist": {
  10339. "type": "zip",
  10340. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10341. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10342. "shasum": ""
  10343. },
  10344. "require": {
  10345. "php": ">=8.1",
  10346. "sebastian/object-reflector": "^3.0",
  10347. "sebastian/recursion-context": "^5.0"
  10348. },
  10349. "require-dev": {
  10350. "phpunit/phpunit": "^10.0"
  10351. },
  10352. "type": "library",
  10353. "extra": {
  10354. "branch-alias": {
  10355. "dev-main": "5.0-dev"
  10356. }
  10357. },
  10358. "autoload": {
  10359. "classmap": [
  10360. "src/"
  10361. ]
  10362. },
  10363. "notification-url": "https://packagist.org/downloads/",
  10364. "license": [
  10365. "BSD-3-Clause"
  10366. ],
  10367. "authors": [
  10368. {
  10369. "name": "Sebastian Bergmann",
  10370. "email": "sebastian@phpunit.de"
  10371. }
  10372. ],
  10373. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10374. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10375. "support": {
  10376. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10377. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10378. },
  10379. "funding": [
  10380. {
  10381. "url": "https://github.com/sebastianbergmann",
  10382. "type": "github"
  10383. }
  10384. ],
  10385. "time": "2023-02-03T07:08:32+00:00"
  10386. },
  10387. {
  10388. "name": "sebastian/object-reflector",
  10389. "version": "3.0.0",
  10390. "source": {
  10391. "type": "git",
  10392. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10393. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10394. },
  10395. "dist": {
  10396. "type": "zip",
  10397. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10398. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10399. "shasum": ""
  10400. },
  10401. "require": {
  10402. "php": ">=8.1"
  10403. },
  10404. "require-dev": {
  10405. "phpunit/phpunit": "^10.0"
  10406. },
  10407. "type": "library",
  10408. "extra": {
  10409. "branch-alias": {
  10410. "dev-main": "3.0-dev"
  10411. }
  10412. },
  10413. "autoload": {
  10414. "classmap": [
  10415. "src/"
  10416. ]
  10417. },
  10418. "notification-url": "https://packagist.org/downloads/",
  10419. "license": [
  10420. "BSD-3-Clause"
  10421. ],
  10422. "authors": [
  10423. {
  10424. "name": "Sebastian Bergmann",
  10425. "email": "sebastian@phpunit.de"
  10426. }
  10427. ],
  10428. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10429. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10430. "support": {
  10431. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10432. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10433. },
  10434. "funding": [
  10435. {
  10436. "url": "https://github.com/sebastianbergmann",
  10437. "type": "github"
  10438. }
  10439. ],
  10440. "time": "2023-02-03T07:06:18+00:00"
  10441. },
  10442. {
  10443. "name": "sebastian/recursion-context",
  10444. "version": "5.0.0",
  10445. "source": {
  10446. "type": "git",
  10447. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10448. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10449. },
  10450. "dist": {
  10451. "type": "zip",
  10452. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10453. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10454. "shasum": ""
  10455. },
  10456. "require": {
  10457. "php": ">=8.1"
  10458. },
  10459. "require-dev": {
  10460. "phpunit/phpunit": "^10.0"
  10461. },
  10462. "type": "library",
  10463. "extra": {
  10464. "branch-alias": {
  10465. "dev-main": "5.0-dev"
  10466. }
  10467. },
  10468. "autoload": {
  10469. "classmap": [
  10470. "src/"
  10471. ]
  10472. },
  10473. "notification-url": "https://packagist.org/downloads/",
  10474. "license": [
  10475. "BSD-3-Clause"
  10476. ],
  10477. "authors": [
  10478. {
  10479. "name": "Sebastian Bergmann",
  10480. "email": "sebastian@phpunit.de"
  10481. },
  10482. {
  10483. "name": "Jeff Welch",
  10484. "email": "whatthejeff@gmail.com"
  10485. },
  10486. {
  10487. "name": "Adam Harvey",
  10488. "email": "aharvey@php.net"
  10489. }
  10490. ],
  10491. "description": "Provides functionality to recursively process PHP variables",
  10492. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10493. "support": {
  10494. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10495. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10496. },
  10497. "funding": [
  10498. {
  10499. "url": "https://github.com/sebastianbergmann",
  10500. "type": "github"
  10501. }
  10502. ],
  10503. "time": "2023-02-03T07:05:40+00:00"
  10504. },
  10505. {
  10506. "name": "sebastian/type",
  10507. "version": "4.0.0",
  10508. "source": {
  10509. "type": "git",
  10510. "url": "https://github.com/sebastianbergmann/type.git",
  10511. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10512. },
  10513. "dist": {
  10514. "type": "zip",
  10515. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10516. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10517. "shasum": ""
  10518. },
  10519. "require": {
  10520. "php": ">=8.1"
  10521. },
  10522. "require-dev": {
  10523. "phpunit/phpunit": "^10.0"
  10524. },
  10525. "type": "library",
  10526. "extra": {
  10527. "branch-alias": {
  10528. "dev-main": "4.0-dev"
  10529. }
  10530. },
  10531. "autoload": {
  10532. "classmap": [
  10533. "src/"
  10534. ]
  10535. },
  10536. "notification-url": "https://packagist.org/downloads/",
  10537. "license": [
  10538. "BSD-3-Clause"
  10539. ],
  10540. "authors": [
  10541. {
  10542. "name": "Sebastian Bergmann",
  10543. "email": "sebastian@phpunit.de",
  10544. "role": "lead"
  10545. }
  10546. ],
  10547. "description": "Collection of value objects that represent the types of the PHP type system",
  10548. "homepage": "https://github.com/sebastianbergmann/type",
  10549. "support": {
  10550. "issues": "https://github.com/sebastianbergmann/type/issues",
  10551. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10552. },
  10553. "funding": [
  10554. {
  10555. "url": "https://github.com/sebastianbergmann",
  10556. "type": "github"
  10557. }
  10558. ],
  10559. "time": "2023-02-03T07:10:45+00:00"
  10560. },
  10561. {
  10562. "name": "sebastian/version",
  10563. "version": "4.0.1",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/sebastianbergmann/version.git",
  10567. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10572. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10573. "shasum": ""
  10574. },
  10575. "require": {
  10576. "php": ">=8.1"
  10577. },
  10578. "type": "library",
  10579. "extra": {
  10580. "branch-alias": {
  10581. "dev-main": "4.0-dev"
  10582. }
  10583. },
  10584. "autoload": {
  10585. "classmap": [
  10586. "src/"
  10587. ]
  10588. },
  10589. "notification-url": "https://packagist.org/downloads/",
  10590. "license": [
  10591. "BSD-3-Clause"
  10592. ],
  10593. "authors": [
  10594. {
  10595. "name": "Sebastian Bergmann",
  10596. "email": "sebastian@phpunit.de",
  10597. "role": "lead"
  10598. }
  10599. ],
  10600. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10601. "homepage": "https://github.com/sebastianbergmann/version",
  10602. "support": {
  10603. "issues": "https://github.com/sebastianbergmann/version/issues",
  10604. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10605. },
  10606. "funding": [
  10607. {
  10608. "url": "https://github.com/sebastianbergmann",
  10609. "type": "github"
  10610. }
  10611. ],
  10612. "time": "2023-02-07T11:34:05+00:00"
  10613. },
  10614. {
  10615. "name": "swoole/ide-helper",
  10616. "version": "5.1.6",
  10617. "source": {
  10618. "type": "git",
  10619. "url": "https://github.com/swoole/ide-helper.git",
  10620. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  10621. },
  10622. "dist": {
  10623. "type": "zip",
  10624. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10625. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10626. "shasum": ""
  10627. },
  10628. "type": "library",
  10629. "notification-url": "https://packagist.org/downloads/",
  10630. "license": [
  10631. "Apache-2.0"
  10632. ],
  10633. "authors": [
  10634. {
  10635. "name": "Team Swoole",
  10636. "email": "team@swoole.com"
  10637. }
  10638. ],
  10639. "description": "IDE help files for Swoole.",
  10640. "support": {
  10641. "issues": "https://github.com/swoole/ide-helper/issues",
  10642. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  10643. },
  10644. "time": "2024-11-29T07:21:36+00:00"
  10645. },
  10646. {
  10647. "name": "symfony/event-dispatcher",
  10648. "version": "v6.4.13",
  10649. "source": {
  10650. "type": "git",
  10651. "url": "https://github.com/symfony/event-dispatcher.git",
  10652. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10653. },
  10654. "dist": {
  10655. "type": "zip",
  10656. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10657. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10658. "shasum": ""
  10659. },
  10660. "require": {
  10661. "php": ">=8.1",
  10662. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10663. },
  10664. "conflict": {
  10665. "symfony/dependency-injection": "<5.4",
  10666. "symfony/service-contracts": "<2.5"
  10667. },
  10668. "provide": {
  10669. "psr/event-dispatcher-implementation": "1.0",
  10670. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10671. },
  10672. "require-dev": {
  10673. "psr/log": "^1|^2|^3",
  10674. "symfony/config": "^5.4|^6.0|^7.0",
  10675. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10676. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10677. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10678. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10679. "symfony/service-contracts": "^2.5|^3",
  10680. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10681. },
  10682. "type": "library",
  10683. "autoload": {
  10684. "psr-4": {
  10685. "Symfony\\Component\\EventDispatcher\\": ""
  10686. },
  10687. "exclude-from-classmap": [
  10688. "/Tests/"
  10689. ]
  10690. },
  10691. "notification-url": "https://packagist.org/downloads/",
  10692. "license": [
  10693. "MIT"
  10694. ],
  10695. "authors": [
  10696. {
  10697. "name": "Fabien Potencier",
  10698. "email": "fabien@symfony.com"
  10699. },
  10700. {
  10701. "name": "Symfony Community",
  10702. "homepage": "https://symfony.com/contributors"
  10703. }
  10704. ],
  10705. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10706. "homepage": "https://symfony.com",
  10707. "support": {
  10708. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10709. },
  10710. "funding": [
  10711. {
  10712. "url": "https://symfony.com/sponsor",
  10713. "type": "custom"
  10714. },
  10715. {
  10716. "url": "https://github.com/fabpot",
  10717. "type": "github"
  10718. },
  10719. {
  10720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10721. "type": "tidelift"
  10722. }
  10723. ],
  10724. "time": "2024-09-25T14:18:03+00:00"
  10725. },
  10726. {
  10727. "name": "symfony/event-dispatcher-contracts",
  10728. "version": "v3.5.1",
  10729. "source": {
  10730. "type": "git",
  10731. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10732. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  10733. },
  10734. "dist": {
  10735. "type": "zip",
  10736. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10737. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10738. "shasum": ""
  10739. },
  10740. "require": {
  10741. "php": ">=8.1",
  10742. "psr/event-dispatcher": "^1"
  10743. },
  10744. "type": "library",
  10745. "extra": {
  10746. "branch-alias": {
  10747. "dev-main": "3.5-dev"
  10748. },
  10749. "thanks": {
  10750. "name": "symfony/contracts",
  10751. "url": "https://github.com/symfony/contracts"
  10752. }
  10753. },
  10754. "autoload": {
  10755. "psr-4": {
  10756. "Symfony\\Contracts\\EventDispatcher\\": ""
  10757. }
  10758. },
  10759. "notification-url": "https://packagist.org/downloads/",
  10760. "license": [
  10761. "MIT"
  10762. ],
  10763. "authors": [
  10764. {
  10765. "name": "Nicolas Grekas",
  10766. "email": "p@tchwork.com"
  10767. },
  10768. {
  10769. "name": "Symfony Community",
  10770. "homepage": "https://symfony.com/contributors"
  10771. }
  10772. ],
  10773. "description": "Generic abstractions related to dispatching event",
  10774. "homepage": "https://symfony.com",
  10775. "keywords": [
  10776. "abstractions",
  10777. "contracts",
  10778. "decoupling",
  10779. "interfaces",
  10780. "interoperability",
  10781. "standards"
  10782. ],
  10783. "support": {
  10784. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  10785. },
  10786. "funding": [
  10787. {
  10788. "url": "https://symfony.com/sponsor",
  10789. "type": "custom"
  10790. },
  10791. {
  10792. "url": "https://github.com/fabpot",
  10793. "type": "github"
  10794. },
  10795. {
  10796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10797. "type": "tidelift"
  10798. }
  10799. ],
  10800. "time": "2024-09-25T14:20:29+00:00"
  10801. },
  10802. {
  10803. "name": "symfony/filesystem",
  10804. "version": "v6.4.13",
  10805. "source": {
  10806. "type": "git",
  10807. "url": "https://github.com/symfony/filesystem.git",
  10808. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  10809. },
  10810. "dist": {
  10811. "type": "zip",
  10812. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10813. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10814. "shasum": ""
  10815. },
  10816. "require": {
  10817. "php": ">=8.1",
  10818. "symfony/polyfill-ctype": "~1.8",
  10819. "symfony/polyfill-mbstring": "~1.8"
  10820. },
  10821. "require-dev": {
  10822. "symfony/process": "^5.4|^6.4|^7.0"
  10823. },
  10824. "type": "library",
  10825. "autoload": {
  10826. "psr-4": {
  10827. "Symfony\\Component\\Filesystem\\": ""
  10828. },
  10829. "exclude-from-classmap": [
  10830. "/Tests/"
  10831. ]
  10832. },
  10833. "notification-url": "https://packagist.org/downloads/",
  10834. "license": [
  10835. "MIT"
  10836. ],
  10837. "authors": [
  10838. {
  10839. "name": "Fabien Potencier",
  10840. "email": "fabien@symfony.com"
  10841. },
  10842. {
  10843. "name": "Symfony Community",
  10844. "homepage": "https://symfony.com/contributors"
  10845. }
  10846. ],
  10847. "description": "Provides basic utilities for the filesystem",
  10848. "homepage": "https://symfony.com",
  10849. "support": {
  10850. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  10851. },
  10852. "funding": [
  10853. {
  10854. "url": "https://symfony.com/sponsor",
  10855. "type": "custom"
  10856. },
  10857. {
  10858. "url": "https://github.com/fabpot",
  10859. "type": "github"
  10860. },
  10861. {
  10862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10863. "type": "tidelift"
  10864. }
  10865. ],
  10866. "time": "2024-10-25T15:07:50+00:00"
  10867. },
  10868. {
  10869. "name": "symfony/http-foundation",
  10870. "version": "v6.4.16",
  10871. "source": {
  10872. "type": "git",
  10873. "url": "https://github.com/symfony/http-foundation.git",
  10874. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  10875. },
  10876. "dist": {
  10877. "type": "zip",
  10878. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10879. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10880. "shasum": ""
  10881. },
  10882. "require": {
  10883. "php": ">=8.1",
  10884. "symfony/deprecation-contracts": "^2.5|^3",
  10885. "symfony/polyfill-mbstring": "~1.1",
  10886. "symfony/polyfill-php83": "^1.27"
  10887. },
  10888. "conflict": {
  10889. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10890. },
  10891. "require-dev": {
  10892. "doctrine/dbal": "^2.13.1|^3|^4",
  10893. "predis/predis": "^1.1|^2.0",
  10894. "symfony/cache": "^6.4.12|^7.1.5",
  10895. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10896. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10897. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10898. "symfony/mime": "^5.4|^6.0|^7.0",
  10899. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10900. },
  10901. "type": "library",
  10902. "autoload": {
  10903. "psr-4": {
  10904. "Symfony\\Component\\HttpFoundation\\": ""
  10905. },
  10906. "exclude-from-classmap": [
  10907. "/Tests/"
  10908. ]
  10909. },
  10910. "notification-url": "https://packagist.org/downloads/",
  10911. "license": [
  10912. "MIT"
  10913. ],
  10914. "authors": [
  10915. {
  10916. "name": "Fabien Potencier",
  10917. "email": "fabien@symfony.com"
  10918. },
  10919. {
  10920. "name": "Symfony Community",
  10921. "homepage": "https://symfony.com/contributors"
  10922. }
  10923. ],
  10924. "description": "Defines an object-oriented layer for the HTTP specification",
  10925. "homepage": "https://symfony.com",
  10926. "support": {
  10927. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  10928. },
  10929. "funding": [
  10930. {
  10931. "url": "https://symfony.com/sponsor",
  10932. "type": "custom"
  10933. },
  10934. {
  10935. "url": "https://github.com/fabpot",
  10936. "type": "github"
  10937. },
  10938. {
  10939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10940. "type": "tidelift"
  10941. }
  10942. ],
  10943. "time": "2024-11-13T18:58:10+00:00"
  10944. },
  10945. {
  10946. "name": "symfony/options-resolver",
  10947. "version": "v6.4.16",
  10948. "source": {
  10949. "type": "git",
  10950. "url": "https://github.com/symfony/options-resolver.git",
  10951. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  10952. },
  10953. "dist": {
  10954. "type": "zip",
  10955. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  10956. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  10957. "shasum": ""
  10958. },
  10959. "require": {
  10960. "php": ">=8.1",
  10961. "symfony/deprecation-contracts": "^2.5|^3"
  10962. },
  10963. "type": "library",
  10964. "autoload": {
  10965. "psr-4": {
  10966. "Symfony\\Component\\OptionsResolver\\": ""
  10967. },
  10968. "exclude-from-classmap": [
  10969. "/Tests/"
  10970. ]
  10971. },
  10972. "notification-url": "https://packagist.org/downloads/",
  10973. "license": [
  10974. "MIT"
  10975. ],
  10976. "authors": [
  10977. {
  10978. "name": "Fabien Potencier",
  10979. "email": "fabien@symfony.com"
  10980. },
  10981. {
  10982. "name": "Symfony Community",
  10983. "homepage": "https://symfony.com/contributors"
  10984. }
  10985. ],
  10986. "description": "Provides an improved replacement for the array_replace PHP function",
  10987. "homepage": "https://symfony.com",
  10988. "keywords": [
  10989. "config",
  10990. "configuration",
  10991. "options"
  10992. ],
  10993. "support": {
  10994. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  10995. },
  10996. "funding": [
  10997. {
  10998. "url": "https://symfony.com/sponsor",
  10999. "type": "custom"
  11000. },
  11001. {
  11002. "url": "https://github.com/fabpot",
  11003. "type": "github"
  11004. },
  11005. {
  11006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11007. "type": "tidelift"
  11008. }
  11009. ],
  11010. "time": "2024-11-20T10:57:02+00:00"
  11011. },
  11012. {
  11013. "name": "symfony/polyfill-php81",
  11014. "version": "v1.31.0",
  11015. "source": {
  11016. "type": "git",
  11017. "url": "https://github.com/symfony/polyfill-php81.git",
  11018. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11019. },
  11020. "dist": {
  11021. "type": "zip",
  11022. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11023. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11024. "shasum": ""
  11025. },
  11026. "require": {
  11027. "php": ">=7.2"
  11028. },
  11029. "type": "library",
  11030. "extra": {
  11031. "thanks": {
  11032. "url": "https://github.com/symfony/polyfill",
  11033. "name": "symfony/polyfill"
  11034. }
  11035. },
  11036. "autoload": {
  11037. "files": [
  11038. "bootstrap.php"
  11039. ],
  11040. "psr-4": {
  11041. "Symfony\\Polyfill\\Php81\\": ""
  11042. },
  11043. "classmap": [
  11044. "Resources/stubs"
  11045. ]
  11046. },
  11047. "notification-url": "https://packagist.org/downloads/",
  11048. "license": [
  11049. "MIT"
  11050. ],
  11051. "authors": [
  11052. {
  11053. "name": "Nicolas Grekas",
  11054. "email": "p@tchwork.com"
  11055. },
  11056. {
  11057. "name": "Symfony Community",
  11058. "homepage": "https://symfony.com/contributors"
  11059. }
  11060. ],
  11061. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11062. "homepage": "https://symfony.com",
  11063. "keywords": [
  11064. "compatibility",
  11065. "polyfill",
  11066. "portable",
  11067. "shim"
  11068. ],
  11069. "support": {
  11070. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11071. },
  11072. "funding": [
  11073. {
  11074. "url": "https://symfony.com/sponsor",
  11075. "type": "custom"
  11076. },
  11077. {
  11078. "url": "https://github.com/fabpot",
  11079. "type": "github"
  11080. },
  11081. {
  11082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11083. "type": "tidelift"
  11084. }
  11085. ],
  11086. "time": "2024-09-09T11:45:10+00:00"
  11087. },
  11088. {
  11089. "name": "symfony/polyfill-php83",
  11090. "version": "v1.31.0",
  11091. "source": {
  11092. "type": "git",
  11093. "url": "https://github.com/symfony/polyfill-php83.git",
  11094. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11095. },
  11096. "dist": {
  11097. "type": "zip",
  11098. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11099. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11100. "shasum": ""
  11101. },
  11102. "require": {
  11103. "php": ">=7.2"
  11104. },
  11105. "type": "library",
  11106. "extra": {
  11107. "thanks": {
  11108. "url": "https://github.com/symfony/polyfill",
  11109. "name": "symfony/polyfill"
  11110. }
  11111. },
  11112. "autoload": {
  11113. "files": [
  11114. "bootstrap.php"
  11115. ],
  11116. "psr-4": {
  11117. "Symfony\\Polyfill\\Php83\\": ""
  11118. },
  11119. "classmap": [
  11120. "Resources/stubs"
  11121. ]
  11122. },
  11123. "notification-url": "https://packagist.org/downloads/",
  11124. "license": [
  11125. "MIT"
  11126. ],
  11127. "authors": [
  11128. {
  11129. "name": "Nicolas Grekas",
  11130. "email": "p@tchwork.com"
  11131. },
  11132. {
  11133. "name": "Symfony Community",
  11134. "homepage": "https://symfony.com/contributors"
  11135. }
  11136. ],
  11137. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11138. "homepage": "https://symfony.com",
  11139. "keywords": [
  11140. "compatibility",
  11141. "polyfill",
  11142. "portable",
  11143. "shim"
  11144. ],
  11145. "support": {
  11146. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11147. },
  11148. "funding": [
  11149. {
  11150. "url": "https://symfony.com/sponsor",
  11151. "type": "custom"
  11152. },
  11153. {
  11154. "url": "https://github.com/fabpot",
  11155. "type": "github"
  11156. },
  11157. {
  11158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11159. "type": "tidelift"
  11160. }
  11161. ],
  11162. "time": "2024-09-09T11:45:10+00:00"
  11163. },
  11164. {
  11165. "name": "symfony/process",
  11166. "version": "v6.4.15",
  11167. "source": {
  11168. "type": "git",
  11169. "url": "https://github.com/symfony/process.git",
  11170. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11171. },
  11172. "dist": {
  11173. "type": "zip",
  11174. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11175. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11176. "shasum": ""
  11177. },
  11178. "require": {
  11179. "php": ">=8.1"
  11180. },
  11181. "type": "library",
  11182. "autoload": {
  11183. "psr-4": {
  11184. "Symfony\\Component\\Process\\": ""
  11185. },
  11186. "exclude-from-classmap": [
  11187. "/Tests/"
  11188. ]
  11189. },
  11190. "notification-url": "https://packagist.org/downloads/",
  11191. "license": [
  11192. "MIT"
  11193. ],
  11194. "authors": [
  11195. {
  11196. "name": "Fabien Potencier",
  11197. "email": "fabien@symfony.com"
  11198. },
  11199. {
  11200. "name": "Symfony Community",
  11201. "homepage": "https://symfony.com/contributors"
  11202. }
  11203. ],
  11204. "description": "Executes commands in sub-processes",
  11205. "homepage": "https://symfony.com",
  11206. "support": {
  11207. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11208. },
  11209. "funding": [
  11210. {
  11211. "url": "https://symfony.com/sponsor",
  11212. "type": "custom"
  11213. },
  11214. {
  11215. "url": "https://github.com/fabpot",
  11216. "type": "github"
  11217. },
  11218. {
  11219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11220. "type": "tidelift"
  11221. }
  11222. ],
  11223. "time": "2024-11-06T14:19:14+00:00"
  11224. },
  11225. {
  11226. "name": "symfony/stopwatch",
  11227. "version": "v6.4.13",
  11228. "source": {
  11229. "type": "git",
  11230. "url": "https://github.com/symfony/stopwatch.git",
  11231. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11232. },
  11233. "dist": {
  11234. "type": "zip",
  11235. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11236. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11237. "shasum": ""
  11238. },
  11239. "require": {
  11240. "php": ">=8.1",
  11241. "symfony/service-contracts": "^2.5|^3"
  11242. },
  11243. "type": "library",
  11244. "autoload": {
  11245. "psr-4": {
  11246. "Symfony\\Component\\Stopwatch\\": ""
  11247. },
  11248. "exclude-from-classmap": [
  11249. "/Tests/"
  11250. ]
  11251. },
  11252. "notification-url": "https://packagist.org/downloads/",
  11253. "license": [
  11254. "MIT"
  11255. ],
  11256. "authors": [
  11257. {
  11258. "name": "Fabien Potencier",
  11259. "email": "fabien@symfony.com"
  11260. },
  11261. {
  11262. "name": "Symfony Community",
  11263. "homepage": "https://symfony.com/contributors"
  11264. }
  11265. ],
  11266. "description": "Provides a way to profile code",
  11267. "homepage": "https://symfony.com",
  11268. "support": {
  11269. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11270. },
  11271. "funding": [
  11272. {
  11273. "url": "https://symfony.com/sponsor",
  11274. "type": "custom"
  11275. },
  11276. {
  11277. "url": "https://github.com/fabpot",
  11278. "type": "github"
  11279. },
  11280. {
  11281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11282. "type": "tidelift"
  11283. }
  11284. ],
  11285. "time": "2024-09-25T14:18:03+00:00"
  11286. },
  11287. {
  11288. "name": "theseer/tokenizer",
  11289. "version": "1.2.3",
  11290. "source": {
  11291. "type": "git",
  11292. "url": "https://github.com/theseer/tokenizer.git",
  11293. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11294. },
  11295. "dist": {
  11296. "type": "zip",
  11297. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11298. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11299. "shasum": ""
  11300. },
  11301. "require": {
  11302. "ext-dom": "*",
  11303. "ext-tokenizer": "*",
  11304. "ext-xmlwriter": "*",
  11305. "php": "^7.2 || ^8.0"
  11306. },
  11307. "type": "library",
  11308. "autoload": {
  11309. "classmap": [
  11310. "src/"
  11311. ]
  11312. },
  11313. "notification-url": "https://packagist.org/downloads/",
  11314. "license": [
  11315. "BSD-3-Clause"
  11316. ],
  11317. "authors": [
  11318. {
  11319. "name": "Arne Blankerts",
  11320. "email": "arne@blankerts.de",
  11321. "role": "Developer"
  11322. }
  11323. ],
  11324. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11325. "support": {
  11326. "issues": "https://github.com/theseer/tokenizer/issues",
  11327. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11328. },
  11329. "funding": [
  11330. {
  11331. "url": "https://github.com/theseer",
  11332. "type": "github"
  11333. }
  11334. ],
  11335. "time": "2024-03-03T12:36:25+00:00"
  11336. }
  11337. ],
  11338. "aliases": [],
  11339. "minimum-stability": "dev",
  11340. "stability-flags": {},
  11341. "prefer-stable": true,
  11342. "prefer-lowest": false,
  11343. "platform": {
  11344. "php": ">=8.1"
  11345. },
  11346. "platform-dev": {},
  11347. "plugin-api-version": "2.6.0"
  11348. }