composer.lock 130 KB

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