installed.json 102 KB

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