composer.lock 206 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779
  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": "500e8b123969b4c040e84c03697ecd46",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.x"
  65. },
  66. "time": "2019-01-01T23:59:15+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.31",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  79. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "clagiordano/weblibs-configmanager": "^1.0",
  91. "danielstjules/stringy": "^3.1",
  92. "ext-curl": "*",
  93. "ext-json": "*",
  94. "ext-libxml": "*",
  95. "ext-mbstring": "*",
  96. "ext-openssl": "*",
  97. "ext-simplexml": "*",
  98. "ext-xmlwriter": "*",
  99. "guzzlehttp/guzzle": "^6.3|^7.0",
  100. "mtdowling/jmespath.php": "^2.5",
  101. "php": ">=5.5"
  102. },
  103. "require-dev": {
  104. "composer/composer": "^1.8",
  105. "drupal/coder": "^8.3",
  106. "ext-dom": "*",
  107. "ext-pcre": "*",
  108. "ext-sockets": "*",
  109. "ext-spl": "*",
  110. "league/climate": "^3.2.4",
  111. "mikey179/vfsstream": "^1.6",
  112. "monolog/monolog": "^1.24",
  113. "phpunit/phpunit": "^5.7.27|^6.1",
  114. "psr/cache": "^1.0",
  115. "symfony/dotenv": "^3.4",
  116. "symfony/var-dumper": "^3.4"
  117. },
  118. "suggest": {
  119. "ext-sockets": "To use client-side monitoring"
  120. },
  121. "type": "library",
  122. "autoload": {
  123. "psr-4": {
  124. "AlibabaCloud\\Client\\": "src"
  125. },
  126. "files": [
  127. "src/Functions.php"
  128. ]
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "time": "2021-05-13T06:26:38+00:00"
  158. },
  159. {
  160. "name": "alibabacloud/tea",
  161. "version": "3.1.22",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/aliyun/tea-php.git",
  165. "reference": "f9c9b2c927253a1c23a5381cc655e41311be7f65"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/f9c9b2c927253a1c23a5381cc655e41311be7f65",
  170. "reference": "f9c9b2c927253a1c23a5381cc655e41311be7f65",
  171. "shasum": "",
  172. "mirrors": [
  173. {
  174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  175. "preferred": true
  176. }
  177. ]
  178. },
  179. "require": {
  180. "adbario/php-dot-notation": "^2.2",
  181. "ext-curl": "*",
  182. "ext-json": "*",
  183. "ext-libxml": "*",
  184. "ext-mbstring": "*",
  185. "ext-openssl": "*",
  186. "ext-simplexml": "*",
  187. "ext-xmlwriter": "*",
  188. "guzzlehttp/guzzle": "^6.3|^7.0",
  189. "php": ">=5.5"
  190. },
  191. "require-dev": {
  192. "phpunit/phpunit": "*",
  193. "symfony/dotenv": "^3.4",
  194. "symfony/var-dumper": "^3.4"
  195. },
  196. "suggest": {
  197. "ext-sockets": "To use client-side monitoring"
  198. },
  199. "type": "library",
  200. "autoload": {
  201. "psr-4": {
  202. "AlibabaCloud\\Tea\\": "src"
  203. }
  204. },
  205. "notification-url": "https://packagist.org/downloads/",
  206. "license": [
  207. "Apache-2.0"
  208. ],
  209. "authors": [
  210. {
  211. "name": "Alibaba Cloud SDK",
  212. "email": "sdk-team@alibabacloud.com",
  213. "homepage": "http://www.alibabacloud.com"
  214. }
  215. ],
  216. "description": "Client of Tea for PHP",
  217. "homepage": "https://www.alibabacloud.com/",
  218. "keywords": [
  219. "alibabacloud",
  220. "client",
  221. "cloud",
  222. "tea"
  223. ],
  224. "support": {
  225. "issues": "https://github.com/aliyun/tea-php/issues",
  226. "source": "https://github.com/aliyun/tea-php"
  227. },
  228. "time": "2021-05-11T06:17:44+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/tea-fileform",
  232. "version": "0.3.4",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  236. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  241. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  242. "shasum": "",
  243. "mirrors": [
  244. {
  245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  246. "preferred": true
  247. }
  248. ]
  249. },
  250. "require": {
  251. "alibabacloud/tea": "^3.0",
  252. "php": ">5.5"
  253. },
  254. "require-dev": {
  255. "phpunit/phpunit": "^4.8.35|^5.4.3"
  256. },
  257. "type": "library",
  258. "autoload": {
  259. "psr-4": {
  260. "AlibabaCloud\\Tea\\FileForm\\": "src"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "Apache-2.0"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Alibaba Cloud SDK",
  270. "email": "sdk-team@alibabacloud.com"
  271. }
  272. ],
  273. "description": "Alibaba Cloud Tea File Library for PHP",
  274. "support": {
  275. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  276. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  277. },
  278. "time": "2020-12-01T07:24:35+00:00"
  279. },
  280. {
  281. "name": "alipaysdk/easysdk",
  282. "version": "2.2.0",
  283. "source": {
  284. "type": "git",
  285. "url": "https://github.com/alipay/alipay-easysdk.git",
  286. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480"
  287. },
  288. "dist": {
  289. "type": "zip",
  290. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/7a1cfa83c7e140bded957498ea072c77611e6480",
  291. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480",
  292. "shasum": "",
  293. "mirrors": [
  294. {
  295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  296. "preferred": true
  297. }
  298. ]
  299. },
  300. "require": {
  301. "adbario/php-dot-notation": "^2.2",
  302. "alibabacloud/tea": "^3.1",
  303. "alibabacloud/tea-fileform": "^0.3.2",
  304. "danielstjules/stringy": "^3.1",
  305. "ext-ctype": "*",
  306. "ext-curl": "*",
  307. "ext-dom": "*",
  308. "ext-fileinfo": "*",
  309. "ext-json": "*",
  310. "ext-libxml": "*",
  311. "ext-mbstring": "*",
  312. "ext-openssl": "*",
  313. "ext-simplexml": "*",
  314. "ext-xmlwriter": "*",
  315. "guzzlehttp/guzzle": ">=6.3",
  316. "mtdowling/jmespath.php": "^2.4",
  317. "php": ">=7.0",
  318. "pimple/pimple": "^3.0",
  319. "psr/log": "^1.1",
  320. "songshenzong/support": "^2.0",
  321. "xin/container": "^2.0.1"
  322. },
  323. "require-dev": {
  324. "phpunit/phpunit": "^7.5"
  325. },
  326. "type": "library",
  327. "autoload": {
  328. "psr-4": {
  329. "Alipay\\EasySDK\\": "php/src/"
  330. }
  331. },
  332. "notification-url": "https://packagist.org/downloads/",
  333. "license": [
  334. "Apache-2.0"
  335. ],
  336. "authors": [
  337. {
  338. "name": "junying.wjy",
  339. "email": "junying.wjy@antfin.com"
  340. }
  341. ],
  342. "description": "支付宝官方 Alipay Easy SDK",
  343. "support": {
  344. "issues": "https://github.com/alipay/alipay-easysdk/issues",
  345. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.0"
  346. },
  347. "time": "2021-01-19T07:30:32+00:00"
  348. },
  349. {
  350. "name": "aliyuncs/oss-sdk-php",
  351. "version": "v2.4.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  355. "reference": "0c9d902c33847c07efc66c4cdf823deaea8fc2b6"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/0c9d902c33847c07efc66c4cdf823deaea8fc2b6",
  360. "reference": "0c9d902c33847c07efc66c4cdf823deaea8fc2b6",
  361. "shasum": "",
  362. "mirrors": [
  363. {
  364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  365. "preferred": true
  366. }
  367. ]
  368. },
  369. "require": {
  370. "php": ">=5.3"
  371. },
  372. "require-dev": {
  373. "phpunit/phpunit": "*",
  374. "satooshi/php-coveralls": "*"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "OSS\\": "src/OSS"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Aliyuncs",
  389. "homepage": "http://www.aliyun.com"
  390. }
  391. ],
  392. "description": "Aliyun OSS SDK for PHP",
  393. "homepage": "http://www.aliyun.com/product/oss/",
  394. "support": {
  395. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  396. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.2"
  397. },
  398. "time": "2021-06-04T06:55:06+00:00"
  399. },
  400. {
  401. "name": "bacon/bacon-qr-code",
  402. "version": "2.0.4",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/Bacon/BaconQrCode.git",
  406. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  411. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  412. "shasum": "",
  413. "mirrors": [
  414. {
  415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  416. "preferred": true
  417. }
  418. ]
  419. },
  420. "require": {
  421. "dasprid/enum": "^1.0.3",
  422. "ext-iconv": "*",
  423. "php": "^7.1 || ^8.0"
  424. },
  425. "require-dev": {
  426. "phly/keep-a-changelog": "^1.4",
  427. "phpunit/phpunit": "^7 | ^8 | ^9",
  428. "squizlabs/php_codesniffer": "^3.4"
  429. },
  430. "suggest": {
  431. "ext-imagick": "to generate QR code images"
  432. },
  433. "type": "library",
  434. "autoload": {
  435. "psr-4": {
  436. "BaconQrCode\\": "src/"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "BSD-2-Clause"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Ben Scholzen 'DASPRiD'",
  446. "email": "mail@dasprids.de",
  447. "homepage": "https://dasprids.de/",
  448. "role": "Developer"
  449. }
  450. ],
  451. "description": "BaconQrCode is a QR code generator for PHP.",
  452. "homepage": "https://github.com/Bacon/BaconQrCode",
  453. "support": {
  454. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  455. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  456. },
  457. "time": "2021-06-18T13:26:35+00:00"
  458. },
  459. {
  460. "name": "clagiordano/weblibs-configmanager",
  461. "version": "v1.5.0",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  465. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  470. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  471. "shasum": "",
  472. "mirrors": [
  473. {
  474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  475. "preferred": true
  476. }
  477. ]
  478. },
  479. "require": {
  480. "ext-json": "*",
  481. "php": ">=5.4",
  482. "symfony/yaml": "^2.8"
  483. },
  484. "require-dev": {
  485. "clagiordano/phpunit-result-printer": "^1",
  486. "php-coveralls/php-coveralls": "^1.1",
  487. "phpunit/phpunit": "^4.8"
  488. },
  489. "type": "library",
  490. "autoload": {
  491. "psr-4": {
  492. "clagiordano\\weblibs\\configmanager\\": "src/"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "LGPL-3.0-or-later"
  498. ],
  499. "authors": [
  500. {
  501. "name": "Claudio Giordano",
  502. "email": "claudio.giordano@autistici.org",
  503. "role": "Developer"
  504. }
  505. ],
  506. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  507. "keywords": [
  508. "clagiordano",
  509. "configuration",
  510. "manager",
  511. "tool",
  512. "weblibs"
  513. ],
  514. "support": {
  515. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  516. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.5.0"
  517. },
  518. "time": "2021-07-12T15:27:21+00:00"
  519. },
  520. {
  521. "name": "danielstjules/stringy",
  522. "version": "3.1.0",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/danielstjules/Stringy.git",
  526. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  531. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  532. "shasum": "",
  533. "mirrors": [
  534. {
  535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  536. "preferred": true
  537. }
  538. ]
  539. },
  540. "require": {
  541. "php": ">=5.4.0",
  542. "symfony/polyfill-mbstring": "~1.1"
  543. },
  544. "require-dev": {
  545. "phpunit/phpunit": "~4.0"
  546. },
  547. "type": "library",
  548. "autoload": {
  549. "psr-4": {
  550. "Stringy\\": "src/"
  551. },
  552. "files": [
  553. "src/Create.php"
  554. ]
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Daniel St. Jules",
  563. "email": "danielst.jules@gmail.com",
  564. "homepage": "http://www.danielstjules.com"
  565. }
  566. ],
  567. "description": "A string manipulation library with multibyte support",
  568. "homepage": "https://github.com/danielstjules/Stringy",
  569. "keywords": [
  570. "UTF",
  571. "helpers",
  572. "manipulation",
  573. "methods",
  574. "multibyte",
  575. "string",
  576. "utf-8",
  577. "utility",
  578. "utils"
  579. ],
  580. "support": {
  581. "issues": "https://github.com/danielstjules/Stringy/issues",
  582. "source": "https://github.com/danielstjules/Stringy"
  583. },
  584. "time": "2017-06-12T01:10:27+00:00"
  585. },
  586. {
  587. "name": "dasprid/enum",
  588. "version": "1.0.3",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/DASPRiD/Enum.git",
  592. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  597. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  598. "shasum": "",
  599. "mirrors": [
  600. {
  601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  602. "preferred": true
  603. }
  604. ]
  605. },
  606. "require-dev": {
  607. "phpunit/phpunit": "^7 | ^8 | ^9",
  608. "squizlabs/php_codesniffer": "^3.4"
  609. },
  610. "type": "library",
  611. "autoload": {
  612. "psr-4": {
  613. "DASPRiD\\Enum\\": "src/"
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "BSD-2-Clause"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Ben Scholzen 'DASPRiD'",
  623. "email": "mail@dasprids.de",
  624. "homepage": "https://dasprids.de/",
  625. "role": "Developer"
  626. }
  627. ],
  628. "description": "PHP 7.1 enum implementation",
  629. "keywords": [
  630. "enum",
  631. "map"
  632. ],
  633. "support": {
  634. "issues": "https://github.com/DASPRiD/Enum/issues",
  635. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  636. },
  637. "time": "2020-10-02T16:03:48+00:00"
  638. },
  639. {
  640. "name": "dragonmantank/cron-expression",
  641. "version": "v3.1.0",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/dragonmantank/cron-expression.git",
  645. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  650. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  651. "shasum": "",
  652. "mirrors": [
  653. {
  654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  655. "preferred": true
  656. }
  657. ]
  658. },
  659. "require": {
  660. "php": "^7.2|^8.0",
  661. "webmozart/assert": "^1.7.0"
  662. },
  663. "replace": {
  664. "mtdowling/cron-expression": "^1.0"
  665. },
  666. "require-dev": {
  667. "phpstan/extension-installer": "^1.0",
  668. "phpstan/phpstan": "^0.12",
  669. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  670. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  671. },
  672. "type": "library",
  673. "autoload": {
  674. "psr-4": {
  675. "Cron\\": "src/Cron/"
  676. }
  677. },
  678. "notification-url": "https://packagist.org/downloads/",
  679. "license": [
  680. "MIT"
  681. ],
  682. "authors": [
  683. {
  684. "name": "Chris Tankersley",
  685. "email": "chris@ctankersley.com",
  686. "homepage": "https://github.com/dragonmantank"
  687. }
  688. ],
  689. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  690. "keywords": [
  691. "cron",
  692. "schedule"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  696. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://github.com/dragonmantank",
  701. "type": "github"
  702. }
  703. ],
  704. "time": "2020-11-24T19:55:57+00:00"
  705. },
  706. {
  707. "name": "easywechat-composer/easywechat-composer",
  708. "version": "1.4.1",
  709. "source": {
  710. "type": "git",
  711. "url": "https://github.com/mingyoung/easywechat-composer.git",
  712. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  713. },
  714. "dist": {
  715. "type": "zip",
  716. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  717. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  718. "shasum": "",
  719. "mirrors": [
  720. {
  721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  722. "preferred": true
  723. }
  724. ]
  725. },
  726. "require": {
  727. "composer-plugin-api": "^1.0 || ^2.0",
  728. "php": ">=7.0"
  729. },
  730. "require-dev": {
  731. "composer/composer": "^1.0 || ^2.0",
  732. "phpunit/phpunit": "^6.5 || ^7.0"
  733. },
  734. "type": "composer-plugin",
  735. "extra": {
  736. "class": "EasyWeChatComposer\\Plugin"
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "EasyWeChatComposer\\": "src/"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "张铭阳",
  750. "email": "mingyoungcheung@gmail.com"
  751. }
  752. ],
  753. "description": "The composer plugin for EasyWeChat",
  754. "support": {
  755. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  756. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  757. },
  758. "time": "2021-07-05T04:03:22+00:00"
  759. },
  760. {
  761. "name": "ezyang/htmlpurifier",
  762. "version": "v4.13.0",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/ezyang/htmlpurifier.git",
  766. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  771. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  772. "shasum": "",
  773. "mirrors": [
  774. {
  775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  776. "preferred": true
  777. }
  778. ]
  779. },
  780. "require": {
  781. "php": ">=5.2"
  782. },
  783. "require-dev": {
  784. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  785. },
  786. "type": "library",
  787. "autoload": {
  788. "psr-0": {
  789. "HTMLPurifier": "library/"
  790. },
  791. "files": [
  792. "library/HTMLPurifier.composer.php"
  793. ],
  794. "exclude-from-classmap": [
  795. "/library/HTMLPurifier/Language/"
  796. ]
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "LGPL-2.1-or-later"
  801. ],
  802. "authors": [
  803. {
  804. "name": "Edward Z. Yang",
  805. "email": "admin@htmlpurifier.org",
  806. "homepage": "http://ezyang.com"
  807. }
  808. ],
  809. "description": "Standards compliant HTML filter written in PHP",
  810. "homepage": "http://htmlpurifier.org/",
  811. "keywords": [
  812. "html"
  813. ],
  814. "support": {
  815. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  816. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  817. },
  818. "time": "2020-06-29T00:56:53+00:00"
  819. },
  820. {
  821. "name": "guzzlehttp/command",
  822. "version": "1.2.1",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/guzzle/command.git",
  826. "reference": "04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/guzzle/command/zipball/04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5",
  831. "reference": "04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5",
  832. "shasum": "",
  833. "mirrors": [
  834. {
  835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  836. "preferred": true
  837. }
  838. ]
  839. },
  840. "require": {
  841. "guzzlehttp/guzzle": "^7.3",
  842. "guzzlehttp/promises": "^1.3",
  843. "guzzlehttp/psr7": "^1.7 || ^2.0",
  844. "php": "^7.2.5 || ^8.0"
  845. },
  846. "require-dev": {
  847. "phpunit/phpunit": "^8.5.19"
  848. },
  849. "type": "library",
  850. "extra": {
  851. "branch-alias": {
  852. "dev-master": "1.2-dev"
  853. }
  854. },
  855. "autoload": {
  856. "psr-4": {
  857. "GuzzleHttp\\Command\\": "src/"
  858. }
  859. },
  860. "notification-url": "https://packagist.org/downloads/",
  861. "license": [
  862. "MIT"
  863. ],
  864. "authors": [
  865. {
  866. "name": "Graham Campbell",
  867. "email": "hello@gjcampbell.co.uk",
  868. "homepage": "https://github.com/GrahamCampbell"
  869. },
  870. {
  871. "name": "Michael Dowling",
  872. "email": "mtdowling@gmail.com",
  873. "homepage": "https://github.com/mtdowling"
  874. },
  875. {
  876. "name": "Jeremy Lindblom",
  877. "email": "jeremeamia@gmail.com",
  878. "homepage": "https://github.com/jeremeamia"
  879. },
  880. {
  881. "name": "Tobias Nyholm",
  882. "email": "tobias.nyholm@gmail.com",
  883. "homepage": "https://github.com/Nyholm"
  884. }
  885. ],
  886. "description": "Provides the foundation for building command-based web service clients",
  887. "support": {
  888. "issues": "https://github.com/guzzle/command/issues",
  889. "source": "https://github.com/guzzle/command/tree/1.2.1"
  890. },
  891. "funding": [
  892. {
  893. "url": "https://github.com/GrahamCampbell",
  894. "type": "github"
  895. },
  896. {
  897. "url": "https://github.com/Nyholm",
  898. "type": "github"
  899. },
  900. {
  901. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  902. "type": "tidelift"
  903. }
  904. ],
  905. "time": "2021-09-05T19:12:19+00:00"
  906. },
  907. {
  908. "name": "guzzlehttp/guzzle",
  909. "version": "7.3.0",
  910. "source": {
  911. "type": "git",
  912. "url": "https://github.com/guzzle/guzzle.git",
  913. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  914. },
  915. "dist": {
  916. "type": "zip",
  917. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  918. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  919. "shasum": "",
  920. "mirrors": [
  921. {
  922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  923. "preferred": true
  924. }
  925. ]
  926. },
  927. "require": {
  928. "ext-json": "*",
  929. "guzzlehttp/promises": "^1.4",
  930. "guzzlehttp/psr7": "^1.7 || ^2.0",
  931. "php": "^7.2.5 || ^8.0",
  932. "psr/http-client": "^1.0"
  933. },
  934. "provide": {
  935. "psr/http-client-implementation": "1.0"
  936. },
  937. "require-dev": {
  938. "bamarni/composer-bin-plugin": "^1.4.1",
  939. "ext-curl": "*",
  940. "php-http/client-integration-tests": "^3.0",
  941. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  942. "psr/log": "^1.1"
  943. },
  944. "suggest": {
  945. "ext-curl": "Required for CURL handler support",
  946. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  947. "psr/log": "Required for using the Log middleware"
  948. },
  949. "type": "library",
  950. "extra": {
  951. "branch-alias": {
  952. "dev-master": "7.3-dev"
  953. }
  954. },
  955. "autoload": {
  956. "psr-4": {
  957. "GuzzleHttp\\": "src/"
  958. },
  959. "files": [
  960. "src/functions_include.php"
  961. ]
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "authors": [
  968. {
  969. "name": "Michael Dowling",
  970. "email": "mtdowling@gmail.com",
  971. "homepage": "https://github.com/mtdowling"
  972. },
  973. {
  974. "name": "Márk Sági-Kazár",
  975. "email": "mark.sagikazar@gmail.com",
  976. "homepage": "https://sagikazarmark.hu"
  977. }
  978. ],
  979. "description": "Guzzle is a PHP HTTP client library",
  980. "homepage": "http://guzzlephp.org/",
  981. "keywords": [
  982. "client",
  983. "curl",
  984. "framework",
  985. "http",
  986. "http client",
  987. "psr-18",
  988. "psr-7",
  989. "rest",
  990. "web service"
  991. ],
  992. "support": {
  993. "issues": "https://github.com/guzzle/guzzle/issues",
  994. "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
  995. },
  996. "funding": [
  997. {
  998. "url": "https://github.com/GrahamCampbell",
  999. "type": "github"
  1000. },
  1001. {
  1002. "url": "https://github.com/Nyholm",
  1003. "type": "github"
  1004. },
  1005. {
  1006. "url": "https://github.com/alexeyshockov",
  1007. "type": "github"
  1008. },
  1009. {
  1010. "url": "https://github.com/gmponos",
  1011. "type": "github"
  1012. }
  1013. ],
  1014. "time": "2021-03-23T11:33:13+00:00"
  1015. },
  1016. {
  1017. "name": "guzzlehttp/guzzle-services",
  1018. "version": "1.3.1",
  1019. "source": {
  1020. "type": "git",
  1021. "url": "https://github.com/guzzle/guzzle-services.git",
  1022. "reference": "3731f120ce6856f4c71fff7cb2a27e263fe69f84"
  1023. },
  1024. "dist": {
  1025. "type": "zip",
  1026. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/3731f120ce6856f4c71fff7cb2a27e263fe69f84",
  1027. "reference": "3731f120ce6856f4c71fff7cb2a27e263fe69f84",
  1028. "shasum": "",
  1029. "mirrors": [
  1030. {
  1031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1032. "preferred": true
  1033. }
  1034. ]
  1035. },
  1036. "require": {
  1037. "guzzlehttp/command": "^1.2",
  1038. "guzzlehttp/guzzle": "^7.3",
  1039. "guzzlehttp/psr7": "^1.7 || ^2.0",
  1040. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  1041. "php": "^7.2.5 || ^8.0"
  1042. },
  1043. "require-dev": {
  1044. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1045. },
  1046. "suggest": {
  1047. "gimler/guzzle-description-loader": "^0.0.4"
  1048. },
  1049. "type": "library",
  1050. "extra": {
  1051. "branch-alias": {
  1052. "dev-master": "1.3-dev"
  1053. }
  1054. },
  1055. "autoload": {
  1056. "psr-4": {
  1057. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "Graham Campbell",
  1067. "email": "hello@gjcampbell.co.uk",
  1068. "homepage": "https://github.com/GrahamCampbell"
  1069. },
  1070. {
  1071. "name": "Michael Dowling",
  1072. "email": "mtdowling@gmail.com",
  1073. "homepage": "https://github.com/mtdowling"
  1074. },
  1075. {
  1076. "name": "Stefano Kowalke",
  1077. "email": "blueduck@mail.org",
  1078. "homepage": "https://github.com/Konafets"
  1079. },
  1080. {
  1081. "name": "Tobias Nyholm",
  1082. "email": "tobias.nyholm@gmail.com",
  1083. "homepage": "https://github.com/Nyholm"
  1084. }
  1085. ],
  1086. "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.",
  1087. "support": {
  1088. "issues": "https://github.com/guzzle/guzzle-services/issues",
  1089. "source": "https://github.com/guzzle/guzzle-services/tree/1.3.1"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://github.com/GrahamCampbell",
  1094. "type": "github"
  1095. },
  1096. {
  1097. "url": "https://github.com/Nyholm",
  1098. "type": "github"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2021-10-07T13:01:35+00:00"
  1106. },
  1107. {
  1108. "name": "guzzlehttp/promises",
  1109. "version": "1.4.1",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/guzzle/promises.git",
  1113. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1118. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1119. "shasum": "",
  1120. "mirrors": [
  1121. {
  1122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1123. "preferred": true
  1124. }
  1125. ]
  1126. },
  1127. "require": {
  1128. "php": ">=5.5"
  1129. },
  1130. "require-dev": {
  1131. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1132. },
  1133. "type": "library",
  1134. "extra": {
  1135. "branch-alias": {
  1136. "dev-master": "1.4-dev"
  1137. }
  1138. },
  1139. "autoload": {
  1140. "psr-4": {
  1141. "GuzzleHttp\\Promise\\": "src/"
  1142. },
  1143. "files": [
  1144. "src/functions_include.php"
  1145. ]
  1146. },
  1147. "notification-url": "https://packagist.org/downloads/",
  1148. "license": [
  1149. "MIT"
  1150. ],
  1151. "authors": [
  1152. {
  1153. "name": "Michael Dowling",
  1154. "email": "mtdowling@gmail.com",
  1155. "homepage": "https://github.com/mtdowling"
  1156. }
  1157. ],
  1158. "description": "Guzzle promises library",
  1159. "keywords": [
  1160. "promise"
  1161. ],
  1162. "support": {
  1163. "issues": "https://github.com/guzzle/promises/issues",
  1164. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1165. },
  1166. "time": "2021-03-07T09:25:29+00:00"
  1167. },
  1168. {
  1169. "name": "guzzlehttp/psr7",
  1170. "version": "2.7.0",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "https://github.com/guzzle/psr7.git",
  1174. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1175. },
  1176. "dist": {
  1177. "type": "zip",
  1178. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1179. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1180. "shasum": "",
  1181. "mirrors": [
  1182. {
  1183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1184. "preferred": true
  1185. }
  1186. ]
  1187. },
  1188. "require": {
  1189. "php": "^7.2.5 || ^8.0",
  1190. "psr/http-factory": "^1.0",
  1191. "psr/http-message": "^1.1 || ^2.0",
  1192. "ralouphie/getallheaders": "^3.0"
  1193. },
  1194. "provide": {
  1195. "psr/http-factory-implementation": "1.0",
  1196. "psr/http-message-implementation": "1.0"
  1197. },
  1198. "require-dev": {
  1199. "bamarni/composer-bin-plugin": "^1.8.2",
  1200. "http-interop/http-factory-tests": "0.9.0",
  1201. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1202. },
  1203. "suggest": {
  1204. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1205. },
  1206. "type": "library",
  1207. "extra": {
  1208. "bamarni-bin": {
  1209. "bin-links": true,
  1210. "forward-command": false
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-4": {
  1215. "GuzzleHttp\\Psr7\\": "src/"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Graham Campbell",
  1225. "email": "hello@gjcampbell.co.uk",
  1226. "homepage": "https://github.com/GrahamCampbell"
  1227. },
  1228. {
  1229. "name": "Michael Dowling",
  1230. "email": "mtdowling@gmail.com",
  1231. "homepage": "https://github.com/mtdowling"
  1232. },
  1233. {
  1234. "name": "George Mponos",
  1235. "email": "gmponos@gmail.com",
  1236. "homepage": "https://github.com/gmponos"
  1237. },
  1238. {
  1239. "name": "Tobias Nyholm",
  1240. "email": "tobias.nyholm@gmail.com",
  1241. "homepage": "https://github.com/Nyholm"
  1242. },
  1243. {
  1244. "name": "Márk Sági-Kazár",
  1245. "email": "mark.sagikazar@gmail.com",
  1246. "homepage": "https://github.com/sagikazarmark"
  1247. },
  1248. {
  1249. "name": "Tobias Schultze",
  1250. "email": "webmaster@tubo-world.de",
  1251. "homepage": "https://github.com/Tobion"
  1252. },
  1253. {
  1254. "name": "Márk Sági-Kazár",
  1255. "email": "mark.sagikazar@gmail.com",
  1256. "homepage": "https://sagikazarmark.hu"
  1257. }
  1258. ],
  1259. "description": "PSR-7 message implementation that also provides common utility methods",
  1260. "keywords": [
  1261. "http",
  1262. "message",
  1263. "psr-7",
  1264. "request",
  1265. "response",
  1266. "stream",
  1267. "uri",
  1268. "url"
  1269. ],
  1270. "support": {
  1271. "issues": "https://github.com/guzzle/psr7/issues",
  1272. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1273. },
  1274. "funding": [
  1275. {
  1276. "url": "https://github.com/GrahamCampbell",
  1277. "type": "github"
  1278. },
  1279. {
  1280. "url": "https://github.com/Nyholm",
  1281. "type": "github"
  1282. },
  1283. {
  1284. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1285. "type": "tidelift"
  1286. }
  1287. ],
  1288. "time": "2024-07-18T11:15:46+00:00"
  1289. },
  1290. {
  1291. "name": "guzzlehttp/uri-template",
  1292. "version": "v1.0.1",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/guzzle/uri-template.git",
  1296. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1301. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1302. "shasum": "",
  1303. "mirrors": [
  1304. {
  1305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1306. "preferred": true
  1307. }
  1308. ]
  1309. },
  1310. "require": {
  1311. "php": "^7.2.5 || ^8.0",
  1312. "symfony/polyfill-php80": "^1.17"
  1313. },
  1314. "require-dev": {
  1315. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1316. "uri-template/tests": "1.0.0"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-master": "1.0-dev"
  1322. }
  1323. },
  1324. "autoload": {
  1325. "psr-4": {
  1326. "GuzzleHttp\\UriTemplate\\": "src"
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Graham Campbell",
  1336. "email": "hello@gjcampbell.co.uk",
  1337. "homepage": "https://github.com/GrahamCampbell"
  1338. },
  1339. {
  1340. "name": "Michael Dowling",
  1341. "email": "mtdowling@gmail.com",
  1342. "homepage": "https://github.com/mtdowling"
  1343. },
  1344. {
  1345. "name": "George Mponos",
  1346. "email": "gmponos@gmail.com",
  1347. "homepage": "https://github.com/gmponos"
  1348. },
  1349. {
  1350. "name": "Tobias Nyholm",
  1351. "email": "tobias.nyholm@gmail.com",
  1352. "homepage": "https://github.com/Nyholm"
  1353. }
  1354. ],
  1355. "description": "A polyfill class for uri_template of PHP",
  1356. "keywords": [
  1357. "guzzlehttp",
  1358. "uri-template"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/guzzle/uri-template/issues",
  1362. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1363. },
  1364. "funding": [
  1365. {
  1366. "url": "https://github.com/GrahamCampbell",
  1367. "type": "github"
  1368. },
  1369. {
  1370. "url": "https://github.com/Nyholm",
  1371. "type": "github"
  1372. },
  1373. {
  1374. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1375. "type": "tidelift"
  1376. }
  1377. ],
  1378. "time": "2021-10-07T12:57:01+00:00"
  1379. },
  1380. {
  1381. "name": "hyperf/context",
  1382. "version": "v3.0.37",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/hyperf/context.git",
  1386. "reference": "264e06fb882426d90758eca2c5bb8293f8b60455"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/hyperf/context/zipball/264e06fb882426d90758eca2c5bb8293f8b60455",
  1391. "reference": "264e06fb882426d90758eca2c5bb8293f8b60455",
  1392. "shasum": "",
  1393. "mirrors": [
  1394. {
  1395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1396. "preferred": true
  1397. }
  1398. ]
  1399. },
  1400. "require": {
  1401. "hyperf/engine": "^1.2|^2.0",
  1402. "php": ">=8.0"
  1403. },
  1404. "type": "library",
  1405. "extra": {
  1406. "branch-alias": {
  1407. "dev-master": "3.0-dev"
  1408. }
  1409. },
  1410. "autoload": {
  1411. "psr-4": {
  1412. "Hyperf\\Context\\": "src/"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "description": "A coroutine/application context library.",
  1420. "homepage": "https://hyperf.io",
  1421. "keywords": [
  1422. "Context",
  1423. "hyperf",
  1424. "php",
  1425. "swoole"
  1426. ],
  1427. "support": {
  1428. "docs": "https://hyperf.wiki",
  1429. "issues": "https://github.com/hyperf/hyperf/issues",
  1430. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1431. "source": "https://github.com/hyperf/hyperf"
  1432. },
  1433. "time": "2023-09-19T01:50:18+00:00"
  1434. },
  1435. {
  1436. "name": "hyperf/contract",
  1437. "version": "v3.0.37",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/hyperf/contract.git",
  1441. "reference": "2e8290104468a8d90855067d8644a32114474452"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/hyperf/contract/zipball/2e8290104468a8d90855067d8644a32114474452",
  1446. "reference": "2e8290104468a8d90855067d8644a32114474452",
  1447. "shasum": "",
  1448. "mirrors": [
  1449. {
  1450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1451. "preferred": true
  1452. }
  1453. ]
  1454. },
  1455. "require": {
  1456. "php": ">=8.0"
  1457. },
  1458. "type": "library",
  1459. "extra": {
  1460. "branch-alias": {
  1461. "dev-master": "3.0-dev"
  1462. }
  1463. },
  1464. "autoload": {
  1465. "psr-4": {
  1466. "Hyperf\\Contract\\": "src/"
  1467. }
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "MIT"
  1472. ],
  1473. "description": "The contracts of Hyperf.",
  1474. "homepage": "https://hyperf.io",
  1475. "keywords": [
  1476. "hyperf",
  1477. "php",
  1478. "swoole"
  1479. ],
  1480. "support": {
  1481. "docs": "https://hyperf.wiki",
  1482. "issues": "https://github.com/hyperf/hyperf/issues",
  1483. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1484. "source": "https://github.com/hyperf/hyperf"
  1485. },
  1486. "time": "2023-09-19T01:50:18+00:00"
  1487. },
  1488. {
  1489. "name": "hyperf/engine",
  1490. "version": "v1.10.0",
  1491. "source": {
  1492. "type": "git",
  1493. "url": "https://github.com/hyperf/engine.git",
  1494. "reference": "da38c8708f3d78d1490331e432d385489720568f"
  1495. },
  1496. "dist": {
  1497. "type": "zip",
  1498. "url": "https://api.github.com/repos/hyperf/engine/zipball/da38c8708f3d78d1490331e432d385489720568f",
  1499. "reference": "da38c8708f3d78d1490331e432d385489720568f",
  1500. "shasum": "",
  1501. "mirrors": [
  1502. {
  1503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1504. "preferred": true
  1505. }
  1506. ]
  1507. },
  1508. "require": {
  1509. "php": ">=8.0"
  1510. },
  1511. "require-dev": {
  1512. "friendsofphp/php-cs-fixer": "^3.0",
  1513. "hyperf/guzzle": "^2.2",
  1514. "hyperf/http-message": " ^2.0",
  1515. "phpstan/phpstan": "^1.0",
  1516. "phpunit/phpunit": "^9.4",
  1517. "swoole/ide-helper": "dev-master"
  1518. },
  1519. "suggest": {
  1520. "ext-swoole": ">=4.5"
  1521. },
  1522. "type": "library",
  1523. "extra": {
  1524. "hyperf": {
  1525. "config": "Hyperf\\Engine\\ConfigProvider"
  1526. },
  1527. "branch-alias": {
  1528. "dev-master": "1.10-dev"
  1529. }
  1530. },
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Hyperf\\Engine\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "keywords": [
  1541. "hyperf",
  1542. "php"
  1543. ],
  1544. "support": {
  1545. "issues": "https://github.com/hyperf/engine/issues",
  1546. "source": "https://github.com/hyperf/engine/tree/v1.10.0"
  1547. },
  1548. "time": "2023-04-07T07:39:09+00:00"
  1549. },
  1550. {
  1551. "name": "hyperf/pimple",
  1552. "version": "v2.2.2",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/hyperf-cloud/pimple-integration.git",
  1556. "reference": "7bd07745c256b83679471c06ec2a11e901d37277"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/hyperf-cloud/pimple-integration/zipball/7bd07745c256b83679471c06ec2a11e901d37277",
  1561. "reference": "7bd07745c256b83679471c06ec2a11e901d37277",
  1562. "shasum": "",
  1563. "mirrors": [
  1564. {
  1565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1566. "preferred": true
  1567. }
  1568. ]
  1569. },
  1570. "require": {
  1571. "hyperf/context": "^3.0",
  1572. "hyperf/contract": "^3.0",
  1573. "php": ">=8.0",
  1574. "pimple/pimple": "^3.3"
  1575. },
  1576. "require-dev": {
  1577. "friendsofphp/php-cs-fixer": "^3.0",
  1578. "hyperf/support": "^3.0",
  1579. "mockery/mockery": "^1.3",
  1580. "phpstan/phpstan": "^1.0",
  1581. "phpunit/phpunit": ">=7.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "hyperf": {
  1586. "config": "Hyperf\\Pimple\\ConfigProvider"
  1587. },
  1588. "branch-alias": {
  1589. "dev-master": "2.0-dev"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "psr-4": {
  1594. "Hyperf\\Pimple\\": "src/"
  1595. }
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "description": "Pimple Container",
  1602. "keywords": [
  1603. "container",
  1604. "hyperf",
  1605. "php",
  1606. "psr11"
  1607. ],
  1608. "support": {
  1609. "issues": "https://github.com/hyperf-cloud/pimple-integration/issues",
  1610. "source": "https://github.com/hyperf-cloud/pimple-integration/tree/v2.2.2"
  1611. },
  1612. "time": "2023-06-10T04:41:29+00:00"
  1613. },
  1614. {
  1615. "name": "maennchen/zipstream-php",
  1616. "version": "2.1.0",
  1617. "source": {
  1618. "type": "git",
  1619. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1620. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1621. },
  1622. "dist": {
  1623. "type": "zip",
  1624. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1625. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1626. "shasum": "",
  1627. "mirrors": [
  1628. {
  1629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1630. "preferred": true
  1631. }
  1632. ]
  1633. },
  1634. "require": {
  1635. "myclabs/php-enum": "^1.5",
  1636. "php": ">= 7.1",
  1637. "psr/http-message": "^1.0",
  1638. "symfony/polyfill-mbstring": "^1.0"
  1639. },
  1640. "require-dev": {
  1641. "ext-zip": "*",
  1642. "guzzlehttp/guzzle": ">= 6.3",
  1643. "mikey179/vfsstream": "^1.6",
  1644. "phpunit/phpunit": ">= 7.5"
  1645. },
  1646. "type": "library",
  1647. "autoload": {
  1648. "psr-4": {
  1649. "ZipStream\\": "src/"
  1650. }
  1651. },
  1652. "notification-url": "https://packagist.org/downloads/",
  1653. "license": [
  1654. "MIT"
  1655. ],
  1656. "authors": [
  1657. {
  1658. "name": "Paul Duncan",
  1659. "email": "pabs@pablotron.org"
  1660. },
  1661. {
  1662. "name": "Jonatan Männchen",
  1663. "email": "jonatan@maennchen.ch"
  1664. },
  1665. {
  1666. "name": "Jesse Donat",
  1667. "email": "donatj@gmail.com"
  1668. },
  1669. {
  1670. "name": "András Kolesár",
  1671. "email": "kolesar@kolesar.hu"
  1672. }
  1673. ],
  1674. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1675. "keywords": [
  1676. "stream",
  1677. "zip"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1681. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://opencollective.com/zipstream",
  1686. "type": "open_collective"
  1687. }
  1688. ],
  1689. "time": "2020-05-30T13:11:16+00:00"
  1690. },
  1691. {
  1692. "name": "markbaker/complex",
  1693. "version": "2.0.3",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1697. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  1702. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  1703. "shasum": "",
  1704. "mirrors": [
  1705. {
  1706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1707. "preferred": true
  1708. }
  1709. ]
  1710. },
  1711. "require": {
  1712. "php": "^7.2 || ^8.0"
  1713. },
  1714. "require-dev": {
  1715. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1716. "phpcompatibility/php-compatibility": "^9.0",
  1717. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1718. "squizlabs/php_codesniffer": "^3.4"
  1719. },
  1720. "type": "library",
  1721. "autoload": {
  1722. "psr-4": {
  1723. "Complex\\": "classes/src/"
  1724. },
  1725. "files": [
  1726. "classes/src/functions/abs.php",
  1727. "classes/src/functions/acos.php",
  1728. "classes/src/functions/acosh.php",
  1729. "classes/src/functions/acot.php",
  1730. "classes/src/functions/acoth.php",
  1731. "classes/src/functions/acsc.php",
  1732. "classes/src/functions/acsch.php",
  1733. "classes/src/functions/argument.php",
  1734. "classes/src/functions/asec.php",
  1735. "classes/src/functions/asech.php",
  1736. "classes/src/functions/asin.php",
  1737. "classes/src/functions/asinh.php",
  1738. "classes/src/functions/atan.php",
  1739. "classes/src/functions/atanh.php",
  1740. "classes/src/functions/conjugate.php",
  1741. "classes/src/functions/cos.php",
  1742. "classes/src/functions/cosh.php",
  1743. "classes/src/functions/cot.php",
  1744. "classes/src/functions/coth.php",
  1745. "classes/src/functions/csc.php",
  1746. "classes/src/functions/csch.php",
  1747. "classes/src/functions/exp.php",
  1748. "classes/src/functions/inverse.php",
  1749. "classes/src/functions/ln.php",
  1750. "classes/src/functions/log2.php",
  1751. "classes/src/functions/log10.php",
  1752. "classes/src/functions/negative.php",
  1753. "classes/src/functions/pow.php",
  1754. "classes/src/functions/rho.php",
  1755. "classes/src/functions/sec.php",
  1756. "classes/src/functions/sech.php",
  1757. "classes/src/functions/sin.php",
  1758. "classes/src/functions/sinh.php",
  1759. "classes/src/functions/sqrt.php",
  1760. "classes/src/functions/tan.php",
  1761. "classes/src/functions/tanh.php",
  1762. "classes/src/functions/theta.php",
  1763. "classes/src/operations/add.php",
  1764. "classes/src/operations/subtract.php",
  1765. "classes/src/operations/multiply.php",
  1766. "classes/src/operations/divideby.php",
  1767. "classes/src/operations/divideinto.php"
  1768. ]
  1769. },
  1770. "notification-url": "https://packagist.org/downloads/",
  1771. "license": [
  1772. "MIT"
  1773. ],
  1774. "authors": [
  1775. {
  1776. "name": "Mark Baker",
  1777. "email": "mark@lange.demon.co.uk"
  1778. }
  1779. ],
  1780. "description": "PHP Class for working with complex numbers",
  1781. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1782. "keywords": [
  1783. "complex",
  1784. "mathematics"
  1785. ],
  1786. "support": {
  1787. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1788. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  1789. },
  1790. "time": "2021-06-02T09:44:11+00:00"
  1791. },
  1792. {
  1793. "name": "markbaker/matrix",
  1794. "version": "2.1.3",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1798. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  1803. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  1804. "shasum": "",
  1805. "mirrors": [
  1806. {
  1807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1808. "preferred": true
  1809. }
  1810. ]
  1811. },
  1812. "require": {
  1813. "php": "^7.1 || ^8.0"
  1814. },
  1815. "require-dev": {
  1816. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1817. "phpcompatibility/php-compatibility": "^9.0",
  1818. "phpdocumentor/phpdocumentor": "2.*",
  1819. "phploc/phploc": "^4.0",
  1820. "phpmd/phpmd": "2.*",
  1821. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1822. "sebastian/phpcpd": "^4.0",
  1823. "squizlabs/php_codesniffer": "^3.4"
  1824. },
  1825. "type": "library",
  1826. "autoload": {
  1827. "psr-4": {
  1828. "Matrix\\": "classes/src/"
  1829. },
  1830. "files": [
  1831. "classes/src/Functions/adjoint.php",
  1832. "classes/src/Functions/antidiagonal.php",
  1833. "classes/src/Functions/cofactors.php",
  1834. "classes/src/Functions/determinant.php",
  1835. "classes/src/Functions/diagonal.php",
  1836. "classes/src/Functions/identity.php",
  1837. "classes/src/Functions/inverse.php",
  1838. "classes/src/Functions/minors.php",
  1839. "classes/src/Functions/trace.php",
  1840. "classes/src/Functions/transpose.php",
  1841. "classes/src/Operations/add.php",
  1842. "classes/src/Operations/directsum.php",
  1843. "classes/src/Operations/subtract.php",
  1844. "classes/src/Operations/multiply.php",
  1845. "classes/src/Operations/divideby.php",
  1846. "classes/src/Operations/divideinto.php"
  1847. ]
  1848. },
  1849. "notification-url": "https://packagist.org/downloads/",
  1850. "license": [
  1851. "MIT"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Mark Baker",
  1856. "email": "mark@demon-angel.eu"
  1857. }
  1858. ],
  1859. "description": "PHP Class for working with matrices",
  1860. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1861. "keywords": [
  1862. "mathematics",
  1863. "matrix",
  1864. "vector"
  1865. ],
  1866. "support": {
  1867. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1868. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  1869. },
  1870. "time": "2021-05-25T15:42:17+00:00"
  1871. },
  1872. {
  1873. "name": "monolog/monolog",
  1874. "version": "2.3.2",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/Seldaek/monolog.git",
  1878. "reference": "71312564759a7db5b789296369c1a264efc43aad"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad",
  1883. "reference": "71312564759a7db5b789296369c1a264efc43aad",
  1884. "shasum": "",
  1885. "mirrors": [
  1886. {
  1887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1888. "preferred": true
  1889. }
  1890. ]
  1891. },
  1892. "require": {
  1893. "php": ">=7.2",
  1894. "psr/log": "^1.0.1"
  1895. },
  1896. "provide": {
  1897. "psr/log-implementation": "1.0.0"
  1898. },
  1899. "require-dev": {
  1900. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1901. "doctrine/couchdb": "~1.0@dev",
  1902. "elasticsearch/elasticsearch": "^7",
  1903. "graylog2/gelf-php": "^1.4.2",
  1904. "mongodb/mongodb": "^1.8",
  1905. "php-amqplib/php-amqplib": "~2.4",
  1906. "php-console/php-console": "^3.1.3",
  1907. "phpspec/prophecy": "^1.6.1",
  1908. "phpstan/phpstan": "^0.12.91",
  1909. "phpunit/phpunit": "^8.5",
  1910. "predis/predis": "^1.1",
  1911. "rollbar/rollbar": "^1.3",
  1912. "ruflin/elastica": ">=0.90 <7.0.1",
  1913. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1914. },
  1915. "suggest": {
  1916. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1917. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1918. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1919. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1920. "ext-mbstring": "Allow to work properly with unicode symbols",
  1921. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1922. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1923. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1924. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1925. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1926. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1927. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1928. },
  1929. "type": "library",
  1930. "extra": {
  1931. "branch-alias": {
  1932. "dev-main": "2.x-dev"
  1933. }
  1934. },
  1935. "autoload": {
  1936. "psr-4": {
  1937. "Monolog\\": "src/Monolog"
  1938. }
  1939. },
  1940. "notification-url": "https://packagist.org/downloads/",
  1941. "license": [
  1942. "MIT"
  1943. ],
  1944. "authors": [
  1945. {
  1946. "name": "Jordi Boggiano",
  1947. "email": "j.boggiano@seld.be",
  1948. "homepage": "https://seld.be"
  1949. }
  1950. ],
  1951. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1952. "homepage": "https://github.com/Seldaek/monolog",
  1953. "keywords": [
  1954. "log",
  1955. "logging",
  1956. "psr-3"
  1957. ],
  1958. "support": {
  1959. "issues": "https://github.com/Seldaek/monolog/issues",
  1960. "source": "https://github.com/Seldaek/monolog/tree/2.3.2"
  1961. },
  1962. "funding": [
  1963. {
  1964. "url": "https://github.com/Seldaek",
  1965. "type": "github"
  1966. },
  1967. {
  1968. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1969. "type": "tidelift"
  1970. }
  1971. ],
  1972. "time": "2021-07-23T07:42:52+00:00"
  1973. },
  1974. {
  1975. "name": "mtdowling/jmespath.php",
  1976. "version": "2.6.1",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/jmespath/jmespath.php.git",
  1980. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1985. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1986. "shasum": "",
  1987. "mirrors": [
  1988. {
  1989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1990. "preferred": true
  1991. }
  1992. ]
  1993. },
  1994. "require": {
  1995. "php": "^5.4 || ^7.0 || ^8.0",
  1996. "symfony/polyfill-mbstring": "^1.17"
  1997. },
  1998. "require-dev": {
  1999. "composer/xdebug-handler": "^1.4 || ^2.0",
  2000. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  2001. },
  2002. "bin": [
  2003. "bin/jp.php"
  2004. ],
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "2.6-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "psr-4": {
  2013. "JmesPath\\": "src/"
  2014. },
  2015. "files": [
  2016. "src/JmesPath.php"
  2017. ]
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Michael Dowling",
  2026. "email": "mtdowling@gmail.com",
  2027. "homepage": "https://github.com/mtdowling"
  2028. }
  2029. ],
  2030. "description": "Declaratively specify how to extract elements from a JSON document",
  2031. "keywords": [
  2032. "json",
  2033. "jsonpath"
  2034. ],
  2035. "support": {
  2036. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2037. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  2038. },
  2039. "time": "2021-06-14T00:11:39+00:00"
  2040. },
  2041. {
  2042. "name": "myclabs/php-enum",
  2043. "version": "1.8.3",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://github.com/myclabs/php-enum.git",
  2047. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2052. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2053. "shasum": "",
  2054. "mirrors": [
  2055. {
  2056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2057. "preferred": true
  2058. }
  2059. ]
  2060. },
  2061. "require": {
  2062. "ext-json": "*",
  2063. "php": "^7.3 || ^8.0"
  2064. },
  2065. "require-dev": {
  2066. "phpunit/phpunit": "^9.5",
  2067. "squizlabs/php_codesniffer": "1.*",
  2068. "vimeo/psalm": "^4.6.2"
  2069. },
  2070. "type": "library",
  2071. "autoload": {
  2072. "psr-4": {
  2073. "MyCLabs\\Enum\\": "src/"
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "PHP Enum contributors",
  2083. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2084. }
  2085. ],
  2086. "description": "PHP Enum implementation",
  2087. "homepage": "http://github.com/myclabs/php-enum",
  2088. "keywords": [
  2089. "enum"
  2090. ],
  2091. "support": {
  2092. "issues": "https://github.com/myclabs/php-enum/issues",
  2093. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://github.com/mnapoli",
  2098. "type": "github"
  2099. },
  2100. {
  2101. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2102. "type": "tidelift"
  2103. }
  2104. ],
  2105. "time": "2021-07-05T08:18:36+00:00"
  2106. },
  2107. {
  2108. "name": "nette/php-generator",
  2109. "version": "v3.6.6",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/nette/php-generator.git",
  2113. "reference": "ad7d0a77f58260001bd263605eb2b9fbaf1d61a7"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/nette/php-generator/zipball/ad7d0a77f58260001bd263605eb2b9fbaf1d61a7",
  2118. "reference": "ad7d0a77f58260001bd263605eb2b9fbaf1d61a7",
  2119. "shasum": "",
  2120. "mirrors": [
  2121. {
  2122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2123. "preferred": true
  2124. }
  2125. ]
  2126. },
  2127. "require": {
  2128. "nette/utils": "^3.1.2",
  2129. "php": ">=7.2 <8.2"
  2130. },
  2131. "require-dev": {
  2132. "nette/tester": "^2.4",
  2133. "nikic/php-parser": "^4.13",
  2134. "phpstan/phpstan": "^0.12",
  2135. "tracy/tracy": "^2.8"
  2136. },
  2137. "suggest": {
  2138. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "3.6-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "classmap": [
  2148. "src/"
  2149. ]
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "BSD-3-Clause",
  2154. "GPL-2.0-only",
  2155. "GPL-3.0-only"
  2156. ],
  2157. "authors": [
  2158. {
  2159. "name": "David Grudl",
  2160. "homepage": "https://davidgrudl.com"
  2161. },
  2162. {
  2163. "name": "Nette Community",
  2164. "homepage": "https://nette.org/contributors"
  2165. }
  2166. ],
  2167. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.1 features.",
  2168. "homepage": "https://nette.org",
  2169. "keywords": [
  2170. "code",
  2171. "nette",
  2172. "php",
  2173. "scaffolding"
  2174. ],
  2175. "support": {
  2176. "issues": "https://github.com/nette/php-generator/issues",
  2177. "source": "https://github.com/nette/php-generator/tree/v3.6.6"
  2178. },
  2179. "time": "2022-02-20T18:06:09+00:00"
  2180. },
  2181. {
  2182. "name": "nette/utils",
  2183. "version": "v3.2.7",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/nette/utils.git",
  2187. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2192. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2193. "shasum": "",
  2194. "mirrors": [
  2195. {
  2196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2197. "preferred": true
  2198. }
  2199. ]
  2200. },
  2201. "require": {
  2202. "php": ">=7.2 <8.2"
  2203. },
  2204. "conflict": {
  2205. "nette/di": "<3.0.6"
  2206. },
  2207. "require-dev": {
  2208. "nette/tester": "~2.0",
  2209. "phpstan/phpstan": "^1.0",
  2210. "tracy/tracy": "^2.3"
  2211. },
  2212. "suggest": {
  2213. "ext-gd": "to use Image",
  2214. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2215. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2216. "ext-json": "to use Nette\\Utils\\Json",
  2217. "ext-mbstring": "to use Strings::lower() etc...",
  2218. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2219. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "3.2-dev"
  2225. }
  2226. },
  2227. "autoload": {
  2228. "classmap": [
  2229. "src/"
  2230. ]
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "BSD-3-Clause",
  2235. "GPL-2.0-only",
  2236. "GPL-3.0-only"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "David Grudl",
  2241. "homepage": "https://davidgrudl.com"
  2242. },
  2243. {
  2244. "name": "Nette Community",
  2245. "homepage": "https://nette.org/contributors"
  2246. }
  2247. ],
  2248. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2249. "homepage": "https://nette.org",
  2250. "keywords": [
  2251. "array",
  2252. "core",
  2253. "datetime",
  2254. "images",
  2255. "json",
  2256. "nette",
  2257. "paginator",
  2258. "password",
  2259. "slugify",
  2260. "string",
  2261. "unicode",
  2262. "utf-8",
  2263. "utility",
  2264. "validation"
  2265. ],
  2266. "support": {
  2267. "issues": "https://github.com/nette/utils/issues",
  2268. "source": "https://github.com/nette/utils/tree/v3.2.7"
  2269. },
  2270. "time": "2022-01-24T11:29:14+00:00"
  2271. },
  2272. {
  2273. "name": "open-smf/connection-pool",
  2274. "version": "v1.0.16",
  2275. "source": {
  2276. "type": "git",
  2277. "url": "https://github.com/open-smf/connection-pool.git",
  2278. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0"
  2279. },
  2280. "dist": {
  2281. "type": "zip",
  2282. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f70e47dbf56f1869d3207e15825cf38810b865e0",
  2283. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0",
  2284. "shasum": "",
  2285. "mirrors": [
  2286. {
  2287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2288. "preferred": true
  2289. }
  2290. ]
  2291. },
  2292. "require": {
  2293. "ext-json": "*",
  2294. "ext-swoole": ">=4.2.9",
  2295. "php": ">=7.0.0"
  2296. },
  2297. "require-dev": {
  2298. "swoole/ide-helper": "@dev"
  2299. },
  2300. "suggest": {
  2301. "ext-redis": "A PHP extension for Redis."
  2302. },
  2303. "type": "library",
  2304. "autoload": {
  2305. "psr-4": {
  2306. "Smf\\ConnectionPool\\": "src"
  2307. }
  2308. },
  2309. "notification-url": "https://packagist.org/downloads/",
  2310. "license": [
  2311. "MIT"
  2312. ],
  2313. "authors": [
  2314. {
  2315. "name": "Xie Biao",
  2316. "email": "hhxsv5@sina.com"
  2317. }
  2318. ],
  2319. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  2320. "homepage": "https://github.com/open-smf/connection-pool",
  2321. "keywords": [
  2322. "connection-pool",
  2323. "database-connection-pool",
  2324. "swoole"
  2325. ],
  2326. "support": {
  2327. "issues": "https://github.com/open-smf/connection-pool/issues",
  2328. "source": "https://github.com/open-smf/connection-pool"
  2329. },
  2330. "time": "2021-03-01T04:13:24+00:00"
  2331. },
  2332. {
  2333. "name": "overtrue/socialite",
  2334. "version": "3.2.3",
  2335. "source": {
  2336. "type": "git",
  2337. "url": "https://github.com/overtrue/socialite.git",
  2338. "reference": "e331d3e2eb7040a53c674590dfa475b3ae141d32"
  2339. },
  2340. "dist": {
  2341. "type": "zip",
  2342. "url": "https://api.github.com/repos/overtrue/socialite/zipball/e331d3e2eb7040a53c674590dfa475b3ae141d32",
  2343. "reference": "e331d3e2eb7040a53c674590dfa475b3ae141d32",
  2344. "shasum": "",
  2345. "mirrors": [
  2346. {
  2347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2348. "preferred": true
  2349. }
  2350. ]
  2351. },
  2352. "require": {
  2353. "ext-json": "*",
  2354. "ext-openssl": "*",
  2355. "guzzlehttp/guzzle": "~6.0|~7.0",
  2356. "php": ">=7.4",
  2357. "symfony/http-foundation": "^5.0",
  2358. "symfony/psr-http-message-bridge": "^2.0"
  2359. },
  2360. "require-dev": {
  2361. "mockery/mockery": "~1.2",
  2362. "phpunit/phpunit": "~9.0"
  2363. },
  2364. "type": "library",
  2365. "autoload": {
  2366. "psr-4": {
  2367. "Overtrue\\Socialite\\": "src/"
  2368. }
  2369. },
  2370. "notification-url": "https://packagist.org/downloads/",
  2371. "license": [
  2372. "MIT"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "overtrue",
  2377. "email": "anzhengchao@gmail.com"
  2378. }
  2379. ],
  2380. "description": "A collection of OAuth 2 packages.",
  2381. "keywords": [
  2382. "Feishu",
  2383. "login",
  2384. "oauth",
  2385. "qcloud",
  2386. "qq",
  2387. "social",
  2388. "wechat",
  2389. "weibo"
  2390. ],
  2391. "support": {
  2392. "issues": "https://github.com/overtrue/socialite/issues",
  2393. "source": "https://github.com/overtrue/socialite/tree/3.2.3"
  2394. },
  2395. "funding": [
  2396. {
  2397. "url": "https://www.patreon.com/overtrue",
  2398. "type": "patreon"
  2399. }
  2400. ],
  2401. "time": "2021-05-27T05:04:00+00:00"
  2402. },
  2403. {
  2404. "name": "overtrue/wechat",
  2405. "version": "5.7.1",
  2406. "source": {
  2407. "type": "git",
  2408. "url": "https://github.com/w7corp/easywechat.git",
  2409. "reference": "af06e58784aaaeaadc35f984e7e38ef05197bb31"
  2410. },
  2411. "dist": {
  2412. "type": "zip",
  2413. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/af06e58784aaaeaadc35f984e7e38ef05197bb31",
  2414. "reference": "af06e58784aaaeaadc35f984e7e38ef05197bb31",
  2415. "shasum": "",
  2416. "mirrors": [
  2417. {
  2418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2419. "preferred": true
  2420. }
  2421. ]
  2422. },
  2423. "require": {
  2424. "easywechat-composer/easywechat-composer": "^1.1",
  2425. "ext-fileinfo": "*",
  2426. "ext-libxml": "*",
  2427. "ext-openssl": "*",
  2428. "ext-simplexml": "*",
  2429. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2430. "monolog/monolog": "^1.22 || ^2.0",
  2431. "overtrue/socialite": "^3.2",
  2432. "php": ">=7.4",
  2433. "pimple/pimple": "^3.0",
  2434. "psr/simple-cache": "^1.0",
  2435. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  2436. "symfony/event-dispatcher": "^4.3 || ^5.0",
  2437. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  2438. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  2439. },
  2440. "require-dev": {
  2441. "brainmaestro/composer-git-hooks": "^2.7",
  2442. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  2443. "friendsofphp/php-cs-fixer": "^2.15",
  2444. "mikey179/vfsstream": "^1.6",
  2445. "mockery/mockery": "^1.2.3",
  2446. "phpstan/phpstan": "^0.12.0",
  2447. "phpunit/phpunit": "^9.3"
  2448. },
  2449. "type": "library",
  2450. "extra": {
  2451. "hooks": {
  2452. "pre-commit": [
  2453. "composer test",
  2454. "composer fix-style"
  2455. ],
  2456. "pre-push": [
  2457. "composer test",
  2458. "composer fix-style"
  2459. ]
  2460. }
  2461. },
  2462. "autoload": {
  2463. "psr-4": {
  2464. "EasyWeChat\\": "src/"
  2465. },
  2466. "files": [
  2467. "src/Kernel/Support/Helpers.php",
  2468. "src/Kernel/Helpers.php"
  2469. ]
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "overtrue",
  2478. "email": "anzhengchao@gmail.com"
  2479. }
  2480. ],
  2481. "description": "微信SDK",
  2482. "keywords": [
  2483. "easywechat",
  2484. "sdk",
  2485. "wechat",
  2486. "weixin",
  2487. "weixin-sdk"
  2488. ],
  2489. "support": {
  2490. "issues": "https://github.com/w7corp/easywechat/issues",
  2491. "source": "https://github.com/w7corp/easywechat/tree/5.7.1"
  2492. },
  2493. "funding": [
  2494. {
  2495. "url": "https://www.easywechat.com/img/pay/wechat.jpg",
  2496. "type": "custom"
  2497. },
  2498. {
  2499. "url": "https://github.com/overtrue",
  2500. "type": "github"
  2501. },
  2502. {
  2503. "url": "https://www.patreon.com/overtrue",
  2504. "type": "patreon"
  2505. }
  2506. ],
  2507. "time": "2021-07-20T06:15:59+00:00"
  2508. },
  2509. {
  2510. "name": "phpoffice/phpspreadsheet",
  2511. "version": "1.18.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2515. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  2520. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  2521. "shasum": "",
  2522. "mirrors": [
  2523. {
  2524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2525. "preferred": true
  2526. }
  2527. ]
  2528. },
  2529. "require": {
  2530. "ext-ctype": "*",
  2531. "ext-dom": "*",
  2532. "ext-fileinfo": "*",
  2533. "ext-gd": "*",
  2534. "ext-iconv": "*",
  2535. "ext-libxml": "*",
  2536. "ext-mbstring": "*",
  2537. "ext-simplexml": "*",
  2538. "ext-xml": "*",
  2539. "ext-xmlreader": "*",
  2540. "ext-xmlwriter": "*",
  2541. "ext-zip": "*",
  2542. "ext-zlib": "*",
  2543. "ezyang/htmlpurifier": "^4.13",
  2544. "maennchen/zipstream-php": "^2.1",
  2545. "markbaker/complex": "^2.0",
  2546. "markbaker/matrix": "^2.0",
  2547. "php": "^7.2 || ^8.0",
  2548. "psr/http-client": "^1.0",
  2549. "psr/http-factory": "^1.0",
  2550. "psr/simple-cache": "^1.0"
  2551. },
  2552. "require-dev": {
  2553. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2554. "dompdf/dompdf": "^1.0",
  2555. "friendsofphp/php-cs-fixer": "^2.18",
  2556. "jpgraph/jpgraph": "^4.0",
  2557. "mpdf/mpdf": "^8.0",
  2558. "phpcompatibility/php-compatibility": "^9.3",
  2559. "phpstan/phpstan": "^0.12.82",
  2560. "phpstan/phpstan-phpunit": "^0.12.18",
  2561. "phpunit/phpunit": "^8.5",
  2562. "squizlabs/php_codesniffer": "^3.5",
  2563. "tecnickcom/tcpdf": "^6.3"
  2564. },
  2565. "suggest": {
  2566. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2567. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2568. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2569. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2570. },
  2571. "type": "library",
  2572. "autoload": {
  2573. "psr-4": {
  2574. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Maarten Balliauw",
  2584. "homepage": "https://blog.maartenballiauw.be"
  2585. },
  2586. {
  2587. "name": "Mark Baker",
  2588. "homepage": "https://markbakeruk.net"
  2589. },
  2590. {
  2591. "name": "Franck Lefevre",
  2592. "homepage": "https://rootslabs.net"
  2593. },
  2594. {
  2595. "name": "Erik Tilt"
  2596. },
  2597. {
  2598. "name": "Adrien Crivelli"
  2599. }
  2600. ],
  2601. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2602. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2603. "keywords": [
  2604. "OpenXML",
  2605. "excel",
  2606. "gnumeric",
  2607. "ods",
  2608. "php",
  2609. "spreadsheet",
  2610. "xls",
  2611. "xlsx"
  2612. ],
  2613. "support": {
  2614. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2615. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  2616. },
  2617. "time": "2021-05-31T18:21:15+00:00"
  2618. },
  2619. {
  2620. "name": "pimple/pimple",
  2621. "version": "v3.4.0",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://github.com/silexphp/Pimple.git",
  2625. "reference": "86406047271859ffc13424a048541f4531f53601"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  2630. "reference": "86406047271859ffc13424a048541f4531f53601",
  2631. "shasum": "",
  2632. "mirrors": [
  2633. {
  2634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2635. "preferred": true
  2636. }
  2637. ]
  2638. },
  2639. "require": {
  2640. "php": ">=7.2.5",
  2641. "psr/container": "^1.1"
  2642. },
  2643. "require-dev": {
  2644. "symfony/phpunit-bridge": "^5.0"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-master": "3.4.x-dev"
  2650. }
  2651. },
  2652. "autoload": {
  2653. "psr-0": {
  2654. "Pimple": "src/"
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Fabien Potencier",
  2664. "email": "fabien@symfony.com"
  2665. }
  2666. ],
  2667. "description": "Pimple, a simple Dependency Injection Container",
  2668. "homepage": "https://pimple.symfony.com",
  2669. "keywords": [
  2670. "container",
  2671. "dependency injection"
  2672. ],
  2673. "support": {
  2674. "source": "https://github.com/silexphp/Pimple/tree/v3.4.0"
  2675. },
  2676. "time": "2021-03-06T08:28:00+00:00"
  2677. },
  2678. {
  2679. "name": "psr/cache",
  2680. "version": "1.0.1",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/php-fig/cache.git",
  2684. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2689. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2690. "shasum": "",
  2691. "mirrors": [
  2692. {
  2693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2694. "preferred": true
  2695. }
  2696. ]
  2697. },
  2698. "require": {
  2699. "php": ">=5.3.0"
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "1.0.x-dev"
  2705. }
  2706. },
  2707. "autoload": {
  2708. "psr-4": {
  2709. "Psr\\Cache\\": "src/"
  2710. }
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "PHP-FIG",
  2719. "homepage": "http://www.php-fig.org/"
  2720. }
  2721. ],
  2722. "description": "Common interface for caching libraries",
  2723. "keywords": [
  2724. "cache",
  2725. "psr",
  2726. "psr-6"
  2727. ],
  2728. "support": {
  2729. "source": "https://github.com/php-fig/cache/tree/master"
  2730. },
  2731. "time": "2016-08-06T20:24:11+00:00"
  2732. },
  2733. {
  2734. "name": "psr/container",
  2735. "version": "1.1.2",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/php-fig/container.git",
  2739. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2744. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2745. "shasum": "",
  2746. "mirrors": [
  2747. {
  2748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2749. "preferred": true
  2750. }
  2751. ]
  2752. },
  2753. "require": {
  2754. "php": ">=7.4.0"
  2755. },
  2756. "type": "library",
  2757. "autoload": {
  2758. "psr-4": {
  2759. "Psr\\Container\\": "src/"
  2760. }
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "PHP-FIG",
  2769. "homepage": "https://www.php-fig.org/"
  2770. }
  2771. ],
  2772. "description": "Common Container Interface (PHP FIG PSR-11)",
  2773. "homepage": "https://github.com/php-fig/container",
  2774. "keywords": [
  2775. "PSR-11",
  2776. "container",
  2777. "container-interface",
  2778. "container-interop",
  2779. "psr"
  2780. ],
  2781. "support": {
  2782. "issues": "https://github.com/php-fig/container/issues",
  2783. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2784. },
  2785. "time": "2021-11-05T16:50:12+00:00"
  2786. },
  2787. {
  2788. "name": "psr/event-dispatcher",
  2789. "version": "1.0.0",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://github.com/php-fig/event-dispatcher.git",
  2793. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2798. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2799. "shasum": "",
  2800. "mirrors": [
  2801. {
  2802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2803. "preferred": true
  2804. }
  2805. ]
  2806. },
  2807. "require": {
  2808. "php": ">=7.2.0"
  2809. },
  2810. "type": "library",
  2811. "extra": {
  2812. "branch-alias": {
  2813. "dev-master": "1.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Psr\\EventDispatcher\\": "src/"
  2819. }
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "MIT"
  2824. ],
  2825. "authors": [
  2826. {
  2827. "name": "PHP-FIG",
  2828. "homepage": "http://www.php-fig.org/"
  2829. }
  2830. ],
  2831. "description": "Standard interfaces for event handling.",
  2832. "keywords": [
  2833. "events",
  2834. "psr",
  2835. "psr-14"
  2836. ],
  2837. "support": {
  2838. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2839. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2840. },
  2841. "time": "2019-01-08T18:20:26+00:00"
  2842. },
  2843. {
  2844. "name": "psr/http-client",
  2845. "version": "1.0.3",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/php-fig/http-client.git",
  2849. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2854. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2855. "shasum": "",
  2856. "mirrors": [
  2857. {
  2858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2859. "preferred": true
  2860. }
  2861. ]
  2862. },
  2863. "require": {
  2864. "php": "^7.0 || ^8.0",
  2865. "psr/http-message": "^1.0 || ^2.0"
  2866. },
  2867. "type": "library",
  2868. "extra": {
  2869. "branch-alias": {
  2870. "dev-master": "1.0.x-dev"
  2871. }
  2872. },
  2873. "autoload": {
  2874. "psr-4": {
  2875. "Psr\\Http\\Client\\": "src/"
  2876. }
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "MIT"
  2881. ],
  2882. "authors": [
  2883. {
  2884. "name": "PHP-FIG",
  2885. "homepage": "https://www.php-fig.org/"
  2886. }
  2887. ],
  2888. "description": "Common interface for HTTP clients",
  2889. "homepage": "https://github.com/php-fig/http-client",
  2890. "keywords": [
  2891. "http",
  2892. "http-client",
  2893. "psr",
  2894. "psr-18"
  2895. ],
  2896. "support": {
  2897. "source": "https://github.com/php-fig/http-client"
  2898. },
  2899. "time": "2023-09-23T14:17:50+00:00"
  2900. },
  2901. {
  2902. "name": "psr/http-factory",
  2903. "version": "1.0.2",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/php-fig/http-factory.git",
  2907. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2912. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2913. "shasum": "",
  2914. "mirrors": [
  2915. {
  2916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2917. "preferred": true
  2918. }
  2919. ]
  2920. },
  2921. "require": {
  2922. "php": ">=7.0.0",
  2923. "psr/http-message": "^1.0 || ^2.0"
  2924. },
  2925. "type": "library",
  2926. "extra": {
  2927. "branch-alias": {
  2928. "dev-master": "1.0.x-dev"
  2929. }
  2930. },
  2931. "autoload": {
  2932. "psr-4": {
  2933. "Psr\\Http\\Message\\": "src/"
  2934. }
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "PHP-FIG",
  2943. "homepage": "https://www.php-fig.org/"
  2944. }
  2945. ],
  2946. "description": "Common interfaces for PSR-7 HTTP message factories",
  2947. "keywords": [
  2948. "factory",
  2949. "http",
  2950. "message",
  2951. "psr",
  2952. "psr-17",
  2953. "psr-7",
  2954. "request",
  2955. "response"
  2956. ],
  2957. "support": {
  2958. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2959. },
  2960. "time": "2023-04-10T20:10:41+00:00"
  2961. },
  2962. {
  2963. "name": "psr/http-message",
  2964. "version": "1.1",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/php-fig/http-message.git",
  2968. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2973. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2974. "shasum": "",
  2975. "mirrors": [
  2976. {
  2977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2978. "preferred": true
  2979. }
  2980. ]
  2981. },
  2982. "require": {
  2983. "php": "^7.2 || ^8.0"
  2984. },
  2985. "type": "library",
  2986. "extra": {
  2987. "branch-alias": {
  2988. "dev-master": "1.1.x-dev"
  2989. }
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Psr\\Http\\Message\\": "src/"
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "PHP-FIG",
  3003. "homepage": "http://www.php-fig.org/"
  3004. }
  3005. ],
  3006. "description": "Common interface for HTTP messages",
  3007. "homepage": "https://github.com/php-fig/http-message",
  3008. "keywords": [
  3009. "http",
  3010. "http-message",
  3011. "psr",
  3012. "psr-7",
  3013. "request",
  3014. "response"
  3015. ],
  3016. "support": {
  3017. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3018. },
  3019. "time": "2023-04-04T09:50:52+00:00"
  3020. },
  3021. {
  3022. "name": "psr/log",
  3023. "version": "1.1.4",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://github.com/php-fig/log.git",
  3027. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3032. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3033. "shasum": "",
  3034. "mirrors": [
  3035. {
  3036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3037. "preferred": true
  3038. }
  3039. ]
  3040. },
  3041. "require": {
  3042. "php": ">=5.3.0"
  3043. },
  3044. "type": "library",
  3045. "extra": {
  3046. "branch-alias": {
  3047. "dev-master": "1.1.x-dev"
  3048. }
  3049. },
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Psr\\Log\\": "Psr/Log/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "PHP-FIG",
  3062. "homepage": "https://www.php-fig.org/"
  3063. }
  3064. ],
  3065. "description": "Common interface for logging libraries",
  3066. "homepage": "https://github.com/php-fig/log",
  3067. "keywords": [
  3068. "log",
  3069. "psr",
  3070. "psr-3"
  3071. ],
  3072. "support": {
  3073. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3074. },
  3075. "time": "2021-05-03T11:20:27+00:00"
  3076. },
  3077. {
  3078. "name": "psr/simple-cache",
  3079. "version": "1.0.1",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/php-fig/simple-cache.git",
  3083. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3088. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3089. "shasum": "",
  3090. "mirrors": [
  3091. {
  3092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3093. "preferred": true
  3094. }
  3095. ]
  3096. },
  3097. "require": {
  3098. "php": ">=5.3.0"
  3099. },
  3100. "type": "library",
  3101. "extra": {
  3102. "branch-alias": {
  3103. "dev-master": "1.0.x-dev"
  3104. }
  3105. },
  3106. "autoload": {
  3107. "psr-4": {
  3108. "Psr\\SimpleCache\\": "src/"
  3109. }
  3110. },
  3111. "notification-url": "https://packagist.org/downloads/",
  3112. "license": [
  3113. "MIT"
  3114. ],
  3115. "authors": [
  3116. {
  3117. "name": "PHP-FIG",
  3118. "homepage": "http://www.php-fig.org/"
  3119. }
  3120. ],
  3121. "description": "Common interfaces for simple caching",
  3122. "keywords": [
  3123. "cache",
  3124. "caching",
  3125. "psr",
  3126. "psr-16",
  3127. "simple-cache"
  3128. ],
  3129. "support": {
  3130. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3131. },
  3132. "time": "2017-10-23T01:57:42+00:00"
  3133. },
  3134. {
  3135. "name": "qcloud/cos-sdk-v5",
  3136. "version": "v2.4.4",
  3137. "source": {
  3138. "type": "git",
  3139. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  3140. "reference": "2862ce2c9244eb12f099483db578910bde9b045a"
  3141. },
  3142. "dist": {
  3143. "type": "zip",
  3144. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/2862ce2c9244eb12f099483db578910bde9b045a",
  3145. "reference": "2862ce2c9244eb12f099483db578910bde9b045a",
  3146. "shasum": "",
  3147. "mirrors": [
  3148. {
  3149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3150. "preferred": true
  3151. }
  3152. ]
  3153. },
  3154. "require": {
  3155. "ext-curl": "*",
  3156. "ext-json": "*",
  3157. "ext-simplexml": "*",
  3158. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  3159. "guzzlehttp/guzzle-services": "^1.1",
  3160. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  3161. "php": ">=5.6"
  3162. },
  3163. "type": "library",
  3164. "autoload": {
  3165. "psr-4": {
  3166. "Qcloud\\Cos\\": "src/"
  3167. },
  3168. "files": [
  3169. "src/Common.php"
  3170. ]
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "MIT"
  3175. ],
  3176. "authors": [
  3177. {
  3178. "name": "yaozongyou",
  3179. "email": "yaozongyou@vip.qq.com"
  3180. },
  3181. {
  3182. "name": "lewzylu",
  3183. "email": "327874225@qq.com"
  3184. },
  3185. {
  3186. "name": "tuunalai",
  3187. "email": "550566181@qq.com"
  3188. }
  3189. ],
  3190. "description": "PHP SDK for QCloud COS",
  3191. "keywords": [
  3192. "cos",
  3193. "php",
  3194. "qcloud"
  3195. ],
  3196. "support": {
  3197. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  3198. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.4.4"
  3199. },
  3200. "time": "2021-12-03T02:40:30+00:00"
  3201. },
  3202. {
  3203. "name": "qiniu/php-sdk",
  3204. "version": "v7.4.0",
  3205. "source": {
  3206. "type": "git",
  3207. "url": "https://github.com/qiniu/php-sdk.git",
  3208. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82"
  3209. },
  3210. "dist": {
  3211. "type": "zip",
  3212. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3213. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3214. "shasum": "",
  3215. "mirrors": [
  3216. {
  3217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3218. "preferred": true
  3219. }
  3220. ]
  3221. },
  3222. "require": {
  3223. "php": ">=5.3.3"
  3224. },
  3225. "require-dev": {
  3226. "phpunit/phpunit": "~4.0",
  3227. "squizlabs/php_codesniffer": "~3.6"
  3228. },
  3229. "type": "library",
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Qiniu\\": "src/Qiniu"
  3233. },
  3234. "files": [
  3235. "src/Qiniu/functions.php"
  3236. ]
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "MIT"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Qiniu",
  3245. "email": "sdk@qiniu.com",
  3246. "homepage": "http://www.qiniu.com"
  3247. }
  3248. ],
  3249. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3250. "homepage": "http://developer.qiniu.com/",
  3251. "keywords": [
  3252. "cloud",
  3253. "qiniu",
  3254. "sdk",
  3255. "storage"
  3256. ],
  3257. "support": {
  3258. "issues": "https://github.com/qiniu/php-sdk/issues",
  3259. "source": "https://github.com/qiniu/php-sdk/tree/v7.4.0"
  3260. },
  3261. "time": "2021-07-19T07:41:36+00:00"
  3262. },
  3263. {
  3264. "name": "ralouphie/getallheaders",
  3265. "version": "3.0.3",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/ralouphie/getallheaders.git",
  3269. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3274. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3275. "shasum": "",
  3276. "mirrors": [
  3277. {
  3278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3279. "preferred": true
  3280. }
  3281. ]
  3282. },
  3283. "require": {
  3284. "php": ">=5.6"
  3285. },
  3286. "require-dev": {
  3287. "php-coveralls/php-coveralls": "^2.1",
  3288. "phpunit/phpunit": "^5 || ^6.5"
  3289. },
  3290. "type": "library",
  3291. "autoload": {
  3292. "files": [
  3293. "src/getallheaders.php"
  3294. ]
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Ralph Khattar",
  3303. "email": "ralph.khattar@gmail.com"
  3304. }
  3305. ],
  3306. "description": "A polyfill for getallheaders.",
  3307. "support": {
  3308. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3309. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3310. },
  3311. "time": "2019-03-08T08:55:37+00:00"
  3312. },
  3313. {
  3314. "name": "rmccue/requests",
  3315. "version": "v1.8.1",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://github.com/WordPress/Requests.git",
  3319. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://api.github.com/repos/WordPress/Requests/zipball/82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  3324. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  3325. "shasum": "",
  3326. "mirrors": [
  3327. {
  3328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3329. "preferred": true
  3330. }
  3331. ]
  3332. },
  3333. "require": {
  3334. "php": ">=5.2"
  3335. },
  3336. "require-dev": {
  3337. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  3338. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  3339. "php-parallel-lint/php-parallel-lint": "^1.3",
  3340. "phpcompatibility/php-compatibility": "^9.0",
  3341. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  3342. "requests/test-server": "dev-master",
  3343. "squizlabs/php_codesniffer": "^3.5",
  3344. "wp-coding-standards/wpcs": "^2.0"
  3345. },
  3346. "type": "library",
  3347. "autoload": {
  3348. "psr-0": {
  3349. "Requests": "library/"
  3350. }
  3351. },
  3352. "notification-url": "https://packagist.org/downloads/",
  3353. "license": [
  3354. "ISC"
  3355. ],
  3356. "authors": [
  3357. {
  3358. "name": "Ryan McCue",
  3359. "homepage": "http://ryanmccue.info"
  3360. }
  3361. ],
  3362. "description": "A HTTP library written in PHP, for human beings.",
  3363. "homepage": "http://github.com/WordPress/Requests",
  3364. "keywords": [
  3365. "curl",
  3366. "fsockopen",
  3367. "http",
  3368. "idna",
  3369. "ipv6",
  3370. "iri",
  3371. "sockets"
  3372. ],
  3373. "support": {
  3374. "issues": "https://github.com/WordPress/Requests/issues",
  3375. "source": "https://github.com/WordPress/Requests/tree/v1.8.1"
  3376. },
  3377. "time": "2021-06-04T09:56:25+00:00"
  3378. },
  3379. {
  3380. "name": "songshenzong/support",
  3381. "version": "2.0.5",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/songshenzong/support.git",
  3385. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/songshenzong/support/zipball/34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3390. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3391. "shasum": "",
  3392. "mirrors": [
  3393. {
  3394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3395. "preferred": true
  3396. }
  3397. ]
  3398. },
  3399. "require": {
  3400. "danielstjules/stringy": "^3.1",
  3401. "ext-json": "*",
  3402. "ext-simplexml": "*",
  3403. "ext-xml": "*",
  3404. "php": ">=5.5"
  3405. },
  3406. "require-dev": {
  3407. "laravel/framework": "^5.8",
  3408. "phpunit/phpunit": "^4.8.35|^5.4.3"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "laravel": {
  3413. "providers": [
  3414. "Songshenzong\\Support\\StringsServiceProvider"
  3415. ],
  3416. "aliases": {
  3417. "Strings": "Songshenzong\\Support\\StringsFacade"
  3418. }
  3419. }
  3420. },
  3421. "autoload": {
  3422. "psr-4": {
  3423. "Songshenzong\\Support\\": "src/"
  3424. },
  3425. "files": [
  3426. "src/StringsHelpers.php",
  3427. "src/BashEchoHelpers.php"
  3428. ]
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "Songshenzong",
  3437. "email": "i@songshenzong.com"
  3438. }
  3439. ],
  3440. "description": "The Songshenzong Support package.",
  3441. "homepage": "http://songshenzong.com",
  3442. "keywords": [
  3443. "laravel",
  3444. "support",
  3445. "tools",
  3446. "web"
  3447. ],
  3448. "support": {
  3449. "issues": "https://github.com/songshenzong/support/issues",
  3450. "source": "https://github.com/songshenzong/support"
  3451. },
  3452. "time": "2019-08-29T01:59:12+00:00"
  3453. },
  3454. {
  3455. "name": "stechstudio/backoff",
  3456. "version": "1.2",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/stechstudio/backoff.git",
  3460. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/stechstudio/backoff/zipball/816e46107a6be2e1072ba0ff2cb26034872dfa49",
  3465. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49",
  3466. "shasum": "",
  3467. "mirrors": [
  3468. {
  3469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3470. "preferred": true
  3471. }
  3472. ]
  3473. },
  3474. "require-dev": {
  3475. "phpunit/phpunit": "5.5.*"
  3476. },
  3477. "type": "library",
  3478. "autoload": {
  3479. "files": [
  3480. "src/helpers.php"
  3481. ],
  3482. "psr-4": {
  3483. "STS\\Backoff\\": "src"
  3484. }
  3485. },
  3486. "notification-url": "https://packagist.org/downloads/",
  3487. "license": [
  3488. "MIT"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "Joseph Szobody",
  3493. "email": "joseph@stechstudio.com"
  3494. }
  3495. ],
  3496. "description": "PHP library providing retry functionality with multiple backoff strategies and jitter support",
  3497. "support": {
  3498. "issues": "https://github.com/stechstudio/backoff/issues",
  3499. "source": "https://github.com/stechstudio/backoff/tree/1.2"
  3500. },
  3501. "time": "2020-12-26T14:57:10+00:00"
  3502. },
  3503. {
  3504. "name": "swoole/ide-helper",
  3505. "version": "4.8.7",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/swoole/ide-helper.git",
  3509. "reference": "62d306dcfdb7c2cd21768386955af9de387163f9"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/62d306dcfdb7c2cd21768386955af9de387163f9",
  3514. "reference": "62d306dcfdb7c2cd21768386955af9de387163f9",
  3515. "shasum": "",
  3516. "mirrors": [
  3517. {
  3518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3519. "preferred": true
  3520. }
  3521. ]
  3522. },
  3523. "type": "library",
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "Apache-2.0"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "Team Swoole",
  3531. "email": "team@swoole.com"
  3532. }
  3533. ],
  3534. "description": "IDE help files for Swoole.",
  3535. "support": {
  3536. "issues": "https://github.com/swoole/ide-helper/issues",
  3537. "source": "https://github.com/swoole/ide-helper/tree/4.8.7"
  3538. },
  3539. "funding": [
  3540. {
  3541. "url": "https://gitee.com/swoole/swoole?donate=true",
  3542. "type": "custom"
  3543. },
  3544. {
  3545. "url": "https://github.com/swoole",
  3546. "type": "github"
  3547. }
  3548. ],
  3549. "time": "2022-02-23T01:04:01+00:00"
  3550. },
  3551. {
  3552. "name": "symfony/cache",
  3553. "version": "v5.3.4",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://github.com/symfony/cache.git",
  3557. "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661",
  3562. "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661",
  3563. "shasum": "",
  3564. "mirrors": [
  3565. {
  3566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3567. "preferred": true
  3568. }
  3569. ]
  3570. },
  3571. "require": {
  3572. "php": ">=7.2.5",
  3573. "psr/cache": "^1.0|^2.0",
  3574. "psr/log": "^1.1|^2|^3",
  3575. "symfony/cache-contracts": "^1.1.7|^2",
  3576. "symfony/deprecation-contracts": "^2.1",
  3577. "symfony/polyfill-php80": "^1.16",
  3578. "symfony/service-contracts": "^1.1|^2",
  3579. "symfony/var-exporter": "^4.4|^5.0"
  3580. },
  3581. "conflict": {
  3582. "doctrine/dbal": "<2.10",
  3583. "symfony/dependency-injection": "<4.4",
  3584. "symfony/http-kernel": "<4.4",
  3585. "symfony/var-dumper": "<4.4"
  3586. },
  3587. "provide": {
  3588. "psr/cache-implementation": "1.0|2.0",
  3589. "psr/simple-cache-implementation": "1.0",
  3590. "symfony/cache-implementation": "1.0|2.0"
  3591. },
  3592. "require-dev": {
  3593. "cache/integration-tests": "dev-master",
  3594. "doctrine/cache": "^1.6|^2.0",
  3595. "doctrine/dbal": "^2.10|^3.0",
  3596. "predis/predis": "^1.1",
  3597. "psr/simple-cache": "^1.0",
  3598. "symfony/config": "^4.4|^5.0",
  3599. "symfony/dependency-injection": "^4.4|^5.0",
  3600. "symfony/filesystem": "^4.4|^5.0",
  3601. "symfony/http-kernel": "^4.4|^5.0",
  3602. "symfony/messenger": "^4.4|^5.0",
  3603. "symfony/var-dumper": "^4.4|^5.0"
  3604. },
  3605. "type": "library",
  3606. "autoload": {
  3607. "psr-4": {
  3608. "Symfony\\Component\\Cache\\": ""
  3609. },
  3610. "exclude-from-classmap": [
  3611. "/Tests/"
  3612. ]
  3613. },
  3614. "notification-url": "https://packagist.org/downloads/",
  3615. "license": [
  3616. "MIT"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "Nicolas Grekas",
  3621. "email": "p@tchwork.com"
  3622. },
  3623. {
  3624. "name": "Symfony Community",
  3625. "homepage": "https://symfony.com/contributors"
  3626. }
  3627. ],
  3628. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  3629. "homepage": "https://symfony.com",
  3630. "keywords": [
  3631. "caching",
  3632. "psr6"
  3633. ],
  3634. "support": {
  3635. "source": "https://github.com/symfony/cache/tree/v5.3.4"
  3636. },
  3637. "funding": [
  3638. {
  3639. "url": "https://symfony.com/sponsor",
  3640. "type": "custom"
  3641. },
  3642. {
  3643. "url": "https://github.com/fabpot",
  3644. "type": "github"
  3645. },
  3646. {
  3647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3648. "type": "tidelift"
  3649. }
  3650. ],
  3651. "time": "2021-07-23T15:55:36+00:00"
  3652. },
  3653. {
  3654. "name": "symfony/cache-contracts",
  3655. "version": "v2.4.0",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/symfony/cache-contracts.git",
  3659. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d",
  3664. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d",
  3665. "shasum": "",
  3666. "mirrors": [
  3667. {
  3668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3669. "preferred": true
  3670. }
  3671. ]
  3672. },
  3673. "require": {
  3674. "php": ">=7.2.5",
  3675. "psr/cache": "^1.0|^2.0|^3.0"
  3676. },
  3677. "suggest": {
  3678. "symfony/cache-implementation": ""
  3679. },
  3680. "type": "library",
  3681. "extra": {
  3682. "branch-alias": {
  3683. "dev-main": "2.4-dev"
  3684. },
  3685. "thanks": {
  3686. "name": "symfony/contracts",
  3687. "url": "https://github.com/symfony/contracts"
  3688. }
  3689. },
  3690. "autoload": {
  3691. "psr-4": {
  3692. "Symfony\\Contracts\\Cache\\": ""
  3693. }
  3694. },
  3695. "notification-url": "https://packagist.org/downloads/",
  3696. "license": [
  3697. "MIT"
  3698. ],
  3699. "authors": [
  3700. {
  3701. "name": "Nicolas Grekas",
  3702. "email": "p@tchwork.com"
  3703. },
  3704. {
  3705. "name": "Symfony Community",
  3706. "homepage": "https://symfony.com/contributors"
  3707. }
  3708. ],
  3709. "description": "Generic abstractions related to caching",
  3710. "homepage": "https://symfony.com",
  3711. "keywords": [
  3712. "abstractions",
  3713. "contracts",
  3714. "decoupling",
  3715. "interfaces",
  3716. "interoperability",
  3717. "standards"
  3718. ],
  3719. "support": {
  3720. "source": "https://github.com/symfony/cache-contracts/tree/v2.4.0"
  3721. },
  3722. "funding": [
  3723. {
  3724. "url": "https://symfony.com/sponsor",
  3725. "type": "custom"
  3726. },
  3727. {
  3728. "url": "https://github.com/fabpot",
  3729. "type": "github"
  3730. },
  3731. {
  3732. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3733. "type": "tidelift"
  3734. }
  3735. ],
  3736. "time": "2021-03-23T23:28:01+00:00"
  3737. },
  3738. {
  3739. "name": "symfony/deprecation-contracts",
  3740. "version": "v2.4.0",
  3741. "source": {
  3742. "type": "git",
  3743. "url": "https://github.com/symfony/deprecation-contracts.git",
  3744. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  3745. },
  3746. "dist": {
  3747. "type": "zip",
  3748. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3749. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3750. "shasum": "",
  3751. "mirrors": [
  3752. {
  3753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3754. "preferred": true
  3755. }
  3756. ]
  3757. },
  3758. "require": {
  3759. "php": ">=7.1"
  3760. },
  3761. "type": "library",
  3762. "extra": {
  3763. "branch-alias": {
  3764. "dev-main": "2.4-dev"
  3765. },
  3766. "thanks": {
  3767. "name": "symfony/contracts",
  3768. "url": "https://github.com/symfony/contracts"
  3769. }
  3770. },
  3771. "autoload": {
  3772. "files": [
  3773. "function.php"
  3774. ]
  3775. },
  3776. "notification-url": "https://packagist.org/downloads/",
  3777. "license": [
  3778. "MIT"
  3779. ],
  3780. "authors": [
  3781. {
  3782. "name": "Nicolas Grekas",
  3783. "email": "p@tchwork.com"
  3784. },
  3785. {
  3786. "name": "Symfony Community",
  3787. "homepage": "https://symfony.com/contributors"
  3788. }
  3789. ],
  3790. "description": "A generic function and convention to trigger deprecation notices",
  3791. "homepage": "https://symfony.com",
  3792. "support": {
  3793. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  3794. },
  3795. "funding": [
  3796. {
  3797. "url": "https://symfony.com/sponsor",
  3798. "type": "custom"
  3799. },
  3800. {
  3801. "url": "https://github.com/fabpot",
  3802. "type": "github"
  3803. },
  3804. {
  3805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3806. "type": "tidelift"
  3807. }
  3808. ],
  3809. "time": "2021-03-23T23:28:01+00:00"
  3810. },
  3811. {
  3812. "name": "symfony/event-dispatcher",
  3813. "version": "v5.3.4",
  3814. "source": {
  3815. "type": "git",
  3816. "url": "https://github.com/symfony/event-dispatcher.git",
  3817. "reference": "f2fd2208157553874560f3645d4594303058c4bd"
  3818. },
  3819. "dist": {
  3820. "type": "zip",
  3821. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f2fd2208157553874560f3645d4594303058c4bd",
  3822. "reference": "f2fd2208157553874560f3645d4594303058c4bd",
  3823. "shasum": "",
  3824. "mirrors": [
  3825. {
  3826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3827. "preferred": true
  3828. }
  3829. ]
  3830. },
  3831. "require": {
  3832. "php": ">=7.2.5",
  3833. "symfony/deprecation-contracts": "^2.1",
  3834. "symfony/event-dispatcher-contracts": "^2",
  3835. "symfony/polyfill-php80": "^1.16"
  3836. },
  3837. "conflict": {
  3838. "symfony/dependency-injection": "<4.4"
  3839. },
  3840. "provide": {
  3841. "psr/event-dispatcher-implementation": "1.0",
  3842. "symfony/event-dispatcher-implementation": "2.0"
  3843. },
  3844. "require-dev": {
  3845. "psr/log": "^1|^2|^3",
  3846. "symfony/config": "^4.4|^5.0",
  3847. "symfony/dependency-injection": "^4.4|^5.0",
  3848. "symfony/error-handler": "^4.4|^5.0",
  3849. "symfony/expression-language": "^4.4|^5.0",
  3850. "symfony/http-foundation": "^4.4|^5.0",
  3851. "symfony/service-contracts": "^1.1|^2",
  3852. "symfony/stopwatch": "^4.4|^5.0"
  3853. },
  3854. "suggest": {
  3855. "symfony/dependency-injection": "",
  3856. "symfony/http-kernel": ""
  3857. },
  3858. "type": "library",
  3859. "autoload": {
  3860. "psr-4": {
  3861. "Symfony\\Component\\EventDispatcher\\": ""
  3862. },
  3863. "exclude-from-classmap": [
  3864. "/Tests/"
  3865. ]
  3866. },
  3867. "notification-url": "https://packagist.org/downloads/",
  3868. "license": [
  3869. "MIT"
  3870. ],
  3871. "authors": [
  3872. {
  3873. "name": "Fabien Potencier",
  3874. "email": "fabien@symfony.com"
  3875. },
  3876. {
  3877. "name": "Symfony Community",
  3878. "homepage": "https://symfony.com/contributors"
  3879. }
  3880. ],
  3881. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3882. "homepage": "https://symfony.com",
  3883. "support": {
  3884. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.4"
  3885. },
  3886. "funding": [
  3887. {
  3888. "url": "https://symfony.com/sponsor",
  3889. "type": "custom"
  3890. },
  3891. {
  3892. "url": "https://github.com/fabpot",
  3893. "type": "github"
  3894. },
  3895. {
  3896. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3897. "type": "tidelift"
  3898. }
  3899. ],
  3900. "time": "2021-07-23T15:55:36+00:00"
  3901. },
  3902. {
  3903. "name": "symfony/event-dispatcher-contracts",
  3904. "version": "v2.4.0",
  3905. "source": {
  3906. "type": "git",
  3907. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3908. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  3909. },
  3910. "dist": {
  3911. "type": "zip",
  3912. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  3913. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  3914. "shasum": "",
  3915. "mirrors": [
  3916. {
  3917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3918. "preferred": true
  3919. }
  3920. ]
  3921. },
  3922. "require": {
  3923. "php": ">=7.2.5",
  3924. "psr/event-dispatcher": "^1"
  3925. },
  3926. "suggest": {
  3927. "symfony/event-dispatcher-implementation": ""
  3928. },
  3929. "type": "library",
  3930. "extra": {
  3931. "branch-alias": {
  3932. "dev-main": "2.4-dev"
  3933. },
  3934. "thanks": {
  3935. "name": "symfony/contracts",
  3936. "url": "https://github.com/symfony/contracts"
  3937. }
  3938. },
  3939. "autoload": {
  3940. "psr-4": {
  3941. "Symfony\\Contracts\\EventDispatcher\\": ""
  3942. }
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Nicolas Grekas",
  3951. "email": "p@tchwork.com"
  3952. },
  3953. {
  3954. "name": "Symfony Community",
  3955. "homepage": "https://symfony.com/contributors"
  3956. }
  3957. ],
  3958. "description": "Generic abstractions related to dispatching event",
  3959. "homepage": "https://symfony.com",
  3960. "keywords": [
  3961. "abstractions",
  3962. "contracts",
  3963. "decoupling",
  3964. "interfaces",
  3965. "interoperability",
  3966. "standards"
  3967. ],
  3968. "support": {
  3969. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  3970. },
  3971. "funding": [
  3972. {
  3973. "url": "https://symfony.com/sponsor",
  3974. "type": "custom"
  3975. },
  3976. {
  3977. "url": "https://github.com/fabpot",
  3978. "type": "github"
  3979. },
  3980. {
  3981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3982. "type": "tidelift"
  3983. }
  3984. ],
  3985. "time": "2021-03-23T23:28:01+00:00"
  3986. },
  3987. {
  3988. "name": "symfony/finder",
  3989. "version": "v5.4.3",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/symfony/finder.git",
  3993. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  3998. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  3999. "shasum": "",
  4000. "mirrors": [
  4001. {
  4002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4003. "preferred": true
  4004. }
  4005. ]
  4006. },
  4007. "require": {
  4008. "php": ">=7.2.5",
  4009. "symfony/deprecation-contracts": "^2.1|^3",
  4010. "symfony/polyfill-php80": "^1.16"
  4011. },
  4012. "type": "library",
  4013. "autoload": {
  4014. "psr-4": {
  4015. "Symfony\\Component\\Finder\\": ""
  4016. },
  4017. "exclude-from-classmap": [
  4018. "/Tests/"
  4019. ]
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "MIT"
  4024. ],
  4025. "authors": [
  4026. {
  4027. "name": "Fabien Potencier",
  4028. "email": "fabien@symfony.com"
  4029. },
  4030. {
  4031. "name": "Symfony Community",
  4032. "homepage": "https://symfony.com/contributors"
  4033. }
  4034. ],
  4035. "description": "Finds files and directories via an intuitive fluent interface",
  4036. "homepage": "https://symfony.com",
  4037. "support": {
  4038. "source": "https://github.com/symfony/finder/tree/v5.4.3"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://symfony.com/sponsor",
  4043. "type": "custom"
  4044. },
  4045. {
  4046. "url": "https://github.com/fabpot",
  4047. "type": "github"
  4048. },
  4049. {
  4050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4051. "type": "tidelift"
  4052. }
  4053. ],
  4054. "time": "2022-01-26T16:34:36+00:00"
  4055. },
  4056. {
  4057. "name": "symfony/http-foundation",
  4058. "version": "v5.3.4",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/symfony/http-foundation.git",
  4062. "reference": "d6602aca7d3e11f401a0b24f43b611c530abfad3"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d6602aca7d3e11f401a0b24f43b611c530abfad3",
  4067. "reference": "d6602aca7d3e11f401a0b24f43b611c530abfad3",
  4068. "shasum": "",
  4069. "mirrors": [
  4070. {
  4071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4072. "preferred": true
  4073. }
  4074. ]
  4075. },
  4076. "require": {
  4077. "php": ">=7.2.5",
  4078. "symfony/deprecation-contracts": "^2.1",
  4079. "symfony/polyfill-mbstring": "~1.1",
  4080. "symfony/polyfill-php80": "^1.16"
  4081. },
  4082. "require-dev": {
  4083. "predis/predis": "~1.0",
  4084. "symfony/cache": "^4.4|^5.0",
  4085. "symfony/expression-language": "^4.4|^5.0",
  4086. "symfony/mime": "^4.4|^5.0"
  4087. },
  4088. "suggest": {
  4089. "symfony/mime": "To use the file extension guesser"
  4090. },
  4091. "type": "library",
  4092. "autoload": {
  4093. "psr-4": {
  4094. "Symfony\\Component\\HttpFoundation\\": ""
  4095. },
  4096. "exclude-from-classmap": [
  4097. "/Tests/"
  4098. ]
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "MIT"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "Fabien Potencier",
  4107. "email": "fabien@symfony.com"
  4108. },
  4109. {
  4110. "name": "Symfony Community",
  4111. "homepage": "https://symfony.com/contributors"
  4112. }
  4113. ],
  4114. "description": "Defines an object-oriented layer for the HTTP specification",
  4115. "homepage": "https://symfony.com",
  4116. "support": {
  4117. "source": "https://github.com/symfony/http-foundation/tree/v5.3.4"
  4118. },
  4119. "funding": [
  4120. {
  4121. "url": "https://symfony.com/sponsor",
  4122. "type": "custom"
  4123. },
  4124. {
  4125. "url": "https://github.com/fabpot",
  4126. "type": "github"
  4127. },
  4128. {
  4129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4130. "type": "tidelift"
  4131. }
  4132. ],
  4133. "time": "2021-07-23T15:55:36+00:00"
  4134. },
  4135. {
  4136. "name": "symfony/polyfill-ctype",
  4137. "version": "v1.23.0",
  4138. "source": {
  4139. "type": "git",
  4140. "url": "https://github.com/symfony/polyfill-ctype.git",
  4141. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  4142. },
  4143. "dist": {
  4144. "type": "zip",
  4145. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  4146. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  4147. "shasum": "",
  4148. "mirrors": [
  4149. {
  4150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4151. "preferred": true
  4152. }
  4153. ]
  4154. },
  4155. "require": {
  4156. "php": ">=7.1"
  4157. },
  4158. "suggest": {
  4159. "ext-ctype": "For best performance"
  4160. },
  4161. "type": "library",
  4162. "extra": {
  4163. "branch-alias": {
  4164. "dev-main": "1.23-dev"
  4165. },
  4166. "thanks": {
  4167. "name": "symfony/polyfill",
  4168. "url": "https://github.com/symfony/polyfill"
  4169. }
  4170. },
  4171. "autoload": {
  4172. "psr-4": {
  4173. "Symfony\\Polyfill\\Ctype\\": ""
  4174. },
  4175. "files": [
  4176. "bootstrap.php"
  4177. ]
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "Gert de Pagter",
  4186. "email": "BackEndTea@gmail.com"
  4187. },
  4188. {
  4189. "name": "Symfony Community",
  4190. "homepage": "https://symfony.com/contributors"
  4191. }
  4192. ],
  4193. "description": "Symfony polyfill for ctype functions",
  4194. "homepage": "https://symfony.com",
  4195. "keywords": [
  4196. "compatibility",
  4197. "ctype",
  4198. "polyfill",
  4199. "portable"
  4200. ],
  4201. "support": {
  4202. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  4203. },
  4204. "funding": [
  4205. {
  4206. "url": "https://symfony.com/sponsor",
  4207. "type": "custom"
  4208. },
  4209. {
  4210. "url": "https://github.com/fabpot",
  4211. "type": "github"
  4212. },
  4213. {
  4214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4215. "type": "tidelift"
  4216. }
  4217. ],
  4218. "time": "2021-02-19T12:13:01+00:00"
  4219. },
  4220. {
  4221. "name": "symfony/polyfill-mbstring",
  4222. "version": "v1.23.1",
  4223. "source": {
  4224. "type": "git",
  4225. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4226. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  4227. },
  4228. "dist": {
  4229. "type": "zip",
  4230. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4231. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4232. "shasum": "",
  4233. "mirrors": [
  4234. {
  4235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4236. "preferred": true
  4237. }
  4238. ]
  4239. },
  4240. "require": {
  4241. "php": ">=7.1"
  4242. },
  4243. "suggest": {
  4244. "ext-mbstring": "For best performance"
  4245. },
  4246. "type": "library",
  4247. "extra": {
  4248. "branch-alias": {
  4249. "dev-main": "1.23-dev"
  4250. },
  4251. "thanks": {
  4252. "name": "symfony/polyfill",
  4253. "url": "https://github.com/symfony/polyfill"
  4254. }
  4255. },
  4256. "autoload": {
  4257. "psr-4": {
  4258. "Symfony\\Polyfill\\Mbstring\\": ""
  4259. },
  4260. "files": [
  4261. "bootstrap.php"
  4262. ]
  4263. },
  4264. "notification-url": "https://packagist.org/downloads/",
  4265. "license": [
  4266. "MIT"
  4267. ],
  4268. "authors": [
  4269. {
  4270. "name": "Nicolas Grekas",
  4271. "email": "p@tchwork.com"
  4272. },
  4273. {
  4274. "name": "Symfony Community",
  4275. "homepage": "https://symfony.com/contributors"
  4276. }
  4277. ],
  4278. "description": "Symfony polyfill for the Mbstring extension",
  4279. "homepage": "https://symfony.com",
  4280. "keywords": [
  4281. "compatibility",
  4282. "mbstring",
  4283. "polyfill",
  4284. "portable",
  4285. "shim"
  4286. ],
  4287. "support": {
  4288. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  4289. },
  4290. "funding": [
  4291. {
  4292. "url": "https://symfony.com/sponsor",
  4293. "type": "custom"
  4294. },
  4295. {
  4296. "url": "https://github.com/fabpot",
  4297. "type": "github"
  4298. },
  4299. {
  4300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4301. "type": "tidelift"
  4302. }
  4303. ],
  4304. "time": "2021-05-27T12:26:48+00:00"
  4305. },
  4306. {
  4307. "name": "symfony/polyfill-php80",
  4308. "version": "v1.23.1",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://github.com/symfony/polyfill-php80.git",
  4312. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  4317. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  4318. "shasum": "",
  4319. "mirrors": [
  4320. {
  4321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4322. "preferred": true
  4323. }
  4324. ]
  4325. },
  4326. "require": {
  4327. "php": ">=7.1"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-main": "1.23-dev"
  4333. },
  4334. "thanks": {
  4335. "name": "symfony/polyfill",
  4336. "url": "https://github.com/symfony/polyfill"
  4337. }
  4338. },
  4339. "autoload": {
  4340. "psr-4": {
  4341. "Symfony\\Polyfill\\Php80\\": ""
  4342. },
  4343. "files": [
  4344. "bootstrap.php"
  4345. ],
  4346. "classmap": [
  4347. "Resources/stubs"
  4348. ]
  4349. },
  4350. "notification-url": "https://packagist.org/downloads/",
  4351. "license": [
  4352. "MIT"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "Ion Bazan",
  4357. "email": "ion.bazan@gmail.com"
  4358. },
  4359. {
  4360. "name": "Nicolas Grekas",
  4361. "email": "p@tchwork.com"
  4362. },
  4363. {
  4364. "name": "Symfony Community",
  4365. "homepage": "https://symfony.com/contributors"
  4366. }
  4367. ],
  4368. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4369. "homepage": "https://symfony.com",
  4370. "keywords": [
  4371. "compatibility",
  4372. "polyfill",
  4373. "portable",
  4374. "shim"
  4375. ],
  4376. "support": {
  4377. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  4378. },
  4379. "funding": [
  4380. {
  4381. "url": "https://symfony.com/sponsor",
  4382. "type": "custom"
  4383. },
  4384. {
  4385. "url": "https://github.com/fabpot",
  4386. "type": "github"
  4387. },
  4388. {
  4389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4390. "type": "tidelift"
  4391. }
  4392. ],
  4393. "time": "2021-07-28T13:41:28+00:00"
  4394. },
  4395. {
  4396. "name": "symfony/psr-http-message-bridge",
  4397. "version": "v2.1.1",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4401. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9012994c4b4fb23e7c57dd86b763a417a04feba",
  4406. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba",
  4407. "shasum": "",
  4408. "mirrors": [
  4409. {
  4410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4411. "preferred": true
  4412. }
  4413. ]
  4414. },
  4415. "require": {
  4416. "php": ">=7.1",
  4417. "psr/http-message": "^1.0",
  4418. "symfony/http-foundation": "^4.4 || ^5.0"
  4419. },
  4420. "require-dev": {
  4421. "nyholm/psr7": "^1.1",
  4422. "psr/log": "^1.1 || ^2 || ^3",
  4423. "symfony/browser-kit": "^4.4 || ^5.0",
  4424. "symfony/config": "^4.4 || ^5.0",
  4425. "symfony/event-dispatcher": "^4.4 || ^5.0",
  4426. "symfony/framework-bundle": "^4.4 || ^5.0",
  4427. "symfony/http-kernel": "^4.4 || ^5.0",
  4428. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  4429. },
  4430. "suggest": {
  4431. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4432. },
  4433. "type": "symfony-bridge",
  4434. "extra": {
  4435. "branch-alias": {
  4436. "dev-main": "2.1-dev"
  4437. }
  4438. },
  4439. "autoload": {
  4440. "psr-4": {
  4441. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4442. },
  4443. "exclude-from-classmap": [
  4444. "/Tests/"
  4445. ]
  4446. },
  4447. "notification-url": "https://packagist.org/downloads/",
  4448. "license": [
  4449. "MIT"
  4450. ],
  4451. "authors": [
  4452. {
  4453. "name": "Fabien Potencier",
  4454. "email": "fabien@symfony.com"
  4455. },
  4456. {
  4457. "name": "Symfony Community",
  4458. "homepage": "http://symfony.com/contributors"
  4459. }
  4460. ],
  4461. "description": "PSR HTTP message bridge",
  4462. "homepage": "http://symfony.com",
  4463. "keywords": [
  4464. "http",
  4465. "http-message",
  4466. "psr-17",
  4467. "psr-7"
  4468. ],
  4469. "support": {
  4470. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4471. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.1"
  4472. },
  4473. "funding": [
  4474. {
  4475. "url": "https://symfony.com/sponsor",
  4476. "type": "custom"
  4477. },
  4478. {
  4479. "url": "https://github.com/fabpot",
  4480. "type": "github"
  4481. },
  4482. {
  4483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4484. "type": "tidelift"
  4485. }
  4486. ],
  4487. "time": "2021-07-27T17:25:39+00:00"
  4488. },
  4489. {
  4490. "name": "symfony/service-contracts",
  4491. "version": "v2.4.0",
  4492. "source": {
  4493. "type": "git",
  4494. "url": "https://github.com/symfony/service-contracts.git",
  4495. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  4496. },
  4497. "dist": {
  4498. "type": "zip",
  4499. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  4500. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  4501. "shasum": "",
  4502. "mirrors": [
  4503. {
  4504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4505. "preferred": true
  4506. }
  4507. ]
  4508. },
  4509. "require": {
  4510. "php": ">=7.2.5",
  4511. "psr/container": "^1.1"
  4512. },
  4513. "suggest": {
  4514. "symfony/service-implementation": ""
  4515. },
  4516. "type": "library",
  4517. "extra": {
  4518. "branch-alias": {
  4519. "dev-main": "2.4-dev"
  4520. },
  4521. "thanks": {
  4522. "name": "symfony/contracts",
  4523. "url": "https://github.com/symfony/contracts"
  4524. }
  4525. },
  4526. "autoload": {
  4527. "psr-4": {
  4528. "Symfony\\Contracts\\Service\\": ""
  4529. }
  4530. },
  4531. "notification-url": "https://packagist.org/downloads/",
  4532. "license": [
  4533. "MIT"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "Nicolas Grekas",
  4538. "email": "p@tchwork.com"
  4539. },
  4540. {
  4541. "name": "Symfony Community",
  4542. "homepage": "https://symfony.com/contributors"
  4543. }
  4544. ],
  4545. "description": "Generic abstractions related to writing services",
  4546. "homepage": "https://symfony.com",
  4547. "keywords": [
  4548. "abstractions",
  4549. "contracts",
  4550. "decoupling",
  4551. "interfaces",
  4552. "interoperability",
  4553. "standards"
  4554. ],
  4555. "support": {
  4556. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  4557. },
  4558. "funding": [
  4559. {
  4560. "url": "https://symfony.com/sponsor",
  4561. "type": "custom"
  4562. },
  4563. {
  4564. "url": "https://github.com/fabpot",
  4565. "type": "github"
  4566. },
  4567. {
  4568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4569. "type": "tidelift"
  4570. }
  4571. ],
  4572. "time": "2021-04-01T10:43:52+00:00"
  4573. },
  4574. {
  4575. "name": "symfony/var-exporter",
  4576. "version": "v5.3.4",
  4577. "source": {
  4578. "type": "git",
  4579. "url": "https://github.com/symfony/var-exporter.git",
  4580. "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0"
  4581. },
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b7898a65fc91e7c41de7a88c7db9aee9c0d432f0",
  4585. "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0",
  4586. "shasum": "",
  4587. "mirrors": [
  4588. {
  4589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4590. "preferred": true
  4591. }
  4592. ]
  4593. },
  4594. "require": {
  4595. "php": ">=7.2.5",
  4596. "symfony/polyfill-php80": "^1.16"
  4597. },
  4598. "require-dev": {
  4599. "symfony/var-dumper": "^4.4.9|^5.0.9"
  4600. },
  4601. "type": "library",
  4602. "autoload": {
  4603. "psr-4": {
  4604. "Symfony\\Component\\VarExporter\\": ""
  4605. },
  4606. "exclude-from-classmap": [
  4607. "/Tests/"
  4608. ]
  4609. },
  4610. "notification-url": "https://packagist.org/downloads/",
  4611. "license": [
  4612. "MIT"
  4613. ],
  4614. "authors": [
  4615. {
  4616. "name": "Nicolas Grekas",
  4617. "email": "p@tchwork.com"
  4618. },
  4619. {
  4620. "name": "Symfony Community",
  4621. "homepage": "https://symfony.com/contributors"
  4622. }
  4623. ],
  4624. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4625. "homepage": "https://symfony.com",
  4626. "keywords": [
  4627. "clone",
  4628. "construct",
  4629. "export",
  4630. "hydrate",
  4631. "instantiate",
  4632. "serialize"
  4633. ],
  4634. "support": {
  4635. "source": "https://github.com/symfony/var-exporter/tree/v5.3.4"
  4636. },
  4637. "funding": [
  4638. {
  4639. "url": "https://symfony.com/sponsor",
  4640. "type": "custom"
  4641. },
  4642. {
  4643. "url": "https://github.com/fabpot",
  4644. "type": "github"
  4645. },
  4646. {
  4647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4648. "type": "tidelift"
  4649. }
  4650. ],
  4651. "time": "2021-07-21T12:38:00+00:00"
  4652. },
  4653. {
  4654. "name": "symfony/yaml",
  4655. "version": "v2.8.52",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/symfony/yaml.git",
  4659. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  4664. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  4665. "shasum": "",
  4666. "mirrors": [
  4667. {
  4668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4669. "preferred": true
  4670. }
  4671. ]
  4672. },
  4673. "require": {
  4674. "php": ">=5.3.9",
  4675. "symfony/polyfill-ctype": "~1.8"
  4676. },
  4677. "type": "library",
  4678. "extra": {
  4679. "branch-alias": {
  4680. "dev-master": "2.8-dev"
  4681. }
  4682. },
  4683. "autoload": {
  4684. "psr-4": {
  4685. "Symfony\\Component\\Yaml\\": ""
  4686. },
  4687. "exclude-from-classmap": [
  4688. "/Tests/"
  4689. ]
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Fabien Potencier",
  4698. "email": "fabien@symfony.com"
  4699. },
  4700. {
  4701. "name": "Symfony Community",
  4702. "homepage": "https://symfony.com/contributors"
  4703. }
  4704. ],
  4705. "description": "Symfony Yaml Component",
  4706. "homepage": "https://symfony.com",
  4707. "support": {
  4708. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  4709. },
  4710. "time": "2018-11-11T11:18:13+00:00"
  4711. },
  4712. {
  4713. "name": "tencentcloud/tencentcloud-sdk-php",
  4714. "version": "3.0.1159",
  4715. "source": {
  4716. "type": "git",
  4717. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  4718. "reference": "1447d10e941f488d5444340b299186a017cda72b"
  4719. },
  4720. "dist": {
  4721. "type": "zip",
  4722. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/1447d10e941f488d5444340b299186a017cda72b",
  4723. "reference": "1447d10e941f488d5444340b299186a017cda72b",
  4724. "shasum": "",
  4725. "mirrors": [
  4726. {
  4727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4728. "preferred": true
  4729. }
  4730. ]
  4731. },
  4732. "require": {
  4733. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  4734. "php": ">=5.6.0"
  4735. },
  4736. "require-dev": {
  4737. "phpunit/phpunit": "^9.5"
  4738. },
  4739. "type": "library",
  4740. "autoload": {
  4741. "psr-4": {
  4742. "TencentCloud\\": "./src/TencentCloud"
  4743. },
  4744. "classmap": [
  4745. "src/QcloudApi/QcloudApi.php"
  4746. ]
  4747. },
  4748. "notification-url": "https://packagist.org/downloads/",
  4749. "license": [
  4750. "Apache-2.0"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "coolli",
  4755. "email": "tencentcloudapi@tencent.com",
  4756. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  4757. "role": "Developer"
  4758. }
  4759. ],
  4760. "description": "TencentCloudApi php sdk",
  4761. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  4762. "support": {
  4763. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  4764. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.1159"
  4765. },
  4766. "time": "2024-06-09T20:07:48+00:00"
  4767. },
  4768. {
  4769. "name": "topthink/framework",
  4770. "version": "v6.1.1",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/top-think/framework.git",
  4774. "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/top-think/framework/zipball/2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
  4779. "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
  4780. "shasum": "",
  4781. "mirrors": [
  4782. {
  4783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4784. "preferred": true
  4785. }
  4786. ]
  4787. },
  4788. "require": {
  4789. "ext-json": "*",
  4790. "ext-mbstring": "*",
  4791. "php": ">=7.2.5",
  4792. "psr/container": "~1.0",
  4793. "psr/http-message": "^1.0",
  4794. "psr/log": "~1.0",
  4795. "psr/simple-cache": "^1.0",
  4796. "topthink/think-helper": "^3.1.1",
  4797. "topthink/think-orm": "^2.0"
  4798. },
  4799. "require-dev": {
  4800. "guzzlehttp/psr7": "^2.1.0",
  4801. "mikey179/vfsstream": "^1.6",
  4802. "mockery/mockery": "^1.2",
  4803. "phpunit/phpunit": "^7.0"
  4804. },
  4805. "type": "library",
  4806. "autoload": {
  4807. "files": [],
  4808. "psr-4": {
  4809. "think\\": "src/think/"
  4810. }
  4811. },
  4812. "notification-url": "https://packagist.org/downloads/",
  4813. "license": [
  4814. "Apache-2.0"
  4815. ],
  4816. "authors": [
  4817. {
  4818. "name": "liu21st",
  4819. "email": "liu21st@gmail.com"
  4820. },
  4821. {
  4822. "name": "yunwuxin",
  4823. "email": "448901948@qq.com"
  4824. }
  4825. ],
  4826. "description": "The ThinkPHP Framework.",
  4827. "homepage": "http://thinkphp.cn/",
  4828. "keywords": [
  4829. "framework",
  4830. "orm",
  4831. "thinkphp"
  4832. ],
  4833. "support": {
  4834. "issues": "https://github.com/top-think/framework/issues",
  4835. "source": "https://github.com/top-think/framework/tree/v6.1.1"
  4836. },
  4837. "time": "2022-10-26T03:48:53+00:00"
  4838. },
  4839. {
  4840. "name": "topthink/think-helper",
  4841. "version": "v3.1.5",
  4842. "source": {
  4843. "type": "git",
  4844. "url": "https://github.com/top-think/think-helper.git",
  4845. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905"
  4846. },
  4847. "dist": {
  4848. "type": "zip",
  4849. "url": "https://api.github.com/repos/top-think/think-helper/zipball/f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  4850. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  4851. "shasum": "",
  4852. "mirrors": [
  4853. {
  4854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4855. "preferred": true
  4856. }
  4857. ]
  4858. },
  4859. "require": {
  4860. "php": ">=7.1.0"
  4861. },
  4862. "type": "library",
  4863. "autoload": {
  4864. "psr-4": {
  4865. "think\\": "src"
  4866. },
  4867. "files": [
  4868. "src/helper.php"
  4869. ]
  4870. },
  4871. "notification-url": "https://packagist.org/downloads/",
  4872. "license": [
  4873. "Apache-2.0"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "yunwuxin",
  4878. "email": "448901948@qq.com"
  4879. }
  4880. ],
  4881. "description": "The ThinkPHP6 Helper Package",
  4882. "support": {
  4883. "issues": "https://github.com/top-think/think-helper/issues",
  4884. "source": "https://github.com/top-think/think-helper/tree/v3.1.5"
  4885. },
  4886. "time": "2021-06-21T06:17:31+00:00"
  4887. },
  4888. {
  4889. "name": "topthink/think-multi-app",
  4890. "version": "v1.0.14",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/top-think/think-multi-app.git",
  4894. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4899. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4900. "shasum": "",
  4901. "mirrors": [
  4902. {
  4903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4904. "preferred": true
  4905. }
  4906. ]
  4907. },
  4908. "require": {
  4909. "php": ">=7.1.0",
  4910. "topthink/framework": "^6.0.0"
  4911. },
  4912. "type": "library",
  4913. "extra": {
  4914. "think": {
  4915. "services": [
  4916. "think\\app\\Service"
  4917. ]
  4918. }
  4919. },
  4920. "autoload": {
  4921. "psr-4": {
  4922. "think\\app\\": "src"
  4923. }
  4924. },
  4925. "notification-url": "https://packagist.org/downloads/",
  4926. "license": [
  4927. "Apache-2.0"
  4928. ],
  4929. "authors": [
  4930. {
  4931. "name": "liu21st",
  4932. "email": "liu21st@gmail.com"
  4933. }
  4934. ],
  4935. "description": "thinkphp6 multi app support",
  4936. "support": {
  4937. "issues": "https://github.com/top-think/think-multi-app/issues",
  4938. "source": "https://github.com/top-think/think-multi-app/tree/master"
  4939. },
  4940. "time": "2020-07-12T13:50:37+00:00"
  4941. },
  4942. {
  4943. "name": "topthink/think-orm",
  4944. "version": "v2.0.44",
  4945. "source": {
  4946. "type": "git",
  4947. "url": "https://github.com/top-think/think-orm.git",
  4948. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409"
  4949. },
  4950. "dist": {
  4951. "type": "zip",
  4952. "url": "https://api.github.com/repos/top-think/think-orm/zipball/5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  4953. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  4954. "shasum": "",
  4955. "mirrors": [
  4956. {
  4957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4958. "preferred": true
  4959. }
  4960. ]
  4961. },
  4962. "require": {
  4963. "ext-json": "*",
  4964. "ext-pdo": "*",
  4965. "php": ">=7.1.0",
  4966. "psr/log": "~1.0",
  4967. "psr/simple-cache": "^1.0",
  4968. "topthink/think-helper": "^3.1"
  4969. },
  4970. "require-dev": {
  4971. "phpunit/phpunit": "^7|^8|^9.5"
  4972. },
  4973. "type": "library",
  4974. "autoload": {
  4975. "psr-4": {
  4976. "think\\": "src"
  4977. },
  4978. "files": [
  4979. "stubs/load_stubs.php"
  4980. ]
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "Apache-2.0"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "liu21st",
  4989. "email": "liu21st@gmail.com"
  4990. }
  4991. ],
  4992. "description": "think orm",
  4993. "keywords": [
  4994. "database",
  4995. "orm"
  4996. ],
  4997. "support": {
  4998. "issues": "https://github.com/top-think/think-orm/issues",
  4999. "source": "https://github.com/top-think/think-orm/tree/v2.0.44"
  5000. },
  5001. "time": "2021-07-21T02:22:31+00:00"
  5002. },
  5003. {
  5004. "name": "topthink/think-swoole",
  5005. "version": "v3.1.3",
  5006. "source": {
  5007. "type": "git",
  5008. "url": "https://github.com/top-think/think-swoole.git",
  5009. "reference": "df78b1f6eb6cd8f45f49ab7b0d4cc65595181504"
  5010. },
  5011. "dist": {
  5012. "type": "zip",
  5013. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/df78b1f6eb6cd8f45f49ab7b0d4cc65595181504",
  5014. "reference": "df78b1f6eb6cd8f45f49ab7b0d4cc65595181504",
  5015. "shasum": "",
  5016. "mirrors": [
  5017. {
  5018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5019. "preferred": true
  5020. }
  5021. ]
  5022. },
  5023. "require": {
  5024. "ext-json": "*",
  5025. "ext-swoole": ">=4.4.8",
  5026. "nette/php-generator": "^3.2",
  5027. "open-smf/connection-pool": "~1.0",
  5028. "php": ">7.1",
  5029. "stechstudio/backoff": "^1.2",
  5030. "swoole/ide-helper": "^4.3",
  5031. "symfony/finder": "^4.3.2|^5.1",
  5032. "topthink/framework": "^6.0"
  5033. },
  5034. "require-dev": {
  5035. "symfony/var-dumper": "^4.3|^5.1",
  5036. "topthink/think-queue": "^3.0",
  5037. "topthink/think-tracing": "^1.0"
  5038. },
  5039. "type": "library",
  5040. "extra": {
  5041. "think": {
  5042. "services": [
  5043. "think\\swoole\\Service"
  5044. ],
  5045. "config": {
  5046. "swoole": "src/config/swoole.php"
  5047. }
  5048. }
  5049. },
  5050. "autoload": {
  5051. "files": [
  5052. "src/helpers.php"
  5053. ],
  5054. "psr-4": {
  5055. "think\\swoole\\": "src"
  5056. }
  5057. },
  5058. "notification-url": "https://packagist.org/downloads/",
  5059. "license": [
  5060. "Apache-2.0"
  5061. ],
  5062. "authors": [
  5063. {
  5064. "name": "liu21st",
  5065. "email": "liu21st@gmail.com"
  5066. }
  5067. ],
  5068. "description": "Swoole extend for thinkphp",
  5069. "support": {
  5070. "issues": "https://github.com/top-think/think-swoole/issues",
  5071. "source": "https://github.com/top-think/think-swoole/tree/v3.1.3"
  5072. },
  5073. "time": "2021-04-29T10:48:04+00:00"
  5074. },
  5075. {
  5076. "name": "topthink/think-template",
  5077. "version": "v2.0.8",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://github.com/top-think/think-template.git",
  5081. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  5086. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  5087. "shasum": "",
  5088. "mirrors": [
  5089. {
  5090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5091. "preferred": true
  5092. }
  5093. ]
  5094. },
  5095. "require": {
  5096. "php": ">=7.1.0",
  5097. "psr/simple-cache": "^1.0"
  5098. },
  5099. "type": "library",
  5100. "autoload": {
  5101. "psr-4": {
  5102. "think\\": "src"
  5103. }
  5104. },
  5105. "notification-url": "https://packagist.org/downloads/",
  5106. "license": [
  5107. "Apache-2.0"
  5108. ],
  5109. "authors": [
  5110. {
  5111. "name": "liu21st",
  5112. "email": "liu21st@gmail.com"
  5113. }
  5114. ],
  5115. "description": "the php template engine",
  5116. "support": {
  5117. "issues": "https://github.com/top-think/think-template/issues",
  5118. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  5119. },
  5120. "time": "2020-12-10T07:52:03+00:00"
  5121. },
  5122. {
  5123. "name": "topthink/think-view",
  5124. "version": "v1.0.14",
  5125. "source": {
  5126. "type": "git",
  5127. "url": "https://github.com/top-think/think-view.git",
  5128. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  5129. },
  5130. "dist": {
  5131. "type": "zip",
  5132. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  5133. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  5134. "shasum": "",
  5135. "mirrors": [
  5136. {
  5137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5138. "preferred": true
  5139. }
  5140. ]
  5141. },
  5142. "require": {
  5143. "php": ">=7.1.0",
  5144. "topthink/think-template": "^2.0"
  5145. },
  5146. "type": "library",
  5147. "autoload": {
  5148. "psr-4": {
  5149. "think\\view\\driver\\": "src"
  5150. }
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "Apache-2.0"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "liu21st",
  5159. "email": "liu21st@gmail.com"
  5160. }
  5161. ],
  5162. "description": "thinkphp template driver",
  5163. "support": {
  5164. "issues": "https://github.com/top-think/think-view/issues",
  5165. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  5166. },
  5167. "time": "2019-11-06T11:40:13+00:00"
  5168. },
  5169. {
  5170. "name": "webmozart/assert",
  5171. "version": "1.10.0",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://github.com/webmozarts/assert.git",
  5175. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  5180. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  5181. "shasum": "",
  5182. "mirrors": [
  5183. {
  5184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5185. "preferred": true
  5186. }
  5187. ]
  5188. },
  5189. "require": {
  5190. "php": "^7.2 || ^8.0",
  5191. "symfony/polyfill-ctype": "^1.8"
  5192. },
  5193. "conflict": {
  5194. "phpstan/phpstan": "<0.12.20",
  5195. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5196. },
  5197. "require-dev": {
  5198. "phpunit/phpunit": "^8.5.13"
  5199. },
  5200. "type": "library",
  5201. "extra": {
  5202. "branch-alias": {
  5203. "dev-master": "1.10-dev"
  5204. }
  5205. },
  5206. "autoload": {
  5207. "psr-4": {
  5208. "Webmozart\\Assert\\": "src/"
  5209. }
  5210. },
  5211. "notification-url": "https://packagist.org/downloads/",
  5212. "license": [
  5213. "MIT"
  5214. ],
  5215. "authors": [
  5216. {
  5217. "name": "Bernhard Schussek",
  5218. "email": "bschussek@gmail.com"
  5219. }
  5220. ],
  5221. "description": "Assertions to validate method input/output with nice error messages.",
  5222. "keywords": [
  5223. "assert",
  5224. "check",
  5225. "validate"
  5226. ],
  5227. "support": {
  5228. "issues": "https://github.com/webmozarts/assert/issues",
  5229. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  5230. },
  5231. "time": "2021-03-09T10:59:23+00:00"
  5232. },
  5233. {
  5234. "name": "xin/container",
  5235. "version": "2.0.1",
  5236. "source": {
  5237. "type": "git",
  5238. "url": "https://gitee.com/liuxiaojinla/php-container",
  5239. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  5240. },
  5241. "require": {
  5242. "ext-ctype": "*",
  5243. "ext-iconv": "*",
  5244. "ext-json": "*",
  5245. "ext-libxml": "*",
  5246. "ext-mbstring": "*",
  5247. "ext-openssl": "*",
  5248. "ext-simplexml": "*",
  5249. "psr/container": "^1.0",
  5250. "xin/helper": "^1.0"
  5251. },
  5252. "type": "library",
  5253. "autoload": {
  5254. "psr-4": {
  5255. "xin\\container\\": "src/"
  5256. }
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "Apache-2.0"
  5261. ],
  5262. "authors": [
  5263. {
  5264. "name": "晋",
  5265. "email": "657306123@qq.com"
  5266. }
  5267. ],
  5268. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  5269. "time": "2019-10-21T03:51:25+00:00"
  5270. },
  5271. {
  5272. "name": "xin/helper",
  5273. "version": "1.0.0",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://gitee.com/liuxiaojinla/php-helper",
  5277. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  5278. },
  5279. "require": {
  5280. "ext-ctype": "*",
  5281. "ext-iconv": "*",
  5282. "ext-json": "*",
  5283. "ext-libxml": "*",
  5284. "ext-mbstring": "*",
  5285. "ext-openssl": "*",
  5286. "ext-simplexml": "*"
  5287. },
  5288. "type": "library",
  5289. "autoload": {
  5290. "psr-4": {
  5291. "xin\\helper\\": "src/"
  5292. }
  5293. },
  5294. "notification-url": "https://packagist.org/downloads/",
  5295. "license": [
  5296. "Apache-2.0"
  5297. ],
  5298. "authors": [
  5299. {
  5300. "name": "晋",
  5301. "email": "1540175452@qq.com"
  5302. }
  5303. ],
  5304. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  5305. "time": "2019-06-22T08:28:23+00:00"
  5306. },
  5307. {
  5308. "name": "yansongda/artful",
  5309. "version": "v1.1.2",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/yansongda/artful.git",
  5313. "reference": "bad726c6287aca219750823bff46f70287ec3995"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/yansongda/artful/zipball/bad726c6287aca219750823bff46f70287ec3995",
  5318. "reference": "bad726c6287aca219750823bff46f70287ec3995",
  5319. "shasum": "",
  5320. "mirrors": [
  5321. {
  5322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5323. "preferred": true
  5324. }
  5325. ]
  5326. },
  5327. "require": {
  5328. "guzzlehttp/psr7": "^2.6",
  5329. "php": ">=8.0",
  5330. "psr/container": "^1.1 || ^2.0",
  5331. "psr/event-dispatcher": "^1.0",
  5332. "psr/http-client": "^1.0",
  5333. "psr/http-message": "^1.1 || ^2.0",
  5334. "psr/log": "^1.1 || ^2.0 || ^3.0",
  5335. "yansongda/supports": "~4.0.10"
  5336. },
  5337. "require-dev": {
  5338. "friendsofphp/php-cs-fixer": "^3.44",
  5339. "guzzlehttp/guzzle": "^7.0",
  5340. "hyperf/pimple": "^2.2",
  5341. "mockery/mockery": "^1.4",
  5342. "monolog/monolog": "^2.2",
  5343. "phpstan/phpstan": "^1.0.0 || ^2.0.0",
  5344. "phpunit/phpunit": "^9.0",
  5345. "symfony/event-dispatcher": "^5.2.0",
  5346. "symfony/http-foundation": "^5.2.0",
  5347. "symfony/psr-http-message-bridge": "^2.1",
  5348. "symfony/var-dumper": "^5.1"
  5349. },
  5350. "suggest": {
  5351. "hyperf/pimple": "其它/无框架下使用 SDK,请安装,任选其一",
  5352. "illuminate/container": "其它/无框架下使用 SDK,请安装,任选其一"
  5353. },
  5354. "type": "library",
  5355. "autoload": {
  5356. "files": [
  5357. "src/Functions.php"
  5358. ],
  5359. "psr-4": {
  5360. "Yansongda\\Artful\\": "src"
  5361. }
  5362. },
  5363. "notification-url": "https://packagist.org/downloads/",
  5364. "license": [
  5365. "MIT"
  5366. ],
  5367. "authors": [
  5368. {
  5369. "name": "yansongda",
  5370. "email": "me@yansongda.cn"
  5371. }
  5372. ],
  5373. "description": "Artful 是一个简单易用的 API 请求框架 PHP Api RequesT Framwork U Like。",
  5374. "keywords": [
  5375. "api",
  5376. "artful",
  5377. "framework",
  5378. "request"
  5379. ],
  5380. "support": {
  5381. "homepage": "https://artful.yansongda.cn",
  5382. "issues": "https://github.com/yansongda/artful/issues",
  5383. "source": "https://github.com/yansongda/artful"
  5384. },
  5385. "time": "2025-01-09T12:39:39+00:00"
  5386. },
  5387. {
  5388. "name": "yansongda/pay",
  5389. "version": "v3.7.10",
  5390. "source": {
  5391. "type": "git",
  5392. "url": "https://github.com/yansongda/pay.git",
  5393. "reference": "0aea5b2ddcd3f017fc7e7124dd1d157b7810b16c"
  5394. },
  5395. "dist": {
  5396. "type": "zip",
  5397. "url": "https://api.github.com/repos/yansongda/pay/zipball/0aea5b2ddcd3f017fc7e7124dd1d157b7810b16c",
  5398. "reference": "0aea5b2ddcd3f017fc7e7124dd1d157b7810b16c",
  5399. "shasum": "",
  5400. "mirrors": [
  5401. {
  5402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5403. "preferred": true
  5404. }
  5405. ]
  5406. },
  5407. "require": {
  5408. "ext-bcmath": "*",
  5409. "ext-json": "*",
  5410. "ext-libxml": "*",
  5411. "ext-openssl": "*",
  5412. "ext-simplexml": "*",
  5413. "php": ">=8.0",
  5414. "yansongda/artful": "~1.1.1",
  5415. "yansongda/supports": "~4.0.10"
  5416. },
  5417. "conflict": {
  5418. "hyperf/framework": "<3.0"
  5419. },
  5420. "require-dev": {
  5421. "friendsofphp/php-cs-fixer": "^3.44",
  5422. "guzzlehttp/guzzle": "^7.0",
  5423. "hyperf/pimple": "^2.2",
  5424. "jetbrains/phpstorm-attributes": "^1.1",
  5425. "mockery/mockery": "^1.4",
  5426. "monolog/monolog": "^2.2",
  5427. "phpstan/phpstan": "^1.0.0",
  5428. "phpunit/phpunit": "^9.0",
  5429. "symfony/event-dispatcher": "^5.2.0",
  5430. "symfony/http-foundation": "^5.2.0",
  5431. "symfony/psr-http-message-bridge": "^2.1",
  5432. "symfony/var-dumper": "^5.1"
  5433. },
  5434. "type": "library",
  5435. "autoload": {
  5436. "files": [
  5437. "src/Functions.php"
  5438. ],
  5439. "psr-4": {
  5440. "Yansongda\\Pay\\": "src"
  5441. }
  5442. },
  5443. "notification-url": "https://packagist.org/downloads/",
  5444. "license": [
  5445. "MIT"
  5446. ],
  5447. "authors": [
  5448. {
  5449. "name": "yansongda",
  5450. "email": "me@yansongda.cn"
  5451. }
  5452. ],
  5453. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  5454. "keywords": [
  5455. "alipay",
  5456. "pay",
  5457. "wechat"
  5458. ],
  5459. "support": {
  5460. "homepage": "https://pay.yansongda.cn",
  5461. "issues": "https://github.com/yansongda/pay/issues",
  5462. "source": "https://github.com/yansongda/pay"
  5463. },
  5464. "time": "2024-09-11T03:25:00+00:00"
  5465. },
  5466. {
  5467. "name": "yansongda/supports",
  5468. "version": "v4.0.10",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://github.com/yansongda/supports.git",
  5472. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  5477. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  5478. "shasum": "",
  5479. "mirrors": [
  5480. {
  5481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5482. "preferred": true
  5483. }
  5484. ]
  5485. },
  5486. "require": {
  5487. "php": ">=8.0"
  5488. },
  5489. "require-dev": {
  5490. "friendsofphp/php-cs-fixer": "^3.0",
  5491. "mockery/mockery": "^1.4",
  5492. "phpstan/phpstan": "^1.1.0",
  5493. "phpunit/phpunit": "^9.0"
  5494. },
  5495. "suggest": {
  5496. "monolog/monolog": "Use logger",
  5497. "symfony/console": "Use stdout logger"
  5498. },
  5499. "type": "library",
  5500. "autoload": {
  5501. "files": [
  5502. "src/Functions.php"
  5503. ],
  5504. "psr-4": {
  5505. "Yansongda\\Supports\\": "src/"
  5506. }
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "yansongda",
  5515. "email": "me@yansongda.cn"
  5516. }
  5517. ],
  5518. "description": "common components",
  5519. "keywords": [
  5520. "array",
  5521. "collection",
  5522. "config",
  5523. "support"
  5524. ],
  5525. "support": {
  5526. "issues": "https://github.com/yansongda/supports/issues",
  5527. "source": "https://github.com/yansongda/supports"
  5528. },
  5529. "time": "2024-06-09T15:49:21+00:00"
  5530. },
  5531. {
  5532. "name": "yly-openapi/yly-openapi-sdk",
  5533. "version": "1.0.2",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/Qzm6826/yilianyun-php-sdk.git",
  5537. "reference": "26030adf8d75881d8837d3d52548a4a0917e7e3d"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/Qzm6826/yilianyun-php-sdk/zipball/26030adf8d75881d8837d3d52548a4a0917e7e3d",
  5542. "reference": "26030adf8d75881d8837d3d52548a4a0917e7e3d",
  5543. "shasum": "",
  5544. "mirrors": [
  5545. {
  5546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5547. "preferred": true
  5548. }
  5549. ]
  5550. },
  5551. "require": {
  5552. "php": ">=5.4.0"
  5553. },
  5554. "require-dev": {
  5555. "phpunit/phpunit": "^4.8"
  5556. },
  5557. "type": "library",
  5558. "autoload": {
  5559. "psr-4": {
  5560. "App\\": "Lib/"
  5561. }
  5562. },
  5563. "notification-url": "https://packagist.org/downloads/",
  5564. "license": [
  5565. "MIT"
  5566. ],
  5567. "authors": [
  5568. {
  5569. "name": "曲子陌",
  5570. "email": "lwy@yilianyun.net"
  5571. }
  5572. ],
  5573. "description": "yly-openapi-php-sdk",
  5574. "keywords": [
  5575. "yly-openapi-php-sdk"
  5576. ],
  5577. "support": {
  5578. "issues": "https://github.com/Qzm6826/yilianyun-php-sdk/issues",
  5579. "source": "https://github.com/Qzm6826/yilianyun-php-sdk/tree/1.0.2"
  5580. },
  5581. "time": "2021-01-19T08:55:59+00:00"
  5582. }
  5583. ],
  5584. "packages-dev": [
  5585. {
  5586. "name": "symfony/polyfill-php72",
  5587. "version": "v1.23.0",
  5588. "source": {
  5589. "type": "git",
  5590. "url": "https://github.com/symfony/polyfill-php72.git",
  5591. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  5592. },
  5593. "dist": {
  5594. "type": "zip",
  5595. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  5596. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  5597. "shasum": "",
  5598. "mirrors": [
  5599. {
  5600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5601. "preferred": true
  5602. }
  5603. ]
  5604. },
  5605. "require": {
  5606. "php": ">=7.1"
  5607. },
  5608. "type": "library",
  5609. "extra": {
  5610. "branch-alias": {
  5611. "dev-main": "1.23-dev"
  5612. },
  5613. "thanks": {
  5614. "name": "symfony/polyfill",
  5615. "url": "https://github.com/symfony/polyfill"
  5616. }
  5617. },
  5618. "autoload": {
  5619. "psr-4": {
  5620. "Symfony\\Polyfill\\Php72\\": ""
  5621. },
  5622. "files": [
  5623. "bootstrap.php"
  5624. ]
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "MIT"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Nicolas Grekas",
  5633. "email": "p@tchwork.com"
  5634. },
  5635. {
  5636. "name": "Symfony Community",
  5637. "homepage": "https://symfony.com/contributors"
  5638. }
  5639. ],
  5640. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5641. "homepage": "https://symfony.com",
  5642. "keywords": [
  5643. "compatibility",
  5644. "polyfill",
  5645. "portable",
  5646. "shim"
  5647. ],
  5648. "support": {
  5649. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  5650. },
  5651. "funding": [
  5652. {
  5653. "url": "https://symfony.com/sponsor",
  5654. "type": "custom"
  5655. },
  5656. {
  5657. "url": "https://github.com/fabpot",
  5658. "type": "github"
  5659. },
  5660. {
  5661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5662. "type": "tidelift"
  5663. }
  5664. ],
  5665. "time": "2021-05-27T09:17:38+00:00"
  5666. },
  5667. {
  5668. "name": "symfony/var-dumper",
  5669. "version": "v4.4.27",
  5670. "source": {
  5671. "type": "git",
  5672. "url": "https://github.com/symfony/var-dumper.git",
  5673. "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba"
  5674. },
  5675. "dist": {
  5676. "type": "zip",
  5677. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/391d6d0e7a06ab54eb7c38fab29b8d174471b3ba",
  5678. "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba",
  5679. "shasum": "",
  5680. "mirrors": [
  5681. {
  5682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5683. "preferred": true
  5684. }
  5685. ]
  5686. },
  5687. "require": {
  5688. "php": ">=7.1.3",
  5689. "symfony/polyfill-mbstring": "~1.0",
  5690. "symfony/polyfill-php72": "~1.5",
  5691. "symfony/polyfill-php80": "^1.16"
  5692. },
  5693. "conflict": {
  5694. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5695. "symfony/console": "<3.4"
  5696. },
  5697. "require-dev": {
  5698. "ext-iconv": "*",
  5699. "symfony/console": "^3.4|^4.0|^5.0",
  5700. "symfony/process": "^4.4|^5.0",
  5701. "twig/twig": "^1.43|^2.13|^3.0.4"
  5702. },
  5703. "suggest": {
  5704. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5705. "ext-intl": "To show region name in time zone dump",
  5706. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5707. },
  5708. "bin": [
  5709. "Resources/bin/var-dump-server"
  5710. ],
  5711. "type": "library",
  5712. "autoload": {
  5713. "files": [
  5714. "Resources/functions/dump.php"
  5715. ],
  5716. "psr-4": {
  5717. "Symfony\\Component\\VarDumper\\": ""
  5718. },
  5719. "exclude-from-classmap": [
  5720. "/Tests/"
  5721. ]
  5722. },
  5723. "notification-url": "https://packagist.org/downloads/",
  5724. "license": [
  5725. "MIT"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "Nicolas Grekas",
  5730. "email": "p@tchwork.com"
  5731. },
  5732. {
  5733. "name": "Symfony Community",
  5734. "homepage": "https://symfony.com/contributors"
  5735. }
  5736. ],
  5737. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5738. "homepage": "https://symfony.com",
  5739. "keywords": [
  5740. "debug",
  5741. "dump"
  5742. ],
  5743. "support": {
  5744. "source": "https://github.com/symfony/var-dumper/tree/v4.4.27"
  5745. },
  5746. "funding": [
  5747. {
  5748. "url": "https://symfony.com/sponsor",
  5749. "type": "custom"
  5750. },
  5751. {
  5752. "url": "https://github.com/fabpot",
  5753. "type": "github"
  5754. },
  5755. {
  5756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5757. "type": "tidelift"
  5758. }
  5759. ],
  5760. "time": "2021-07-23T15:41:52+00:00"
  5761. }
  5762. ],
  5763. "aliases": [],
  5764. "minimum-stability": "stable",
  5765. "stability-flags": [],
  5766. "prefer-stable": false,
  5767. "prefer-lowest": false,
  5768. "platform": {
  5769. "php": ">=8.0",
  5770. "ext-json": "*",
  5771. "ext-curl": "*",
  5772. "ext-openssl": "*",
  5773. "ext-mbstring": "*",
  5774. "ext-bcmath": "*",
  5775. "ext-sodium": "*"
  5776. },
  5777. "platform-dev": [],
  5778. "plugin-api-version": "2.0.0"
  5779. }