composer.lock 190 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "b3238d168bfc27da402f6e11a158d6c0",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.7.3",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://mirrors.cloud.tencent.com/repository/composer/aliyuncs/oss-sdk-php/v2.7.3/aliyuncs-oss-sdk-php-v2.7.3.zip",
  15. "reference": "10dbd2a7253131da60629d431c8eb6c216fbbbf7",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": ">=5.3"
  20. },
  21. "require-dev": {
  22. "php-coveralls/php-coveralls": "*",
  23. "phpunit/phpunit": "*"
  24. },
  25. "type": "library",
  26. "autoload": {
  27. "psr-4": {
  28. "OSS\\": "src/OSS"
  29. }
  30. },
  31. "license": [
  32. "MIT"
  33. ],
  34. "authors": [
  35. {
  36. "name": "Aliyuncs",
  37. "homepage": "http://www.aliyun.com"
  38. }
  39. ],
  40. "description": "Aliyun OSS SDK for PHP",
  41. "homepage": "http://www.aliyun.com/product/oss/",
  42. "support": {
  43. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  44. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.3"
  45. },
  46. "time": "2026-06-26T07:23:48+00:00"
  47. },
  48. {
  49. "name": "brick/math",
  50. "version": "0.14.8",
  51. "dist": {
  52. "type": "zip",
  53. "url": "https://mirrors.cloud.tencent.com/repository/composer/brick/math/0.14.8/brick-math-0.14.8.zip",
  54. "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629",
  55. "shasum": ""
  56. },
  57. "require": {
  58. "php": "^8.2"
  59. },
  60. "require-dev": {
  61. "php-coveralls/php-coveralls": "^2.2",
  62. "phpstan/phpstan": "2.1.22",
  63. "phpunit/phpunit": "^11.5"
  64. },
  65. "type": "library",
  66. "autoload": {
  67. "psr-4": {
  68. "Brick\\Math\\": "src/"
  69. }
  70. },
  71. "license": [
  72. "MIT"
  73. ],
  74. "description": "Arbitrary-precision arithmetic library",
  75. "keywords": [
  76. "Arbitrary-precision",
  77. "BigInteger",
  78. "BigRational",
  79. "arithmetic",
  80. "bigdecimal",
  81. "bignum",
  82. "bignumber",
  83. "brick",
  84. "decimal",
  85. "integer",
  86. "math",
  87. "mathematics",
  88. "rational"
  89. ],
  90. "support": {
  91. "issues": "https://github.com/brick/math/issues",
  92. "source": "https://github.com/brick/math/tree/0.14.8"
  93. },
  94. "time": "2026-02-10T14:33:43+00:00"
  95. },
  96. {
  97. "name": "carbonphp/carbon-doctrine-types",
  98. "version": "3.2.0",
  99. "dist": {
  100. "type": "zip",
  101. "url": "https://mirrors.cloud.tencent.com/repository/composer/carbonphp/carbon-doctrine-types/3.2.0/carbonphp-carbon-doctrine-types-3.2.0.zip",
  102. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  103. "shasum": ""
  104. },
  105. "require": {
  106. "php": "^8.1"
  107. },
  108. "conflict": {
  109. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  110. },
  111. "require-dev": {
  112. "doctrine/dbal": "^4.0.0",
  113. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  114. "phpunit/phpunit": "^10.3"
  115. },
  116. "type": "library",
  117. "autoload": {
  118. "psr-4": {
  119. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  120. }
  121. },
  122. "license": [
  123. "MIT"
  124. ],
  125. "authors": [
  126. {
  127. "name": "KyleKatarn",
  128. "email": "kylekatarnls@gmail.com"
  129. }
  130. ],
  131. "description": "Types to use Carbon in Doctrine",
  132. "keywords": [
  133. "carbon",
  134. "date",
  135. "datetime",
  136. "doctrine",
  137. "time"
  138. ],
  139. "support": {
  140. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  141. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  142. },
  143. "time": "2024-02-09T16:56:22+00:00"
  144. },
  145. {
  146. "name": "composer/pcre",
  147. "version": "3.4.0",
  148. "dist": {
  149. "type": "zip",
  150. "url": "https://mirrors.cloud.tencent.com/repository/composer/composer/pcre/3.4.0/composer-pcre-3.4.0.zip",
  151. "reference": "d5a341b3fb61f3001970940afb1d332968a183ed",
  152. "shasum": ""
  153. },
  154. "require": {
  155. "php": "^7.4 || ^8.0"
  156. },
  157. "conflict": {
  158. "phpstan/phpstan": "<2.2.2"
  159. },
  160. "require-dev": {
  161. "phpstan/phpstan": "^2",
  162. "phpstan/phpstan-deprecation-rules": "^2",
  163. "phpstan/phpstan-strict-rules": "^2",
  164. "phpunit/phpunit": "^9"
  165. },
  166. "type": "library",
  167. "extra": {
  168. "phpstan": {
  169. "includes": [
  170. "extension.neon"
  171. ]
  172. },
  173. "branch-alias": {
  174. "dev-main": "3.x-dev"
  175. }
  176. },
  177. "autoload": {
  178. "psr-4": {
  179. "Composer\\Pcre\\": "src"
  180. }
  181. },
  182. "license": [
  183. "MIT"
  184. ],
  185. "authors": [
  186. {
  187. "name": "Jordi Boggiano",
  188. "email": "j.boggiano@seld.be",
  189. "homepage": "http://seld.be"
  190. }
  191. ],
  192. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  193. "keywords": [
  194. "PCRE",
  195. "preg",
  196. "regex",
  197. "regular expression"
  198. ],
  199. "support": {
  200. "issues": "https://github.com/composer/pcre/issues",
  201. "source": "https://github.com/composer/pcre/tree/3.4.0"
  202. },
  203. "time": "2026-06-07T11:47:49+00:00"
  204. },
  205. {
  206. "name": "doctrine/inflector",
  207. "version": "2.1.0",
  208. "dist": {
  209. "type": "zip",
  210. "url": "https://mirrors.cloud.tencent.com/repository/composer/doctrine/inflector/2.1.0/doctrine-inflector-2.1.0.zip",
  211. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  212. "shasum": ""
  213. },
  214. "require": {
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "doctrine/coding-standard": "^12.0 || ^13.0",
  219. "phpstan/phpstan": "^1.12 || ^2.0",
  220. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  221. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  222. "phpunit/phpunit": "^8.5 || ^12.2"
  223. },
  224. "type": "library",
  225. "autoload": {
  226. "psr-4": {
  227. "Doctrine\\Inflector\\": "src"
  228. }
  229. },
  230. "license": [
  231. "MIT"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Guilherme Blanco",
  236. "email": "guilhermeblanco@gmail.com"
  237. },
  238. {
  239. "name": "Roman Borschel",
  240. "email": "roman@code-factory.org"
  241. },
  242. {
  243. "name": "Benjamin Eberlei",
  244. "email": "kontakt@beberlei.de"
  245. },
  246. {
  247. "name": "Jonathan Wage",
  248. "email": "jonwage@gmail.com"
  249. },
  250. {
  251. "name": "Johannes Schmitt",
  252. "email": "schmittjoh@gmail.com"
  253. }
  254. ],
  255. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  256. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  257. "keywords": [
  258. "inflection",
  259. "inflector",
  260. "lowercase",
  261. "manipulation",
  262. "php",
  263. "plural",
  264. "singular",
  265. "strings",
  266. "uppercase",
  267. "words"
  268. ],
  269. "support": {
  270. "issues": "https://github.com/doctrine/inflector/issues",
  271. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  272. },
  273. "time": "2025-08-10T19:31:58+00:00"
  274. },
  275. {
  276. "name": "doctrine/lexer",
  277. "version": "3.0.1",
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://mirrors.cloud.tencent.com/repository/composer/doctrine/lexer/3.0.1/doctrine-lexer-3.0.1.zip",
  281. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "php": "^8.1"
  286. },
  287. "require-dev": {
  288. "doctrine/coding-standard": "^12",
  289. "phpstan/phpstan": "^1.10",
  290. "phpunit/phpunit": "^10.5",
  291. "psalm/plugin-phpunit": "^0.18.3",
  292. "vimeo/psalm": "^5.21"
  293. },
  294. "type": "library",
  295. "autoload": {
  296. "psr-4": {
  297. "Doctrine\\Common\\Lexer\\": "src"
  298. }
  299. },
  300. "license": [
  301. "MIT"
  302. ],
  303. "authors": [
  304. {
  305. "name": "Guilherme Blanco",
  306. "email": "guilhermeblanco@gmail.com"
  307. },
  308. {
  309. "name": "Roman Borschel",
  310. "email": "roman@code-factory.org"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  318. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  319. "keywords": [
  320. "annotations",
  321. "docblock",
  322. "lexer",
  323. "parser",
  324. "php"
  325. ],
  326. "support": {
  327. "issues": "https://github.com/doctrine/lexer/issues",
  328. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  329. },
  330. "time": "2024-02-05T11:56:58+00:00"
  331. },
  332. {
  333. "name": "egulias/email-validator",
  334. "version": "4.0.4",
  335. "dist": {
  336. "type": "zip",
  337. "url": "https://mirrors.cloud.tencent.com/repository/composer/egulias/email-validator/4.0.4/egulias-email-validator-4.0.4.zip",
  338. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  339. "shasum": ""
  340. },
  341. "require": {
  342. "doctrine/lexer": "^2.0 || ^3.0",
  343. "php": ">=8.1",
  344. "symfony/polyfill-intl-idn": "^1.26"
  345. },
  346. "require-dev": {
  347. "phpunit/phpunit": "^10.2",
  348. "vimeo/psalm": "^5.12"
  349. },
  350. "suggest": {
  351. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  352. },
  353. "type": "library",
  354. "extra": {
  355. "branch-alias": {
  356. "dev-master": "4.0.x-dev"
  357. }
  358. },
  359. "autoload": {
  360. "psr-4": {
  361. "Egulias\\EmailValidator\\": "src"
  362. }
  363. },
  364. "license": [
  365. "MIT"
  366. ],
  367. "authors": [
  368. {
  369. "name": "Eduardo Gulias Davis"
  370. }
  371. ],
  372. "description": "A library for validating emails against several RFCs",
  373. "homepage": "https://github.com/egulias/EmailValidator",
  374. "keywords": [
  375. "email",
  376. "emailvalidation",
  377. "emailvalidator",
  378. "validation",
  379. "validator"
  380. ],
  381. "support": {
  382. "issues": "https://github.com/egulias/EmailValidator/issues",
  383. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  384. },
  385. "time": "2025-03-06T22:45:56+00:00"
  386. },
  387. {
  388. "name": "firebase/php-jwt",
  389. "version": "v7.1.0",
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://mirrors.cloud.tencent.com/repository/composer/firebase/php-jwt/v7.1.0/firebase-php-jwt-v7.1.0.zip",
  393. "reference": "b374a5d1a4f1f67fadc2165cdb284645945e2fc0",
  394. "shasum": ""
  395. },
  396. "require": {
  397. "php": "^8.0"
  398. },
  399. "require-dev": {
  400. "guzzlehttp/guzzle": "^7.4",
  401. "phpfastcache/phpfastcache": "^9.2",
  402. "phpseclib/phpseclib": "~3.0",
  403. "phpspec/prophecy-phpunit": "^2.0",
  404. "phpunit/phpunit": "^9.5",
  405. "psr/cache": "^2.0||^3.0",
  406. "psr/http-client": "^1.0",
  407. "psr/http-factory": "^1.0"
  408. },
  409. "suggest": {
  410. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  411. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present",
  412. "phpseclib/phpseclib": "Support PS256 (RSASSA-PSS) signatures"
  413. },
  414. "type": "library",
  415. "autoload": {
  416. "psr-4": {
  417. "Firebase\\JWT\\": "src"
  418. }
  419. },
  420. "license": [
  421. "BSD-3-Clause"
  422. ],
  423. "authors": [
  424. {
  425. "name": "Neuman Vong",
  426. "email": "neuman+pear@twilio.com",
  427. "role": "Developer"
  428. },
  429. {
  430. "name": "Anant Narayanan",
  431. "email": "anant@php.net",
  432. "role": "Developer"
  433. }
  434. ],
  435. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  436. "homepage": "https://github.com/googleapis/php-jwt",
  437. "keywords": [
  438. "jwt",
  439. "php"
  440. ],
  441. "support": {
  442. "issues": "https://github.com/googleapis/php-jwt/issues",
  443. "source": "https://github.com/googleapis/php-jwt/tree/v7.1.0"
  444. },
  445. "time": "2026-06-11T17:54:14+00:00"
  446. },
  447. {
  448. "name": "graham-campbell/result-type",
  449. "version": "v1.1.4",
  450. "dist": {
  451. "type": "zip",
  452. "url": "https://mirrors.cloud.tencent.com/repository/composer/graham-campbell/result-type/v1.1.4/graham-campbell-result-type-v1.1.4.zip",
  453. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  454. "shasum": ""
  455. },
  456. "require": {
  457. "php": "^7.2.5 || ^8.0",
  458. "phpoption/phpoption": "^1.9.5"
  459. },
  460. "require-dev": {
  461. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  462. },
  463. "type": "library",
  464. "autoload": {
  465. "psr-4": {
  466. "GrahamCampbell\\ResultType\\": "src/"
  467. }
  468. },
  469. "license": [
  470. "MIT"
  471. ],
  472. "authors": [
  473. {
  474. "name": "Graham Campbell",
  475. "email": "hello@gjcampbell.co.uk",
  476. "homepage": "https://github.com/GrahamCampbell"
  477. }
  478. ],
  479. "description": "An Implementation Of The Result Type",
  480. "keywords": [
  481. "Graham Campbell",
  482. "GrahamCampbell",
  483. "Result Type",
  484. "Result-Type",
  485. "result"
  486. ],
  487. "support": {
  488. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  489. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  490. },
  491. "time": "2025-12-27T19:43:20+00:00"
  492. },
  493. {
  494. "name": "guzzlehttp/command",
  495. "version": "1.5.3",
  496. "dist": {
  497. "type": "zip",
  498. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/command/1.5.3/guzzlehttp-command-1.5.3.zip",
  499. "reference": "5bf05727052d6d16617b2215e3a2307229332026",
  500. "shasum": ""
  501. },
  502. "require": {
  503. "guzzlehttp/guzzle": "^7.15",
  504. "guzzlehttp/promises": "^2.5.1",
  505. "guzzlehttp/psr7": "^2.13",
  506. "php": "^7.2.5 || ^8.0",
  507. "symfony/deprecation-contracts": "^2.5 || ^3.0"
  508. },
  509. "require-dev": {
  510. "bamarni/composer-bin-plugin": "^1.8.2",
  511. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "bamarni-bin": {
  516. "bin-links": true,
  517. "forward-command": false
  518. }
  519. },
  520. "autoload": {
  521. "psr-4": {
  522. "GuzzleHttp\\Command\\": "src/"
  523. }
  524. },
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Graham Campbell",
  531. "email": "hello@gjcampbell.co.uk",
  532. "homepage": "https://github.com/GrahamCampbell"
  533. },
  534. {
  535. "name": "Michael Dowling",
  536. "email": "mtdowling@gmail.com",
  537. "homepage": "https://github.com/mtdowling"
  538. },
  539. {
  540. "name": "Jeremy Lindblom",
  541. "email": "jeremeamia@gmail.com",
  542. "homepage": "https://github.com/jeremeamia"
  543. },
  544. {
  545. "name": "Tobias Nyholm",
  546. "email": "tobias.nyholm@gmail.com",
  547. "homepage": "https://github.com/Nyholm"
  548. }
  549. ],
  550. "description": "Provides the foundation for building command-based web service clients",
  551. "support": {
  552. "issues": "https://github.com/guzzle/command/issues",
  553. "source": "https://github.com/guzzle/command/tree/1.5.3"
  554. },
  555. "time": "2026-07-17T12:30:59+00:00"
  556. },
  557. {
  558. "name": "guzzlehttp/guzzle",
  559. "version": "7.15.1",
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/guzzle/7.15.1/guzzlehttp-guzzle-7.15.1.zip",
  563. "reference": "61443dfb33c62f308ee8add20f45b4d6e4bf8d2f",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "ext-json": "*",
  568. "guzzlehttp/promises": "^2.5.1",
  569. "guzzlehttp/psr7": "^2.13",
  570. "php": "^7.2.5 || ^8.0",
  571. "psr/http-client": "^1.0",
  572. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  573. "symfony/polyfill-php80": "^1.25"
  574. },
  575. "provide": {
  576. "psr/http-client-implementation": "1.0"
  577. },
  578. "require-dev": {
  579. "bamarni/composer-bin-plugin": "^1.8.2",
  580. "ext-curl": "*",
  581. "guzzle/client-integration-tests": "3.0.3",
  582. "guzzlehttp/test-server": "^0.7",
  583. "php-http/message-factory": "^1.1",
  584. "phpunit/phpunit": "^8.5.52 || ^9.6.34",
  585. "psr/log": "^1.1 || ^2.0 || ^3.0"
  586. },
  587. "suggest": {
  588. "ext-curl": "Required for CURL handler support",
  589. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  590. "psr/log": "Required for using the Log middleware"
  591. },
  592. "type": "library",
  593. "extra": {
  594. "bamarni-bin": {
  595. "bin-links": true,
  596. "forward-command": false
  597. }
  598. },
  599. "autoload": {
  600. "files": [
  601. "src/functions_include.php"
  602. ],
  603. "psr-4": {
  604. "GuzzleHttp\\": "src/"
  605. }
  606. },
  607. "license": [
  608. "MIT"
  609. ],
  610. "authors": [
  611. {
  612. "name": "Graham Campbell",
  613. "email": "hello@gjcampbell.co.uk",
  614. "homepage": "https://github.com/GrahamCampbell"
  615. },
  616. {
  617. "name": "Michael Dowling",
  618. "email": "mtdowling@gmail.com",
  619. "homepage": "https://github.com/mtdowling"
  620. },
  621. {
  622. "name": "Jeremy Lindblom",
  623. "email": "jeremeamia@gmail.com",
  624. "homepage": "https://github.com/jeremeamia"
  625. },
  626. {
  627. "name": "George Mponos",
  628. "email": "gmponos@gmail.com",
  629. "homepage": "https://github.com/gmponos"
  630. },
  631. {
  632. "name": "Tobias Nyholm",
  633. "email": "tobias.nyholm@gmail.com",
  634. "homepage": "https://github.com/Nyholm"
  635. },
  636. {
  637. "name": "Márk Sági-Kazár",
  638. "email": "mark.sagikazar@gmail.com",
  639. "homepage": "https://github.com/sagikazarmark"
  640. },
  641. {
  642. "name": "Tobias Schultze",
  643. "email": "webmaster@tubo-world.de",
  644. "homepage": "https://github.com/Tobion"
  645. }
  646. ],
  647. "description": "Guzzle is a PHP HTTP client library",
  648. "keywords": [
  649. "client",
  650. "curl",
  651. "framework",
  652. "http",
  653. "http client",
  654. "psr-18",
  655. "psr-7",
  656. "rest",
  657. "web service"
  658. ],
  659. "support": {
  660. "issues": "https://github.com/guzzle/guzzle/issues",
  661. "source": "https://github.com/guzzle/guzzle/tree/7.15.1"
  662. },
  663. "time": "2026-07-18T11:23:11+00:00"
  664. },
  665. {
  666. "name": "guzzlehttp/guzzle-services",
  667. "version": "1.7.3",
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/guzzle-services/1.7.3/guzzlehttp-guzzle-services-1.7.3.zip",
  671. "reference": "5d365c5adbc04c76c164a0bc09780323d02c39c0",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "guzzlehttp/command": "^1.5.3",
  676. "guzzlehttp/guzzle": "^7.15",
  677. "guzzlehttp/psr7": "^2.13",
  678. "guzzlehttp/uri-template": "^1.0.10",
  679. "php": "^7.2.5 || ^8.0",
  680. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  681. "symfony/polyfill-php80": "^1.25"
  682. },
  683. "require-dev": {
  684. "bamarni/composer-bin-plugin": "^1.8.2",
  685. "guzzlehttp/test-server": "^0.5",
  686. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  687. },
  688. "suggest": {
  689. "gimler/guzzle-description-loader": "^0.0.4"
  690. },
  691. "type": "library",
  692. "extra": {
  693. "bamarni-bin": {
  694. "bin-links": true,
  695. "forward-command": false
  696. }
  697. },
  698. "autoload": {
  699. "psr-4": {
  700. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  701. }
  702. },
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Graham Campbell",
  709. "email": "hello@gjcampbell.co.uk",
  710. "homepage": "https://github.com/GrahamCampbell"
  711. },
  712. {
  713. "name": "Michael Dowling",
  714. "email": "mtdowling@gmail.com",
  715. "homepage": "https://github.com/mtdowling"
  716. },
  717. {
  718. "name": "Stefano Kowalke",
  719. "email": "blueduck@mail.org",
  720. "homepage": "https://github.com/Konafets"
  721. },
  722. {
  723. "name": "Tobias Nyholm",
  724. "email": "tobias.nyholm@gmail.com",
  725. "homepage": "https://github.com/Nyholm"
  726. }
  727. ],
  728. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  729. "support": {
  730. "issues": "https://github.com/guzzle/guzzle-services/issues",
  731. "source": "https://github.com/guzzle/guzzle-services/tree/1.7.3"
  732. },
  733. "time": "2026-07-17T14:26:46+00:00"
  734. },
  735. {
  736. "name": "guzzlehttp/promises",
  737. "version": "2.5.1",
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/promises/2.5.1/guzzlehttp-promises-2.5.1.zip",
  741. "reference": "9ad1e4fc607446a055b95870c7f668e93b5cff29",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "php": "^7.2.5 || ^8.0",
  746. "symfony/deprecation-contracts": "^2.5 || ^3.0"
  747. },
  748. "require-dev": {
  749. "bamarni/composer-bin-plugin": "^1.8.2",
  750. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  751. },
  752. "type": "library",
  753. "extra": {
  754. "bamarni-bin": {
  755. "bin-links": true,
  756. "forward-command": false
  757. }
  758. },
  759. "autoload": {
  760. "psr-4": {
  761. "GuzzleHttp\\Promise\\": "src/"
  762. }
  763. },
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "Tobias Nyholm",
  780. "email": "tobias.nyholm@gmail.com",
  781. "homepage": "https://github.com/Nyholm"
  782. },
  783. {
  784. "name": "Tobias Schultze",
  785. "email": "webmaster@tubo-world.de",
  786. "homepage": "https://github.com/Tobion"
  787. }
  788. ],
  789. "description": "Guzzle promises library",
  790. "keywords": [
  791. "promise"
  792. ],
  793. "support": {
  794. "issues": "https://github.com/guzzle/promises/issues",
  795. "source": "https://github.com/guzzle/promises/tree/2.5.1"
  796. },
  797. "time": "2026-07-08T15:48:39+00:00"
  798. },
  799. {
  800. "name": "guzzlehttp/psr7",
  801. "version": "2.13.0",
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/psr7/2.13.0/guzzlehttp-psr7-2.13.0.zip",
  805. "reference": "dad89620b7a6edb60c15858442eb2e408b45d8f4",
  806. "shasum": ""
  807. },
  808. "require": {
  809. "php": "^7.2.5 || ^8.0",
  810. "psr/http-factory": "^1.0",
  811. "psr/http-message": "^1.1 || ^2.0",
  812. "ralouphie/getallheaders": "^3.0",
  813. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  814. "symfony/polyfill-php80": "^1.25"
  815. },
  816. "provide": {
  817. "psr/http-factory-implementation": "1.0",
  818. "psr/http-message-implementation": "1.0"
  819. },
  820. "require-dev": {
  821. "bamarni/composer-bin-plugin": "^1.8.2",
  822. "http-interop/http-factory-tests": "1.1.0",
  823. "jshttp/mime-db": "1.54.0.1",
  824. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  825. },
  826. "suggest": {
  827. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  828. },
  829. "type": "library",
  830. "extra": {
  831. "bamarni-bin": {
  832. "bin-links": true,
  833. "forward-command": false
  834. }
  835. },
  836. "autoload": {
  837. "psr-4": {
  838. "GuzzleHttp\\Psr7\\": "src/"
  839. }
  840. },
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Graham Campbell",
  847. "email": "hello@gjcampbell.co.uk",
  848. "homepage": "https://github.com/GrahamCampbell"
  849. },
  850. {
  851. "name": "Michael Dowling",
  852. "email": "mtdowling@gmail.com",
  853. "homepage": "https://github.com/mtdowling"
  854. },
  855. {
  856. "name": "George Mponos",
  857. "email": "gmponos@gmail.com",
  858. "homepage": "https://github.com/gmponos"
  859. },
  860. {
  861. "name": "Tobias Nyholm",
  862. "email": "tobias.nyholm@gmail.com",
  863. "homepage": "https://github.com/Nyholm"
  864. },
  865. {
  866. "name": "Márk Sági-Kazár",
  867. "email": "mark.sagikazar@gmail.com",
  868. "homepage": "https://github.com/sagikazarmark"
  869. },
  870. {
  871. "name": "Tobias Schultze",
  872. "email": "webmaster@tubo-world.de",
  873. "homepage": "https://github.com/Tobion"
  874. },
  875. {
  876. "name": "Márk Sági-Kazár",
  877. "email": "mark.sagikazar@gmail.com",
  878. "homepage": "https://sagikazarmark.hu"
  879. }
  880. ],
  881. "description": "PSR-7 message implementation that also provides common utility methods",
  882. "keywords": [
  883. "http",
  884. "message",
  885. "psr-7",
  886. "request",
  887. "response",
  888. "stream",
  889. "uri",
  890. "url"
  891. ],
  892. "support": {
  893. "issues": "https://github.com/guzzle/psr7/issues",
  894. "source": "https://github.com/guzzle/psr7/tree/2.13.0"
  895. },
  896. "time": "2026-07-16T22:23:49+00:00"
  897. },
  898. {
  899. "name": "guzzlehttp/uri-template",
  900. "version": "v1.0.10",
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/uri-template/v1.0.10/guzzlehttp-uri-template-v1.0.10.zip",
  904. "reference": "f6c24c21f42b990e9a58912b332d0874df6ba839",
  905. "shasum": ""
  906. },
  907. "require": {
  908. "php": "^7.2.5 || ^8.0",
  909. "symfony/polyfill-php80": "^1.25"
  910. },
  911. "require-dev": {
  912. "bamarni/composer-bin-plugin": "^1.8.2",
  913. "phpunit/phpunit": "^8.5.52 || ^9.6.34",
  914. "uri-template/tests": "1.0.0"
  915. },
  916. "type": "library",
  917. "extra": {
  918. "bamarni-bin": {
  919. "bin-links": true,
  920. "forward-command": false
  921. }
  922. },
  923. "autoload": {
  924. "psr-4": {
  925. "GuzzleHttp\\UriTemplate\\": "src"
  926. }
  927. },
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Graham Campbell",
  934. "email": "hello@gjcampbell.co.uk",
  935. "homepage": "https://github.com/GrahamCampbell"
  936. },
  937. {
  938. "name": "Michael Dowling",
  939. "email": "mtdowling@gmail.com",
  940. "homepage": "https://github.com/mtdowling"
  941. },
  942. {
  943. "name": "George Mponos",
  944. "email": "gmponos@gmail.com",
  945. "homepage": "https://github.com/gmponos"
  946. },
  947. {
  948. "name": "Tobias Nyholm",
  949. "email": "tobias.nyholm@gmail.com",
  950. "homepage": "https://github.com/Nyholm"
  951. }
  952. ],
  953. "description": "A polyfill class for uri_template of PHP",
  954. "keywords": [
  955. "guzzlehttp",
  956. "uri-template"
  957. ],
  958. "support": {
  959. "issues": "https://github.com/guzzle/uri-template/issues",
  960. "source": "https://github.com/guzzle/uri-template/tree/v1.0.10"
  961. },
  962. "time": "2026-07-17T13:53:03+00:00"
  963. },
  964. {
  965. "name": "illuminate/bus",
  966. "version": "v12.64.0",
  967. "dist": {
  968. "type": "zip",
  969. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/bus/v12.64.0/illuminate-bus-v12.64.0.zip",
  970. "reference": "9e70f409c744e0ba6b301fa608bb5b3c8c38669a",
  971. "shasum": ""
  972. },
  973. "require": {
  974. "illuminate/collections": "^12.0",
  975. "illuminate/contracts": "^12.0",
  976. "illuminate/pipeline": "^12.0",
  977. "illuminate/support": "^12.0",
  978. "php": "^8.2"
  979. },
  980. "suggest": {
  981. "illuminate/queue": "Required to use closures when chaining jobs (^12.0)."
  982. },
  983. "type": "library",
  984. "extra": {
  985. "branch-alias": {
  986. "dev-master": "12.x-dev"
  987. }
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "Illuminate\\Bus\\": ""
  992. }
  993. },
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Taylor Otwell",
  1000. "email": "taylor@laravel.com"
  1001. }
  1002. ],
  1003. "description": "The Illuminate Bus package.",
  1004. "homepage": "https://laravel.com",
  1005. "support": {
  1006. "issues": "https://github.com/laravel/framework/issues",
  1007. "source": "https://github.com/laravel/framework"
  1008. },
  1009. "time": "2026-03-09T13:55:34+00:00"
  1010. },
  1011. {
  1012. "name": "illuminate/collections",
  1013. "version": "v12.64.0",
  1014. "dist": {
  1015. "type": "zip",
  1016. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/collections/v12.64.0/illuminate-collections-v12.64.0.zip",
  1017. "reference": "83313b009c4afb6f02dbc090bdb67809756eefa2",
  1018. "shasum": ""
  1019. },
  1020. "require": {
  1021. "illuminate/conditionable": "^12.0",
  1022. "illuminate/contracts": "^12.0",
  1023. "illuminate/macroable": "^12.0",
  1024. "php": "^8.2",
  1025. "symfony/polyfill-php83": "^1.33",
  1026. "symfony/polyfill-php84": "^1.33",
  1027. "symfony/polyfill-php85": "^1.33"
  1028. },
  1029. "suggest": {
  1030. "illuminate/http": "Required to convert collections to API resources (^12.0).",
  1031. "symfony/var-dumper": "Required to use the dump method (^7.2)."
  1032. },
  1033. "type": "library",
  1034. "extra": {
  1035. "branch-alias": {
  1036. "dev-master": "12.x-dev"
  1037. }
  1038. },
  1039. "autoload": {
  1040. "files": [
  1041. "functions.php",
  1042. "helpers.php"
  1043. ],
  1044. "psr-4": {
  1045. "Illuminate\\Support\\": ""
  1046. }
  1047. },
  1048. "license": [
  1049. "MIT"
  1050. ],
  1051. "authors": [
  1052. {
  1053. "name": "Taylor Otwell",
  1054. "email": "taylor@laravel.com"
  1055. }
  1056. ],
  1057. "description": "The Illuminate Collections package.",
  1058. "homepage": "https://laravel.com",
  1059. "support": {
  1060. "issues": "https://github.com/laravel/framework/issues",
  1061. "source": "https://github.com/laravel/framework"
  1062. },
  1063. "time": "2026-03-11T14:13:25+00:00"
  1064. },
  1065. {
  1066. "name": "illuminate/conditionable",
  1067. "version": "v12.64.0",
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/conditionable/v12.64.0/illuminate-conditionable-v12.64.0.zip",
  1071. "reference": "ec677967c1f2faf90b8428919124d2184a4c9b49",
  1072. "shasum": ""
  1073. },
  1074. "require": {
  1075. "php": "^8.2"
  1076. },
  1077. "type": "library",
  1078. "extra": {
  1079. "branch-alias": {
  1080. "dev-master": "12.x-dev"
  1081. }
  1082. },
  1083. "autoload": {
  1084. "psr-4": {
  1085. "Illuminate\\Support\\": ""
  1086. }
  1087. },
  1088. "license": [
  1089. "MIT"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Taylor Otwell",
  1094. "email": "taylor@laravel.com"
  1095. }
  1096. ],
  1097. "description": "The Illuminate Conditionable package.",
  1098. "homepage": "https://laravel.com",
  1099. "support": {
  1100. "issues": "https://github.com/laravel/framework/issues",
  1101. "source": "https://github.com/laravel/framework"
  1102. },
  1103. "time": "2025-05-13T15:08:45+00:00"
  1104. },
  1105. {
  1106. "name": "illuminate/container",
  1107. "version": "v12.64.0",
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/container/v12.64.0/illuminate-container-v12.64.0.zip",
  1111. "reference": "9abe9dba6b3f5220205ce143069c975a601e4294",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "illuminate/contracts": "^12.0",
  1116. "illuminate/reflection": "^12.0",
  1117. "php": "^8.2",
  1118. "psr/container": "^1.1.1|^2.0.1",
  1119. "symfony/polyfill-php84": "^1.33",
  1120. "symfony/polyfill-php85": "^1.33"
  1121. },
  1122. "provide": {
  1123. "psr/container-implementation": "1.1|2.0"
  1124. },
  1125. "suggest": {
  1126. "illuminate/auth": "Required to use the Auth attribute",
  1127. "illuminate/cache": "Required to use the Cache attribute",
  1128. "illuminate/config": "Required to use the Config attribute",
  1129. "illuminate/database": "Required to use the DB attribute",
  1130. "illuminate/filesystem": "Required to use the Storage attribute",
  1131. "illuminate/log": "Required to use the Log or Context attributes"
  1132. },
  1133. "type": "library",
  1134. "extra": {
  1135. "branch-alias": {
  1136. "dev-master": "12.x-dev"
  1137. }
  1138. },
  1139. "autoload": {
  1140. "psr-4": {
  1141. "Illuminate\\Container\\": ""
  1142. }
  1143. },
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Taylor Otwell",
  1150. "email": "taylor@laravel.com"
  1151. }
  1152. ],
  1153. "description": "The Illuminate Container package.",
  1154. "homepage": "https://laravel.com",
  1155. "support": {
  1156. "issues": "https://github.com/laravel/framework/issues",
  1157. "source": "https://github.com/laravel/framework"
  1158. },
  1159. "time": "2026-03-16T14:05:01+00:00"
  1160. },
  1161. {
  1162. "name": "illuminate/contracts",
  1163. "version": "v12.64.0",
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/contracts/v12.64.0/illuminate-contracts-v12.64.0.zip",
  1167. "reference": "c16fd7ba7d8e6b8f336639ceb6b7e1ff6ed0efb5",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "php": "^8.2",
  1172. "psr/container": "^1.1.1|^2.0.1",
  1173. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1174. },
  1175. "type": "library",
  1176. "extra": {
  1177. "branch-alias": {
  1178. "dev-master": "12.x-dev"
  1179. }
  1180. },
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Illuminate\\Contracts\\": ""
  1184. }
  1185. },
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "authors": [
  1190. {
  1191. "name": "Taylor Otwell",
  1192. "email": "taylor@laravel.com"
  1193. }
  1194. ],
  1195. "description": "The Illuminate Contracts package.",
  1196. "homepage": "https://laravel.com",
  1197. "support": {
  1198. "issues": "https://github.com/laravel/framework/issues",
  1199. "source": "https://github.com/laravel/framework"
  1200. },
  1201. "time": "2026-06-09T13:20:54+00:00"
  1202. },
  1203. {
  1204. "name": "illuminate/events",
  1205. "version": "v12.64.0",
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/events/v12.64.0/illuminate-events-v12.64.0.zip",
  1209. "reference": "ff22aa6017bdbd90ace660f50638ed9c580ba555",
  1210. "shasum": ""
  1211. },
  1212. "require": {
  1213. "illuminate/bus": "^12.0",
  1214. "illuminate/collections": "^12.0",
  1215. "illuminate/container": "^12.0",
  1216. "illuminate/contracts": "^12.0",
  1217. "illuminate/macroable": "^12.0",
  1218. "illuminate/support": "^12.0",
  1219. "php": "^8.2"
  1220. },
  1221. "type": "library",
  1222. "extra": {
  1223. "branch-alias": {
  1224. "dev-master": "12.x-dev"
  1225. }
  1226. },
  1227. "autoload": {
  1228. "files": [
  1229. "functions.php"
  1230. ],
  1231. "psr-4": {
  1232. "Illuminate\\Events\\": ""
  1233. }
  1234. },
  1235. "license": [
  1236. "MIT"
  1237. ],
  1238. "authors": [
  1239. {
  1240. "name": "Taylor Otwell",
  1241. "email": "taylor@laravel.com"
  1242. }
  1243. ],
  1244. "description": "The Illuminate Events package.",
  1245. "homepage": "https://laravel.com",
  1246. "support": {
  1247. "issues": "https://github.com/laravel/framework/issues",
  1248. "source": "https://github.com/laravel/framework"
  1249. },
  1250. "time": "2026-03-05T16:20:14+00:00"
  1251. },
  1252. {
  1253. "name": "illuminate/filesystem",
  1254. "version": "v12.64.0",
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/filesystem/v12.64.0/illuminate-filesystem-v12.64.0.zip",
  1258. "reference": "3b5ad9b385595d735689ebc2bfe701567cc4f1c3",
  1259. "shasum": ""
  1260. },
  1261. "require": {
  1262. "illuminate/collections": "^12.0",
  1263. "illuminate/contracts": "^12.0",
  1264. "illuminate/macroable": "^12.0",
  1265. "illuminate/support": "^12.0",
  1266. "php": "^8.2",
  1267. "symfony/finder": "^7.2.0"
  1268. },
  1269. "suggest": {
  1270. "ext-fileinfo": "Required to use the Filesystem class.",
  1271. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1272. "ext-hash": "Required to use the Filesystem class.",
  1273. "illuminate/http": "Required for handling uploaded files (^12.0).",
  1274. "league/flysystem": "Required to use the Flysystem local driver (^3.25.1).",
  1275. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  1276. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  1277. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  1278. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1279. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  1280. "symfony/mime": "Required to enable support for guessing extensions (^7.2)."
  1281. },
  1282. "type": "library",
  1283. "extra": {
  1284. "branch-alias": {
  1285. "dev-master": "12.x-dev"
  1286. }
  1287. },
  1288. "autoload": {
  1289. "files": [
  1290. "functions.php"
  1291. ],
  1292. "psr-4": {
  1293. "Illuminate\\Filesystem\\": ""
  1294. }
  1295. },
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Taylor Otwell",
  1302. "email": "taylor@laravel.com"
  1303. }
  1304. ],
  1305. "description": "The Illuminate Filesystem package.",
  1306. "homepage": "https://laravel.com",
  1307. "support": {
  1308. "issues": "https://github.com/laravel/framework/issues",
  1309. "source": "https://github.com/laravel/framework"
  1310. },
  1311. "time": "2026-06-02T13:54:37+00:00"
  1312. },
  1313. {
  1314. "name": "illuminate/macroable",
  1315. "version": "v12.64.0",
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/macroable/v12.64.0/illuminate-macroable-v12.64.0.zip",
  1319. "reference": "e295d62d89dcdb87e2b1bd70dd14d074a0ed73cc",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "php": "^8.2"
  1324. },
  1325. "type": "library",
  1326. "extra": {
  1327. "branch-alias": {
  1328. "dev-master": "12.x-dev"
  1329. }
  1330. },
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Illuminate\\Support\\": ""
  1334. }
  1335. },
  1336. "license": [
  1337. "MIT"
  1338. ],
  1339. "authors": [
  1340. {
  1341. "name": "Taylor Otwell",
  1342. "email": "taylor@laravel.com"
  1343. }
  1344. ],
  1345. "description": "The Illuminate Macroable package.",
  1346. "homepage": "https://laravel.com",
  1347. "support": {
  1348. "issues": "https://github.com/laravel/framework/issues",
  1349. "source": "https://github.com/laravel/framework"
  1350. },
  1351. "time": "2026-03-30T19:05:19+00:00"
  1352. },
  1353. {
  1354. "name": "illuminate/pipeline",
  1355. "version": "v12.64.0",
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/pipeline/v12.64.0/illuminate-pipeline-v12.64.0.zip",
  1359. "reference": "b6a14c20d69a44bf0a6fba664a00d23ca71770ee",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "illuminate/contracts": "^12.0",
  1364. "illuminate/macroable": "^12.0",
  1365. "illuminate/support": "^12.0",
  1366. "php": "^8.2"
  1367. },
  1368. "suggest": {
  1369. "illuminate/database": "Required to use database transactions (^12.0)."
  1370. },
  1371. "type": "library",
  1372. "extra": {
  1373. "branch-alias": {
  1374. "dev-master": "12.x-dev"
  1375. }
  1376. },
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Illuminate\\Pipeline\\": ""
  1380. }
  1381. },
  1382. "license": [
  1383. "MIT"
  1384. ],
  1385. "authors": [
  1386. {
  1387. "name": "Taylor Otwell",
  1388. "email": "taylor@laravel.com"
  1389. }
  1390. ],
  1391. "description": "The Illuminate Pipeline package.",
  1392. "homepage": "https://laravel.com",
  1393. "support": {
  1394. "issues": "https://github.com/laravel/framework/issues",
  1395. "source": "https://github.com/laravel/framework"
  1396. },
  1397. "time": "2025-08-20T13:36:50+00:00"
  1398. },
  1399. {
  1400. "name": "illuminate/redis",
  1401. "version": "v12.64.0",
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/redis/v12.64.0/illuminate-redis-v12.64.0.zip",
  1405. "reference": "e46d4c3806d78d4d7733cd9b9bfb2fef30f4c8cb",
  1406. "shasum": ""
  1407. },
  1408. "require": {
  1409. "illuminate/collections": "^12.0",
  1410. "illuminate/contracts": "^12.0",
  1411. "illuminate/macroable": "^12.0",
  1412. "illuminate/support": "^12.0",
  1413. "php": "^8.2"
  1414. },
  1415. "suggest": {
  1416. "ext-redis": "Required to use the phpredis connector (^4.0|^5.0|^6.0).",
  1417. "predis/predis": "Required to use the predis connector (^2.3|^3.0)."
  1418. },
  1419. "type": "library",
  1420. "extra": {
  1421. "branch-alias": {
  1422. "dev-master": "12.x-dev"
  1423. }
  1424. },
  1425. "autoload": {
  1426. "psr-4": {
  1427. "Illuminate\\Redis\\": ""
  1428. }
  1429. },
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Taylor Otwell",
  1436. "email": "taylor@laravel.com"
  1437. }
  1438. ],
  1439. "description": "The Illuminate Redis package.",
  1440. "homepage": "https://laravel.com",
  1441. "support": {
  1442. "issues": "https://github.com/laravel/framework/issues",
  1443. "source": "https://github.com/laravel/framework"
  1444. },
  1445. "time": "2026-04-05T14:10:16+00:00"
  1446. },
  1447. {
  1448. "name": "illuminate/reflection",
  1449. "version": "v12.64.0",
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/reflection/v12.64.0/illuminate-reflection-v12.64.0.zip",
  1453. "reference": "348cf5da9de89b596d7723be6425fb048e2bf4bb",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "illuminate/collections": "^12.0",
  1458. "illuminate/contracts": "^12.0",
  1459. "php": "^8.2"
  1460. },
  1461. "type": "library",
  1462. "extra": {
  1463. "branch-alias": {
  1464. "dev-master": "12.x-dev"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "files": [
  1469. "helpers.php"
  1470. ],
  1471. "psr-4": {
  1472. "Illuminate\\Support\\": ""
  1473. }
  1474. },
  1475. "license": [
  1476. "MIT"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "Taylor Otwell",
  1481. "email": "taylor@laravel.com"
  1482. }
  1483. ],
  1484. "description": "The Illuminate Reflection package.",
  1485. "homepage": "https://laravel.com",
  1486. "support": {
  1487. "issues": "https://github.com/laravel/framework/issues",
  1488. "source": "https://github.com/laravel/framework"
  1489. },
  1490. "time": "2026-02-25T15:25:18+00:00"
  1491. },
  1492. {
  1493. "name": "illuminate/support",
  1494. "version": "v12.64.0",
  1495. "dist": {
  1496. "type": "zip",
  1497. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/support/v12.64.0/illuminate-support-v12.64.0.zip",
  1498. "reference": "bc7bc2db3e635697f81ea123511ae25b014a63fb",
  1499. "shasum": ""
  1500. },
  1501. "require": {
  1502. "doctrine/inflector": "^2.0",
  1503. "ext-ctype": "*",
  1504. "ext-filter": "*",
  1505. "ext-mbstring": "*",
  1506. "illuminate/collections": "^12.0",
  1507. "illuminate/conditionable": "^12.0",
  1508. "illuminate/contracts": "^12.0",
  1509. "illuminate/macroable": "^12.0",
  1510. "illuminate/reflection": "^12.0",
  1511. "nesbot/carbon": "^3.8.4",
  1512. "php": "^8.2",
  1513. "symfony/polyfill-php83": "^1.33",
  1514. "symfony/polyfill-php85": "^1.33",
  1515. "voku/portable-ascii": "^2.0.2"
  1516. },
  1517. "conflict": {
  1518. "tightenco/collect": "<5.5.33"
  1519. },
  1520. "replace": {
  1521. "spatie/once": "*"
  1522. },
  1523. "suggest": {
  1524. "illuminate/filesystem": "Required to use the Composer class (^12.0).",
  1525. "laravel/serializable-closure": "Required to use the once function (^1.3|^2.0).",
  1526. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.7).",
  1527. "league/uri": "Required to use the Uri class (^7.5.1).",
  1528. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  1529. "symfony/process": "Required to use the Composer class (^7.2).",
  1530. "symfony/uid": "Required to use Str::ulid() (^7.2).",
  1531. "symfony/var-dumper": "Required to use the dd function (^7.2).",
  1532. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.6.1)."
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "12.x-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "files": [
  1542. "functions.php",
  1543. "helpers.php"
  1544. ],
  1545. "psr-4": {
  1546. "Illuminate\\Support\\": ""
  1547. }
  1548. },
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Taylor Otwell",
  1555. "email": "taylor@laravel.com"
  1556. }
  1557. ],
  1558. "description": "The Illuminate Support package.",
  1559. "homepage": "https://laravel.com",
  1560. "support": {
  1561. "issues": "https://github.com/laravel/framework/issues",
  1562. "source": "https://github.com/laravel/framework"
  1563. },
  1564. "time": "2026-07-13T16:08:36+00:00"
  1565. },
  1566. {
  1567. "name": "illuminate/translation",
  1568. "version": "v12.64.0",
  1569. "dist": {
  1570. "type": "zip",
  1571. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/translation/v12.64.0/illuminate-translation-v12.64.0.zip",
  1572. "reference": "4b555f3ca37523d1064d08e99774ab32fd0cc228",
  1573. "shasum": ""
  1574. },
  1575. "require": {
  1576. "illuminate/collections": "^12.0",
  1577. "illuminate/contracts": "^12.0",
  1578. "illuminate/filesystem": "^12.0",
  1579. "illuminate/macroable": "^12.0",
  1580. "illuminate/support": "^12.0",
  1581. "php": "^8.2"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "12.x-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "Illuminate\\Translation\\": ""
  1592. }
  1593. },
  1594. "license": [
  1595. "MIT"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "Taylor Otwell",
  1600. "email": "taylor@laravel.com"
  1601. }
  1602. ],
  1603. "description": "The Illuminate Translation package.",
  1604. "homepage": "https://laravel.com",
  1605. "support": {
  1606. "issues": "https://github.com/laravel/framework/issues",
  1607. "source": "https://github.com/laravel/framework"
  1608. },
  1609. "time": "2026-03-18T14:19:27+00:00"
  1610. },
  1611. {
  1612. "name": "illuminate/validation",
  1613. "version": "v12.64.0",
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://mirrors.cloud.tencent.com/repository/composer/illuminate/validation/v12.64.0/illuminate-validation-v12.64.0.zip",
  1617. "reference": "297cff9c69885b1a9125ee4f26f77ef570abb2b6",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "brick/math": "^0.11|^0.12|^0.13|^0.14",
  1622. "egulias/email-validator": "^3.2.5|^4.0",
  1623. "ext-filter": "*",
  1624. "ext-mbstring": "*",
  1625. "illuminate/collections": "^12.0",
  1626. "illuminate/container": "^12.0",
  1627. "illuminate/contracts": "^12.0",
  1628. "illuminate/macroable": "^12.0",
  1629. "illuminate/support": "^12.0",
  1630. "illuminate/translation": "^12.0",
  1631. "php": "^8.2",
  1632. "symfony/http-foundation": "^7.2",
  1633. "symfony/mime": "^7.2",
  1634. "symfony/polyfill-php83": "^1.33"
  1635. },
  1636. "suggest": {
  1637. "illuminate/database": "Required to use the database presence verifier (^12.0).",
  1638. "ramsey/uuid": "Required to use Validator::validateUuid() (^4.7)."
  1639. },
  1640. "type": "library",
  1641. "extra": {
  1642. "branch-alias": {
  1643. "dev-master": "12.x-dev"
  1644. }
  1645. },
  1646. "autoload": {
  1647. "psr-4": {
  1648. "Illuminate\\Validation\\": ""
  1649. }
  1650. },
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Taylor Otwell",
  1657. "email": "taylor@laravel.com"
  1658. }
  1659. ],
  1660. "description": "The Illuminate Validation package.",
  1661. "homepage": "https://laravel.com",
  1662. "support": {
  1663. "issues": "https://github.com/laravel/framework/issues",
  1664. "source": "https://github.com/laravel/framework"
  1665. },
  1666. "time": "2026-05-17T14:42:21+00:00"
  1667. },
  1668. {
  1669. "name": "jaeger/g-http",
  1670. "version": "V2.0.1",
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://mirrors.cloud.tencent.com/repository/composer/jaeger/g-http/V2.0.1/jaeger-g-http-V2.0.1.zip",
  1674. "reference": "29cb537c57f230980ca10622de190f04831e35e6",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  1679. "php": ">=8.1",
  1680. "symfony/cache": "^6.4 || ^7.0"
  1681. },
  1682. "require-dev": {
  1683. "predis/predis": "^2.2"
  1684. },
  1685. "type": "library",
  1686. "autoload": {
  1687. "psr-4": {
  1688. "Jaeger\\": "src"
  1689. }
  1690. },
  1691. "license": [
  1692. "MIT"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Jaeger",
  1697. "email": "JaegerCode@gmail.com"
  1698. }
  1699. ],
  1700. "description": "Simple Http client base on GuzzleHttp",
  1701. "support": {
  1702. "issues": "https://github.com/jae-jae/GHttp/issues",
  1703. "source": "https://github.com/jae-jae/GHttp/tree/V2.0.1"
  1704. },
  1705. "time": "2024-06-14T08:13:32+00:00"
  1706. },
  1707. {
  1708. "name": "jaeger/phpquery-single",
  1709. "version": "1.1.1",
  1710. "dist": {
  1711. "type": "zip",
  1712. "url": "https://mirrors.cloud.tencent.com/repository/composer/jaeger/phpquery-single/1.1.1/jaeger-phpquery-single-1.1.1.zip",
  1713. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  1714. "shasum": ""
  1715. },
  1716. "require": {
  1717. "php": ">=5.3.0"
  1718. },
  1719. "type": "library",
  1720. "autoload": {
  1721. "classmap": [
  1722. "phpQuery.php"
  1723. ]
  1724. },
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "Tobiasz Cudnik",
  1731. "email": "tobiasz.cudnik@gmail.com",
  1732. "homepage": "https://github.com/TobiaszCudnik",
  1733. "role": "Developer"
  1734. },
  1735. {
  1736. "name": "Jaeger",
  1737. "role": "Packager"
  1738. }
  1739. ],
  1740. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  1741. "homepage": "http://code.google.com/p/phpquery/",
  1742. "support": {
  1743. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  1744. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  1745. },
  1746. "time": "2022-03-26T15:01:16+00:00"
  1747. },
  1748. {
  1749. "name": "jaeger/querylist",
  1750. "version": "V4.4.7",
  1751. "dist": {
  1752. "type": "zip",
  1753. "url": "https://mirrors.cloud.tencent.com/repository/composer/jaeger/querylist/V4.4.7/jaeger-querylist-V4.4.7.zip",
  1754. "reference": "7888655eb12a0abea907954c4b6bbc817ecad3f1",
  1755. "shasum": ""
  1756. },
  1757. "require": {
  1758. "ext-dom": "*",
  1759. "jaeger/g-http": "^2.0",
  1760. "jaeger/phpquery-single": "^1",
  1761. "php": ">=8.1",
  1762. "symfony/var-dumper": ">3.4"
  1763. },
  1764. "require-dev": {
  1765. "phpunit/phpunit": "^8.5"
  1766. },
  1767. "type": "library",
  1768. "autoload": {
  1769. "files": [
  1770. "src/Collect/Support/helpers.php",
  1771. "src/Collect/Support/alias.php"
  1772. ],
  1773. "psr-4": {
  1774. "QL\\": "src"
  1775. }
  1776. },
  1777. "license": [
  1778. "MIT"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "Jaeger",
  1783. "email": "JaegerCode@gmail.com"
  1784. }
  1785. ],
  1786. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  1787. "homepage": "http://querylist.cc",
  1788. "keywords": [
  1789. "QueryList",
  1790. "phpQuery",
  1791. "spider"
  1792. ],
  1793. "support": {
  1794. "issues": "https://github.com/jae-jae/QueryList/issues",
  1795. "source": "https://github.com/jae-jae/QueryList/tree/V4.4.7"
  1796. },
  1797. "time": "2026-02-02T06:26:44+00:00"
  1798. },
  1799. {
  1800. "name": "laravel/serializable-closure",
  1801. "version": "v2.0.13",
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/serializable-closure/v2.0.13/laravel-serializable-closure-v2.0.13.zip",
  1805. "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce",
  1806. "shasum": ""
  1807. },
  1808. "require": {
  1809. "php": "^8.1"
  1810. },
  1811. "require-dev": {
  1812. "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
  1813. "nesbot/carbon": "^2.67|^3.0",
  1814. "pestphp/pest": "^2.36|^3.0|^4.0",
  1815. "phpstan/phpstan": "^2.0",
  1816. "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0"
  1817. },
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-master": "2.x-dev"
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-4": {
  1826. "Laravel\\SerializableClosure\\": "src/"
  1827. }
  1828. },
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Taylor Otwell",
  1835. "email": "taylor@laravel.com"
  1836. },
  1837. {
  1838. "name": "Nuno Maduro",
  1839. "email": "nuno@laravel.com"
  1840. }
  1841. ],
  1842. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1843. "keywords": [
  1844. "closure",
  1845. "laravel",
  1846. "serializable"
  1847. ],
  1848. "support": {
  1849. "issues": "https://github.com/laravel/serializable-closure/issues",
  1850. "source": "https://github.com/laravel/serializable-closure"
  1851. },
  1852. "time": "2026-04-16T14:03:50+00:00"
  1853. },
  1854. {
  1855. "name": "linfly/annotation",
  1856. "version": "2.1.0",
  1857. "dist": {
  1858. "type": "zip",
  1859. "url": "https://mirrors.cloud.tencent.com/repository/composer/linfly/annotation/2.1.0/linfly-annotation-2.1.0.zip",
  1860. "reference": "1ad9eeedf112f6cb0b2e61ff8c7e9244cdf62703",
  1861. "shasum": ""
  1862. },
  1863. "require": {
  1864. "php": "^8.0",
  1865. "php-di/php-di": "^7.0"
  1866. },
  1867. "type": "library",
  1868. "autoload": {
  1869. "psr-4": {
  1870. "LinFly\\Annotation\\": "src/"
  1871. }
  1872. },
  1873. "license": [
  1874. "MIT"
  1875. ],
  1876. "description": "Webman plugin linfly/annotation",
  1877. "support": {
  1878. "issues": "https://github.com/imlinfly/webman-annotation/issues",
  1879. "source": "https://github.com/imlinfly/webman-annotation/tree/2.1.0"
  1880. },
  1881. "time": "2024-12-30T02:32:13+00:00"
  1882. },
  1883. {
  1884. "name": "maennchen/zipstream-php",
  1885. "version": "3.1.2",
  1886. "dist": {
  1887. "type": "zip",
  1888. "url": "https://mirrors.cloud.tencent.com/repository/composer/maennchen/zipstream-php/3.1.2/maennchen-zipstream-php-3.1.2.zip",
  1889. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  1890. "shasum": ""
  1891. },
  1892. "require": {
  1893. "ext-mbstring": "*",
  1894. "ext-zlib": "*",
  1895. "php-64bit": "^8.2"
  1896. },
  1897. "require-dev": {
  1898. "brianium/paratest": "^7.7",
  1899. "ext-zip": "*",
  1900. "friendsofphp/php-cs-fixer": "^3.16",
  1901. "guzzlehttp/guzzle": "^7.5",
  1902. "mikey179/vfsstream": "^1.6",
  1903. "php-coveralls/php-coveralls": "^2.5",
  1904. "phpunit/phpunit": "^11.0",
  1905. "vimeo/psalm": "^6.0"
  1906. },
  1907. "suggest": {
  1908. "guzzlehttp/psr7": "^2.4",
  1909. "psr/http-message": "^2.0"
  1910. },
  1911. "type": "library",
  1912. "autoload": {
  1913. "psr-4": {
  1914. "ZipStream\\": "src/"
  1915. }
  1916. },
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Paul Duncan",
  1923. "email": "pabs@pablotron.org"
  1924. },
  1925. {
  1926. "name": "Jonatan Männchen",
  1927. "email": "jonatan@maennchen.ch"
  1928. },
  1929. {
  1930. "name": "Jesse Donat",
  1931. "email": "donatj@gmail.com"
  1932. },
  1933. {
  1934. "name": "András Kolesár",
  1935. "email": "kolesar@kolesar.hu"
  1936. }
  1937. ],
  1938. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1939. "keywords": [
  1940. "stream",
  1941. "zip"
  1942. ],
  1943. "support": {
  1944. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1945. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  1946. },
  1947. "time": "2025-01-27T12:07:53+00:00"
  1948. },
  1949. {
  1950. "name": "markbaker/complex",
  1951. "version": "3.0.2",
  1952. "dist": {
  1953. "type": "zip",
  1954. "url": "https://mirrors.cloud.tencent.com/repository/composer/markbaker/complex/3.0.2/markbaker-complex-3.0.2.zip",
  1955. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1956. "shasum": ""
  1957. },
  1958. "require": {
  1959. "php": "^7.2 || ^8.0"
  1960. },
  1961. "require-dev": {
  1962. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1963. "phpcompatibility/php-compatibility": "^9.3",
  1964. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1965. "squizlabs/php_codesniffer": "^3.7"
  1966. },
  1967. "type": "library",
  1968. "autoload": {
  1969. "psr-4": {
  1970. "Complex\\": "classes/src/"
  1971. }
  1972. },
  1973. "license": [
  1974. "MIT"
  1975. ],
  1976. "authors": [
  1977. {
  1978. "name": "Mark Baker",
  1979. "email": "mark@lange.demon.co.uk"
  1980. }
  1981. ],
  1982. "description": "PHP Class for working with complex numbers",
  1983. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1984. "keywords": [
  1985. "complex",
  1986. "mathematics"
  1987. ],
  1988. "support": {
  1989. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1990. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  1991. },
  1992. "time": "2022-12-06T16:21:08+00:00"
  1993. },
  1994. {
  1995. "name": "markbaker/matrix",
  1996. "version": "3.0.1",
  1997. "dist": {
  1998. "type": "zip",
  1999. "url": "https://mirrors.cloud.tencent.com/repository/composer/markbaker/matrix/3.0.1/markbaker-matrix-3.0.1.zip",
  2000. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2001. "shasum": ""
  2002. },
  2003. "require": {
  2004. "php": "^7.1 || ^8.0"
  2005. },
  2006. "require-dev": {
  2007. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2008. "phpcompatibility/php-compatibility": "^9.3",
  2009. "phpdocumentor/phpdocumentor": "2.*",
  2010. "phploc/phploc": "^4.0",
  2011. "phpmd/phpmd": "2.*",
  2012. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2013. "sebastian/phpcpd": "^4.0",
  2014. "squizlabs/php_codesniffer": "^3.7"
  2015. },
  2016. "type": "library",
  2017. "autoload": {
  2018. "psr-4": {
  2019. "Matrix\\": "classes/src/"
  2020. }
  2021. },
  2022. "license": [
  2023. "MIT"
  2024. ],
  2025. "authors": [
  2026. {
  2027. "name": "Mark Baker",
  2028. "email": "mark@demon-angel.eu"
  2029. }
  2030. ],
  2031. "description": "PHP Class for working with matrices",
  2032. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2033. "keywords": [
  2034. "mathematics",
  2035. "matrix",
  2036. "vector"
  2037. ],
  2038. "support": {
  2039. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2040. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2041. },
  2042. "time": "2022-12-02T22:17:43+00:00"
  2043. },
  2044. {
  2045. "name": "monolog/monolog",
  2046. "version": "2.11.0",
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://mirrors.cloud.tencent.com/repository/composer/monolog/monolog/2.11.0/monolog-monolog-2.11.0.zip",
  2050. "reference": "37308608e599f34a1a4845b16440047ec98a172a",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "php": ">=7.2",
  2055. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2056. },
  2057. "provide": {
  2058. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2059. },
  2060. "require-dev": {
  2061. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2062. "doctrine/couchdb": "~1.0@dev",
  2063. "elasticsearch/elasticsearch": "^7 || ^8",
  2064. "ext-json": "*",
  2065. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2066. "guzzlehttp/guzzle": "^7.4",
  2067. "guzzlehttp/psr7": "^2.2",
  2068. "mongodb/mongodb": "^1.8 || ^2.0",
  2069. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2070. "phpspec/prophecy": "^1.15",
  2071. "phpstan/phpstan": "^1.10",
  2072. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2073. "predis/predis": "^1.1 || ^2.0",
  2074. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2075. "ruflin/elastica": "^7",
  2076. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2077. "symfony/mailer": "^5.4 || ^6",
  2078. "symfony/mime": "^5.4 || ^6"
  2079. },
  2080. "suggest": {
  2081. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2082. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2083. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2084. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2085. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2086. "ext-mbstring": "Allow to work properly with unicode symbols",
  2087. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2088. "ext-openssl": "Required to send log messages using SSL",
  2089. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2090. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2091. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2092. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2093. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2094. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2095. },
  2096. "type": "library",
  2097. "extra": {
  2098. "branch-alias": {
  2099. "dev-main": "2.x-dev"
  2100. }
  2101. },
  2102. "autoload": {
  2103. "psr-4": {
  2104. "Monolog\\": "src/Monolog"
  2105. }
  2106. },
  2107. "license": [
  2108. "MIT"
  2109. ],
  2110. "authors": [
  2111. {
  2112. "name": "Jordi Boggiano",
  2113. "email": "j.boggiano@seld.be",
  2114. "homepage": "https://seld.be"
  2115. }
  2116. ],
  2117. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2118. "homepage": "https://github.com/Seldaek/monolog",
  2119. "keywords": [
  2120. "log",
  2121. "logging",
  2122. "psr-3"
  2123. ],
  2124. "support": {
  2125. "issues": "https://github.com/Seldaek/monolog/issues",
  2126. "source": "https://github.com/Seldaek/monolog/tree/2.11.0"
  2127. },
  2128. "time": "2026-01-01T13:05:00+00:00"
  2129. },
  2130. {
  2131. "name": "nesbot/carbon",
  2132. "version": "3.13.1",
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://mirrors.cloud.tencent.com/repository/composer/nesbot/carbon/3.13.1/nesbot-carbon-3.13.1.zip",
  2136. "reference": "2937ad3d1d2c506fd2bc97d571438a95641f44e2",
  2137. "shasum": ""
  2138. },
  2139. "require": {
  2140. "carbonphp/carbon-doctrine-types": "<100.0",
  2141. "ext-json": "*",
  2142. "php": "^8.1",
  2143. "psr/clock": "^1.0",
  2144. "symfony/clock": "^6.3.12 || ^7.0 || ^8.0",
  2145. "symfony/polyfill-mbstring": "^1.0",
  2146. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0"
  2147. },
  2148. "provide": {
  2149. "psr/clock-implementation": "1.0"
  2150. },
  2151. "require-dev": {
  2152. "doctrine/dbal": "^3.6.3 || ^4.0",
  2153. "doctrine/orm": "^2.15.2 || ^3.0",
  2154. "friendsofphp/php-cs-fixer": "^v3.87.1",
  2155. "kylekatarnls/multi-tester": "^2.5.3",
  2156. "phpmd/phpmd": "^2.15.0",
  2157. "phpstan/extension-installer": "^1.4.3",
  2158. "phpstan/phpstan": "^2.1.22",
  2159. "phpunit/phpunit": "^10.5.53",
  2160. "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.0"
  2161. },
  2162. "bin": [
  2163. "bin/carbon"
  2164. ],
  2165. "type": "library",
  2166. "extra": {
  2167. "laravel": {
  2168. "providers": [
  2169. "Carbon\\Laravel\\ServiceProvider"
  2170. ]
  2171. },
  2172. "phpstan": {
  2173. "includes": [
  2174. "extension.neon"
  2175. ]
  2176. },
  2177. "branch-alias": {
  2178. "dev-2.x": "2.x-dev",
  2179. "dev-master": "3.x-dev"
  2180. }
  2181. },
  2182. "autoload": {
  2183. "psr-4": {
  2184. "Carbon\\": "src/Carbon/"
  2185. }
  2186. },
  2187. "license": [
  2188. "MIT"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "Brian Nesbitt",
  2193. "email": "brian@nesbot.com",
  2194. "homepage": "https://markido.com"
  2195. },
  2196. {
  2197. "name": "kylekatarnls",
  2198. "homepage": "https://github.com/kylekatarnls"
  2199. }
  2200. ],
  2201. "description": "An API extension for DateTime that supports 281 different languages.",
  2202. "homepage": "https://carbonphp.github.io/carbon/",
  2203. "keywords": [
  2204. "date",
  2205. "datetime",
  2206. "time"
  2207. ],
  2208. "support": {
  2209. "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html",
  2210. "issues": "https://github.com/CarbonPHP/carbon/issues",
  2211. "source": "https://github.com/CarbonPHP/carbon"
  2212. },
  2213. "time": "2026-07-09T18:23:49+00:00"
  2214. },
  2215. {
  2216. "name": "nikic/fast-route",
  2217. "version": "1.3.1",
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://mirrors.cloud.tencent.com/repository/composer/nikic/fast-route/1.3.1/nikic-fast-route-1.3.1.zip",
  2221. "reference": "7476684f39bb9124b3be69ed3d84b66723920298",
  2222. "shasum": ""
  2223. },
  2224. "require": {
  2225. "php": ">=5.4.0"
  2226. },
  2227. "require-dev": {
  2228. "phpunit/phpunit": "^4.8.35|~5.7"
  2229. },
  2230. "type": "library",
  2231. "autoload": {
  2232. "files": [
  2233. "src/functions.php"
  2234. ],
  2235. "psr-4": {
  2236. "FastRoute\\": "src/"
  2237. }
  2238. },
  2239. "license": [
  2240. "BSD-3-Clause"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Nikita Popov",
  2245. "email": "nikic@php.net"
  2246. }
  2247. ],
  2248. "description": "Fast request router for PHP",
  2249. "keywords": [
  2250. "router",
  2251. "routing"
  2252. ],
  2253. "support": {
  2254. "issues": "https://github.com/nikic/FastRoute/issues",
  2255. "source": "https://github.com/nikic/FastRoute/tree/1.3.1"
  2256. },
  2257. "time": "2026-07-09T19:38:47+00:00"
  2258. },
  2259. {
  2260. "name": "overtrue/pinyin",
  2261. "version": "6.0.1",
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://mirrors.cloud.tencent.com/repository/composer/overtrue/pinyin/6.0.1/overtrue-pinyin-6.0.1.zip",
  2265. "reference": "d79364f289f5ccdabdd3142556d4254c7574f87c",
  2266. "shasum": ""
  2267. },
  2268. "require": {
  2269. "php": ">=8.1"
  2270. },
  2271. "require-dev": {
  2272. "brainmaestro/composer-git-hooks": "^3.0",
  2273. "laravel/pint": "^1.10",
  2274. "nunomaduro/termwind": "^1.0 || ^2.0",
  2275. "phpunit/phpunit": "^10.5 || ^11.5 || ^12.0"
  2276. },
  2277. "bin": [
  2278. "bin/pinyin"
  2279. ],
  2280. "type": "library",
  2281. "extra": {
  2282. "hooks": {
  2283. "pre-push": [
  2284. "composer pint",
  2285. "composer test"
  2286. ],
  2287. "pre-commit": [
  2288. "composer pint",
  2289. "composer test"
  2290. ]
  2291. }
  2292. },
  2293. "autoload": {
  2294. "psr-4": {
  2295. "Overtrue\\Pinyin\\": "src/"
  2296. }
  2297. },
  2298. "license": [
  2299. "MIT"
  2300. ],
  2301. "authors": [
  2302. {
  2303. "name": "overtrue",
  2304. "email": "anzhengchao@gmail.com",
  2305. "homepage": "http://github.com/overtrue"
  2306. }
  2307. ],
  2308. "description": "Chinese to pinyin translator.",
  2309. "homepage": "https://github.com/overtrue/pinyin",
  2310. "keywords": [
  2311. "Chinese",
  2312. "Pinyin",
  2313. "cn2pinyin"
  2314. ],
  2315. "support": {
  2316. "issues": "https://github.com/overtrue/pinyin/issues",
  2317. "source": "https://github.com/overtrue/pinyin/tree/6.0.1"
  2318. },
  2319. "time": "2026-03-06T13:15:43+00:00"
  2320. },
  2321. {
  2322. "name": "php-di/invoker",
  2323. "version": "2.3.7",
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://mirrors.cloud.tencent.com/repository/composer/php-di/invoker/2.3.7/php-di-invoker-2.3.7.zip",
  2327. "reference": "3c1ddfdef181431fbc4be83378f6d036d59e81e1",
  2328. "shasum": ""
  2329. },
  2330. "require": {
  2331. "php": ">=7.3",
  2332. "psr/container": "^1.0|^2.0"
  2333. },
  2334. "require-dev": {
  2335. "athletic/athletic": "~0.1.8",
  2336. "mnapoli/hard-mode": "~0.3.0",
  2337. "phpunit/phpunit": "^9.0 || ^10 || ^11 || ^12"
  2338. },
  2339. "type": "library",
  2340. "autoload": {
  2341. "psr-4": {
  2342. "Invoker\\": "src/"
  2343. }
  2344. },
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "description": "Generic and extensible callable invoker",
  2349. "homepage": "https://github.com/PHP-DI/Invoker",
  2350. "keywords": [
  2351. "callable",
  2352. "dependency",
  2353. "dependency-injection",
  2354. "injection",
  2355. "invoke",
  2356. "invoker"
  2357. ],
  2358. "support": {
  2359. "issues": "https://github.com/PHP-DI/Invoker/issues",
  2360. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.7"
  2361. },
  2362. "time": "2025-08-30T10:22:22+00:00"
  2363. },
  2364. {
  2365. "name": "php-di/php-di",
  2366. "version": "7.1.1",
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://mirrors.cloud.tencent.com/repository/composer/php-di/php-di/7.1.1/php-di-php-di-7.1.1.zip",
  2370. "reference": "f88054cc052e40dbe7b383c8817c19442d480352",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "laravel/serializable-closure": "^1.0 || ^2.0",
  2375. "php": ">=8.0",
  2376. "php-di/invoker": "^2.0",
  2377. "psr/container": "^1.1 || ^2.0"
  2378. },
  2379. "provide": {
  2380. "psr/container-implementation": "^1.0"
  2381. },
  2382. "require-dev": {
  2383. "friendsofphp/php-cs-fixer": "^3",
  2384. "friendsofphp/proxy-manager-lts": "^1",
  2385. "mnapoli/phpunit-easymock": "^1.3",
  2386. "phpunit/phpunit": "^9.6 || ^10 || ^11",
  2387. "vimeo/psalm": "^5|^6"
  2388. },
  2389. "suggest": {
  2390. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  2391. },
  2392. "type": "library",
  2393. "autoload": {
  2394. "files": [
  2395. "src/functions.php"
  2396. ],
  2397. "psr-4": {
  2398. "DI\\": "src/"
  2399. }
  2400. },
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "description": "The dependency injection container for humans",
  2405. "homepage": "https://php-di.org/",
  2406. "keywords": [
  2407. "PSR-11",
  2408. "container",
  2409. "container-interop",
  2410. "dependency injection",
  2411. "di",
  2412. "ioc",
  2413. "psr11"
  2414. ],
  2415. "support": {
  2416. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  2417. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.1.1"
  2418. },
  2419. "time": "2025-08-16T11:10:48+00:00"
  2420. },
  2421. {
  2422. "name": "phpoffice/phpspreadsheet",
  2423. "version": "5.9.0",
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpoffice/phpspreadsheet/5.9.0/phpoffice-phpspreadsheet-5.9.0.zip",
  2427. "reference": "05e99ebf61238a70227b4d9cc02d0030d34f6339",
  2428. "shasum": ""
  2429. },
  2430. "require": {
  2431. "composer/pcre": "^1||^2||^3",
  2432. "ext-ctype": "*",
  2433. "ext-dom": "*",
  2434. "ext-fileinfo": "*",
  2435. "ext-filter": "*",
  2436. "ext-gd": "*",
  2437. "ext-iconv": "*",
  2438. "ext-libxml": "*",
  2439. "ext-mbstring": "*",
  2440. "ext-simplexml": "*",
  2441. "ext-xml": "*",
  2442. "ext-xmlreader": "*",
  2443. "ext-xmlwriter": "*",
  2444. "ext-zip": "*",
  2445. "ext-zlib": "*",
  2446. "maennchen/zipstream-php": "^2.1 || ^3.0",
  2447. "markbaker/complex": "^3.0",
  2448. "markbaker/matrix": "^3.0",
  2449. "php": "^8.2",
  2450. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  2451. },
  2452. "require-dev": {
  2453. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  2454. "dompdf/dompdf": "^2.0 || ^3.0",
  2455. "ext-intl": "*",
  2456. "friendsofphp/php-cs-fixer": "^3.2",
  2457. "mitoteam/jpgraph": "^10.5",
  2458. "mpdf/mpdf": "^8.1.1",
  2459. "phpcompatibility/php-compatibility": "^9.3",
  2460. "phpstan/phpstan": "^1.1 || ^2.0",
  2461. "phpstan/phpstan-deprecation-rules": "^1.0 || ^2.0",
  2462. "phpstan/phpstan-phpunit": "^1.0 || ^2.0",
  2463. "phpunit/phpunit": "^10.5 || ^11.0",
  2464. "squizlabs/php_codesniffer": "^3.7",
  2465. "tecnickcom/tcpdf": "^6.5"
  2466. },
  2467. "suggest": {
  2468. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2469. "ext-intl": "PHP Internationalization Functions, required for NumberFormat Wizard and StringHelper::setLocale()",
  2470. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2471. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2472. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2473. },
  2474. "type": "library",
  2475. "autoload": {
  2476. "psr-4": {
  2477. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2478. }
  2479. },
  2480. "license": [
  2481. "MIT"
  2482. ],
  2483. "authors": [
  2484. {
  2485. "name": "Maarten Balliauw",
  2486. "homepage": "https://blog.maartenballiauw.be"
  2487. },
  2488. {
  2489. "name": "Mark Baker",
  2490. "homepage": "https://markbakeruk.net"
  2491. },
  2492. {
  2493. "name": "Franck Lefevre",
  2494. "homepage": "https://rootslabs.net"
  2495. },
  2496. {
  2497. "name": "Erik Tilt"
  2498. },
  2499. {
  2500. "name": "Adrien Crivelli"
  2501. },
  2502. {
  2503. "name": "Owen Leibman"
  2504. }
  2505. ],
  2506. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2507. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2508. "keywords": [
  2509. "OpenXML",
  2510. "excel",
  2511. "gnumeric",
  2512. "ods",
  2513. "php",
  2514. "spreadsheet",
  2515. "xls",
  2516. "xlsx"
  2517. ],
  2518. "support": {
  2519. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2520. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/5.9.0"
  2521. },
  2522. "time": "2026-07-12T19:17:39+00:00"
  2523. },
  2524. {
  2525. "name": "phpoption/phpoption",
  2526. "version": "1.9.5",
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpoption/phpoption/1.9.5/phpoption-phpoption-1.9.5.zip",
  2530. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "php": "^7.2.5 || ^8.0"
  2535. },
  2536. "require-dev": {
  2537. "bamarni/composer-bin-plugin": "^1.8.2",
  2538. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  2539. },
  2540. "type": "library",
  2541. "extra": {
  2542. "bamarni-bin": {
  2543. "bin-links": true,
  2544. "forward-command": false
  2545. },
  2546. "branch-alias": {
  2547. "dev-master": "1.9-dev"
  2548. }
  2549. },
  2550. "autoload": {
  2551. "psr-4": {
  2552. "PhpOption\\": "src/PhpOption/"
  2553. }
  2554. },
  2555. "license": [
  2556. "Apache-2.0"
  2557. ],
  2558. "authors": [
  2559. {
  2560. "name": "Johannes M. Schmitt",
  2561. "email": "schmittjoh@gmail.com",
  2562. "homepage": "https://github.com/schmittjoh"
  2563. },
  2564. {
  2565. "name": "Graham Campbell",
  2566. "email": "hello@gjcampbell.co.uk",
  2567. "homepage": "https://github.com/GrahamCampbell"
  2568. }
  2569. ],
  2570. "description": "Option Type for PHP",
  2571. "keywords": [
  2572. "language",
  2573. "option",
  2574. "php",
  2575. "type"
  2576. ],
  2577. "support": {
  2578. "issues": "https://github.com/schmittjoh/php-option/issues",
  2579. "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
  2580. },
  2581. "time": "2025-12-27T19:41:33+00:00"
  2582. },
  2583. {
  2584. "name": "psr/cache",
  2585. "version": "3.0.0",
  2586. "dist": {
  2587. "type": "zip",
  2588. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/cache/3.0.0/psr-cache-3.0.0.zip",
  2589. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2590. "shasum": ""
  2591. },
  2592. "require": {
  2593. "php": ">=8.0.0"
  2594. },
  2595. "type": "library",
  2596. "extra": {
  2597. "branch-alias": {
  2598. "dev-master": "1.0.x-dev"
  2599. }
  2600. },
  2601. "autoload": {
  2602. "psr-4": {
  2603. "Psr\\Cache\\": "src/"
  2604. }
  2605. },
  2606. "license": [
  2607. "MIT"
  2608. ],
  2609. "authors": [
  2610. {
  2611. "name": "PHP-FIG",
  2612. "homepage": "https://www.php-fig.org/"
  2613. }
  2614. ],
  2615. "description": "Common interface for caching libraries",
  2616. "keywords": [
  2617. "cache",
  2618. "psr",
  2619. "psr-6"
  2620. ],
  2621. "support": {
  2622. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2623. },
  2624. "time": "2021-02-03T23:26:27+00:00"
  2625. },
  2626. {
  2627. "name": "psr/clock",
  2628. "version": "1.0.0",
  2629. "dist": {
  2630. "type": "zip",
  2631. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/clock/1.0.0/psr-clock-1.0.0.zip",
  2632. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2633. "shasum": ""
  2634. },
  2635. "require": {
  2636. "php": "^7.0 || ^8.0"
  2637. },
  2638. "type": "library",
  2639. "autoload": {
  2640. "psr-4": {
  2641. "Psr\\Clock\\": "src/"
  2642. }
  2643. },
  2644. "license": [
  2645. "MIT"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "PHP-FIG",
  2650. "homepage": "https://www.php-fig.org/"
  2651. }
  2652. ],
  2653. "description": "Common interface for reading the clock.",
  2654. "homepage": "https://github.com/php-fig/clock",
  2655. "keywords": [
  2656. "clock",
  2657. "now",
  2658. "psr",
  2659. "psr-20",
  2660. "time"
  2661. ],
  2662. "support": {
  2663. "issues": "https://github.com/php-fig/clock/issues",
  2664. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2665. },
  2666. "time": "2022-11-25T14:36:26+00:00"
  2667. },
  2668. {
  2669. "name": "psr/container",
  2670. "version": "2.0.2",
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip",
  2674. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2675. "shasum": ""
  2676. },
  2677. "require": {
  2678. "php": ">=7.4.0"
  2679. },
  2680. "type": "library",
  2681. "extra": {
  2682. "branch-alias": {
  2683. "dev-master": "2.0.x-dev"
  2684. }
  2685. },
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Psr\\Container\\": "src/"
  2689. }
  2690. },
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "PHP-FIG",
  2697. "homepage": "https://www.php-fig.org/"
  2698. }
  2699. ],
  2700. "description": "Common Container Interface (PHP FIG PSR-11)",
  2701. "homepage": "https://github.com/php-fig/container",
  2702. "keywords": [
  2703. "PSR-11",
  2704. "container",
  2705. "container-interface",
  2706. "container-interop",
  2707. "psr"
  2708. ],
  2709. "support": {
  2710. "issues": "https://github.com/php-fig/container/issues",
  2711. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2712. },
  2713. "time": "2021-11-05T16:47:00+00:00"
  2714. },
  2715. {
  2716. "name": "psr/http-client",
  2717. "version": "1.0.3",
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-client/1.0.3/psr-http-client-1.0.3.zip",
  2721. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": "^7.0 || ^8.0",
  2726. "psr/http-message": "^1.0 || ^2.0"
  2727. },
  2728. "type": "library",
  2729. "extra": {
  2730. "branch-alias": {
  2731. "dev-master": "1.0.x-dev"
  2732. }
  2733. },
  2734. "autoload": {
  2735. "psr-4": {
  2736. "Psr\\Http\\Client\\": "src/"
  2737. }
  2738. },
  2739. "license": [
  2740. "MIT"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "PHP-FIG",
  2745. "homepage": "https://www.php-fig.org/"
  2746. }
  2747. ],
  2748. "description": "Common interface for HTTP clients",
  2749. "homepage": "https://github.com/php-fig/http-client",
  2750. "keywords": [
  2751. "http",
  2752. "http-client",
  2753. "psr",
  2754. "psr-18"
  2755. ],
  2756. "support": {
  2757. "source": "https://github.com/php-fig/http-client"
  2758. },
  2759. "time": "2023-09-23T14:17:50+00:00"
  2760. },
  2761. {
  2762. "name": "psr/http-factory",
  2763. "version": "1.1.0",
  2764. "dist": {
  2765. "type": "zip",
  2766. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-factory/1.1.0/psr-http-factory-1.1.0.zip",
  2767. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2768. "shasum": ""
  2769. },
  2770. "require": {
  2771. "php": ">=7.1",
  2772. "psr/http-message": "^1.0 || ^2.0"
  2773. },
  2774. "type": "library",
  2775. "extra": {
  2776. "branch-alias": {
  2777. "dev-master": "1.0.x-dev"
  2778. }
  2779. },
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Psr\\Http\\Message\\": "src/"
  2783. }
  2784. },
  2785. "license": [
  2786. "MIT"
  2787. ],
  2788. "authors": [
  2789. {
  2790. "name": "PHP-FIG",
  2791. "homepage": "https://www.php-fig.org/"
  2792. }
  2793. ],
  2794. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2795. "keywords": [
  2796. "factory",
  2797. "http",
  2798. "message",
  2799. "psr",
  2800. "psr-17",
  2801. "psr-7",
  2802. "request",
  2803. "response"
  2804. ],
  2805. "support": {
  2806. "source": "https://github.com/php-fig/http-factory"
  2807. },
  2808. "time": "2024-04-15T12:06:14+00:00"
  2809. },
  2810. {
  2811. "name": "psr/http-message",
  2812. "version": "2.0",
  2813. "dist": {
  2814. "type": "zip",
  2815. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-message/2.0/psr-http-message-2.0.zip",
  2816. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2817. "shasum": ""
  2818. },
  2819. "require": {
  2820. "php": "^7.2 || ^8.0"
  2821. },
  2822. "type": "library",
  2823. "extra": {
  2824. "branch-alias": {
  2825. "dev-master": "2.0.x-dev"
  2826. }
  2827. },
  2828. "autoload": {
  2829. "psr-4": {
  2830. "Psr\\Http\\Message\\": "src/"
  2831. }
  2832. },
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "PHP-FIG",
  2839. "homepage": "https://www.php-fig.org/"
  2840. }
  2841. ],
  2842. "description": "Common interface for HTTP messages",
  2843. "homepage": "https://github.com/php-fig/http-message",
  2844. "keywords": [
  2845. "http",
  2846. "http-message",
  2847. "psr",
  2848. "psr-7",
  2849. "request",
  2850. "response"
  2851. ],
  2852. "support": {
  2853. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2854. },
  2855. "time": "2023-04-04T09:54:51+00:00"
  2856. },
  2857. {
  2858. "name": "psr/log",
  2859. "version": "3.0.2",
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/log/3.0.2/psr-log-3.0.2.zip",
  2863. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2864. "shasum": ""
  2865. },
  2866. "require": {
  2867. "php": ">=8.0.0"
  2868. },
  2869. "type": "library",
  2870. "extra": {
  2871. "branch-alias": {
  2872. "dev-master": "3.x-dev"
  2873. }
  2874. },
  2875. "autoload": {
  2876. "psr-4": {
  2877. "Psr\\Log\\": "src"
  2878. }
  2879. },
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "authors": [
  2884. {
  2885. "name": "PHP-FIG",
  2886. "homepage": "https://www.php-fig.org/"
  2887. }
  2888. ],
  2889. "description": "Common interface for logging libraries",
  2890. "homepage": "https://github.com/php-fig/log",
  2891. "keywords": [
  2892. "log",
  2893. "psr",
  2894. "psr-3"
  2895. ],
  2896. "support": {
  2897. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2898. },
  2899. "time": "2024-09-11T13:17:53+00:00"
  2900. },
  2901. {
  2902. "name": "psr/simple-cache",
  2903. "version": "3.0.0",
  2904. "dist": {
  2905. "type": "zip",
  2906. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/simple-cache/3.0.0/psr-simple-cache-3.0.0.zip",
  2907. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2908. "shasum": ""
  2909. },
  2910. "require": {
  2911. "php": ">=8.0.0"
  2912. },
  2913. "type": "library",
  2914. "extra": {
  2915. "branch-alias": {
  2916. "dev-master": "3.0.x-dev"
  2917. }
  2918. },
  2919. "autoload": {
  2920. "psr-4": {
  2921. "Psr\\SimpleCache\\": "src/"
  2922. }
  2923. },
  2924. "license": [
  2925. "MIT"
  2926. ],
  2927. "authors": [
  2928. {
  2929. "name": "PHP-FIG",
  2930. "homepage": "https://www.php-fig.org/"
  2931. }
  2932. ],
  2933. "description": "Common interfaces for simple caching",
  2934. "keywords": [
  2935. "cache",
  2936. "caching",
  2937. "psr",
  2938. "psr-16",
  2939. "simple-cache"
  2940. ],
  2941. "support": {
  2942. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  2943. },
  2944. "time": "2021-10-29T13:26:27+00:00"
  2945. },
  2946. {
  2947. "name": "qcloud/cos-sdk-v5",
  2948. "version": "v2.6.16",
  2949. "dist": {
  2950. "type": "zip",
  2951. "url": "https://mirrors.cloud.tencent.com/repository/composer/qcloud/cos-sdk-v5/v2.6.16/qcloud-cos-sdk-v5-v2.6.16.zip",
  2952. "reference": "22366f4b4f7f277e67aa72eea8d1e02a5f9943e2",
  2953. "shasum": ""
  2954. },
  2955. "require": {
  2956. "ext-curl": "*",
  2957. "ext-json": "*",
  2958. "ext-libxml": "*",
  2959. "ext-mbstring": "*",
  2960. "ext-simplexml": "*",
  2961. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  2962. "guzzlehttp/guzzle-services": "^1.1",
  2963. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  2964. "php": ">=5.6"
  2965. },
  2966. "type": "library",
  2967. "extra": {
  2968. "branch-alias": {
  2969. "dev-master": "2.4-dev"
  2970. }
  2971. },
  2972. "autoload": {
  2973. "files": [
  2974. "src/Common.php"
  2975. ],
  2976. "psr-4": {
  2977. "Qcloud\\Cos\\": "src/"
  2978. }
  2979. },
  2980. "license": [
  2981. "MIT"
  2982. ],
  2983. "authors": [
  2984. {
  2985. "name": "yaozongyou",
  2986. "email": "yaozongyou@vip.qq.com"
  2987. },
  2988. {
  2989. "name": "lewzylu",
  2990. "email": "327874225@qq.com"
  2991. },
  2992. {
  2993. "name": "tuunalai",
  2994. "email": "550566181@qq.com"
  2995. }
  2996. ],
  2997. "description": "PHP SDK for QCloud COS",
  2998. "keywords": [
  2999. "cos",
  3000. "php",
  3001. "qcloud"
  3002. ],
  3003. "support": {
  3004. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  3005. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.6.16"
  3006. },
  3007. "time": "2025-01-21T12:49:21+00:00"
  3008. },
  3009. {
  3010. "name": "ralouphie/getallheaders",
  3011. "version": "3.0.3",
  3012. "dist": {
  3013. "type": "zip",
  3014. "url": "https://mirrors.cloud.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  3015. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3016. "shasum": ""
  3017. },
  3018. "require": {
  3019. "php": ">=5.6"
  3020. },
  3021. "require-dev": {
  3022. "php-coveralls/php-coveralls": "^2.1",
  3023. "phpunit/phpunit": "^5 || ^6.5"
  3024. },
  3025. "type": "library",
  3026. "autoload": {
  3027. "files": [
  3028. "src/getallheaders.php"
  3029. ]
  3030. },
  3031. "license": [
  3032. "MIT"
  3033. ],
  3034. "authors": [
  3035. {
  3036. "name": "Ralph Khattar",
  3037. "email": "ralph.khattar@gmail.com"
  3038. }
  3039. ],
  3040. "description": "A polyfill for getallheaders.",
  3041. "support": {
  3042. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3043. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3044. },
  3045. "time": "2019-03-08T08:55:37+00:00"
  3046. },
  3047. {
  3048. "name": "shopwwi/webman-auth",
  3049. "version": "v2.0.1",
  3050. "dist": {
  3051. "type": "zip",
  3052. "url": "https://mirrors.cloud.tencent.com/repository/composer/shopwwi/webman-auth/v2.0.1/shopwwi-webman-auth-v2.0.1.zip",
  3053. "reference": "76afe0eb98100d6051284f6b3bc9531d5f04a3dd",
  3054. "shasum": ""
  3055. },
  3056. "require": {
  3057. "firebase/php-jwt": ">=5.4|^6.0",
  3058. "php": ">=7.2",
  3059. "webman/console": "^1.0 || ^2.0 || dev-master"
  3060. },
  3061. "type": "library",
  3062. "extra": {
  3063. "branch-alias": {
  3064. "dev-master": "1.x-dev"
  3065. }
  3066. },
  3067. "autoload": {
  3068. "psr-4": {
  3069. "Shopwwi\\WebmanAuth\\": "src/"
  3070. }
  3071. },
  3072. "license": [
  3073. "MIT"
  3074. ],
  3075. "authors": [
  3076. {
  3077. "name": "Tycoon Song",
  3078. "email": "8988354@qq.com"
  3079. }
  3080. ],
  3081. "description": "webman auth",
  3082. "keywords": [
  3083. "auth",
  3084. "webman"
  3085. ],
  3086. "support": {
  3087. "issues": "https://github.com/shopwwi/webman-auth/issues",
  3088. "source": "https://github.com/shopwwi/webman-auth/tree/v2.0.1"
  3089. },
  3090. "time": "2026-05-26T07:51:05+00:00"
  3091. },
  3092. {
  3093. "name": "symfony/cache",
  3094. "version": "v7.3.11",
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/cache/v7.3.11/symfony-cache-v7.3.11.zip",
  3098. "reference": "e3e76b9ba0dff3dfe08ebda500723976dd9de407",
  3099. "shasum": ""
  3100. },
  3101. "require": {
  3102. "php": ">=8.2",
  3103. "psr/cache": "^2.0|^3.0",
  3104. "psr/log": "^1.1|^2|^3",
  3105. "symfony/cache-contracts": "^3.6",
  3106. "symfony/deprecation-contracts": "^2.5|^3.0",
  3107. "symfony/service-contracts": "^2.5|^3",
  3108. "symfony/var-exporter": "^6.4|^7.0"
  3109. },
  3110. "conflict": {
  3111. "doctrine/dbal": "<3.6",
  3112. "symfony/dependency-injection": "<6.4",
  3113. "symfony/http-kernel": "<6.4",
  3114. "symfony/var-dumper": "<6.4"
  3115. },
  3116. "provide": {
  3117. "psr/cache-implementation": "2.0|3.0",
  3118. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3119. "symfony/cache-implementation": "1.1|2.0|3.0"
  3120. },
  3121. "require-dev": {
  3122. "cache/integration-tests": "dev-master",
  3123. "doctrine/dbal": "^3.6|^4",
  3124. "predis/predis": "^1.1|^2.0",
  3125. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3126. "symfony/clock": "^6.4|^7.0",
  3127. "symfony/config": "^6.4|^7.0",
  3128. "symfony/dependency-injection": "^6.4|^7.0",
  3129. "symfony/filesystem": "^6.4|^7.0",
  3130. "symfony/http-kernel": "^6.4|^7.0",
  3131. "symfony/messenger": "^6.4|^7.0",
  3132. "symfony/var-dumper": "^6.4|^7.0"
  3133. },
  3134. "type": "library",
  3135. "autoload": {
  3136. "psr-4": {
  3137. "Symfony\\Component\\Cache\\": ""
  3138. },
  3139. "classmap": [
  3140. "Traits/ValueWrapper.php"
  3141. ],
  3142. "exclude-from-classmap": [
  3143. "/Tests/"
  3144. ]
  3145. },
  3146. "license": [
  3147. "MIT"
  3148. ],
  3149. "authors": [
  3150. {
  3151. "name": "Nicolas Grekas",
  3152. "email": "p@tchwork.com"
  3153. },
  3154. {
  3155. "name": "Symfony Community",
  3156. "homepage": "https://symfony.com/contributors"
  3157. }
  3158. ],
  3159. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3160. "homepage": "https://symfony.com",
  3161. "keywords": [
  3162. "caching",
  3163. "psr6"
  3164. ],
  3165. "support": {
  3166. "source": "https://github.com/symfony/cache/tree/v7.3.11"
  3167. },
  3168. "time": "2026-01-27T16:12:03+00:00"
  3169. },
  3170. {
  3171. "name": "symfony/cache-contracts",
  3172. "version": "v3.7.1",
  3173. "dist": {
  3174. "type": "zip",
  3175. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/cache-contracts/v3.7.1/symfony-cache-contracts-v3.7.1.zip",
  3176. "reference": "9789738bc19af1106dc54d6afba9a0b467516cf2",
  3177. "shasum": ""
  3178. },
  3179. "require": {
  3180. "php": ">=8.1",
  3181. "psr/cache": "^3.0"
  3182. },
  3183. "type": "library",
  3184. "extra": {
  3185. "thanks": {
  3186. "url": "https://github.com/symfony/contracts",
  3187. "name": "symfony/contracts"
  3188. },
  3189. "branch-alias": {
  3190. "dev-main": "3.7-dev"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Symfony\\Contracts\\Cache\\": ""
  3196. }
  3197. },
  3198. "license": [
  3199. "MIT"
  3200. ],
  3201. "authors": [
  3202. {
  3203. "name": "Nicolas Grekas",
  3204. "email": "p@tchwork.com"
  3205. },
  3206. {
  3207. "name": "Symfony Community",
  3208. "homepage": "https://symfony.com/contributors"
  3209. }
  3210. ],
  3211. "description": "Generic abstractions related to caching",
  3212. "homepage": "https://symfony.com",
  3213. "keywords": [
  3214. "abstractions",
  3215. "contracts",
  3216. "decoupling",
  3217. "interfaces",
  3218. "interoperability",
  3219. "standards"
  3220. ],
  3221. "support": {
  3222. "source": "https://github.com/symfony/cache-contracts/tree/v3.7.1"
  3223. },
  3224. "time": "2026-06-05T06:23:12+00:00"
  3225. },
  3226. {
  3227. "name": "symfony/clock",
  3228. "version": "v7.4.8",
  3229. "dist": {
  3230. "type": "zip",
  3231. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/clock/v7.4.8/symfony-clock-v7.4.8.zip",
  3232. "reference": "674fa3b98e21531dd040e613479f5f6fa8f32111",
  3233. "shasum": ""
  3234. },
  3235. "require": {
  3236. "php": ">=8.2",
  3237. "psr/clock": "^1.0",
  3238. "symfony/polyfill-php83": "^1.28"
  3239. },
  3240. "provide": {
  3241. "psr/clock-implementation": "1.0"
  3242. },
  3243. "type": "library",
  3244. "autoload": {
  3245. "files": [
  3246. "Resources/now.php"
  3247. ],
  3248. "psr-4": {
  3249. "Symfony\\Component\\Clock\\": ""
  3250. },
  3251. "exclude-from-classmap": [
  3252. "/Tests/"
  3253. ]
  3254. },
  3255. "license": [
  3256. "MIT"
  3257. ],
  3258. "authors": [
  3259. {
  3260. "name": "Nicolas Grekas",
  3261. "email": "p@tchwork.com"
  3262. },
  3263. {
  3264. "name": "Symfony Community",
  3265. "homepage": "https://symfony.com/contributors"
  3266. }
  3267. ],
  3268. "description": "Decouples applications from the system clock",
  3269. "homepage": "https://symfony.com",
  3270. "keywords": [
  3271. "clock",
  3272. "psr20",
  3273. "time"
  3274. ],
  3275. "support": {
  3276. "source": "https://github.com/symfony/clock/tree/v7.4.8"
  3277. },
  3278. "time": "2026-03-24T13:12:05+00:00"
  3279. },
  3280. {
  3281. "name": "symfony/console",
  3282. "version": "v7.4.14",
  3283. "dist": {
  3284. "type": "zip",
  3285. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/console/v7.4.14/symfony-console-v7.4.14.zip",
  3286. "reference": "92f58bc4bf97a92ed1b9f367f0cd44f20bde0e87",
  3287. "shasum": ""
  3288. },
  3289. "require": {
  3290. "php": ">=8.2",
  3291. "symfony/deprecation-contracts": "^2.5|^3",
  3292. "symfony/polyfill-mbstring": "~1.0",
  3293. "symfony/service-contracts": "^2.5|^3",
  3294. "symfony/string": "^7.2|^8.0"
  3295. },
  3296. "conflict": {
  3297. "symfony/dependency-injection": "<6.4",
  3298. "symfony/dotenv": "<6.4",
  3299. "symfony/event-dispatcher": "<6.4",
  3300. "symfony/lock": "<6.4",
  3301. "symfony/process": "<6.4"
  3302. },
  3303. "provide": {
  3304. "psr/log-implementation": "1.0|2.0|3.0"
  3305. },
  3306. "require-dev": {
  3307. "psr/log": "^1|^2|^3",
  3308. "symfony/config": "^6.4|^7.0|^8.0",
  3309. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3310. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  3311. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  3312. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3313. "symfony/lock": "^6.4|^7.0|^8.0",
  3314. "symfony/messenger": "^6.4|^7.0|^8.0",
  3315. "symfony/process": "^6.4|^7.0|^8.0",
  3316. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  3317. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  3318. },
  3319. "type": "library",
  3320. "autoload": {
  3321. "psr-4": {
  3322. "Symfony\\Component\\Console\\": ""
  3323. },
  3324. "exclude-from-classmap": [
  3325. "/Tests/"
  3326. ]
  3327. },
  3328. "license": [
  3329. "MIT"
  3330. ],
  3331. "authors": [
  3332. {
  3333. "name": "Fabien Potencier",
  3334. "email": "fabien@symfony.com"
  3335. },
  3336. {
  3337. "name": "Symfony Community",
  3338. "homepage": "https://symfony.com/contributors"
  3339. }
  3340. ],
  3341. "description": "Eases the creation of beautiful and testable command line interfaces",
  3342. "homepage": "https://symfony.com",
  3343. "keywords": [
  3344. "cli",
  3345. "command-line",
  3346. "console",
  3347. "terminal"
  3348. ],
  3349. "support": {
  3350. "source": "https://github.com/symfony/console/tree/v7.4.14"
  3351. },
  3352. "time": "2026-06-16T11:50:14+00:00"
  3353. },
  3354. {
  3355. "name": "symfony/deprecation-contracts",
  3356. "version": "v3.7.1",
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/deprecation-contracts/v3.7.1/symfony-deprecation-contracts-v3.7.1.zip",
  3360. "reference": "f3202fa1b5097b0af062dc978b32ecf63404e31d",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=8.1"
  3365. },
  3366. "type": "library",
  3367. "extra": {
  3368. "thanks": {
  3369. "url": "https://github.com/symfony/contracts",
  3370. "name": "symfony/contracts"
  3371. },
  3372. "branch-alias": {
  3373. "dev-main": "3.7-dev"
  3374. }
  3375. },
  3376. "autoload": {
  3377. "files": [
  3378. "function.php"
  3379. ]
  3380. },
  3381. "license": [
  3382. "MIT"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Nicolas Grekas",
  3387. "email": "p@tchwork.com"
  3388. },
  3389. {
  3390. "name": "Symfony Community",
  3391. "homepage": "https://symfony.com/contributors"
  3392. }
  3393. ],
  3394. "description": "A generic function and convention to trigger deprecation notices",
  3395. "homepage": "https://symfony.com",
  3396. "support": {
  3397. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.1"
  3398. },
  3399. "time": "2026-06-05T06:23:12+00:00"
  3400. },
  3401. {
  3402. "name": "symfony/finder",
  3403. "version": "v7.4.14",
  3404. "dist": {
  3405. "type": "zip",
  3406. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/finder/v7.4.14/symfony-finder-v7.4.14.zip",
  3407. "reference": "13b38720174286f55d1761152b575a8d1436fc25",
  3408. "shasum": ""
  3409. },
  3410. "require": {
  3411. "php": ">=8.2"
  3412. },
  3413. "require-dev": {
  3414. "symfony/filesystem": "^6.4|^7.0|^8.0"
  3415. },
  3416. "type": "library",
  3417. "autoload": {
  3418. "psr-4": {
  3419. "Symfony\\Component\\Finder\\": ""
  3420. },
  3421. "exclude-from-classmap": [
  3422. "/Tests/"
  3423. ]
  3424. },
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Fabien Potencier",
  3431. "email": "fabien@symfony.com"
  3432. },
  3433. {
  3434. "name": "Symfony Community",
  3435. "homepage": "https://symfony.com/contributors"
  3436. }
  3437. ],
  3438. "description": "Finds files and directories via an intuitive fluent interface",
  3439. "homepage": "https://symfony.com",
  3440. "support": {
  3441. "source": "https://github.com/symfony/finder/tree/v7.4.14"
  3442. },
  3443. "time": "2026-06-27T08:31:18+00:00"
  3444. },
  3445. {
  3446. "name": "symfony/http-foundation",
  3447. "version": "v7.4.14",
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-foundation/v7.4.14/symfony-http-foundation-v7.4.14.zip",
  3451. "reference": "06db5ae1552177bf8572f8908839f12e3c06aed3",
  3452. "shasum": ""
  3453. },
  3454. "require": {
  3455. "php": ">=8.2",
  3456. "symfony/deprecation-contracts": "^2.5|^3",
  3457. "symfony/polyfill-mbstring": "^1.1"
  3458. },
  3459. "conflict": {
  3460. "doctrine/dbal": "<3.6",
  3461. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  3462. },
  3463. "require-dev": {
  3464. "doctrine/dbal": "^3.6|^4",
  3465. "predis/predis": "^1.1|^2.0",
  3466. "symfony/cache": "^6.4.12|^7.1.5|^8.0",
  3467. "symfony/clock": "^6.4|^7.0|^8.0",
  3468. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3469. "symfony/expression-language": "^6.4|^7.0|^8.0",
  3470. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  3471. "symfony/mime": "^6.4|^7.0|^8.0",
  3472. "symfony/rate-limiter": "^6.4|^7.0|^8.0"
  3473. },
  3474. "type": "library",
  3475. "autoload": {
  3476. "psr-4": {
  3477. "Symfony\\Component\\HttpFoundation\\": ""
  3478. },
  3479. "exclude-from-classmap": [
  3480. "/Tests/"
  3481. ]
  3482. },
  3483. "license": [
  3484. "MIT"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "Fabien Potencier",
  3489. "email": "fabien@symfony.com"
  3490. },
  3491. {
  3492. "name": "Symfony Community",
  3493. "homepage": "https://symfony.com/contributors"
  3494. }
  3495. ],
  3496. "description": "Defines an object-oriented layer for the HTTP specification",
  3497. "homepage": "https://symfony.com",
  3498. "support": {
  3499. "source": "https://github.com/symfony/http-foundation/tree/v7.4.14"
  3500. },
  3501. "time": "2026-06-11T07:31:44+00:00"
  3502. },
  3503. {
  3504. "name": "symfony/mime",
  3505. "version": "v7.4.13",
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/mime/v7.4.13/symfony-mime-v7.4.13.zip",
  3509. "reference": "a845722765c4f6b2ce88beaf4f4479975b186770",
  3510. "shasum": ""
  3511. },
  3512. "require": {
  3513. "php": ">=8.2",
  3514. "symfony/deprecation-contracts": "^2.5|^3",
  3515. "symfony/polyfill-intl-idn": "^1.10",
  3516. "symfony/polyfill-mbstring": "^1.0"
  3517. },
  3518. "conflict": {
  3519. "egulias/email-validator": "~3.0.0",
  3520. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  3521. "phpdocumentor/type-resolver": "<1.5.1",
  3522. "symfony/mailer": "<6.4",
  3523. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  3524. },
  3525. "require-dev": {
  3526. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3527. "league/html-to-markdown": "^5.0",
  3528. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  3529. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  3530. "symfony/process": "^6.4|^7.0|^8.0",
  3531. "symfony/property-access": "^6.4|^7.0|^8.0",
  3532. "symfony/property-info": "^6.4|^7.0|^8.0",
  3533. "symfony/serializer": "^6.4.3|^7.0.3|^8.0"
  3534. },
  3535. "type": "library",
  3536. "autoload": {
  3537. "psr-4": {
  3538. "Symfony\\Component\\Mime\\": ""
  3539. },
  3540. "exclude-from-classmap": [
  3541. "/Tests/"
  3542. ]
  3543. },
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Fabien Potencier",
  3550. "email": "fabien@symfony.com"
  3551. },
  3552. {
  3553. "name": "Symfony Community",
  3554. "homepage": "https://symfony.com/contributors"
  3555. }
  3556. ],
  3557. "description": "Allows manipulating MIME messages",
  3558. "homepage": "https://symfony.com",
  3559. "keywords": [
  3560. "mime",
  3561. "mime-type"
  3562. ],
  3563. "support": {
  3564. "source": "https://github.com/symfony/mime/tree/v7.4.13"
  3565. },
  3566. "time": "2026-05-23T16:22:37+00:00"
  3567. },
  3568. {
  3569. "name": "symfony/polyfill-ctype",
  3570. "version": "v1.37.0",
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-ctype/v1.37.0/symfony-polyfill-ctype-v1.37.0.zip",
  3574. "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
  3575. "shasum": ""
  3576. },
  3577. "require": {
  3578. "php": ">=7.2"
  3579. },
  3580. "provide": {
  3581. "ext-ctype": "*"
  3582. },
  3583. "suggest": {
  3584. "ext-ctype": "For best performance"
  3585. },
  3586. "type": "library",
  3587. "extra": {
  3588. "thanks": {
  3589. "url": "https://github.com/symfony/polyfill",
  3590. "name": "symfony/polyfill"
  3591. }
  3592. },
  3593. "autoload": {
  3594. "files": [
  3595. "bootstrap.php"
  3596. ],
  3597. "psr-4": {
  3598. "Symfony\\Polyfill\\Ctype\\": ""
  3599. }
  3600. },
  3601. "license": [
  3602. "MIT"
  3603. ],
  3604. "authors": [
  3605. {
  3606. "name": "Gert de Pagter",
  3607. "email": "BackEndTea@gmail.com"
  3608. },
  3609. {
  3610. "name": "Symfony Community",
  3611. "homepage": "https://symfony.com/contributors"
  3612. }
  3613. ],
  3614. "description": "Symfony polyfill for ctype functions",
  3615. "homepage": "https://symfony.com",
  3616. "keywords": [
  3617. "compatibility",
  3618. "ctype",
  3619. "polyfill",
  3620. "portable"
  3621. ],
  3622. "support": {
  3623. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
  3624. },
  3625. "time": "2026-04-10T16:19:22+00:00"
  3626. },
  3627. {
  3628. "name": "symfony/polyfill-intl-grapheme",
  3629. "version": "v1.38.1",
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-grapheme/v1.38.1/symfony-polyfill-intl-grapheme-v1.38.1.zip",
  3633. "reference": "e9247d281d694a5120554d9afaf54e070e88a603",
  3634. "shasum": ""
  3635. },
  3636. "require": {
  3637. "php": ">=7.2"
  3638. },
  3639. "suggest": {
  3640. "ext-intl": "For best performance"
  3641. },
  3642. "type": "library",
  3643. "extra": {
  3644. "thanks": {
  3645. "url": "https://github.com/symfony/polyfill",
  3646. "name": "symfony/polyfill"
  3647. }
  3648. },
  3649. "autoload": {
  3650. "files": [
  3651. "bootstrap.php"
  3652. ],
  3653. "psr-4": {
  3654. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3655. }
  3656. },
  3657. "license": [
  3658. "MIT"
  3659. ],
  3660. "authors": [
  3661. {
  3662. "name": "Nicolas Grekas",
  3663. "email": "p@tchwork.com"
  3664. },
  3665. {
  3666. "name": "Symfony Community",
  3667. "homepage": "https://symfony.com/contributors"
  3668. }
  3669. ],
  3670. "description": "Symfony polyfill for intl's grapheme_* functions",
  3671. "homepage": "https://symfony.com",
  3672. "keywords": [
  3673. "compatibility",
  3674. "grapheme",
  3675. "intl",
  3676. "polyfill",
  3677. "portable",
  3678. "shim"
  3679. ],
  3680. "support": {
  3681. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.38.1"
  3682. },
  3683. "time": "2026-05-26T05:58:03+00:00"
  3684. },
  3685. {
  3686. "name": "symfony/polyfill-intl-idn",
  3687. "version": "v1.38.1",
  3688. "dist": {
  3689. "type": "zip",
  3690. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-idn/v1.38.1/symfony-polyfill-intl-idn-v1.38.1.zip",
  3691. "reference": "dc21118016c039a66235cf93d96b435ffb282412",
  3692. "shasum": ""
  3693. },
  3694. "require": {
  3695. "php": ">=7.2",
  3696. "symfony/polyfill-intl-normalizer": "^1.10"
  3697. },
  3698. "suggest": {
  3699. "ext-intl": "For best performance"
  3700. },
  3701. "type": "library",
  3702. "extra": {
  3703. "thanks": {
  3704. "url": "https://github.com/symfony/polyfill",
  3705. "name": "symfony/polyfill"
  3706. }
  3707. },
  3708. "autoload": {
  3709. "files": [
  3710. "bootstrap.php"
  3711. ],
  3712. "psr-4": {
  3713. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3714. }
  3715. },
  3716. "license": [
  3717. "MIT"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "Laurent Bassin",
  3722. "email": "laurent@bassin.info"
  3723. },
  3724. {
  3725. "name": "Trevor Rowbotham",
  3726. "email": "trevor.rowbotham@pm.me"
  3727. },
  3728. {
  3729. "name": "Symfony Community",
  3730. "homepage": "https://symfony.com/contributors"
  3731. }
  3732. ],
  3733. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3734. "homepage": "https://symfony.com",
  3735. "keywords": [
  3736. "compatibility",
  3737. "idn",
  3738. "intl",
  3739. "polyfill",
  3740. "portable",
  3741. "shim"
  3742. ],
  3743. "support": {
  3744. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.38.1"
  3745. },
  3746. "time": "2026-05-25T15:22:23+00:00"
  3747. },
  3748. {
  3749. "name": "symfony/polyfill-intl-normalizer",
  3750. "version": "v1.38.0",
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-normalizer/v1.38.0/symfony-polyfill-intl-normalizer-v1.38.0.zip",
  3754. "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b",
  3755. "shasum": ""
  3756. },
  3757. "require": {
  3758. "php": ">=7.2"
  3759. },
  3760. "suggest": {
  3761. "ext-intl": "For best performance"
  3762. },
  3763. "type": "library",
  3764. "extra": {
  3765. "thanks": {
  3766. "url": "https://github.com/symfony/polyfill",
  3767. "name": "symfony/polyfill"
  3768. }
  3769. },
  3770. "autoload": {
  3771. "files": [
  3772. "bootstrap.php"
  3773. ],
  3774. "psr-4": {
  3775. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3776. },
  3777. "classmap": [
  3778. "Resources/stubs"
  3779. ]
  3780. },
  3781. "license": [
  3782. "MIT"
  3783. ],
  3784. "authors": [
  3785. {
  3786. "name": "Nicolas Grekas",
  3787. "email": "p@tchwork.com"
  3788. },
  3789. {
  3790. "name": "Symfony Community",
  3791. "homepage": "https://symfony.com/contributors"
  3792. }
  3793. ],
  3794. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3795. "homepage": "https://symfony.com",
  3796. "keywords": [
  3797. "compatibility",
  3798. "intl",
  3799. "normalizer",
  3800. "polyfill",
  3801. "portable",
  3802. "shim"
  3803. ],
  3804. "support": {
  3805. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.38.0"
  3806. },
  3807. "time": "2026-05-25T13:48:31+00:00"
  3808. },
  3809. {
  3810. "name": "symfony/polyfill-mbstring",
  3811. "version": "v1.38.2",
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.38.2/symfony-polyfill-mbstring-v1.38.2.zip",
  3815. "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6",
  3816. "shasum": ""
  3817. },
  3818. "require": {
  3819. "ext-iconv": "*",
  3820. "php": ">=7.2"
  3821. },
  3822. "provide": {
  3823. "ext-mbstring": "*"
  3824. },
  3825. "suggest": {
  3826. "ext-mbstring": "For best performance"
  3827. },
  3828. "type": "library",
  3829. "extra": {
  3830. "thanks": {
  3831. "url": "https://github.com/symfony/polyfill",
  3832. "name": "symfony/polyfill"
  3833. }
  3834. },
  3835. "autoload": {
  3836. "files": [
  3837. "bootstrap.php"
  3838. ],
  3839. "psr-4": {
  3840. "Symfony\\Polyfill\\Mbstring\\": ""
  3841. }
  3842. },
  3843. "license": [
  3844. "MIT"
  3845. ],
  3846. "authors": [
  3847. {
  3848. "name": "Nicolas Grekas",
  3849. "email": "p@tchwork.com"
  3850. },
  3851. {
  3852. "name": "Symfony Community",
  3853. "homepage": "https://symfony.com/contributors"
  3854. }
  3855. ],
  3856. "description": "Symfony polyfill for the Mbstring extension",
  3857. "homepage": "https://symfony.com",
  3858. "keywords": [
  3859. "compatibility",
  3860. "mbstring",
  3861. "polyfill",
  3862. "portable",
  3863. "shim"
  3864. ],
  3865. "support": {
  3866. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.2"
  3867. },
  3868. "time": "2026-05-27T06:59:30+00:00"
  3869. },
  3870. {
  3871. "name": "symfony/polyfill-php80",
  3872. "version": "v1.37.0",
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php80/v1.37.0/symfony-polyfill-php80-v1.37.0.zip",
  3876. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  3877. "shasum": ""
  3878. },
  3879. "require": {
  3880. "php": ">=7.2"
  3881. },
  3882. "type": "library",
  3883. "extra": {
  3884. "thanks": {
  3885. "url": "https://github.com/symfony/polyfill",
  3886. "name": "symfony/polyfill"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "files": [
  3891. "bootstrap.php"
  3892. ],
  3893. "psr-4": {
  3894. "Symfony\\Polyfill\\Php80\\": ""
  3895. },
  3896. "classmap": [
  3897. "Resources/stubs"
  3898. ]
  3899. },
  3900. "license": [
  3901. "MIT"
  3902. ],
  3903. "authors": [
  3904. {
  3905. "name": "Ion Bazan",
  3906. "email": "ion.bazan@gmail.com"
  3907. },
  3908. {
  3909. "name": "Nicolas Grekas",
  3910. "email": "p@tchwork.com"
  3911. },
  3912. {
  3913. "name": "Symfony Community",
  3914. "homepage": "https://symfony.com/contributors"
  3915. }
  3916. ],
  3917. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3918. "homepage": "https://symfony.com",
  3919. "keywords": [
  3920. "compatibility",
  3921. "polyfill",
  3922. "portable",
  3923. "shim"
  3924. ],
  3925. "support": {
  3926. "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
  3927. },
  3928. "time": "2026-04-10T16:19:22+00:00"
  3929. },
  3930. {
  3931. "name": "symfony/polyfill-php83",
  3932. "version": "v1.38.2",
  3933. "dist": {
  3934. "type": "zip",
  3935. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php83/v1.38.2/symfony-polyfill-php83-v1.38.2.zip",
  3936. "reference": "796a26abb75ce49f3a84433cd81bf1009d73d5f8",
  3937. "shasum": ""
  3938. },
  3939. "require": {
  3940. "php": ">=7.2"
  3941. },
  3942. "type": "library",
  3943. "extra": {
  3944. "thanks": {
  3945. "url": "https://github.com/symfony/polyfill",
  3946. "name": "symfony/polyfill"
  3947. }
  3948. },
  3949. "autoload": {
  3950. "files": [
  3951. "bootstrap.php"
  3952. ],
  3953. "psr-4": {
  3954. "Symfony\\Polyfill\\Php83\\": ""
  3955. },
  3956. "classmap": [
  3957. "Resources/stubs"
  3958. ]
  3959. },
  3960. "license": [
  3961. "MIT"
  3962. ],
  3963. "authors": [
  3964. {
  3965. "name": "Nicolas Grekas",
  3966. "email": "p@tchwork.com"
  3967. },
  3968. {
  3969. "name": "Symfony Community",
  3970. "homepage": "https://symfony.com/contributors"
  3971. }
  3972. ],
  3973. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  3974. "homepage": "https://symfony.com",
  3975. "keywords": [
  3976. "compatibility",
  3977. "polyfill",
  3978. "portable",
  3979. "shim"
  3980. ],
  3981. "support": {
  3982. "source": "https://github.com/symfony/polyfill-php83/tree/v1.38.2"
  3983. },
  3984. "time": "2026-05-27T06:51:48+00:00"
  3985. },
  3986. {
  3987. "name": "symfony/polyfill-php84",
  3988. "version": "v1.38.1",
  3989. "dist": {
  3990. "type": "zip",
  3991. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php84/v1.38.1/symfony-polyfill-php84-v1.38.1.zip",
  3992. "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa",
  3993. "shasum": ""
  3994. },
  3995. "require": {
  3996. "php": ">=7.2"
  3997. },
  3998. "type": "library",
  3999. "extra": {
  4000. "thanks": {
  4001. "url": "https://github.com/symfony/polyfill",
  4002. "name": "symfony/polyfill"
  4003. }
  4004. },
  4005. "autoload": {
  4006. "files": [
  4007. "bootstrap.php"
  4008. ],
  4009. "psr-4": {
  4010. "Symfony\\Polyfill\\Php84\\": ""
  4011. },
  4012. "classmap": [
  4013. "Resources/stubs"
  4014. ]
  4015. },
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "authors": [
  4020. {
  4021. "name": "Nicolas Grekas",
  4022. "email": "p@tchwork.com"
  4023. },
  4024. {
  4025. "name": "Symfony Community",
  4026. "homepage": "https://symfony.com/contributors"
  4027. }
  4028. ],
  4029. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  4030. "homepage": "https://symfony.com",
  4031. "keywords": [
  4032. "compatibility",
  4033. "polyfill",
  4034. "portable",
  4035. "shim"
  4036. ],
  4037. "support": {
  4038. "source": "https://github.com/symfony/polyfill-php84/tree/v1.38.1"
  4039. },
  4040. "time": "2026-05-26T12:51:13+00:00"
  4041. },
  4042. {
  4043. "name": "symfony/polyfill-php85",
  4044. "version": "v1.38.1",
  4045. "dist": {
  4046. "type": "zip",
  4047. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php85/v1.38.1/symfony-polyfill-php85-v1.38.1.zip",
  4048. "reference": "ba2ba04f3352cfa2dcbbcb90aee13ed967f505b1",
  4049. "shasum": ""
  4050. },
  4051. "require": {
  4052. "php": ">=7.2"
  4053. },
  4054. "type": "library",
  4055. "extra": {
  4056. "thanks": {
  4057. "url": "https://github.com/symfony/polyfill",
  4058. "name": "symfony/polyfill"
  4059. }
  4060. },
  4061. "autoload": {
  4062. "files": [
  4063. "bootstrap.php"
  4064. ],
  4065. "psr-4": {
  4066. "Symfony\\Polyfill\\Php85\\": ""
  4067. },
  4068. "classmap": [
  4069. "Resources/stubs"
  4070. ]
  4071. },
  4072. "license": [
  4073. "MIT"
  4074. ],
  4075. "authors": [
  4076. {
  4077. "name": "Nicolas Grekas",
  4078. "email": "p@tchwork.com"
  4079. },
  4080. {
  4081. "name": "Symfony Community",
  4082. "homepage": "https://symfony.com/contributors"
  4083. }
  4084. ],
  4085. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  4086. "homepage": "https://symfony.com",
  4087. "keywords": [
  4088. "compatibility",
  4089. "polyfill",
  4090. "portable",
  4091. "shim"
  4092. ],
  4093. "support": {
  4094. "source": "https://github.com/symfony/polyfill-php85/tree/v1.38.1"
  4095. },
  4096. "time": "2026-05-26T02:25:22+00:00"
  4097. },
  4098. {
  4099. "name": "symfony/service-contracts",
  4100. "version": "v3.7.1",
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/service-contracts/v3.7.1/symfony-service-contracts-v3.7.1.zip",
  4104. "reference": "c0a284bab1ed8aa0417e3d69250ab437739563a0",
  4105. "shasum": ""
  4106. },
  4107. "require": {
  4108. "php": ">=8.1",
  4109. "psr/container": "^1.1|^2.0",
  4110. "symfony/deprecation-contracts": "^2.5|^3"
  4111. },
  4112. "conflict": {
  4113. "ext-psr": "<1.1|>=2"
  4114. },
  4115. "type": "library",
  4116. "extra": {
  4117. "thanks": {
  4118. "url": "https://github.com/symfony/contracts",
  4119. "name": "symfony/contracts"
  4120. },
  4121. "branch-alias": {
  4122. "dev-main": "3.7-dev"
  4123. }
  4124. },
  4125. "autoload": {
  4126. "psr-4": {
  4127. "Symfony\\Contracts\\Service\\": ""
  4128. },
  4129. "exclude-from-classmap": [
  4130. "/Test/"
  4131. ]
  4132. },
  4133. "license": [
  4134. "MIT"
  4135. ],
  4136. "authors": [
  4137. {
  4138. "name": "Nicolas Grekas",
  4139. "email": "p@tchwork.com"
  4140. },
  4141. {
  4142. "name": "Symfony Community",
  4143. "homepage": "https://symfony.com/contributors"
  4144. }
  4145. ],
  4146. "description": "Generic abstractions related to writing services",
  4147. "homepage": "https://symfony.com",
  4148. "keywords": [
  4149. "abstractions",
  4150. "contracts",
  4151. "decoupling",
  4152. "interfaces",
  4153. "interoperability",
  4154. "standards"
  4155. ],
  4156. "support": {
  4157. "source": "https://github.com/symfony/service-contracts/tree/v3.7.1"
  4158. },
  4159. "time": "2026-06-16T09:55:08+00:00"
  4160. },
  4161. {
  4162. "name": "symfony/string",
  4163. "version": "v7.4.13",
  4164. "dist": {
  4165. "type": "zip",
  4166. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/string/v7.4.13/symfony-string-v7.4.13.zip",
  4167. "reference": "961683010db3b27ec6ebcd7308e6e1ee8fa7ffde",
  4168. "shasum": ""
  4169. },
  4170. "require": {
  4171. "php": ">=8.2",
  4172. "symfony/deprecation-contracts": "^2.5|^3.0",
  4173. "symfony/polyfill-ctype": "~1.8",
  4174. "symfony/polyfill-intl-grapheme": "~1.33",
  4175. "symfony/polyfill-intl-normalizer": "~1.0",
  4176. "symfony/polyfill-mbstring": "~1.0"
  4177. },
  4178. "conflict": {
  4179. "symfony/translation-contracts": "<2.5"
  4180. },
  4181. "require-dev": {
  4182. "symfony/emoji": "^7.1|^8.0",
  4183. "symfony/http-client": "^6.4|^7.0|^8.0",
  4184. "symfony/intl": "^6.4|^7.0|^8.0",
  4185. "symfony/translation-contracts": "^2.5|^3.0",
  4186. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  4187. },
  4188. "type": "library",
  4189. "autoload": {
  4190. "files": [
  4191. "Resources/functions.php"
  4192. ],
  4193. "psr-4": {
  4194. "Symfony\\Component\\String\\": ""
  4195. },
  4196. "exclude-from-classmap": [
  4197. "/Tests/"
  4198. ]
  4199. },
  4200. "license": [
  4201. "MIT"
  4202. ],
  4203. "authors": [
  4204. {
  4205. "name": "Nicolas Grekas",
  4206. "email": "p@tchwork.com"
  4207. },
  4208. {
  4209. "name": "Symfony Community",
  4210. "homepage": "https://symfony.com/contributors"
  4211. }
  4212. ],
  4213. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4214. "homepage": "https://symfony.com",
  4215. "keywords": [
  4216. "grapheme",
  4217. "i18n",
  4218. "string",
  4219. "unicode",
  4220. "utf-8",
  4221. "utf8"
  4222. ],
  4223. "support": {
  4224. "source": "https://github.com/symfony/string/tree/v7.4.13"
  4225. },
  4226. "time": "2026-05-23T15:23:29+00:00"
  4227. },
  4228. {
  4229. "name": "symfony/translation",
  4230. "version": "v7.4.14",
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/translation/v7.4.14/symfony-translation-v7.4.14.zip",
  4234. "reference": "a1af4dacb24eb7ef4f1ca71b94da8ddbce572281",
  4235. "shasum": ""
  4236. },
  4237. "require": {
  4238. "php": ">=8.2",
  4239. "symfony/deprecation-contracts": "^2.5|^3",
  4240. "symfony/polyfill-mbstring": "~1.0",
  4241. "symfony/translation-contracts": "^2.5.3|^3.3"
  4242. },
  4243. "conflict": {
  4244. "nikic/php-parser": "<5.0",
  4245. "symfony/config": "<6.4",
  4246. "symfony/console": "<6.4",
  4247. "symfony/dependency-injection": "<6.4",
  4248. "symfony/http-client-contracts": "<2.5",
  4249. "symfony/http-kernel": "<6.4",
  4250. "symfony/service-contracts": "<2.5",
  4251. "symfony/twig-bundle": "<6.4",
  4252. "symfony/yaml": "<6.4"
  4253. },
  4254. "provide": {
  4255. "symfony/translation-implementation": "2.3|3.0"
  4256. },
  4257. "require-dev": {
  4258. "nikic/php-parser": "^5.0",
  4259. "psr/log": "^1|^2|^3",
  4260. "symfony/config": "^6.4|^7.0|^8.0",
  4261. "symfony/console": "^6.4|^7.0|^8.0",
  4262. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  4263. "symfony/finder": "^6.4|^7.0|^8.0",
  4264. "symfony/http-client-contracts": "^2.5|^3.0",
  4265. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4266. "symfony/intl": "^6.4|^7.0|^8.0",
  4267. "symfony/polyfill-intl-icu": "^1.21",
  4268. "symfony/routing": "^6.4|^7.0|^8.0",
  4269. "symfony/service-contracts": "^2.5|^3",
  4270. "symfony/yaml": "^6.4|^7.0|^8.0"
  4271. },
  4272. "type": "library",
  4273. "autoload": {
  4274. "files": [
  4275. "Resources/functions.php"
  4276. ],
  4277. "psr-4": {
  4278. "Symfony\\Component\\Translation\\": ""
  4279. },
  4280. "exclude-from-classmap": [
  4281. "/Tests/"
  4282. ]
  4283. },
  4284. "license": [
  4285. "MIT"
  4286. ],
  4287. "authors": [
  4288. {
  4289. "name": "Fabien Potencier",
  4290. "email": "fabien@symfony.com"
  4291. },
  4292. {
  4293. "name": "Symfony Community",
  4294. "homepage": "https://symfony.com/contributors"
  4295. }
  4296. ],
  4297. "description": "Provides tools to internationalize your application",
  4298. "homepage": "https://symfony.com",
  4299. "support": {
  4300. "source": "https://github.com/symfony/translation/tree/v7.4.14"
  4301. },
  4302. "time": "2026-06-06T09:33:19+00:00"
  4303. },
  4304. {
  4305. "name": "symfony/translation-contracts",
  4306. "version": "v3.7.1",
  4307. "dist": {
  4308. "type": "zip",
  4309. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/translation-contracts/v3.7.1/symfony-translation-contracts-v3.7.1.zip",
  4310. "reference": "ccb206b98faccc511ebae8e5fad50f2dc0b30621",
  4311. "shasum": ""
  4312. },
  4313. "require": {
  4314. "php": ">=8.1"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "thanks": {
  4319. "url": "https://github.com/symfony/contracts",
  4320. "name": "symfony/contracts"
  4321. },
  4322. "branch-alias": {
  4323. "dev-main": "3.7-dev"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "psr-4": {
  4328. "Symfony\\Contracts\\Translation\\": ""
  4329. },
  4330. "exclude-from-classmap": [
  4331. "/Test/"
  4332. ]
  4333. },
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Nicolas Grekas",
  4340. "email": "p@tchwork.com"
  4341. },
  4342. {
  4343. "name": "Symfony Community",
  4344. "homepage": "https://symfony.com/contributors"
  4345. }
  4346. ],
  4347. "description": "Generic abstractions related to translation",
  4348. "homepage": "https://symfony.com",
  4349. "keywords": [
  4350. "abstractions",
  4351. "contracts",
  4352. "decoupling",
  4353. "interfaces",
  4354. "interoperability",
  4355. "standards"
  4356. ],
  4357. "support": {
  4358. "source": "https://github.com/symfony/translation-contracts/tree/v3.7.1"
  4359. },
  4360. "time": "2026-06-05T06:23:12+00:00"
  4361. },
  4362. {
  4363. "name": "symfony/var-dumper",
  4364. "version": "v7.4.14",
  4365. "dist": {
  4366. "type": "zip",
  4367. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/var-dumper/v7.4.14/symfony-var-dumper-v7.4.14.zip",
  4368. "reference": "9a3a56a4a1e65a5cb4f8d13801fe8ab0a170e358",
  4369. "shasum": ""
  4370. },
  4371. "require": {
  4372. "php": ">=8.2",
  4373. "symfony/deprecation-contracts": "^2.5|^3",
  4374. "symfony/polyfill-mbstring": "~1.0"
  4375. },
  4376. "conflict": {
  4377. "symfony/console": "<6.4"
  4378. },
  4379. "require-dev": {
  4380. "symfony/console": "^6.4|^7.0|^8.0",
  4381. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  4382. "symfony/process": "^6.4|^7.0|^8.0",
  4383. "symfony/uid": "^6.4|^7.0|^8.0",
  4384. "twig/twig": "^3.12"
  4385. },
  4386. "bin": [
  4387. "Resources/bin/var-dump-server"
  4388. ],
  4389. "type": "library",
  4390. "autoload": {
  4391. "files": [
  4392. "Resources/functions/dump.php"
  4393. ],
  4394. "psr-4": {
  4395. "Symfony\\Component\\VarDumper\\": ""
  4396. },
  4397. "exclude-from-classmap": [
  4398. "/Tests/"
  4399. ]
  4400. },
  4401. "license": [
  4402. "MIT"
  4403. ],
  4404. "authors": [
  4405. {
  4406. "name": "Nicolas Grekas",
  4407. "email": "p@tchwork.com"
  4408. },
  4409. {
  4410. "name": "Symfony Community",
  4411. "homepage": "https://symfony.com/contributors"
  4412. }
  4413. ],
  4414. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4415. "homepage": "https://symfony.com",
  4416. "keywords": [
  4417. "debug",
  4418. "dump"
  4419. ],
  4420. "support": {
  4421. "source": "https://github.com/symfony/var-dumper/tree/v7.4.14"
  4422. },
  4423. "time": "2026-06-08T20:24:16+00:00"
  4424. },
  4425. {
  4426. "name": "symfony/var-exporter",
  4427. "version": "v7.4.14",
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/var-exporter/v7.4.14/symfony-var-exporter-v7.4.14.zip",
  4431. "reference": "0118811b1d59f323bf131250b3fb919febfece28",
  4432. "shasum": ""
  4433. },
  4434. "require": {
  4435. "php": ">=8.2",
  4436. "symfony/deprecation-contracts": "^2.5|^3"
  4437. },
  4438. "require-dev": {
  4439. "symfony/property-access": "^6.4|^7.0|^8.0",
  4440. "symfony/serializer": "^6.4|^7.0|^8.0",
  4441. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  4442. },
  4443. "type": "library",
  4444. "autoload": {
  4445. "psr-4": {
  4446. "Symfony\\Component\\VarExporter\\": ""
  4447. },
  4448. "exclude-from-classmap": [
  4449. "/Tests/"
  4450. ]
  4451. },
  4452. "license": [
  4453. "MIT"
  4454. ],
  4455. "authors": [
  4456. {
  4457. "name": "Nicolas Grekas",
  4458. "email": "p@tchwork.com"
  4459. },
  4460. {
  4461. "name": "Symfony Community",
  4462. "homepage": "https://symfony.com/contributors"
  4463. }
  4464. ],
  4465. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4466. "homepage": "https://symfony.com",
  4467. "keywords": [
  4468. "clone",
  4469. "construct",
  4470. "export",
  4471. "hydrate",
  4472. "instantiate",
  4473. "lazy-loading",
  4474. "proxy",
  4475. "serialize"
  4476. ],
  4477. "support": {
  4478. "source": "https://github.com/symfony/var-exporter/tree/v7.4.14"
  4479. },
  4480. "time": "2026-06-27T08:41:53+00:00"
  4481. },
  4482. {
  4483. "name": "tinywan/captcha",
  4484. "version": "v0.0.4",
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://mirrors.cloud.tencent.com/repository/composer/tinywan/captcha/v0.0.4/tinywan-captcha-v0.0.4.zip",
  4488. "reference": "5d24139730f2adcce162366f69d207d39fa89558",
  4489. "shasum": ""
  4490. },
  4491. "require": {
  4492. "ext-gd": "*",
  4493. "ext-mbstring": "*",
  4494. "ext-redis": "*",
  4495. "php": ">=7.2"
  4496. },
  4497. "require-dev": {
  4498. "friendsofphp/php-cs-fixer": "^3.6",
  4499. "phpstan/phpstan": "^1.4",
  4500. "workerman/webman": "^1.0"
  4501. },
  4502. "type": "library",
  4503. "autoload": {
  4504. "psr-4": {
  4505. "Tinywan\\Captcha\\": "src"
  4506. }
  4507. },
  4508. "license": [
  4509. "MIT"
  4510. ],
  4511. "authors": [
  4512. {
  4513. "name": "Tinywan",
  4514. "email": "756684177@qq.com"
  4515. }
  4516. ],
  4517. "description": "base64 image verification captcha library for webman plugin",
  4518. "keywords": [
  4519. "base64",
  4520. "captcha",
  4521. "plugin",
  4522. "webman"
  4523. ],
  4524. "support": {
  4525. "issues": "https://github.com/Tinywan/webman-captcha/issues",
  4526. "source": "https://github.com/Tinywan/webman-captcha/tree/v0.0.4"
  4527. },
  4528. "time": "2022-08-08T13:52:15+00:00"
  4529. },
  4530. {
  4531. "name": "tinywan/storage",
  4532. "version": "v1.1.2",
  4533. "dist": {
  4534. "type": "zip",
  4535. "url": "https://mirrors.cloud.tencent.com/repository/composer/tinywan/storage/v1.1.2/tinywan-storage-v1.1.2.zip",
  4536. "reference": "a39584356829860fd2acab396ded3e6d730c71ae",
  4537. "shasum": ""
  4538. },
  4539. "require": {
  4540. "php": ">=7.2",
  4541. "workerman/webman-framework": "^1.2.1||^2.0"
  4542. },
  4543. "require-dev": {
  4544. "aliyuncs/oss-sdk-php": "^2.4",
  4545. "friendsofphp/php-cs-fixer": "^3.6",
  4546. "league/flysystem-aws-s3-v3": "^1.0",
  4547. "phpstan/phpstan": "^1.4",
  4548. "phpunit/phpunit": "^9.5",
  4549. "qcloud/cos-sdk-v5": "^2.5",
  4550. "qiniu/php-sdk": "^7.4",
  4551. "workerman/webman": "^1.0"
  4552. },
  4553. "type": "library",
  4554. "autoload": {
  4555. "psr-4": {
  4556. "Tinywan\\Storage\\": "src"
  4557. }
  4558. },
  4559. "license": [
  4560. "MIT"
  4561. ],
  4562. "description": "webman storage plugin",
  4563. "support": {
  4564. "issues": "https://github.com/Tinywan/webman-storage/issues",
  4565. "source": "https://github.com/Tinywan/webman-storage/tree/v1.1.2"
  4566. },
  4567. "time": "2025-08-21T02:16:10+00:00"
  4568. },
  4569. {
  4570. "name": "topthink/think-container",
  4571. "version": "v3.0.2",
  4572. "dist": {
  4573. "type": "zip",
  4574. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-container/v3.0.2/topthink-think-container-v3.0.2.zip",
  4575. "reference": "b2df244be1e7399ad4c8be1ccc40ed57868f730a",
  4576. "shasum": ""
  4577. },
  4578. "require": {
  4579. "php": ">=8.0",
  4580. "psr/container": "^2.0",
  4581. "topthink/think-helper": "^3.1"
  4582. },
  4583. "require-dev": {
  4584. "phpunit/phpunit": "^9.5"
  4585. },
  4586. "type": "library",
  4587. "autoload": {
  4588. "files": [],
  4589. "psr-4": {
  4590. "think\\": "src"
  4591. }
  4592. },
  4593. "license": [
  4594. "Apache-2.0"
  4595. ],
  4596. "authors": [
  4597. {
  4598. "name": "liu21st",
  4599. "email": "liu21st@gmail.com"
  4600. }
  4601. ],
  4602. "description": "PHP Container & Facade Manager",
  4603. "support": {
  4604. "issues": "https://github.com/top-think/think-container/issues",
  4605. "source": "https://github.com/top-think/think-container/tree/v3.0.2"
  4606. },
  4607. "time": "2025-04-07T03:21:51+00:00"
  4608. },
  4609. {
  4610. "name": "topthink/think-helper",
  4611. "version": "v3.1.12",
  4612. "dist": {
  4613. "type": "zip",
  4614. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-helper/v3.1.12/topthink-think-helper-v3.1.12.zip",
  4615. "reference": "fe277121112a8f1c872e169a733ca80bb11c4acb",
  4616. "shasum": ""
  4617. },
  4618. "require": {
  4619. "php": ">=7.1.0"
  4620. },
  4621. "require-dev": {
  4622. "phpunit/phpunit": "^9.5"
  4623. },
  4624. "type": "library",
  4625. "autoload": {
  4626. "files": [
  4627. "src/helper.php"
  4628. ],
  4629. "psr-4": {
  4630. "think\\": "src"
  4631. }
  4632. },
  4633. "license": [
  4634. "Apache-2.0"
  4635. ],
  4636. "authors": [
  4637. {
  4638. "name": "yunwuxin",
  4639. "email": "448901948@qq.com"
  4640. }
  4641. ],
  4642. "description": "The ThinkPHP6 Helper Package",
  4643. "support": {
  4644. "issues": "https://github.com/top-think/think-helper/issues",
  4645. "source": "https://github.com/top-think/think-helper/tree/v3.1.12"
  4646. },
  4647. "time": "2025-12-26T09:58:29+00:00"
  4648. },
  4649. {
  4650. "name": "topthink/think-orm",
  4651. "version": "v4.0.51",
  4652. "dist": {
  4653. "type": "zip",
  4654. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-orm/v4.0.51/topthink-think-orm-v4.0.51.zip",
  4655. "reference": "46abe2f824eb3bcb117d4c0ce93b203b592b79f7",
  4656. "shasum": ""
  4657. },
  4658. "require": {
  4659. "ext-json": "*",
  4660. "ext-pdo": "*",
  4661. "php": ">=8.0.0",
  4662. "psr/log": ">=1.0",
  4663. "psr/simple-cache": "^3.0",
  4664. "topthink/think-helper": "^3.1",
  4665. "topthink/think-validate": "^3.0"
  4666. },
  4667. "require-dev": {
  4668. "phpunit/phpunit": "^9.6|^10"
  4669. },
  4670. "suggest": {
  4671. "ext-mongodb": "provide mongodb support"
  4672. },
  4673. "type": "library",
  4674. "autoload": {
  4675. "files": [
  4676. "src/helper.php",
  4677. "stubs/load_stubs.php"
  4678. ],
  4679. "psr-4": {
  4680. "think\\": "src"
  4681. }
  4682. },
  4683. "license": [
  4684. "Apache-2.0"
  4685. ],
  4686. "authors": [
  4687. {
  4688. "name": "liu21st",
  4689. "email": "liu21st@gmail.com"
  4690. }
  4691. ],
  4692. "description": "the PHP Database&ORM Framework",
  4693. "keywords": [
  4694. "database",
  4695. "orm"
  4696. ],
  4697. "support": {
  4698. "issues": "https://github.com/top-think/think-orm/issues",
  4699. "source": "https://github.com/top-think/think-orm/tree/v4.0.51"
  4700. },
  4701. "time": "2025-12-18T13:11:52+00:00"
  4702. },
  4703. {
  4704. "name": "topthink/think-validate",
  4705. "version": "v3.0.7",
  4706. "dist": {
  4707. "type": "zip",
  4708. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-validate/v3.0.7/topthink-think-validate-v3.0.7.zip",
  4709. "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988",
  4710. "shasum": ""
  4711. },
  4712. "require": {
  4713. "php": ">=8.0",
  4714. "topthink/think-container": ">=3.0"
  4715. },
  4716. "type": "library",
  4717. "autoload": {
  4718. "files": [
  4719. "src/helper.php"
  4720. ],
  4721. "psr-4": {
  4722. "think\\": "src"
  4723. }
  4724. },
  4725. "license": [
  4726. "Apache-2.0"
  4727. ],
  4728. "authors": [
  4729. {
  4730. "name": "liu21st",
  4731. "email": "liu21st@gmail.com"
  4732. }
  4733. ],
  4734. "description": "think validate",
  4735. "support": {
  4736. "issues": "https://github.com/top-think/think-validate/issues",
  4737. "source": "https://github.com/top-think/think-validate/tree/v3.0.7"
  4738. },
  4739. "time": "2025-06-11T05:51:40+00:00"
  4740. },
  4741. {
  4742. "name": "vlucas/phpdotenv",
  4743. "version": "v5.6.4",
  4744. "dist": {
  4745. "type": "zip",
  4746. "url": "https://mirrors.cloud.tencent.com/repository/composer/vlucas/phpdotenv/v5.6.4/vlucas-phpdotenv-v5.6.4.zip",
  4747. "reference": "416df702837983f8d5ff48c9c3fee4f5f57b980b",
  4748. "shasum": ""
  4749. },
  4750. "require": {
  4751. "ext-pcre": "*",
  4752. "graham-campbell/result-type": "^1.1.4",
  4753. "php": "^7.2.5 || ^8.0",
  4754. "phpoption/phpoption": "^1.9.5",
  4755. "symfony/polyfill-ctype": "^1.26",
  4756. "symfony/polyfill-mbstring": "^1.26",
  4757. "symfony/polyfill-php80": "^1.26"
  4758. },
  4759. "require-dev": {
  4760. "bamarni/composer-bin-plugin": "^1.8.2",
  4761. "ext-filter": "*",
  4762. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4763. },
  4764. "suggest": {
  4765. "ext-filter": "Required to use the boolean validator."
  4766. },
  4767. "type": "library",
  4768. "extra": {
  4769. "bamarni-bin": {
  4770. "bin-links": true,
  4771. "forward-command": false
  4772. },
  4773. "branch-alias": {
  4774. "dev-master": "5.6-dev"
  4775. }
  4776. },
  4777. "autoload": {
  4778. "psr-4": {
  4779. "Dotenv\\": "src/"
  4780. }
  4781. },
  4782. "license": [
  4783. "BSD-3-Clause"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "Graham Campbell",
  4788. "email": "hello@gjcampbell.co.uk",
  4789. "homepage": "https://github.com/GrahamCampbell"
  4790. },
  4791. {
  4792. "name": "Vance Lucas",
  4793. "email": "vance@vancelucas.com",
  4794. "homepage": "https://github.com/vlucas"
  4795. }
  4796. ],
  4797. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4798. "keywords": [
  4799. "dotenv",
  4800. "env",
  4801. "environment"
  4802. ],
  4803. "support": {
  4804. "issues": "https://github.com/vlucas/phpdotenv/issues",
  4805. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.4"
  4806. },
  4807. "time": "2026-07-06T19:11:50+00:00"
  4808. },
  4809. {
  4810. "name": "voku/portable-ascii",
  4811. "version": "2.1.1",
  4812. "dist": {
  4813. "type": "zip",
  4814. "url": "https://mirrors.cloud.tencent.com/repository/composer/voku/portable-ascii/2.1.1/voku-portable-ascii-2.1.1.zip",
  4815. "reference": "8e1051fe39379367aecf014f41744ce7539a856f",
  4816. "shasum": ""
  4817. },
  4818. "require": {
  4819. "php": ">=7.1.0"
  4820. },
  4821. "require-dev": {
  4822. "phpunit/phpunit": "~8.5 || ~9.6 || ~10.5 || ~11.5"
  4823. },
  4824. "suggest": {
  4825. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4826. },
  4827. "type": "library",
  4828. "autoload": {
  4829. "psr-4": {
  4830. "voku\\": "src/voku/"
  4831. }
  4832. },
  4833. "license": [
  4834. "MIT"
  4835. ],
  4836. "authors": [
  4837. {
  4838. "name": "Lars Moelleken",
  4839. "homepage": "https://www.moelleken.org/"
  4840. }
  4841. ],
  4842. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4843. "homepage": "https://github.com/voku/portable-ascii",
  4844. "keywords": [
  4845. "ascii",
  4846. "clean",
  4847. "php"
  4848. ],
  4849. "support": {
  4850. "issues": "https://github.com/voku/portable-ascii/issues",
  4851. "source": "https://github.com/voku/portable-ascii/tree/2.1.1"
  4852. },
  4853. "time": "2026-04-26T05:33:54+00:00"
  4854. },
  4855. {
  4856. "name": "webman/console",
  4857. "version": "v2.2.3",
  4858. "dist": {
  4859. "type": "zip",
  4860. "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/console/v2.2.3/webman-console-v2.2.3.zip",
  4861. "reference": "df5fffe07efd61d99dacacde9dd41a899ae923c4",
  4862. "shasum": ""
  4863. },
  4864. "require": {
  4865. "doctrine/inflector": "^2.0",
  4866. "php": ">=8.1",
  4867. "symfony/console": "^6.1 || ^7.0"
  4868. },
  4869. "require-dev": {
  4870. "workerman/webman": "^2.1"
  4871. },
  4872. "type": "library",
  4873. "autoload": {
  4874. "psr-4": {
  4875. "Webman\\Console\\": "src"
  4876. }
  4877. },
  4878. "license": [
  4879. "MIT"
  4880. ],
  4881. "authors": [
  4882. {
  4883. "name": "walkor",
  4884. "email": "walkor@workerman.net",
  4885. "homepage": "http://www.workerman.net",
  4886. "role": "Developer"
  4887. }
  4888. ],
  4889. "description": "Webman console",
  4890. "homepage": "http://www.workerman.net",
  4891. "keywords": [
  4892. "webman console"
  4893. ],
  4894. "support": {
  4895. "email": "walkor@workerman.net",
  4896. "forum": "http://www.workerman.net/questions",
  4897. "issues": "https://github.com/webman-php/console/issues",
  4898. "source": "https://github.com/webman-php/console",
  4899. "wiki": "http://www.workerman.net/doc/webman"
  4900. },
  4901. "time": "2026-03-29T08:32:39+00:00"
  4902. },
  4903. {
  4904. "name": "webman/event",
  4905. "version": "v1.0.5",
  4906. "dist": {
  4907. "type": "zip",
  4908. "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/event/v1.0.5/webman-event-v1.0.5.zip",
  4909. "reference": "b1c3f6b70fd290e48288703d59bead0e28f9fb84",
  4910. "shasum": ""
  4911. },
  4912. "type": "library",
  4913. "autoload": {
  4914. "psr-4": {
  4915. "Webman\\Event\\": "src"
  4916. }
  4917. },
  4918. "license": [
  4919. "MIT"
  4920. ],
  4921. "description": "Webman event plugin",
  4922. "support": {
  4923. "issues": "https://github.com/webman-php/event/issues",
  4924. "source": "https://github.com/webman-php/event/tree/v1.0.5"
  4925. },
  4926. "time": "2023-12-04T09:22:12+00:00"
  4927. },
  4928. {
  4929. "name": "webman/redis",
  4930. "version": "v2.1.5",
  4931. "dist": {
  4932. "type": "zip",
  4933. "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/redis/v2.1.5/webman-redis-v2.1.5.zip",
  4934. "reference": "aadc69937217494c9acaa6d6b4fe8bcaa64eb6e6",
  4935. "shasum": ""
  4936. },
  4937. "require": {
  4938. "illuminate/redis": "^10.0 || ^11.0 || ^12.0 || ^13.0",
  4939. "workerman/webman-framework": "^2.1 || dev-master"
  4940. },
  4941. "type": "library",
  4942. "autoload": {
  4943. "psr-4": {
  4944. "support\\": "src/support",
  4945. "Webman\\Redis\\": "src"
  4946. }
  4947. },
  4948. "license": [
  4949. "MIT"
  4950. ],
  4951. "description": "Webman redis",
  4952. "support": {
  4953. "issues": "https://github.com/webman-php/redis/issues",
  4954. "source": "https://github.com/webman-php/redis/tree/v2.1.5"
  4955. },
  4956. "time": "2026-03-25T02:00:19+00:00"
  4957. },
  4958. {
  4959. "name": "webman/redis-queue",
  4960. "version": "v2.1.1",
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/redis-queue/v2.1.1/webman-redis-queue-v2.1.1.zip",
  4964. "reference": "ff4791e21f3c324a47e21da7b6f2dae5a7311dcb",
  4965. "shasum": ""
  4966. },
  4967. "require": {
  4968. "ext-redis": "*",
  4969. "php": ">=8.1",
  4970. "workerman/redis-queue": "^1.2",
  4971. "workerman/webman-framework": "^2.1 || dev-master"
  4972. },
  4973. "type": "library",
  4974. "autoload": {
  4975. "psr-4": {
  4976. "Webman\\RedisQueue\\": "./src"
  4977. }
  4978. },
  4979. "description": "Redis message queue plugin for webman.",
  4980. "support": {
  4981. "issues": "https://github.com/webman-php/redis-queue/issues",
  4982. "source": "https://github.com/webman-php/redis-queue/tree/v2.1.1"
  4983. },
  4984. "time": "2025-11-14T07:12:52+00:00"
  4985. },
  4986. {
  4987. "name": "webman/think-cache",
  4988. "version": "v2.1.6",
  4989. "dist": {
  4990. "type": "zip",
  4991. "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/think-cache/v2.1.6/webman-think-cache-v2.1.6.zip",
  4992. "reference": "936fe91fc5781a44f82262e805c60efbab262718",
  4993. "shasum": ""
  4994. },
  4995. "require": {
  4996. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4997. "topthink/think-container": "^2.0|^3.0",
  4998. "workerman/webman-framework": "^2.1 || dev-master"
  4999. },
  5000. "type": "library",
  5001. "autoload": {
  5002. "psr-4": {
  5003. "support\\": "src/support",
  5004. "Webman\\ThinkCache\\": "src"
  5005. }
  5006. },
  5007. "license": [
  5008. "MIT"
  5009. ],
  5010. "support": {
  5011. "issues": "https://github.com/webman-php/think-cache/issues",
  5012. "source": "https://github.com/webman-php/think-cache/tree/v2.1.6"
  5013. },
  5014. "time": "2026-04-29T00:26:47+00:00"
  5015. },
  5016. {
  5017. "name": "webman/think-orm",
  5018. "version": "v2.1.11",
  5019. "dist": {
  5020. "type": "zip",
  5021. "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/think-orm/v2.1.11/webman-think-orm-v2.1.11.zip",
  5022. "reference": "81fb87a085ceb2d25be5e86da12befbbbfe70c0e",
  5023. "shasum": ""
  5024. },
  5025. "require": {
  5026. "php": ">=8.1",
  5027. "topthink/think-container": "^2.0|^3.0",
  5028. "topthink/think-orm": "^2.0.53 || ^3.0.0 || ^4.0.30 || dev-master",
  5029. "workerman/webman-framework": "^2.1 || dev-master"
  5030. },
  5031. "type": "library",
  5032. "autoload": {
  5033. "psr-4": {
  5034. "support\\": "src/support",
  5035. "Webman\\ThinkOrm\\": "src"
  5036. }
  5037. },
  5038. "license": [
  5039. "MIT"
  5040. ],
  5041. "support": {
  5042. "issues": "https://github.com/webman-php/think-orm/issues",
  5043. "source": "https://github.com/webman-php/think-orm/tree/v2.1.11"
  5044. },
  5045. "time": "2026-03-25T01:34:20+00:00"
  5046. },
  5047. {
  5048. "name": "webman/validation",
  5049. "version": "v2.2.1",
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://mirrors.cloud.tencent.com/repository/composer/webman/validation/v2.2.1/webman-validation-v2.2.1.zip",
  5053. "reference": "d5117162aed293955fc55ee02a01d9300b226aaa",
  5054. "shasum": ""
  5055. },
  5056. "require": {
  5057. "illuminate/translation": "*",
  5058. "illuminate/validation": "*",
  5059. "webman/console": ">=2.1.7",
  5060. "workerman/webman-framework": "^2.1 || dev-master"
  5061. },
  5062. "require-dev": {
  5063. "phpunit/phpunit": "*"
  5064. },
  5065. "type": "library",
  5066. "autoload": {
  5067. "psr-4": {
  5068. "Webman\\Validation\\": "src",
  5069. "support\\validation\\": "src/support/validation"
  5070. }
  5071. },
  5072. "license": [
  5073. "MIT"
  5074. ],
  5075. "description": "Webman plugin webman/validation",
  5076. "support": {
  5077. "issues": "https://github.com/webman-php/validation/issues",
  5078. "source": "https://github.com/webman-php/validation/tree/v2.2.1"
  5079. },
  5080. "time": "2026-02-26T03:10:51+00:00"
  5081. },
  5082. {
  5083. "name": "workerman/coroutine",
  5084. "version": "v1.1.5",
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://mirrors.cloud.tencent.com/repository/composer/workerman/coroutine/v1.1.5/workerman-coroutine-v1.1.5.zip",
  5088. "reference": "b60e44267b90d398dbfa7a320f3e97b46357ac9f",
  5089. "shasum": ""
  5090. },
  5091. "require": {
  5092. "php": ">=8.1",
  5093. "workerman/workerman": "^5.1"
  5094. },
  5095. "require-dev": {
  5096. "phpunit/phpunit": "^11.0",
  5097. "psr/log": "*"
  5098. },
  5099. "type": "library",
  5100. "autoload": {
  5101. "psr-4": {
  5102. "Workerman\\": "src",
  5103. "Workerman\\Coroutine\\": "src"
  5104. }
  5105. },
  5106. "license": [
  5107. "MIT"
  5108. ],
  5109. "description": "Workerman coroutine",
  5110. "support": {
  5111. "issues": "https://github.com/workerman-php/coroutine/issues",
  5112. "source": "https://github.com/workerman-php/coroutine/tree/v1.1.5"
  5113. },
  5114. "time": "2026-03-12T02:07:37+00:00"
  5115. },
  5116. {
  5117. "name": "workerman/crontab",
  5118. "version": "v1.0.7",
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://mirrors.cloud.tencent.com/repository/composer/workerman/crontab/v1.0.7/workerman-crontab-v1.0.7.zip",
  5122. "reference": "74f51ca8204e8eb628e57bc0e640561d570da2cb",
  5123. "shasum": ""
  5124. },
  5125. "require": {
  5126. "php": ">=7.0",
  5127. "workerman/workerman": ">=4.0.20"
  5128. },
  5129. "type": "library",
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Workerman\\Crontab\\": "./src"
  5133. }
  5134. },
  5135. "license": [
  5136. "MIT"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "walkor",
  5141. "email": "walkor@workerman.net",
  5142. "homepage": "http://www.workerman.net",
  5143. "role": "Developer"
  5144. }
  5145. ],
  5146. "description": "A crontab written in PHP based on workerman",
  5147. "homepage": "http://www.workerman.net",
  5148. "keywords": [
  5149. "crontab"
  5150. ],
  5151. "support": {
  5152. "email": "walkor@workerman.net",
  5153. "forum": "http://wenda.workerman.net/",
  5154. "issues": "https://github.com/walkor/workerman/issues",
  5155. "source": "https://github.com/walkor/crontab",
  5156. "wiki": "http://doc.workerman.net/"
  5157. },
  5158. "time": "2025-01-15T07:20:50+00:00"
  5159. },
  5160. {
  5161. "name": "workerman/redis",
  5162. "version": "v2.0.6",
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://mirrors.cloud.tencent.com/repository/composer/workerman/redis/v2.0.6/workerman-redis-v2.0.6.zip",
  5166. "reference": "d8800cba4c9b65e128897932f741ec89ecfbc339",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "php": ">=7",
  5171. "workerman/workerman": "^4.1.0||^5.0.0"
  5172. },
  5173. "type": "library",
  5174. "autoload": {
  5175. "psr-4": {
  5176. "Workerman\\Redis\\": "./src"
  5177. }
  5178. },
  5179. "license": [
  5180. "MIT"
  5181. ],
  5182. "homepage": "http://www.workerman.net",
  5183. "support": {
  5184. "issues": "https://github.com/workerman-php/redis/issues",
  5185. "source": "https://github.com/workerman-php/redis/tree/v2.0.6"
  5186. },
  5187. "time": "2026-06-02T07:34:24+00:00"
  5188. },
  5189. {
  5190. "name": "workerman/redis-queue",
  5191. "version": "v1.2.2",
  5192. "dist": {
  5193. "type": "zip",
  5194. "url": "https://mirrors.cloud.tencent.com/repository/composer/workerman/redis-queue/v1.2.2/workerman-redis-queue-v1.2.2.zip",
  5195. "reference": "f0ba4ea9143ae02f39b998ed908d107354cb43c0",
  5196. "shasum": ""
  5197. },
  5198. "require": {
  5199. "php": ">=7.0",
  5200. "workerman/redis": "^1.0||^2.0",
  5201. "workerman/workerman": ">=4.0.20"
  5202. },
  5203. "type": "library",
  5204. "autoload": {
  5205. "psr-4": {
  5206. "Workerman\\RedisQueue\\": "./src"
  5207. }
  5208. },
  5209. "license": [
  5210. "MIT"
  5211. ],
  5212. "description": "Message queue system written in PHP based on workerman and backed by Redis.",
  5213. "homepage": "http://www.workerman.net",
  5214. "support": {
  5215. "issues": "https://github.com/walkor/redis-queue/issues",
  5216. "source": "https://github.com/walkor/redis-queue/tree/v1.2.2"
  5217. },
  5218. "time": "2026-01-20T14:57:09+00:00"
  5219. },
  5220. {
  5221. "name": "workerman/webman-framework",
  5222. "version": "v2.2.2",
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://mirrors.cloud.tencent.com/repository/composer/workerman/webman-framework/v2.2.2/workerman-webman-framework-v2.2.2.zip",
  5226. "reference": "4b761c0c44778618a5d9b9641fa6168fa06f95c4",
  5227. "shasum": ""
  5228. },
  5229. "require": {
  5230. "ext-json": "*",
  5231. "nikic/fast-route": "^1.3",
  5232. "php": ">=8.1",
  5233. "psr/container": ">=1.0",
  5234. "psr/log": "^2.0 || ^3.0",
  5235. "workerman/workerman": "^5.1 || dev-master"
  5236. },
  5237. "suggest": {
  5238. "ext-event": "For better performance. "
  5239. },
  5240. "type": "library",
  5241. "autoload": {
  5242. "files": [
  5243. "./src/support/helpers.php"
  5244. ],
  5245. "psr-4": {
  5246. "Webman\\": "./src",
  5247. "Support\\": "./src/support",
  5248. "support\\": "./src/support",
  5249. "Support\\View\\": "./src/support/view",
  5250. "Support\\Bootstrap\\": "./src/support/bootstrap",
  5251. "Support\\Exception\\": "./src/support/exception"
  5252. }
  5253. },
  5254. "license": [
  5255. "MIT"
  5256. ],
  5257. "authors": [
  5258. {
  5259. "name": "walkor",
  5260. "email": "walkor@workerman.net",
  5261. "homepage": "https://www.workerman.net",
  5262. "role": "Developer"
  5263. }
  5264. ],
  5265. "description": "High performance HTTP Service Framework.",
  5266. "homepage": "https://www.workerman.net",
  5267. "keywords": [
  5268. "High Performance",
  5269. "http service"
  5270. ],
  5271. "support": {
  5272. "email": "walkor@workerman.net",
  5273. "forum": "https://wenda.workerman.net/",
  5274. "issues": "https://github.com/walkor/webman/issues",
  5275. "source": "https://github.com/walkor/webman-framework",
  5276. "wiki": "https://doc.workerman.net/"
  5277. },
  5278. "time": "2026-07-08T03:33:00+00:00"
  5279. },
  5280. {
  5281. "name": "workerman/workerman",
  5282. "version": "v5.2.2",
  5283. "dist": {
  5284. "type": "zip",
  5285. "url": "https://mirrors.cloud.tencent.com/repository/composer/workerman/workerman/v5.2.2/workerman-workerman-v5.2.2.zip",
  5286. "reference": "a0866601af066c0eab5a2f7b9aef8bdda8fa1911",
  5287. "shasum": ""
  5288. },
  5289. "require": {
  5290. "ext-json": "*",
  5291. "php": ">=8.1",
  5292. "workerman/coroutine": "^1.1 || dev-main"
  5293. },
  5294. "conflict": {
  5295. "ext-swow": "<v1.0.0"
  5296. },
  5297. "require-dev": {
  5298. "guzzlehttp/guzzle": "^7.10",
  5299. "mockery/mockery": "^1.6.12",
  5300. "pestphp/pest": "^2.36 || ^3 || ^4",
  5301. "phpstan/phpstan": "^2.1"
  5302. },
  5303. "suggest": {
  5304. "ext-event": "For better performance. "
  5305. },
  5306. "type": "library",
  5307. "autoload": {
  5308. "psr-4": {
  5309. "Workerman\\": "src"
  5310. }
  5311. },
  5312. "license": [
  5313. "MIT"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "walkor",
  5318. "email": "walkor@workerman.net",
  5319. "homepage": "https://www.workerman.net",
  5320. "role": "Developer"
  5321. }
  5322. ],
  5323. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  5324. "homepage": "https://www.workerman.net",
  5325. "keywords": [
  5326. "asynchronous",
  5327. "event-loop",
  5328. "framework",
  5329. "http"
  5330. ],
  5331. "support": {
  5332. "email": "walkor@workerman.net",
  5333. "forum": "https://www.workerman.net/questions",
  5334. "issues": "https://github.com/walkor/workerman/issues",
  5335. "source": "https://github.com/walkor/workerman",
  5336. "wiki": "https://www.workerman.net/doc/workerman/"
  5337. },
  5338. "time": "2026-06-04T07:31:34+00:00"
  5339. },
  5340. {
  5341. "name": "yzh52521/easyhttp",
  5342. "version": "v1.1.3",
  5343. "dist": {
  5344. "type": "zip",
  5345. "url": "https://mirrors.cloud.tencent.com/repository/composer/yzh52521/easyhttp/v1.1.3/yzh52521-easyhttp-v1.1.3.zip",
  5346. "reference": "02bcf47eaf723520fa3905d0e6f1852168fe646c",
  5347. "shasum": ""
  5348. },
  5349. "require": {
  5350. "guzzlehttp/guzzle": "^6.0|^7.0",
  5351. "php": ">=7.2.5",
  5352. "psr/log": "^1.0|^2.0|^3.0"
  5353. },
  5354. "type": "library",
  5355. "autoload": {
  5356. "psr-4": {
  5357. "yzh52521\\EasyHttp\\": "src/"
  5358. }
  5359. },
  5360. "license": [
  5361. "MIT"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "yzh52521",
  5366. "email": "396751927@qq.com"
  5367. }
  5368. ],
  5369. "description": "EasyHttp 是一个轻量级、语义化、对IDE友好的HTTP客户端,支持常见的HTTP请求、异步请求和并发请求,让你可以快速地使用 HTTP 请求与其他 Web 应用进行通信。",
  5370. "homepage": "https://github.com/yzh52521/easyhttp",
  5371. "keywords": [
  5372. "EasyHttp",
  5373. "curl",
  5374. "easy-http",
  5375. "http",
  5376. "php",
  5377. "php-http",
  5378. "phphttp"
  5379. ],
  5380. "support": {
  5381. "issues": "https://github.com/yuanzhihai/easyhttp/issues",
  5382. "source": "https://github.com/yuanzhihai/easyhttp/tree/v1.1.3"
  5383. },
  5384. "time": "2023-11-14T05:49:02+00:00"
  5385. }
  5386. ],
  5387. "packages-dev": [],
  5388. "aliases": [],
  5389. "minimum-stability": "dev",
  5390. "stability-flags": [],
  5391. "prefer-stable": true,
  5392. "prefer-lowest": false,
  5393. "platform": {
  5394. "php": ">=8.1"
  5395. },
  5396. "platform-dev": [],
  5397. "plugin-api-version": "2.6.0"
  5398. }