composer.lock 399 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267
  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. <<<<<<< HEAD
  8. "content-hash": "239ee8acadf3c91412a44beeca7f9a96",
  9. =======
  10. "content-hash": "18f0eba83d85f976fd255237eb85f674",
  11. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  12. "packages": [
  13. {
  14. "name": "carbonphp/carbon-doctrine-types",
  15. "version": "3.2.0",
  16. "source": {
  17. "type": "git",
  18. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  19. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  20. },
  21. "dist": {
  22. "type": "zip",
  23. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  24. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  25. "shasum": ""
  26. },
  27. "require": {
  28. "php": "^8.1"
  29. },
  30. "conflict": {
  31. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  32. },
  33. "require-dev": {
  34. "doctrine/dbal": "^4.0.0",
  35. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  36. "phpunit/phpunit": "^10.3"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "KyleKatarn",
  51. "email": "kylekatarnls@gmail.com"
  52. }
  53. ],
  54. "description": "Types to use Carbon in Doctrine",
  55. "keywords": [
  56. "carbon",
  57. "date",
  58. "datetime",
  59. "doctrine",
  60. "time"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  64. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  65. },
  66. "funding": [
  67. {
  68. "url": "https://github.com/kylekatarnls",
  69. "type": "github"
  70. },
  71. {
  72. "url": "https://opencollective.com/Carbon",
  73. "type": "open_collective"
  74. },
  75. {
  76. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  77. "type": "tidelift"
  78. }
  79. ],
  80. "time": "2024-02-09T16:56:22+00:00"
  81. },
  82. {
  83. "name": "doctrine/annotations",
  84. "version": "2.0.2",
  85. "source": {
  86. "type": "git",
  87. "url": "https://github.com/doctrine/annotations.git",
  88. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  89. },
  90. "dist": {
  91. "type": "zip",
  92. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  93. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  94. "shasum": ""
  95. },
  96. "require": {
  97. "doctrine/lexer": "^2 || ^3",
  98. "ext-tokenizer": "*",
  99. "php": "^7.2 || ^8.0",
  100. "psr/cache": "^1 || ^2 || ^3"
  101. },
  102. "require-dev": {
  103. "doctrine/cache": "^2.0",
  104. "doctrine/coding-standard": "^10",
  105. "phpstan/phpstan": "^1.10.28",
  106. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  107. "symfony/cache": "^5.4 || ^6.4 || ^7",
  108. "vimeo/psalm": "^4.30 || ^5.14"
  109. },
  110. "suggest": {
  111. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  112. },
  113. "type": "library",
  114. "autoload": {
  115. "psr-4": {
  116. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  117. }
  118. },
  119. "notification-url": "https://packagist.org/downloads/",
  120. "license": [
  121. "MIT"
  122. ],
  123. "authors": [
  124. {
  125. "name": "Guilherme Blanco",
  126. "email": "guilhermeblanco@gmail.com"
  127. },
  128. {
  129. "name": "Roman Borschel",
  130. "email": "roman@code-factory.org"
  131. },
  132. {
  133. "name": "Benjamin Eberlei",
  134. "email": "kontakt@beberlei.de"
  135. },
  136. {
  137. "name": "Jonathan Wage",
  138. "email": "jonwage@gmail.com"
  139. },
  140. {
  141. "name": "Johannes Schmitt",
  142. "email": "schmittjoh@gmail.com"
  143. }
  144. ],
  145. "description": "Docblock Annotations Parser",
  146. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  147. "keywords": [
  148. "annotations",
  149. "docblock",
  150. "parser"
  151. ],
  152. "support": {
  153. "issues": "https://github.com/doctrine/annotations/issues",
  154. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  155. },
  156. "time": "2024-09-05T10:17:24+00:00"
  157. },
  158. {
  159. "name": "doctrine/inflector",
  160. "version": "2.0.10",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/doctrine/inflector.git",
  164. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  169. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": "^7.2 || ^8.0"
  174. },
  175. "require-dev": {
  176. "doctrine/coding-standard": "^11.0",
  177. "phpstan/phpstan": "^1.8",
  178. "phpstan/phpstan-phpunit": "^1.1",
  179. "phpstan/phpstan-strict-rules": "^1.3",
  180. "phpunit/phpunit": "^8.5 || ^9.5",
  181. "vimeo/psalm": "^4.25 || ^5.4"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Guilherme Blanco",
  196. "email": "guilhermeblanco@gmail.com"
  197. },
  198. {
  199. "name": "Roman Borschel",
  200. "email": "roman@code-factory.org"
  201. },
  202. {
  203. "name": "Benjamin Eberlei",
  204. "email": "kontakt@beberlei.de"
  205. },
  206. {
  207. "name": "Jonathan Wage",
  208. "email": "jonwage@gmail.com"
  209. },
  210. {
  211. "name": "Johannes Schmitt",
  212. "email": "schmittjoh@gmail.com"
  213. }
  214. ],
  215. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  216. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  217. "keywords": [
  218. "inflection",
  219. "inflector",
  220. "lowercase",
  221. "manipulation",
  222. "php",
  223. "plural",
  224. "singular",
  225. "strings",
  226. "uppercase",
  227. "words"
  228. ],
  229. "support": {
  230. "issues": "https://github.com/doctrine/inflector/issues",
  231. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  232. },
  233. "funding": [
  234. {
  235. "url": "https://www.doctrine-project.org/sponsorship.html",
  236. "type": "custom"
  237. },
  238. {
  239. "url": "https://www.patreon.com/phpdoctrine",
  240. "type": "patreon"
  241. },
  242. {
  243. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  244. "type": "tidelift"
  245. }
  246. ],
  247. "time": "2024-02-18T20:23:39+00:00"
  248. },
  249. {
  250. "name": "doctrine/instantiator",
  251. "version": "1.5.0",
  252. "source": {
  253. "type": "git",
  254. "url": "https://github.com/doctrine/instantiator.git",
  255. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  256. },
  257. "dist": {
  258. "type": "zip",
  259. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  260. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  261. "shasum": ""
  262. },
  263. "require": {
  264. "php": "^7.1 || ^8.0"
  265. },
  266. "require-dev": {
  267. "doctrine/coding-standard": "^9 || ^11",
  268. "ext-pdo": "*",
  269. "ext-phar": "*",
  270. "phpbench/phpbench": "^0.16 || ^1",
  271. "phpstan/phpstan": "^1.4",
  272. "phpstan/phpstan-phpunit": "^1",
  273. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  274. "vimeo/psalm": "^4.30 || ^5.4"
  275. },
  276. "type": "library",
  277. "autoload": {
  278. "psr-4": {
  279. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  280. }
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "MIT"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Marco Pivetta",
  289. "email": "ocramius@gmail.com",
  290. "homepage": "https://ocramius.github.io/"
  291. }
  292. ],
  293. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  294. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  295. "keywords": [
  296. "constructor",
  297. "instantiate"
  298. ],
  299. "support": {
  300. "issues": "https://github.com/doctrine/instantiator/issues",
  301. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  302. },
  303. "funding": [
  304. {
  305. "url": "https://www.doctrine-project.org/sponsorship.html",
  306. "type": "custom"
  307. },
  308. {
  309. "url": "https://www.patreon.com/phpdoctrine",
  310. "type": "patreon"
  311. },
  312. {
  313. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  314. "type": "tidelift"
  315. }
  316. ],
  317. "time": "2022-12-30T00:15:36+00:00"
  318. },
  319. {
  320. "name": "doctrine/lexer",
  321. "version": "3.0.1",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/doctrine/lexer.git",
  325. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  330. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  331. "shasum": ""
  332. },
  333. "require": {
  334. "php": "^8.1"
  335. },
  336. "require-dev": {
  337. "doctrine/coding-standard": "^12",
  338. "phpstan/phpstan": "^1.10",
  339. "phpunit/phpunit": "^10.5",
  340. "psalm/plugin-phpunit": "^0.18.3",
  341. "vimeo/psalm": "^5.21"
  342. },
  343. "type": "library",
  344. "autoload": {
  345. "psr-4": {
  346. "Doctrine\\Common\\Lexer\\": "src"
  347. }
  348. },
  349. "notification-url": "https://packagist.org/downloads/",
  350. "license": [
  351. "MIT"
  352. ],
  353. "authors": [
  354. {
  355. "name": "Guilherme Blanco",
  356. "email": "guilhermeblanco@gmail.com"
  357. },
  358. {
  359. "name": "Roman Borschel",
  360. "email": "roman@code-factory.org"
  361. },
  362. {
  363. "name": "Johannes Schmitt",
  364. "email": "schmittjoh@gmail.com"
  365. }
  366. ],
  367. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  368. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  369. "keywords": [
  370. "annotations",
  371. "docblock",
  372. "lexer",
  373. "parser",
  374. "php"
  375. ],
  376. "support": {
  377. "issues": "https://github.com/doctrine/lexer/issues",
  378. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  379. },
  380. "funding": [
  381. {
  382. "url": "https://www.doctrine-project.org/sponsorship.html",
  383. "type": "custom"
  384. },
  385. {
  386. "url": "https://www.patreon.com/phpdoctrine",
  387. "type": "patreon"
  388. },
  389. {
  390. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  391. "type": "tidelift"
  392. }
  393. ],
  394. "time": "2024-02-05T11:56:58+00:00"
  395. },
  396. {
  397. "name": "fig/http-message-util",
  398. "version": "1.1.5",
  399. "source": {
  400. "type": "git",
  401. "url": "https://github.com/php-fig/http-message-util.git",
  402. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  403. },
  404. "dist": {
  405. "type": "zip",
  406. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  407. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  408. "shasum": ""
  409. },
  410. "require": {
  411. "php": "^5.3 || ^7.0 || ^8.0"
  412. },
  413. "suggest": {
  414. "psr/http-message": "The package containing the PSR-7 interfaces"
  415. },
  416. "type": "library",
  417. "extra": {
  418. "branch-alias": {
  419. "dev-master": "1.1.x-dev"
  420. }
  421. },
  422. "autoload": {
  423. "psr-4": {
  424. "Fig\\Http\\Message\\": "src/"
  425. }
  426. },
  427. "notification-url": "https://packagist.org/downloads/",
  428. "license": [
  429. "MIT"
  430. ],
  431. "authors": [
  432. {
  433. "name": "PHP-FIG",
  434. "homepage": "https://www.php-fig.org/"
  435. }
  436. ],
  437. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  438. "keywords": [
  439. "http",
  440. "http-message",
  441. "psr",
  442. "psr-7",
  443. "request",
  444. "response"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/php-fig/http-message-util/issues",
  448. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  449. },
  450. "time": "2020-11-24T22:02:12+00:00"
  451. },
  452. {
  453. "name": "graham-campbell/result-type",
  454. "version": "v1.1.3",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  458. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  463. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  464. "shasum": ""
  465. },
  466. "require": {
  467. "php": "^7.2.5 || ^8.0",
  468. "phpoption/phpoption": "^1.9.3"
  469. },
  470. "require-dev": {
  471. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  472. },
  473. "type": "library",
  474. "autoload": {
  475. "psr-4": {
  476. "GrahamCampbell\\ResultType\\": "src/"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Graham Campbell",
  486. "email": "hello@gjcampbell.co.uk",
  487. "homepage": "https://github.com/GrahamCampbell"
  488. }
  489. ],
  490. "description": "An Implementation Of The Result Type",
  491. "keywords": [
  492. "Graham Campbell",
  493. "GrahamCampbell",
  494. "Result Type",
  495. "Result-Type",
  496. "result"
  497. ],
  498. "support": {
  499. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  500. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  501. },
  502. "funding": [
  503. {
  504. "url": "https://github.com/GrahamCampbell",
  505. "type": "github"
  506. },
  507. {
  508. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  509. "type": "tidelift"
  510. }
  511. ],
  512. "time": "2024-07-20T21:45:45+00:00"
  513. },
  514. {
  515. "name": "guzzlehttp/guzzle",
  516. "version": "7.9.2",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/guzzle/guzzle.git",
  520. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  525. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "ext-json": "*",
  530. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  531. "guzzlehttp/psr7": "^2.7.0",
  532. "php": "^7.2.5 || ^8.0",
  533. "psr/http-client": "^1.0",
  534. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  535. },
  536. "provide": {
  537. "psr/http-client-implementation": "1.0"
  538. },
  539. "require-dev": {
  540. "bamarni/composer-bin-plugin": "^1.8.2",
  541. "ext-curl": "*",
  542. "guzzle/client-integration-tests": "3.0.2",
  543. "php-http/message-factory": "^1.1",
  544. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  545. "psr/log": "^1.1 || ^2.0 || ^3.0"
  546. },
  547. "suggest": {
  548. "ext-curl": "Required for CURL handler support",
  549. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  550. "psr/log": "Required for using the Log middleware"
  551. },
  552. "type": "library",
  553. "extra": {
  554. "bamarni-bin": {
  555. "bin-links": true,
  556. "forward-command": false
  557. }
  558. },
  559. "autoload": {
  560. "files": [
  561. "src/functions_include.php"
  562. ],
  563. "psr-4": {
  564. "GuzzleHttp\\": "src/"
  565. }
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "MIT"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Graham Campbell",
  574. "email": "hello@gjcampbell.co.uk",
  575. "homepage": "https://github.com/GrahamCampbell"
  576. },
  577. {
  578. "name": "Michael Dowling",
  579. "email": "mtdowling@gmail.com",
  580. "homepage": "https://github.com/mtdowling"
  581. },
  582. {
  583. "name": "Jeremy Lindblom",
  584. "email": "jeremeamia@gmail.com",
  585. "homepage": "https://github.com/jeremeamia"
  586. },
  587. {
  588. "name": "George Mponos",
  589. "email": "gmponos@gmail.com",
  590. "homepage": "https://github.com/gmponos"
  591. },
  592. {
  593. "name": "Tobias Nyholm",
  594. "email": "tobias.nyholm@gmail.com",
  595. "homepage": "https://github.com/Nyholm"
  596. },
  597. {
  598. "name": "Márk Sági-Kazár",
  599. "email": "mark.sagikazar@gmail.com",
  600. "homepage": "https://github.com/sagikazarmark"
  601. },
  602. {
  603. "name": "Tobias Schultze",
  604. "email": "webmaster@tubo-world.de",
  605. "homepage": "https://github.com/Tobion"
  606. }
  607. ],
  608. "description": "Guzzle is a PHP HTTP client library",
  609. "keywords": [
  610. "client",
  611. "curl",
  612. "framework",
  613. "http",
  614. "http client",
  615. "psr-18",
  616. "psr-7",
  617. "rest",
  618. "web service"
  619. ],
  620. "support": {
  621. "issues": "https://github.com/guzzle/guzzle/issues",
  622. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  623. },
  624. "funding": [
  625. {
  626. "url": "https://github.com/GrahamCampbell",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://github.com/Nyholm",
  631. "type": "github"
  632. },
  633. {
  634. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  635. "type": "tidelift"
  636. }
  637. ],
  638. "time": "2024-07-24T11:22:20+00:00"
  639. },
  640. {
  641. "name": "guzzlehttp/promises",
  642. "version": "2.0.4",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/guzzle/promises.git",
  646. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  651. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": "^7.2.5 || ^8.0"
  656. },
  657. "require-dev": {
  658. "bamarni/composer-bin-plugin": "^1.8.2",
  659. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  660. },
  661. "type": "library",
  662. "extra": {
  663. "bamarni-bin": {
  664. "bin-links": true,
  665. "forward-command": false
  666. }
  667. },
  668. "autoload": {
  669. "psr-4": {
  670. "GuzzleHttp\\Promise\\": "src/"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "Graham Campbell",
  680. "email": "hello@gjcampbell.co.uk",
  681. "homepage": "https://github.com/GrahamCampbell"
  682. },
  683. {
  684. "name": "Michael Dowling",
  685. "email": "mtdowling@gmail.com",
  686. "homepage": "https://github.com/mtdowling"
  687. },
  688. {
  689. "name": "Tobias Nyholm",
  690. "email": "tobias.nyholm@gmail.com",
  691. "homepage": "https://github.com/Nyholm"
  692. },
  693. {
  694. "name": "Tobias Schultze",
  695. "email": "webmaster@tubo-world.de",
  696. "homepage": "https://github.com/Tobion"
  697. }
  698. ],
  699. "description": "Guzzle promises library",
  700. "keywords": [
  701. "promise"
  702. ],
  703. "support": {
  704. "issues": "https://github.com/guzzle/promises/issues",
  705. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  706. },
  707. "funding": [
  708. {
  709. "url": "https://github.com/GrahamCampbell",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://github.com/Nyholm",
  714. "type": "github"
  715. },
  716. {
  717. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  718. "type": "tidelift"
  719. }
  720. ],
  721. "time": "2024-10-17T10:06:22+00:00"
  722. },
  723. {
  724. "name": "guzzlehttp/psr7",
  725. "version": "2.7.0",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/guzzle/psr7.git",
  729. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  734. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  735. "shasum": ""
  736. },
  737. "require": {
  738. "php": "^7.2.5 || ^8.0",
  739. "psr/http-factory": "^1.0",
  740. "psr/http-message": "^1.1 || ^2.0",
  741. "ralouphie/getallheaders": "^3.0"
  742. },
  743. "provide": {
  744. "psr/http-factory-implementation": "1.0",
  745. "psr/http-message-implementation": "1.0"
  746. },
  747. "require-dev": {
  748. "bamarni/composer-bin-plugin": "^1.8.2",
  749. "http-interop/http-factory-tests": "0.9.0",
  750. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  751. },
  752. "suggest": {
  753. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  754. },
  755. "type": "library",
  756. "extra": {
  757. "bamarni-bin": {
  758. "bin-links": true,
  759. "forward-command": false
  760. }
  761. },
  762. "autoload": {
  763. "psr-4": {
  764. "GuzzleHttp\\Psr7\\": "src/"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "Graham Campbell",
  774. "email": "hello@gjcampbell.co.uk",
  775. "homepage": "https://github.com/GrahamCampbell"
  776. },
  777. {
  778. "name": "Michael Dowling",
  779. "email": "mtdowling@gmail.com",
  780. "homepage": "https://github.com/mtdowling"
  781. },
  782. {
  783. "name": "George Mponos",
  784. "email": "gmponos@gmail.com",
  785. "homepage": "https://github.com/gmponos"
  786. },
  787. {
  788. "name": "Tobias Nyholm",
  789. "email": "tobias.nyholm@gmail.com",
  790. "homepage": "https://github.com/Nyholm"
  791. },
  792. {
  793. "name": "Márk Sági-Kazár",
  794. "email": "mark.sagikazar@gmail.com",
  795. "homepage": "https://github.com/sagikazarmark"
  796. },
  797. {
  798. "name": "Tobias Schultze",
  799. "email": "webmaster@tubo-world.de",
  800. "homepage": "https://github.com/Tobion"
  801. },
  802. {
  803. "name": "Márk Sági-Kazár",
  804. "email": "mark.sagikazar@gmail.com",
  805. "homepage": "https://sagikazarmark.hu"
  806. }
  807. ],
  808. "description": "PSR-7 message implementation that also provides common utility methods",
  809. "keywords": [
  810. "http",
  811. "message",
  812. "psr-7",
  813. "request",
  814. "response",
  815. "stream",
  816. "uri",
  817. "url"
  818. ],
  819. "support": {
  820. "issues": "https://github.com/guzzle/psr7/issues",
  821. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  822. },
  823. "funding": [
  824. {
  825. "url": "https://github.com/GrahamCampbell",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://github.com/Nyholm",
  830. "type": "github"
  831. },
  832. {
  833. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  834. "type": "tidelift"
  835. }
  836. ],
  837. "time": "2024-07-18T11:15:46+00:00"
  838. },
  839. {
  840. "name": "hyperf/amqp",
  841. "version": "v3.1.42",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/hyperf/amqp.git",
  845. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  850. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "doctrine/instantiator": "^1.2.0",
  855. "hyperf/codec": "~3.1.0",
  856. "hyperf/contract": "~3.1.0",
  857. "hyperf/coroutine": "~3.1.0",
  858. "hyperf/pool": "~3.1.0",
  859. "hyperf/process": "~3.1.0",
  860. "hyperf/support": "~3.1.0",
  861. "hyperf/utils": "~3.1.0",
  862. "php": ">=8.1",
  863. "php-amqplib/php-amqplib": "^3.5",
  864. "psr/container": "^1.0 || ^2.0",
  865. "psr/event-dispatcher": "^1.0",
  866. "psr/log": "^1.0 || ^2.0 || ^3.0"
  867. },
  868. "suggest": {
  869. "hyperf/di": "Required to use annotations.",
  870. "hyperf/event": "Declare queue and start consumers automatically."
  871. },
  872. "type": "library",
  873. "extra": {
  874. "branch-alias": {
  875. "dev-master": "3.1-dev"
  876. },
  877. "hyperf": {
  878. "config": "Hyperf\\Amqp\\ConfigProvider"
  879. }
  880. },
  881. "autoload": {
  882. "psr-4": {
  883. "Hyperf\\Amqp\\": "src/"
  884. }
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "description": "A amqplib for hyperf.",
  891. "homepage": "https://hyperf.io",
  892. "keywords": [
  893. "AMQP",
  894. "hyperf",
  895. "php"
  896. ],
  897. "support": {
  898. "docs": "https://hyperf.wiki",
  899. "issues": "https://github.com/hyperf/hyperf/issues",
  900. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  901. "source": "https://github.com/hyperf/hyperf"
  902. },
  903. "funding": [
  904. {
  905. "url": "https://hyperf.wiki/#/zh-cn/donate",
  906. "type": "custom"
  907. },
  908. {
  909. "url": "https://opencollective.com/hyperf",
  910. "type": "open_collective"
  911. }
  912. ],
  913. "time": "2024-09-25T02:54:12+00:00"
  914. },
  915. {
  916. "name": "hyperf/async-queue",
  917. "version": "v3.1.42",
  918. "source": {
  919. "type": "git",
  920. "url": "https://github.com/hyperf/async-queue.git",
  921. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  922. },
  923. "dist": {
  924. "type": "zip",
  925. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  926. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  927. "shasum": ""
  928. },
  929. "require": {
  930. "hyperf/codec": "~3.1.0",
  931. "hyperf/collection": "~3.1.0",
  932. "hyperf/command": "~3.1.0",
  933. "hyperf/contract": "~3.1.0",
  934. "hyperf/support": "~3.1.0",
  935. "hyperf/utils": "~3.1.0",
  936. "php": ">=8.1",
  937. "psr/container": "^1.0 || ^2.0",
  938. "psr/event-dispatcher": "^1.0"
  939. },
  940. "suggest": {
  941. "hyperf/di": "Required to use annotations.",
  942. "hyperf/event": "Required to dispatch a event.",
  943. "hyperf/logger": "Required to use QueueHandleListener.",
  944. "hyperf/process": "Auto register the consumer process for server."
  945. },
  946. "type": "library",
  947. "extra": {
  948. "branch-alias": {
  949. "dev-master": "3.1-dev"
  950. },
  951. "hyperf": {
  952. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  953. }
  954. },
  955. "autoload": {
  956. "files": [
  957. "src/Functions.php"
  958. ],
  959. "psr-4": {
  960. "Hyperf\\AsyncQueue\\": "src/"
  961. }
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "description": "A async queue component for hyperf.",
  968. "homepage": "https://hyperf.io",
  969. "keywords": [
  970. "async-queue",
  971. "hyperf",
  972. "php"
  973. ],
  974. "support": {
  975. "docs": "https://hyperf.wiki",
  976. "issues": "https://github.com/hyperf/hyperf/issues",
  977. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  978. "source": "https://github.com/hyperf/hyperf"
  979. },
  980. "funding": [
  981. {
  982. "url": "https://hyperf.wiki/#/zh-cn/donate",
  983. "type": "custom"
  984. },
  985. {
  986. "url": "https://opencollective.com/hyperf",
  987. "type": "open_collective"
  988. }
  989. ],
  990. "time": "2024-09-25T02:54:12+00:00"
  991. },
  992. {
  993. "name": "hyperf/cache",
  994. "version": "v3.1.43",
  995. "source": {
  996. "type": "git",
  997. "url": "https://github.com/hyperf/cache.git",
  998. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  999. },
  1000. "dist": {
  1001. "type": "zip",
  1002. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1003. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1004. "shasum": ""
  1005. },
  1006. "require": {
  1007. "hyperf/codec": "~3.1.0",
  1008. "hyperf/collection": "~3.1.0",
  1009. "hyperf/contract": "~3.1.0",
  1010. "hyperf/support": "~3.1.0",
  1011. "hyperf/utils": "~3.1.0",
  1012. "php": ">=8.1",
  1013. "psr/container": "^1.0 || ^2.0",
  1014. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1015. },
  1016. "suggest": {
  1017. "hyperf/di": "Use cache annotations.",
  1018. "hyperf/event": "Use listener to delete annotation cache."
  1019. },
  1020. "type": "library",
  1021. "extra": {
  1022. "branch-alias": {
  1023. "dev-master": "3.1-dev"
  1024. },
  1025. "hyperf": {
  1026. "config": "Hyperf\\Cache\\ConfigProvider"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "Hyperf\\Cache\\": "src/"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "description": "A cache component for hyperf.",
  1039. "homepage": "https://hyperf.io",
  1040. "keywords": [
  1041. "cache",
  1042. "hyperf",
  1043. "php"
  1044. ],
  1045. "support": {
  1046. "docs": "https://hyperf.wiki",
  1047. "issues": "https://github.com/hyperf/hyperf/issues",
  1048. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1049. "source": "https://github.com/hyperf/hyperf"
  1050. },
  1051. "funding": [
  1052. {
  1053. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1054. "type": "custom"
  1055. },
  1056. {
  1057. "url": "https://opencollective.com/hyperf",
  1058. "type": "open_collective"
  1059. }
  1060. ],
  1061. "time": "2024-10-09T10:22:39+00:00"
  1062. },
  1063. {
  1064. "name": "hyperf/code-parser",
  1065. "version": "v3.1.42",
  1066. "source": {
  1067. "type": "git",
  1068. "url": "https://github.com/hyperf/code-parser.git",
  1069. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1070. },
  1071. "dist": {
  1072. "type": "zip",
  1073. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1074. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1075. "shasum": ""
  1076. },
  1077. "require": {
  1078. "hyperf/collection": "~3.1.0",
  1079. "hyperf/stringable": "~3.1.0",
  1080. "hyperf/support": "~3.1.0",
  1081. "php": ">=8.1"
  1082. },
  1083. "suggest": {
  1084. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1085. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1086. },
  1087. "type": "library",
  1088. "extra": {
  1089. "branch-alias": {
  1090. "dev-master": "3.1-dev"
  1091. }
  1092. },
  1093. "autoload": {
  1094. "psr-4": {
  1095. "Hyperf\\CodeParser\\": "src/"
  1096. }
  1097. },
  1098. "notification-url": "https://packagist.org/downloads/",
  1099. "license": [
  1100. "MIT"
  1101. ],
  1102. "description": "A code parser component for Hyperf.",
  1103. "homepage": "https://hyperf.io",
  1104. "keywords": [
  1105. "code-parser",
  1106. "hyperf",
  1107. "php",
  1108. "swoole"
  1109. ],
  1110. "support": {
  1111. "docs": "https://hyperf.wiki",
  1112. "issues": "https://github.com/hyperf/hyperf/issues",
  1113. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1114. "source": "https://github.com/hyperf/hyperf"
  1115. },
  1116. "funding": [
  1117. {
  1118. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1119. "type": "custom"
  1120. },
  1121. {
  1122. "url": "https://opencollective.com/hyperf",
  1123. "type": "open_collective"
  1124. }
  1125. ],
  1126. "time": "2024-09-25T02:54:12+00:00"
  1127. },
  1128. {
  1129. "name": "hyperf/codec",
  1130. "version": "v3.1.42",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/hyperf/codec.git",
  1134. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1139. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1140. "shasum": ""
  1141. },
  1142. "require": {
  1143. "ext-json": "*",
  1144. "ext-xml": "*",
  1145. "hyperf/contract": "~3.1.0",
  1146. "php": ">=8.1"
  1147. },
  1148. "suggest": {
  1149. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1150. },
  1151. "type": "library",
  1152. "extra": {
  1153. "branch-alias": {
  1154. "dev-master": "3.1-dev"
  1155. }
  1156. },
  1157. "autoload": {
  1158. "psr-4": {
  1159. "Hyperf\\Codec\\": "src/"
  1160. }
  1161. },
  1162. "notification-url": "https://packagist.org/downloads/",
  1163. "license": [
  1164. "MIT"
  1165. ],
  1166. "description": "A codec component for Hyperf.",
  1167. "homepage": "https://hyperf.io",
  1168. "keywords": [
  1169. "codec",
  1170. "hyperf",
  1171. "php",
  1172. "swoole"
  1173. ],
  1174. "support": {
  1175. "docs": "https://hyperf.wiki",
  1176. "issues": "https://github.com/hyperf/hyperf/issues",
  1177. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1178. "source": "https://github.com/hyperf/hyperf"
  1179. },
  1180. "funding": [
  1181. {
  1182. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1183. "type": "custom"
  1184. },
  1185. {
  1186. "url": "https://opencollective.com/hyperf",
  1187. "type": "open_collective"
  1188. }
  1189. ],
  1190. "time": "2024-09-25T02:54:12+00:00"
  1191. },
  1192. {
  1193. "name": "hyperf/collection",
  1194. "version": "v3.1.47",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/hyperf/collection.git",
  1198. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1203. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "hyperf/conditionable": "~3.1.0",
  1208. "hyperf/contract": "~3.1.0",
  1209. "hyperf/macroable": "~3.1.0",
  1210. "hyperf/stringable": "~3.1.0",
  1211. "php": ">=8.1"
  1212. },
  1213. "type": "library",
  1214. "extra": {
  1215. "branch-alias": {
  1216. "dev-master": "3.1-dev"
  1217. }
  1218. },
  1219. "autoload": {
  1220. "files": [
  1221. "src/Functions.php"
  1222. ],
  1223. "psr-4": {
  1224. "Hyperf\\Collection\\": "src/"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "description": "Hyperf Collection package which come from illuminate/collections",
  1232. "homepage": "https://hyperf.io",
  1233. "keywords": [
  1234. "collection",
  1235. "hyperf",
  1236. "php",
  1237. "swoole"
  1238. ],
  1239. "support": {
  1240. "docs": "https://hyperf.wiki",
  1241. "issues": "https://github.com/hyperf/hyperf/issues",
  1242. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1243. "source": "https://github.com/hyperf/hyperf"
  1244. },
  1245. "funding": [
  1246. {
  1247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1248. "type": "custom"
  1249. },
  1250. {
  1251. "url": "https://opencollective.com/hyperf",
  1252. "type": "open_collective"
  1253. }
  1254. ],
  1255. "time": "2024-11-28T01:51:55+00:00"
  1256. },
  1257. {
  1258. "name": "hyperf/command",
  1259. "version": "v3.1.42",
  1260. "source": {
  1261. "type": "git",
  1262. "url": "https://github.com/hyperf/command.git",
  1263. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1264. },
  1265. "dist": {
  1266. "type": "zip",
  1267. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1268. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1269. "shasum": ""
  1270. },
  1271. "require": {
  1272. "hyperf/collection": "~3.1.0",
  1273. "hyperf/context": "~3.1.0",
  1274. "hyperf/contract": "~3.1.0",
  1275. "hyperf/coroutine": "~3.1.0",
  1276. "hyperf/di": "~3.1.0",
  1277. "hyperf/stringable": "~3.1.0",
  1278. "hyperf/support": "~3.1.0",
  1279. "hyperf/tappable": "~3.1.0",
  1280. "php": ">=8.1",
  1281. "psr/event-dispatcher": "^1.0",
  1282. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1283. },
  1284. "suggest": {
  1285. "hyperf/di": "Required to use annotations.",
  1286. "hyperf/event": "Required to use listeners."
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "branch-alias": {
  1291. "dev-master": "3.1-dev"
  1292. },
  1293. "hyperf": {
  1294. "config": "Hyperf\\Command\\ConfigProvider"
  1295. }
  1296. },
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Hyperf\\Command\\": "src/"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "description": "Command for hyperf",
  1307. "keywords": [
  1308. "command",
  1309. "php",
  1310. "swoole"
  1311. ],
  1312. "support": {
  1313. "issues": "https://github.com/hyperf/command/issues",
  1314. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1315. },
  1316. "funding": [
  1317. {
  1318. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1319. "type": "custom"
  1320. },
  1321. {
  1322. "url": "https://opencollective.com/hyperf",
  1323. "type": "open_collective"
  1324. }
  1325. ],
  1326. "time": "2024-09-25T02:54:12+00:00"
  1327. },
  1328. {
  1329. "name": "hyperf/conditionable",
  1330. "version": "v3.1.42",
  1331. "source": {
  1332. "type": "git",
  1333. "url": "https://github.com/hyperf/conditionable.git",
  1334. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1335. },
  1336. "dist": {
  1337. "type": "zip",
  1338. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1339. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1340. "shasum": ""
  1341. },
  1342. "require": {
  1343. "php": ">=8.1"
  1344. },
  1345. "type": "library",
  1346. "extra": {
  1347. "branch-alias": {
  1348. "dev-master": "3.1-dev"
  1349. }
  1350. },
  1351. "autoload": {
  1352. "psr-4": {
  1353. "Hyperf\\Conditionable\\": "src/"
  1354. }
  1355. },
  1356. "notification-url": "https://packagist.org/downloads/",
  1357. "license": [
  1358. "MIT"
  1359. ],
  1360. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1361. "homepage": "https://hyperf.io",
  1362. "keywords": [
  1363. "conditionable",
  1364. "hyperf",
  1365. "php",
  1366. "swoole"
  1367. ],
  1368. "support": {
  1369. "docs": "https://hyperf.wiki",
  1370. "issues": "https://github.com/hyperf/hyperf/issues",
  1371. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1372. "source": "https://github.com/hyperf/hyperf"
  1373. },
  1374. "funding": [
  1375. {
  1376. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1377. "type": "custom"
  1378. },
  1379. {
  1380. "url": "https://opencollective.com/hyperf",
  1381. "type": "open_collective"
  1382. }
  1383. ],
  1384. "time": "2024-09-25T02:54:12+00:00"
  1385. },
  1386. {
  1387. "name": "hyperf/config",
  1388. "version": "v3.1.42",
  1389. "source": {
  1390. "type": "git",
  1391. "url": "https://github.com/hyperf/config.git",
  1392. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1393. },
  1394. "dist": {
  1395. "type": "zip",
  1396. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1397. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1398. "shasum": ""
  1399. },
  1400. "require": {
  1401. "hyperf/collection": "~3.1.0",
  1402. "hyperf/contract": "~3.1.0",
  1403. "hyperf/support": "~3.1.0",
  1404. "php": ">=8.1",
  1405. "psr/container": "^1.0 || ^2.0",
  1406. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1407. },
  1408. "suggest": {
  1409. "hyperf/context": "Required to use config()",
  1410. "hyperf/di": "Allows using @Value annotation",
  1411. "hyperf/event": "Allows using @Value annotation",
  1412. "hyperf/framework": "Allows using @Value annotation",
  1413. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1414. },
  1415. "type": "library",
  1416. "extra": {
  1417. "branch-alias": {
  1418. "dev-master": "3.1-dev"
  1419. },
  1420. "hyperf": {
  1421. "config": "Hyperf\\Config\\ConfigProvider"
  1422. }
  1423. },
  1424. "autoload": {
  1425. "files": [
  1426. "./src/Functions.php"
  1427. ],
  1428. "psr-4": {
  1429. "Hyperf\\Config\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "description": "An independent component that provides configuration container.",
  1437. "homepage": "https://hyperf.io",
  1438. "keywords": [
  1439. "config",
  1440. "configuration",
  1441. "hyperf",
  1442. "php",
  1443. "swoole"
  1444. ],
  1445. "support": {
  1446. "docs": "https://hyperf.wiki",
  1447. "issues": "https://github.com/hyperf/hyperf/issues",
  1448. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1449. "source": "https://github.com/hyperf/hyperf"
  1450. },
  1451. "funding": [
  1452. {
  1453. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1454. "type": "custom"
  1455. },
  1456. {
  1457. "url": "https://opencollective.com/hyperf",
  1458. "type": "open_collective"
  1459. }
  1460. ],
  1461. "time": "2024-09-25T02:54:12+00:00"
  1462. },
  1463. {
  1464. "name": "hyperf/config-center",
  1465. "version": "v3.1.42",
  1466. "source": {
  1467. "type": "git",
  1468. "url": "https://github.com/hyperf/config-center.git",
  1469. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1470. },
  1471. "dist": {
  1472. "type": "zip",
  1473. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1474. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1475. "shasum": ""
  1476. },
  1477. "require": {
  1478. "hyperf/support": "~3.1.0",
  1479. "php": ">=8.1"
  1480. },
  1481. "suggest": {
  1482. "hyperf/process": "^2.1"
  1483. },
  1484. "type": "library",
  1485. "extra": {
  1486. "branch-alias": {
  1487. "dev-master": "3.1-dev"
  1488. },
  1489. "hyperf": {
  1490. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1491. }
  1492. },
  1493. "autoload": {
  1494. "psr-4": {
  1495. "Hyperf\\ConfigCenter\\": "src/"
  1496. }
  1497. },
  1498. "notification-url": "https://packagist.org/downloads/",
  1499. "license": [
  1500. "MIT"
  1501. ],
  1502. "description": "The abstraction component of config center",
  1503. "homepage": "https://hyperf.io",
  1504. "keywords": [
  1505. "config-center",
  1506. "hyperf",
  1507. "php"
  1508. ],
  1509. "support": {
  1510. "docs": "https://hyperf.wiki",
  1511. "issues": "https://github.com/hyperf/hyperf/issues",
  1512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1513. "source": "https://github.com/hyperf/hyperf"
  1514. },
  1515. "funding": [
  1516. {
  1517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1518. "type": "custom"
  1519. },
  1520. {
  1521. "url": "https://opencollective.com/hyperf",
  1522. "type": "open_collective"
  1523. }
  1524. ],
  1525. "time": "2024-09-25T02:54:12+00:00"
  1526. },
  1527. {
  1528. "name": "hyperf/config-nacos",
  1529. "version": "v3.1.42",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/hyperf/config-nacos.git",
  1533. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1538. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "hyperf/codec": "~3.1.0",
  1543. "hyperf/config-center": "~3.1.0",
  1544. "hyperf/contract": "~3.1.0",
  1545. "hyperf/guzzle": "~3.1.0",
  1546. "hyperf/nacos": "~3.1.0",
  1547. "hyperf/support": "~3.1.0",
  1548. "hyperf/utils": "~3.1.0",
  1549. "jetbrains/phpstorm-attributes": "^1.0",
  1550. "php": ">=8.1"
  1551. },
  1552. "suggest": {
  1553. "ext-json": "*",
  1554. "ext-simplexml": "*",
  1555. "ext-yaml": "*",
  1556. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1557. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1558. "hyperf/process": "Required to use processes. (~2.2.0)"
  1559. },
  1560. "type": "library",
  1561. "extra": {
  1562. "branch-alias": {
  1563. "dev-master": "3.1-dev"
  1564. },
  1565. "hyperf": {
  1566. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-4": {
  1571. "Hyperf\\ConfigNacos\\": "src/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "description": "A nacos adapter for config center component.",
  1579. "homepage": "https://hyperf.io",
  1580. "keywords": [
  1581. "hyperf",
  1582. "nacos",
  1583. "php",
  1584. "swoole"
  1585. ],
  1586. "support": {
  1587. "docs": "https://hyperf.wiki",
  1588. "issues": "https://github.com/hyperf/hyperf/issues",
  1589. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1590. "source": "https://github.com/hyperf/hyperf"
  1591. },
  1592. "funding": [
  1593. {
  1594. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1595. "type": "custom"
  1596. },
  1597. {
  1598. "url": "https://opencollective.com/hyperf",
  1599. "type": "open_collective"
  1600. }
  1601. ],
  1602. "time": "2024-09-25T02:54:12+00:00"
  1603. },
  1604. {
  1605. "name": "hyperf/constants",
  1606. "version": "v3.1.42",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/hyperf/constants.git",
  1610. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1615. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "hyperf/di": "~3.1.0",
  1620. "hyperf/support": "~3.1.0",
  1621. "hyperf/utils": "~3.1.0",
  1622. "php": ">=8.1"
  1623. },
  1624. "suggest": {
  1625. "hyperf/translation": "Required to use translation."
  1626. },
  1627. "type": "library",
  1628. "extra": {
  1629. "branch-alias": {
  1630. "dev-master": "3.1-dev"
  1631. },
  1632. "hyperf": {
  1633. "config": "Hyperf\\Constants\\ConfigProvider"
  1634. }
  1635. },
  1636. "autoload": {
  1637. "psr-4": {
  1638. "Hyperf\\Constants\\": "src/"
  1639. }
  1640. },
  1641. "notification-url": "https://packagist.org/downloads/",
  1642. "license": [
  1643. "MIT"
  1644. ],
  1645. "description": "A constants component for hyperf.",
  1646. "homepage": "https://hyperf.io",
  1647. "keywords": [
  1648. "constants",
  1649. "hyperf",
  1650. "php"
  1651. ],
  1652. "support": {
  1653. "docs": "https://hyperf.wiki",
  1654. "issues": "https://github.com/hyperf/hyperf/issues",
  1655. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1656. "source": "https://github.com/hyperf/hyperf"
  1657. },
  1658. "funding": [
  1659. {
  1660. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1661. "type": "custom"
  1662. },
  1663. {
  1664. "url": "https://opencollective.com/hyperf",
  1665. "type": "open_collective"
  1666. }
  1667. ],
  1668. "time": "2024-09-25T02:54:12+00:00"
  1669. },
  1670. {
  1671. "name": "hyperf/consul",
  1672. "version": "v3.1.42",
  1673. "source": {
  1674. "type": "git",
  1675. "url": "https://github.com/hyperf/consul.git",
  1676. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1677. },
  1678. "dist": {
  1679. "type": "zip",
  1680. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1681. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1682. "shasum": ""
  1683. },
  1684. "require": {
  1685. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1686. "php": ">=8.1"
  1687. },
  1688. "type": "library",
  1689. "extra": {
  1690. "branch-alias": {
  1691. "dev-master": "3.1-dev"
  1692. },
  1693. "hyperf": {
  1694. "config": "Hyperf\\Consul\\ConfigProvider"
  1695. }
  1696. },
  1697. "autoload": {
  1698. "psr-4": {
  1699. "Hyperf\\Consul\\": "src/"
  1700. }
  1701. },
  1702. "notification-url": "https://packagist.org/downloads/",
  1703. "license": [
  1704. "MIT"
  1705. ],
  1706. "description": "A Consul Client for Hyperf.",
  1707. "homepage": "https://hyperf.io",
  1708. "keywords": [
  1709. "consul",
  1710. "consul-client",
  1711. "hyperf",
  1712. "php",
  1713. "swoole"
  1714. ],
  1715. "support": {
  1716. "docs": "https://hyperf.wiki",
  1717. "issues": "https://github.com/hyperf/hyperf/issues",
  1718. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1719. "source": "https://github.com/hyperf/hyperf"
  1720. },
  1721. "funding": [
  1722. {
  1723. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1724. "type": "custom"
  1725. },
  1726. {
  1727. "url": "https://opencollective.com/hyperf",
  1728. "type": "open_collective"
  1729. }
  1730. ],
  1731. "time": "2024-09-25T02:54:12+00:00"
  1732. },
  1733. {
  1734. "name": "hyperf/context",
  1735. "version": "v3.1.42",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/hyperf/context.git",
  1739. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1744. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "hyperf/engine": "^2.0",
  1749. "php": ">=8.1"
  1750. },
  1751. "suggest": {
  1752. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "3.1-dev"
  1758. }
  1759. },
  1760. "autoload": {
  1761. "psr-4": {
  1762. "Hyperf\\Context\\": "src/"
  1763. }
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "MIT"
  1768. ],
  1769. "description": "A coroutine/application context library.",
  1770. "homepage": "https://hyperf.io",
  1771. "keywords": [
  1772. "Context",
  1773. "hyperf",
  1774. "php",
  1775. "swoole"
  1776. ],
  1777. "support": {
  1778. "docs": "https://hyperf.wiki",
  1779. "issues": "https://github.com/hyperf/hyperf/issues",
  1780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1781. "source": "https://github.com/hyperf/hyperf"
  1782. },
  1783. "funding": [
  1784. {
  1785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1786. "type": "custom"
  1787. },
  1788. {
  1789. "url": "https://opencollective.com/hyperf",
  1790. "type": "open_collective"
  1791. }
  1792. ],
  1793. "time": "2024-09-25T02:54:12+00:00"
  1794. },
  1795. {
  1796. "name": "hyperf/contract",
  1797. "version": "v3.1.42",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/hyperf/contract.git",
  1801. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1806. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "php": ">=8.1"
  1811. },
  1812. "type": "library",
  1813. "extra": {
  1814. "branch-alias": {
  1815. "dev-master": "3.1-dev"
  1816. }
  1817. },
  1818. "autoload": {
  1819. "psr-4": {
  1820. "Hyperf\\Contract\\": "src/"
  1821. }
  1822. },
  1823. "notification-url": "https://packagist.org/downloads/",
  1824. "license": [
  1825. "MIT"
  1826. ],
  1827. "description": "The contracts of Hyperf.",
  1828. "homepage": "https://hyperf.io",
  1829. "keywords": [
  1830. "hyperf",
  1831. "php",
  1832. "swoole"
  1833. ],
  1834. "support": {
  1835. "docs": "https://hyperf.wiki",
  1836. "issues": "https://github.com/hyperf/hyperf/issues",
  1837. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1838. "source": "https://github.com/hyperf/hyperf"
  1839. },
  1840. "funding": [
  1841. {
  1842. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1843. "type": "custom"
  1844. },
  1845. {
  1846. "url": "https://opencollective.com/hyperf",
  1847. "type": "open_collective"
  1848. }
  1849. ],
  1850. "time": "2024-09-25T02:54:12+00:00"
  1851. },
  1852. {
  1853. "name": "hyperf/coordinator",
  1854. "version": "v3.1.42",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://github.com/hyperf/coordinator.git",
  1858. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1863. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1864. "shasum": ""
  1865. },
  1866. "require": {
  1867. "hyperf/engine": "^2.0",
  1868. "php": ">=8.1"
  1869. },
  1870. "type": "library",
  1871. "extra": {
  1872. "branch-alias": {
  1873. "dev-master": "3.1-dev"
  1874. }
  1875. },
  1876. "autoload": {
  1877. "files": [
  1878. "src/Functions.php"
  1879. ],
  1880. "psr-4": {
  1881. "Hyperf\\Coordinator\\": "src/"
  1882. }
  1883. },
  1884. "notification-url": "https://packagist.org/downloads/",
  1885. "license": [
  1886. "MIT"
  1887. ],
  1888. "description": "Hyperf Coordinator",
  1889. "homepage": "https://hyperf.io",
  1890. "keywords": [
  1891. "Coordinator",
  1892. "hyperf",
  1893. "php",
  1894. "swoole"
  1895. ],
  1896. "support": {
  1897. "docs": "https://hyperf.wiki",
  1898. "issues": "https://github.com/hyperf/hyperf/issues",
  1899. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1900. "source": "https://github.com/hyperf/hyperf"
  1901. },
  1902. "funding": [
  1903. {
  1904. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1905. "type": "custom"
  1906. },
  1907. {
  1908. "url": "https://opencollective.com/hyperf",
  1909. "type": "open_collective"
  1910. }
  1911. ],
  1912. "time": "2024-09-25T02:54:12+00:00"
  1913. },
  1914. {
  1915. "name": "hyperf/coroutine",
  1916. "version": "v3.1.42",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/hyperf/coroutine.git",
  1920. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1925. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1926. "shasum": ""
  1927. },
  1928. "require": {
  1929. "hyperf/context": "~3.1.0",
  1930. "hyperf/contract": "~3.1.0",
  1931. "hyperf/engine": "^2.0",
  1932. "php": ">=8.1"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-master": "3.1-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "files": [
  1942. "src/Functions.php"
  1943. ],
  1944. "psr-4": {
  1945. "Hyperf\\Coroutine\\": "src/"
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "description": "Hyperf Coroutine",
  1953. "homepage": "https://hyperf.io",
  1954. "keywords": [
  1955. "coroutine",
  1956. "hyperf",
  1957. "php",
  1958. "swoole"
  1959. ],
  1960. "support": {
  1961. "docs": "https://hyperf.wiki",
  1962. "issues": "https://github.com/hyperf/hyperf/issues",
  1963. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1964. "source": "https://github.com/hyperf/hyperf"
  1965. },
  1966. "funding": [
  1967. {
  1968. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1969. "type": "custom"
  1970. },
  1971. {
  1972. "url": "https://opencollective.com/hyperf",
  1973. "type": "open_collective"
  1974. }
  1975. ],
  1976. "time": "2024-09-25T02:54:12+00:00"
  1977. },
  1978. {
  1979. "name": "hyperf/database",
  1980. "version": "v3.1.47",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://github.com/hyperf/database.git",
  1984. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://api.github.com/repos/hyperf/database/zipball/a53d2616486e0a77923542bb5cc363e207e5003d",
  1989. "reference": "a53d2616486e0a77923542bb5cc363e207e5003d",
  1990. "shasum": ""
  1991. },
  1992. "require": {
  1993. "hyperf/code-parser": "~3.1.0",
  1994. "hyperf/collection": "~3.1.23",
  1995. "hyperf/conditionable": "~3.1.0",
  1996. "hyperf/macroable": "~3.1.0",
  1997. "hyperf/support": "~3.1.0",
  1998. "hyperf/tappable": "~3.1.0",
  1999. "hyperf/utils": "~3.1.0",
  2000. "nesbot/carbon": "^2.0",
  2001. "php": ">=8.1",
  2002. "psr/container": "^1.0 || ^2.0",
  2003. "psr/event-dispatcher": "^1.0"
  2004. },
  2005. "suggest": {
  2006. "doctrine/dbal": "Required to rename columns (^3.0).",
  2007. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2008. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2009. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2010. },
  2011. "type": "library",
  2012. "extra": {
  2013. "branch-alias": {
  2014. "dev-master": "3.1-dev"
  2015. }
  2016. },
  2017. "autoload": {
  2018. "psr-4": {
  2019. "Hyperf\\Database\\": "src/"
  2020. }
  2021. },
  2022. "notification-url": "https://packagist.org/downloads/",
  2023. "license": [
  2024. "MIT"
  2025. ],
  2026. "description": "A flexible database library.",
  2027. "homepage": "https://hyperf.io",
  2028. "keywords": [
  2029. "database",
  2030. "hyperf",
  2031. "php"
  2032. ],
  2033. "support": {
  2034. "docs": "https://hyperf.wiki",
  2035. "issues": "https://github.com/hyperf/hyperf/issues",
  2036. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2037. "source": "https://github.com/hyperf/hyperf"
  2038. },
  2039. "funding": [
  2040. {
  2041. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2042. "type": "custom"
  2043. },
  2044. {
  2045. "url": "https://opencollective.com/hyperf",
  2046. "type": "open_collective"
  2047. }
  2048. ],
  2049. "time": "2024-11-28T01:51:55+00:00"
  2050. },
  2051. {
  2052. "name": "hyperf/db-connection",
  2053. "version": "v3.1.44",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/hyperf/db-connection.git",
  2057. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2062. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2063. "shasum": ""
  2064. },
  2065. "require": {
  2066. "hyperf/database": "~3.1.0",
  2067. "hyperf/di": "~3.1.0",
  2068. "hyperf/framework": "~3.1.0",
  2069. "hyperf/model-listener": "~3.1.0",
  2070. "hyperf/pool": "~3.1.0",
  2071. "hyperf/support": "~3.1.0",
  2072. "hyperf/utils": "~3.1.0",
  2073. "php": ">=8.1",
  2074. "psr/container": "^1.0 || ^2.0"
  2075. },
  2076. "type": "library",
  2077. "extra": {
  2078. "branch-alias": {
  2079. "dev-master": "3.1-dev"
  2080. },
  2081. "hyperf": {
  2082. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2083. }
  2084. },
  2085. "autoload": {
  2086. "psr-4": {
  2087. "Hyperf\\DbConnection\\": "src/"
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "MIT"
  2093. ],
  2094. "description": "A hyperf db connection handler for hyperf/database.",
  2095. "homepage": "https://hyperf.io",
  2096. "keywords": [
  2097. "Connection",
  2098. "database",
  2099. "hyperf",
  2100. "php"
  2101. ],
  2102. "support": {
  2103. "docs": "https://hyperf.wiki",
  2104. "issues": "https://github.com/hyperf/hyperf/issues",
  2105. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2106. "source": "https://github.com/hyperf/hyperf"
  2107. },
  2108. "funding": [
  2109. {
  2110. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2111. "type": "custom"
  2112. },
  2113. {
  2114. "url": "https://opencollective.com/hyperf",
  2115. "type": "open_collective"
  2116. }
  2117. ],
  2118. "time": "2024-10-11T08:58:16+00:00"
  2119. },
  2120. {
  2121. "name": "hyperf/di",
  2122. "version": "v3.1.42",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/hyperf/di.git",
  2126. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2131. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2132. "shasum": ""
  2133. },
  2134. "require": {
  2135. "doctrine/instantiator": "^1.0",
  2136. "hyperf/code-parser": "~3.1.0",
  2137. "hyperf/pipeline": "~3.1.0",
  2138. "hyperf/stdlib": "~3.1.0",
  2139. "hyperf/support": "~3.1.0",
  2140. "nikic/php-parser": "^4.1",
  2141. "php": ">=8.1",
  2142. "php-di/phpdoc-reader": "^2.2",
  2143. "psr/container": "^1.0 || ^2.0",
  2144. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2145. "vlucas/phpdotenv": "^5.0"
  2146. },
  2147. "suggest": {
  2148. "ext-pcntl": "Required to scan annotations.",
  2149. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2150. },
  2151. "type": "library",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-master": "3.1-dev"
  2155. },
  2156. "hyperf": {
  2157. "config": "Hyperf\\Di\\ConfigProvider"
  2158. }
  2159. },
  2160. "autoload": {
  2161. "psr-4": {
  2162. "Hyperf\\Di\\": "src/"
  2163. }
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "description": "A DI for Hyperf.",
  2170. "homepage": "https://hyperf.io",
  2171. "keywords": [
  2172. "annotation",
  2173. "di",
  2174. "hyperf",
  2175. "php",
  2176. "swoole"
  2177. ],
  2178. "support": {
  2179. "docs": "https://hyperf.wiki",
  2180. "issues": "https://github.com/hyperf/hyperf/issues",
  2181. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2182. "source": "https://github.com/hyperf/hyperf"
  2183. },
  2184. "funding": [
  2185. {
  2186. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2187. "type": "custom"
  2188. },
  2189. {
  2190. "url": "https://opencollective.com/hyperf",
  2191. "type": "open_collective"
  2192. }
  2193. ],
  2194. "time": "2024-09-25T02:54:12+00:00"
  2195. },
  2196. {
  2197. "name": "hyperf/dispatcher",
  2198. "version": "v3.1.42",
  2199. "source": {
  2200. "type": "git",
  2201. "url": "https://github.com/hyperf/dispatcher.git",
  2202. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2203. },
  2204. "dist": {
  2205. "type": "zip",
  2206. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2207. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2208. "shasum": ""
  2209. },
  2210. "require": {
  2211. "hyperf/contract": "~3.1.0",
  2212. "php": ">=8.1",
  2213. "psr/container": "^1.0 || ^2.0",
  2214. "psr/http-message": "^1.0 || ^2.0",
  2215. "psr/http-server-middleware": "^1.0"
  2216. },
  2217. "type": "library",
  2218. "extra": {
  2219. "branch-alias": {
  2220. "dev-master": "3.1-dev"
  2221. },
  2222. "hyperf": {
  2223. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2224. }
  2225. },
  2226. "autoload": {
  2227. "psr-4": {
  2228. "Hyperf\\Dispatcher\\": "src/"
  2229. }
  2230. },
  2231. "notification-url": "https://packagist.org/downloads/",
  2232. "license": [
  2233. "MIT"
  2234. ],
  2235. "description": "A HTTP Server for Hyperf.",
  2236. "homepage": "https://hyperf.io",
  2237. "keywords": [
  2238. "dispatcher",
  2239. "filter",
  2240. "hyperf",
  2241. "middleware",
  2242. "php",
  2243. "swoole"
  2244. ],
  2245. "support": {
  2246. "docs": "https://hyperf.wiki",
  2247. "issues": "https://github.com/hyperf/hyperf/issues",
  2248. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2249. "source": "https://github.com/hyperf/hyperf"
  2250. },
  2251. "funding": [
  2252. {
  2253. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2254. "type": "custom"
  2255. },
  2256. {
  2257. "url": "https://opencollective.com/hyperf",
  2258. "type": "open_collective"
  2259. }
  2260. ],
  2261. "time": "2024-09-25T02:54:12+00:00"
  2262. },
  2263. {
  2264. "name": "hyperf/engine",
  2265. "version": "v2.12.0",
  2266. "source": {
  2267. "type": "git",
  2268. "url": "https://github.com/hyperf/engine.git",
  2269. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a"
  2270. },
  2271. "dist": {
  2272. "type": "zip",
  2273. "url": "https://api.github.com/repos/hyperf/engine/zipball/f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2274. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2275. "shasum": ""
  2276. },
  2277. "require": {
  2278. "hyperf/engine-contract": "~1.11.0",
  2279. "php": ">=8.0"
  2280. },
  2281. "conflict": {
  2282. "ext-swoole": "<5.0"
  2283. },
  2284. "require-dev": {
  2285. "friendsofphp/php-cs-fixer": "^3.0",
  2286. "hyperf/guzzle": "^3.0",
  2287. "hyperf/http-message": "^3.0",
  2288. "mockery/mockery": "^1.5",
  2289. "phpstan/phpstan": "^1.0",
  2290. "phpunit/phpunit": "^9.4",
  2291. "swoole/ide-helper": "5.*"
  2292. },
  2293. "suggest": {
  2294. "ext-sockets": "*",
  2295. "ext-swoole": ">=5.0",
  2296. "hyperf/http-message": "Required to use ResponseEmitter.",
  2297. "psr/http-message": "Required to use WebSocket Frame."
  2298. },
  2299. "type": "library",
  2300. "extra": {
  2301. "branch-alias": {
  2302. "dev-master": "2.12-dev"
  2303. },
  2304. "hyperf": {
  2305. "config": "Hyperf\\Engine\\ConfigProvider"
  2306. }
  2307. },
  2308. "autoload": {
  2309. "files": [
  2310. "src/Functions.php"
  2311. ],
  2312. "psr-4": {
  2313. "Hyperf\\Engine\\": "src/"
  2314. }
  2315. },
  2316. "notification-url": "https://packagist.org/downloads/",
  2317. "license": [
  2318. "MIT"
  2319. ],
  2320. "description": "Coroutine engine provided by swoole.",
  2321. "keywords": [
  2322. "engine",
  2323. "hyperf",
  2324. "php",
  2325. "swoole"
  2326. ],
  2327. "support": {
  2328. "issues": "https://github.com/hyperf/engine/issues",
  2329. "source": "https://github.com/hyperf/engine/tree/v2.12.0"
  2330. },
  2331. "funding": [
  2332. {
  2333. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2334. "type": "custom"
  2335. },
  2336. {
  2337. "url": "https://opencollective.com/hyperf",
  2338. "type": "open_collective"
  2339. }
  2340. ],
  2341. "time": "2024-11-19T04:32:29+00:00"
  2342. },
  2343. {
  2344. "name": "hyperf/engine-contract",
  2345. "version": "v1.11.0",
  2346. "source": {
  2347. "type": "git",
  2348. "url": "https://github.com/hyperf/engine-contract.git",
  2349. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2350. },
  2351. "dist": {
  2352. "type": "zip",
  2353. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2354. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2355. "shasum": ""
  2356. },
  2357. "require": {
  2358. "php": ">=8.0"
  2359. },
  2360. "require-dev": {
  2361. "friendsofphp/php-cs-fixer": "^3.0",
  2362. "mockery/mockery": "^1.0",
  2363. "phpstan/phpstan": "^1.0",
  2364. "phpunit/phpunit": ">=7.0",
  2365. "psr/http-message": "^1.0",
  2366. "swoole/ide-helper": "^4.5"
  2367. },
  2368. "suggest": {
  2369. "psr/http-message": "Required to use WebSocket Frame."
  2370. },
  2371. "type": "library",
  2372. "extra": {
  2373. "branch-alias": {
  2374. "dev-master": "1.9-dev"
  2375. }
  2376. },
  2377. "autoload": {
  2378. "psr-4": {
  2379. "Hyperf\\Engine\\Contract\\": "src/"
  2380. }
  2381. },
  2382. "notification-url": "https://packagist.org/downloads/",
  2383. "license": [
  2384. "MIT"
  2385. ],
  2386. "description": "Contract for Coroutine Engine",
  2387. "keywords": [
  2388. "contract",
  2389. "coroutine",
  2390. "engine",
  2391. "hyperf",
  2392. "php"
  2393. ],
  2394. "support": {
  2395. "issues": "https://github.com/hyperf/engine-contract/issues",
  2396. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2397. },
  2398. "funding": [
  2399. {
  2400. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2401. "type": "custom"
  2402. },
  2403. {
  2404. "url": "https://opencollective.com/hyperf",
  2405. "type": "open_collective"
  2406. }
  2407. ],
  2408. "time": "2024-11-19T04:15:31+00:00"
  2409. },
  2410. {
  2411. "name": "hyperf/event",
  2412. "version": "v3.1.42",
  2413. "source": {
  2414. "type": "git",
  2415. "url": "https://github.com/hyperf/event.git",
  2416. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2417. },
  2418. "dist": {
  2419. "type": "zip",
  2420. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2421. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2422. "shasum": ""
  2423. },
  2424. "require": {
  2425. "hyperf/contract": "~3.1.0",
  2426. "hyperf/stdlib": "~3.1.0",
  2427. "php": ">=8.1",
  2428. "psr/event-dispatcher": "^1.0"
  2429. },
  2430. "suggest": {
  2431. "hyperf/di": "Required to use annotatioins."
  2432. },
  2433. "type": "library",
  2434. "extra": {
  2435. "branch-alias": {
  2436. "dev-master": "3.1-dev"
  2437. },
  2438. "hyperf": {
  2439. "config": "Hyperf\\Event\\ConfigProvider"
  2440. }
  2441. },
  2442. "autoload": {
  2443. "psr-4": {
  2444. "Hyperf\\Event\\": "src/"
  2445. }
  2446. },
  2447. "notification-url": "https://packagist.org/downloads/",
  2448. "license": [
  2449. "MIT"
  2450. ],
  2451. "description": "an event manager that implements PSR-14.",
  2452. "homepage": "https://hyperf.io",
  2453. "keywords": [
  2454. "event",
  2455. "hyperf",
  2456. "php",
  2457. "swoole"
  2458. ],
  2459. "support": {
  2460. "docs": "https://hyperf.wiki",
  2461. "issues": "https://github.com/hyperf/hyperf/issues",
  2462. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2463. "source": "https://github.com/hyperf/hyperf"
  2464. },
  2465. "funding": [
  2466. {
  2467. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2468. "type": "custom"
  2469. },
  2470. {
  2471. "url": "https://opencollective.com/hyperf",
  2472. "type": "open_collective"
  2473. }
  2474. ],
  2475. "time": "2024-09-25T02:54:12+00:00"
  2476. },
  2477. {
  2478. "name": "hyperf/exception-handler",
  2479. "version": "v3.1.42",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/hyperf/exception-handler.git",
  2483. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2488. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2489. "shasum": ""
  2490. },
  2491. "require": {
  2492. "hyperf/context": "~3.1.0",
  2493. "hyperf/contract": "~3.1.0",
  2494. "hyperf/dispatcher": "~3.1.0",
  2495. "hyperf/http-message": "~3.1.0",
  2496. "hyperf/stdlib": "~3.1.0",
  2497. "hyperf/support": "~3.1.0",
  2498. "php": ">=8.1",
  2499. "psr/container": "^1.0 || ^2.0",
  2500. "psr/http-message": "^1.0 || ^2.0",
  2501. "swow/psr7-plus": "^1.0"
  2502. },
  2503. "suggest": {
  2504. "hyperf/di": "Required to use #[ExceptionHandler]",
  2505. "hyperf/event": "Required to use listeners",
  2506. "hyperf/framework": "Required to use listeners",
  2507. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2508. },
  2509. "type": "library",
  2510. "extra": {
  2511. "branch-alias": {
  2512. "dev-master": "3.1-dev"
  2513. },
  2514. "hyperf": {
  2515. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2516. }
  2517. },
  2518. "autoload": {
  2519. "psr-4": {
  2520. "Hyperf\\ExceptionHandler\\": "src/"
  2521. }
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "MIT"
  2526. ],
  2527. "description": "Exception handler for hyperf",
  2528. "homepage": "https://hyperf.io",
  2529. "keywords": [
  2530. "exception-handler",
  2531. "php",
  2532. "swoole"
  2533. ],
  2534. "support": {
  2535. "docs": "https://hyperf.wiki",
  2536. "issues": "https://github.com/hyperf/hyperf/issues",
  2537. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2538. "source": "https://github.com/hyperf/hyperf"
  2539. },
  2540. "funding": [
  2541. {
  2542. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2543. "type": "custom"
  2544. },
  2545. {
  2546. "url": "https://opencollective.com/hyperf",
  2547. "type": "open_collective"
  2548. }
  2549. ],
  2550. "time": "2024-09-25T02:54:12+00:00"
  2551. },
  2552. {
  2553. "name": "hyperf/framework",
  2554. "version": "v3.1.42",
  2555. "source": {
  2556. "type": "git",
  2557. "url": "https://github.com/hyperf/framework.git",
  2558. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2559. },
  2560. "dist": {
  2561. "type": "zip",
  2562. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2563. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2564. "shasum": ""
  2565. },
  2566. "require": {
  2567. "fig/http-message-util": "^1.1.2",
  2568. "hyperf/contract": "~3.1.0",
  2569. "hyperf/coordinator": "~3.1.0",
  2570. "hyperf/coroutine": "~3.1.0",
  2571. "php": ">=8.1",
  2572. "psr/container": "^1.0 || ^2.0",
  2573. "psr/event-dispatcher": "^1.0",
  2574. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2575. },
  2576. "suggest": {
  2577. "ext-swoole": "Required to use swoole engine.",
  2578. "hyperf/command": "Required to use Command annotation.",
  2579. "hyperf/di": "Required to use Command annotation.",
  2580. "hyperf/dispatcher": "Required to use BootApplication event.",
  2581. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2582. },
  2583. "type": "library",
  2584. "extra": {
  2585. "branch-alias": {
  2586. "dev-master": "3.1-dev"
  2587. },
  2588. "hyperf": {
  2589. "config": "Hyperf\\Framework\\ConfigProvider"
  2590. }
  2591. },
  2592. "autoload": {
  2593. "psr-4": {
  2594. "Hyperf\\Framework\\": "src/"
  2595. }
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2602. "homepage": "https://hyperf.io",
  2603. "keywords": [
  2604. "Microservice",
  2605. "framework",
  2606. "hyperf",
  2607. "middleware",
  2608. "php",
  2609. "swoole"
  2610. ],
  2611. "support": {
  2612. "docs": "https://hyperf.wiki",
  2613. "issues": "https://github.com/hyperf/hyperf/issues",
  2614. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2615. "source": "https://github.com/hyperf/hyperf"
  2616. },
  2617. "funding": [
  2618. {
  2619. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2620. "type": "custom"
  2621. },
  2622. {
  2623. "url": "https://opencollective.com/hyperf",
  2624. "type": "open_collective"
  2625. }
  2626. ],
  2627. "time": "2024-09-25T02:54:12+00:00"
  2628. },
  2629. {
  2630. "name": "hyperf/guzzle",
  2631. "version": "v3.1.42",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/hyperf/guzzle.git",
  2635. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2640. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2645. "php": ">=8.1",
  2646. "psr/container": "^1.0 || ^2.0",
  2647. "psr/http-message": "^1.0 || ^2.0"
  2648. },
  2649. "suggest": {
  2650. "ext-curl": "Required for CURL handler support",
  2651. "hyperf/pool": "Required to use pool handler."
  2652. },
  2653. "type": "library",
  2654. "extra": {
  2655. "branch-alias": {
  2656. "dev-master": "3.1-dev"
  2657. },
  2658. "hyperf": {
  2659. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2660. }
  2661. },
  2662. "autoload": {
  2663. "psr-4": {
  2664. "Hyperf\\Guzzle\\": "src/"
  2665. }
  2666. },
  2667. "notification-url": "https://packagist.org/downloads/",
  2668. "license": [
  2669. "MIT"
  2670. ],
  2671. "description": "Swoole coroutine handler for guzzle",
  2672. "keywords": [
  2673. "Guzzle",
  2674. "handler",
  2675. "php",
  2676. "swoole"
  2677. ],
  2678. "support": {
  2679. "issues": "https://github.com/hyperf/guzzle/issues",
  2680. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2681. },
  2682. "funding": [
  2683. {
  2684. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2685. "type": "custom"
  2686. },
  2687. {
  2688. "url": "https://opencollective.com/hyperf",
  2689. "type": "open_collective"
  2690. }
  2691. ],
  2692. "time": "2024-09-25T02:54:12+00:00"
  2693. },
  2694. {
  2695. "name": "hyperf/http-message",
  2696. "version": "v3.1.47",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/hyperf/http-message.git",
  2700. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/hyperf/http-message/zipball/53a7caa616ee7a196d2974348b1acbf75305bf7e",
  2705. "reference": "53a7caa616ee7a196d2974348b1acbf75305bf7e",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "hyperf/codec": "~3.1.0",
  2710. "hyperf/engine": "^2.11",
  2711. "hyperf/support": "~3.1.0",
  2712. "laminas/laminas-mime": "^2.7",
  2713. "php": ">=8.1",
  2714. "psr/http-message": "^1.0 || ^2.0",
  2715. "swow/psr7-plus": "^1.0"
  2716. },
  2717. "suggest": {
  2718. "psr/container": "Required to replace RequestParserInterface."
  2719. },
  2720. "type": "library",
  2721. "extra": {
  2722. "hyperf": {
  2723. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2724. },
  2725. "branch-alias": {
  2726. "dev-master": "3.1-dev"
  2727. }
  2728. },
  2729. "autoload": {
  2730. "psr-4": {
  2731. "Hyperf\\HttpMessage\\": "src/"
  2732. }
  2733. },
  2734. "notification-url": "https://packagist.org/downloads/",
  2735. "license": [
  2736. "MIT"
  2737. ],
  2738. "description": "microservice framework base on swoole",
  2739. "keywords": [
  2740. "http-message",
  2741. "hyperf",
  2742. "php",
  2743. "swoole"
  2744. ],
  2745. "support": {
  2746. "issues": "https://github.com/hyperf/http-message/issues",
  2747. "source": "https://github.com/hyperf/http-message/tree/v3.1.47"
  2748. },
  2749. "funding": [
  2750. {
  2751. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2752. "type": "custom"
  2753. },
  2754. {
  2755. "url": "https://opencollective.com/hyperf",
  2756. "type": "open_collective"
  2757. }
  2758. ],
  2759. "time": "2024-11-28T02:09:19+00:00"
  2760. },
  2761. {
  2762. "name": "hyperf/http-server",
  2763. "version": "v3.1.42",
  2764. "source": {
  2765. "type": "git",
  2766. "url": "https://github.com/hyperf/http-server.git",
  2767. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2768. },
  2769. "dist": {
  2770. "type": "zip",
  2771. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2772. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2773. "shasum": ""
  2774. },
  2775. "require": {
  2776. "hyperf/codec": "~3.1.0",
  2777. "hyperf/collection": "~3.1.0",
  2778. "hyperf/context": "~3.1.0",
  2779. "hyperf/contract": "~3.1.0",
  2780. "hyperf/coroutine": "~3.1.0",
  2781. "hyperf/dispatcher": "~3.1.0",
  2782. "hyperf/event": "~3.1.0",
  2783. "hyperf/exception-handler": "~3.1.0",
  2784. "hyperf/http-message": "~3.1.0",
  2785. "hyperf/macroable": "~3.1.0",
  2786. "hyperf/serializer": "~3.1.0",
  2787. "hyperf/server": "~3.1.0",
  2788. "hyperf/stdlib": "~3.1.0",
  2789. "hyperf/support": "~3.1.0",
  2790. "nikic/fast-route": "^1.3",
  2791. "php": ">=8.1",
  2792. "psr/container": "^1.0 || ^2.0",
  2793. "swow/psr7-plus": "^1.0"
  2794. },
  2795. "suggest": {
  2796. "hyperf/di": "Required to use annotations."
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "branch-alias": {
  2801. "dev-master": "3.1-dev"
  2802. },
  2803. "hyperf": {
  2804. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2805. }
  2806. },
  2807. "autoload": {
  2808. "psr-4": {
  2809. "Hyperf\\HttpServer\\": "src/"
  2810. }
  2811. },
  2812. "notification-url": "https://packagist.org/downloads/",
  2813. "license": [
  2814. "MIT"
  2815. ],
  2816. "description": "A HTTP Server for Hyperf.",
  2817. "homepage": "https://hyperf.io",
  2818. "keywords": [
  2819. "http",
  2820. "http-server",
  2821. "hyperf",
  2822. "php",
  2823. "swoole"
  2824. ],
  2825. "support": {
  2826. "docs": "https://hyperf.wiki",
  2827. "issues": "https://github.com/hyperf/hyperf/issues",
  2828. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2829. "source": "https://github.com/hyperf/hyperf"
  2830. },
  2831. "funding": [
  2832. {
  2833. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2834. "type": "custom"
  2835. },
  2836. {
  2837. "url": "https://opencollective.com/hyperf",
  2838. "type": "open_collective"
  2839. }
  2840. ],
  2841. "time": "2024-09-25T02:54:12+00:00"
  2842. },
  2843. {
  2844. "name": "hyperf/json-rpc",
  2845. "version": "v3.1.47",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/hyperf/json-rpc.git",
  2849. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2854. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "hyperf/codec": "~3.1.0",
  2859. "hyperf/context": "~3.1.0",
  2860. "hyperf/contract": "~3.1.0",
  2861. "hyperf/engine": "^2.0",
  2862. "hyperf/http-message": "~3.1.0",
  2863. "hyperf/load-balancer": "~3.1.0",
  2864. "hyperf/rpc": "~3.1.0",
  2865. "hyperf/serializer": "~3.1.0",
  2866. "hyperf/support": "~3.1.0",
  2867. "hyperf/utils": "~3.1.0",
  2868. "php": ">=8.1",
  2869. "psr/container": "^1.0 || ^2.0",
  2870. "swow/psr7-plus": "^1.0"
  2871. },
  2872. "suggest": {
  2873. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2874. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2875. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2876. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2877. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2878. },
  2879. "type": "library",
  2880. "extra": {
  2881. "hyperf": {
  2882. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2883. },
  2884. "branch-alias": {
  2885. "dev-master": "3.1-dev"
  2886. }
  2887. },
  2888. "autoload": {
  2889. "psr-4": {
  2890. "Hyperf\\JsonRpc\\": "src/"
  2891. }
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2898. "homepage": "https://hyperf.io",
  2899. "keywords": [
  2900. "hyperf",
  2901. "json-rpc",
  2902. "php",
  2903. "swoole"
  2904. ],
  2905. "support": {
  2906. "docs": "https://hyperf.wiki",
  2907. "issues": "https://github.com/hyperf/hyperf/issues",
  2908. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2909. "source": "https://github.com/hyperf/hyperf"
  2910. },
  2911. "funding": [
  2912. {
  2913. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2914. "type": "custom"
  2915. },
  2916. {
  2917. "url": "https://opencollective.com/hyperf",
  2918. "type": "open_collective"
  2919. }
  2920. ],
  2921. "time": "2024-11-28T01:51:55+00:00"
  2922. },
  2923. {
  2924. "name": "hyperf/load-balancer",
  2925. "version": "v3.1.42",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://github.com/hyperf/load-balancer.git",
  2929. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2934. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2935. "shasum": ""
  2936. },
  2937. "require": {
  2938. "hyperf/coordinator": "~3.1.0",
  2939. "hyperf/coroutine": "~3.1.0",
  2940. "markrogoyski/math-php": "^2.0",
  2941. "php": ">=8.1",
  2942. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2943. },
  2944. "type": "library",
  2945. "extra": {
  2946. "branch-alias": {
  2947. "dev-master": "3.1-dev"
  2948. },
  2949. "hyperf": {
  2950. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2951. }
  2952. },
  2953. "autoload": {
  2954. "psr-4": {
  2955. "Hyperf\\LoadBalancer\\": "src/"
  2956. }
  2957. },
  2958. "notification-url": "https://packagist.org/downloads/",
  2959. "license": [
  2960. "MIT"
  2961. ],
  2962. "description": "A load balancer library for Hyperf.",
  2963. "homepage": "https://hyperf.io",
  2964. "keywords": [
  2965. "hyperf",
  2966. "load-balancer",
  2967. "php",
  2968. "swoole"
  2969. ],
  2970. "support": {
  2971. "docs": "https://hyperf.wiki",
  2972. "issues": "https://github.com/hyperf/hyperf/issues",
  2973. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2974. "source": "https://github.com/hyperf/hyperf"
  2975. },
  2976. "funding": [
  2977. {
  2978. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2979. "type": "custom"
  2980. },
  2981. {
  2982. "url": "https://opencollective.com/hyperf",
  2983. "type": "open_collective"
  2984. }
  2985. ],
  2986. "time": "2024-09-25T02:54:12+00:00"
  2987. },
  2988. {
  2989. "name": "hyperf/logger",
  2990. "version": "v3.1.42",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/hyperf/logger.git",
  2994. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2999. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "hyperf/contract": "~3.1.0",
  3004. "hyperf/support": "~3.1.0",
  3005. "hyperf/utils": "~3.1.0",
  3006. "monolog/monolog": "^2.7 || ^3.1",
  3007. "php": ">=8.1",
  3008. "psr/container": "^1.0 || ^2.0",
  3009. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3010. },
  3011. "type": "library",
  3012. "extra": {
  3013. "branch-alias": {
  3014. "dev-master": "3.1-dev"
  3015. },
  3016. "hyperf": {
  3017. "config": "Hyperf\\Logger\\ConfigProvider"
  3018. }
  3019. },
  3020. "autoload": {
  3021. "psr-4": {
  3022. "Hyperf\\Logger\\": "src/"
  3023. }
  3024. },
  3025. "notification-url": "https://packagist.org/downloads/",
  3026. "license": [
  3027. "MIT"
  3028. ],
  3029. "description": "A logger component for hyperf.",
  3030. "homepage": "https://hyperf.io",
  3031. "keywords": [
  3032. "hyperf",
  3033. "logger",
  3034. "php"
  3035. ],
  3036. "support": {
  3037. "docs": "https://hyperf.wiki",
  3038. "issues": "https://github.com/hyperf/hyperf/issues",
  3039. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3040. "source": "https://github.com/hyperf/hyperf"
  3041. },
  3042. "funding": [
  3043. {
  3044. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3045. "type": "custom"
  3046. },
  3047. {
  3048. "url": "https://opencollective.com/hyperf",
  3049. "type": "open_collective"
  3050. }
  3051. ],
  3052. "time": "2024-09-25T02:54:12+00:00"
  3053. },
  3054. {
  3055. "name": "hyperf/macroable",
  3056. "version": "v3.1.42",
  3057. "source": {
  3058. "type": "git",
  3059. "url": "https://github.com/hyperf/macroable.git",
  3060. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3061. },
  3062. "dist": {
  3063. "type": "zip",
  3064. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3065. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3066. "shasum": ""
  3067. },
  3068. "require": {
  3069. "php": ">=8.1"
  3070. },
  3071. "type": "library",
  3072. "extra": {
  3073. "branch-alias": {
  3074. "dev-master": "3.1-dev"
  3075. }
  3076. },
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Hyperf\\Macroable\\": "src/"
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3087. "homepage": "https://hyperf.io",
  3088. "keywords": [
  3089. "hyperf",
  3090. "macroable",
  3091. "php",
  3092. "swoole"
  3093. ],
  3094. "support": {
  3095. "docs": "https://hyperf.wiki",
  3096. "issues": "https://github.com/hyperf/hyperf/issues",
  3097. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3098. "source": "https://github.com/hyperf/hyperf"
  3099. },
  3100. "funding": [
  3101. {
  3102. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3103. "type": "custom"
  3104. },
  3105. {
  3106. "url": "https://opencollective.com/hyperf",
  3107. "type": "open_collective"
  3108. }
  3109. ],
  3110. "time": "2024-09-25T02:54:12+00:00"
  3111. },
  3112. {
  3113. "name": "hyperf/memory",
  3114. "version": "v3.1.42",
  3115. "source": {
  3116. "type": "git",
  3117. "url": "https://github.com/hyperf/memory.git",
  3118. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3119. },
  3120. "dist": {
  3121. "type": "zip",
  3122. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3123. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3124. "shasum": ""
  3125. },
  3126. "require": {
  3127. "php": ">=8.1"
  3128. },
  3129. "type": "library",
  3130. "extra": {
  3131. "branch-alias": {
  3132. "dev-master": "3.1-dev"
  3133. },
  3134. "hyperf": {
  3135. "config": "Hyperf\\Memory\\ConfigProvider"
  3136. }
  3137. },
  3138. "autoload": {
  3139. "psr-4": {
  3140. "Hyperf\\Memory\\": "src/"
  3141. }
  3142. },
  3143. "notification-url": "https://packagist.org/downloads/",
  3144. "license": [
  3145. "MIT"
  3146. ],
  3147. "description": "An independent component that use to operate and manage memory.",
  3148. "homepage": "https://hyperf.io",
  3149. "keywords": [
  3150. "hyperf",
  3151. "memory",
  3152. "php",
  3153. "swoole"
  3154. ],
  3155. "support": {
  3156. "docs": "https://hyperf.wiki",
  3157. "issues": "https://github.com/hyperf/hyperf/issues",
  3158. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3159. "source": "https://github.com/hyperf/hyperf"
  3160. },
  3161. "funding": [
  3162. {
  3163. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3164. "type": "custom"
  3165. },
  3166. {
  3167. "url": "https://opencollective.com/hyperf",
  3168. "type": "open_collective"
  3169. }
  3170. ],
  3171. "time": "2024-09-25T02:54:12+00:00"
  3172. },
  3173. {
  3174. "name": "hyperf/model-listener",
  3175. "version": "v3.1.42",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/hyperf/model-listener.git",
  3179. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3184. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3185. "shasum": ""
  3186. },
  3187. "require": {
  3188. "hyperf/contract": "~3.1.0",
  3189. "hyperf/database": "~3.1.0",
  3190. "hyperf/di": "~3.1.0",
  3191. "hyperf/event": "~3.1.0",
  3192. "hyperf/support": "~3.1.0",
  3193. "hyperf/utils": "~3.1.0",
  3194. "php": ">=8.1",
  3195. "psr/container": "^1.0 || ^2.0"
  3196. },
  3197. "type": "library",
  3198. "extra": {
  3199. "branch-alias": {
  3200. "dev-master": "3.1-dev"
  3201. },
  3202. "hyperf": {
  3203. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3204. }
  3205. },
  3206. "autoload": {
  3207. "psr-4": {
  3208. "Hyperf\\ModelListener\\": "src/"
  3209. }
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "MIT"
  3214. ],
  3215. "description": "A model listener for Hyperf.",
  3216. "homepage": "https://hyperf.io",
  3217. "keywords": [
  3218. "hyperf",
  3219. "model-listener",
  3220. "php",
  3221. "swoole"
  3222. ],
  3223. "support": {
  3224. "docs": "https://hyperf.wiki",
  3225. "issues": "https://github.com/hyperf/hyperf/issues",
  3226. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3227. "source": "https://github.com/hyperf/hyperf"
  3228. },
  3229. "funding": [
  3230. {
  3231. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3232. "type": "custom"
  3233. },
  3234. {
  3235. "url": "https://opencollective.com/hyperf",
  3236. "type": "open_collective"
  3237. }
  3238. ],
  3239. "time": "2024-09-25T02:54:12+00:00"
  3240. },
  3241. {
  3242. "name": "hyperf/nacos",
  3243. "version": "v3.1.42",
  3244. "source": {
  3245. "type": "git",
  3246. "url": "https://github.com/hyperf/nacos.git",
  3247. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3248. },
  3249. "dist": {
  3250. "type": "zip",
  3251. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3252. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3253. "shasum": ""
  3254. },
  3255. "require": {
  3256. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3257. "hyperf/codec": "~3.1.0",
  3258. "hyperf/contract": "~3.1.0",
  3259. "hyperf/support": "~3.1.0",
  3260. "hyperf/utils": "~3.1.0",
  3261. "jetbrains/phpstorm-attributes": "^1.0",
  3262. "php": ">=8.1"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "3.1-dev"
  3268. },
  3269. "hyperf": {
  3270. "config": "Hyperf\\Nacos\\ConfigProvider"
  3271. }
  3272. },
  3273. "autoload": {
  3274. "psr-4": {
  3275. "Hyperf\\Nacos\\": "src/"
  3276. }
  3277. },
  3278. "notification-url": "https://packagist.org/downloads/",
  3279. "license": [
  3280. "MIT"
  3281. ],
  3282. "description": "Nacos SDK",
  3283. "keywords": [
  3284. "hyperf",
  3285. "nacos",
  3286. "php"
  3287. ],
  3288. "support": {
  3289. "issues": "https://github.com/hyperf/nacos/issues",
  3290. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3291. },
  3292. "funding": [
  3293. {
  3294. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3295. "type": "custom"
  3296. },
  3297. {
  3298. "url": "https://opencollective.com/hyperf",
  3299. "type": "open_collective"
  3300. }
  3301. ],
  3302. "time": "2024-09-25T02:54:12+00:00"
  3303. },
  3304. {
  3305. "name": "hyperf/pipeline",
  3306. "version": "v3.1.42",
  3307. "source": {
  3308. "type": "git",
  3309. "url": "https://github.com/hyperf/pipeline.git",
  3310. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3311. },
  3312. "dist": {
  3313. "type": "zip",
  3314. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3315. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3316. "shasum": ""
  3317. },
  3318. "require": {
  3319. "php": ">=8.1",
  3320. "psr/container": "^1.0 || ^2.0"
  3321. },
  3322. "type": "library",
  3323. "extra": {
  3324. "branch-alias": {
  3325. "dev-master": "3.1-dev"
  3326. }
  3327. },
  3328. "autoload": {
  3329. "psr-4": {
  3330. "Hyperf\\Pipeline\\": "src/"
  3331. }
  3332. },
  3333. "notification-url": "https://packagist.org/downloads/",
  3334. "license": [
  3335. "MIT"
  3336. ],
  3337. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3338. "homepage": "https://hyperf.io",
  3339. "keywords": [
  3340. "hyperf",
  3341. "php",
  3342. "pipeline",
  3343. "swoole"
  3344. ],
  3345. "support": {
  3346. "docs": "https://hyperf.wiki",
  3347. "issues": "https://github.com/hyperf/hyperf/issues",
  3348. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3349. "source": "https://github.com/hyperf/hyperf"
  3350. },
  3351. "funding": [
  3352. {
  3353. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3354. "type": "custom"
  3355. },
  3356. {
  3357. "url": "https://opencollective.com/hyperf",
  3358. "type": "open_collective"
  3359. }
  3360. ],
  3361. "time": "2024-09-25T02:54:12+00:00"
  3362. },
  3363. {
  3364. "name": "hyperf/pool",
  3365. "version": "v3.1.42",
  3366. "source": {
  3367. "type": "git",
  3368. "url": "https://github.com/hyperf/pool.git",
  3369. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3370. },
  3371. "dist": {
  3372. "type": "zip",
  3373. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3374. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3375. "shasum": ""
  3376. },
  3377. "require": {
  3378. "hyperf/contract": "~3.1.0",
  3379. "hyperf/support": "~3.1.0",
  3380. "hyperf/utils": "~3.1.0",
  3381. "php": ">=8.1",
  3382. "psr/container": "^1.0 || ^2.0"
  3383. },
  3384. "suggest": {
  3385. "psr/event-dispatcher": "Required to use events."
  3386. },
  3387. "type": "library",
  3388. "extra": {
  3389. "branch-alias": {
  3390. "dev-master": "3.1-dev"
  3391. },
  3392. "hyperf": {
  3393. "config": "Hyperf\\Pool\\ConfigProvider"
  3394. }
  3395. },
  3396. "autoload": {
  3397. "psr-4": {
  3398. "Hyperf\\Pool\\": "src/"
  3399. }
  3400. },
  3401. "notification-url": "https://packagist.org/downloads/",
  3402. "license": [
  3403. "MIT"
  3404. ],
  3405. "description": "An independent universal connection pool component.",
  3406. "homepage": "https://hyperf.io",
  3407. "keywords": [
  3408. "connection-pool",
  3409. "hyperf",
  3410. "php",
  3411. "swoole"
  3412. ],
  3413. "support": {
  3414. "docs": "https://hyperf.wiki",
  3415. "issues": "https://github.com/hyperf/hyperf/issues",
  3416. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3417. "source": "https://github.com/hyperf/hyperf"
  3418. },
  3419. "funding": [
  3420. {
  3421. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3422. "type": "custom"
  3423. },
  3424. {
  3425. "url": "https://opencollective.com/hyperf",
  3426. "type": "open_collective"
  3427. }
  3428. ],
  3429. "time": "2024-09-25T02:54:12+00:00"
  3430. },
  3431. {
  3432. "name": "hyperf/process",
  3433. "version": "v3.1.42",
  3434. "source": {
  3435. "type": "git",
  3436. "url": "https://github.com/hyperf/process.git",
  3437. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3438. },
  3439. "dist": {
  3440. "type": "zip",
  3441. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3442. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3443. "shasum": ""
  3444. },
  3445. "require": {
  3446. "hyperf/contract": "~3.1.0",
  3447. "hyperf/support": "~3.1.0",
  3448. "hyperf/utils": "~3.1.0",
  3449. "php": ">=8.1",
  3450. "psr/container": "^1.0 || ^2.0",
  3451. "psr/event-dispatcher": "^1.0"
  3452. },
  3453. "suggest": {
  3454. "hyperf/di": "Required to use annotations.",
  3455. "hyperf/event": "Required to dump the message before and after process.",
  3456. "hyperf/framework": "Required to use BootProcessListener."
  3457. },
  3458. "type": "library",
  3459. "extra": {
  3460. "hyperf": {
  3461. "config": "Hyperf\\Process\\ConfigProvider"
  3462. },
  3463. "branch-alias": {
  3464. "dev-master": "3.1-dev"
  3465. }
  3466. },
  3467. "autoload": {
  3468. "psr-4": {
  3469. "Hyperf\\Process\\": "src/"
  3470. }
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "description": "A process component for hyperf.",
  3477. "homepage": "https://hyperf.io",
  3478. "keywords": [
  3479. "hyperf",
  3480. "php",
  3481. "process"
  3482. ],
  3483. "support": {
  3484. "docs": "https://hyperf.wiki",
  3485. "issues": "https://github.com/hyperf/hyperf/issues",
  3486. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3487. "source": "https://github.com/hyperf/hyperf"
  3488. },
  3489. "funding": [
  3490. {
  3491. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3492. "type": "custom"
  3493. },
  3494. {
  3495. "url": "https://opencollective.com/hyperf",
  3496. "type": "open_collective"
  3497. }
  3498. ],
  3499. "time": "2024-09-25T02:54:12+00:00"
  3500. },
  3501. {
  3502. "name": "hyperf/redis",
  3503. "version": "v3.1.42",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/hyperf/redis.git",
  3507. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3512. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "ext-redis": "^5.0 || ^6.0",
  3517. "hyperf/contract": "~3.1.0",
  3518. "hyperf/pool": "~3.1.0",
  3519. "hyperf/support": "~3.1.0",
  3520. "hyperf/tappable": "~3.1.0",
  3521. "hyperf/utils": "~3.1.0",
  3522. "php": ">=8.1",
  3523. "psr/container": "^1.0 || ^2.0"
  3524. },
  3525. "suggest": {
  3526. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3527. "hyperf/di": "Create the RedisPool via dependency injection."
  3528. },
  3529. "type": "library",
  3530. "extra": {
  3531. "branch-alias": {
  3532. "dev-master": "3.1-dev"
  3533. },
  3534. "hyperf": {
  3535. "config": "Hyperf\\Redis\\ConfigProvider"
  3536. }
  3537. },
  3538. "autoload": {
  3539. "psr-4": {
  3540. "Hyperf\\Redis\\": "src/"
  3541. }
  3542. },
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "description": "A redis component for hyperf.",
  3548. "homepage": "https://hyperf.io",
  3549. "keywords": [
  3550. "hyperf",
  3551. "php",
  3552. "pool",
  3553. "redis"
  3554. ],
  3555. "support": {
  3556. "docs": "https://hyperf.wiki",
  3557. "issues": "https://github.com/hyperf/hyperf/issues",
  3558. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3559. "source": "https://github.com/hyperf/hyperf"
  3560. },
  3561. "funding": [
  3562. {
  3563. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3564. "type": "custom"
  3565. },
  3566. {
  3567. "url": "https://opencollective.com/hyperf",
  3568. "type": "open_collective"
  3569. }
  3570. ],
  3571. "time": "2024-09-25T02:54:12+00:00"
  3572. },
  3573. {
  3574. "name": "hyperf/rpc",
  3575. "version": "v3.1.42",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://github.com/hyperf/rpc.git",
  3579. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3580. },
  3581. "dist": {
  3582. "type": "zip",
  3583. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3584. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3585. "shasum": ""
  3586. },
  3587. "require": {
  3588. "hyperf/codec": "~3.1.0",
  3589. "hyperf/contract": "~3.1.0",
  3590. "hyperf/support": "~3.1.0",
  3591. "jetbrains/phpstorm-attributes": "^1.0",
  3592. "php": ">=8.1"
  3593. },
  3594. "type": "library",
  3595. "extra": {
  3596. "branch-alias": {
  3597. "dev-master": "3.1-dev"
  3598. },
  3599. "hyperf": []
  3600. },
  3601. "autoload": {
  3602. "psr-4": {
  3603. "Hyperf\\Rpc\\": "src/"
  3604. }
  3605. },
  3606. "notification-url": "https://packagist.org/downloads/",
  3607. "license": [
  3608. "MIT"
  3609. ],
  3610. "description": "A rpc basic library for Hyperf.",
  3611. "homepage": "https://hyperf.io",
  3612. "keywords": [
  3613. "hyperf",
  3614. "php",
  3615. "rpc",
  3616. "swoole"
  3617. ],
  3618. "support": {
  3619. "docs": "https://hyperf.wiki",
  3620. "issues": "https://github.com/hyperf/hyperf/issues",
  3621. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3622. "source": "https://github.com/hyperf/hyperf"
  3623. },
  3624. "funding": [
  3625. {
  3626. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3627. "type": "custom"
  3628. },
  3629. {
  3630. "url": "https://opencollective.com/hyperf",
  3631. "type": "open_collective"
  3632. }
  3633. ],
  3634. "time": "2024-09-25T02:54:12+00:00"
  3635. },
  3636. {
  3637. "name": "hyperf/rpc-server",
  3638. "version": "v3.1.42",
  3639. "source": {
  3640. "type": "git",
  3641. "url": "https://github.com/hyperf/rpc-server.git",
  3642. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3643. },
  3644. "dist": {
  3645. "type": "zip",
  3646. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3647. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3648. "shasum": ""
  3649. },
  3650. "require": {
  3651. "hyperf/http-server": "~3.1.0",
  3652. "hyperf/rpc": "~3.1.0",
  3653. "php": ">=8.1"
  3654. },
  3655. "suggest": {
  3656. "hyperf/di": "Required to use annotations."
  3657. },
  3658. "type": "library",
  3659. "extra": {
  3660. "branch-alias": {
  3661. "dev-master": "3.1-dev"
  3662. },
  3663. "hyperf": {
  3664. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3665. }
  3666. },
  3667. "autoload": {
  3668. "psr-4": {
  3669. "Hyperf\\RpcServer\\": "src/"
  3670. }
  3671. },
  3672. "notification-url": "https://packagist.org/downloads/",
  3673. "license": [
  3674. "MIT"
  3675. ],
  3676. "description": "An abstract rpc server component for Hyperf.",
  3677. "homepage": "https://hyperf.io",
  3678. "keywords": [
  3679. "hyperf",
  3680. "php",
  3681. "rpc",
  3682. "rpc-server",
  3683. "swoole"
  3684. ],
  3685. "support": {
  3686. "docs": "https://hyperf.wiki",
  3687. "issues": "https://github.com/hyperf/hyperf/issues",
  3688. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3689. "source": "https://github.com/hyperf/hyperf"
  3690. },
  3691. "funding": [
  3692. {
  3693. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3694. "type": "custom"
  3695. },
  3696. {
  3697. "url": "https://opencollective.com/hyperf",
  3698. "type": "open_collective"
  3699. }
  3700. ],
  3701. "time": "2024-09-25T02:54:12+00:00"
  3702. },
  3703. {
  3704. "name": "hyperf/serializer",
  3705. "version": "v3.1.42",
  3706. "source": {
  3707. "type": "git",
  3708. "url": "https://github.com/hyperf/serializer.git",
  3709. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3710. },
  3711. "dist": {
  3712. "type": "zip",
  3713. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3714. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3715. "shasum": ""
  3716. },
  3717. "require": {
  3718. "hyperf/contract": "~3.1.0",
  3719. "php": ">=8.1"
  3720. },
  3721. "suggest": {
  3722. "hyperf/di": "Required to use ExceptionNormalizer",
  3723. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3724. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "branch-alias": {
  3729. "dev-master": "3.1-dev"
  3730. },
  3731. "hyperf": {
  3732. "config": "Hyperf\\Serializer\\ConfigProvider"
  3733. }
  3734. },
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Hyperf\\Serializer\\": "src/"
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "description": "A serializer component for Hyperf.",
  3745. "homepage": "https://hyperf.io",
  3746. "keywords": [
  3747. "hyperf",
  3748. "php",
  3749. "swoole",
  3750. "tappable"
  3751. ],
  3752. "support": {
  3753. "docs": "https://hyperf.wiki",
  3754. "issues": "https://github.com/hyperf/hyperf/issues",
  3755. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3756. "source": "https://github.com/hyperf/hyperf"
  3757. },
  3758. "funding": [
  3759. {
  3760. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3761. "type": "custom"
  3762. },
  3763. {
  3764. "url": "https://opencollective.com/hyperf",
  3765. "type": "open_collective"
  3766. }
  3767. ],
  3768. "time": "2024-09-25T02:54:12+00:00"
  3769. },
  3770. {
  3771. "name": "hyperf/server",
  3772. "version": "v3.1.42",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/hyperf/server.git",
  3776. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3781. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3782. "shasum": ""
  3783. },
  3784. "require": {
  3785. "hyperf/contract": "~3.1.0",
  3786. "hyperf/coordinator": "~3.1.0",
  3787. "hyperf/engine": "^2.8",
  3788. "hyperf/support": "~3.1.0",
  3789. "hyperf/tappable": "~3.1.0",
  3790. "php": ">=8.1",
  3791. "psr/container": "^1.0 || ^2.0",
  3792. "psr/event-dispatcher": "^1.0",
  3793. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3794. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3795. },
  3796. "suggest": {
  3797. "hyperf/event": "Dump the info after server start.",
  3798. "hyperf/framework": "Dump the info after server start."
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-master": "3.1-dev"
  3804. },
  3805. "hyperf": {
  3806. "config": "Hyperf\\Server\\ConfigProvider"
  3807. }
  3808. },
  3809. "autoload": {
  3810. "psr-4": {
  3811. "Hyperf\\Server\\": "src/"
  3812. }
  3813. },
  3814. "notification-url": "https://packagist.org/downloads/",
  3815. "license": [
  3816. "MIT"
  3817. ],
  3818. "description": "A base server library for Hyperf.",
  3819. "homepage": "https://hyperf.io",
  3820. "keywords": [
  3821. "hyperf",
  3822. "php",
  3823. "server",
  3824. "swoole"
  3825. ],
  3826. "support": {
  3827. "docs": "https://hyperf.wiki",
  3828. "issues": "https://github.com/hyperf/hyperf/issues",
  3829. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3830. "source": "https://github.com/hyperf/hyperf"
  3831. },
  3832. "funding": [
  3833. {
  3834. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3835. "type": "custom"
  3836. },
  3837. {
  3838. "url": "https://opencollective.com/hyperf",
  3839. "type": "open_collective"
  3840. }
  3841. ],
  3842. "time": "2024-09-25T02:54:12+00:00"
  3843. },
  3844. {
  3845. "name": "hyperf/service-governance",
  3846. "version": "v3.1.42",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/hyperf/service-governance.git",
  3850. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3855. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "hyperf/contract": "~3.1.0",
  3860. "hyperf/support": "~3.1.0",
  3861. "jetbrains/phpstorm-attributes": "^1.0",
  3862. "php": ">=8.1"
  3863. },
  3864. "suggest": {
  3865. "hyperf/event": "Required to use RegisterServiceListener.",
  3866. "hyperf/framework": "Required to use RegisterServiceListener.",
  3867. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3868. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3869. },
  3870. "type": "library",
  3871. "extra": {
  3872. "branch-alias": {
  3873. "dev-master": "3.1-dev"
  3874. },
  3875. "hyperf": {
  3876. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3877. }
  3878. },
  3879. "autoload": {
  3880. "psr-4": {
  3881. "Hyperf\\ServiceGovernance\\": "src/"
  3882. }
  3883. },
  3884. "notification-url": "https://packagist.org/downloads/",
  3885. "license": [
  3886. "MIT"
  3887. ],
  3888. "description": "A service governance component for Hyperf.",
  3889. "homepage": "https://hyperf.io",
  3890. "keywords": [
  3891. "hyperf",
  3892. "php",
  3893. "service-governance",
  3894. "swoole"
  3895. ],
  3896. "support": {
  3897. "docs": "https://hyperf.wiki",
  3898. "issues": "https://github.com/hyperf/hyperf/issues",
  3899. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3900. "source": "https://github.com/hyperf/hyperf"
  3901. },
  3902. "funding": [
  3903. {
  3904. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3905. "type": "custom"
  3906. },
  3907. {
  3908. "url": "https://opencollective.com/hyperf",
  3909. "type": "open_collective"
  3910. }
  3911. ],
  3912. "time": "2024-09-25T02:54:12+00:00"
  3913. },
  3914. {
  3915. "name": "hyperf/service-governance-consul",
  3916. "version": "v3.1.42",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/hyperf/service-governance-consul.git",
  3920. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3925. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3926. "shasum": ""
  3927. },
  3928. "require": {
  3929. "hyperf/consul": "~3.1.0",
  3930. "hyperf/contract": "~3.1.0",
  3931. "hyperf/service-governance": "~3.1.0",
  3932. "hyperf/support": "~3.1.0",
  3933. "hyperf/utils": "~3.1.0",
  3934. "php": ">=8.1"
  3935. },
  3936. "type": "library",
  3937. "extra": {
  3938. "branch-alias": {
  3939. "dev-master": "3.1-dev"
  3940. },
  3941. "hyperf": {
  3942. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3943. }
  3944. },
  3945. "autoload": {
  3946. "psr-4": {
  3947. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3948. }
  3949. },
  3950. "notification-url": "https://packagist.org/downloads/",
  3951. "license": [
  3952. "MIT"
  3953. ],
  3954. "description": "A consul adapter for service governance.",
  3955. "homepage": "https://hyperf.io",
  3956. "keywords": [
  3957. "consul-adapter",
  3958. "hyperf",
  3959. "php",
  3960. "service-governance",
  3961. "swoole"
  3962. ],
  3963. "support": {
  3964. "docs": "https://hyperf.wiki",
  3965. "issues": "https://github.com/hyperf/hyperf/issues",
  3966. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3967. "source": "https://github.com/hyperf/hyperf"
  3968. },
  3969. "funding": [
  3970. {
  3971. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3972. "type": "custom"
  3973. },
  3974. {
  3975. "url": "https://opencollective.com/hyperf",
  3976. "type": "open_collective"
  3977. }
  3978. ],
  3979. "time": "2024-09-25T02:54:12+00:00"
  3980. },
  3981. {
  3982. "name": "hyperf/service-governance-nacos",
  3983. "version": "v3.1.42",
  3984. "source": {
  3985. "type": "git",
  3986. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3987. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  3988. },
  3989. "dist": {
  3990. "type": "zip",
  3991. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  3992. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  3993. "shasum": ""
  3994. },
  3995. "require": {
  3996. "hyperf/codec": "~3.1.0",
  3997. "hyperf/contract": "~3.1.0",
  3998. "hyperf/nacos": "~3.1.0",
  3999. "hyperf/service-governance": "~3.1.0",
  4000. "hyperf/support": "~3.1.0",
  4001. "hyperf/utils": "~3.1.0",
  4002. "php": ">=8.1"
  4003. },
  4004. "type": "library",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-master": "3.1-dev"
  4008. },
  4009. "hyperf": {
  4010. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4011. }
  4012. },
  4013. "autoload": {
  4014. "psr-4": {
  4015. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4016. }
  4017. },
  4018. "notification-url": "https://packagist.org/downloads/",
  4019. "license": [
  4020. "MIT"
  4021. ],
  4022. "description": "A nacos adapter for service governance.",
  4023. "homepage": "https://hyperf.io",
  4024. "keywords": [
  4025. "hyperf",
  4026. "nacos-adapter",
  4027. "php",
  4028. "service-governance",
  4029. "swoole"
  4030. ],
  4031. "support": {
  4032. "docs": "https://hyperf.wiki",
  4033. "issues": "https://github.com/hyperf/hyperf/issues",
  4034. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4035. "source": "https://github.com/hyperf/hyperf"
  4036. },
  4037. "funding": [
  4038. {
  4039. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4040. "type": "custom"
  4041. },
  4042. {
  4043. "url": "https://opencollective.com/hyperf",
  4044. "type": "open_collective"
  4045. }
  4046. ],
  4047. "time": "2024-09-25T02:54:12+00:00"
  4048. },
  4049. {
  4050. "name": "hyperf/stdlib",
  4051. "version": "v3.1.42",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/hyperf/stdlib.git",
  4055. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4060. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4061. "shasum": ""
  4062. },
  4063. "require": {
  4064. "php": ">=8.1"
  4065. },
  4066. "type": "library",
  4067. "extra": {
  4068. "branch-alias": {
  4069. "dev-master": "3.1-dev"
  4070. }
  4071. },
  4072. "autoload": {
  4073. "psr-4": {
  4074. "Hyperf\\Stdlib\\": "src/"
  4075. }
  4076. },
  4077. "notification-url": "https://packagist.org/downloads/",
  4078. "license": [
  4079. "MIT"
  4080. ],
  4081. "description": "A stdlib component for Hyperf.",
  4082. "homepage": "https://hyperf.io",
  4083. "keywords": [
  4084. "hyperf",
  4085. "php",
  4086. "stdlib",
  4087. "swoole"
  4088. ],
  4089. "support": {
  4090. "docs": "https://hyperf.wiki",
  4091. "issues": "https://github.com/hyperf/hyperf/issues",
  4092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4093. "source": "https://github.com/hyperf/hyperf"
  4094. },
  4095. "funding": [
  4096. {
  4097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4098. "type": "custom"
  4099. },
  4100. {
  4101. "url": "https://opencollective.com/hyperf",
  4102. "type": "open_collective"
  4103. }
  4104. ],
  4105. "time": "2024-09-25T02:54:12+00:00"
  4106. },
  4107. {
  4108. "name": "hyperf/stringable",
  4109. "version": "v3.1.43",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://github.com/hyperf/stringable.git",
  4113. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4118. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4119. "shasum": ""
  4120. },
  4121. "require": {
  4122. "ext-mbstring": "*",
  4123. "hyperf/collection": "~3.1.0",
  4124. "hyperf/conditionable": "~3.1.0",
  4125. "hyperf/macroable": "~3.1.0",
  4126. "hyperf/tappable": "~3.1.0",
  4127. "php": ">=8.1"
  4128. },
  4129. "suggest": {
  4130. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4131. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4132. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "3.1-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "files": [
  4142. "src/Functions.php"
  4143. ],
  4144. "psr-4": {
  4145. "Hyperf\\Stringable\\": "src/"
  4146. }
  4147. },
  4148. "notification-url": "https://packagist.org/downloads/",
  4149. "license": [
  4150. "MIT"
  4151. ],
  4152. "description": "Hyperf Stringable package which come from illuminate/support",
  4153. "homepage": "https://hyperf.io",
  4154. "keywords": [
  4155. "hyperf",
  4156. "php",
  4157. "stringable",
  4158. "swoole"
  4159. ],
  4160. "support": {
  4161. "docs": "https://hyperf.wiki",
  4162. "issues": "https://github.com/hyperf/hyperf/issues",
  4163. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4164. "source": "https://github.com/hyperf/hyperf"
  4165. },
  4166. "funding": [
  4167. {
  4168. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4169. "type": "custom"
  4170. },
  4171. {
  4172. "url": "https://opencollective.com/hyperf",
  4173. "type": "open_collective"
  4174. }
  4175. ],
  4176. "time": "2024-10-09T02:28:40+00:00"
  4177. },
  4178. {
  4179. "name": "hyperf/support",
  4180. "version": "v3.1.47",
  4181. "source": {
  4182. "type": "git",
  4183. "url": "https://github.com/hyperf/support.git",
  4184. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4185. },
  4186. "dist": {
  4187. "type": "zip",
  4188. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4189. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4190. "shasum": ""
  4191. },
  4192. "require": {
  4193. "hyperf/collection": "~3.1.0",
  4194. "hyperf/context": "~3.1.0",
  4195. "hyperf/contract": "~3.1.0",
  4196. "hyperf/coroutine": "~3.1.0",
  4197. "hyperf/macroable": "~3.1.0",
  4198. "hyperf/stringable": "~3.1.0",
  4199. "php": ">=8.1"
  4200. },
  4201. "suggest": {
  4202. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4203. },
  4204. "type": "library",
  4205. "extra": {
  4206. "branch-alias": {
  4207. "dev-master": "3.1-dev"
  4208. }
  4209. },
  4210. "autoload": {
  4211. "files": [
  4212. "src/Functions.php"
  4213. ],
  4214. "psr-4": {
  4215. "Hyperf\\Support\\": "src/"
  4216. }
  4217. },
  4218. "notification-url": "https://packagist.org/downloads/",
  4219. "license": [
  4220. "MIT"
  4221. ],
  4222. "description": "A support component for Hyperf.",
  4223. "homepage": "https://hyperf.io",
  4224. "keywords": [
  4225. "hyperf",
  4226. "php",
  4227. "support",
  4228. "swoole"
  4229. ],
  4230. "support": {
  4231. "docs": "https://hyperf.wiki",
  4232. "issues": "https://github.com/hyperf/hyperf/issues",
  4233. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4234. "source": "https://github.com/hyperf/hyperf"
  4235. },
  4236. "funding": [
  4237. {
  4238. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4239. "type": "custom"
  4240. },
  4241. {
  4242. "url": "https://opencollective.com/hyperf",
  4243. "type": "open_collective"
  4244. }
  4245. ],
  4246. "time": "2024-11-28T01:51:55+00:00"
  4247. },
  4248. {
  4249. "name": "hyperf/tappable",
  4250. "version": "v3.1.42",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/hyperf/tappable.git",
  4254. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4259. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4260. "shasum": ""
  4261. },
  4262. "require": {
  4263. "php": ">=8.1"
  4264. },
  4265. "type": "library",
  4266. "extra": {
  4267. "branch-alias": {
  4268. "dev-master": "3.1-dev"
  4269. }
  4270. },
  4271. "autoload": {
  4272. "files": [
  4273. "src/Functions.php"
  4274. ],
  4275. "psr-4": {
  4276. "Hyperf\\Tappable\\": "src/"
  4277. }
  4278. },
  4279. "notification-url": "https://packagist.org/downloads/",
  4280. "license": [
  4281. "MIT"
  4282. ],
  4283. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4284. "homepage": "https://hyperf.io",
  4285. "keywords": [
  4286. "hyperf",
  4287. "php",
  4288. "swoole",
  4289. "tappable"
  4290. ],
  4291. "support": {
  4292. "docs": "https://hyperf.wiki",
  4293. "issues": "https://github.com/hyperf/hyperf/issues",
  4294. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4295. "source": "https://github.com/hyperf/hyperf"
  4296. },
  4297. "funding": [
  4298. {
  4299. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4300. "type": "custom"
  4301. },
  4302. {
  4303. "url": "https://opencollective.com/hyperf",
  4304. "type": "open_collective"
  4305. }
  4306. ],
  4307. "time": "2024-09-25T02:54:12+00:00"
  4308. },
  4309. {
  4310. "name": "hyperf/utils",
  4311. "version": "v3.1.42",
  4312. "source": {
  4313. "type": "git",
  4314. "url": "https://github.com/hyperf/utils.git",
  4315. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4316. },
  4317. "dist": {
  4318. "type": "zip",
  4319. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4320. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4321. "shasum": ""
  4322. },
  4323. "require": {
  4324. "doctrine/inflector": "^2.0",
  4325. "hyperf/code-parser": "~3.1.0",
  4326. "hyperf/codec": "~3.1.0",
  4327. "hyperf/collection": "~3.1.0",
  4328. "hyperf/context": "~3.1.0",
  4329. "hyperf/contract": "~3.1.0",
  4330. "hyperf/coordinator": "~3.1.0",
  4331. "hyperf/coroutine": "~3.1.0",
  4332. "hyperf/engine": "^2.0",
  4333. "hyperf/macroable": "~3.1.0",
  4334. "hyperf/serializer": "~3.1.0",
  4335. "hyperf/stringable": "~3.1.0",
  4336. "hyperf/support": "~3.1.0",
  4337. "php": ">=8.1"
  4338. },
  4339. "type": "library",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-master": "3.1-dev"
  4343. }
  4344. },
  4345. "notification-url": "https://packagist.org/downloads/",
  4346. "license": [
  4347. "MIT"
  4348. ],
  4349. "description": "A tools package that could help developer solved the problem quickly.",
  4350. "homepage": "https://hyperf.io",
  4351. "keywords": [
  4352. "hyperf",
  4353. "php",
  4354. "swoole",
  4355. "utils"
  4356. ],
  4357. "support": {
  4358. "docs": "https://hyperf.wiki",
  4359. "issues": "https://github.com/hyperf/hyperf/issues",
  4360. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4361. "source": "https://github.com/hyperf/hyperf"
  4362. },
  4363. "funding": [
  4364. {
  4365. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4366. "type": "custom"
  4367. },
  4368. {
  4369. "url": "https://opencollective.com/hyperf",
  4370. "type": "open_collective"
  4371. }
  4372. ],
  4373. "time": "2024-09-25T02:54:12+00:00"
  4374. },
  4375. {
  4376. <<<<<<< HEAD
  4377. "name": "jaeger/g-http",
  4378. "version": "V2.0.1",
  4379. "source": {
  4380. "type": "git",
  4381. "url": "https://github.com/jae-jae/GHttp.git",
  4382. "reference": "29cb537c57f230980ca10622de190f04831e35e6"
  4383. },
  4384. "dist": {
  4385. "type": "zip",
  4386. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/29cb537c57f230980ca10622de190f04831e35e6",
  4387. "reference": "29cb537c57f230980ca10622de190f04831e35e6",
  4388. "shasum": ""
  4389. },
  4390. "require": {
  4391. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  4392. "php": ">=8.1",
  4393. "symfony/cache": "^6.4 || ^7.0"
  4394. },
  4395. "require-dev": {
  4396. "predis/predis": "^2.2"
  4397. },
  4398. "type": "library",
  4399. "autoload": {
  4400. "psr-4": {
  4401. "Jaeger\\": "src"
  4402. }
  4403. },
  4404. "notification-url": "https://packagist.org/downloads/",
  4405. "license": [
  4406. "MIT"
  4407. ],
  4408. "authors": [
  4409. {
  4410. "name": "Jaeger",
  4411. "email": "JaegerCode@gmail.com"
  4412. }
  4413. ],
  4414. "description": "Simple Http client base on GuzzleHttp",
  4415. "support": {
  4416. "issues": "https://github.com/jae-jae/GHttp/issues",
  4417. "source": "https://github.com/jae-jae/GHttp/tree/V2.0.1"
  4418. },
  4419. "time": "2024-06-14T08:13:32+00:00"
  4420. },
  4421. {
  4422. "name": "jaeger/phpquery-single",
  4423. "version": "1.1.1",
  4424. "source": {
  4425. "type": "git",
  4426. "url": "https://github.com/jae-jae/phpQuery-single.git",
  4427. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  4428. },
  4429. "dist": {
  4430. "type": "zip",
  4431. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  4432. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  4433. "shasum": ""
  4434. },
  4435. "require": {
  4436. "php": ">=5.3.0"
  4437. },
  4438. "type": "library",
  4439. "autoload": {
  4440. "classmap": [
  4441. "phpQuery.php"
  4442. ]
  4443. },
  4444. "notification-url": "https://packagist.org/downloads/",
  4445. "license": [
  4446. "MIT"
  4447. ],
  4448. "authors": [
  4449. {
  4450. "name": "Tobiasz Cudnik",
  4451. "email": "tobiasz.cudnik@gmail.com",
  4452. "homepage": "https://github.com/TobiaszCudnik",
  4453. "role": "Developer"
  4454. },
  4455. {
  4456. "name": "Jaeger",
  4457. "role": "Packager"
  4458. }
  4459. ],
  4460. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  4461. "homepage": "http://code.google.com/p/phpquery/",
  4462. "support": {
  4463. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  4464. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  4465. },
  4466. "time": "2022-03-26T15:01:16+00:00"
  4467. },
  4468. {
  4469. "name": "jaeger/querylist",
  4470. "version": "V4.4.5",
  4471. "source": {
  4472. "type": "git",
  4473. "url": "https://github.com/jae-jae/QueryList.git",
  4474. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2"
  4475. },
  4476. "dist": {
  4477. "type": "zip",
  4478. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4479. "reference": "87b405ecde30101ec8797c4347f05f9ee0b95eb2",
  4480. "shasum": ""
  4481. },
  4482. "require": {
  4483. "ext-dom": "*",
  4484. "jaeger/g-http": "^2.0",
  4485. "jaeger/phpquery-single": "^1",
  4486. "php": ">=8.1",
  4487. "symfony/var-dumper": ">3.4"
  4488. },
  4489. "require-dev": {
  4490. "phpunit/phpunit": "^8.5"
  4491. },
  4492. "type": "library",
  4493. "autoload": {
  4494. "files": [
  4495. "src/Collect/Support/helpers.php",
  4496. "src/Collect/Support/alias.php"
  4497. ],
  4498. "psr-4": {
  4499. "QL\\": "src"
  4500. }
  4501. },
  4502. "notification-url": "https://packagist.org/downloads/",
  4503. "license": [
  4504. "MIT"
  4505. ],
  4506. "authors": [
  4507. {
  4508. "name": "Jaeger",
  4509. "email": "JaegerCode@gmail.com"
  4510. }
  4511. ],
  4512. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  4513. "homepage": "http://querylist.cc",
  4514. "keywords": [
  4515. "QueryList",
  4516. "phpQuery",
  4517. "spider"
  4518. ],
  4519. "support": {
  4520. "issues": "https://github.com/jae-jae/QueryList/issues",
  4521. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.5"
  4522. },
  4523. "funding": [
  4524. {
  4525. "url": "https://opencollective.com/querylist",
  4526. "type": "open_collective"
  4527. }
  4528. ],
  4529. "time": "2024-07-16T07:11:08+00:00"
  4530. },
  4531. {
  4532. "name": "jetbrains/phpstorm-attributes",
  4533. "version": "1.2",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4537. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. =======
  4542. "name": "jetbrains/phpstorm-attributes",
  4543. "version": "1.2",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4547. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  4552. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4553. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4554. "shasum": ""
  4555. },
  4556. "type": "library",
  4557. "autoload": {
  4558. "psr-4": {
  4559. "JetBrains\\PhpStorm\\": "src/"
  4560. }
  4561. },
  4562. "notification-url": "https://packagist.org/downloads/",
  4563. "license": [
  4564. "Apache-2.0"
  4565. ],
  4566. "authors": [
  4567. {
  4568. "name": "JetBrains",
  4569. "homepage": "https://www.jetbrains.com"
  4570. }
  4571. ],
  4572. "description": "PhpStorm specific attributes",
  4573. "keywords": [
  4574. "attributes",
  4575. "jetbrains",
  4576. "phpstorm"
  4577. ],
  4578. "support": {
  4579. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4580. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4581. },
  4582. "time": "2024-10-11T10:46:19+00:00"
  4583. },
  4584. {
  4585. "name": "laminas/laminas-mime",
  4586. "version": "2.12.0",
  4587. "source": {
  4588. "type": "git",
  4589. "url": "https://github.com/laminas/laminas-mime.git",
  4590. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4591. },
  4592. "dist": {
  4593. "type": "zip",
  4594. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4595. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4596. "shasum": ""
  4597. },
  4598. "require": {
  4599. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4600. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4601. },
  4602. "conflict": {
  4603. "zendframework/zend-mime": "*"
  4604. },
  4605. "require-dev": {
  4606. "laminas/laminas-coding-standard": "~2.4.0",
  4607. "laminas/laminas-mail": "^2.19.0",
  4608. "phpunit/phpunit": "~9.5.25"
  4609. },
  4610. "suggest": {
  4611. "laminas/laminas-mail": "Laminas\\Mail component"
  4612. },
  4613. "type": "library",
  4614. "autoload": {
  4615. "psr-4": {
  4616. "Laminas\\Mime\\": "src/"
  4617. }
  4618. },
  4619. "notification-url": "https://packagist.org/downloads/",
  4620. "license": [
  4621. "BSD-3-Clause"
  4622. ],
  4623. "description": "Create and parse MIME messages and parts",
  4624. "homepage": "https://laminas.dev",
  4625. "keywords": [
  4626. "laminas",
  4627. "mime"
  4628. ],
  4629. "support": {
  4630. "chat": "https://laminas.dev/chat",
  4631. "docs": "https://docs.laminas.dev/laminas-mime/",
  4632. "forum": "https://discourse.laminas.dev",
  4633. "issues": "https://github.com/laminas/laminas-mime/issues",
  4634. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4635. "source": "https://github.com/laminas/laminas-mime"
  4636. },
  4637. "funding": [
  4638. {
  4639. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4640. "type": "community_bridge"
  4641. }
  4642. ],
  4643. "abandoned": "symfony/mime",
  4644. "time": "2023-11-02T16:47:19+00:00"
  4645. },
  4646. {
  4647. "name": "laminas/laminas-stdlib",
  4648. "version": "3.20.0",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/laminas/laminas-stdlib.git",
  4652. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4657. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4658. "shasum": ""
  4659. },
  4660. "require": {
  4661. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4662. },
  4663. "conflict": {
  4664. "zendframework/zend-stdlib": "*"
  4665. },
  4666. "require-dev": {
  4667. "laminas/laminas-coding-standard": "^3.0",
  4668. "phpbench/phpbench": "^1.3.1",
  4669. "phpunit/phpunit": "^10.5.38",
  4670. "psalm/plugin-phpunit": "^0.19.0",
  4671. "vimeo/psalm": "^5.26.1"
  4672. },
  4673. "type": "library",
  4674. "autoload": {
  4675. "psr-4": {
  4676. "Laminas\\Stdlib\\": "src/"
  4677. }
  4678. },
  4679. "notification-url": "https://packagist.org/downloads/",
  4680. "license": [
  4681. "BSD-3-Clause"
  4682. ],
  4683. "description": "SPL extensions, array utilities, error handlers, and more",
  4684. "homepage": "https://laminas.dev",
  4685. "keywords": [
  4686. "laminas",
  4687. "stdlib"
  4688. ],
  4689. "support": {
  4690. "chat": "https://laminas.dev/chat",
  4691. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4692. "forum": "https://discourse.laminas.dev",
  4693. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4694. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4695. "source": "https://github.com/laminas/laminas-stdlib"
  4696. },
  4697. "funding": [
  4698. {
  4699. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4700. "type": "community_bridge"
  4701. }
  4702. ],
  4703. "time": "2024-10-29T13:46:07+00:00"
  4704. },
  4705. {
  4706. "name": "markrogoyski/math-php",
  4707. "version": "v2.10.0",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://github.com/markrogoyski/math-php.git",
  4711. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4716. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4717. "shasum": ""
  4718. },
  4719. "require": {
  4720. "ext-json": "*",
  4721. "php": ">=7.2.0"
  4722. },
  4723. "require-dev": {
  4724. "php-coveralls/php-coveralls": "^2.0",
  4725. "php-parallel-lint/php-parallel-lint": "^1.2",
  4726. "phploc/phploc": "*",
  4727. "phpmd/phpmd": "^2.6",
  4728. "phpstan/phpstan": "^1.10",
  4729. "phpunit/phpunit": "^8.5",
  4730. "squizlabs/php_codesniffer": "3.*"
  4731. },
  4732. "type": "library",
  4733. "autoload": {
  4734. "psr-4": {
  4735. "MathPHP\\": "src/"
  4736. }
  4737. },
  4738. "notification-url": "https://packagist.org/downloads/",
  4739. "license": [
  4740. "MIT"
  4741. ],
  4742. "authors": [
  4743. {
  4744. "name": "Mark Rogoyski",
  4745. "email": "mark@rogoyski.com",
  4746. "homepage": "https://github.com/markrogoyski",
  4747. "role": "Lead developer"
  4748. },
  4749. {
  4750. "name": "Kevin Nowaczyk",
  4751. "homepage": "https://github.com/Beakerboy",
  4752. "role": "Developer"
  4753. },
  4754. {
  4755. "name": "MathPHP Community of Contributors",
  4756. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4757. }
  4758. ],
  4759. "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",
  4760. "homepage": "https://github.com/markrogoyski/math-php/",
  4761. "keywords": [
  4762. "algebra",
  4763. "combinatorics",
  4764. "distributions",
  4765. "linear algebra",
  4766. "math",
  4767. "mathematics",
  4768. "matrix",
  4769. "numerical analysis",
  4770. "probability",
  4771. "regressions",
  4772. "statistics"
  4773. ],
  4774. "support": {
  4775. "issues": "https://github.com/markrogoyski/math-php/issues",
  4776. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4777. },
  4778. "time": "2024-04-17T00:09:51+00:00"
  4779. },
  4780. {
  4781. "name": "monolog/monolog",
  4782. "version": "3.8.0",
  4783. "source": {
  4784. "type": "git",
  4785. "url": "https://github.com/Seldaek/monolog.git",
  4786. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  4787. },
  4788. "dist": {
  4789. "type": "zip",
  4790. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  4791. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  4792. "shasum": ""
  4793. },
  4794. "require": {
  4795. "php": ">=8.1",
  4796. "psr/log": "^2.0 || ^3.0"
  4797. },
  4798. "provide": {
  4799. "psr/log-implementation": "3.0.0"
  4800. },
  4801. "require-dev": {
  4802. "aws/aws-sdk-php": "^3.0",
  4803. "doctrine/couchdb": "~1.0@dev",
  4804. "elasticsearch/elasticsearch": "^7 || ^8",
  4805. "ext-json": "*",
  4806. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4807. "guzzlehttp/guzzle": "^7.4.5",
  4808. "guzzlehttp/psr7": "^2.2",
  4809. "mongodb/mongodb": "^1.8",
  4810. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4811. "php-console/php-console": "^3.1.8",
  4812. "phpstan/phpstan": "^2",
  4813. "phpstan/phpstan-deprecation-rules": "^2",
  4814. "phpstan/phpstan-strict-rules": "^2",
  4815. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4816. "predis/predis": "^1.1 || ^2",
  4817. "rollbar/rollbar": "^4.0",
  4818. "ruflin/elastica": "^7 || ^8",
  4819. "symfony/mailer": "^5.4 || ^6",
  4820. "symfony/mime": "^5.4 || ^6"
  4821. },
  4822. "suggest": {
  4823. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4824. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4825. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4826. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4827. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4828. "ext-mbstring": "Allow to work properly with unicode symbols",
  4829. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4830. "ext-openssl": "Required to send log messages using SSL",
  4831. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4832. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4833. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4834. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4835. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4836. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4837. },
  4838. "type": "library",
  4839. "extra": {
  4840. "branch-alias": {
  4841. "dev-main": "3.x-dev"
  4842. }
  4843. },
  4844. "autoload": {
  4845. "psr-4": {
  4846. "Monolog\\": "src/Monolog"
  4847. }
  4848. },
  4849. "notification-url": "https://packagist.org/downloads/",
  4850. "license": [
  4851. "MIT"
  4852. ],
  4853. "authors": [
  4854. {
  4855. "name": "Jordi Boggiano",
  4856. "email": "j.boggiano@seld.be",
  4857. "homepage": "https://seld.be"
  4858. }
  4859. ],
  4860. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4861. "homepage": "https://github.com/Seldaek/monolog",
  4862. "keywords": [
  4863. "log",
  4864. "logging",
  4865. "psr-3"
  4866. ],
  4867. "support": {
  4868. "issues": "https://github.com/Seldaek/monolog/issues",
  4869. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  4870. },
  4871. "funding": [
  4872. {
  4873. "url": "https://github.com/Seldaek",
  4874. "type": "github"
  4875. },
  4876. {
  4877. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4878. "type": "tidelift"
  4879. }
  4880. ],
  4881. "time": "2024-11-12T13:57:08+00:00"
  4882. },
  4883. {
  4884. "name": "nesbot/carbon",
  4885. "version": "2.72.5",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/briannesbitt/Carbon.git",
  4889. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4894. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4895. "shasum": ""
  4896. },
  4897. "require": {
  4898. "carbonphp/carbon-doctrine-types": "*",
  4899. "ext-json": "*",
  4900. "php": "^7.1.8 || ^8.0",
  4901. "psr/clock": "^1.0",
  4902. "symfony/polyfill-mbstring": "^1.0",
  4903. "symfony/polyfill-php80": "^1.16",
  4904. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4905. },
  4906. "provide": {
  4907. "psr/clock-implementation": "1.0"
  4908. },
  4909. "require-dev": {
  4910. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4911. "doctrine/orm": "^2.7 || ^3.0",
  4912. "friendsofphp/php-cs-fixer": "^3.0",
  4913. "kylekatarnls/multi-tester": "^2.0",
  4914. "ondrejmirtes/better-reflection": "*",
  4915. "phpmd/phpmd": "^2.9",
  4916. "phpstan/extension-installer": "^1.0",
  4917. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4918. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4919. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4920. "squizlabs/php_codesniffer": "^3.4"
  4921. },
  4922. "bin": [
  4923. "bin/carbon"
  4924. ],
  4925. "type": "library",
  4926. "extra": {
  4927. "branch-alias": {
  4928. "dev-master": "3.x-dev",
  4929. "dev-2.x": "2.x-dev"
  4930. },
  4931. "laravel": {
  4932. "providers": [
  4933. "Carbon\\Laravel\\ServiceProvider"
  4934. ]
  4935. },
  4936. "phpstan": {
  4937. "includes": [
  4938. "extension.neon"
  4939. ]
  4940. }
  4941. },
  4942. "autoload": {
  4943. "psr-4": {
  4944. "Carbon\\": "src/Carbon/"
  4945. }
  4946. },
  4947. "notification-url": "https://packagist.org/downloads/",
  4948. "license": [
  4949. "MIT"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "Brian Nesbitt",
  4954. "email": "brian@nesbot.com",
  4955. "homepage": "https://markido.com"
  4956. },
  4957. {
  4958. "name": "kylekatarnls",
  4959. "homepage": "https://github.com/kylekatarnls"
  4960. }
  4961. ],
  4962. "description": "An API extension for DateTime that supports 281 different languages.",
  4963. "homepage": "https://carbon.nesbot.com",
  4964. "keywords": [
  4965. "date",
  4966. "datetime",
  4967. "time"
  4968. ],
  4969. "support": {
  4970. "docs": "https://carbon.nesbot.com/docs",
  4971. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4972. "source": "https://github.com/briannesbitt/Carbon"
  4973. },
  4974. "funding": [
  4975. {
  4976. "url": "https://github.com/sponsors/kylekatarnls",
  4977. "type": "github"
  4978. },
  4979. {
  4980. "url": "https://opencollective.com/Carbon#sponsor",
  4981. "type": "opencollective"
  4982. },
  4983. {
  4984. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4985. "type": "tidelift"
  4986. }
  4987. ],
  4988. "time": "2024-06-03T19:18:41+00:00"
  4989. },
  4990. {
  4991. "name": "nikic/fast-route",
  4992. "version": "v1.3.0",
  4993. "source": {
  4994. "type": "git",
  4995. "url": "https://github.com/nikic/FastRoute.git",
  4996. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4997. },
  4998. "dist": {
  4999. "type": "zip",
  5000. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5001. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5002. "shasum": ""
  5003. },
  5004. "require": {
  5005. "php": ">=5.4.0"
  5006. },
  5007. "require-dev": {
  5008. "phpunit/phpunit": "^4.8.35|~5.7"
  5009. },
  5010. "type": "library",
  5011. "autoload": {
  5012. "files": [
  5013. "src/functions.php"
  5014. ],
  5015. "psr-4": {
  5016. "FastRoute\\": "src/"
  5017. }
  5018. },
  5019. "notification-url": "https://packagist.org/downloads/",
  5020. "license": [
  5021. "BSD-3-Clause"
  5022. ],
  5023. "authors": [
  5024. {
  5025. "name": "Nikita Popov",
  5026. "email": "nikic@php.net"
  5027. }
  5028. ],
  5029. "description": "Fast request router for PHP",
  5030. "keywords": [
  5031. "router",
  5032. "routing"
  5033. ],
  5034. "support": {
  5035. "issues": "https://github.com/nikic/FastRoute/issues",
  5036. "source": "https://github.com/nikic/FastRoute/tree/master"
  5037. },
  5038. "time": "2018-02-13T20:26:39+00:00"
  5039. },
  5040. {
  5041. "name": "nikic/php-parser",
  5042. "version": "v4.19.4",
  5043. "source": {
  5044. "type": "git",
  5045. "url": "https://github.com/nikic/PHP-Parser.git",
  5046. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5047. },
  5048. "dist": {
  5049. "type": "zip",
  5050. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5051. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5052. "shasum": ""
  5053. },
  5054. "require": {
  5055. "ext-tokenizer": "*",
  5056. "php": ">=7.1"
  5057. },
  5058. "require-dev": {
  5059. "ircmaxell/php-yacc": "^0.0.7",
  5060. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5061. },
  5062. "bin": [
  5063. "bin/php-parse"
  5064. ],
  5065. "type": "library",
  5066. "extra": {
  5067. "branch-alias": {
  5068. "dev-master": "4.9-dev"
  5069. }
  5070. },
  5071. "autoload": {
  5072. "psr-4": {
  5073. "PhpParser\\": "lib/PhpParser"
  5074. }
  5075. },
  5076. "notification-url": "https://packagist.org/downloads/",
  5077. "license": [
  5078. "BSD-3-Clause"
  5079. ],
  5080. "authors": [
  5081. {
  5082. "name": "Nikita Popov"
  5083. }
  5084. ],
  5085. "description": "A PHP parser written in PHP",
  5086. "keywords": [
  5087. "parser",
  5088. "php"
  5089. ],
  5090. "support": {
  5091. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5092. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5093. },
  5094. "time": "2024-09-29T15:01:53+00:00"
  5095. },
  5096. {
  5097. "name": "paragonie/constant_time_encoding",
  5098. "version": "v3.0.0",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5102. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5107. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5108. "shasum": ""
  5109. },
  5110. "require": {
  5111. "php": "^8"
  5112. },
  5113. "require-dev": {
  5114. "phpunit/phpunit": "^9",
  5115. "vimeo/psalm": "^4|^5"
  5116. },
  5117. "type": "library",
  5118. "autoload": {
  5119. "psr-4": {
  5120. "ParagonIE\\ConstantTime\\": "src/"
  5121. }
  5122. },
  5123. "notification-url": "https://packagist.org/downloads/",
  5124. "license": [
  5125. "MIT"
  5126. ],
  5127. "authors": [
  5128. {
  5129. "name": "Paragon Initiative Enterprises",
  5130. "email": "security@paragonie.com",
  5131. "homepage": "https://paragonie.com",
  5132. "role": "Maintainer"
  5133. },
  5134. {
  5135. "name": "Steve 'Sc00bz' Thomas",
  5136. "email": "steve@tobtu.com",
  5137. "homepage": "https://www.tobtu.com",
  5138. "role": "Original Developer"
  5139. }
  5140. ],
  5141. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5142. "keywords": [
  5143. "base16",
  5144. "base32",
  5145. "base32_decode",
  5146. "base32_encode",
  5147. "base64",
  5148. "base64_decode",
  5149. "base64_encode",
  5150. "bin2hex",
  5151. "encoding",
  5152. "hex",
  5153. "hex2bin",
  5154. "rfc4648"
  5155. ],
  5156. "support": {
  5157. "email": "info@paragonie.com",
  5158. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5159. "source": "https://github.com/paragonie/constant_time_encoding"
  5160. },
  5161. "time": "2024-05-08T12:36:18+00:00"
  5162. },
  5163. {
  5164. "name": "paragonie/random_compat",
  5165. "version": "v9.99.100",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/paragonie/random_compat.git",
  5169. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5174. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "php": ">= 7"
  5179. },
  5180. "require-dev": {
  5181. "phpunit/phpunit": "4.*|5.*",
  5182. "vimeo/psalm": "^1"
  5183. },
  5184. "suggest": {
  5185. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5186. },
  5187. "type": "library",
  5188. "notification-url": "https://packagist.org/downloads/",
  5189. "license": [
  5190. "MIT"
  5191. ],
  5192. "authors": [
  5193. {
  5194. "name": "Paragon Initiative Enterprises",
  5195. "email": "security@paragonie.com",
  5196. "homepage": "https://paragonie.com"
  5197. }
  5198. ],
  5199. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5200. "keywords": [
  5201. "csprng",
  5202. "polyfill",
  5203. "pseudorandom",
  5204. "random"
  5205. ],
  5206. "support": {
  5207. "email": "info@paragonie.com",
  5208. "issues": "https://github.com/paragonie/random_compat/issues",
  5209. "source": "https://github.com/paragonie/random_compat"
  5210. },
  5211. "time": "2020-10-15T08:29:30+00:00"
  5212. },
  5213. {
  5214. "name": "php-amqplib/php-amqplib",
  5215. "version": "v3.7.2",
  5216. "source": {
  5217. "type": "git",
  5218. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5219. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5220. },
  5221. "dist": {
  5222. "type": "zip",
  5223. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5224. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5225. "shasum": ""
  5226. },
  5227. "require": {
  5228. "ext-mbstring": "*",
  5229. "ext-sockets": "*",
  5230. "php": "^7.2||^8.0",
  5231. "phpseclib/phpseclib": "^2.0|^3.0"
  5232. },
  5233. "conflict": {
  5234. "php": "7.4.0 - 7.4.1"
  5235. },
  5236. "replace": {
  5237. "videlalvaro/php-amqplib": "self.version"
  5238. },
  5239. "require-dev": {
  5240. "ext-curl": "*",
  5241. "nategood/httpful": "^0.2.20",
  5242. "phpunit/phpunit": "^7.5|^9.5",
  5243. "squizlabs/php_codesniffer": "^3.6"
  5244. },
  5245. "type": "library",
  5246. "extra": {
  5247. "branch-alias": {
  5248. "dev-master": "3.0-dev"
  5249. }
  5250. },
  5251. "autoload": {
  5252. "psr-4": {
  5253. "PhpAmqpLib\\": "PhpAmqpLib/"
  5254. }
  5255. },
  5256. "notification-url": "https://packagist.org/downloads/",
  5257. "license": [
  5258. "LGPL-2.1-or-later"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Alvaro Videla",
  5263. "role": "Original Maintainer"
  5264. },
  5265. {
  5266. "name": "Raúl Araya",
  5267. "email": "nubeiro@gmail.com",
  5268. "role": "Maintainer"
  5269. },
  5270. {
  5271. "name": "Luke Bakken",
  5272. "email": "luke@bakken.io",
  5273. "role": "Maintainer"
  5274. },
  5275. {
  5276. "name": "Ramūnas Dronga",
  5277. "email": "github@ramuno.lt",
  5278. "role": "Maintainer"
  5279. }
  5280. ],
  5281. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5282. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5283. "keywords": [
  5284. "message",
  5285. "queue",
  5286. "rabbitmq"
  5287. ],
  5288. "support": {
  5289. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5290. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5291. },
  5292. "time": "2024-11-21T09:21:41+00:00"
  5293. },
  5294. {
  5295. "name": "php-di/phpdoc-reader",
  5296. "version": "2.2.1",
  5297. "source": {
  5298. "type": "git",
  5299. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5300. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5301. },
  5302. "dist": {
  5303. "type": "zip",
  5304. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5305. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5306. "shasum": ""
  5307. },
  5308. "require": {
  5309. "php": ">=7.2.0"
  5310. },
  5311. "require-dev": {
  5312. "mnapoli/hard-mode": "~0.3.0",
  5313. "phpunit/phpunit": "^8.5|^9.0"
  5314. },
  5315. "type": "library",
  5316. "autoload": {
  5317. "psr-4": {
  5318. "PhpDocReader\\": "src/PhpDocReader"
  5319. }
  5320. },
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5326. "keywords": [
  5327. "phpdoc",
  5328. "reflection"
  5329. ],
  5330. "support": {
  5331. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5332. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5333. },
  5334. "time": "2020-10-12T12:39:22+00:00"
  5335. },
  5336. {
  5337. "name": "phpoption/phpoption",
  5338. "version": "1.9.3",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://github.com/schmittjoh/php-option.git",
  5342. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5347. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5348. "shasum": ""
  5349. },
  5350. "require": {
  5351. "php": "^7.2.5 || ^8.0"
  5352. },
  5353. "require-dev": {
  5354. "bamarni/composer-bin-plugin": "^1.8.2",
  5355. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5356. },
  5357. "type": "library",
  5358. "extra": {
  5359. "bamarni-bin": {
  5360. "bin-links": true,
  5361. "forward-command": false
  5362. },
  5363. "branch-alias": {
  5364. "dev-master": "1.9-dev"
  5365. }
  5366. },
  5367. "autoload": {
  5368. "psr-4": {
  5369. "PhpOption\\": "src/PhpOption/"
  5370. }
  5371. },
  5372. "notification-url": "https://packagist.org/downloads/",
  5373. "license": [
  5374. "Apache-2.0"
  5375. ],
  5376. "authors": [
  5377. {
  5378. "name": "Johannes M. Schmitt",
  5379. "email": "schmittjoh@gmail.com",
  5380. "homepage": "https://github.com/schmittjoh"
  5381. },
  5382. {
  5383. "name": "Graham Campbell",
  5384. "email": "hello@gjcampbell.co.uk",
  5385. "homepage": "https://github.com/GrahamCampbell"
  5386. }
  5387. ],
  5388. "description": "Option Type for PHP",
  5389. "keywords": [
  5390. "language",
  5391. "option",
  5392. "php",
  5393. "type"
  5394. ],
  5395. "support": {
  5396. "issues": "https://github.com/schmittjoh/php-option/issues",
  5397. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5398. },
  5399. "funding": [
  5400. {
  5401. "url": "https://github.com/GrahamCampbell",
  5402. "type": "github"
  5403. },
  5404. {
  5405. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5406. "type": "tidelift"
  5407. }
  5408. ],
  5409. "time": "2024-07-20T21:41:07+00:00"
  5410. },
  5411. {
  5412. "name": "phpseclib/phpseclib",
  5413. "version": "3.0.42",
  5414. "source": {
  5415. "type": "git",
  5416. "url": "https://github.com/phpseclib/phpseclib.git",
  5417. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5418. },
  5419. "dist": {
  5420. "type": "zip",
  5421. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5422. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5423. "shasum": ""
  5424. },
  5425. "require": {
  5426. "paragonie/constant_time_encoding": "^1|^2|^3",
  5427. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5428. "php": ">=5.6.1"
  5429. },
  5430. "require-dev": {
  5431. "phpunit/phpunit": "*"
  5432. },
  5433. "suggest": {
  5434. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5435. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5436. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5437. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5438. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5439. },
  5440. "type": "library",
  5441. "autoload": {
  5442. "files": [
  5443. "phpseclib/bootstrap.php"
  5444. ],
  5445. "psr-4": {
  5446. "phpseclib3\\": "phpseclib/"
  5447. }
  5448. },
  5449. "notification-url": "https://packagist.org/downloads/",
  5450. "license": [
  5451. "MIT"
  5452. ],
  5453. "authors": [
  5454. {
  5455. "name": "Jim Wigginton",
  5456. "email": "terrafrost@php.net",
  5457. "role": "Lead Developer"
  5458. },
  5459. {
  5460. "name": "Patrick Monnerat",
  5461. "email": "pm@datasphere.ch",
  5462. "role": "Developer"
  5463. },
  5464. {
  5465. "name": "Andreas Fischer",
  5466. "email": "bantu@phpbb.com",
  5467. "role": "Developer"
  5468. },
  5469. {
  5470. "name": "Hans-Jürgen Petrich",
  5471. "email": "petrich@tronic-media.com",
  5472. "role": "Developer"
  5473. },
  5474. {
  5475. "name": "Graham Campbell",
  5476. "email": "graham@alt-three.com",
  5477. "role": "Developer"
  5478. }
  5479. ],
  5480. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5481. "homepage": "http://phpseclib.sourceforge.net",
  5482. "keywords": [
  5483. "BigInteger",
  5484. "aes",
  5485. "asn.1",
  5486. "asn1",
  5487. "blowfish",
  5488. "crypto",
  5489. "cryptography",
  5490. "encryption",
  5491. "rsa",
  5492. "security",
  5493. "sftp",
  5494. "signature",
  5495. "signing",
  5496. "ssh",
  5497. "twofish",
  5498. "x.509",
  5499. "x509"
  5500. ],
  5501. "support": {
  5502. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5503. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  5504. },
  5505. "funding": [
  5506. {
  5507. "url": "https://github.com/terrafrost",
  5508. "type": "github"
  5509. },
  5510. {
  5511. "url": "https://www.patreon.com/phpseclib",
  5512. "type": "patreon"
  5513. },
  5514. {
  5515. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5516. "type": "tidelift"
  5517. }
  5518. ],
  5519. "time": "2024-09-16T03:06:04+00:00"
  5520. },
  5521. {
  5522. "name": "psr/cache",
  5523. "version": "3.0.0",
  5524. "source": {
  5525. "type": "git",
  5526. "url": "https://github.com/php-fig/cache.git",
  5527. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5528. },
  5529. "dist": {
  5530. "type": "zip",
  5531. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5532. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5533. "shasum": ""
  5534. },
  5535. "require": {
  5536. "php": ">=8.0.0"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "branch-alias": {
  5541. "dev-master": "1.0.x-dev"
  5542. }
  5543. },
  5544. "autoload": {
  5545. "psr-4": {
  5546. "Psr\\Cache\\": "src/"
  5547. }
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "MIT"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "PHP-FIG",
  5556. "homepage": "https://www.php-fig.org/"
  5557. }
  5558. ],
  5559. "description": "Common interface for caching libraries",
  5560. "keywords": [
  5561. "cache",
  5562. "psr",
  5563. "psr-6"
  5564. ],
  5565. "support": {
  5566. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5567. },
  5568. "time": "2021-02-03T23:26:27+00:00"
  5569. },
  5570. {
  5571. "name": "psr/clock",
  5572. "version": "1.0.0",
  5573. "source": {
  5574. "type": "git",
  5575. "url": "https://github.com/php-fig/clock.git",
  5576. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5577. },
  5578. "dist": {
  5579. "type": "zip",
  5580. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5581. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5582. "shasum": ""
  5583. },
  5584. "require": {
  5585. "php": "^7.0 || ^8.0"
  5586. },
  5587. "type": "library",
  5588. "autoload": {
  5589. "psr-4": {
  5590. "Psr\\Clock\\": "src/"
  5591. }
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "PHP-FIG",
  5600. "homepage": "https://www.php-fig.org/"
  5601. }
  5602. ],
  5603. "description": "Common interface for reading the clock.",
  5604. "homepage": "https://github.com/php-fig/clock",
  5605. "keywords": [
  5606. "clock",
  5607. "now",
  5608. "psr",
  5609. "psr-20",
  5610. "time"
  5611. ],
  5612. "support": {
  5613. "issues": "https://github.com/php-fig/clock/issues",
  5614. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5615. },
  5616. "time": "2022-11-25T14:36:26+00:00"
  5617. },
  5618. {
  5619. "name": "psr/container",
  5620. "version": "2.0.2",
  5621. "source": {
  5622. "type": "git",
  5623. "url": "https://github.com/php-fig/container.git",
  5624. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5625. },
  5626. "dist": {
  5627. "type": "zip",
  5628. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5629. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5630. "shasum": ""
  5631. },
  5632. "require": {
  5633. "php": ">=7.4.0"
  5634. },
  5635. "type": "library",
  5636. "extra": {
  5637. "branch-alias": {
  5638. "dev-master": "2.0.x-dev"
  5639. }
  5640. },
  5641. "autoload": {
  5642. "psr-4": {
  5643. "Psr\\Container\\": "src/"
  5644. }
  5645. },
  5646. "notification-url": "https://packagist.org/downloads/",
  5647. "license": [
  5648. "MIT"
  5649. ],
  5650. "authors": [
  5651. {
  5652. "name": "PHP-FIG",
  5653. "homepage": "https://www.php-fig.org/"
  5654. }
  5655. ],
  5656. "description": "Common Container Interface (PHP FIG PSR-11)",
  5657. "homepage": "https://github.com/php-fig/container",
  5658. "keywords": [
  5659. "PSR-11",
  5660. "container",
  5661. "container-interface",
  5662. "container-interop",
  5663. "psr"
  5664. ],
  5665. "support": {
  5666. "issues": "https://github.com/php-fig/container/issues",
  5667. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5668. },
  5669. "time": "2021-11-05T16:47:00+00:00"
  5670. },
  5671. {
  5672. "name": "psr/event-dispatcher",
  5673. "version": "1.0.0",
  5674. "source": {
  5675. "type": "git",
  5676. "url": "https://github.com/php-fig/event-dispatcher.git",
  5677. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5678. },
  5679. "dist": {
  5680. "type": "zip",
  5681. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5682. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5683. "shasum": ""
  5684. },
  5685. "require": {
  5686. "php": ">=7.2.0"
  5687. },
  5688. "type": "library",
  5689. "extra": {
  5690. "branch-alias": {
  5691. "dev-master": "1.0.x-dev"
  5692. }
  5693. },
  5694. "autoload": {
  5695. "psr-4": {
  5696. "Psr\\EventDispatcher\\": "src/"
  5697. }
  5698. },
  5699. "notification-url": "https://packagist.org/downloads/",
  5700. "license": [
  5701. "MIT"
  5702. ],
  5703. "authors": [
  5704. {
  5705. "name": "PHP-FIG",
  5706. "homepage": "http://www.php-fig.org/"
  5707. }
  5708. ],
  5709. "description": "Standard interfaces for event handling.",
  5710. "keywords": [
  5711. "events",
  5712. "psr",
  5713. "psr-14"
  5714. ],
  5715. "support": {
  5716. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5717. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5718. },
  5719. "time": "2019-01-08T18:20:26+00:00"
  5720. },
  5721. {
  5722. "name": "psr/http-client",
  5723. "version": "1.0.3",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://github.com/php-fig/http-client.git",
  5727. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5732. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5733. "shasum": ""
  5734. },
  5735. "require": {
  5736. "php": "^7.0 || ^8.0",
  5737. "psr/http-message": "^1.0 || ^2.0"
  5738. },
  5739. "type": "library",
  5740. "extra": {
  5741. "branch-alias": {
  5742. "dev-master": "1.0.x-dev"
  5743. }
  5744. },
  5745. "autoload": {
  5746. "psr-4": {
  5747. "Psr\\Http\\Client\\": "src/"
  5748. }
  5749. },
  5750. "notification-url": "https://packagist.org/downloads/",
  5751. "license": [
  5752. "MIT"
  5753. ],
  5754. "authors": [
  5755. {
  5756. "name": "PHP-FIG",
  5757. "homepage": "https://www.php-fig.org/"
  5758. }
  5759. ],
  5760. "description": "Common interface for HTTP clients",
  5761. "homepage": "https://github.com/php-fig/http-client",
  5762. "keywords": [
  5763. "http",
  5764. "http-client",
  5765. "psr",
  5766. "psr-18"
  5767. ],
  5768. "support": {
  5769. "source": "https://github.com/php-fig/http-client"
  5770. },
  5771. "time": "2023-09-23T14:17:50+00:00"
  5772. },
  5773. {
  5774. "name": "psr/http-factory",
  5775. "version": "1.1.0",
  5776. "source": {
  5777. "type": "git",
  5778. "url": "https://github.com/php-fig/http-factory.git",
  5779. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5780. },
  5781. "dist": {
  5782. "type": "zip",
  5783. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5784. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5785. "shasum": ""
  5786. },
  5787. "require": {
  5788. "php": ">=7.1",
  5789. "psr/http-message": "^1.0 || ^2.0"
  5790. },
  5791. "type": "library",
  5792. "extra": {
  5793. "branch-alias": {
  5794. "dev-master": "1.0.x-dev"
  5795. }
  5796. },
  5797. "autoload": {
  5798. "psr-4": {
  5799. "Psr\\Http\\Message\\": "src/"
  5800. }
  5801. },
  5802. "notification-url": "https://packagist.org/downloads/",
  5803. "license": [
  5804. "MIT"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "PHP-FIG",
  5809. "homepage": "https://www.php-fig.org/"
  5810. }
  5811. ],
  5812. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5813. "keywords": [
  5814. "factory",
  5815. "http",
  5816. "message",
  5817. "psr",
  5818. "psr-17",
  5819. "psr-7",
  5820. "request",
  5821. "response"
  5822. ],
  5823. "support": {
  5824. "source": "https://github.com/php-fig/http-factory"
  5825. },
  5826. "time": "2024-04-15T12:06:14+00:00"
  5827. },
  5828. {
  5829. "name": "psr/http-message",
  5830. "version": "2.0",
  5831. "source": {
  5832. "type": "git",
  5833. "url": "https://github.com/php-fig/http-message.git",
  5834. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5835. },
  5836. "dist": {
  5837. "type": "zip",
  5838. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5839. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5840. "shasum": ""
  5841. },
  5842. "require": {
  5843. "php": "^7.2 || ^8.0"
  5844. },
  5845. "type": "library",
  5846. "extra": {
  5847. "branch-alias": {
  5848. "dev-master": "2.0.x-dev"
  5849. }
  5850. },
  5851. "autoload": {
  5852. "psr-4": {
  5853. "Psr\\Http\\Message\\": "src/"
  5854. }
  5855. },
  5856. "notification-url": "https://packagist.org/downloads/",
  5857. "license": [
  5858. "MIT"
  5859. ],
  5860. "authors": [
  5861. {
  5862. "name": "PHP-FIG",
  5863. "homepage": "https://www.php-fig.org/"
  5864. }
  5865. ],
  5866. "description": "Common interface for HTTP messages",
  5867. "homepage": "https://github.com/php-fig/http-message",
  5868. "keywords": [
  5869. "http",
  5870. "http-message",
  5871. "psr",
  5872. "psr-7",
  5873. "request",
  5874. "response"
  5875. ],
  5876. "support": {
  5877. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5878. },
  5879. "time": "2023-04-04T09:54:51+00:00"
  5880. },
  5881. {
  5882. "name": "psr/http-server-handler",
  5883. "version": "1.0.2",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://github.com/php-fig/http-server-handler.git",
  5887. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5888. },
  5889. "dist": {
  5890. "type": "zip",
  5891. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5892. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5893. "shasum": ""
  5894. },
  5895. "require": {
  5896. "php": ">=7.0",
  5897. "psr/http-message": "^1.0 || ^2.0"
  5898. },
  5899. "type": "library",
  5900. "extra": {
  5901. "branch-alias": {
  5902. "dev-master": "1.0.x-dev"
  5903. }
  5904. },
  5905. "autoload": {
  5906. "psr-4": {
  5907. "Psr\\Http\\Server\\": "src/"
  5908. }
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "PHP-FIG",
  5917. "homepage": "https://www.php-fig.org/"
  5918. }
  5919. ],
  5920. "description": "Common interface for HTTP server-side request handler",
  5921. "keywords": [
  5922. "handler",
  5923. "http",
  5924. "http-interop",
  5925. "psr",
  5926. "psr-15",
  5927. "psr-7",
  5928. "request",
  5929. "response",
  5930. "server"
  5931. ],
  5932. "support": {
  5933. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5934. },
  5935. "time": "2023-04-10T20:06:20+00:00"
  5936. },
  5937. {
  5938. "name": "psr/http-server-middleware",
  5939. "version": "1.0.2",
  5940. "source": {
  5941. "type": "git",
  5942. "url": "https://github.com/php-fig/http-server-middleware.git",
  5943. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5944. },
  5945. "dist": {
  5946. "type": "zip",
  5947. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5948. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5949. "shasum": ""
  5950. },
  5951. "require": {
  5952. "php": ">=7.0",
  5953. "psr/http-message": "^1.0 || ^2.0",
  5954. "psr/http-server-handler": "^1.0"
  5955. },
  5956. "type": "library",
  5957. "extra": {
  5958. "branch-alias": {
  5959. "dev-master": "1.0.x-dev"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "psr-4": {
  5964. "Psr\\Http\\Server\\": "src/"
  5965. }
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "PHP-FIG",
  5974. "homepage": "https://www.php-fig.org/"
  5975. }
  5976. ],
  5977. "description": "Common interface for HTTP server-side middleware",
  5978. "keywords": [
  5979. "http",
  5980. "http-interop",
  5981. "middleware",
  5982. "psr",
  5983. "psr-15",
  5984. "psr-7",
  5985. "request",
  5986. "response"
  5987. ],
  5988. "support": {
  5989. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5990. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5991. },
  5992. "time": "2023-04-11T06:14:47+00:00"
  5993. },
  5994. {
  5995. "name": "psr/log",
  5996. "version": "3.0.2",
  5997. "source": {
  5998. "type": "git",
  5999. "url": "https://github.com/php-fig/log.git",
  6000. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6001. },
  6002. "dist": {
  6003. "type": "zip",
  6004. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6005. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6006. "shasum": ""
  6007. },
  6008. "require": {
  6009. "php": ">=8.0.0"
  6010. },
  6011. "type": "library",
  6012. "extra": {
  6013. "branch-alias": {
  6014. "dev-master": "3.x-dev"
  6015. }
  6016. },
  6017. "autoload": {
  6018. "psr-4": {
  6019. "Psr\\Log\\": "src"
  6020. }
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "PHP-FIG",
  6029. "homepage": "https://www.php-fig.org/"
  6030. }
  6031. ],
  6032. "description": "Common interface for logging libraries",
  6033. "homepage": "https://github.com/php-fig/log",
  6034. "keywords": [
  6035. "log",
  6036. "psr",
  6037. "psr-3"
  6038. ],
  6039. "support": {
  6040. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6041. },
  6042. "time": "2024-09-11T13:17:53+00:00"
  6043. },
  6044. {
  6045. "name": "psr/simple-cache",
  6046. "version": "3.0.0",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/php-fig/simple-cache.git",
  6050. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6055. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6056. "shasum": ""
  6057. },
  6058. "require": {
  6059. "php": ">=8.0.0"
  6060. },
  6061. "type": "library",
  6062. "extra": {
  6063. "branch-alias": {
  6064. "dev-master": "3.0.x-dev"
  6065. }
  6066. },
  6067. "autoload": {
  6068. "psr-4": {
  6069. "Psr\\SimpleCache\\": "src/"
  6070. }
  6071. },
  6072. "notification-url": "https://packagist.org/downloads/",
  6073. "license": [
  6074. "MIT"
  6075. ],
  6076. "authors": [
  6077. {
  6078. "name": "PHP-FIG",
  6079. "homepage": "https://www.php-fig.org/"
  6080. }
  6081. ],
  6082. "description": "Common interfaces for simple caching",
  6083. "keywords": [
  6084. "cache",
  6085. "caching",
  6086. "psr",
  6087. "psr-16",
  6088. "simple-cache"
  6089. ],
  6090. "support": {
  6091. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6092. },
  6093. "time": "2021-10-29T13:26:27+00:00"
  6094. },
  6095. {
  6096. "name": "ralouphie/getallheaders",
  6097. "version": "3.0.3",
  6098. "source": {
  6099. "type": "git",
  6100. "url": "https://github.com/ralouphie/getallheaders.git",
  6101. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6102. },
  6103. "dist": {
  6104. "type": "zip",
  6105. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6106. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6107. "shasum": ""
  6108. },
  6109. "require": {
  6110. "php": ">=5.6"
  6111. },
  6112. "require-dev": {
  6113. "php-coveralls/php-coveralls": "^2.1",
  6114. "phpunit/phpunit": "^5 || ^6.5"
  6115. },
  6116. "type": "library",
  6117. "autoload": {
  6118. "files": [
  6119. "src/getallheaders.php"
  6120. ]
  6121. },
  6122. "notification-url": "https://packagist.org/downloads/",
  6123. "license": [
  6124. "MIT"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "Ralph Khattar",
  6129. "email": "ralph.khattar@gmail.com"
  6130. }
  6131. ],
  6132. "description": "A polyfill for getallheaders.",
  6133. "support": {
  6134. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6135. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6136. },
  6137. "time": "2019-03-08T08:55:37+00:00"
  6138. },
  6139. {
  6140. "name": "swow/psr7-plus",
  6141. "version": "v1.1.2",
  6142. "source": {
  6143. "type": "git",
  6144. "url": "https://github.com/swow/psr7-plus.git",
  6145. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6146. },
  6147. "dist": {
  6148. "type": "zip",
  6149. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6150. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6151. "shasum": ""
  6152. },
  6153. "require": {
  6154. "php": ">=8.0",
  6155. "psr/http-client": "^1.0",
  6156. "psr/http-factory": "^1.0",
  6157. "psr/http-message": "^1.1|^2.0"
  6158. },
  6159. "type": "library",
  6160. "autoload": {
  6161. "psr-4": {
  6162. "Swow\\Psr7\\Message\\": "src/Message/"
  6163. }
  6164. },
  6165. "notification-url": "https://packagist.org/downloads/",
  6166. "license": [
  6167. "Apache-2.0"
  6168. ],
  6169. "authors": [
  6170. {
  6171. "name": "twose",
  6172. "email": "twosee@php.net"
  6173. }
  6174. ],
  6175. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6176. "keywords": [
  6177. "http",
  6178. "psr17",
  6179. "psr7",
  6180. "swow",
  6181. "websocket"
  6182. ],
  6183. "support": {
  6184. "issues": "https://github.com/swow/swow",
  6185. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6186. },
  6187. "time": "2023-06-15T09:18:11+00:00"
  6188. },
  6189. {
  6190. <<<<<<< HEAD
  6191. "name": "symfony/cache",
  6192. "version": "v6.4.16",
  6193. "source": {
  6194. "type": "git",
  6195. "url": "https://github.com/symfony/cache.git",
  6196. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae"
  6197. },
  6198. "dist": {
  6199. "type": "zip",
  6200. "url": "https://api.github.com/repos/symfony/cache/zipball/70d60e9a3603108563010f8592dff15a6f15dfae",
  6201. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae",
  6202. "shasum": ""
  6203. },
  6204. "require": {
  6205. "php": ">=8.1",
  6206. "psr/cache": "^2.0|^3.0",
  6207. "psr/log": "^1.1|^2|^3",
  6208. "symfony/cache-contracts": "^2.5|^3",
  6209. "symfony/service-contracts": "^2.5|^3",
  6210. "symfony/var-exporter": "^6.3.6|^7.0"
  6211. },
  6212. "conflict": {
  6213. "doctrine/dbal": "<2.13.1",
  6214. "symfony/dependency-injection": "<5.4",
  6215. "symfony/http-kernel": "<5.4",
  6216. "symfony/var-dumper": "<5.4"
  6217. },
  6218. "provide": {
  6219. "psr/cache-implementation": "2.0|3.0",
  6220. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  6221. "symfony/cache-implementation": "1.1|2.0|3.0"
  6222. },
  6223. "require-dev": {
  6224. "cache/integration-tests": "dev-master",
  6225. "doctrine/dbal": "^2.13.1|^3|^4",
  6226. "predis/predis": "^1.1|^2.0",
  6227. "psr/simple-cache": "^1.0|^2.0|^3.0",
  6228. "symfony/config": "^5.4|^6.0|^7.0",
  6229. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6230. "symfony/filesystem": "^5.4|^6.0|^7.0",
  6231. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6232. "symfony/messenger": "^5.4|^6.0|^7.0",
  6233. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6234. },
  6235. "type": "library",
  6236. "autoload": {
  6237. "psr-4": {
  6238. "Symfony\\Component\\Cache\\": ""
  6239. },
  6240. "classmap": [
  6241. "Traits/ValueWrapper.php"
  6242. ],
  6243. "exclude-from-classmap": [
  6244. "/Tests/"
  6245. ]
  6246. },
  6247. "notification-url": "https://packagist.org/downloads/",
  6248. "license": [
  6249. "MIT"
  6250. ],
  6251. "authors": [
  6252. {
  6253. "name": "Nicolas Grekas",
  6254. "email": "p@tchwork.com"
  6255. },
  6256. {
  6257. "name": "Symfony Community",
  6258. "homepage": "https://symfony.com/contributors"
  6259. }
  6260. ],
  6261. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6262. "homepage": "https://symfony.com",
  6263. "keywords": [
  6264. "caching",
  6265. "psr6"
  6266. ],
  6267. "support": {
  6268. "source": "https://github.com/symfony/cache/tree/v6.4.16"
  6269. },
  6270. "funding": [
  6271. {
  6272. "url": "https://symfony.com/sponsor",
  6273. "type": "custom"
  6274. },
  6275. {
  6276. "url": "https://github.com/fabpot",
  6277. "type": "github"
  6278. },
  6279. {
  6280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6281. "type": "tidelift"
  6282. }
  6283. ],
  6284. "time": "2024-11-20T10:10:54+00:00"
  6285. },
  6286. {
  6287. "name": "symfony/cache-contracts",
  6288. "version": "v3.5.1",
  6289. "source": {
  6290. "type": "git",
  6291. "url": "https://github.com/symfony/cache-contracts.git",
  6292. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  6293. },
  6294. "dist": {
  6295. "type": "zip",
  6296. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6297. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  6298. "shasum": ""
  6299. },
  6300. "require": {
  6301. "php": ">=8.1",
  6302. "psr/cache": "^3.0"
  6303. },
  6304. "type": "library",
  6305. "extra": {
  6306. "branch-alias": {
  6307. "dev-main": "3.5-dev"
  6308. },
  6309. "thanks": {
  6310. "name": "symfony/contracts",
  6311. "url": "https://github.com/symfony/contracts"
  6312. }
  6313. },
  6314. "autoload": {
  6315. "psr-4": {
  6316. "Symfony\\Contracts\\Cache\\": ""
  6317. }
  6318. },
  6319. "notification-url": "https://packagist.org/downloads/",
  6320. "license": [
  6321. "MIT"
  6322. ],
  6323. "authors": [
  6324. {
  6325. "name": "Nicolas Grekas",
  6326. "email": "p@tchwork.com"
  6327. },
  6328. {
  6329. "name": "Symfony Community",
  6330. "homepage": "https://symfony.com/contributors"
  6331. }
  6332. ],
  6333. "description": "Generic abstractions related to caching",
  6334. "homepage": "https://symfony.com",
  6335. "keywords": [
  6336. "abstractions",
  6337. "contracts",
  6338. "decoupling",
  6339. "interfaces",
  6340. "interoperability",
  6341. "standards"
  6342. ],
  6343. "support": {
  6344. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  6345. },
  6346. "funding": [
  6347. {
  6348. "url": "https://symfony.com/sponsor",
  6349. "type": "custom"
  6350. },
  6351. {
  6352. "url": "https://github.com/fabpot",
  6353. "type": "github"
  6354. },
  6355. {
  6356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6357. "type": "tidelift"
  6358. }
  6359. ],
  6360. "time": "2024-09-25T14:20:29+00:00"
  6361. },
  6362. {
  6363. "name": "symfony/console",
  6364. "version": "v6.4.15",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/symfony/console.git",
  6368. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. =======
  6373. "name": "symfony/console",
  6374. "version": "v6.4.15",
  6375. "source": {
  6376. "type": "git",
  6377. "url": "https://github.com/symfony/console.git",
  6378. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6379. },
  6380. "dist": {
  6381. "type": "zip",
  6382. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  6383. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6384. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6385. "shasum": ""
  6386. },
  6387. "require": {
  6388. "php": ">=8.1",
  6389. "symfony/deprecation-contracts": "^2.5|^3",
  6390. "symfony/polyfill-mbstring": "~1.0",
  6391. "symfony/service-contracts": "^2.5|^3",
  6392. "symfony/string": "^5.4|^6.0|^7.0"
  6393. },
  6394. "conflict": {
  6395. "symfony/dependency-injection": "<5.4",
  6396. "symfony/dotenv": "<5.4",
  6397. "symfony/event-dispatcher": "<5.4",
  6398. "symfony/lock": "<5.4",
  6399. "symfony/process": "<5.4"
  6400. },
  6401. "provide": {
  6402. "psr/log-implementation": "1.0|2.0|3.0"
  6403. },
  6404. "require-dev": {
  6405. "psr/log": "^1|^2|^3",
  6406. "symfony/config": "^5.4|^6.0|^7.0",
  6407. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6408. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6409. "symfony/http-foundation": "^6.4|^7.0",
  6410. "symfony/http-kernel": "^6.4|^7.0",
  6411. "symfony/lock": "^5.4|^6.0|^7.0",
  6412. "symfony/messenger": "^5.4|^6.0|^7.0",
  6413. "symfony/process": "^5.4|^6.0|^7.0",
  6414. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6415. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6416. },
  6417. "type": "library",
  6418. "autoload": {
  6419. "psr-4": {
  6420. "Symfony\\Component\\Console\\": ""
  6421. },
  6422. "exclude-from-classmap": [
  6423. "/Tests/"
  6424. ]
  6425. },
  6426. "notification-url": "https://packagist.org/downloads/",
  6427. "license": [
  6428. "MIT"
  6429. ],
  6430. "authors": [
  6431. {
  6432. "name": "Fabien Potencier",
  6433. "email": "fabien@symfony.com"
  6434. },
  6435. {
  6436. "name": "Symfony Community",
  6437. "homepage": "https://symfony.com/contributors"
  6438. }
  6439. ],
  6440. "description": "Eases the creation of beautiful and testable command line interfaces",
  6441. "homepage": "https://symfony.com",
  6442. "keywords": [
  6443. "cli",
  6444. "command-line",
  6445. "console",
  6446. "terminal"
  6447. ],
  6448. "support": {
  6449. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6450. },
  6451. "funding": [
  6452. {
  6453. "url": "https://symfony.com/sponsor",
  6454. "type": "custom"
  6455. },
  6456. {
  6457. "url": "https://github.com/fabpot",
  6458. "type": "github"
  6459. },
  6460. {
  6461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6462. "type": "tidelift"
  6463. }
  6464. ],
  6465. "time": "2024-11-06T14:19:14+00:00"
  6466. },
  6467. {
  6468. "name": "symfony/deprecation-contracts",
  6469. "version": "v3.5.1",
  6470. "source": {
  6471. "type": "git",
  6472. "url": "https://github.com/symfony/deprecation-contracts.git",
  6473. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6474. },
  6475. "dist": {
  6476. "type": "zip",
  6477. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6478. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6479. "shasum": ""
  6480. },
  6481. "require": {
  6482. "php": ">=8.1"
  6483. },
  6484. "type": "library",
  6485. "extra": {
  6486. "branch-alias": {
  6487. "dev-main": "3.5-dev"
  6488. },
  6489. "thanks": {
  6490. "name": "symfony/contracts",
  6491. "url": "https://github.com/symfony/contracts"
  6492. }
  6493. },
  6494. "autoload": {
  6495. "files": [
  6496. "function.php"
  6497. ]
  6498. },
  6499. "notification-url": "https://packagist.org/downloads/",
  6500. "license": [
  6501. "MIT"
  6502. ],
  6503. "authors": [
  6504. {
  6505. "name": "Nicolas Grekas",
  6506. "email": "p@tchwork.com"
  6507. },
  6508. {
  6509. "name": "Symfony Community",
  6510. "homepage": "https://symfony.com/contributors"
  6511. }
  6512. ],
  6513. "description": "A generic function and convention to trigger deprecation notices",
  6514. "homepage": "https://symfony.com",
  6515. "support": {
  6516. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6517. },
  6518. "funding": [
  6519. {
  6520. "url": "https://symfony.com/sponsor",
  6521. "type": "custom"
  6522. },
  6523. {
  6524. "url": "https://github.com/fabpot",
  6525. "type": "github"
  6526. },
  6527. {
  6528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6529. "type": "tidelift"
  6530. }
  6531. ],
  6532. "time": "2024-09-25T14:20:29+00:00"
  6533. },
  6534. {
  6535. "name": "symfony/finder",
  6536. "version": "v6.4.13",
  6537. "source": {
  6538. "type": "git",
  6539. "url": "https://github.com/symfony/finder.git",
  6540. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6541. },
  6542. "dist": {
  6543. "type": "zip",
  6544. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6545. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6546. "shasum": ""
  6547. },
  6548. "require": {
  6549. "php": ">=8.1"
  6550. },
  6551. "require-dev": {
  6552. "symfony/filesystem": "^6.0|^7.0"
  6553. },
  6554. "type": "library",
  6555. "autoload": {
  6556. "psr-4": {
  6557. "Symfony\\Component\\Finder\\": ""
  6558. },
  6559. "exclude-from-classmap": [
  6560. "/Tests/"
  6561. ]
  6562. },
  6563. "notification-url": "https://packagist.org/downloads/",
  6564. "license": [
  6565. "MIT"
  6566. ],
  6567. "authors": [
  6568. {
  6569. "name": "Fabien Potencier",
  6570. "email": "fabien@symfony.com"
  6571. },
  6572. {
  6573. "name": "Symfony Community",
  6574. "homepage": "https://symfony.com/contributors"
  6575. }
  6576. ],
  6577. "description": "Finds files and directories via an intuitive fluent interface",
  6578. "homepage": "https://symfony.com",
  6579. "support": {
  6580. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  6581. },
  6582. "funding": [
  6583. {
  6584. "url": "https://symfony.com/sponsor",
  6585. "type": "custom"
  6586. },
  6587. {
  6588. "url": "https://github.com/fabpot",
  6589. "type": "github"
  6590. },
  6591. {
  6592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6593. "type": "tidelift"
  6594. }
  6595. ],
  6596. "time": "2024-10-01T08:30:56+00:00"
  6597. },
  6598. {
  6599. "name": "symfony/polyfill-ctype",
  6600. "version": "v1.31.0",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/symfony/polyfill-ctype.git",
  6604. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6609. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6610. "shasum": ""
  6611. },
  6612. "require": {
  6613. "php": ">=7.2"
  6614. },
  6615. "provide": {
  6616. "ext-ctype": "*"
  6617. },
  6618. "suggest": {
  6619. "ext-ctype": "For best performance"
  6620. },
  6621. "type": "library",
  6622. "extra": {
  6623. "thanks": {
  6624. "name": "symfony/polyfill",
  6625. "url": "https://github.com/symfony/polyfill"
  6626. }
  6627. },
  6628. "autoload": {
  6629. "files": [
  6630. "bootstrap.php"
  6631. ],
  6632. "psr-4": {
  6633. "Symfony\\Polyfill\\Ctype\\": ""
  6634. }
  6635. },
  6636. "notification-url": "https://packagist.org/downloads/",
  6637. "license": [
  6638. "MIT"
  6639. ],
  6640. "authors": [
  6641. {
  6642. "name": "Gert de Pagter",
  6643. "email": "BackEndTea@gmail.com"
  6644. },
  6645. {
  6646. "name": "Symfony Community",
  6647. "homepage": "https://symfony.com/contributors"
  6648. }
  6649. ],
  6650. "description": "Symfony polyfill for ctype functions",
  6651. "homepage": "https://symfony.com",
  6652. "keywords": [
  6653. "compatibility",
  6654. "ctype",
  6655. "polyfill",
  6656. "portable"
  6657. ],
  6658. "support": {
  6659. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  6660. },
  6661. "funding": [
  6662. {
  6663. "url": "https://symfony.com/sponsor",
  6664. "type": "custom"
  6665. },
  6666. {
  6667. "url": "https://github.com/fabpot",
  6668. "type": "github"
  6669. },
  6670. {
  6671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6672. "type": "tidelift"
  6673. }
  6674. ],
  6675. "time": "2024-09-09T11:45:10+00:00"
  6676. },
  6677. {
  6678. "name": "symfony/polyfill-intl-grapheme",
  6679. "version": "v1.31.0",
  6680. "source": {
  6681. "type": "git",
  6682. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6683. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6684. },
  6685. "dist": {
  6686. "type": "zip",
  6687. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6688. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6689. "shasum": ""
  6690. },
  6691. "require": {
  6692. "php": ">=7.2"
  6693. },
  6694. "suggest": {
  6695. "ext-intl": "For best performance"
  6696. },
  6697. "type": "library",
  6698. "extra": {
  6699. "thanks": {
  6700. "name": "symfony/polyfill",
  6701. "url": "https://github.com/symfony/polyfill"
  6702. }
  6703. },
  6704. "autoload": {
  6705. "files": [
  6706. "bootstrap.php"
  6707. ],
  6708. "psr-4": {
  6709. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6710. }
  6711. },
  6712. "notification-url": "https://packagist.org/downloads/",
  6713. "license": [
  6714. "MIT"
  6715. ],
  6716. "authors": [
  6717. {
  6718. "name": "Nicolas Grekas",
  6719. "email": "p@tchwork.com"
  6720. },
  6721. {
  6722. "name": "Symfony Community",
  6723. "homepage": "https://symfony.com/contributors"
  6724. }
  6725. ],
  6726. "description": "Symfony polyfill for intl's grapheme_* functions",
  6727. "homepage": "https://symfony.com",
  6728. "keywords": [
  6729. "compatibility",
  6730. "grapheme",
  6731. "intl",
  6732. "polyfill",
  6733. "portable",
  6734. "shim"
  6735. ],
  6736. "support": {
  6737. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  6738. },
  6739. "funding": [
  6740. {
  6741. "url": "https://symfony.com/sponsor",
  6742. "type": "custom"
  6743. },
  6744. {
  6745. "url": "https://github.com/fabpot",
  6746. "type": "github"
  6747. },
  6748. {
  6749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6750. "type": "tidelift"
  6751. }
  6752. ],
  6753. "time": "2024-09-09T11:45:10+00:00"
  6754. },
  6755. {
  6756. "name": "symfony/polyfill-intl-normalizer",
  6757. "version": "v1.31.0",
  6758. "source": {
  6759. "type": "git",
  6760. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6761. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6762. },
  6763. "dist": {
  6764. "type": "zip",
  6765. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6766. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6767. "shasum": ""
  6768. },
  6769. "require": {
  6770. "php": ">=7.2"
  6771. },
  6772. "suggest": {
  6773. "ext-intl": "For best performance"
  6774. },
  6775. "type": "library",
  6776. "extra": {
  6777. "thanks": {
  6778. "name": "symfony/polyfill",
  6779. "url": "https://github.com/symfony/polyfill"
  6780. }
  6781. },
  6782. "autoload": {
  6783. "files": [
  6784. "bootstrap.php"
  6785. ],
  6786. "psr-4": {
  6787. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6788. },
  6789. "classmap": [
  6790. "Resources/stubs"
  6791. ]
  6792. },
  6793. "notification-url": "https://packagist.org/downloads/",
  6794. "license": [
  6795. "MIT"
  6796. ],
  6797. "authors": [
  6798. {
  6799. "name": "Nicolas Grekas",
  6800. "email": "p@tchwork.com"
  6801. },
  6802. {
  6803. "name": "Symfony Community",
  6804. "homepage": "https://symfony.com/contributors"
  6805. }
  6806. ],
  6807. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6808. "homepage": "https://symfony.com",
  6809. "keywords": [
  6810. "compatibility",
  6811. "intl",
  6812. "normalizer",
  6813. "polyfill",
  6814. "portable",
  6815. "shim"
  6816. ],
  6817. "support": {
  6818. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6819. },
  6820. "funding": [
  6821. {
  6822. "url": "https://symfony.com/sponsor",
  6823. "type": "custom"
  6824. },
  6825. {
  6826. "url": "https://github.com/fabpot",
  6827. "type": "github"
  6828. },
  6829. {
  6830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6831. "type": "tidelift"
  6832. }
  6833. ],
  6834. "time": "2024-09-09T11:45:10+00:00"
  6835. },
  6836. {
  6837. "name": "symfony/polyfill-mbstring",
  6838. "version": "v1.31.0",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6842. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6847. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "php": ">=7.2"
  6852. },
  6853. "provide": {
  6854. "ext-mbstring": "*"
  6855. },
  6856. "suggest": {
  6857. "ext-mbstring": "For best performance"
  6858. },
  6859. "type": "library",
  6860. "extra": {
  6861. "thanks": {
  6862. "name": "symfony/polyfill",
  6863. "url": "https://github.com/symfony/polyfill"
  6864. }
  6865. },
  6866. "autoload": {
  6867. "files": [
  6868. "bootstrap.php"
  6869. ],
  6870. "psr-4": {
  6871. "Symfony\\Polyfill\\Mbstring\\": ""
  6872. }
  6873. },
  6874. "notification-url": "https://packagist.org/downloads/",
  6875. "license": [
  6876. "MIT"
  6877. ],
  6878. "authors": [
  6879. {
  6880. "name": "Nicolas Grekas",
  6881. "email": "p@tchwork.com"
  6882. },
  6883. {
  6884. "name": "Symfony Community",
  6885. "homepage": "https://symfony.com/contributors"
  6886. }
  6887. ],
  6888. "description": "Symfony polyfill for the Mbstring extension",
  6889. "homepage": "https://symfony.com",
  6890. "keywords": [
  6891. "compatibility",
  6892. "mbstring",
  6893. "polyfill",
  6894. "portable",
  6895. "shim"
  6896. ],
  6897. "support": {
  6898. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6899. },
  6900. "funding": [
  6901. {
  6902. "url": "https://symfony.com/sponsor",
  6903. "type": "custom"
  6904. },
  6905. {
  6906. "url": "https://github.com/fabpot",
  6907. "type": "github"
  6908. },
  6909. {
  6910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6911. "type": "tidelift"
  6912. }
  6913. ],
  6914. "time": "2024-09-09T11:45:10+00:00"
  6915. },
  6916. {
  6917. "name": "symfony/polyfill-php80",
  6918. "version": "v1.31.0",
  6919. "source": {
  6920. "type": "git",
  6921. "url": "https://github.com/symfony/polyfill-php80.git",
  6922. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6923. },
  6924. "dist": {
  6925. "type": "zip",
  6926. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6927. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6928. "shasum": ""
  6929. },
  6930. "require": {
  6931. "php": ">=7.2"
  6932. },
  6933. "type": "library",
  6934. "extra": {
  6935. "thanks": {
  6936. "name": "symfony/polyfill",
  6937. "url": "https://github.com/symfony/polyfill"
  6938. }
  6939. },
  6940. "autoload": {
  6941. "files": [
  6942. "bootstrap.php"
  6943. ],
  6944. "psr-4": {
  6945. "Symfony\\Polyfill\\Php80\\": ""
  6946. },
  6947. "classmap": [
  6948. "Resources/stubs"
  6949. ]
  6950. },
  6951. "notification-url": "https://packagist.org/downloads/",
  6952. "license": [
  6953. "MIT"
  6954. ],
  6955. "authors": [
  6956. {
  6957. "name": "Ion Bazan",
  6958. "email": "ion.bazan@gmail.com"
  6959. },
  6960. {
  6961. "name": "Nicolas Grekas",
  6962. "email": "p@tchwork.com"
  6963. },
  6964. {
  6965. "name": "Symfony Community",
  6966. "homepage": "https://symfony.com/contributors"
  6967. }
  6968. ],
  6969. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6970. "homepage": "https://symfony.com",
  6971. "keywords": [
  6972. "compatibility",
  6973. "polyfill",
  6974. "portable",
  6975. "shim"
  6976. ],
  6977. "support": {
  6978. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6979. },
  6980. "funding": [
  6981. {
  6982. "url": "https://symfony.com/sponsor",
  6983. "type": "custom"
  6984. },
  6985. {
  6986. "url": "https://github.com/fabpot",
  6987. "type": "github"
  6988. },
  6989. {
  6990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6991. "type": "tidelift"
  6992. }
  6993. ],
  6994. "time": "2024-09-09T11:45:10+00:00"
  6995. },
  6996. {
  6997. "name": "symfony/service-contracts",
  6998. "version": "v3.5.1",
  6999. "source": {
  7000. "type": "git",
  7001. "url": "https://github.com/symfony/service-contracts.git",
  7002. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7003. },
  7004. "dist": {
  7005. "type": "zip",
  7006. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7007. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7008. "shasum": ""
  7009. },
  7010. "require": {
  7011. "php": ">=8.1",
  7012. "psr/container": "^1.1|^2.0",
  7013. "symfony/deprecation-contracts": "^2.5|^3"
  7014. },
  7015. "conflict": {
  7016. "ext-psr": "<1.1|>=2"
  7017. },
  7018. "type": "library",
  7019. "extra": {
  7020. "branch-alias": {
  7021. "dev-main": "3.5-dev"
  7022. },
  7023. "thanks": {
  7024. "name": "symfony/contracts",
  7025. "url": "https://github.com/symfony/contracts"
  7026. }
  7027. },
  7028. "autoload": {
  7029. "psr-4": {
  7030. "Symfony\\Contracts\\Service\\": ""
  7031. },
  7032. "exclude-from-classmap": [
  7033. "/Test/"
  7034. ]
  7035. },
  7036. "notification-url": "https://packagist.org/downloads/",
  7037. "license": [
  7038. "MIT"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Nicolas Grekas",
  7043. "email": "p@tchwork.com"
  7044. },
  7045. {
  7046. "name": "Symfony Community",
  7047. "homepage": "https://symfony.com/contributors"
  7048. }
  7049. ],
  7050. "description": "Generic abstractions related to writing services",
  7051. "homepage": "https://symfony.com",
  7052. "keywords": [
  7053. "abstractions",
  7054. "contracts",
  7055. "decoupling",
  7056. "interfaces",
  7057. "interoperability",
  7058. "standards"
  7059. ],
  7060. "support": {
  7061. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7062. },
  7063. "funding": [
  7064. {
  7065. "url": "https://symfony.com/sponsor",
  7066. "type": "custom"
  7067. },
  7068. {
  7069. "url": "https://github.com/fabpot",
  7070. "type": "github"
  7071. },
  7072. {
  7073. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7074. "type": "tidelift"
  7075. }
  7076. ],
  7077. "time": "2024-09-25T14:20:29+00:00"
  7078. },
  7079. {
  7080. "name": "symfony/string",
  7081. "version": "v6.4.15",
  7082. "source": {
  7083. "type": "git",
  7084. "url": "https://github.com/symfony/string.git",
  7085. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7086. },
  7087. "dist": {
  7088. "type": "zip",
  7089. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7090. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7091. "shasum": ""
  7092. },
  7093. "require": {
  7094. "php": ">=8.1",
  7095. "symfony/polyfill-ctype": "~1.8",
  7096. "symfony/polyfill-intl-grapheme": "~1.0",
  7097. "symfony/polyfill-intl-normalizer": "~1.0",
  7098. "symfony/polyfill-mbstring": "~1.0"
  7099. },
  7100. "conflict": {
  7101. "symfony/translation-contracts": "<2.5"
  7102. },
  7103. "require-dev": {
  7104. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7105. "symfony/http-client": "^5.4|^6.0|^7.0",
  7106. "symfony/intl": "^6.2|^7.0",
  7107. "symfony/translation-contracts": "^2.5|^3.0",
  7108. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7109. },
  7110. "type": "library",
  7111. "autoload": {
  7112. "files": [
  7113. "Resources/functions.php"
  7114. ],
  7115. "psr-4": {
  7116. "Symfony\\Component\\String\\": ""
  7117. },
  7118. "exclude-from-classmap": [
  7119. "/Tests/"
  7120. ]
  7121. },
  7122. "notification-url": "https://packagist.org/downloads/",
  7123. "license": [
  7124. "MIT"
  7125. ],
  7126. "authors": [
  7127. {
  7128. "name": "Nicolas Grekas",
  7129. "email": "p@tchwork.com"
  7130. },
  7131. {
  7132. "name": "Symfony Community",
  7133. "homepage": "https://symfony.com/contributors"
  7134. }
  7135. ],
  7136. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7137. "homepage": "https://symfony.com",
  7138. "keywords": [
  7139. "grapheme",
  7140. "i18n",
  7141. "string",
  7142. "unicode",
  7143. "utf-8",
  7144. "utf8"
  7145. ],
  7146. "support": {
  7147. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7148. },
  7149. "funding": [
  7150. {
  7151. "url": "https://symfony.com/sponsor",
  7152. "type": "custom"
  7153. },
  7154. {
  7155. "url": "https://github.com/fabpot",
  7156. "type": "github"
  7157. },
  7158. {
  7159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7160. "type": "tidelift"
  7161. }
  7162. ],
  7163. "time": "2024-11-13T13:31:12+00:00"
  7164. },
  7165. {
  7166. "name": "symfony/translation",
  7167. "version": "v6.4.13",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/symfony/translation.git",
  7171. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7176. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7177. "shasum": ""
  7178. },
  7179. "require": {
  7180. "php": ">=8.1",
  7181. "symfony/deprecation-contracts": "^2.5|^3",
  7182. "symfony/polyfill-mbstring": "~1.0",
  7183. "symfony/translation-contracts": "^2.5|^3.0"
  7184. },
  7185. "conflict": {
  7186. "symfony/config": "<5.4",
  7187. "symfony/console": "<5.4",
  7188. "symfony/dependency-injection": "<5.4",
  7189. "symfony/http-client-contracts": "<2.5",
  7190. "symfony/http-kernel": "<5.4",
  7191. "symfony/service-contracts": "<2.5",
  7192. "symfony/twig-bundle": "<5.4",
  7193. "symfony/yaml": "<5.4"
  7194. },
  7195. "provide": {
  7196. "symfony/translation-implementation": "2.3|3.0"
  7197. },
  7198. "require-dev": {
  7199. "nikic/php-parser": "^4.18|^5.0",
  7200. "psr/log": "^1|^2|^3",
  7201. "symfony/config": "^5.4|^6.0|^7.0",
  7202. "symfony/console": "^5.4|^6.0|^7.0",
  7203. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7204. "symfony/finder": "^5.4|^6.0|^7.0",
  7205. "symfony/http-client-contracts": "^2.5|^3.0",
  7206. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7207. "symfony/intl": "^5.4|^6.0|^7.0",
  7208. "symfony/polyfill-intl-icu": "^1.21",
  7209. "symfony/routing": "^5.4|^6.0|^7.0",
  7210. "symfony/service-contracts": "^2.5|^3",
  7211. "symfony/yaml": "^5.4|^6.0|^7.0"
  7212. },
  7213. "type": "library",
  7214. "autoload": {
  7215. "files": [
  7216. "Resources/functions.php"
  7217. ],
  7218. "psr-4": {
  7219. "Symfony\\Component\\Translation\\": ""
  7220. },
  7221. "exclude-from-classmap": [
  7222. "/Tests/"
  7223. ]
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Fabien Potencier",
  7232. "email": "fabien@symfony.com"
  7233. },
  7234. {
  7235. "name": "Symfony Community",
  7236. "homepage": "https://symfony.com/contributors"
  7237. }
  7238. ],
  7239. "description": "Provides tools to internationalize your application",
  7240. "homepage": "https://symfony.com",
  7241. "support": {
  7242. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7243. },
  7244. "funding": [
  7245. {
  7246. "url": "https://symfony.com/sponsor",
  7247. "type": "custom"
  7248. },
  7249. {
  7250. "url": "https://github.com/fabpot",
  7251. "type": "github"
  7252. },
  7253. {
  7254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7255. "type": "tidelift"
  7256. }
  7257. ],
  7258. "time": "2024-09-27T18:14:25+00:00"
  7259. },
  7260. {
  7261. "name": "symfony/translation-contracts",
  7262. "version": "v3.5.1",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/symfony/translation-contracts.git",
  7266. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7271. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7272. "shasum": ""
  7273. },
  7274. "require": {
  7275. "php": ">=8.1"
  7276. },
  7277. "type": "library",
  7278. "extra": {
  7279. "branch-alias": {
  7280. "dev-main": "3.5-dev"
  7281. },
  7282. "thanks": {
  7283. "name": "symfony/contracts",
  7284. "url": "https://github.com/symfony/contracts"
  7285. }
  7286. },
  7287. "autoload": {
  7288. "psr-4": {
  7289. "Symfony\\Contracts\\Translation\\": ""
  7290. },
  7291. "exclude-from-classmap": [
  7292. "/Test/"
  7293. ]
  7294. },
  7295. "notification-url": "https://packagist.org/downloads/",
  7296. "license": [
  7297. "MIT"
  7298. ],
  7299. "authors": [
  7300. {
  7301. "name": "Nicolas Grekas",
  7302. "email": "p@tchwork.com"
  7303. },
  7304. {
  7305. "name": "Symfony Community",
  7306. "homepage": "https://symfony.com/contributors"
  7307. }
  7308. ],
  7309. "description": "Generic abstractions related to translation",
  7310. "homepage": "https://symfony.com",
  7311. "keywords": [
  7312. "abstractions",
  7313. "contracts",
  7314. "decoupling",
  7315. "interfaces",
  7316. "interoperability",
  7317. "standards"
  7318. ],
  7319. "support": {
  7320. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7321. },
  7322. "funding": [
  7323. {
  7324. "url": "https://symfony.com/sponsor",
  7325. "type": "custom"
  7326. },
  7327. {
  7328. "url": "https://github.com/fabpot",
  7329. "type": "github"
  7330. },
  7331. {
  7332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7333. "type": "tidelift"
  7334. }
  7335. ],
  7336. "time": "2024-09-25T14:20:29+00:00"
  7337. <<<<<<< HEAD
  7338. },
  7339. {
  7340. "name": "symfony/var-dumper",
  7341. "version": "v6.4.15",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/symfony/var-dumper.git",
  7345. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7350. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "php": ">=8.1",
  7355. "symfony/deprecation-contracts": "^2.5|^3",
  7356. "symfony/polyfill-mbstring": "~1.0"
  7357. },
  7358. "conflict": {
  7359. "symfony/console": "<5.4"
  7360. },
  7361. "require-dev": {
  7362. "ext-iconv": "*",
  7363. "symfony/console": "^5.4|^6.0|^7.0",
  7364. "symfony/error-handler": "^6.3|^7.0",
  7365. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7366. "symfony/process": "^5.4|^6.0|^7.0",
  7367. "symfony/uid": "^5.4|^6.0|^7.0",
  7368. "twig/twig": "^2.13|^3.0.4"
  7369. },
  7370. "bin": [
  7371. "Resources/bin/var-dump-server"
  7372. ],
  7373. "type": "library",
  7374. "autoload": {
  7375. "files": [
  7376. "Resources/functions/dump.php"
  7377. ],
  7378. "psr-4": {
  7379. "Symfony\\Component\\VarDumper\\": ""
  7380. },
  7381. "exclude-from-classmap": [
  7382. "/Tests/"
  7383. ]
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "MIT"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Nicolas Grekas",
  7392. "email": "p@tchwork.com"
  7393. },
  7394. {
  7395. "name": "Symfony Community",
  7396. "homepage": "https://symfony.com/contributors"
  7397. }
  7398. ],
  7399. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7400. "homepage": "https://symfony.com",
  7401. "keywords": [
  7402. "debug",
  7403. "dump"
  7404. ],
  7405. "support": {
  7406. "source": "https://github.com/symfony/var-dumper/tree/v6.4.15"
  7407. },
  7408. "funding": [
  7409. {
  7410. "url": "https://symfony.com/sponsor",
  7411. "type": "custom"
  7412. },
  7413. {
  7414. "url": "https://github.com/fabpot",
  7415. "type": "github"
  7416. },
  7417. {
  7418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7419. "type": "tidelift"
  7420. }
  7421. ],
  7422. "time": "2024-11-08T15:28:48+00:00"
  7423. },
  7424. {
  7425. "name": "symfony/var-exporter",
  7426. "version": "v6.4.13",
  7427. "source": {
  7428. "type": "git",
  7429. "url": "https://github.com/symfony/var-exporter.git",
  7430. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7431. },
  7432. "dist": {
  7433. "type": "zip",
  7434. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7435. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7436. "shasum": ""
  7437. },
  7438. "require": {
  7439. "php": ">=8.1",
  7440. "symfony/deprecation-contracts": "^2.5|^3"
  7441. },
  7442. "require-dev": {
  7443. "symfony/property-access": "^6.4|^7.0",
  7444. "symfony/serializer": "^6.4|^7.0",
  7445. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7446. },
  7447. "type": "library",
  7448. "autoload": {
  7449. "psr-4": {
  7450. "Symfony\\Component\\VarExporter\\": ""
  7451. },
  7452. "exclude-from-classmap": [
  7453. "/Tests/"
  7454. ]
  7455. },
  7456. "notification-url": "https://packagist.org/downloads/",
  7457. "license": [
  7458. "MIT"
  7459. ],
  7460. "authors": [
  7461. {
  7462. "name": "Nicolas Grekas",
  7463. "email": "p@tchwork.com"
  7464. },
  7465. {
  7466. "name": "Symfony Community",
  7467. "homepage": "https://symfony.com/contributors"
  7468. }
  7469. ],
  7470. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7471. "homepage": "https://symfony.com",
  7472. "keywords": [
  7473. "clone",
  7474. "construct",
  7475. "export",
  7476. "hydrate",
  7477. "instantiate",
  7478. "lazy-loading",
  7479. "proxy",
  7480. "serialize"
  7481. ],
  7482. "support": {
  7483. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7484. },
  7485. "funding": [
  7486. {
  7487. "url": "https://symfony.com/sponsor",
  7488. "type": "custom"
  7489. },
  7490. {
  7491. "url": "https://github.com/fabpot",
  7492. "type": "github"
  7493. },
  7494. {
  7495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7496. "type": "tidelift"
  7497. }
  7498. ],
  7499. "time": "2024-09-25T14:18:03+00:00"
  7500. =======
  7501. >>>>>>> 32a7466ce932df46b3fc3cf9b1ac8f32b18dfed2
  7502. },
  7503. {
  7504. "name": "vlucas/phpdotenv",
  7505. "version": "v5.6.1",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/vlucas/phpdotenv.git",
  7509. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7514. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7515. "shasum": ""
  7516. },
  7517. "require": {
  7518. "ext-pcre": "*",
  7519. "graham-campbell/result-type": "^1.1.3",
  7520. "php": "^7.2.5 || ^8.0",
  7521. "phpoption/phpoption": "^1.9.3",
  7522. "symfony/polyfill-ctype": "^1.24",
  7523. "symfony/polyfill-mbstring": "^1.24",
  7524. "symfony/polyfill-php80": "^1.24"
  7525. },
  7526. "require-dev": {
  7527. "bamarni/composer-bin-plugin": "^1.8.2",
  7528. "ext-filter": "*",
  7529. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7530. },
  7531. "suggest": {
  7532. "ext-filter": "Required to use the boolean validator."
  7533. },
  7534. "type": "library",
  7535. "extra": {
  7536. "bamarni-bin": {
  7537. "bin-links": true,
  7538. "forward-command": false
  7539. },
  7540. "branch-alias": {
  7541. "dev-master": "5.6-dev"
  7542. }
  7543. },
  7544. "autoload": {
  7545. "psr-4": {
  7546. "Dotenv\\": "src/"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "BSD-3-Clause"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "Graham Campbell",
  7556. "email": "hello@gjcampbell.co.uk",
  7557. "homepage": "https://github.com/GrahamCampbell"
  7558. },
  7559. {
  7560. "name": "Vance Lucas",
  7561. "email": "vance@vancelucas.com",
  7562. "homepage": "https://github.com/vlucas"
  7563. }
  7564. ],
  7565. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7566. "keywords": [
  7567. "dotenv",
  7568. "env",
  7569. "environment"
  7570. ],
  7571. "support": {
  7572. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7573. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7574. },
  7575. "funding": [
  7576. {
  7577. "url": "https://github.com/GrahamCampbell",
  7578. "type": "github"
  7579. },
  7580. {
  7581. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7582. "type": "tidelift"
  7583. }
  7584. ],
  7585. "time": "2024-07-20T21:52:34+00:00"
  7586. }
  7587. ],
  7588. "packages-dev": [
  7589. {
  7590. "name": "clue/ndjson-react",
  7591. "version": "v1.3.0",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/clue/reactphp-ndjson.git",
  7595. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7600. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "php": ">=5.3",
  7605. "react/stream": "^1.2"
  7606. },
  7607. "require-dev": {
  7608. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7609. "react/event-loop": "^1.2"
  7610. },
  7611. "type": "library",
  7612. "autoload": {
  7613. "psr-4": {
  7614. "Clue\\React\\NDJson\\": "src/"
  7615. }
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "MIT"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Christian Lück",
  7624. "email": "christian@clue.engineering"
  7625. }
  7626. ],
  7627. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7628. "homepage": "https://github.com/clue/reactphp-ndjson",
  7629. "keywords": [
  7630. "NDJSON",
  7631. "json",
  7632. "jsonlines",
  7633. "newline",
  7634. "reactphp",
  7635. "streaming"
  7636. ],
  7637. "support": {
  7638. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7639. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7640. },
  7641. "funding": [
  7642. {
  7643. "url": "https://clue.engineering/support",
  7644. "type": "custom"
  7645. },
  7646. {
  7647. "url": "https://github.com/clue",
  7648. "type": "github"
  7649. }
  7650. ],
  7651. "time": "2022-12-23T10:58:28+00:00"
  7652. },
  7653. {
  7654. "name": "composer/pcre",
  7655. "version": "3.3.2",
  7656. "source": {
  7657. "type": "git",
  7658. "url": "https://github.com/composer/pcre.git",
  7659. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  7660. },
  7661. "dist": {
  7662. "type": "zip",
  7663. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7664. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7665. "shasum": ""
  7666. },
  7667. "require": {
  7668. "php": "^7.4 || ^8.0"
  7669. },
  7670. "conflict": {
  7671. "phpstan/phpstan": "<1.11.10"
  7672. },
  7673. "require-dev": {
  7674. "phpstan/phpstan": "^1.12 || ^2",
  7675. "phpstan/phpstan-strict-rules": "^1 || ^2",
  7676. "phpunit/phpunit": "^8 || ^9"
  7677. },
  7678. "type": "library",
  7679. "extra": {
  7680. "branch-alias": {
  7681. "dev-main": "3.x-dev"
  7682. },
  7683. "phpstan": {
  7684. "includes": [
  7685. "extension.neon"
  7686. ]
  7687. }
  7688. },
  7689. "autoload": {
  7690. "psr-4": {
  7691. "Composer\\Pcre\\": "src"
  7692. }
  7693. },
  7694. "notification-url": "https://packagist.org/downloads/",
  7695. "license": [
  7696. "MIT"
  7697. ],
  7698. "authors": [
  7699. {
  7700. "name": "Jordi Boggiano",
  7701. "email": "j.boggiano@seld.be",
  7702. "homepage": "http://seld.be"
  7703. }
  7704. ],
  7705. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7706. "keywords": [
  7707. "PCRE",
  7708. "preg",
  7709. "regex",
  7710. "regular expression"
  7711. ],
  7712. "support": {
  7713. "issues": "https://github.com/composer/pcre/issues",
  7714. "source": "https://github.com/composer/pcre/tree/3.3.2"
  7715. },
  7716. "funding": [
  7717. {
  7718. "url": "https://packagist.com",
  7719. "type": "custom"
  7720. },
  7721. {
  7722. "url": "https://github.com/composer",
  7723. "type": "github"
  7724. },
  7725. {
  7726. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7727. "type": "tidelift"
  7728. }
  7729. ],
  7730. "time": "2024-11-12T16:29:46+00:00"
  7731. },
  7732. {
  7733. "name": "composer/semver",
  7734. "version": "3.4.3",
  7735. "source": {
  7736. "type": "git",
  7737. "url": "https://github.com/composer/semver.git",
  7738. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7739. },
  7740. "dist": {
  7741. "type": "zip",
  7742. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7743. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7744. "shasum": ""
  7745. },
  7746. "require": {
  7747. "php": "^5.3.2 || ^7.0 || ^8.0"
  7748. },
  7749. "require-dev": {
  7750. "phpstan/phpstan": "^1.11",
  7751. "symfony/phpunit-bridge": "^3 || ^7"
  7752. },
  7753. "type": "library",
  7754. "extra": {
  7755. "branch-alias": {
  7756. "dev-main": "3.x-dev"
  7757. }
  7758. },
  7759. "autoload": {
  7760. "psr-4": {
  7761. "Composer\\Semver\\": "src"
  7762. }
  7763. },
  7764. "notification-url": "https://packagist.org/downloads/",
  7765. "license": [
  7766. "MIT"
  7767. ],
  7768. "authors": [
  7769. {
  7770. "name": "Nils Adermann",
  7771. "email": "naderman@naderman.de",
  7772. "homepage": "http://www.naderman.de"
  7773. },
  7774. {
  7775. "name": "Jordi Boggiano",
  7776. "email": "j.boggiano@seld.be",
  7777. "homepage": "http://seld.be"
  7778. },
  7779. {
  7780. "name": "Rob Bast",
  7781. "email": "rob.bast@gmail.com",
  7782. "homepage": "http://robbast.nl"
  7783. }
  7784. ],
  7785. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7786. "keywords": [
  7787. "semantic",
  7788. "semver",
  7789. "validation",
  7790. "versioning"
  7791. ],
  7792. "support": {
  7793. "irc": "ircs://irc.libera.chat:6697/composer",
  7794. "issues": "https://github.com/composer/semver/issues",
  7795. "source": "https://github.com/composer/semver/tree/3.4.3"
  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-09-19T14:15:21+00:00"
  7812. },
  7813. {
  7814. "name": "composer/xdebug-handler",
  7815. "version": "3.0.5",
  7816. "source": {
  7817. "type": "git",
  7818. "url": "https://github.com/composer/xdebug-handler.git",
  7819. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7820. },
  7821. "dist": {
  7822. "type": "zip",
  7823. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7824. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7825. "shasum": ""
  7826. },
  7827. "require": {
  7828. "composer/pcre": "^1 || ^2 || ^3",
  7829. "php": "^7.2.5 || ^8.0",
  7830. "psr/log": "^1 || ^2 || ^3"
  7831. },
  7832. "require-dev": {
  7833. "phpstan/phpstan": "^1.0",
  7834. "phpstan/phpstan-strict-rules": "^1.1",
  7835. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7836. },
  7837. "type": "library",
  7838. "autoload": {
  7839. "psr-4": {
  7840. "Composer\\XdebugHandler\\": "src"
  7841. }
  7842. },
  7843. "notification-url": "https://packagist.org/downloads/",
  7844. "license": [
  7845. "MIT"
  7846. ],
  7847. "authors": [
  7848. {
  7849. "name": "John Stevenson",
  7850. "email": "john-stevenson@blueyonder.co.uk"
  7851. }
  7852. ],
  7853. "description": "Restarts a process without Xdebug.",
  7854. "keywords": [
  7855. "Xdebug",
  7856. "performance"
  7857. ],
  7858. "support": {
  7859. "irc": "ircs://irc.libera.chat:6697/composer",
  7860. "issues": "https://github.com/composer/xdebug-handler/issues",
  7861. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7862. },
  7863. "funding": [
  7864. {
  7865. "url": "https://packagist.com",
  7866. "type": "custom"
  7867. },
  7868. {
  7869. "url": "https://github.com/composer",
  7870. "type": "github"
  7871. },
  7872. {
  7873. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7874. "type": "tidelift"
  7875. }
  7876. ],
  7877. "time": "2024-05-06T16:37:16+00:00"
  7878. },
  7879. {
  7880. "name": "evenement/evenement",
  7881. "version": "v3.0.2",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://github.com/igorw/evenement.git",
  7885. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7890. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7891. "shasum": ""
  7892. },
  7893. "require": {
  7894. "php": ">=7.0"
  7895. },
  7896. "require-dev": {
  7897. "phpunit/phpunit": "^9 || ^6"
  7898. },
  7899. "type": "library",
  7900. "autoload": {
  7901. "psr-4": {
  7902. "Evenement\\": "src/"
  7903. }
  7904. },
  7905. "notification-url": "https://packagist.org/downloads/",
  7906. "license": [
  7907. "MIT"
  7908. ],
  7909. "authors": [
  7910. {
  7911. "name": "Igor Wiedler",
  7912. "email": "igor@wiedler.ch"
  7913. }
  7914. ],
  7915. "description": "Événement is a very simple event dispatching library for PHP",
  7916. "keywords": [
  7917. "event-dispatcher",
  7918. "event-emitter"
  7919. ],
  7920. "support": {
  7921. "issues": "https://github.com/igorw/evenement/issues",
  7922. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7923. },
  7924. "time": "2023-08-08T05:53:35+00:00"
  7925. },
  7926. {
  7927. "name": "fidry/cpu-core-counter",
  7928. "version": "1.2.0",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7932. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7937. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "php": "^7.2 || ^8.0"
  7942. },
  7943. "require-dev": {
  7944. "fidry/makefile": "^0.2.0",
  7945. "fidry/php-cs-fixer-config": "^1.1.2",
  7946. "phpstan/extension-installer": "^1.2.0",
  7947. "phpstan/phpstan": "^1.9.2",
  7948. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7949. "phpstan/phpstan-phpunit": "^1.2.2",
  7950. "phpstan/phpstan-strict-rules": "^1.4.4",
  7951. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7952. "webmozarts/strict-phpunit": "^7.5"
  7953. },
  7954. "type": "library",
  7955. "autoload": {
  7956. "psr-4": {
  7957. "Fidry\\CpuCoreCounter\\": "src/"
  7958. }
  7959. },
  7960. "notification-url": "https://packagist.org/downloads/",
  7961. "license": [
  7962. "MIT"
  7963. ],
  7964. "authors": [
  7965. {
  7966. "name": "Théo FIDRY",
  7967. "email": "theo.fidry@gmail.com"
  7968. }
  7969. ],
  7970. "description": "Tiny utility to get the number of CPU cores.",
  7971. "keywords": [
  7972. "CPU",
  7973. "core"
  7974. ],
  7975. "support": {
  7976. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7977. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7978. },
  7979. "funding": [
  7980. {
  7981. "url": "https://github.com/theofidry",
  7982. "type": "github"
  7983. }
  7984. ],
  7985. "time": "2024-08-06T10:04:20+00:00"
  7986. },
  7987. {
  7988. "name": "friendsofphp/php-cs-fixer",
  7989. "version": "v3.65.0",
  7990. "source": {
  7991. "type": "git",
  7992. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7993. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  7994. },
  7995. "dist": {
  7996. "type": "zip",
  7997. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  7998. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  7999. "shasum": ""
  8000. },
  8001. "require": {
  8002. "clue/ndjson-react": "^1.0",
  8003. "composer/semver": "^3.4",
  8004. "composer/xdebug-handler": "^3.0.3",
  8005. "ext-filter": "*",
  8006. "ext-json": "*",
  8007. "ext-tokenizer": "*",
  8008. "fidry/cpu-core-counter": "^1.2",
  8009. "php": "^7.4 || ^8.0",
  8010. "react/child-process": "^0.6.5",
  8011. "react/event-loop": "^1.0",
  8012. "react/promise": "^2.0 || ^3.0",
  8013. "react/socket": "^1.0",
  8014. "react/stream": "^1.0",
  8015. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8016. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8017. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8018. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8019. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8020. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8021. "symfony/polyfill-mbstring": "^1.28",
  8022. "symfony/polyfill-php80": "^1.28",
  8023. "symfony/polyfill-php81": "^1.28",
  8024. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8025. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8026. },
  8027. "require-dev": {
  8028. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8029. "infection/infection": "^0.29.8",
  8030. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8031. "keradus/cli-executor": "^2.1",
  8032. "mikey179/vfsstream": "^1.6.12",
  8033. "php-coveralls/php-coveralls": "^2.7",
  8034. "php-cs-fixer/accessible-object": "^1.1",
  8035. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8036. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8037. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8038. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8039. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8040. },
  8041. "suggest": {
  8042. "ext-dom": "For handling output formats in XML",
  8043. "ext-mbstring": "For handling non-UTF8 characters."
  8044. },
  8045. "bin": [
  8046. "php-cs-fixer"
  8047. ],
  8048. "type": "application",
  8049. "autoload": {
  8050. "psr-4": {
  8051. "PhpCsFixer\\": "src/"
  8052. },
  8053. "exclude-from-classmap": [
  8054. "src/Fixer/Internal/*"
  8055. ]
  8056. },
  8057. "notification-url": "https://packagist.org/downloads/",
  8058. "license": [
  8059. "MIT"
  8060. ],
  8061. "authors": [
  8062. {
  8063. "name": "Fabien Potencier",
  8064. "email": "fabien@symfony.com"
  8065. },
  8066. {
  8067. "name": "Dariusz Rumiński",
  8068. "email": "dariusz.ruminski@gmail.com"
  8069. }
  8070. ],
  8071. "description": "A tool to automatically fix PHP code style",
  8072. "keywords": [
  8073. "Static code analysis",
  8074. "fixer",
  8075. "standards",
  8076. "static analysis"
  8077. ],
  8078. "support": {
  8079. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8080. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  8081. },
  8082. "funding": [
  8083. {
  8084. "url": "https://github.com/keradus",
  8085. "type": "github"
  8086. }
  8087. ],
  8088. "time": "2024-11-25T00:39:24+00:00"
  8089. },
  8090. {
  8091. "name": "hamcrest/hamcrest-php",
  8092. "version": "v2.0.1",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8096. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8101. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "php": "^5.3|^7.0|^8.0"
  8106. },
  8107. "replace": {
  8108. "cordoval/hamcrest-php": "*",
  8109. "davedevelopment/hamcrest-php": "*",
  8110. "kodova/hamcrest-php": "*"
  8111. },
  8112. "require-dev": {
  8113. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8114. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8115. },
  8116. "type": "library",
  8117. "extra": {
  8118. "branch-alias": {
  8119. "dev-master": "2.1-dev"
  8120. }
  8121. },
  8122. "autoload": {
  8123. "classmap": [
  8124. "hamcrest"
  8125. ]
  8126. },
  8127. "notification-url": "https://packagist.org/downloads/",
  8128. "license": [
  8129. "BSD-3-Clause"
  8130. ],
  8131. "description": "This is the PHP port of Hamcrest Matchers",
  8132. "keywords": [
  8133. "test"
  8134. ],
  8135. "support": {
  8136. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8137. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8138. },
  8139. "time": "2020-07-09T08:09:16+00:00"
  8140. },
  8141. {
  8142. "name": "hyperf/devtool",
  8143. "version": "v3.1.42",
  8144. "source": {
  8145. "type": "git",
  8146. "url": "https://github.com/hyperf/devtool.git",
  8147. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8148. },
  8149. "dist": {
  8150. "type": "zip",
  8151. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8152. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8153. "shasum": ""
  8154. },
  8155. "require": {
  8156. "hyperf/code-parser": "~3.1.0",
  8157. "hyperf/command": "~3.1.0",
  8158. "hyperf/contract": "~3.1.0",
  8159. "hyperf/di": "~3.1.0",
  8160. "hyperf/support": "~3.1.0",
  8161. "hyperf/utils": "~3.1.0",
  8162. "php": ">=8.1"
  8163. },
  8164. "type": "library",
  8165. "extra": {
  8166. "branch-alias": {
  8167. "dev-master": "3.1-dev"
  8168. },
  8169. "hyperf": {
  8170. "config": "Hyperf\\Devtool\\ConfigProvider"
  8171. }
  8172. },
  8173. "autoload": {
  8174. "psr-4": {
  8175. "Hyperf\\Devtool\\": "src/"
  8176. }
  8177. },
  8178. "notification-url": "https://packagist.org/downloads/",
  8179. "license": [
  8180. "MIT"
  8181. ],
  8182. "description": "A Devtool for Hyperf.",
  8183. "homepage": "https://hyperf.io",
  8184. "keywords": [
  8185. "dev",
  8186. "devtool",
  8187. "hyperf",
  8188. "php",
  8189. "swoole"
  8190. ],
  8191. "support": {
  8192. "docs": "https://hyperf.wiki",
  8193. "issues": "https://github.com/hyperf/hyperf/issues",
  8194. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8195. "source": "https://github.com/hyperf/hyperf"
  8196. },
  8197. "funding": [
  8198. {
  8199. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8200. "type": "custom"
  8201. },
  8202. {
  8203. "url": "https://opencollective.com/hyperf",
  8204. "type": "open_collective"
  8205. }
  8206. ],
  8207. "time": "2024-09-25T02:54:12+00:00"
  8208. },
  8209. {
  8210. "name": "hyperf/testing",
  8211. "version": "v3.1.46",
  8212. "source": {
  8213. "type": "git",
  8214. "url": "https://github.com/hyperf/testing.git",
  8215. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa"
  8216. },
  8217. "dist": {
  8218. "type": "zip",
  8219. "url": "https://api.github.com/repos/hyperf/testing/zipball/d703d287817c577acfee0cec108dc2f4217ac9fa",
  8220. "reference": "d703d287817c577acfee0cec108dc2f4217ac9fa",
  8221. "shasum": ""
  8222. },
  8223. "require": {
  8224. "hyperf/codec": "~3.1.0",
  8225. "hyperf/collection": "~3.1.0",
  8226. "hyperf/contract": "~3.1.0",
  8227. "hyperf/coroutine": "~3.1.0",
  8228. "hyperf/http-message": "~3.1.0",
  8229. "hyperf/http-server": "~3.1.0",
  8230. "hyperf/support": "~3.1.0",
  8231. "hyperf/utils": "~3.1.0",
  8232. "php": ">=8.1",
  8233. "phpunit/phpunit": "^10.0",
  8234. "psr/container": "^1.0 || ^2.0",
  8235. "symfony/http-foundation": "^5.4 || ^6.0"
  8236. },
  8237. "suggest": {
  8238. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8239. },
  8240. "bin": [
  8241. "co-phpunit"
  8242. ],
  8243. "type": "library",
  8244. "extra": {
  8245. "branch-alias": {
  8246. "dev-master": "3.1-dev"
  8247. }
  8248. },
  8249. "autoload": {
  8250. "psr-4": {
  8251. "Hyperf\\Testing\\": "src/"
  8252. }
  8253. },
  8254. "notification-url": "https://packagist.org/downloads/",
  8255. "license": [
  8256. "MIT"
  8257. ],
  8258. "description": "Testing for hyperf",
  8259. "keywords": [
  8260. "dev",
  8261. "php",
  8262. "swoole",
  8263. "testing"
  8264. ],
  8265. "support": {
  8266. "source": "https://github.com/hyperf/testing/tree/v3.1.46"
  8267. },
  8268. "funding": [
  8269. {
  8270. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8271. "type": "custom"
  8272. },
  8273. {
  8274. "url": "https://opencollective.com/hyperf",
  8275. "type": "open_collective"
  8276. }
  8277. ],
  8278. "time": "2024-11-20T07:42:54+00:00"
  8279. },
  8280. {
  8281. "name": "hyperf/watcher",
  8282. "version": "v3.1.43",
  8283. "source": {
  8284. "type": "git",
  8285. "url": "https://github.com/hyperf/watcher.git",
  8286. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8287. },
  8288. "dist": {
  8289. "type": "zip",
  8290. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8291. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8292. "shasum": ""
  8293. },
  8294. "require": {
  8295. "ext-posix": "*",
  8296. "hyperf/codec": "~3.1.0",
  8297. "hyperf/command": "~3.1.0",
  8298. "hyperf/di": "~3.1.0",
  8299. "hyperf/framework": "~3.1.0",
  8300. "hyperf/support": "~3.1.0",
  8301. "php": ">=8.1"
  8302. },
  8303. "type": "library",
  8304. "extra": {
  8305. "branch-alias": {
  8306. "dev-master": "3.1-dev"
  8307. },
  8308. "hyperf": {
  8309. "config": "Hyperf\\Watcher\\ConfigProvider"
  8310. }
  8311. },
  8312. "autoload": {
  8313. "files": [
  8314. "src/Functions.php"
  8315. ],
  8316. "psr-4": {
  8317. "Hyperf\\Watcher\\": "src/"
  8318. }
  8319. },
  8320. "notification-url": "https://packagist.org/downloads/",
  8321. "license": [
  8322. "MIT"
  8323. ],
  8324. "description": "Hot reload watcher for Hyperf",
  8325. "keywords": [
  8326. "dev",
  8327. "hyperf",
  8328. "php"
  8329. ],
  8330. "support": {
  8331. "issues": "https://github.com/hyperf/watcher/issues",
  8332. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8333. },
  8334. "funding": [
  8335. {
  8336. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8337. "type": "custom"
  8338. },
  8339. {
  8340. "url": "https://opencollective.com/hyperf",
  8341. "type": "open_collective"
  8342. }
  8343. ],
  8344. "time": "2024-10-06T12:33:12+00:00"
  8345. },
  8346. {
  8347. "name": "mockery/mockery",
  8348. "version": "1.6.12",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/mockery/mockery.git",
  8352. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8357. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "hamcrest/hamcrest-php": "^2.0.1",
  8362. "lib-pcre": ">=7.0",
  8363. "php": ">=7.3"
  8364. },
  8365. "conflict": {
  8366. "phpunit/phpunit": "<8.0"
  8367. },
  8368. "require-dev": {
  8369. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8370. "symplify/easy-coding-standard": "^12.1.14"
  8371. },
  8372. "type": "library",
  8373. "autoload": {
  8374. "files": [
  8375. "library/helpers.php",
  8376. "library/Mockery.php"
  8377. ],
  8378. "psr-4": {
  8379. "Mockery\\": "library/Mockery"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "BSD-3-Clause"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "Pádraic Brady",
  8389. "email": "padraic.brady@gmail.com",
  8390. "homepage": "https://github.com/padraic",
  8391. "role": "Author"
  8392. },
  8393. {
  8394. "name": "Dave Marshall",
  8395. "email": "dave.marshall@atstsolutions.co.uk",
  8396. "homepage": "https://davedevelopment.co.uk",
  8397. "role": "Developer"
  8398. },
  8399. {
  8400. "name": "Nathanael Esayeas",
  8401. "email": "nathanael.esayeas@protonmail.com",
  8402. "homepage": "https://github.com/ghostwriter",
  8403. "role": "Lead Developer"
  8404. }
  8405. ],
  8406. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8407. "homepage": "https://github.com/mockery/mockery",
  8408. "keywords": [
  8409. "BDD",
  8410. "TDD",
  8411. "library",
  8412. "mock",
  8413. "mock objects",
  8414. "mockery",
  8415. "stub",
  8416. "test",
  8417. "test double",
  8418. "testing"
  8419. ],
  8420. "support": {
  8421. "docs": "https://docs.mockery.io/",
  8422. "issues": "https://github.com/mockery/mockery/issues",
  8423. "rss": "https://github.com/mockery/mockery/releases.atom",
  8424. "security": "https://github.com/mockery/mockery/security/advisories",
  8425. "source": "https://github.com/mockery/mockery"
  8426. },
  8427. "time": "2024-05-16T03:13:13+00:00"
  8428. },
  8429. {
  8430. "name": "myclabs/deep-copy",
  8431. "version": "1.12.1",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/myclabs/DeepCopy.git",
  8435. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8440. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "php": "^7.1 || ^8.0"
  8445. },
  8446. "conflict": {
  8447. "doctrine/collections": "<1.6.8",
  8448. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8449. },
  8450. "require-dev": {
  8451. "doctrine/collections": "^1.6.8",
  8452. "doctrine/common": "^2.13.3 || ^3.2.2",
  8453. "phpspec/prophecy": "^1.10",
  8454. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8455. },
  8456. "type": "library",
  8457. "autoload": {
  8458. "files": [
  8459. "src/DeepCopy/deep_copy.php"
  8460. ],
  8461. "psr-4": {
  8462. "DeepCopy\\": "src/DeepCopy/"
  8463. }
  8464. },
  8465. "notification-url": "https://packagist.org/downloads/",
  8466. "license": [
  8467. "MIT"
  8468. ],
  8469. "description": "Create deep copies (clones) of your objects",
  8470. "keywords": [
  8471. "clone",
  8472. "copy",
  8473. "duplicate",
  8474. "object",
  8475. "object graph"
  8476. ],
  8477. "support": {
  8478. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8479. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8480. },
  8481. "funding": [
  8482. {
  8483. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8484. "type": "tidelift"
  8485. }
  8486. ],
  8487. "time": "2024-11-08T17:47:46+00:00"
  8488. },
  8489. {
  8490. "name": "phar-io/manifest",
  8491. "version": "2.0.4",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/phar-io/manifest.git",
  8495. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8500. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8501. "shasum": ""
  8502. },
  8503. "require": {
  8504. "ext-dom": "*",
  8505. "ext-libxml": "*",
  8506. "ext-phar": "*",
  8507. "ext-xmlwriter": "*",
  8508. "phar-io/version": "^3.0.1",
  8509. "php": "^7.2 || ^8.0"
  8510. },
  8511. "type": "library",
  8512. "extra": {
  8513. "branch-alias": {
  8514. "dev-master": "2.0.x-dev"
  8515. }
  8516. },
  8517. "autoload": {
  8518. "classmap": [
  8519. "src/"
  8520. ]
  8521. },
  8522. "notification-url": "https://packagist.org/downloads/",
  8523. "license": [
  8524. "BSD-3-Clause"
  8525. ],
  8526. "authors": [
  8527. {
  8528. "name": "Arne Blankerts",
  8529. "email": "arne@blankerts.de",
  8530. "role": "Developer"
  8531. },
  8532. {
  8533. "name": "Sebastian Heuer",
  8534. "email": "sebastian@phpeople.de",
  8535. "role": "Developer"
  8536. },
  8537. {
  8538. "name": "Sebastian Bergmann",
  8539. "email": "sebastian@phpunit.de",
  8540. "role": "Developer"
  8541. }
  8542. ],
  8543. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8544. "support": {
  8545. "issues": "https://github.com/phar-io/manifest/issues",
  8546. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8547. },
  8548. "funding": [
  8549. {
  8550. "url": "https://github.com/theseer",
  8551. "type": "github"
  8552. }
  8553. ],
  8554. "time": "2024-03-03T12:33:53+00:00"
  8555. },
  8556. {
  8557. "name": "phar-io/version",
  8558. "version": "3.2.1",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/phar-io/version.git",
  8562. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8567. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "php": "^7.2 || ^8.0"
  8572. },
  8573. "type": "library",
  8574. "autoload": {
  8575. "classmap": [
  8576. "src/"
  8577. ]
  8578. },
  8579. "notification-url": "https://packagist.org/downloads/",
  8580. "license": [
  8581. "BSD-3-Clause"
  8582. ],
  8583. "authors": [
  8584. {
  8585. "name": "Arne Blankerts",
  8586. "email": "arne@blankerts.de",
  8587. "role": "Developer"
  8588. },
  8589. {
  8590. "name": "Sebastian Heuer",
  8591. "email": "sebastian@phpeople.de",
  8592. "role": "Developer"
  8593. },
  8594. {
  8595. "name": "Sebastian Bergmann",
  8596. "email": "sebastian@phpunit.de",
  8597. "role": "Developer"
  8598. }
  8599. ],
  8600. "description": "Library for handling version information and constraints",
  8601. "support": {
  8602. "issues": "https://github.com/phar-io/version/issues",
  8603. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8604. },
  8605. "time": "2022-02-21T01:04:05+00:00"
  8606. },
  8607. {
  8608. "name": "phpstan/phpstan",
  8609. "version": "1.12.12",
  8610. "source": {
  8611. "type": "git",
  8612. "url": "https://github.com/phpstan/phpstan.git",
  8613. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0"
  8614. },
  8615. "dist": {
  8616. "type": "zip",
  8617. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  8618. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  8619. "shasum": ""
  8620. },
  8621. "require": {
  8622. "php": "^7.2|^8.0"
  8623. },
  8624. "conflict": {
  8625. "phpstan/phpstan-shim": "*"
  8626. },
  8627. "bin": [
  8628. "phpstan",
  8629. "phpstan.phar"
  8630. ],
  8631. "type": "library",
  8632. "autoload": {
  8633. "files": [
  8634. "bootstrap.php"
  8635. ]
  8636. },
  8637. "notification-url": "https://packagist.org/downloads/",
  8638. "license": [
  8639. "MIT"
  8640. ],
  8641. "description": "PHPStan - PHP Static Analysis Tool",
  8642. "keywords": [
  8643. "dev",
  8644. "static analysis"
  8645. ],
  8646. "support": {
  8647. "docs": "https://phpstan.org/user-guide/getting-started",
  8648. "forum": "https://github.com/phpstan/phpstan/discussions",
  8649. "issues": "https://github.com/phpstan/phpstan/issues",
  8650. "security": "https://github.com/phpstan/phpstan/security/policy",
  8651. "source": "https://github.com/phpstan/phpstan-src"
  8652. },
  8653. "funding": [
  8654. {
  8655. "url": "https://github.com/ondrejmirtes",
  8656. "type": "github"
  8657. },
  8658. {
  8659. "url": "https://github.com/phpstan",
  8660. "type": "github"
  8661. }
  8662. ],
  8663. "time": "2024-11-28T22:13:23+00:00"
  8664. },
  8665. {
  8666. "name": "phpunit/php-code-coverage",
  8667. "version": "10.1.16",
  8668. "source": {
  8669. "type": "git",
  8670. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8671. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8672. },
  8673. "dist": {
  8674. "type": "zip",
  8675. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8676. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8677. "shasum": ""
  8678. },
  8679. "require": {
  8680. "ext-dom": "*",
  8681. "ext-libxml": "*",
  8682. "ext-xmlwriter": "*",
  8683. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8684. "php": ">=8.1",
  8685. "phpunit/php-file-iterator": "^4.1.0",
  8686. "phpunit/php-text-template": "^3.0.1",
  8687. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8688. "sebastian/complexity": "^3.2.0",
  8689. "sebastian/environment": "^6.1.0",
  8690. "sebastian/lines-of-code": "^2.0.2",
  8691. "sebastian/version": "^4.0.1",
  8692. "theseer/tokenizer": "^1.2.3"
  8693. },
  8694. "require-dev": {
  8695. "phpunit/phpunit": "^10.1"
  8696. },
  8697. "suggest": {
  8698. "ext-pcov": "PHP extension that provides line coverage",
  8699. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8700. },
  8701. "type": "library",
  8702. "extra": {
  8703. "branch-alias": {
  8704. "dev-main": "10.1.x-dev"
  8705. }
  8706. },
  8707. "autoload": {
  8708. "classmap": [
  8709. "src/"
  8710. ]
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "BSD-3-Clause"
  8715. ],
  8716. "authors": [
  8717. {
  8718. "name": "Sebastian Bergmann",
  8719. "email": "sebastian@phpunit.de",
  8720. "role": "lead"
  8721. }
  8722. ],
  8723. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8724. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8725. "keywords": [
  8726. "coverage",
  8727. "testing",
  8728. "xunit"
  8729. ],
  8730. "support": {
  8731. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8732. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8733. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8734. },
  8735. "funding": [
  8736. {
  8737. "url": "https://github.com/sebastianbergmann",
  8738. "type": "github"
  8739. }
  8740. ],
  8741. "time": "2024-08-22T04:31:57+00:00"
  8742. },
  8743. {
  8744. "name": "phpunit/php-file-iterator",
  8745. "version": "4.1.0",
  8746. "source": {
  8747. "type": "git",
  8748. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8749. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8750. },
  8751. "dist": {
  8752. "type": "zip",
  8753. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8754. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8755. "shasum": ""
  8756. },
  8757. "require": {
  8758. "php": ">=8.1"
  8759. },
  8760. "require-dev": {
  8761. "phpunit/phpunit": "^10.0"
  8762. },
  8763. "type": "library",
  8764. "extra": {
  8765. "branch-alias": {
  8766. "dev-main": "4.0-dev"
  8767. }
  8768. },
  8769. "autoload": {
  8770. "classmap": [
  8771. "src/"
  8772. ]
  8773. },
  8774. "notification-url": "https://packagist.org/downloads/",
  8775. "license": [
  8776. "BSD-3-Clause"
  8777. ],
  8778. "authors": [
  8779. {
  8780. "name": "Sebastian Bergmann",
  8781. "email": "sebastian@phpunit.de",
  8782. "role": "lead"
  8783. }
  8784. ],
  8785. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8786. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8787. "keywords": [
  8788. "filesystem",
  8789. "iterator"
  8790. ],
  8791. "support": {
  8792. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8793. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8794. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8795. },
  8796. "funding": [
  8797. {
  8798. "url": "https://github.com/sebastianbergmann",
  8799. "type": "github"
  8800. }
  8801. ],
  8802. "time": "2023-08-31T06:24:48+00:00"
  8803. },
  8804. {
  8805. "name": "phpunit/php-invoker",
  8806. "version": "4.0.0",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8810. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8815. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8816. "shasum": ""
  8817. },
  8818. "require": {
  8819. "php": ">=8.1"
  8820. },
  8821. "require-dev": {
  8822. "ext-pcntl": "*",
  8823. "phpunit/phpunit": "^10.0"
  8824. },
  8825. "suggest": {
  8826. "ext-pcntl": "*"
  8827. },
  8828. "type": "library",
  8829. "extra": {
  8830. "branch-alias": {
  8831. "dev-main": "4.0-dev"
  8832. }
  8833. },
  8834. "autoload": {
  8835. "classmap": [
  8836. "src/"
  8837. ]
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "BSD-3-Clause"
  8842. ],
  8843. "authors": [
  8844. {
  8845. "name": "Sebastian Bergmann",
  8846. "email": "sebastian@phpunit.de",
  8847. "role": "lead"
  8848. }
  8849. ],
  8850. "description": "Invoke callables with a timeout",
  8851. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8852. "keywords": [
  8853. "process"
  8854. ],
  8855. "support": {
  8856. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8857. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8858. },
  8859. "funding": [
  8860. {
  8861. "url": "https://github.com/sebastianbergmann",
  8862. "type": "github"
  8863. }
  8864. ],
  8865. "time": "2023-02-03T06:56:09+00:00"
  8866. },
  8867. {
  8868. "name": "phpunit/php-text-template",
  8869. "version": "3.0.1",
  8870. "source": {
  8871. "type": "git",
  8872. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8873. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8874. },
  8875. "dist": {
  8876. "type": "zip",
  8877. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8878. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8879. "shasum": ""
  8880. },
  8881. "require": {
  8882. "php": ">=8.1"
  8883. },
  8884. "require-dev": {
  8885. "phpunit/phpunit": "^10.0"
  8886. },
  8887. "type": "library",
  8888. "extra": {
  8889. "branch-alias": {
  8890. "dev-main": "3.0-dev"
  8891. }
  8892. },
  8893. "autoload": {
  8894. "classmap": [
  8895. "src/"
  8896. ]
  8897. },
  8898. "notification-url": "https://packagist.org/downloads/",
  8899. "license": [
  8900. "BSD-3-Clause"
  8901. ],
  8902. "authors": [
  8903. {
  8904. "name": "Sebastian Bergmann",
  8905. "email": "sebastian@phpunit.de",
  8906. "role": "lead"
  8907. }
  8908. ],
  8909. "description": "Simple template engine.",
  8910. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8911. "keywords": [
  8912. "template"
  8913. ],
  8914. "support": {
  8915. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8916. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8917. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8918. },
  8919. "funding": [
  8920. {
  8921. "url": "https://github.com/sebastianbergmann",
  8922. "type": "github"
  8923. }
  8924. ],
  8925. "time": "2023-08-31T14:07:24+00:00"
  8926. },
  8927. {
  8928. "name": "phpunit/php-timer",
  8929. "version": "6.0.0",
  8930. "source": {
  8931. "type": "git",
  8932. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8933. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8934. },
  8935. "dist": {
  8936. "type": "zip",
  8937. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8938. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8939. "shasum": ""
  8940. },
  8941. "require": {
  8942. "php": ">=8.1"
  8943. },
  8944. "require-dev": {
  8945. "phpunit/phpunit": "^10.0"
  8946. },
  8947. "type": "library",
  8948. "extra": {
  8949. "branch-alias": {
  8950. "dev-main": "6.0-dev"
  8951. }
  8952. },
  8953. "autoload": {
  8954. "classmap": [
  8955. "src/"
  8956. ]
  8957. },
  8958. "notification-url": "https://packagist.org/downloads/",
  8959. "license": [
  8960. "BSD-3-Clause"
  8961. ],
  8962. "authors": [
  8963. {
  8964. "name": "Sebastian Bergmann",
  8965. "email": "sebastian@phpunit.de",
  8966. "role": "lead"
  8967. }
  8968. ],
  8969. "description": "Utility class for timing",
  8970. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8971. "keywords": [
  8972. "timer"
  8973. ],
  8974. "support": {
  8975. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8976. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8977. },
  8978. "funding": [
  8979. {
  8980. "url": "https://github.com/sebastianbergmann",
  8981. "type": "github"
  8982. }
  8983. ],
  8984. "time": "2023-02-03T06:57:52+00:00"
  8985. },
  8986. {
  8987. "name": "phpunit/phpunit",
  8988. "version": "10.5.38",
  8989. "source": {
  8990. "type": "git",
  8991. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8992. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  8993. },
  8994. "dist": {
  8995. "type": "zip",
  8996. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8997. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8998. "shasum": ""
  8999. },
  9000. "require": {
  9001. "ext-dom": "*",
  9002. "ext-json": "*",
  9003. "ext-libxml": "*",
  9004. "ext-mbstring": "*",
  9005. "ext-xml": "*",
  9006. "ext-xmlwriter": "*",
  9007. "myclabs/deep-copy": "^1.12.0",
  9008. "phar-io/manifest": "^2.0.4",
  9009. "phar-io/version": "^3.2.1",
  9010. "php": ">=8.1",
  9011. "phpunit/php-code-coverage": "^10.1.16",
  9012. "phpunit/php-file-iterator": "^4.1.0",
  9013. "phpunit/php-invoker": "^4.0.0",
  9014. "phpunit/php-text-template": "^3.0.1",
  9015. "phpunit/php-timer": "^6.0.0",
  9016. "sebastian/cli-parser": "^2.0.1",
  9017. "sebastian/code-unit": "^2.0.0",
  9018. "sebastian/comparator": "^5.0.3",
  9019. "sebastian/diff": "^5.1.1",
  9020. "sebastian/environment": "^6.1.0",
  9021. "sebastian/exporter": "^5.1.2",
  9022. "sebastian/global-state": "^6.0.2",
  9023. "sebastian/object-enumerator": "^5.0.0",
  9024. "sebastian/recursion-context": "^5.0.0",
  9025. "sebastian/type": "^4.0.0",
  9026. "sebastian/version": "^4.0.1"
  9027. },
  9028. "suggest": {
  9029. "ext-soap": "To be able to generate mocks based on WSDL files"
  9030. },
  9031. "bin": [
  9032. "phpunit"
  9033. ],
  9034. "type": "library",
  9035. "extra": {
  9036. "branch-alias": {
  9037. "dev-main": "10.5-dev"
  9038. }
  9039. },
  9040. "autoload": {
  9041. "files": [
  9042. "src/Framework/Assert/Functions.php"
  9043. ],
  9044. "classmap": [
  9045. "src/"
  9046. ]
  9047. },
  9048. "notification-url": "https://packagist.org/downloads/",
  9049. "license": [
  9050. "BSD-3-Clause"
  9051. ],
  9052. "authors": [
  9053. {
  9054. "name": "Sebastian Bergmann",
  9055. "email": "sebastian@phpunit.de",
  9056. "role": "lead"
  9057. }
  9058. ],
  9059. "description": "The PHP Unit Testing framework.",
  9060. "homepage": "https://phpunit.de/",
  9061. "keywords": [
  9062. "phpunit",
  9063. "testing",
  9064. "xunit"
  9065. ],
  9066. "support": {
  9067. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9068. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9069. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9070. },
  9071. "funding": [
  9072. {
  9073. "url": "https://phpunit.de/sponsors.html",
  9074. "type": "custom"
  9075. },
  9076. {
  9077. "url": "https://github.com/sebastianbergmann",
  9078. "type": "github"
  9079. },
  9080. {
  9081. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9082. "type": "tidelift"
  9083. }
  9084. ],
  9085. "time": "2024-10-28T13:06:21+00:00"
  9086. },
  9087. {
  9088. "name": "react/cache",
  9089. "version": "v1.2.0",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/reactphp/cache.git",
  9093. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9098. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9099. "shasum": ""
  9100. },
  9101. "require": {
  9102. "php": ">=5.3.0",
  9103. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9104. },
  9105. "require-dev": {
  9106. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9107. },
  9108. "type": "library",
  9109. "autoload": {
  9110. "psr-4": {
  9111. "React\\Cache\\": "src/"
  9112. }
  9113. },
  9114. "notification-url": "https://packagist.org/downloads/",
  9115. "license": [
  9116. "MIT"
  9117. ],
  9118. "authors": [
  9119. {
  9120. "name": "Christian Lück",
  9121. "email": "christian@clue.engineering",
  9122. "homepage": "https://clue.engineering/"
  9123. },
  9124. {
  9125. "name": "Cees-Jan Kiewiet",
  9126. "email": "reactphp@ceesjankiewiet.nl",
  9127. "homepage": "https://wyrihaximus.net/"
  9128. },
  9129. {
  9130. "name": "Jan Sorgalla",
  9131. "email": "jsorgalla@gmail.com",
  9132. "homepage": "https://sorgalla.com/"
  9133. },
  9134. {
  9135. "name": "Chris Boden",
  9136. "email": "cboden@gmail.com",
  9137. "homepage": "https://cboden.dev/"
  9138. }
  9139. ],
  9140. "description": "Async, Promise-based cache interface for ReactPHP",
  9141. "keywords": [
  9142. "cache",
  9143. "caching",
  9144. "promise",
  9145. "reactphp"
  9146. ],
  9147. "support": {
  9148. "issues": "https://github.com/reactphp/cache/issues",
  9149. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9150. },
  9151. "funding": [
  9152. {
  9153. "url": "https://opencollective.com/reactphp",
  9154. "type": "open_collective"
  9155. }
  9156. ],
  9157. "time": "2022-11-30T15:59:55+00:00"
  9158. },
  9159. {
  9160. "name": "react/child-process",
  9161. "version": "v0.6.5",
  9162. "source": {
  9163. "type": "git",
  9164. "url": "https://github.com/reactphp/child-process.git",
  9165. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9166. },
  9167. "dist": {
  9168. "type": "zip",
  9169. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9170. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9171. "shasum": ""
  9172. },
  9173. "require": {
  9174. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9175. "php": ">=5.3.0",
  9176. "react/event-loop": "^1.2",
  9177. "react/stream": "^1.2"
  9178. },
  9179. "require-dev": {
  9180. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9181. "react/socket": "^1.8",
  9182. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9183. },
  9184. "type": "library",
  9185. "autoload": {
  9186. "psr-4": {
  9187. "React\\ChildProcess\\": "src"
  9188. }
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "MIT"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Christian Lück",
  9197. "email": "christian@clue.engineering",
  9198. "homepage": "https://clue.engineering/"
  9199. },
  9200. {
  9201. "name": "Cees-Jan Kiewiet",
  9202. "email": "reactphp@ceesjankiewiet.nl",
  9203. "homepage": "https://wyrihaximus.net/"
  9204. },
  9205. {
  9206. "name": "Jan Sorgalla",
  9207. "email": "jsorgalla@gmail.com",
  9208. "homepage": "https://sorgalla.com/"
  9209. },
  9210. {
  9211. "name": "Chris Boden",
  9212. "email": "cboden@gmail.com",
  9213. "homepage": "https://cboden.dev/"
  9214. }
  9215. ],
  9216. "description": "Event-driven library for executing child processes with ReactPHP.",
  9217. "keywords": [
  9218. "event-driven",
  9219. "process",
  9220. "reactphp"
  9221. ],
  9222. "support": {
  9223. "issues": "https://github.com/reactphp/child-process/issues",
  9224. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9225. },
  9226. "funding": [
  9227. {
  9228. "url": "https://github.com/WyriHaximus",
  9229. "type": "github"
  9230. },
  9231. {
  9232. "url": "https://github.com/clue",
  9233. "type": "github"
  9234. }
  9235. ],
  9236. "time": "2022-09-16T13:41:56+00:00"
  9237. },
  9238. {
  9239. "name": "react/dns",
  9240. "version": "v1.13.0",
  9241. "source": {
  9242. "type": "git",
  9243. "url": "https://github.com/reactphp/dns.git",
  9244. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9245. },
  9246. "dist": {
  9247. "type": "zip",
  9248. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9249. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9250. "shasum": ""
  9251. },
  9252. "require": {
  9253. "php": ">=5.3.0",
  9254. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9255. "react/event-loop": "^1.2",
  9256. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9257. },
  9258. "require-dev": {
  9259. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9260. "react/async": "^4.3 || ^3 || ^2",
  9261. "react/promise-timer": "^1.11"
  9262. },
  9263. "type": "library",
  9264. "autoload": {
  9265. "psr-4": {
  9266. "React\\Dns\\": "src/"
  9267. }
  9268. },
  9269. "notification-url": "https://packagist.org/downloads/",
  9270. "license": [
  9271. "MIT"
  9272. ],
  9273. "authors": [
  9274. {
  9275. "name": "Christian Lück",
  9276. "email": "christian@clue.engineering",
  9277. "homepage": "https://clue.engineering/"
  9278. },
  9279. {
  9280. "name": "Cees-Jan Kiewiet",
  9281. "email": "reactphp@ceesjankiewiet.nl",
  9282. "homepage": "https://wyrihaximus.net/"
  9283. },
  9284. {
  9285. "name": "Jan Sorgalla",
  9286. "email": "jsorgalla@gmail.com",
  9287. "homepage": "https://sorgalla.com/"
  9288. },
  9289. {
  9290. "name": "Chris Boden",
  9291. "email": "cboden@gmail.com",
  9292. "homepage": "https://cboden.dev/"
  9293. }
  9294. ],
  9295. "description": "Async DNS resolver for ReactPHP",
  9296. "keywords": [
  9297. "async",
  9298. "dns",
  9299. "dns-resolver",
  9300. "reactphp"
  9301. ],
  9302. "support": {
  9303. "issues": "https://github.com/reactphp/dns/issues",
  9304. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9305. },
  9306. "funding": [
  9307. {
  9308. "url": "https://opencollective.com/reactphp",
  9309. "type": "open_collective"
  9310. }
  9311. ],
  9312. "time": "2024-06-13T14:18:03+00:00"
  9313. },
  9314. {
  9315. "name": "react/event-loop",
  9316. "version": "v1.5.0",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/reactphp/event-loop.git",
  9320. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9325. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9326. "shasum": ""
  9327. },
  9328. "require": {
  9329. "php": ">=5.3.0"
  9330. },
  9331. "require-dev": {
  9332. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9333. },
  9334. "suggest": {
  9335. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9336. },
  9337. "type": "library",
  9338. "autoload": {
  9339. "psr-4": {
  9340. "React\\EventLoop\\": "src/"
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "MIT"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Christian Lück",
  9350. "email": "christian@clue.engineering",
  9351. "homepage": "https://clue.engineering/"
  9352. },
  9353. {
  9354. "name": "Cees-Jan Kiewiet",
  9355. "email": "reactphp@ceesjankiewiet.nl",
  9356. "homepage": "https://wyrihaximus.net/"
  9357. },
  9358. {
  9359. "name": "Jan Sorgalla",
  9360. "email": "jsorgalla@gmail.com",
  9361. "homepage": "https://sorgalla.com/"
  9362. },
  9363. {
  9364. "name": "Chris Boden",
  9365. "email": "cboden@gmail.com",
  9366. "homepage": "https://cboden.dev/"
  9367. }
  9368. ],
  9369. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9370. "keywords": [
  9371. "asynchronous",
  9372. "event-loop"
  9373. ],
  9374. "support": {
  9375. "issues": "https://github.com/reactphp/event-loop/issues",
  9376. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9377. },
  9378. "funding": [
  9379. {
  9380. "url": "https://opencollective.com/reactphp",
  9381. "type": "open_collective"
  9382. }
  9383. ],
  9384. "time": "2023-11-13T13:48:05+00:00"
  9385. },
  9386. {
  9387. "name": "react/promise",
  9388. "version": "v3.2.0",
  9389. "source": {
  9390. "type": "git",
  9391. "url": "https://github.com/reactphp/promise.git",
  9392. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9393. },
  9394. "dist": {
  9395. "type": "zip",
  9396. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9397. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9398. "shasum": ""
  9399. },
  9400. "require": {
  9401. "php": ">=7.1.0"
  9402. },
  9403. "require-dev": {
  9404. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9405. "phpunit/phpunit": "^9.6 || ^7.5"
  9406. },
  9407. "type": "library",
  9408. "autoload": {
  9409. "files": [
  9410. "src/functions_include.php"
  9411. ],
  9412. "psr-4": {
  9413. "React\\Promise\\": "src/"
  9414. }
  9415. },
  9416. "notification-url": "https://packagist.org/downloads/",
  9417. "license": [
  9418. "MIT"
  9419. ],
  9420. "authors": [
  9421. {
  9422. "name": "Jan Sorgalla",
  9423. "email": "jsorgalla@gmail.com",
  9424. "homepage": "https://sorgalla.com/"
  9425. },
  9426. {
  9427. "name": "Christian Lück",
  9428. "email": "christian@clue.engineering",
  9429. "homepage": "https://clue.engineering/"
  9430. },
  9431. {
  9432. "name": "Cees-Jan Kiewiet",
  9433. "email": "reactphp@ceesjankiewiet.nl",
  9434. "homepage": "https://wyrihaximus.net/"
  9435. },
  9436. {
  9437. "name": "Chris Boden",
  9438. "email": "cboden@gmail.com",
  9439. "homepage": "https://cboden.dev/"
  9440. }
  9441. ],
  9442. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9443. "keywords": [
  9444. "promise",
  9445. "promises"
  9446. ],
  9447. "support": {
  9448. "issues": "https://github.com/reactphp/promise/issues",
  9449. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9450. },
  9451. "funding": [
  9452. {
  9453. "url": "https://opencollective.com/reactphp",
  9454. "type": "open_collective"
  9455. }
  9456. ],
  9457. "time": "2024-05-24T10:39:05+00:00"
  9458. },
  9459. {
  9460. "name": "react/socket",
  9461. "version": "v1.16.0",
  9462. "source": {
  9463. "type": "git",
  9464. "url": "https://github.com/reactphp/socket.git",
  9465. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9466. },
  9467. "dist": {
  9468. "type": "zip",
  9469. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9470. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9471. "shasum": ""
  9472. },
  9473. "require": {
  9474. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9475. "php": ">=5.3.0",
  9476. "react/dns": "^1.13",
  9477. "react/event-loop": "^1.2",
  9478. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9479. "react/stream": "^1.4"
  9480. },
  9481. "require-dev": {
  9482. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9483. "react/async": "^4.3 || ^3.3 || ^2",
  9484. "react/promise-stream": "^1.4",
  9485. "react/promise-timer": "^1.11"
  9486. },
  9487. "type": "library",
  9488. "autoload": {
  9489. "psr-4": {
  9490. "React\\Socket\\": "src/"
  9491. }
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "MIT"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Christian Lück",
  9500. "email": "christian@clue.engineering",
  9501. "homepage": "https://clue.engineering/"
  9502. },
  9503. {
  9504. "name": "Cees-Jan Kiewiet",
  9505. "email": "reactphp@ceesjankiewiet.nl",
  9506. "homepage": "https://wyrihaximus.net/"
  9507. },
  9508. {
  9509. "name": "Jan Sorgalla",
  9510. "email": "jsorgalla@gmail.com",
  9511. "homepage": "https://sorgalla.com/"
  9512. },
  9513. {
  9514. "name": "Chris Boden",
  9515. "email": "cboden@gmail.com",
  9516. "homepage": "https://cboden.dev/"
  9517. }
  9518. ],
  9519. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9520. "keywords": [
  9521. "Connection",
  9522. "Socket",
  9523. "async",
  9524. "reactphp",
  9525. "stream"
  9526. ],
  9527. "support": {
  9528. "issues": "https://github.com/reactphp/socket/issues",
  9529. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9530. },
  9531. "funding": [
  9532. {
  9533. "url": "https://opencollective.com/reactphp",
  9534. "type": "open_collective"
  9535. }
  9536. ],
  9537. "time": "2024-07-26T10:38:09+00:00"
  9538. },
  9539. {
  9540. "name": "react/stream",
  9541. "version": "v1.4.0",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/reactphp/stream.git",
  9545. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9550. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9555. "php": ">=5.3.8",
  9556. "react/event-loop": "^1.2"
  9557. },
  9558. "require-dev": {
  9559. "clue/stream-filter": "~1.2",
  9560. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9561. },
  9562. "type": "library",
  9563. "autoload": {
  9564. "psr-4": {
  9565. "React\\Stream\\": "src/"
  9566. }
  9567. },
  9568. "notification-url": "https://packagist.org/downloads/",
  9569. "license": [
  9570. "MIT"
  9571. ],
  9572. "authors": [
  9573. {
  9574. "name": "Christian Lück",
  9575. "email": "christian@clue.engineering",
  9576. "homepage": "https://clue.engineering/"
  9577. },
  9578. {
  9579. "name": "Cees-Jan Kiewiet",
  9580. "email": "reactphp@ceesjankiewiet.nl",
  9581. "homepage": "https://wyrihaximus.net/"
  9582. },
  9583. {
  9584. "name": "Jan Sorgalla",
  9585. "email": "jsorgalla@gmail.com",
  9586. "homepage": "https://sorgalla.com/"
  9587. },
  9588. {
  9589. "name": "Chris Boden",
  9590. "email": "cboden@gmail.com",
  9591. "homepage": "https://cboden.dev/"
  9592. }
  9593. ],
  9594. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9595. "keywords": [
  9596. "event-driven",
  9597. "io",
  9598. "non-blocking",
  9599. "pipe",
  9600. "reactphp",
  9601. "readable",
  9602. "stream",
  9603. "writable"
  9604. ],
  9605. "support": {
  9606. "issues": "https://github.com/reactphp/stream/issues",
  9607. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9608. },
  9609. "funding": [
  9610. {
  9611. "url": "https://opencollective.com/reactphp",
  9612. "type": "open_collective"
  9613. }
  9614. ],
  9615. "time": "2024-06-11T12:45:25+00:00"
  9616. },
  9617. {
  9618. "name": "sebastian/cli-parser",
  9619. "version": "2.0.1",
  9620. "source": {
  9621. "type": "git",
  9622. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9623. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9624. },
  9625. "dist": {
  9626. "type": "zip",
  9627. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9628. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9629. "shasum": ""
  9630. },
  9631. "require": {
  9632. "php": ">=8.1"
  9633. },
  9634. "require-dev": {
  9635. "phpunit/phpunit": "^10.0"
  9636. },
  9637. "type": "library",
  9638. "extra": {
  9639. "branch-alias": {
  9640. "dev-main": "2.0-dev"
  9641. }
  9642. },
  9643. "autoload": {
  9644. "classmap": [
  9645. "src/"
  9646. ]
  9647. },
  9648. "notification-url": "https://packagist.org/downloads/",
  9649. "license": [
  9650. "BSD-3-Clause"
  9651. ],
  9652. "authors": [
  9653. {
  9654. "name": "Sebastian Bergmann",
  9655. "email": "sebastian@phpunit.de",
  9656. "role": "lead"
  9657. }
  9658. ],
  9659. "description": "Library for parsing CLI options",
  9660. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9661. "support": {
  9662. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9663. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9664. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9665. },
  9666. "funding": [
  9667. {
  9668. "url": "https://github.com/sebastianbergmann",
  9669. "type": "github"
  9670. }
  9671. ],
  9672. "time": "2024-03-02T07:12:49+00:00"
  9673. },
  9674. {
  9675. "name": "sebastian/code-unit",
  9676. "version": "2.0.0",
  9677. "source": {
  9678. "type": "git",
  9679. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9680. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9681. },
  9682. "dist": {
  9683. "type": "zip",
  9684. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9685. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9686. "shasum": ""
  9687. },
  9688. "require": {
  9689. "php": ">=8.1"
  9690. },
  9691. "require-dev": {
  9692. "phpunit/phpunit": "^10.0"
  9693. },
  9694. "type": "library",
  9695. "extra": {
  9696. "branch-alias": {
  9697. "dev-main": "2.0-dev"
  9698. }
  9699. },
  9700. "autoload": {
  9701. "classmap": [
  9702. "src/"
  9703. ]
  9704. },
  9705. "notification-url": "https://packagist.org/downloads/",
  9706. "license": [
  9707. "BSD-3-Clause"
  9708. ],
  9709. "authors": [
  9710. {
  9711. "name": "Sebastian Bergmann",
  9712. "email": "sebastian@phpunit.de",
  9713. "role": "lead"
  9714. }
  9715. ],
  9716. "description": "Collection of value objects that represent the PHP code units",
  9717. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9718. "support": {
  9719. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9720. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9721. },
  9722. "funding": [
  9723. {
  9724. "url": "https://github.com/sebastianbergmann",
  9725. "type": "github"
  9726. }
  9727. ],
  9728. "time": "2023-02-03T06:58:43+00:00"
  9729. },
  9730. {
  9731. "name": "sebastian/code-unit-reverse-lookup",
  9732. "version": "3.0.0",
  9733. "source": {
  9734. "type": "git",
  9735. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9736. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9737. },
  9738. "dist": {
  9739. "type": "zip",
  9740. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9741. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9742. "shasum": ""
  9743. },
  9744. "require": {
  9745. "php": ">=8.1"
  9746. },
  9747. "require-dev": {
  9748. "phpunit/phpunit": "^10.0"
  9749. },
  9750. "type": "library",
  9751. "extra": {
  9752. "branch-alias": {
  9753. "dev-main": "3.0-dev"
  9754. }
  9755. },
  9756. "autoload": {
  9757. "classmap": [
  9758. "src/"
  9759. ]
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "BSD-3-Clause"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Sebastian Bergmann",
  9768. "email": "sebastian@phpunit.de"
  9769. }
  9770. ],
  9771. "description": "Looks up which function or method a line of code belongs to",
  9772. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9773. "support": {
  9774. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9775. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9776. },
  9777. "funding": [
  9778. {
  9779. "url": "https://github.com/sebastianbergmann",
  9780. "type": "github"
  9781. }
  9782. ],
  9783. "time": "2023-02-03T06:59:15+00:00"
  9784. },
  9785. {
  9786. "name": "sebastian/comparator",
  9787. "version": "5.0.3",
  9788. "source": {
  9789. "type": "git",
  9790. "url": "https://github.com/sebastianbergmann/comparator.git",
  9791. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9792. },
  9793. "dist": {
  9794. "type": "zip",
  9795. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9796. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9797. "shasum": ""
  9798. },
  9799. "require": {
  9800. "ext-dom": "*",
  9801. "ext-mbstring": "*",
  9802. "php": ">=8.1",
  9803. "sebastian/diff": "^5.0",
  9804. "sebastian/exporter": "^5.0"
  9805. },
  9806. "require-dev": {
  9807. "phpunit/phpunit": "^10.5"
  9808. },
  9809. "type": "library",
  9810. "extra": {
  9811. "branch-alias": {
  9812. "dev-main": "5.0-dev"
  9813. }
  9814. },
  9815. "autoload": {
  9816. "classmap": [
  9817. "src/"
  9818. ]
  9819. },
  9820. "notification-url": "https://packagist.org/downloads/",
  9821. "license": [
  9822. "BSD-3-Clause"
  9823. ],
  9824. "authors": [
  9825. {
  9826. "name": "Sebastian Bergmann",
  9827. "email": "sebastian@phpunit.de"
  9828. },
  9829. {
  9830. "name": "Jeff Welch",
  9831. "email": "whatthejeff@gmail.com"
  9832. },
  9833. {
  9834. "name": "Volker Dusch",
  9835. "email": "github@wallbash.com"
  9836. },
  9837. {
  9838. "name": "Bernhard Schussek",
  9839. "email": "bschussek@2bepublished.at"
  9840. }
  9841. ],
  9842. "description": "Provides the functionality to compare PHP values for equality",
  9843. "homepage": "https://github.com/sebastianbergmann/comparator",
  9844. "keywords": [
  9845. "comparator",
  9846. "compare",
  9847. "equality"
  9848. ],
  9849. "support": {
  9850. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9851. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9852. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9853. },
  9854. "funding": [
  9855. {
  9856. "url": "https://github.com/sebastianbergmann",
  9857. "type": "github"
  9858. }
  9859. ],
  9860. "time": "2024-10-18T14:56:07+00:00"
  9861. },
  9862. {
  9863. "name": "sebastian/complexity",
  9864. "version": "3.2.0",
  9865. "source": {
  9866. "type": "git",
  9867. "url": "https://github.com/sebastianbergmann/complexity.git",
  9868. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9869. },
  9870. "dist": {
  9871. "type": "zip",
  9872. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9873. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9874. "shasum": ""
  9875. },
  9876. "require": {
  9877. "nikic/php-parser": "^4.18 || ^5.0",
  9878. "php": ">=8.1"
  9879. },
  9880. "require-dev": {
  9881. "phpunit/phpunit": "^10.0"
  9882. },
  9883. "type": "library",
  9884. "extra": {
  9885. "branch-alias": {
  9886. "dev-main": "3.2-dev"
  9887. }
  9888. },
  9889. "autoload": {
  9890. "classmap": [
  9891. "src/"
  9892. ]
  9893. },
  9894. "notification-url": "https://packagist.org/downloads/",
  9895. "license": [
  9896. "BSD-3-Clause"
  9897. ],
  9898. "authors": [
  9899. {
  9900. "name": "Sebastian Bergmann",
  9901. "email": "sebastian@phpunit.de",
  9902. "role": "lead"
  9903. }
  9904. ],
  9905. "description": "Library for calculating the complexity of PHP code units",
  9906. "homepage": "https://github.com/sebastianbergmann/complexity",
  9907. "support": {
  9908. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9909. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9910. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9911. },
  9912. "funding": [
  9913. {
  9914. "url": "https://github.com/sebastianbergmann",
  9915. "type": "github"
  9916. }
  9917. ],
  9918. "time": "2023-12-21T08:37:17+00:00"
  9919. },
  9920. {
  9921. "name": "sebastian/diff",
  9922. "version": "5.1.1",
  9923. "source": {
  9924. "type": "git",
  9925. "url": "https://github.com/sebastianbergmann/diff.git",
  9926. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9927. },
  9928. "dist": {
  9929. "type": "zip",
  9930. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9931. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9932. "shasum": ""
  9933. },
  9934. "require": {
  9935. "php": ">=8.1"
  9936. },
  9937. "require-dev": {
  9938. "phpunit/phpunit": "^10.0",
  9939. "symfony/process": "^6.4"
  9940. },
  9941. "type": "library",
  9942. "extra": {
  9943. "branch-alias": {
  9944. "dev-main": "5.1-dev"
  9945. }
  9946. },
  9947. "autoload": {
  9948. "classmap": [
  9949. "src/"
  9950. ]
  9951. },
  9952. "notification-url": "https://packagist.org/downloads/",
  9953. "license": [
  9954. "BSD-3-Clause"
  9955. ],
  9956. "authors": [
  9957. {
  9958. "name": "Sebastian Bergmann",
  9959. "email": "sebastian@phpunit.de"
  9960. },
  9961. {
  9962. "name": "Kore Nordmann",
  9963. "email": "mail@kore-nordmann.de"
  9964. }
  9965. ],
  9966. "description": "Diff implementation",
  9967. "homepage": "https://github.com/sebastianbergmann/diff",
  9968. "keywords": [
  9969. "diff",
  9970. "udiff",
  9971. "unidiff",
  9972. "unified diff"
  9973. ],
  9974. "support": {
  9975. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9976. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9977. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9978. },
  9979. "funding": [
  9980. {
  9981. "url": "https://github.com/sebastianbergmann",
  9982. "type": "github"
  9983. }
  9984. ],
  9985. "time": "2024-03-02T07:15:17+00:00"
  9986. },
  9987. {
  9988. "name": "sebastian/environment",
  9989. "version": "6.1.0",
  9990. "source": {
  9991. "type": "git",
  9992. "url": "https://github.com/sebastianbergmann/environment.git",
  9993. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9994. },
  9995. "dist": {
  9996. "type": "zip",
  9997. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9998. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9999. "shasum": ""
  10000. },
  10001. "require": {
  10002. "php": ">=8.1"
  10003. },
  10004. "require-dev": {
  10005. "phpunit/phpunit": "^10.0"
  10006. },
  10007. "suggest": {
  10008. "ext-posix": "*"
  10009. },
  10010. "type": "library",
  10011. "extra": {
  10012. "branch-alias": {
  10013. "dev-main": "6.1-dev"
  10014. }
  10015. },
  10016. "autoload": {
  10017. "classmap": [
  10018. "src/"
  10019. ]
  10020. },
  10021. "notification-url": "https://packagist.org/downloads/",
  10022. "license": [
  10023. "BSD-3-Clause"
  10024. ],
  10025. "authors": [
  10026. {
  10027. "name": "Sebastian Bergmann",
  10028. "email": "sebastian@phpunit.de"
  10029. }
  10030. ],
  10031. "description": "Provides functionality to handle HHVM/PHP environments",
  10032. "homepage": "https://github.com/sebastianbergmann/environment",
  10033. "keywords": [
  10034. "Xdebug",
  10035. "environment",
  10036. "hhvm"
  10037. ],
  10038. "support": {
  10039. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10040. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10041. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10042. },
  10043. "funding": [
  10044. {
  10045. "url": "https://github.com/sebastianbergmann",
  10046. "type": "github"
  10047. }
  10048. ],
  10049. "time": "2024-03-23T08:47:14+00:00"
  10050. },
  10051. {
  10052. "name": "sebastian/exporter",
  10053. "version": "5.1.2",
  10054. "source": {
  10055. "type": "git",
  10056. "url": "https://github.com/sebastianbergmann/exporter.git",
  10057. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10058. },
  10059. "dist": {
  10060. "type": "zip",
  10061. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10062. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10063. "shasum": ""
  10064. },
  10065. "require": {
  10066. "ext-mbstring": "*",
  10067. "php": ">=8.1",
  10068. "sebastian/recursion-context": "^5.0"
  10069. },
  10070. "require-dev": {
  10071. "phpunit/phpunit": "^10.0"
  10072. },
  10073. "type": "library",
  10074. "extra": {
  10075. "branch-alias": {
  10076. "dev-main": "5.1-dev"
  10077. }
  10078. },
  10079. "autoload": {
  10080. "classmap": [
  10081. "src/"
  10082. ]
  10083. },
  10084. "notification-url": "https://packagist.org/downloads/",
  10085. "license": [
  10086. "BSD-3-Clause"
  10087. ],
  10088. "authors": [
  10089. {
  10090. "name": "Sebastian Bergmann",
  10091. "email": "sebastian@phpunit.de"
  10092. },
  10093. {
  10094. "name": "Jeff Welch",
  10095. "email": "whatthejeff@gmail.com"
  10096. },
  10097. {
  10098. "name": "Volker Dusch",
  10099. "email": "github@wallbash.com"
  10100. },
  10101. {
  10102. "name": "Adam Harvey",
  10103. "email": "aharvey@php.net"
  10104. },
  10105. {
  10106. "name": "Bernhard Schussek",
  10107. "email": "bschussek@gmail.com"
  10108. }
  10109. ],
  10110. "description": "Provides the functionality to export PHP variables for visualization",
  10111. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10112. "keywords": [
  10113. "export",
  10114. "exporter"
  10115. ],
  10116. "support": {
  10117. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10118. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10119. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10120. },
  10121. "funding": [
  10122. {
  10123. "url": "https://github.com/sebastianbergmann",
  10124. "type": "github"
  10125. }
  10126. ],
  10127. "time": "2024-03-02T07:17:12+00:00"
  10128. },
  10129. {
  10130. "name": "sebastian/global-state",
  10131. "version": "6.0.2",
  10132. "source": {
  10133. "type": "git",
  10134. "url": "https://github.com/sebastianbergmann/global-state.git",
  10135. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10136. },
  10137. "dist": {
  10138. "type": "zip",
  10139. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10140. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10141. "shasum": ""
  10142. },
  10143. "require": {
  10144. "php": ">=8.1",
  10145. "sebastian/object-reflector": "^3.0",
  10146. "sebastian/recursion-context": "^5.0"
  10147. },
  10148. "require-dev": {
  10149. "ext-dom": "*",
  10150. "phpunit/phpunit": "^10.0"
  10151. },
  10152. "type": "library",
  10153. "extra": {
  10154. "branch-alias": {
  10155. "dev-main": "6.0-dev"
  10156. }
  10157. },
  10158. "autoload": {
  10159. "classmap": [
  10160. "src/"
  10161. ]
  10162. },
  10163. "notification-url": "https://packagist.org/downloads/",
  10164. "license": [
  10165. "BSD-3-Clause"
  10166. ],
  10167. "authors": [
  10168. {
  10169. "name": "Sebastian Bergmann",
  10170. "email": "sebastian@phpunit.de"
  10171. }
  10172. ],
  10173. "description": "Snapshotting of global state",
  10174. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10175. "keywords": [
  10176. "global state"
  10177. ],
  10178. "support": {
  10179. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10180. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10181. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10182. },
  10183. "funding": [
  10184. {
  10185. "url": "https://github.com/sebastianbergmann",
  10186. "type": "github"
  10187. }
  10188. ],
  10189. "time": "2024-03-02T07:19:19+00:00"
  10190. },
  10191. {
  10192. "name": "sebastian/lines-of-code",
  10193. "version": "2.0.2",
  10194. "source": {
  10195. "type": "git",
  10196. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10197. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10198. },
  10199. "dist": {
  10200. "type": "zip",
  10201. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10202. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10203. "shasum": ""
  10204. },
  10205. "require": {
  10206. "nikic/php-parser": "^4.18 || ^5.0",
  10207. "php": ">=8.1"
  10208. },
  10209. "require-dev": {
  10210. "phpunit/phpunit": "^10.0"
  10211. },
  10212. "type": "library",
  10213. "extra": {
  10214. "branch-alias": {
  10215. "dev-main": "2.0-dev"
  10216. }
  10217. },
  10218. "autoload": {
  10219. "classmap": [
  10220. "src/"
  10221. ]
  10222. },
  10223. "notification-url": "https://packagist.org/downloads/",
  10224. "license": [
  10225. "BSD-3-Clause"
  10226. ],
  10227. "authors": [
  10228. {
  10229. "name": "Sebastian Bergmann",
  10230. "email": "sebastian@phpunit.de",
  10231. "role": "lead"
  10232. }
  10233. ],
  10234. "description": "Library for counting the lines of code in PHP source code",
  10235. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10236. "support": {
  10237. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10238. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10239. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10240. },
  10241. "funding": [
  10242. {
  10243. "url": "https://github.com/sebastianbergmann",
  10244. "type": "github"
  10245. }
  10246. ],
  10247. "time": "2023-12-21T08:38:20+00:00"
  10248. },
  10249. {
  10250. "name": "sebastian/object-enumerator",
  10251. "version": "5.0.0",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10255. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10260. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10261. "shasum": ""
  10262. },
  10263. "require": {
  10264. "php": ">=8.1",
  10265. "sebastian/object-reflector": "^3.0",
  10266. "sebastian/recursion-context": "^5.0"
  10267. },
  10268. "require-dev": {
  10269. "phpunit/phpunit": "^10.0"
  10270. },
  10271. "type": "library",
  10272. "extra": {
  10273. "branch-alias": {
  10274. "dev-main": "5.0-dev"
  10275. }
  10276. },
  10277. "autoload": {
  10278. "classmap": [
  10279. "src/"
  10280. ]
  10281. },
  10282. "notification-url": "https://packagist.org/downloads/",
  10283. "license": [
  10284. "BSD-3-Clause"
  10285. ],
  10286. "authors": [
  10287. {
  10288. "name": "Sebastian Bergmann",
  10289. "email": "sebastian@phpunit.de"
  10290. }
  10291. ],
  10292. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10293. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10294. "support": {
  10295. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10296. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10297. },
  10298. "funding": [
  10299. {
  10300. "url": "https://github.com/sebastianbergmann",
  10301. "type": "github"
  10302. }
  10303. ],
  10304. "time": "2023-02-03T07:08:32+00:00"
  10305. },
  10306. {
  10307. "name": "sebastian/object-reflector",
  10308. "version": "3.0.0",
  10309. "source": {
  10310. "type": "git",
  10311. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10312. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10313. },
  10314. "dist": {
  10315. "type": "zip",
  10316. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10317. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10318. "shasum": ""
  10319. },
  10320. "require": {
  10321. "php": ">=8.1"
  10322. },
  10323. "require-dev": {
  10324. "phpunit/phpunit": "^10.0"
  10325. },
  10326. "type": "library",
  10327. "extra": {
  10328. "branch-alias": {
  10329. "dev-main": "3.0-dev"
  10330. }
  10331. },
  10332. "autoload": {
  10333. "classmap": [
  10334. "src/"
  10335. ]
  10336. },
  10337. "notification-url": "https://packagist.org/downloads/",
  10338. "license": [
  10339. "BSD-3-Clause"
  10340. ],
  10341. "authors": [
  10342. {
  10343. "name": "Sebastian Bergmann",
  10344. "email": "sebastian@phpunit.de"
  10345. }
  10346. ],
  10347. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10348. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10349. "support": {
  10350. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10351. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10352. },
  10353. "funding": [
  10354. {
  10355. "url": "https://github.com/sebastianbergmann",
  10356. "type": "github"
  10357. }
  10358. ],
  10359. "time": "2023-02-03T07:06:18+00:00"
  10360. },
  10361. {
  10362. "name": "sebastian/recursion-context",
  10363. "version": "5.0.0",
  10364. "source": {
  10365. "type": "git",
  10366. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10367. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10368. },
  10369. "dist": {
  10370. "type": "zip",
  10371. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10372. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10373. "shasum": ""
  10374. },
  10375. "require": {
  10376. "php": ">=8.1"
  10377. },
  10378. "require-dev": {
  10379. "phpunit/phpunit": "^10.0"
  10380. },
  10381. "type": "library",
  10382. "extra": {
  10383. "branch-alias": {
  10384. "dev-main": "5.0-dev"
  10385. }
  10386. },
  10387. "autoload": {
  10388. "classmap": [
  10389. "src/"
  10390. ]
  10391. },
  10392. "notification-url": "https://packagist.org/downloads/",
  10393. "license": [
  10394. "BSD-3-Clause"
  10395. ],
  10396. "authors": [
  10397. {
  10398. "name": "Sebastian Bergmann",
  10399. "email": "sebastian@phpunit.de"
  10400. },
  10401. {
  10402. "name": "Jeff Welch",
  10403. "email": "whatthejeff@gmail.com"
  10404. },
  10405. {
  10406. "name": "Adam Harvey",
  10407. "email": "aharvey@php.net"
  10408. }
  10409. ],
  10410. "description": "Provides functionality to recursively process PHP variables",
  10411. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10412. "support": {
  10413. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10414. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10415. },
  10416. "funding": [
  10417. {
  10418. "url": "https://github.com/sebastianbergmann",
  10419. "type": "github"
  10420. }
  10421. ],
  10422. "time": "2023-02-03T07:05:40+00:00"
  10423. },
  10424. {
  10425. "name": "sebastian/type",
  10426. "version": "4.0.0",
  10427. "source": {
  10428. "type": "git",
  10429. "url": "https://github.com/sebastianbergmann/type.git",
  10430. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10431. },
  10432. "dist": {
  10433. "type": "zip",
  10434. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10435. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10436. "shasum": ""
  10437. },
  10438. "require": {
  10439. "php": ">=8.1"
  10440. },
  10441. "require-dev": {
  10442. "phpunit/phpunit": "^10.0"
  10443. },
  10444. "type": "library",
  10445. "extra": {
  10446. "branch-alias": {
  10447. "dev-main": "4.0-dev"
  10448. }
  10449. },
  10450. "autoload": {
  10451. "classmap": [
  10452. "src/"
  10453. ]
  10454. },
  10455. "notification-url": "https://packagist.org/downloads/",
  10456. "license": [
  10457. "BSD-3-Clause"
  10458. ],
  10459. "authors": [
  10460. {
  10461. "name": "Sebastian Bergmann",
  10462. "email": "sebastian@phpunit.de",
  10463. "role": "lead"
  10464. }
  10465. ],
  10466. "description": "Collection of value objects that represent the types of the PHP type system",
  10467. "homepage": "https://github.com/sebastianbergmann/type",
  10468. "support": {
  10469. "issues": "https://github.com/sebastianbergmann/type/issues",
  10470. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10471. },
  10472. "funding": [
  10473. {
  10474. "url": "https://github.com/sebastianbergmann",
  10475. "type": "github"
  10476. }
  10477. ],
  10478. "time": "2023-02-03T07:10:45+00:00"
  10479. },
  10480. {
  10481. "name": "sebastian/version",
  10482. "version": "4.0.1",
  10483. "source": {
  10484. "type": "git",
  10485. "url": "https://github.com/sebastianbergmann/version.git",
  10486. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10487. },
  10488. "dist": {
  10489. "type": "zip",
  10490. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10491. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10492. "shasum": ""
  10493. },
  10494. "require": {
  10495. "php": ">=8.1"
  10496. },
  10497. "type": "library",
  10498. "extra": {
  10499. "branch-alias": {
  10500. "dev-main": "4.0-dev"
  10501. }
  10502. },
  10503. "autoload": {
  10504. "classmap": [
  10505. "src/"
  10506. ]
  10507. },
  10508. "notification-url": "https://packagist.org/downloads/",
  10509. "license": [
  10510. "BSD-3-Clause"
  10511. ],
  10512. "authors": [
  10513. {
  10514. "name": "Sebastian Bergmann",
  10515. "email": "sebastian@phpunit.de",
  10516. "role": "lead"
  10517. }
  10518. ],
  10519. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10520. "homepage": "https://github.com/sebastianbergmann/version",
  10521. "support": {
  10522. "issues": "https://github.com/sebastianbergmann/version/issues",
  10523. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10524. },
  10525. "funding": [
  10526. {
  10527. "url": "https://github.com/sebastianbergmann",
  10528. "type": "github"
  10529. }
  10530. ],
  10531. "time": "2023-02-07T11:34:05+00:00"
  10532. },
  10533. {
  10534. "name": "swoole/ide-helper",
  10535. "version": "5.1.6",
  10536. "source": {
  10537. "type": "git",
  10538. "url": "https://github.com/swoole/ide-helper.git",
  10539. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  10540. },
  10541. "dist": {
  10542. "type": "zip",
  10543. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10544. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10545. "shasum": ""
  10546. },
  10547. "type": "library",
  10548. "notification-url": "https://packagist.org/downloads/",
  10549. "license": [
  10550. "Apache-2.0"
  10551. ],
  10552. "authors": [
  10553. {
  10554. "name": "Team Swoole",
  10555. "email": "team@swoole.com"
  10556. }
  10557. ],
  10558. "description": "IDE help files for Swoole.",
  10559. "support": {
  10560. "issues": "https://github.com/swoole/ide-helper/issues",
  10561. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  10562. },
  10563. "time": "2024-11-29T07:21:36+00:00"
  10564. },
  10565. {
  10566. "name": "symfony/event-dispatcher",
  10567. "version": "v6.4.13",
  10568. "source": {
  10569. "type": "git",
  10570. "url": "https://github.com/symfony/event-dispatcher.git",
  10571. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10572. },
  10573. "dist": {
  10574. "type": "zip",
  10575. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10576. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10577. "shasum": ""
  10578. },
  10579. "require": {
  10580. "php": ">=8.1",
  10581. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10582. },
  10583. "conflict": {
  10584. "symfony/dependency-injection": "<5.4",
  10585. "symfony/service-contracts": "<2.5"
  10586. },
  10587. "provide": {
  10588. "psr/event-dispatcher-implementation": "1.0",
  10589. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10590. },
  10591. "require-dev": {
  10592. "psr/log": "^1|^2|^3",
  10593. "symfony/config": "^5.4|^6.0|^7.0",
  10594. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10595. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10596. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10597. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10598. "symfony/service-contracts": "^2.5|^3",
  10599. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10600. },
  10601. "type": "library",
  10602. "autoload": {
  10603. "psr-4": {
  10604. "Symfony\\Component\\EventDispatcher\\": ""
  10605. },
  10606. "exclude-from-classmap": [
  10607. "/Tests/"
  10608. ]
  10609. },
  10610. "notification-url": "https://packagist.org/downloads/",
  10611. "license": [
  10612. "MIT"
  10613. ],
  10614. "authors": [
  10615. {
  10616. "name": "Fabien Potencier",
  10617. "email": "fabien@symfony.com"
  10618. },
  10619. {
  10620. "name": "Symfony Community",
  10621. "homepage": "https://symfony.com/contributors"
  10622. }
  10623. ],
  10624. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10625. "homepage": "https://symfony.com",
  10626. "support": {
  10627. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10628. },
  10629. "funding": [
  10630. {
  10631. "url": "https://symfony.com/sponsor",
  10632. "type": "custom"
  10633. },
  10634. {
  10635. "url": "https://github.com/fabpot",
  10636. "type": "github"
  10637. },
  10638. {
  10639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10640. "type": "tidelift"
  10641. }
  10642. ],
  10643. "time": "2024-09-25T14:18:03+00:00"
  10644. },
  10645. {
  10646. "name": "symfony/event-dispatcher-contracts",
  10647. "version": "v3.5.1",
  10648. "source": {
  10649. "type": "git",
  10650. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10651. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  10652. },
  10653. "dist": {
  10654. "type": "zip",
  10655. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10656. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  10657. "shasum": ""
  10658. },
  10659. "require": {
  10660. "php": ">=8.1",
  10661. "psr/event-dispatcher": "^1"
  10662. },
  10663. "type": "library",
  10664. "extra": {
  10665. "branch-alias": {
  10666. "dev-main": "3.5-dev"
  10667. },
  10668. "thanks": {
  10669. "name": "symfony/contracts",
  10670. "url": "https://github.com/symfony/contracts"
  10671. }
  10672. },
  10673. "autoload": {
  10674. "psr-4": {
  10675. "Symfony\\Contracts\\EventDispatcher\\": ""
  10676. }
  10677. },
  10678. "notification-url": "https://packagist.org/downloads/",
  10679. "license": [
  10680. "MIT"
  10681. ],
  10682. "authors": [
  10683. {
  10684. "name": "Nicolas Grekas",
  10685. "email": "p@tchwork.com"
  10686. },
  10687. {
  10688. "name": "Symfony Community",
  10689. "homepage": "https://symfony.com/contributors"
  10690. }
  10691. ],
  10692. "description": "Generic abstractions related to dispatching event",
  10693. "homepage": "https://symfony.com",
  10694. "keywords": [
  10695. "abstractions",
  10696. "contracts",
  10697. "decoupling",
  10698. "interfaces",
  10699. "interoperability",
  10700. "standards"
  10701. ],
  10702. "support": {
  10703. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  10704. },
  10705. "funding": [
  10706. {
  10707. "url": "https://symfony.com/sponsor",
  10708. "type": "custom"
  10709. },
  10710. {
  10711. "url": "https://github.com/fabpot",
  10712. "type": "github"
  10713. },
  10714. {
  10715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10716. "type": "tidelift"
  10717. }
  10718. ],
  10719. "time": "2024-09-25T14:20:29+00:00"
  10720. },
  10721. {
  10722. "name": "symfony/filesystem",
  10723. "version": "v6.4.13",
  10724. "source": {
  10725. "type": "git",
  10726. "url": "https://github.com/symfony/filesystem.git",
  10727. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  10728. },
  10729. "dist": {
  10730. "type": "zip",
  10731. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10732. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10733. "shasum": ""
  10734. },
  10735. "require": {
  10736. "php": ">=8.1",
  10737. "symfony/polyfill-ctype": "~1.8",
  10738. "symfony/polyfill-mbstring": "~1.8"
  10739. },
  10740. "require-dev": {
  10741. "symfony/process": "^5.4|^6.4|^7.0"
  10742. },
  10743. "type": "library",
  10744. "autoload": {
  10745. "psr-4": {
  10746. "Symfony\\Component\\Filesystem\\": ""
  10747. },
  10748. "exclude-from-classmap": [
  10749. "/Tests/"
  10750. ]
  10751. },
  10752. "notification-url": "https://packagist.org/downloads/",
  10753. "license": [
  10754. "MIT"
  10755. ],
  10756. "authors": [
  10757. {
  10758. "name": "Fabien Potencier",
  10759. "email": "fabien@symfony.com"
  10760. },
  10761. {
  10762. "name": "Symfony Community",
  10763. "homepage": "https://symfony.com/contributors"
  10764. }
  10765. ],
  10766. "description": "Provides basic utilities for the filesystem",
  10767. "homepage": "https://symfony.com",
  10768. "support": {
  10769. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  10770. },
  10771. "funding": [
  10772. {
  10773. "url": "https://symfony.com/sponsor",
  10774. "type": "custom"
  10775. },
  10776. {
  10777. "url": "https://github.com/fabpot",
  10778. "type": "github"
  10779. },
  10780. {
  10781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10782. "type": "tidelift"
  10783. }
  10784. ],
  10785. "time": "2024-10-25T15:07:50+00:00"
  10786. },
  10787. {
  10788. "name": "symfony/http-foundation",
  10789. "version": "v6.4.16",
  10790. "source": {
  10791. "type": "git",
  10792. "url": "https://github.com/symfony/http-foundation.git",
  10793. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  10794. },
  10795. "dist": {
  10796. "type": "zip",
  10797. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10798. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  10799. "shasum": ""
  10800. },
  10801. "require": {
  10802. "php": ">=8.1",
  10803. "symfony/deprecation-contracts": "^2.5|^3",
  10804. "symfony/polyfill-mbstring": "~1.1",
  10805. "symfony/polyfill-php83": "^1.27"
  10806. },
  10807. "conflict": {
  10808. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10809. },
  10810. "require-dev": {
  10811. "doctrine/dbal": "^2.13.1|^3|^4",
  10812. "predis/predis": "^1.1|^2.0",
  10813. "symfony/cache": "^6.4.12|^7.1.5",
  10814. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10815. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10816. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10817. "symfony/mime": "^5.4|^6.0|^7.0",
  10818. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10819. },
  10820. "type": "library",
  10821. "autoload": {
  10822. "psr-4": {
  10823. "Symfony\\Component\\HttpFoundation\\": ""
  10824. },
  10825. "exclude-from-classmap": [
  10826. "/Tests/"
  10827. ]
  10828. },
  10829. "notification-url": "https://packagist.org/downloads/",
  10830. "license": [
  10831. "MIT"
  10832. ],
  10833. "authors": [
  10834. {
  10835. "name": "Fabien Potencier",
  10836. "email": "fabien@symfony.com"
  10837. },
  10838. {
  10839. "name": "Symfony Community",
  10840. "homepage": "https://symfony.com/contributors"
  10841. }
  10842. ],
  10843. "description": "Defines an object-oriented layer for the HTTP specification",
  10844. "homepage": "https://symfony.com",
  10845. "support": {
  10846. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  10847. },
  10848. "funding": [
  10849. {
  10850. "url": "https://symfony.com/sponsor",
  10851. "type": "custom"
  10852. },
  10853. {
  10854. "url": "https://github.com/fabpot",
  10855. "type": "github"
  10856. },
  10857. {
  10858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10859. "type": "tidelift"
  10860. }
  10861. ],
  10862. "time": "2024-11-13T18:58:10+00:00"
  10863. },
  10864. {
  10865. "name": "symfony/options-resolver",
  10866. "version": "v6.4.16",
  10867. "source": {
  10868. "type": "git",
  10869. "url": "https://github.com/symfony/options-resolver.git",
  10870. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  10871. },
  10872. "dist": {
  10873. "type": "zip",
  10874. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  10875. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  10876. "shasum": ""
  10877. },
  10878. "require": {
  10879. "php": ">=8.1",
  10880. "symfony/deprecation-contracts": "^2.5|^3"
  10881. },
  10882. "type": "library",
  10883. "autoload": {
  10884. "psr-4": {
  10885. "Symfony\\Component\\OptionsResolver\\": ""
  10886. },
  10887. "exclude-from-classmap": [
  10888. "/Tests/"
  10889. ]
  10890. },
  10891. "notification-url": "https://packagist.org/downloads/",
  10892. "license": [
  10893. "MIT"
  10894. ],
  10895. "authors": [
  10896. {
  10897. "name": "Fabien Potencier",
  10898. "email": "fabien@symfony.com"
  10899. },
  10900. {
  10901. "name": "Symfony Community",
  10902. "homepage": "https://symfony.com/contributors"
  10903. }
  10904. ],
  10905. "description": "Provides an improved replacement for the array_replace PHP function",
  10906. "homepage": "https://symfony.com",
  10907. "keywords": [
  10908. "config",
  10909. "configuration",
  10910. "options"
  10911. ],
  10912. "support": {
  10913. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  10914. },
  10915. "funding": [
  10916. {
  10917. "url": "https://symfony.com/sponsor",
  10918. "type": "custom"
  10919. },
  10920. {
  10921. "url": "https://github.com/fabpot",
  10922. "type": "github"
  10923. },
  10924. {
  10925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10926. "type": "tidelift"
  10927. }
  10928. ],
  10929. "time": "2024-11-20T10:57:02+00:00"
  10930. },
  10931. {
  10932. "name": "symfony/polyfill-php81",
  10933. "version": "v1.31.0",
  10934. "source": {
  10935. "type": "git",
  10936. "url": "https://github.com/symfony/polyfill-php81.git",
  10937. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10938. },
  10939. "dist": {
  10940. "type": "zip",
  10941. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10942. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10943. "shasum": ""
  10944. },
  10945. "require": {
  10946. "php": ">=7.2"
  10947. },
  10948. "type": "library",
  10949. "extra": {
  10950. "thanks": {
  10951. "name": "symfony/polyfill",
  10952. "url": "https://github.com/symfony/polyfill"
  10953. }
  10954. },
  10955. "autoload": {
  10956. "files": [
  10957. "bootstrap.php"
  10958. ],
  10959. "psr-4": {
  10960. "Symfony\\Polyfill\\Php81\\": ""
  10961. },
  10962. "classmap": [
  10963. "Resources/stubs"
  10964. ]
  10965. },
  10966. "notification-url": "https://packagist.org/downloads/",
  10967. "license": [
  10968. "MIT"
  10969. ],
  10970. "authors": [
  10971. {
  10972. "name": "Nicolas Grekas",
  10973. "email": "p@tchwork.com"
  10974. },
  10975. {
  10976. "name": "Symfony Community",
  10977. "homepage": "https://symfony.com/contributors"
  10978. }
  10979. ],
  10980. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10981. "homepage": "https://symfony.com",
  10982. "keywords": [
  10983. "compatibility",
  10984. "polyfill",
  10985. "portable",
  10986. "shim"
  10987. ],
  10988. "support": {
  10989. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10990. },
  10991. "funding": [
  10992. {
  10993. "url": "https://symfony.com/sponsor",
  10994. "type": "custom"
  10995. },
  10996. {
  10997. "url": "https://github.com/fabpot",
  10998. "type": "github"
  10999. },
  11000. {
  11001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11002. "type": "tidelift"
  11003. }
  11004. ],
  11005. "time": "2024-09-09T11:45:10+00:00"
  11006. },
  11007. {
  11008. "name": "symfony/polyfill-php83",
  11009. "version": "v1.31.0",
  11010. "source": {
  11011. "type": "git",
  11012. "url": "https://github.com/symfony/polyfill-php83.git",
  11013. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11014. },
  11015. "dist": {
  11016. "type": "zip",
  11017. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11018. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11019. "shasum": ""
  11020. },
  11021. "require": {
  11022. "php": ">=7.2"
  11023. },
  11024. "type": "library",
  11025. "extra": {
  11026. "thanks": {
  11027. "name": "symfony/polyfill",
  11028. "url": "https://github.com/symfony/polyfill"
  11029. }
  11030. },
  11031. "autoload": {
  11032. "files": [
  11033. "bootstrap.php"
  11034. ],
  11035. "psr-4": {
  11036. "Symfony\\Polyfill\\Php83\\": ""
  11037. },
  11038. "classmap": [
  11039. "Resources/stubs"
  11040. ]
  11041. },
  11042. "notification-url": "https://packagist.org/downloads/",
  11043. "license": [
  11044. "MIT"
  11045. ],
  11046. "authors": [
  11047. {
  11048. "name": "Nicolas Grekas",
  11049. "email": "p@tchwork.com"
  11050. },
  11051. {
  11052. "name": "Symfony Community",
  11053. "homepage": "https://symfony.com/contributors"
  11054. }
  11055. ],
  11056. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11057. "homepage": "https://symfony.com",
  11058. "keywords": [
  11059. "compatibility",
  11060. "polyfill",
  11061. "portable",
  11062. "shim"
  11063. ],
  11064. "support": {
  11065. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11066. },
  11067. "funding": [
  11068. {
  11069. "url": "https://symfony.com/sponsor",
  11070. "type": "custom"
  11071. },
  11072. {
  11073. "url": "https://github.com/fabpot",
  11074. "type": "github"
  11075. },
  11076. {
  11077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11078. "type": "tidelift"
  11079. }
  11080. ],
  11081. "time": "2024-09-09T11:45:10+00:00"
  11082. },
  11083. {
  11084. "name": "symfony/process",
  11085. "version": "v6.4.15",
  11086. "source": {
  11087. "type": "git",
  11088. "url": "https://github.com/symfony/process.git",
  11089. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11090. },
  11091. "dist": {
  11092. "type": "zip",
  11093. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11094. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11095. "shasum": ""
  11096. },
  11097. "require": {
  11098. "php": ">=8.1"
  11099. },
  11100. "type": "library",
  11101. "autoload": {
  11102. "psr-4": {
  11103. "Symfony\\Component\\Process\\": ""
  11104. },
  11105. "exclude-from-classmap": [
  11106. "/Tests/"
  11107. ]
  11108. },
  11109. "notification-url": "https://packagist.org/downloads/",
  11110. "license": [
  11111. "MIT"
  11112. ],
  11113. "authors": [
  11114. {
  11115. "name": "Fabien Potencier",
  11116. "email": "fabien@symfony.com"
  11117. },
  11118. {
  11119. "name": "Symfony Community",
  11120. "homepage": "https://symfony.com/contributors"
  11121. }
  11122. ],
  11123. "description": "Executes commands in sub-processes",
  11124. "homepage": "https://symfony.com",
  11125. "support": {
  11126. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11127. },
  11128. "funding": [
  11129. {
  11130. "url": "https://symfony.com/sponsor",
  11131. "type": "custom"
  11132. },
  11133. {
  11134. "url": "https://github.com/fabpot",
  11135. "type": "github"
  11136. },
  11137. {
  11138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11139. "type": "tidelift"
  11140. }
  11141. ],
  11142. "time": "2024-11-06T14:19:14+00:00"
  11143. },
  11144. {
  11145. "name": "symfony/stopwatch",
  11146. "version": "v6.4.13",
  11147. "source": {
  11148. "type": "git",
  11149. "url": "https://github.com/symfony/stopwatch.git",
  11150. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11151. },
  11152. "dist": {
  11153. "type": "zip",
  11154. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11155. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11156. "shasum": ""
  11157. },
  11158. "require": {
  11159. "php": ">=8.1",
  11160. "symfony/service-contracts": "^2.5|^3"
  11161. },
  11162. "type": "library",
  11163. "autoload": {
  11164. "psr-4": {
  11165. "Symfony\\Component\\Stopwatch\\": ""
  11166. },
  11167. "exclude-from-classmap": [
  11168. "/Tests/"
  11169. ]
  11170. },
  11171. "notification-url": "https://packagist.org/downloads/",
  11172. "license": [
  11173. "MIT"
  11174. ],
  11175. "authors": [
  11176. {
  11177. "name": "Fabien Potencier",
  11178. "email": "fabien@symfony.com"
  11179. },
  11180. {
  11181. "name": "Symfony Community",
  11182. "homepage": "https://symfony.com/contributors"
  11183. }
  11184. ],
  11185. "description": "Provides a way to profile code",
  11186. "homepage": "https://symfony.com",
  11187. "support": {
  11188. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11189. },
  11190. "funding": [
  11191. {
  11192. "url": "https://symfony.com/sponsor",
  11193. "type": "custom"
  11194. },
  11195. {
  11196. "url": "https://github.com/fabpot",
  11197. "type": "github"
  11198. },
  11199. {
  11200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11201. "type": "tidelift"
  11202. }
  11203. ],
  11204. "time": "2024-09-25T14:18:03+00:00"
  11205. },
  11206. {
  11207. "name": "theseer/tokenizer",
  11208. "version": "1.2.3",
  11209. "source": {
  11210. "type": "git",
  11211. "url": "https://github.com/theseer/tokenizer.git",
  11212. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11213. },
  11214. "dist": {
  11215. "type": "zip",
  11216. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11217. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11218. "shasum": ""
  11219. },
  11220. "require": {
  11221. "ext-dom": "*",
  11222. "ext-tokenizer": "*",
  11223. "ext-xmlwriter": "*",
  11224. "php": "^7.2 || ^8.0"
  11225. },
  11226. "type": "library",
  11227. "autoload": {
  11228. "classmap": [
  11229. "src/"
  11230. ]
  11231. },
  11232. "notification-url": "https://packagist.org/downloads/",
  11233. "license": [
  11234. "BSD-3-Clause"
  11235. ],
  11236. "authors": [
  11237. {
  11238. "name": "Arne Blankerts",
  11239. "email": "arne@blankerts.de",
  11240. "role": "Developer"
  11241. }
  11242. ],
  11243. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11244. "support": {
  11245. "issues": "https://github.com/theseer/tokenizer/issues",
  11246. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11247. },
  11248. "funding": [
  11249. {
  11250. "url": "https://github.com/theseer",
  11251. "type": "github"
  11252. }
  11253. ],
  11254. "time": "2024-03-03T12:36:25+00:00"
  11255. }
  11256. ],
  11257. "aliases": [],
  11258. "minimum-stability": "dev",
  11259. "stability-flags": {},
  11260. "prefer-stable": true,
  11261. "prefer-lowest": false,
  11262. "platform": {
  11263. "php": ">=8.1"
  11264. },
  11265. "platform-dev": {},
  11266. "plugin-api-version": "2.6.0"
  11267. }