composer.lock 196 KB

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