composer.lock 168 KB

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