installed.json 102 KB

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