composer.lock 153 KB

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