composer.lock 197 KB

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