composer.lock 122 KB

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