installed.json 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991
  1. [
  2. {
  3. "name": "adbario/php-dot-notation",
  4. "version": "2.2.0",
  5. "version_normalized": "2.2.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/adbario/php-dot-notation.git",
  9. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  14. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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. "ext-json": "*",
  25. "php": ">=5.5"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  29. "squizlabs/php_codesniffer": "^3.0"
  30. },
  31. "time": "2019-01-01T23:59:15+00:00",
  32. "type": "library",
  33. "installation-source": "dist",
  34. "autoload": {
  35. "files": [
  36. "src/helpers.php"
  37. ],
  38. "psr-4": {
  39. "Adbar\\": "src"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Riku Särkinen",
  49. "email": "riku@adbar.io"
  50. }
  51. ],
  52. "description": "PHP dot notation access to arrays",
  53. "homepage": "https://github.com/adbario/php-dot-notation",
  54. "keywords": [
  55. "ArrayAccess",
  56. "dotnotation"
  57. ]
  58. },
  59. {
  60. "name": "alibabacloud/client",
  61. "version": "1.5.20",
  62. "version_normalized": "1.5.20.0",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  66. "reference": "e18c5d79072417250f6faf0c1c8ca8bd3fd73f2b"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/e18c5d79072417250f6faf0c1c8ca8bd3fd73f2b",
  71. "reference": "e18c5d79072417250f6faf0c1c8ca8bd3fd73f2b",
  72. "shasum": "",
  73. "mirrors": [
  74. {
  75. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  76. "preferred": true
  77. }
  78. ]
  79. },
  80. "require": {
  81. "adbario/php-dot-notation": "^2.2",
  82. "clagiordano/weblibs-configmanager": "^1.0",
  83. "danielstjules/stringy": "^3.1",
  84. "ext-curl": "*",
  85. "ext-json": "*",
  86. "ext-libxml": "*",
  87. "ext-mbstring": "*",
  88. "ext-openssl": "*",
  89. "ext-simplexml": "*",
  90. "ext-xmlwriter": "*",
  91. "guzzlehttp/guzzle": "^6.3",
  92. "mtdowling/jmespath.php": "^2.4",
  93. "php": ">=5.5"
  94. },
  95. "require-dev": {
  96. "composer/composer": "^1.8",
  97. "drupal/coder": "^8.3",
  98. "ext-dom": "*",
  99. "ext-pcre": "*",
  100. "ext-sockets": "*",
  101. "ext-spl": "*",
  102. "league/climate": "^3.2.4",
  103. "mikey179/vfsstream": "^1.6",
  104. "monolog/monolog": "^1.24",
  105. "phpunit/phpunit": "^4.8.35|^5.4.3",
  106. "psr/cache": "^1.0",
  107. "symfony/dotenv": "^3.4",
  108. "symfony/var-dumper": "^3.4"
  109. },
  110. "suggest": {
  111. "ext-sockets": "To use client-side monitoring"
  112. },
  113. "time": "2019-12-30T01:59:20+00:00",
  114. "type": "library",
  115. "installation-source": "dist",
  116. "autoload": {
  117. "psr-4": {
  118. "AlibabaCloud\\Client\\": "src"
  119. },
  120. "files": [
  121. "src/Functions.php"
  122. ]
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "library",
  144. "sdk",
  145. "tool"
  146. ]
  147. },
  148. {
  149. "name": "alibabacloud/dysmsapi",
  150. "version": "1.8.75",
  151. "version_normalized": "1.8.75.0",
  152. "source": {
  153. "type": "git",
  154. "url": "https://github.com/alibabacloud-sdk-php/dysmsapi.git",
  155. "reference": "1715a5e4c10520116cf531ed20c287ae488b3489"
  156. },
  157. "dist": {
  158. "type": "zip",
  159. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dysmsapi/zipball/1715a5e4c10520116cf531ed20c287ae488b3489",
  160. "reference": "1715a5e4c10520116cf531ed20c287ae488b3489",
  161. "shasum": "",
  162. "mirrors": [
  163. {
  164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  165. "preferred": true
  166. }
  167. ]
  168. },
  169. "require": {
  170. "alibabacloud/client": "^1.5",
  171. "php": ">=5.5"
  172. },
  173. "time": "2019-12-02T02:17:52+00:00",
  174. "type": "library",
  175. "installation-source": "dist",
  176. "autoload": {
  177. "psr-4": {
  178. "AlibabaCloud\\Dysmsapi\\": ""
  179. }
  180. },
  181. "notification-url": "https://packagist.org/downloads/",
  182. "license": [
  183. "Apache-2.0"
  184. ],
  185. "authors": [
  186. {
  187. "name": "Alibaba Cloud SDK",
  188. "email": "sdk-team@alibabacloud.com",
  189. "homepage": "http://www.alibabacloud.com"
  190. }
  191. ],
  192. "description": "Alibaba Cloud Dysmsapi SDK for PHP",
  193. "homepage": "https://www.alibabacloud.com/",
  194. "keywords": [
  195. "alibaba",
  196. "alibabacloud",
  197. "aliyun",
  198. "cloud",
  199. "dysmsapi",
  200. "library",
  201. "sdk"
  202. ]
  203. },
  204. {
  205. "name": "aliyuncs/oss-sdk-php",
  206. "version": "v2.3.1",
  207. "version_normalized": "2.3.1.0",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  211. "reference": "053d7ba9e798e4c09b9c5c1edab153d25ea9643a"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/053d7ba9e798e4c09b9c5c1edab153d25ea9643a",
  216. "reference": "053d7ba9e798e4c09b9c5c1edab153d25ea9643a",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "php": ">=5.3"
  227. },
  228. "require-dev": {
  229. "phpunit/phpunit": "~4.0",
  230. "satooshi/php-coveralls": "~1.0"
  231. },
  232. "time": "2019-11-15T11:05:42+00:00",
  233. "type": "library",
  234. "installation-source": "dist",
  235. "autoload": {
  236. "psr-4": {
  237. "OSS\\": "src/OSS"
  238. }
  239. },
  240. "notification-url": "https://packagist.org/downloads/",
  241. "license": [
  242. "MIT"
  243. ],
  244. "authors": [
  245. {
  246. "name": "Aliyuncs",
  247. "homepage": "http://www.aliyun.com"
  248. }
  249. ],
  250. "description": "Aliyun OSS SDK for PHP",
  251. "homepage": "http://www.aliyun.com/product/oss/"
  252. },
  253. {
  254. "name": "clagiordano/weblibs-configmanager",
  255. "version": "v1.0.7",
  256. "version_normalized": "1.0.7.0",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  260. "reference": "6ef4c27354368deb2f54b39bbe06601da8c873a0"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/6ef4c27354368deb2f54b39bbe06601da8c873a0",
  265. "reference": "6ef4c27354368deb2f54b39bbe06601da8c873a0",
  266. "shasum": "",
  267. "mirrors": [
  268. {
  269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  270. "preferred": true
  271. }
  272. ]
  273. },
  274. "require": {
  275. "php": ">=5.4"
  276. },
  277. "require-dev": {
  278. "clagiordano/phpunit-result-printer": "^1",
  279. "phpunit/phpunit": "^4.8"
  280. },
  281. "time": "2019-09-25T22:10:10+00:00",
  282. "type": "library",
  283. "installation-source": "dist",
  284. "autoload": {
  285. "psr-4": {
  286. "clagiordano\\weblibs\\configmanager\\": "src/"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "LGPL-3.0-or-later"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Claudio Giordano",
  296. "email": "claudio.giordano@autistici.org",
  297. "role": "Developer"
  298. }
  299. ],
  300. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  301. "keywords": [
  302. "clagiordano",
  303. "configuration",
  304. "manager",
  305. "tool",
  306. "weblibs"
  307. ]
  308. },
  309. {
  310. "name": "danielstjules/stringy",
  311. "version": "3.1.0",
  312. "version_normalized": "3.1.0.0",
  313. "source": {
  314. "type": "git",
  315. "url": "https://github.com/danielstjules/Stringy.git",
  316. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  317. },
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  321. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  322. "shasum": "",
  323. "mirrors": [
  324. {
  325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  326. "preferred": true
  327. }
  328. ]
  329. },
  330. "require": {
  331. "php": ">=5.4.0",
  332. "symfony/polyfill-mbstring": "~1.1"
  333. },
  334. "require-dev": {
  335. "phpunit/phpunit": "~4.0"
  336. },
  337. "time": "2017-06-12T01:10:27+00:00",
  338. "type": "library",
  339. "installation-source": "dist",
  340. "autoload": {
  341. "psr-4": {
  342. "Stringy\\": "src/"
  343. },
  344. "files": [
  345. "src/Create.php"
  346. ]
  347. },
  348. "notification-url": "https://packagist.org/downloads/",
  349. "license": [
  350. "MIT"
  351. ],
  352. "authors": [
  353. {
  354. "name": "Daniel St. Jules",
  355. "email": "danielst.jules@gmail.com",
  356. "homepage": "http://www.danielstjules.com"
  357. }
  358. ],
  359. "description": "A string manipulation library with multibyte support",
  360. "homepage": "https://github.com/danielstjules/Stringy",
  361. "keywords": [
  362. "UTF",
  363. "helpers",
  364. "manipulation",
  365. "methods",
  366. "multibyte",
  367. "string",
  368. "utf-8",
  369. "utility",
  370. "utils"
  371. ]
  372. },
  373. {
  374. "name": "doctrine/cache",
  375. "version": "v1.6.2",
  376. "version_normalized": "1.6.2.0",
  377. "source": {
  378. "type": "git",
  379. "url": "https://github.com/doctrine/cache.git",
  380. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  381. },
  382. "dist": {
  383. "type": "zip",
  384. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  385. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  386. "shasum": "",
  387. "mirrors": [
  388. {
  389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  390. "preferred": true
  391. }
  392. ]
  393. },
  394. "require": {
  395. "php": "~5.5|~7.0"
  396. },
  397. "conflict": {
  398. "doctrine/common": ">2.2,<2.4"
  399. },
  400. "require-dev": {
  401. "phpunit/phpunit": "~4.8|~5.0",
  402. "predis/predis": "~1.0",
  403. "satooshi/php-coveralls": "~0.6"
  404. },
  405. "time": "2017-07-22T12:49:21+00:00",
  406. "type": "library",
  407. "extra": {
  408. "branch-alias": {
  409. "dev-master": "1.6.x-dev"
  410. }
  411. },
  412. "installation-source": "dist",
  413. "autoload": {
  414. "psr-4": {
  415. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  416. }
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "MIT"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Roman Borschel",
  425. "email": "roman@code-factory.org"
  426. },
  427. {
  428. "name": "Benjamin Eberlei",
  429. "email": "kontakt@beberlei.de"
  430. },
  431. {
  432. "name": "Guilherme Blanco",
  433. "email": "guilhermeblanco@gmail.com"
  434. },
  435. {
  436. "name": "Jonathan Wage",
  437. "email": "jonwage@gmail.com"
  438. },
  439. {
  440. "name": "Johannes Schmitt",
  441. "email": "schmittjoh@gmail.com"
  442. }
  443. ],
  444. "description": "Caching library offering an object-oriented API for many cache backends",
  445. "homepage": "http://www.doctrine-project.org",
  446. "keywords": [
  447. "cache",
  448. "caching"
  449. ]
  450. },
  451. {
  452. "name": "guzzle/common",
  453. "version": "v3.9.2",
  454. "version_normalized": "3.9.2.0",
  455. "target-dir": "Guzzle/Common",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/Guzzle3/common.git",
  459. "reference": "2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/Guzzle3/common/zipball/2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc",
  464. "reference": "2e36af7cf2ce3ea1f2d7c2831843b883a8e7b7dc",
  465. "shasum": "",
  466. "mirrors": [
  467. {
  468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  469. "preferred": true
  470. }
  471. ]
  472. },
  473. "require": {
  474. "php": ">=5.3.2",
  475. "symfony/event-dispatcher": ">=2.1"
  476. },
  477. "time": "2014-08-11T04:32:36+00:00",
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-master": "3.7-dev"
  482. }
  483. },
  484. "installation-source": "dist",
  485. "autoload": {
  486. "psr-0": {
  487. "Guzzle\\Common": ""
  488. }
  489. },
  490. "notification-url": "https://packagist.org/downloads/",
  491. "license": [
  492. "MIT"
  493. ],
  494. "description": "Common libraries used by Guzzle",
  495. "homepage": "http://guzzlephp.org/",
  496. "keywords": [
  497. "collection",
  498. "common",
  499. "event",
  500. "exception"
  501. ],
  502. "abandoned": "guzzle/guzzle"
  503. },
  504. {
  505. "name": "guzzle/stream",
  506. "version": "v3.9.2",
  507. "version_normalized": "3.9.2.0",
  508. "target-dir": "Guzzle/Stream",
  509. "source": {
  510. "type": "git",
  511. "url": "https://github.com/Guzzle3/stream.git",
  512. "reference": "60c7fed02e98d2c518dae8f97874c8f4622100f0"
  513. },
  514. "dist": {
  515. "type": "zip",
  516. "url": "https://api.github.com/repos/Guzzle3/stream/zipball/60c7fed02e98d2c518dae8f97874c8f4622100f0",
  517. "reference": "60c7fed02e98d2c518dae8f97874c8f4622100f0",
  518. "shasum": "",
  519. "mirrors": [
  520. {
  521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  522. "preferred": true
  523. }
  524. ]
  525. },
  526. "require": {
  527. "guzzle/common": "self.version",
  528. "php": ">=5.3.2"
  529. },
  530. "suggest": {
  531. "guzzle/http": "To convert Guzzle request objects to PHP streams"
  532. },
  533. "time": "2014-05-01T21:36:02+00:00",
  534. "type": "library",
  535. "extra": {
  536. "branch-alias": {
  537. "dev-master": "3.7-dev"
  538. }
  539. },
  540. "installation-source": "dist",
  541. "autoload": {
  542. "psr-0": {
  543. "Guzzle\\Stream": ""
  544. }
  545. },
  546. "notification-url": "https://packagist.org/downloads/",
  547. "license": [
  548. "MIT"
  549. ],
  550. "authors": [
  551. {
  552. "name": "Michael Dowling",
  553. "email": "mtdowling@gmail.com",
  554. "homepage": "https://github.com/mtdowling"
  555. }
  556. ],
  557. "description": "Guzzle stream wrapper component",
  558. "homepage": "http://guzzlephp.org/",
  559. "keywords": [
  560. "Guzzle",
  561. "component",
  562. "stream"
  563. ],
  564. "abandoned": "guzzle/guzzle"
  565. },
  566. {
  567. "name": "guzzlehttp/guzzle",
  568. "version": "6.3.0",
  569. "version_normalized": "6.3.0.0",
  570. "source": {
  571. "type": "git",
  572. "url": "https://github.com/guzzle/guzzle.git",
  573. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699"
  574. },
  575. "dist": {
  576. "type": "zip",
  577. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  578. "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699",
  579. "shasum": "",
  580. "mirrors": [
  581. {
  582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  583. "preferred": true
  584. }
  585. ]
  586. },
  587. "require": {
  588. "guzzlehttp/promises": "^1.0",
  589. "guzzlehttp/psr7": "^1.4",
  590. "php": ">=5.5"
  591. },
  592. "require-dev": {
  593. "ext-curl": "*",
  594. "phpunit/phpunit": "^4.0 || ^5.0",
  595. "psr/log": "^1.0"
  596. },
  597. "suggest": {
  598. "psr/log": "Required for using the Log middleware"
  599. },
  600. "time": "2017-06-22T18:50:49+00:00",
  601. "type": "library",
  602. "extra": {
  603. "branch-alias": {
  604. "dev-master": "6.2-dev"
  605. }
  606. },
  607. "installation-source": "dist",
  608. "autoload": {
  609. "files": [
  610. "src/functions_include.php"
  611. ],
  612. "psr-4": {
  613. "GuzzleHttp\\": "src/"
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "MIT"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Michael Dowling",
  623. "email": "mtdowling@gmail.com",
  624. "homepage": "https://github.com/mtdowling"
  625. }
  626. ],
  627. "description": "Guzzle is a PHP HTTP client library",
  628. "homepage": "http://guzzlephp.org/",
  629. "keywords": [
  630. "client",
  631. "curl",
  632. "framework",
  633. "http",
  634. "http client",
  635. "rest",
  636. "web service"
  637. ]
  638. },
  639. {
  640. "name": "guzzlehttp/promises",
  641. "version": "v1.3.1",
  642. "version_normalized": "1.3.1.0",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/guzzle/promises.git",
  646. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  651. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  652. "shasum": "",
  653. "mirrors": [
  654. {
  655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  656. "preferred": true
  657. }
  658. ]
  659. },
  660. "require": {
  661. "php": ">=5.5.0"
  662. },
  663. "require-dev": {
  664. "phpunit/phpunit": "^4.0"
  665. },
  666. "time": "2016-12-20T10:07:11+00:00",
  667. "type": "library",
  668. "extra": {
  669. "branch-alias": {
  670. "dev-master": "1.4-dev"
  671. }
  672. },
  673. "installation-source": "dist",
  674. "autoload": {
  675. "psr-4": {
  676. "GuzzleHttp\\Promise\\": "src/"
  677. },
  678. "files": [
  679. "src/functions_include.php"
  680. ]
  681. },
  682. "notification-url": "https://packagist.org/downloads/",
  683. "license": [
  684. "MIT"
  685. ],
  686. "authors": [
  687. {
  688. "name": "Michael Dowling",
  689. "email": "mtdowling@gmail.com",
  690. "homepage": "https://github.com/mtdowling"
  691. }
  692. ],
  693. "description": "Guzzle promises library",
  694. "keywords": [
  695. "promise"
  696. ]
  697. },
  698. {
  699. "name": "guzzlehttp/psr7",
  700. "version": "1.4.2",
  701. "version_normalized": "1.4.2.0",
  702. "source": {
  703. "type": "git",
  704. "url": "https://github.com/guzzle/psr7.git",
  705. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  706. },
  707. "dist": {
  708. "type": "zip",
  709. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  710. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  711. "shasum": "",
  712. "mirrors": [
  713. {
  714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  715. "preferred": true
  716. }
  717. ]
  718. },
  719. "require": {
  720. "php": ">=5.4.0",
  721. "psr/http-message": "~1.0"
  722. },
  723. "provide": {
  724. "psr/http-message-implementation": "1.0"
  725. },
  726. "require-dev": {
  727. "phpunit/phpunit": "~4.0"
  728. },
  729. "time": "2017-03-20T17:10:46+00:00",
  730. "type": "library",
  731. "extra": {
  732. "branch-alias": {
  733. "dev-master": "1.4-dev"
  734. }
  735. },
  736. "installation-source": "dist",
  737. "autoload": {
  738. "psr-4": {
  739. "GuzzleHttp\\Psr7\\": "src/"
  740. },
  741. "files": [
  742. "src/functions_include.php"
  743. ]
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "Michael Dowling",
  752. "email": "mtdowling@gmail.com",
  753. "homepage": "https://github.com/mtdowling"
  754. },
  755. {
  756. "name": "Tobias Schultze",
  757. "homepage": "https://github.com/Tobion"
  758. }
  759. ],
  760. "description": "PSR-7 message implementation that also provides common utility methods",
  761. "keywords": [
  762. "http",
  763. "message",
  764. "request",
  765. "response",
  766. "stream",
  767. "uri",
  768. "url"
  769. ]
  770. },
  771. {
  772. "name": "intervention/image",
  773. "version": "2.5.1",
  774. "version_normalized": "2.5.1.0",
  775. "source": {
  776. "type": "git",
  777. "url": "https://github.com/Intervention/image.git",
  778. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  779. },
  780. "dist": {
  781. "type": "zip",
  782. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  783. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  784. "shasum": "",
  785. "mirrors": [
  786. {
  787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  788. "preferred": true
  789. }
  790. ]
  791. },
  792. "require": {
  793. "ext-fileinfo": "*",
  794. "guzzlehttp/psr7": "~1.1",
  795. "php": ">=5.4.0"
  796. },
  797. "require-dev": {
  798. "mockery/mockery": "~0.9.2",
  799. "phpunit/phpunit": "^4.8 || ^5.7"
  800. },
  801. "suggest": {
  802. "ext-gd": "to use GD library based image processing.",
  803. "ext-imagick": "to use Imagick based image processing.",
  804. "intervention/imagecache": "Caching extension for the Intervention Image library"
  805. },
  806. "time": "2019-11-02T09:15:47+00:00",
  807. "type": "library",
  808. "extra": {
  809. "branch-alias": {
  810. "dev-master": "2.4-dev"
  811. },
  812. "laravel": {
  813. "providers": [
  814. "Intervention\\Image\\ImageServiceProvider"
  815. ],
  816. "aliases": {
  817. "Image": "Intervention\\Image\\Facades\\Image"
  818. }
  819. }
  820. },
  821. "installation-source": "dist",
  822. "autoload": {
  823. "psr-4": {
  824. "Intervention\\Image\\": "src/Intervention/Image"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "MIT"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Oliver Vogel",
  834. "email": "oliver@olivervogel.com",
  835. "homepage": "http://olivervogel.com/"
  836. }
  837. ],
  838. "description": "Image handling and manipulation library with support for Laravel integration",
  839. "homepage": "http://image.intervention.io/",
  840. "keywords": [
  841. "gd",
  842. "image",
  843. "imagick",
  844. "laravel",
  845. "thumbnail",
  846. "watermark"
  847. ]
  848. },
  849. {
  850. "name": "jenssegers/date",
  851. "version": "v3.4.0",
  852. "version_normalized": "3.4.0.0",
  853. "source": {
  854. "type": "git",
  855. "url": "https://github.com/jenssegers/date.git",
  856. "reference": "3f5f94f28bd5108fab011869434209101d4189ae"
  857. },
  858. "dist": {
  859. "type": "zip",
  860. "url": "https://api.github.com/repos/jenssegers/date/zipball/3f5f94f28bd5108fab011869434209101d4189ae",
  861. "reference": "3f5f94f28bd5108fab011869434209101d4189ae",
  862. "shasum": "",
  863. "mirrors": [
  864. {
  865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  866. "preferred": true
  867. }
  868. ]
  869. },
  870. "require": {
  871. "nesbot/carbon": "^1.0",
  872. "php": ">=5.6",
  873. "symfony/translation": "^2.7|^3.0|^4.0"
  874. },
  875. "require-dev": {
  876. "phpunit/phpunit": "^5.0|^6.0|^7.0",
  877. "satooshi/php-coveralls": "^2.0"
  878. },
  879. "time": "2018-05-16T11:53:55+00:00",
  880. "type": "library",
  881. "extra": {
  882. "branch-alias": {
  883. "dev-master": "3.1-dev"
  884. },
  885. "laravel": {
  886. "providers": [
  887. "Jenssegers\\Date\\DateServiceProvider"
  888. ],
  889. "aliases": {
  890. "Date": "Jenssegers\\Date\\Date"
  891. }
  892. }
  893. },
  894. "installation-source": "dist",
  895. "autoload": {
  896. "psr-4": {
  897. "Jenssegers\\Date\\": "src/"
  898. }
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "MIT"
  903. ],
  904. "authors": [
  905. {
  906. "name": "Jens Segers",
  907. "homepage": "https://jenssegers.com"
  908. }
  909. ],
  910. "description": "A date library to help you work with dates in different languages",
  911. "homepage": "https://github.com/jenssegers/date",
  912. "keywords": [
  913. "carbon",
  914. "date",
  915. "datetime",
  916. "i18n",
  917. "laravel",
  918. "time",
  919. "translation"
  920. ]
  921. },
  922. {
  923. "name": "markbaker/complex",
  924. "version": "1.4.7",
  925. "version_normalized": "1.4.7.0",
  926. "source": {
  927. "type": "git",
  928. "url": "https://github.com/MarkBaker/PHPComplex.git",
  929. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000"
  930. },
  931. "dist": {
  932. "type": "zip",
  933. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  934. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  935. "shasum": "",
  936. "mirrors": [
  937. {
  938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  939. "preferred": true
  940. }
  941. ]
  942. },
  943. "require": {
  944. "php": "^5.6.0|^7.0.0"
  945. },
  946. "require-dev": {
  947. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
  948. "phpcompatibility/php-compatibility": "^8.0",
  949. "phpdocumentor/phpdocumentor": "2.*",
  950. "phploc/phploc": "2.*",
  951. "phpmd/phpmd": "2.*",
  952. "phpunit/phpunit": "^4.8.35|^5.4.0",
  953. "sebastian/phpcpd": "2.*",
  954. "squizlabs/php_codesniffer": "^3.3.0"
  955. },
  956. "time": "2018-10-13T23:28:42+00:00",
  957. "type": "library",
  958. "installation-source": "dist",
  959. "autoload": {
  960. "psr-4": {
  961. "Complex\\": "classes/src/"
  962. },
  963. "files": [
  964. "classes/src/functions/abs.php",
  965. "classes/src/functions/acos.php",
  966. "classes/src/functions/acosh.php",
  967. "classes/src/functions/acot.php",
  968. "classes/src/functions/acoth.php",
  969. "classes/src/functions/acsc.php",
  970. "classes/src/functions/acsch.php",
  971. "classes/src/functions/argument.php",
  972. "classes/src/functions/asec.php",
  973. "classes/src/functions/asech.php",
  974. "classes/src/functions/asin.php",
  975. "classes/src/functions/asinh.php",
  976. "classes/src/functions/atan.php",
  977. "classes/src/functions/atanh.php",
  978. "classes/src/functions/conjugate.php",
  979. "classes/src/functions/cos.php",
  980. "classes/src/functions/cosh.php",
  981. "classes/src/functions/cot.php",
  982. "classes/src/functions/coth.php",
  983. "classes/src/functions/csc.php",
  984. "classes/src/functions/csch.php",
  985. "classes/src/functions/exp.php",
  986. "classes/src/functions/inverse.php",
  987. "classes/src/functions/ln.php",
  988. "classes/src/functions/log2.php",
  989. "classes/src/functions/log10.php",
  990. "classes/src/functions/negative.php",
  991. "classes/src/functions/pow.php",
  992. "classes/src/functions/rho.php",
  993. "classes/src/functions/sec.php",
  994. "classes/src/functions/sech.php",
  995. "classes/src/functions/sin.php",
  996. "classes/src/functions/sinh.php",
  997. "classes/src/functions/sqrt.php",
  998. "classes/src/functions/tan.php",
  999. "classes/src/functions/tanh.php",
  1000. "classes/src/functions/theta.php",
  1001. "classes/src/operations/add.php",
  1002. "classes/src/operations/subtract.php",
  1003. "classes/src/operations/multiply.php",
  1004. "classes/src/operations/divideby.php",
  1005. "classes/src/operations/divideinto.php"
  1006. ]
  1007. },
  1008. "notification-url": "https://packagist.org/downloads/",
  1009. "license": [
  1010. "MIT"
  1011. ],
  1012. "authors": [
  1013. {
  1014. "name": "Mark Baker",
  1015. "email": "mark@lange.demon.co.uk"
  1016. }
  1017. ],
  1018. "description": "PHP Class for working with complex numbers",
  1019. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1020. "keywords": [
  1021. "complex",
  1022. "mathematics"
  1023. ]
  1024. },
  1025. {
  1026. "name": "markbaker/matrix",
  1027. "version": "1.1.4",
  1028. "version_normalized": "1.1.4.0",
  1029. "source": {
  1030. "type": "git",
  1031. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1032. "reference": "6ea97472b5baf12119b4f31f802835b820dd6d64"
  1033. },
  1034. "dist": {
  1035. "type": "zip",
  1036. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/6ea97472b5baf12119b4f31f802835b820dd6d64",
  1037. "reference": "6ea97472b5baf12119b4f31f802835b820dd6d64",
  1038. "shasum": "",
  1039. "mirrors": [
  1040. {
  1041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1042. "preferred": true
  1043. }
  1044. ]
  1045. },
  1046. "require": {
  1047. "php": "^5.6.0|^7.0.0"
  1048. },
  1049. "require-dev": {
  1050. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
  1051. "phpcompatibility/php-compatibility": "^8.0",
  1052. "phpdocumentor/phpdocumentor": "2.*",
  1053. "phploc/phploc": "2.*",
  1054. "phpmd/phpmd": "2.*",
  1055. "phpunit/phpunit": "^4.8.35|^5.4.0",
  1056. "sebastian/phpcpd": "2.*",
  1057. "squizlabs/php_codesniffer": "^3.3.0"
  1058. },
  1059. "time": "2018-11-04T22:12:12+00:00",
  1060. "type": "library",
  1061. "installation-source": "dist",
  1062. "autoload": {
  1063. "psr-4": {
  1064. "Matrix\\": "classes/src/"
  1065. },
  1066. "files": [
  1067. "classes/src/functions/adjoint.php",
  1068. "classes/src/functions/antidiagonal.php",
  1069. "classes/src/functions/cofactors.php",
  1070. "classes/src/functions/determinant.php",
  1071. "classes/src/functions/diagonal.php",
  1072. "classes/src/functions/identity.php",
  1073. "classes/src/functions/inverse.php",
  1074. "classes/src/functions/minors.php",
  1075. "classes/src/functions/trace.php",
  1076. "classes/src/functions/transpose.php",
  1077. "classes/src/operations/add.php",
  1078. "classes/src/operations/directsum.php",
  1079. "classes/src/operations/subtract.php",
  1080. "classes/src/operations/multiply.php",
  1081. "classes/src/operations/divideby.php",
  1082. "classes/src/operations/divideinto.php"
  1083. ]
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "MIT"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "Mark Baker",
  1092. "email": "mark@lange.demon.co.uk"
  1093. }
  1094. ],
  1095. "description": "PHP Class for working with matrices",
  1096. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1097. "keywords": [
  1098. "mathematics",
  1099. "matrix",
  1100. "vector"
  1101. ]
  1102. },
  1103. {
  1104. "name": "monolog/monolog",
  1105. "version": "1.23.0",
  1106. "version_normalized": "1.23.0.0",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/Seldaek/monolog.git",
  1110. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  1115. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  1116. "shasum": "",
  1117. "mirrors": [
  1118. {
  1119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1120. "preferred": true
  1121. }
  1122. ]
  1123. },
  1124. "require": {
  1125. "php": ">=5.3.0",
  1126. "psr/log": "~1.0"
  1127. },
  1128. "provide": {
  1129. "psr/log-implementation": "1.0.0"
  1130. },
  1131. "require-dev": {
  1132. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1133. "doctrine/couchdb": "~1.0@dev",
  1134. "graylog2/gelf-php": "~1.0",
  1135. "jakub-onderka/php-parallel-lint": "0.9",
  1136. "php-amqplib/php-amqplib": "~2.4",
  1137. "php-console/php-console": "^3.1.3",
  1138. "phpunit/phpunit": "~4.5",
  1139. "phpunit/phpunit-mock-objects": "2.3.0",
  1140. "ruflin/elastica": ">=0.90 <3.0",
  1141. "sentry/sentry": "^0.13",
  1142. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1143. },
  1144. "suggest": {
  1145. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1146. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1147. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1148. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1149. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1150. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1151. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1152. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1153. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1154. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1155. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1156. },
  1157. "time": "2017-06-19T01:22:40+00:00",
  1158. "type": "library",
  1159. "extra": {
  1160. "branch-alias": {
  1161. "dev-master": "2.0.x-dev"
  1162. }
  1163. },
  1164. "installation-source": "dist",
  1165. "autoload": {
  1166. "psr-4": {
  1167. "Monolog\\": "src/Monolog"
  1168. }
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Jordi Boggiano",
  1177. "email": "j.boggiano@seld.be",
  1178. "homepage": "http://seld.be"
  1179. }
  1180. ],
  1181. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1182. "homepage": "http://github.com/Seldaek/monolog",
  1183. "keywords": [
  1184. "log",
  1185. "logging",
  1186. "psr-3"
  1187. ]
  1188. },
  1189. {
  1190. "name": "mtdowling/cron-expression",
  1191. "version": "v1.2.1",
  1192. "version_normalized": "1.2.1.0",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/mtdowling/cron-expression.git",
  1196. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  1201. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  1202. "shasum": "",
  1203. "mirrors": [
  1204. {
  1205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1206. "preferred": true
  1207. }
  1208. ]
  1209. },
  1210. "require": {
  1211. "php": ">=5.3.2"
  1212. },
  1213. "require-dev": {
  1214. "phpunit/phpunit": "~4.0|~5.0"
  1215. },
  1216. "time": "2017-01-23T04:29:33+00:00",
  1217. "type": "library",
  1218. "installation-source": "dist",
  1219. "autoload": {
  1220. "psr-4": {
  1221. "Cron\\": "src/Cron/"
  1222. }
  1223. },
  1224. "notification-url": "https://packagist.org/downloads/",
  1225. "license": [
  1226. "MIT"
  1227. ],
  1228. "authors": [
  1229. {
  1230. "name": "Michael Dowling",
  1231. "email": "mtdowling@gmail.com",
  1232. "homepage": "https://github.com/mtdowling"
  1233. }
  1234. ],
  1235. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1236. "keywords": [
  1237. "cron",
  1238. "schedule"
  1239. ],
  1240. "abandoned": "dragonmantank/cron-expression"
  1241. },
  1242. {
  1243. "name": "mtdowling/jmespath.php",
  1244. "version": "2.5.0",
  1245. "version_normalized": "2.5.0.0",
  1246. "source": {
  1247. "type": "git",
  1248. "url": "https://github.com/jmespath/jmespath.php.git",
  1249. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  1250. },
  1251. "dist": {
  1252. "type": "zip",
  1253. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  1254. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  1255. "shasum": "",
  1256. "mirrors": [
  1257. {
  1258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1259. "preferred": true
  1260. }
  1261. ]
  1262. },
  1263. "require": {
  1264. "php": ">=5.4.0",
  1265. "symfony/polyfill-mbstring": "^1.4"
  1266. },
  1267. "require-dev": {
  1268. "composer/xdebug-handler": "^1.2",
  1269. "phpunit/phpunit": "^4.8.36|^7.5.15"
  1270. },
  1271. "time": "2019-12-30T18:03:34+00:00",
  1272. "bin": [
  1273. "bin/jp.php"
  1274. ],
  1275. "type": "library",
  1276. "extra": {
  1277. "branch-alias": {
  1278. "dev-master": "2.5-dev"
  1279. }
  1280. },
  1281. "installation-source": "dist",
  1282. "autoload": {
  1283. "psr-4": {
  1284. "JmesPath\\": "src/"
  1285. },
  1286. "files": [
  1287. "src/JmesPath.php"
  1288. ]
  1289. },
  1290. "notification-url": "https://packagist.org/downloads/",
  1291. "license": [
  1292. "MIT"
  1293. ],
  1294. "authors": [
  1295. {
  1296. "name": "Michael Dowling",
  1297. "email": "mtdowling@gmail.com",
  1298. "homepage": "https://github.com/mtdowling"
  1299. }
  1300. ],
  1301. "description": "Declaratively specify how to extract elements from a JSON document",
  1302. "keywords": [
  1303. "json",
  1304. "jsonpath"
  1305. ]
  1306. },
  1307. {
  1308. "name": "nesbot/carbon",
  1309. "version": "1.36.2",
  1310. "version_normalized": "1.36.2.0",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/briannesbitt/Carbon.git",
  1314. "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9",
  1319. "reference": "cd324b98bc30290f233dd0e75e6ce49f7ab2a6c9",
  1320. "shasum": "",
  1321. "mirrors": [
  1322. {
  1323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1324. "preferred": true
  1325. }
  1326. ]
  1327. },
  1328. "require": {
  1329. "php": ">=5.3.9",
  1330. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  1331. },
  1332. "require-dev": {
  1333. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1334. },
  1335. "suggest": {
  1336. "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.",
  1337. "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors."
  1338. },
  1339. "time": "2018-12-28T10:07:33+00:00",
  1340. "type": "library",
  1341. "extra": {
  1342. "laravel": {
  1343. "providers": [
  1344. "Carbon\\Laravel\\ServiceProvider"
  1345. ]
  1346. }
  1347. },
  1348. "installation-source": "dist",
  1349. "autoload": {
  1350. "psr-4": {
  1351. "": "src/"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Brian Nesbitt",
  1361. "email": "brian@nesbot.com",
  1362. "homepage": "http://nesbot.com"
  1363. }
  1364. ],
  1365. "description": "A simple API extension for DateTime.",
  1366. "homepage": "http://carbon.nesbot.com",
  1367. "keywords": [
  1368. "date",
  1369. "datetime",
  1370. "time"
  1371. ]
  1372. },
  1373. {
  1374. "name": "overtrue/socialite",
  1375. "version": "1.3.0",
  1376. "version_normalized": "1.3.0.0",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/overtrue/socialite.git",
  1380. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  1385. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  1386. "shasum": "",
  1387. "mirrors": [
  1388. {
  1389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1390. "preferred": true
  1391. }
  1392. ]
  1393. },
  1394. "require": {
  1395. "guzzlehttp/guzzle": "~5.0|~6.0",
  1396. "php": ">=5.4.0",
  1397. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  1398. },
  1399. "require-dev": {
  1400. "mockery/mockery": "~0.9",
  1401. "phpunit/phpunit": "~4.0"
  1402. },
  1403. "time": "2017-08-04T06:28:22+00:00",
  1404. "type": "library",
  1405. "installation-source": "dist",
  1406. "autoload": {
  1407. "psr-4": {
  1408. "Overtrue\\Socialite\\": "src/"
  1409. }
  1410. },
  1411. "notification-url": "https://packagist.org/downloads/",
  1412. "license": [
  1413. "MIT"
  1414. ],
  1415. "authors": [
  1416. {
  1417. "name": "overtrue",
  1418. "email": "anzhengchao@gmail.com"
  1419. }
  1420. ],
  1421. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1422. "keywords": [
  1423. "login",
  1424. "oauth",
  1425. "qq",
  1426. "social",
  1427. "wechat",
  1428. "weibo"
  1429. ]
  1430. },
  1431. {
  1432. "name": "overtrue/wechat",
  1433. "version": "3.3.20",
  1434. "version_normalized": "3.3.20.0",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/overtrue/wechat.git",
  1438. "reference": "802ea7218e9ceeffb9530f78cdf56033b58da963"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/overtrue/wechat/zipball/802ea7218e9ceeffb9530f78cdf56033b58da963",
  1443. "reference": "802ea7218e9ceeffb9530f78cdf56033b58da963",
  1444. "shasum": "",
  1445. "mirrors": [
  1446. {
  1447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1448. "preferred": true
  1449. }
  1450. ]
  1451. },
  1452. "require": {
  1453. "doctrine/cache": "~1.4",
  1454. "ext-openssl": "*",
  1455. "guzzlehttp/guzzle": "~6.2",
  1456. "monolog/monolog": "^1.17",
  1457. "overtrue/socialite": ">=1.0.25",
  1458. "php": ">=5.5.0",
  1459. "pimple/pimple": "~3.0",
  1460. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  1461. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  1462. },
  1463. "require-dev": {
  1464. "mockery/mockery": "^0.9.9",
  1465. "overtrue/phplint": "dev-master",
  1466. "phpunit/phpunit": "~4.0"
  1467. },
  1468. "time": "2017-11-13T06:58:27+00:00",
  1469. "type": "library",
  1470. "installation-source": "dist",
  1471. "autoload": {
  1472. "psr-4": {
  1473. "EasyWeChat\\": "src/"
  1474. },
  1475. "files": [
  1476. "src/Payment/helpers.php"
  1477. ]
  1478. },
  1479. "notification-url": "https://packagist.org/downloads/",
  1480. "license": [
  1481. "MIT"
  1482. ],
  1483. "authors": [
  1484. {
  1485. "name": "overtrue",
  1486. "email": "anzhengchao@gmail.com"
  1487. }
  1488. ],
  1489. "description": "微信SDK",
  1490. "keywords": [
  1491. "sdk",
  1492. "wechat",
  1493. "weixin",
  1494. "weixin-sdk"
  1495. ]
  1496. },
  1497. {
  1498. "name": "phpoffice/phpexcel",
  1499. "version": "1.8.2",
  1500. "version_normalized": "1.8.2.0",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1504. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1509. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1510. "shasum": "",
  1511. "mirrors": [
  1512. {
  1513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1514. "preferred": true
  1515. }
  1516. ]
  1517. },
  1518. "require": {
  1519. "ext-mbstring": "*",
  1520. "ext-xml": "*",
  1521. "ext-xmlwriter": "*",
  1522. "php": "^5.2|^7.0"
  1523. },
  1524. "require-dev": {
  1525. "squizlabs/php_codesniffer": "2.*"
  1526. },
  1527. "time": "2018-11-22T23:07:24+00:00",
  1528. "type": "library",
  1529. "installation-source": "dist",
  1530. "autoload": {
  1531. "psr-0": {
  1532. "PHPExcel": "Classes/"
  1533. }
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "LGPL-2.1"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Maarten Balliauw",
  1542. "homepage": "http://blog.maartenballiauw.be"
  1543. },
  1544. {
  1545. "name": "Erik Tilt"
  1546. },
  1547. {
  1548. "name": "Franck Lefevre",
  1549. "homepage": "http://rootslabs.net"
  1550. },
  1551. {
  1552. "name": "Mark Baker",
  1553. "homepage": "http://markbakeruk.net"
  1554. }
  1555. ],
  1556. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1557. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1558. "keywords": [
  1559. "OpenXML",
  1560. "excel",
  1561. "php",
  1562. "spreadsheet",
  1563. "xls",
  1564. "xlsx"
  1565. ],
  1566. "abandoned": "phpoffice/phpspreadsheet"
  1567. },
  1568. {
  1569. "name": "phpoffice/phpspreadsheet",
  1570. "version": "1.6.0",
  1571. "version_normalized": "1.6.0.0",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1575. "reference": "bf00f0cc5f55c354018f9a9ef15e6e3e1a229051"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/bf00f0cc5f55c354018f9a9ef15e6e3e1a229051",
  1580. "reference": "bf00f0cc5f55c354018f9a9ef15e6e3e1a229051",
  1581. "shasum": "",
  1582. "mirrors": [
  1583. {
  1584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1585. "preferred": true
  1586. }
  1587. ]
  1588. },
  1589. "require": {
  1590. "ext-ctype": "*",
  1591. "ext-dom": "*",
  1592. "ext-fileinfo": "*",
  1593. "ext-gd": "*",
  1594. "ext-iconv": "*",
  1595. "ext-libxml": "*",
  1596. "ext-mbstring": "*",
  1597. "ext-simplexml": "*",
  1598. "ext-xml": "*",
  1599. "ext-xmlreader": "*",
  1600. "ext-xmlwriter": "*",
  1601. "ext-zip": "*",
  1602. "ext-zlib": "*",
  1603. "markbaker/complex": "^1.4",
  1604. "markbaker/matrix": "^1.1",
  1605. "php": "^5.6|^7.0",
  1606. "psr/simple-cache": "^1.0"
  1607. },
  1608. "require-dev": {
  1609. "doctrine/instantiator": "^1.0.0",
  1610. "dompdf/dompdf": "^0.8.0",
  1611. "friendsofphp/php-cs-fixer": "@stable",
  1612. "jpgraph/jpgraph": "^4.0",
  1613. "mpdf/mpdf": "^7.0.0",
  1614. "phpcompatibility/php-compatibility": "^8.0",
  1615. "phpunit/phpunit": "^5.7",
  1616. "squizlabs/php_codesniffer": "^3.3",
  1617. "tecnickcom/tcpdf": "^6.2"
  1618. },
  1619. "suggest": {
  1620. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  1621. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1622. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1623. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  1624. },
  1625. "time": "2019-01-02T04:42:54+00:00",
  1626. "type": "library",
  1627. "installation-source": "dist",
  1628. "autoload": {
  1629. "psr-4": {
  1630. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "LGPL-2.1-or-later"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "Erik Tilt"
  1640. },
  1641. {
  1642. "name": "Adrien Crivelli"
  1643. },
  1644. {
  1645. "name": "Maarten Balliauw",
  1646. "homepage": "https://blog.maartenballiauw.be"
  1647. },
  1648. {
  1649. "name": "Mark Baker",
  1650. "homepage": "https://markbakeruk.net"
  1651. },
  1652. {
  1653. "name": "Franck Lefevre",
  1654. "homepage": "https://rootslabs.net"
  1655. }
  1656. ],
  1657. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1658. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1659. "keywords": [
  1660. "OpenXML",
  1661. "excel",
  1662. "gnumeric",
  1663. "ods",
  1664. "php",
  1665. "spreadsheet",
  1666. "xls",
  1667. "xlsx"
  1668. ]
  1669. },
  1670. {
  1671. "name": "pimple/pimple",
  1672. "version": "v3.2.2",
  1673. "version_normalized": "3.2.2.0",
  1674. "source": {
  1675. "type": "git",
  1676. "url": "https://github.com/silexphp/Pimple.git",
  1677. "reference": "4d45fb62d96418396ec58ba76e6f065bca16e10a"
  1678. },
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/4d45fb62d96418396ec58ba76e6f065bca16e10a",
  1682. "reference": "4d45fb62d96418396ec58ba76e6f065bca16e10a",
  1683. "shasum": "",
  1684. "mirrors": [
  1685. {
  1686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1687. "preferred": true
  1688. }
  1689. ]
  1690. },
  1691. "require": {
  1692. "php": ">=5.3.0",
  1693. "psr/container": "^1.0"
  1694. },
  1695. "require-dev": {
  1696. "symfony/phpunit-bridge": "^3.2"
  1697. },
  1698. "time": "2017-07-23T07:32:15+00:00",
  1699. "type": "library",
  1700. "extra": {
  1701. "branch-alias": {
  1702. "dev-master": "3.2.x-dev"
  1703. }
  1704. },
  1705. "installation-source": "dist",
  1706. "autoload": {
  1707. "psr-0": {
  1708. "Pimple": "src/"
  1709. }
  1710. },
  1711. "notification-url": "https://packagist.org/downloads/",
  1712. "license": [
  1713. "MIT"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "Fabien Potencier",
  1718. "email": "fabien@symfony.com"
  1719. }
  1720. ],
  1721. "description": "Pimple, a simple Dependency Injection Container",
  1722. "homepage": "http://pimple.sensiolabs.org",
  1723. "keywords": [
  1724. "container",
  1725. "dependency injection"
  1726. ]
  1727. },
  1728. {
  1729. "name": "psr/container",
  1730. "version": "1.0.0",
  1731. "version_normalized": "1.0.0.0",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/php-fig/container.git",
  1735. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1740. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1741. "shasum": "",
  1742. "mirrors": [
  1743. {
  1744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1745. "preferred": true
  1746. }
  1747. ]
  1748. },
  1749. "require": {
  1750. "php": ">=5.3.0"
  1751. },
  1752. "time": "2017-02-14T16:28:37+00:00",
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "1.0.x-dev"
  1757. }
  1758. },
  1759. "installation-source": "dist",
  1760. "autoload": {
  1761. "psr-4": {
  1762. "Psr\\Container\\": "src/"
  1763. }
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "MIT"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "PHP-FIG",
  1772. "homepage": "http://www.php-fig.org/"
  1773. }
  1774. ],
  1775. "description": "Common Container Interface (PHP FIG PSR-11)",
  1776. "homepage": "https://github.com/php-fig/container",
  1777. "keywords": [
  1778. "PSR-11",
  1779. "container",
  1780. "container-interface",
  1781. "container-interop",
  1782. "psr"
  1783. ]
  1784. },
  1785. {
  1786. "name": "psr/event-dispatcher",
  1787. "version": "1.0.0",
  1788. "version_normalized": "1.0.0.0",
  1789. "source": {
  1790. "type": "git",
  1791. "url": "https://github.com/php-fig/event-dispatcher.git",
  1792. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1793. },
  1794. "dist": {
  1795. "type": "zip",
  1796. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1797. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1798. "shasum": "",
  1799. "mirrors": [
  1800. {
  1801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1802. "preferred": true
  1803. }
  1804. ]
  1805. },
  1806. "require": {
  1807. "php": ">=7.2.0"
  1808. },
  1809. "time": "2019-01-08T18:20:26+00:00",
  1810. "type": "library",
  1811. "extra": {
  1812. "branch-alias": {
  1813. "dev-master": "1.0.x-dev"
  1814. }
  1815. },
  1816. "installation-source": "dist",
  1817. "autoload": {
  1818. "psr-4": {
  1819. "Psr\\EventDispatcher\\": "src/"
  1820. }
  1821. },
  1822. "notification-url": "https://packagist.org/downloads/",
  1823. "license": [
  1824. "MIT"
  1825. ],
  1826. "authors": [
  1827. {
  1828. "name": "PHP-FIG",
  1829. "homepage": "http://www.php-fig.org/"
  1830. }
  1831. ],
  1832. "description": "Standard interfaces for event handling.",
  1833. "keywords": [
  1834. "events",
  1835. "psr",
  1836. "psr-14"
  1837. ]
  1838. },
  1839. {
  1840. "name": "psr/http-message",
  1841. "version": "1.0.1",
  1842. "version_normalized": "1.0.1.0",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/php-fig/http-message.git",
  1846. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1851. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1852. "shasum": "",
  1853. "mirrors": [
  1854. {
  1855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1856. "preferred": true
  1857. }
  1858. ]
  1859. },
  1860. "require": {
  1861. "php": ">=5.3.0"
  1862. },
  1863. "time": "2016-08-06T14:39:51+00:00",
  1864. "type": "library",
  1865. "extra": {
  1866. "branch-alias": {
  1867. "dev-master": "1.0.x-dev"
  1868. }
  1869. },
  1870. "installation-source": "dist",
  1871. "autoload": {
  1872. "psr-4": {
  1873. "Psr\\Http\\Message\\": "src/"
  1874. }
  1875. },
  1876. "notification-url": "https://packagist.org/downloads/",
  1877. "license": [
  1878. "MIT"
  1879. ],
  1880. "authors": [
  1881. {
  1882. "name": "PHP-FIG",
  1883. "homepage": "http://www.php-fig.org/"
  1884. }
  1885. ],
  1886. "description": "Common interface for HTTP messages",
  1887. "homepage": "https://github.com/php-fig/http-message",
  1888. "keywords": [
  1889. "http",
  1890. "http-message",
  1891. "psr",
  1892. "psr-7",
  1893. "request",
  1894. "response"
  1895. ]
  1896. },
  1897. {
  1898. "name": "psr/log",
  1899. "version": "1.0.2",
  1900. "version_normalized": "1.0.2.0",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://github.com/php-fig/log.git",
  1904. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1909. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1910. "shasum": "",
  1911. "mirrors": [
  1912. {
  1913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1914. "preferred": true
  1915. }
  1916. ]
  1917. },
  1918. "require": {
  1919. "php": ">=5.3.0"
  1920. },
  1921. "time": "2016-10-10T12:19:37+00:00",
  1922. "type": "library",
  1923. "extra": {
  1924. "branch-alias": {
  1925. "dev-master": "1.0.x-dev"
  1926. }
  1927. },
  1928. "installation-source": "dist",
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Psr\\Log\\": "Psr/Log/"
  1932. }
  1933. },
  1934. "notification-url": "https://packagist.org/downloads/",
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "authors": [
  1939. {
  1940. "name": "PHP-FIG",
  1941. "homepage": "http://www.php-fig.org/"
  1942. }
  1943. ],
  1944. "description": "Common interface for logging libraries",
  1945. "homepage": "https://github.com/php-fig/log",
  1946. "keywords": [
  1947. "log",
  1948. "psr",
  1949. "psr-3"
  1950. ]
  1951. },
  1952. {
  1953. "name": "psr/simple-cache",
  1954. "version": "1.0.1",
  1955. "version_normalized": "1.0.1.0",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/php-fig/simple-cache.git",
  1959. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1964. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1965. "shasum": "",
  1966. "mirrors": [
  1967. {
  1968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1969. "preferred": true
  1970. }
  1971. ]
  1972. },
  1973. "require": {
  1974. "php": ">=5.3.0"
  1975. },
  1976. "time": "2017-10-23T01:57:42+00:00",
  1977. "type": "library",
  1978. "extra": {
  1979. "branch-alias": {
  1980. "dev-master": "1.0.x-dev"
  1981. }
  1982. },
  1983. "installation-source": "dist",
  1984. "autoload": {
  1985. "psr-4": {
  1986. "Psr\\SimpleCache\\": "src/"
  1987. }
  1988. },
  1989. "notification-url": "https://packagist.org/downloads/",
  1990. "license": [
  1991. "MIT"
  1992. ],
  1993. "authors": [
  1994. {
  1995. "name": "PHP-FIG",
  1996. "homepage": "http://www.php-fig.org/"
  1997. }
  1998. ],
  1999. "description": "Common interfaces for simple caching",
  2000. "keywords": [
  2001. "cache",
  2002. "caching",
  2003. "psr",
  2004. "psr-16",
  2005. "simple-cache"
  2006. ]
  2007. },
  2008. {
  2009. "name": "symfony/contracts",
  2010. "version": "v1.0.2",
  2011. "version_normalized": "1.0.2.0",
  2012. "source": {
  2013. "type": "git",
  2014. "url": "https://github.com/symfony/contracts.git",
  2015. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  2016. },
  2017. "dist": {
  2018. "type": "zip",
  2019. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  2020. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  2021. "shasum": "",
  2022. "mirrors": [
  2023. {
  2024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2025. "preferred": true
  2026. }
  2027. ]
  2028. },
  2029. "require": {
  2030. "php": "^7.1.3"
  2031. },
  2032. "require-dev": {
  2033. "psr/cache": "^1.0",
  2034. "psr/container": "^1.0"
  2035. },
  2036. "suggest": {
  2037. "psr/cache": "When using the Cache contracts",
  2038. "psr/container": "When using the Service contracts",
  2039. "symfony/cache-contracts-implementation": "",
  2040. "symfony/service-contracts-implementation": "",
  2041. "symfony/translation-contracts-implementation": ""
  2042. },
  2043. "time": "2018-12-05T08:06:11+00:00",
  2044. "type": "library",
  2045. "extra": {
  2046. "branch-alias": {
  2047. "dev-master": "1.0-dev"
  2048. }
  2049. },
  2050. "installation-source": "dist",
  2051. "autoload": {
  2052. "psr-4": {
  2053. "Symfony\\Contracts\\": ""
  2054. },
  2055. "exclude-from-classmap": [
  2056. "**/Tests/"
  2057. ]
  2058. },
  2059. "notification-url": "https://packagist.org/downloads/",
  2060. "license": [
  2061. "MIT"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "Nicolas Grekas",
  2066. "email": "p@tchwork.com"
  2067. },
  2068. {
  2069. "name": "Symfony Community",
  2070. "homepage": "https://symfony.com/contributors"
  2071. }
  2072. ],
  2073. "description": "A set of abstractions extracted out of the Symfony components",
  2074. "homepage": "https://symfony.com",
  2075. "keywords": [
  2076. "abstractions",
  2077. "contracts",
  2078. "decoupling",
  2079. "interfaces",
  2080. "interoperability",
  2081. "standards"
  2082. ]
  2083. },
  2084. {
  2085. "name": "symfony/event-dispatcher",
  2086. "version": "v5.0.4",
  2087. "version_normalized": "5.0.4.0",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/symfony/event-dispatcher.git",
  2091. "reference": "4a7a8cdca1120c091b4797f0e5bba69c1e783224"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4a7a8cdca1120c091b4797f0e5bba69c1e783224",
  2096. "reference": "4a7a8cdca1120c091b4797f0e5bba69c1e783224",
  2097. "shasum": "",
  2098. "mirrors": [
  2099. {
  2100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2101. "preferred": true
  2102. }
  2103. ]
  2104. },
  2105. "require": {
  2106. "php": "^7.2.5",
  2107. "symfony/event-dispatcher-contracts": "^2"
  2108. },
  2109. "conflict": {
  2110. "symfony/dependency-injection": "<4.4"
  2111. },
  2112. "provide": {
  2113. "psr/event-dispatcher-implementation": "1.0",
  2114. "symfony/event-dispatcher-implementation": "2.0"
  2115. },
  2116. "require-dev": {
  2117. "psr/log": "~1.0",
  2118. "symfony/config": "^4.4|^5.0",
  2119. "symfony/dependency-injection": "^4.4|^5.0",
  2120. "symfony/expression-language": "^4.4|^5.0",
  2121. "symfony/http-foundation": "^4.4|^5.0",
  2122. "symfony/service-contracts": "^1.1|^2",
  2123. "symfony/stopwatch": "^4.4|^5.0"
  2124. },
  2125. "suggest": {
  2126. "symfony/dependency-injection": "",
  2127. "symfony/http-kernel": ""
  2128. },
  2129. "time": "2020-01-10T21:57:37+00:00",
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "5.0-dev"
  2134. }
  2135. },
  2136. "installation-source": "dist",
  2137. "autoload": {
  2138. "psr-4": {
  2139. "Symfony\\Component\\EventDispatcher\\": ""
  2140. },
  2141. "exclude-from-classmap": [
  2142. "/Tests/"
  2143. ]
  2144. },
  2145. "notification-url": "https://packagist.org/downloads/",
  2146. "license": [
  2147. "MIT"
  2148. ],
  2149. "authors": [
  2150. {
  2151. "name": "Fabien Potencier",
  2152. "email": "fabien@symfony.com"
  2153. },
  2154. {
  2155. "name": "Symfony Community",
  2156. "homepage": "https://symfony.com/contributors"
  2157. }
  2158. ],
  2159. "description": "Symfony EventDispatcher Component",
  2160. "homepage": "https://symfony.com"
  2161. },
  2162. {
  2163. "name": "symfony/event-dispatcher-contracts",
  2164. "version": "v2.0.1",
  2165. "version_normalized": "2.0.1.0",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2169. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd",
  2174. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd",
  2175. "shasum": "",
  2176. "mirrors": [
  2177. {
  2178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2179. "preferred": true
  2180. }
  2181. ]
  2182. },
  2183. "require": {
  2184. "php": "^7.2.5",
  2185. "psr/event-dispatcher": "^1"
  2186. },
  2187. "suggest": {
  2188. "symfony/event-dispatcher-implementation": ""
  2189. },
  2190. "time": "2019-11-18T17:27:11+00:00",
  2191. "type": "library",
  2192. "extra": {
  2193. "branch-alias": {
  2194. "dev-master": "2.0-dev"
  2195. }
  2196. },
  2197. "installation-source": "dist",
  2198. "autoload": {
  2199. "psr-4": {
  2200. "Symfony\\Contracts\\EventDispatcher\\": ""
  2201. }
  2202. },
  2203. "notification-url": "https://packagist.org/downloads/",
  2204. "license": [
  2205. "MIT"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Nicolas Grekas",
  2210. "email": "p@tchwork.com"
  2211. },
  2212. {
  2213. "name": "Symfony Community",
  2214. "homepage": "https://symfony.com/contributors"
  2215. }
  2216. ],
  2217. "description": "Generic abstractions related to dispatching event",
  2218. "homepage": "https://symfony.com",
  2219. "keywords": [
  2220. "abstractions",
  2221. "contracts",
  2222. "decoupling",
  2223. "interfaces",
  2224. "interoperability",
  2225. "standards"
  2226. ]
  2227. },
  2228. {
  2229. "name": "symfony/http-foundation",
  2230. "version": "v3.3.13",
  2231. "version_normalized": "3.3.13.0",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/symfony/http-foundation.git",
  2235. "reference": "5943f0f19817a7e05992d20a90729b0dc93faf36"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5943f0f19817a7e05992d20a90729b0dc93faf36",
  2240. "reference": "5943f0f19817a7e05992d20a90729b0dc93faf36",
  2241. "shasum": "",
  2242. "mirrors": [
  2243. {
  2244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2245. "preferred": true
  2246. }
  2247. ]
  2248. },
  2249. "require": {
  2250. "php": "^5.5.9|>=7.0.8",
  2251. "symfony/polyfill-mbstring": "~1.1"
  2252. },
  2253. "require-dev": {
  2254. "symfony/expression-language": "~2.8|~3.0"
  2255. },
  2256. "time": "2017-11-13T18:13:16+00:00",
  2257. "type": "library",
  2258. "extra": {
  2259. "branch-alias": {
  2260. "dev-master": "3.3-dev"
  2261. }
  2262. },
  2263. "installation-source": "dist",
  2264. "autoload": {
  2265. "psr-4": {
  2266. "Symfony\\Component\\HttpFoundation\\": ""
  2267. },
  2268. "exclude-from-classmap": [
  2269. "/Tests/"
  2270. ]
  2271. },
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "MIT"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Fabien Potencier",
  2279. "email": "fabien@symfony.com"
  2280. },
  2281. {
  2282. "name": "Symfony Community",
  2283. "homepage": "https://symfony.com/contributors"
  2284. }
  2285. ],
  2286. "description": "Symfony HttpFoundation Component",
  2287. "homepage": "https://symfony.com"
  2288. },
  2289. {
  2290. "name": "symfony/polyfill-mbstring",
  2291. "version": "v1.6.0",
  2292. "version_normalized": "1.6.0.0",
  2293. "source": {
  2294. "type": "git",
  2295. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2296. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  2297. },
  2298. "dist": {
  2299. "type": "zip",
  2300. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2301. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  2302. "shasum": "",
  2303. "mirrors": [
  2304. {
  2305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2306. "preferred": true
  2307. }
  2308. ]
  2309. },
  2310. "require": {
  2311. "php": ">=5.3.3"
  2312. },
  2313. "suggest": {
  2314. "ext-mbstring": "For best performance"
  2315. },
  2316. "time": "2017-10-11T12:05:26+00:00",
  2317. "type": "library",
  2318. "extra": {
  2319. "branch-alias": {
  2320. "dev-master": "1.6-dev"
  2321. }
  2322. },
  2323. "installation-source": "dist",
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Symfony\\Polyfill\\Mbstring\\": ""
  2327. },
  2328. "files": [
  2329. "bootstrap.php"
  2330. ]
  2331. },
  2332. "notification-url": "https://packagist.org/downloads/",
  2333. "license": [
  2334. "MIT"
  2335. ],
  2336. "authors": [
  2337. {
  2338. "name": "Nicolas Grekas",
  2339. "email": "p@tchwork.com"
  2340. },
  2341. {
  2342. "name": "Symfony Community",
  2343. "homepage": "https://symfony.com/contributors"
  2344. }
  2345. ],
  2346. "description": "Symfony polyfill for the Mbstring extension",
  2347. "homepage": "https://symfony.com",
  2348. "keywords": [
  2349. "compatibility",
  2350. "mbstring",
  2351. "polyfill",
  2352. "portable",
  2353. "shim"
  2354. ]
  2355. },
  2356. {
  2357. "name": "symfony/psr-http-message-bridge",
  2358. "version": "v1.0.0",
  2359. "version_normalized": "1.0.0.0",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  2363. "reference": "66085f246d3893cbdbcec5f5ad15ac60546cf0de"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/66085f246d3893cbdbcec5f5ad15ac60546cf0de",
  2368. "reference": "66085f246d3893cbdbcec5f5ad15ac60546cf0de",
  2369. "shasum": "",
  2370. "mirrors": [
  2371. {
  2372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2373. "preferred": true
  2374. }
  2375. ]
  2376. },
  2377. "require": {
  2378. "php": ">=5.3.3",
  2379. "psr/http-message": "~1.0",
  2380. "symfony/http-foundation": "~2.3|~3.0"
  2381. },
  2382. "require-dev": {
  2383. "symfony/phpunit-bridge": "~2.7|~3.0"
  2384. },
  2385. "suggest": {
  2386. "psr/http-message-implementation": "To use the HttpFoundation factory",
  2387. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  2388. },
  2389. "time": "2016-09-14T18:37:20+00:00",
  2390. "type": "symfony-bridge",
  2391. "extra": {
  2392. "branch-alias": {
  2393. "dev-master": "1.0-dev"
  2394. }
  2395. },
  2396. "installation-source": "dist",
  2397. "autoload": {
  2398. "psr-4": {
  2399. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Symfony Community",
  2409. "homepage": "http://symfony.com/contributors"
  2410. },
  2411. {
  2412. "name": "Fabien Potencier",
  2413. "email": "fabien@symfony.com"
  2414. }
  2415. ],
  2416. "description": "PSR HTTP message bridge",
  2417. "homepage": "http://symfony.com",
  2418. "keywords": [
  2419. "http",
  2420. "http-message",
  2421. "psr-7"
  2422. ]
  2423. },
  2424. {
  2425. "name": "symfony/translation",
  2426. "version": "v4.2.3",
  2427. "version_normalized": "4.2.3.0",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/symfony/translation.git",
  2431. "reference": "23fd7aac70d99a17a8e6473a41fec8fab3331050"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/symfony/translation/zipball/23fd7aac70d99a17a8e6473a41fec8fab3331050",
  2436. "reference": "23fd7aac70d99a17a8e6473a41fec8fab3331050",
  2437. "shasum": "",
  2438. "mirrors": [
  2439. {
  2440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2441. "preferred": true
  2442. }
  2443. ]
  2444. },
  2445. "require": {
  2446. "php": "^7.1.3",
  2447. "symfony/contracts": "^1.0.2",
  2448. "symfony/polyfill-mbstring": "~1.0"
  2449. },
  2450. "conflict": {
  2451. "symfony/config": "<3.4",
  2452. "symfony/dependency-injection": "<3.4",
  2453. "symfony/yaml": "<3.4"
  2454. },
  2455. "provide": {
  2456. "symfony/translation-contracts-implementation": "1.0"
  2457. },
  2458. "require-dev": {
  2459. "psr/log": "~1.0",
  2460. "symfony/config": "~3.4|~4.0",
  2461. "symfony/console": "~3.4|~4.0",
  2462. "symfony/dependency-injection": "~3.4|~4.0",
  2463. "symfony/finder": "~2.8|~3.0|~4.0",
  2464. "symfony/intl": "~3.4|~4.0",
  2465. "symfony/yaml": "~3.4|~4.0"
  2466. },
  2467. "suggest": {
  2468. "psr/log-implementation": "To use logging capability in translator",
  2469. "symfony/config": "",
  2470. "symfony/yaml": ""
  2471. },
  2472. "time": "2019-01-27T23:11:39+00:00",
  2473. "type": "library",
  2474. "extra": {
  2475. "branch-alias": {
  2476. "dev-master": "4.2-dev"
  2477. }
  2478. },
  2479. "installation-source": "dist",
  2480. "autoload": {
  2481. "psr-4": {
  2482. "Symfony\\Component\\Translation\\": ""
  2483. },
  2484. "exclude-from-classmap": [
  2485. "/Tests/"
  2486. ]
  2487. },
  2488. "notification-url": "https://packagist.org/downloads/",
  2489. "license": [
  2490. "MIT"
  2491. ],
  2492. "authors": [
  2493. {
  2494. "name": "Fabien Potencier",
  2495. "email": "fabien@symfony.com"
  2496. },
  2497. {
  2498. "name": "Symfony Community",
  2499. "homepage": "https://symfony.com/contributors"
  2500. }
  2501. ],
  2502. "description": "Symfony Translation Component",
  2503. "homepage": "https://symfony.com"
  2504. },
  2505. {
  2506. "name": "topthink/framework",
  2507. "version": "v5.0.24",
  2508. "version_normalized": "5.0.24.0",
  2509. "source": {
  2510. "type": "git",
  2511. "url": "https://github.com/top-think/framework.git",
  2512. "reference": "c255c22b2f5fa30f320ecf6c1d29f7740eb3e8be"
  2513. },
  2514. "dist": {
  2515. "type": "zip",
  2516. "url": "https://api.github.com/repos/top-think/framework/zipball/c255c22b2f5fa30f320ecf6c1d29f7740eb3e8be",
  2517. "reference": "c255c22b2f5fa30f320ecf6c1d29f7740eb3e8be",
  2518. "shasum": "",
  2519. "mirrors": [
  2520. {
  2521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2522. "preferred": true
  2523. }
  2524. ]
  2525. },
  2526. "require": {
  2527. "php": ">=5.4.0",
  2528. "topthink/think-installer": "~1.0"
  2529. },
  2530. "require-dev": {
  2531. "johnkary/phpunit-speedtrap": "^1.0",
  2532. "mikey179/vfsstream": "~1.6",
  2533. "phpdocumentor/reflection-docblock": "^2.0",
  2534. "phploc/phploc": "2.*",
  2535. "phpunit/phpunit": "4.8.*",
  2536. "sebastian/phpcpd": "2.*"
  2537. },
  2538. "time": "2019-01-11T08:04:58+00:00",
  2539. "type": "think-framework",
  2540. "installation-source": "dist",
  2541. "autoload": {
  2542. "psr-4": {
  2543. "think\\": "library/think"
  2544. }
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "Apache-2.0"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "liu21st",
  2553. "email": "liu21st@gmail.com"
  2554. }
  2555. ],
  2556. "description": "the new thinkphp framework",
  2557. "homepage": "http://thinkphp.cn/",
  2558. "keywords": [
  2559. "framework",
  2560. "orm",
  2561. "thinkphp"
  2562. ]
  2563. },
  2564. {
  2565. "name": "topthink/think-captcha",
  2566. "version": "v1.0.7",
  2567. "version_normalized": "1.0.7.0",
  2568. "source": {
  2569. "type": "git",
  2570. "url": "https://github.com/top-think/think-captcha.git",
  2571. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44"
  2572. },
  2573. "dist": {
  2574. "type": "zip",
  2575. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/0c55455df26a1626a60d0dc35d2d89002b741d44",
  2576. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44",
  2577. "shasum": "",
  2578. "mirrors": [
  2579. {
  2580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2581. "preferred": true
  2582. }
  2583. ]
  2584. },
  2585. "time": "2016-07-06T01:47:11+00:00",
  2586. "type": "library",
  2587. "installation-source": "dist",
  2588. "autoload": {
  2589. "psr-4": {
  2590. "think\\captcha\\": "src/"
  2591. },
  2592. "files": [
  2593. "src/helper.php"
  2594. ]
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "Apache-2.0"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "yunwuxin",
  2603. "email": "448901948@qq.com"
  2604. }
  2605. ],
  2606. "description": "captcha package for thinkphp5"
  2607. },
  2608. {
  2609. "name": "topthink/think-helper",
  2610. "version": "v1.0.7",
  2611. "version_normalized": "1.0.7.0",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/top-think/think-helper.git",
  2615. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  2620. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  2621. "shasum": "",
  2622. "mirrors": [
  2623. {
  2624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2625. "preferred": true
  2626. }
  2627. ]
  2628. },
  2629. "time": "2018-10-05T00:43:21+00:00",
  2630. "type": "library",
  2631. "installation-source": "dist",
  2632. "autoload": {
  2633. "psr-4": {
  2634. "think\\helper\\": "src"
  2635. },
  2636. "files": [
  2637. "src/helper.php"
  2638. ]
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "Apache-2.0"
  2643. ],
  2644. "authors": [
  2645. {
  2646. "name": "yunwuxin",
  2647. "email": "448901948@qq.com"
  2648. }
  2649. ],
  2650. "description": "The ThinkPHP5 Helper Package"
  2651. },
  2652. {
  2653. "name": "topthink/think-image",
  2654. "version": "v1.0.7",
  2655. "version_normalized": "1.0.7.0",
  2656. "source": {
  2657. "type": "git",
  2658. "url": "https://github.com/top-think/think-image.git",
  2659. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  2660. },
  2661. "dist": {
  2662. "type": "zip",
  2663. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  2664. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  2665. "shasum": "",
  2666. "mirrors": [
  2667. {
  2668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2669. "preferred": true
  2670. }
  2671. ]
  2672. },
  2673. "require": {
  2674. "ext-gd": "*"
  2675. },
  2676. "require-dev": {
  2677. "phpunit/phpunit": "4.8.*",
  2678. "topthink/framework": "^5.0"
  2679. },
  2680. "time": "2016-09-29T06:05:43+00:00",
  2681. "type": "library",
  2682. "installation-source": "dist",
  2683. "autoload": {
  2684. "psr-4": {
  2685. "think\\": "src"
  2686. }
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "Apache-2.0"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "yunwuxin",
  2695. "email": "448901948@qq.com"
  2696. }
  2697. ],
  2698. "description": "The ThinkPHP5 Image Package"
  2699. },
  2700. {
  2701. "name": "topthink/think-installer",
  2702. "version": "v1.0.12",
  2703. "version_normalized": "1.0.12.0",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/top-think/think-installer.git",
  2707. "reference": "1be326e68f63de4e95977ed50f46ae75f017556d"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/top-think/think-installer/zipball/1be326e68f63de4e95977ed50f46ae75f017556d",
  2712. "reference": "1be326e68f63de4e95977ed50f46ae75f017556d",
  2713. "shasum": "",
  2714. "mirrors": [
  2715. {
  2716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2717. "preferred": true
  2718. }
  2719. ]
  2720. },
  2721. "require": {
  2722. "composer-plugin-api": "^1.0"
  2723. },
  2724. "require-dev": {
  2725. "composer/composer": "1.0.*@dev"
  2726. },
  2727. "time": "2017-05-27T06:58:09+00:00",
  2728. "type": "composer-plugin",
  2729. "extra": {
  2730. "class": "think\\composer\\Plugin"
  2731. },
  2732. "installation-source": "dist",
  2733. "autoload": {
  2734. "psr-4": {
  2735. "think\\composer\\": "src"
  2736. }
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "Apache-2.0"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "yunwuxin",
  2745. "email": "448901948@qq.com"
  2746. }
  2747. ]
  2748. },
  2749. {
  2750. "name": "topthink/think-queue",
  2751. "version": "v1.1.6",
  2752. "version_normalized": "1.1.6.0",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/top-think/think-queue.git",
  2756. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/top-think/think-queue/zipball/250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  2761. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  2762. "shasum": "",
  2763. "mirrors": [
  2764. {
  2765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2766. "preferred": true
  2767. }
  2768. ]
  2769. },
  2770. "require": {
  2771. "topthink/think-helper": ">=1.0.4",
  2772. "topthink/think-installer": ">=1.0.10"
  2773. },
  2774. "require-dev": {
  2775. "topthink/framework": "~5.0.0"
  2776. },
  2777. "time": "2018-10-15T10:16:55+00:00",
  2778. "type": "think-extend",
  2779. "extra": {
  2780. "think-config": {
  2781. "queue": "src/config.php"
  2782. }
  2783. },
  2784. "installation-source": "dist",
  2785. "autoload": {
  2786. "psr-4": {
  2787. "think\\": "src"
  2788. },
  2789. "files": [
  2790. "src/common.php"
  2791. ]
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "Apache-2.0"
  2796. ],
  2797. "authors": [
  2798. {
  2799. "name": "yunwuxin",
  2800. "email": "448901948@qq.com"
  2801. }
  2802. ],
  2803. "description": "The ThinkPHP5 Queue Package"
  2804. },
  2805. {
  2806. "name": "tp5er/tp5-databackup",
  2807. "version": "dev-master",
  2808. "version_normalized": "9999999-dev",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/tp5er/tp5-databackup.git",
  2812. "reference": "101477abe810fb91bad5c1304a93c5f461db6dc8"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/tp5er/tp5-databackup/zipball/101477abe810fb91bad5c1304a93c5f461db6dc8",
  2817. "reference": "101477abe810fb91bad5c1304a93c5f461db6dc8",
  2818. "shasum": "",
  2819. "mirrors": [
  2820. {
  2821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2822. "preferred": true
  2823. }
  2824. ]
  2825. },
  2826. "require": {
  2827. "php": ">=5.4.0"
  2828. },
  2829. "time": "2018-04-07T11:20:53+00:00",
  2830. "type": "library",
  2831. "installation-source": "source",
  2832. "autoload": {
  2833. "psr-4": {
  2834. "tp5er\\": "src/"
  2835. }
  2836. },
  2837. "notification-url": "https://packagist.org/downloads/",
  2838. "license": [
  2839. "MIT"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "tp5er",
  2844. "email": "tp5er@qq.com"
  2845. }
  2846. ],
  2847. "description": "Implement the database backup restore"
  2848. },
  2849. {
  2850. "name": "workerman/gateway-worker",
  2851. "version": "v3.0.13",
  2852. "version_normalized": "3.0.13.0",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/walkor/GatewayWorker.git",
  2856. "reference": "38b44c95f21cd340b5a9cff3987ddb2abb9a2a38"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/38b44c95f21cd340b5a9cff3987ddb2abb9a2a38",
  2861. "reference": "38b44c95f21cd340b5a9cff3987ddb2abb9a2a38",
  2862. "shasum": "",
  2863. "mirrors": [
  2864. {
  2865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2866. "preferred": true
  2867. }
  2868. ]
  2869. },
  2870. "require": {
  2871. "workerman/workerman": ">=3.1.8"
  2872. },
  2873. "time": "2019-07-02T11:55:24+00:00",
  2874. "type": "library",
  2875. "installation-source": "dist",
  2876. "autoload": {
  2877. "psr-4": {
  2878. "GatewayWorker\\": "./src"
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "MIT"
  2884. ],
  2885. "homepage": "http://www.workerman.net",
  2886. "keywords": [
  2887. "communication",
  2888. "distributed"
  2889. ]
  2890. },
  2891. {
  2892. "name": "workerman/workerman",
  2893. "version": "v3.5.27",
  2894. "version_normalized": "3.5.27.0",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/walkor/Workerman.git",
  2898. "reference": "c2d8c332cc58400345b68593584a5f8171446a5e"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/walkor/Workerman/zipball/c2d8c332cc58400345b68593584a5f8171446a5e",
  2903. "reference": "c2d8c332cc58400345b68593584a5f8171446a5e",
  2904. "shasum": "",
  2905. "mirrors": [
  2906. {
  2907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2908. "preferred": true
  2909. }
  2910. ]
  2911. },
  2912. "require": {
  2913. "php": ">=5.3"
  2914. },
  2915. "suggest": {
  2916. "ext-event": "For better performance. "
  2917. },
  2918. "time": "2020-01-31T05:05:18+00:00",
  2919. "type": "library",
  2920. "installation-source": "dist",
  2921. "autoload": {
  2922. "psr-4": {
  2923. "Workerman\\": "./"
  2924. }
  2925. },
  2926. "notification-url": "https://packagist.org/downloads/",
  2927. "license": [
  2928. "MIT"
  2929. ],
  2930. "authors": [
  2931. {
  2932. "name": "walkor",
  2933. "email": "walkor@workerman.net",
  2934. "homepage": "http://www.workerman.net",
  2935. "role": "Developer"
  2936. }
  2937. ],
  2938. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  2939. "homepage": "http://www.workerman.net",
  2940. "keywords": [
  2941. "asynchronous",
  2942. "event-loop"
  2943. ]
  2944. },
  2945. {
  2946. "name": "xaboy/form-builder",
  2947. "version": "1.2.10",
  2948. "version_normalized": "1.2.10.0",
  2949. "source": {
  2950. "type": "git",
  2951. "url": "https://github.com/xaboy/form-builder.git",
  2952. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04"
  2953. },
  2954. "dist": {
  2955. "type": "zip",
  2956. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/198c5f066499eef8b005f5d504fcb6120fa3ac04",
  2957. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04",
  2958. "shasum": "",
  2959. "mirrors": [
  2960. {
  2961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2962. "preferred": true
  2963. }
  2964. ]
  2965. },
  2966. "require": {
  2967. "ext-json": "*",
  2968. "php": ">=5.4.0"
  2969. },
  2970. "time": "2019-08-26T09:34:17+00:00",
  2971. "type": "library",
  2972. "installation-source": "dist",
  2973. "autoload": {
  2974. "psr-4": {
  2975. "FormBuilder\\": "./src/"
  2976. }
  2977. },
  2978. "notification-url": "https://packagist.org/downloads/",
  2979. "license": [
  2980. "MIT"
  2981. ],
  2982. "authors": [
  2983. {
  2984. "name": "xaboy",
  2985. "email": "xaboy2005@qq.com"
  2986. }
  2987. ],
  2988. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  2989. "homepage": "https://github.com/xaboy/form-builder"
  2990. }
  2991. ]