composer.lock 147 KB

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