installed.json 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006
  1. [
  2. {
  3. "name": "adbario/php-dot-notation",
  4. "version": "2.x-dev",
  5. "version_normalized": "2.9999999.9999999.9999999-dev",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/adbario/php-dot-notation.git",
  9. "reference": "84da820f12be2a504c9612757ffb7850eceb34fe"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/84da820f12be2a504c9612757ffb7850eceb34fe",
  14. "reference": "84da820f12be2a504c9612757ffb7850eceb34fe",
  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|^5|^6|^7|^8",
  29. "squizlabs/php_codesniffer": "^3.0"
  30. },
  31. "time": "2020-04-04T01:24:44+00:00",
  32. "type": "library",
  33. "installation-source": "source",
  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": "dev-master",
  62. "version_normalized": "9999999-dev",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  66. "reference": "ce97db83d26df698c85d79302f33f65f089c646b"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/ce97db83d26df698c85d79302f33f65f089c646b",
  71. "reference": "ce97db83d26df698c85d79302f33f65f089c646b",
  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|^7.0",
  92. "mtdowling/jmespath.php": "^2.5",
  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": "^5.7.27|^6.1",
  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": "2021-03-24T03:13:25+00:00",
  114. "type": "library",
  115. "installation-source": "source",
  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": "aliyuncs/oss-sdk-php",
  150. "version": "v2.3.0",
  151. "version_normalized": "2.3.0.0",
  152. "source": {
  153. "type": "git",
  154. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  155. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  156. },
  157. "dist": {
  158. "type": "zip",
  159. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  160. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  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. "php": ">=5.3"
  171. },
  172. "require-dev": {
  173. "phpunit/phpunit": "~4.0",
  174. "satooshi/php-coveralls": "~1.0"
  175. },
  176. "time": "2018-01-08T06:59:35+00:00",
  177. "type": "library",
  178. "installation-source": "dist",
  179. "autoload": {
  180. "psr-4": {
  181. "OSS\\": "src/OSS"
  182. }
  183. },
  184. "notification-url": "https://packagist.org/downloads/",
  185. "license": [
  186. "MIT"
  187. ],
  188. "authors": [
  189. {
  190. "name": "Aliyuncs",
  191. "homepage": "http://www.aliyun.com"
  192. }
  193. ],
  194. "description": "Aliyun OSS SDK for PHP",
  195. "homepage": "http://www.aliyun.com/product/oss/"
  196. },
  197. {
  198. "name": "bower-asset/bootstrap",
  199. "version": "v3.4.1",
  200. "version_normalized": "3.4.1.0",
  201. "source": {
  202. "type": "git",
  203. "url": "https://github.com/twbs/bootstrap.git",
  204. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  205. },
  206. "dist": {
  207. "type": "zip",
  208. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  209. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  210. "shasum": ""
  211. },
  212. "require": {
  213. "bower-asset/jquery": ">=1.9.1,<=3"
  214. },
  215. "type": "bower-asset-library",
  216. "extra": {
  217. "bower-asset-main": [
  218. "less/bootstrap.less",
  219. "dist/js/bootstrap.js"
  220. ],
  221. "bower-asset-ignore": [
  222. "/.*",
  223. "_config.yml",
  224. "CNAME",
  225. "composer.json",
  226. "CONTRIBUTING.md",
  227. "docs",
  228. "js/tests",
  229. "test-infra"
  230. ]
  231. },
  232. "installation-source": "dist",
  233. "license": [
  234. "MIT"
  235. ],
  236. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  237. "keywords": [
  238. "css",
  239. "framework",
  240. "front-end",
  241. "js",
  242. "less",
  243. "mobile-first",
  244. "responsive",
  245. "web"
  246. ]
  247. },
  248. {
  249. "name": "bower-asset/inputmask",
  250. "version": "3.3.11",
  251. "version_normalized": "3.3.11.0",
  252. "source": {
  253. "type": "git",
  254. "url": "https://github.com/RobinHerbots/Inputmask.git",
  255. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  256. },
  257. "dist": {
  258. "type": "zip",
  259. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  260. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
  261. "shasum": ""
  262. },
  263. "require": {
  264. "bower-asset/jquery": ">=1.7"
  265. },
  266. "time": "2017-11-21T11:46:23+00:00",
  267. "type": "bower-asset-library",
  268. "extra": {
  269. "bower-asset-main": [
  270. "./dist/inputmask/inputmask.js",
  271. "./dist/inputmask/inputmask.extensions.js",
  272. "./dist/inputmask/inputmask.date.extensions.js",
  273. "./dist/inputmask/inputmask.numeric.extensions.js",
  274. "./dist/inputmask/inputmask.phone.extensions.js",
  275. "./dist/inputmask/jquery.inputmask.js",
  276. "./dist/inputmask/global/document.js",
  277. "./dist/inputmask/global/window.js",
  278. "./dist/inputmask/phone-codes/phone.js",
  279. "./dist/inputmask/phone-codes/phone-be.js",
  280. "./dist/inputmask/phone-codes/phone-nl.js",
  281. "./dist/inputmask/phone-codes/phone-ru.js",
  282. "./dist/inputmask/phone-codes/phone-uk.js",
  283. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
  284. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
  285. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
  286. "./dist/inputmask/bindings/inputmask.binding.js"
  287. ],
  288. "bower-asset-ignore": [
  289. "**/*",
  290. "!dist/*",
  291. "!dist/inputmask/*",
  292. "!dist/min/*",
  293. "!dist/min/inputmask/*"
  294. ]
  295. },
  296. "installation-source": "dist",
  297. "license": [
  298. "http://opensource.org/licenses/mit-license.php"
  299. ],
  300. "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
  301. "keywords": [
  302. "form",
  303. "input",
  304. "inputmask",
  305. "jquery",
  306. "mask",
  307. "plugins"
  308. ]
  309. },
  310. {
  311. "name": "bower-asset/jquery",
  312. "version": "2.2.4",
  313. "version_normalized": "2.2.4.0",
  314. "source": {
  315. "type": "git",
  316. "url": "https://github.com/jquery/jquery-dist.git",
  317. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
  318. },
  319. "dist": {
  320. "type": "zip",
  321. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
  322. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",
  323. "shasum": ""
  324. },
  325. "type": "bower-asset-library",
  326. "extra": {
  327. "bower-asset-main": "dist/jquery.js",
  328. "bower-asset-ignore": [
  329. "package.json"
  330. ]
  331. },
  332. "installation-source": "dist",
  333. "license": [
  334. "MIT"
  335. ],
  336. "keywords": [
  337. "browser",
  338. "javascript",
  339. "jquery",
  340. "library"
  341. ]
  342. },
  343. {
  344. "name": "bower-asset/jquery.inputmask",
  345. "version": "3.3.11",
  346. "version_normalized": "3.3.11.0",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/RobinHerbots/Inputmask.git",
  350. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  355. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "bower-asset/jquery": ">=1.7"
  360. },
  361. "type": "bower-asset-library",
  362. "extra": {
  363. "bower-asset-main": [
  364. "./dist/inputmask/inputmask.js",
  365. "./dist/inputmask/inputmask.extensions.js",
  366. "./dist/inputmask/inputmask.date.extensions.js",
  367. "./dist/inputmask/inputmask.numeric.extensions.js",
  368. "./dist/inputmask/inputmask.phone.extensions.js",
  369. "./dist/inputmask/jquery.inputmask.js",
  370. "./dist/inputmask/global/document.js",
  371. "./dist/inputmask/global/window.js",
  372. "./dist/inputmask/phone-codes/phone.js",
  373. "./dist/inputmask/phone-codes/phone-be.js",
  374. "./dist/inputmask/phone-codes/phone-nl.js",
  375. "./dist/inputmask/phone-codes/phone-ru.js",
  376. "./dist/inputmask/phone-codes/phone-uk.js",
  377. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
  378. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
  379. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
  380. "./dist/inputmask/bindings/inputmask.binding.js"
  381. ],
  382. "bower-asset-ignore": [
  383. "**/*",
  384. "!dist/*",
  385. "!dist/inputmask/*",
  386. "!dist/min/*",
  387. "!dist/min/inputmask/*"
  388. ]
  389. },
  390. "installation-source": "dist",
  391. "license": [
  392. "http://opensource.org/licenses/mit-license.php"
  393. ],
  394. "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
  395. "keywords": [
  396. "form",
  397. "input",
  398. "inputmask",
  399. "jquery",
  400. "mask",
  401. "plugins"
  402. ]
  403. },
  404. {
  405. "name": "bower-asset/punycode",
  406. "version": "v1.3.2",
  407. "version_normalized": "1.3.2.0",
  408. "source": {
  409. "type": "git",
  410. "url": "https://github.com/bestiejs/punycode.js.git",
  411. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  412. },
  413. "dist": {
  414. "type": "zip",
  415. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  416. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  417. "shasum": ""
  418. },
  419. "type": "bower-asset-library",
  420. "extra": {
  421. "bower-asset-main": "punycode.js",
  422. "bower-asset-ignore": [
  423. "coverage",
  424. "tests",
  425. ".*",
  426. "component.json",
  427. "Gruntfile.js",
  428. "node_modules",
  429. "package.json"
  430. ]
  431. },
  432. "installation-source": "dist"
  433. },
  434. {
  435. "name": "bower-asset/typeahead.js",
  436. "version": "v0.11.1",
  437. "version_normalized": "0.11.1.0",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/twitter/typeahead.js.git",
  441. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  446. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  447. "shasum": ""
  448. },
  449. "require": {
  450. "bower-asset/jquery": ">=1.7"
  451. },
  452. "require-dev": {
  453. "bower-asset/jasmine-ajax": "~1.3.1",
  454. "bower-asset/jasmine-jquery": "~1.5.2",
  455. "bower-asset/jquery": "~1.7"
  456. },
  457. "type": "bower-asset-library",
  458. "extra": {
  459. "bower-asset-main": "dist/typeahead.bundle.js"
  460. },
  461. "installation-source": "dist"
  462. },
  463. {
  464. "name": "bower-asset/yii2-pjax",
  465. "version": "dev-master",
  466. "version_normalized": "9999999-dev",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/yiisoft/jquery-pjax.git",
  470. "reference": "c39f2393883f370d3c0d63d80a122534131b0f56"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/c39f2393883f370d3c0d63d80a122534131b0f56",
  475. "reference": "c39f2393883f370d3c0d63d80a122534131b0f56",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "bower-asset/jquery": ">=1.8"
  480. },
  481. "type": "bower-asset-library",
  482. "extra": {
  483. "bower-asset-main": "./jquery.pjax.js",
  484. "bower-asset-ignore": [
  485. ".travis.yml",
  486. "Gemfile",
  487. "Gemfile.lock",
  488. "CONTRIBUTING.md",
  489. "vendor/",
  490. "script/",
  491. "test/"
  492. ],
  493. "branch-alias": {
  494. "dev-master": "2.0.8-dev"
  495. }
  496. },
  497. "installation-source": "source",
  498. "license": [
  499. "MIT"
  500. ]
  501. },
  502. {
  503. "name": "cebe/markdown",
  504. "version": "1.1.2",
  505. "version_normalized": "1.1.2.0",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/cebe/markdown.git",
  509. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/cebe/markdown/zipball/25b28bae8a6f185b5030673af77b32e1163d5c6e",
  514. "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e",
  515. "shasum": "",
  516. "mirrors": [
  517. {
  518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  519. "preferred": true
  520. }
  521. ]
  522. },
  523. "require": {
  524. "lib-pcre": "*",
  525. "php": ">=5.4.0"
  526. },
  527. "require-dev": {
  528. "cebe/indent": "*",
  529. "facebook/xhprof": "*@dev",
  530. "phpunit/phpunit": "4.1.*"
  531. },
  532. "time": "2017-07-16T21:13:23+00:00",
  533. "bin": [
  534. "bin/markdown"
  535. ],
  536. "type": "library",
  537. "extra": {
  538. "branch-alias": {
  539. "dev-master": "1.1.x-dev"
  540. }
  541. },
  542. "installation-source": "dist",
  543. "autoload": {
  544. "psr-4": {
  545. "cebe\\markdown\\": ""
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "MIT"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Carsten Brandt",
  555. "email": "mail@cebe.cc",
  556. "homepage": "http://cebe.cc/",
  557. "role": "Creator"
  558. }
  559. ],
  560. "description": "A super fast, highly extensible markdown parser for PHP",
  561. "homepage": "https://github.com/cebe/markdown#readme",
  562. "keywords": [
  563. "extensible",
  564. "fast",
  565. "gfm",
  566. "markdown",
  567. "markdown-extra"
  568. ]
  569. },
  570. {
  571. "name": "clagiordano/weblibs-configmanager",
  572. "version": "v1.1.0",
  573. "version_normalized": "1.1.0.0",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  577. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/ecf584f5b3a27929175ff0abdba52f0131bef795",
  582. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795",
  583. "shasum": "",
  584. "mirrors": [
  585. {
  586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  587. "preferred": true
  588. }
  589. ]
  590. },
  591. "require": {
  592. "php": ">=5.4"
  593. },
  594. "require-dev": {
  595. "clagiordano/phpunit-result-printer": "^1",
  596. "phpunit/phpunit": "^4.8"
  597. },
  598. "time": "2020-07-20T20:39:25+00:00",
  599. "type": "library",
  600. "installation-source": "dist",
  601. "autoload": {
  602. "psr-4": {
  603. "clagiordano\\weblibs\\configmanager\\": "src/"
  604. }
  605. },
  606. "notification-url": "https://packagist.org/downloads/",
  607. "license": [
  608. "LGPL-3.0-or-later"
  609. ],
  610. "authors": [
  611. {
  612. "name": "Claudio Giordano",
  613. "email": "claudio.giordano@autistici.org",
  614. "role": "Developer"
  615. }
  616. ],
  617. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  618. "keywords": [
  619. "clagiordano",
  620. "configuration",
  621. "manager",
  622. "tool",
  623. "weblibs"
  624. ]
  625. },
  626. {
  627. "name": "danielstjules/stringy",
  628. "version": "3.1.0",
  629. "version_normalized": "3.1.0.0",
  630. "source": {
  631. "type": "git",
  632. "url": "https://github.com/danielstjules/Stringy.git",
  633. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  634. },
  635. "dist": {
  636. "type": "zip",
  637. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  638. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  639. "shasum": "",
  640. "mirrors": [
  641. {
  642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  643. "preferred": true
  644. }
  645. ]
  646. },
  647. "require": {
  648. "php": ">=5.4.0",
  649. "symfony/polyfill-mbstring": "~1.1"
  650. },
  651. "require-dev": {
  652. "phpunit/phpunit": "~4.0"
  653. },
  654. "time": "2017-06-12T01:10:27+00:00",
  655. "type": "library",
  656. "installation-source": "dist",
  657. "autoload": {
  658. "psr-4": {
  659. "Stringy\\": "src/"
  660. },
  661. "files": [
  662. "src/Create.php"
  663. ]
  664. },
  665. "notification-url": "https://packagist.org/downloads/",
  666. "license": [
  667. "MIT"
  668. ],
  669. "authors": [
  670. {
  671. "name": "Daniel St. Jules",
  672. "email": "danielst.jules@gmail.com",
  673. "homepage": "http://www.danielstjules.com"
  674. }
  675. ],
  676. "description": "A string manipulation library with multibyte support",
  677. "homepage": "https://github.com/danielstjules/Stringy",
  678. "keywords": [
  679. "UTF",
  680. "helpers",
  681. "manipulation",
  682. "methods",
  683. "multibyte",
  684. "string",
  685. "utf-8",
  686. "utility",
  687. "utils"
  688. ]
  689. },
  690. {
  691. "name": "ezyang/htmlpurifier",
  692. "version": "v4.10.0",
  693. "version_normalized": "4.10.0.0",
  694. "source": {
  695. "type": "git",
  696. "url": "https://github.com/ezyang/htmlpurifier.git",
  697. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  698. },
  699. "dist": {
  700. "type": "zip",
  701. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  702. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  703. "shasum": "",
  704. "mirrors": [
  705. {
  706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  707. "preferred": true
  708. }
  709. ]
  710. },
  711. "require": {
  712. "php": ">=5.2"
  713. },
  714. "require-dev": {
  715. "simpletest/simpletest": "^1.1"
  716. },
  717. "time": "2018-02-23T01:58:20+00:00",
  718. "type": "library",
  719. "installation-source": "dist",
  720. "autoload": {
  721. "psr-0": {
  722. "HTMLPurifier": "library/"
  723. },
  724. "files": [
  725. "library/HTMLPurifier.composer.php"
  726. ]
  727. },
  728. "notification-url": "https://packagist.org/downloads/",
  729. "license": [
  730. "LGPL"
  731. ],
  732. "authors": [
  733. {
  734. "name": "Edward Z. Yang",
  735. "email": "admin@htmlpurifier.org",
  736. "homepage": "http://ezyang.com"
  737. }
  738. ],
  739. "description": "Standards compliant HTML filter written in PHP",
  740. "homepage": "http://htmlpurifier.org/",
  741. "keywords": [
  742. "html"
  743. ]
  744. },
  745. {
  746. "name": "fzaninotto/faker",
  747. "version": "dev-master",
  748. "version_normalized": "9999999-dev",
  749. "source": {
  750. "type": "git",
  751. "url": "https://github.com/fzaninotto/Faker.git",
  752. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911"
  753. },
  754. "dist": {
  755. "type": "zip",
  756. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fb218ada627f7c750c6e0e41cae486d2db48e911",
  757. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911",
  758. "shasum": "",
  759. "mirrors": [
  760. {
  761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  762. "preferred": true
  763. }
  764. ]
  765. },
  766. "require": {
  767. "php": "^5.3.3 || ^7.0"
  768. },
  769. "require-dev": {
  770. "ext-intl": "*",
  771. "phpunit/phpunit": "^4.8.35 || ^5.7",
  772. "squizlabs/php_codesniffer": "^1.5"
  773. },
  774. "time": "2019-04-16T09:48:34+00:00",
  775. "type": "library",
  776. "extra": {
  777. "branch-alias": {
  778. "dev-master": "1.9-dev"
  779. }
  780. },
  781. "installation-source": "source",
  782. "autoload": {
  783. "psr-4": {
  784. "Faker\\": "src/Faker/"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "François Zaninotto"
  794. }
  795. ],
  796. "description": "Faker is a PHP library that generates fake data for you.",
  797. "keywords": [
  798. "data",
  799. "faker",
  800. "fixtures"
  801. ],
  802. "abandoned": true
  803. },
  804. {
  805. "name": "guzzlehttp/guzzle",
  806. "version": "dev-master",
  807. "version_normalized": "9999999-dev",
  808. "source": {
  809. "type": "git",
  810. "url": "https://github.com/guzzle/guzzle.git",
  811. "reference": "bf595424e4d442a190582e088985dc835a789071"
  812. },
  813. "dist": {
  814. "type": "zip",
  815. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/bf595424e4d442a190582e088985dc835a789071",
  816. "reference": "bf595424e4d442a190582e088985dc835a789071",
  817. "shasum": "",
  818. "mirrors": [
  819. {
  820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  821. "preferred": true
  822. }
  823. ]
  824. },
  825. "require": {
  826. "ext-json": "*",
  827. "guzzlehttp/promises": "^1.0",
  828. "guzzlehttp/psr7": "^1.4",
  829. "php": ">=5.5"
  830. },
  831. "require-dev": {
  832. "ext-curl": "*",
  833. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  834. "psr/log": "^1.1"
  835. },
  836. "suggest": {
  837. "psr/log": "Required for using the Log middleware"
  838. },
  839. "time": "2019-04-15T08:22:37+00:00",
  840. "type": "library",
  841. "extra": {
  842. "branch-alias": {
  843. "dev-master": "6.3-dev"
  844. }
  845. },
  846. "installation-source": "source",
  847. "autoload": {
  848. "psr-4": {
  849. "GuzzleHttp\\": "src/"
  850. },
  851. "files": [
  852. "src/functions_include.php"
  853. ]
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "MIT"
  858. ],
  859. "authors": [
  860. {
  861. "name": "Michael Dowling",
  862. "email": "mtdowling@gmail.com",
  863. "homepage": "https://github.com/mtdowling"
  864. }
  865. ],
  866. "description": "Guzzle is a PHP HTTP client library",
  867. "homepage": "http://guzzlephp.org/",
  868. "keywords": [
  869. "client",
  870. "curl",
  871. "framework",
  872. "http",
  873. "http client",
  874. "rest",
  875. "web service"
  876. ]
  877. },
  878. {
  879. "name": "guzzlehttp/promises",
  880. "version": "dev-master",
  881. "version_normalized": "9999999-dev",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/guzzle/promises.git",
  885. "reference": "926eaa3ff73cde2becf652b785831bcb7618568a"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/guzzle/promises/zipball/926eaa3ff73cde2becf652b785831bcb7618568a",
  890. "reference": "926eaa3ff73cde2becf652b785831bcb7618568a",
  891. "shasum": "",
  892. "mirrors": [
  893. {
  894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  895. "preferred": true
  896. }
  897. ]
  898. },
  899. "require": {
  900. "php": ">=5.5.0"
  901. },
  902. "require-dev": {
  903. "phpunit/phpunit": "^4.8.36"
  904. },
  905. "time": "2018-10-30T00:20:04+00:00",
  906. "type": "library",
  907. "extra": {
  908. "branch-alias": {
  909. "dev-master": "1.4-dev"
  910. }
  911. },
  912. "installation-source": "source",
  913. "autoload": {
  914. "psr-4": {
  915. "GuzzleHttp\\Promise\\": "src/"
  916. },
  917. "files": [
  918. "src/functions_include.php"
  919. ]
  920. },
  921. "notification-url": "https://packagist.org/downloads/",
  922. "license": [
  923. "MIT"
  924. ],
  925. "authors": [
  926. {
  927. "name": "Michael Dowling",
  928. "email": "mtdowling@gmail.com",
  929. "homepage": "https://github.com/mtdowling"
  930. }
  931. ],
  932. "description": "Guzzle promises library",
  933. "keywords": [
  934. "promise"
  935. ]
  936. },
  937. {
  938. "name": "guzzlehttp/psr7",
  939. "version": "dev-master",
  940. "version_normalized": "9999999-dev",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/guzzle/psr7.git",
  944. "reference": "a346647434953deb5bd599d92922b2d225e25170"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a346647434953deb5bd599d92922b2d225e25170",
  949. "reference": "a346647434953deb5bd599d92922b2d225e25170",
  950. "shasum": "",
  951. "mirrors": [
  952. {
  953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  954. "preferred": true
  955. }
  956. ]
  957. },
  958. "require": {
  959. "php": ">=5.4.0",
  960. "psr/http-message": "~1.0",
  961. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  962. },
  963. "provide": {
  964. "psr/http-message-implementation": "1.0"
  965. },
  966. "require-dev": {
  967. "ext-zlib": "*",
  968. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  969. },
  970. "suggest": {
  971. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  972. },
  973. "time": "2019-04-01T06:40:32+00:00",
  974. "type": "library",
  975. "extra": {
  976. "branch-alias": {
  977. "dev-master": "1.5-dev"
  978. }
  979. },
  980. "installation-source": "source",
  981. "autoload": {
  982. "psr-4": {
  983. "GuzzleHttp\\Psr7\\": "src/"
  984. },
  985. "files": [
  986. "src/functions_include.php"
  987. ]
  988. },
  989. "notification-url": "https://packagist.org/downloads/",
  990. "license": [
  991. "MIT"
  992. ],
  993. "authors": [
  994. {
  995. "name": "Michael Dowling",
  996. "email": "mtdowling@gmail.com",
  997. "homepage": "https://github.com/mtdowling"
  998. },
  999. {
  1000. "name": "Tobias Schultze",
  1001. "homepage": "https://github.com/Tobion"
  1002. }
  1003. ],
  1004. "description": "PSR-7 message implementation that also provides common utility methods",
  1005. "keywords": [
  1006. "http",
  1007. "message",
  1008. "psr-7",
  1009. "request",
  1010. "response",
  1011. "stream",
  1012. "uri",
  1013. "url"
  1014. ]
  1015. },
  1016. {
  1017. "name": "hollisho/yii2-redis-pub-sub",
  1018. "version": "dev-master",
  1019. "version_normalized": "9999999-dev",
  1020. "source": {
  1021. "type": "git",
  1022. "url": "https://github.com/hollisho/yii2-redis-pub-sub.git",
  1023. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b"
  1024. },
  1025. "dist": {
  1026. "type": "zip",
  1027. "url": "https://api.github.com/repos/hollisho/yii2-redis-pub-sub/zipball/d19daa3c6928bb28aca180a8b77e952ef435d41b",
  1028. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b",
  1029. "shasum": "",
  1030. "mirrors": [
  1031. {
  1032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1033. "preferred": true
  1034. }
  1035. ]
  1036. },
  1037. "require": {
  1038. "php": ">=5.4.0"
  1039. },
  1040. "time": "2018-11-22T10:56:17+00:00",
  1041. "type": "library",
  1042. "installation-source": "dist",
  1043. "autoload": {
  1044. "psr-4": {
  1045. "hollisho\\redis_pub_sub\\": "src/"
  1046. }
  1047. },
  1048. "notification-url": "https://packagist.org/downloads/",
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "Hollis Ho",
  1055. "email": "he_wenzhi@126.com"
  1056. }
  1057. ],
  1058. "description": "Yii2 Redis pub/sub(Publish,Subscribe)"
  1059. },
  1060. {
  1061. "name": "imagine/imagine",
  1062. "version": "1.2.3",
  1063. "version_normalized": "1.2.3.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/avalanche123/Imagine.git",
  1067. "reference": "cb2361e5bb4410b681462d8e4f912bc5dabf84ab"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/cb2361e5bb4410b681462d8e4f912bc5dabf84ab",
  1072. "reference": "cb2361e5bb4410b681462d8e4f912bc5dabf84ab",
  1073. "shasum": "",
  1074. "mirrors": [
  1075. {
  1076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1077. "preferred": true
  1078. }
  1079. ]
  1080. },
  1081. "require": {
  1082. "php": ">=5.3.2"
  1083. },
  1084. "require-dev": {
  1085. "friendsofphp/php-cs-fixer": "2.2.*",
  1086. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4"
  1087. },
  1088. "suggest": {
  1089. "ext-gd": "to use the GD implementation",
  1090. "ext-gmagick": "to use the Gmagick implementation",
  1091. "ext-imagick": "to use the Imagick implementation"
  1092. },
  1093. "time": "2019-12-04T09:55:33+00:00",
  1094. "type": "library",
  1095. "extra": {
  1096. "branch-alias": {
  1097. "dev-develop": "0.7-dev"
  1098. }
  1099. },
  1100. "installation-source": "dist",
  1101. "autoload": {
  1102. "psr-4": {
  1103. "Imagine\\": "src/"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Bulat Shakirzyanov",
  1113. "email": "mallluhuct@gmail.com",
  1114. "homepage": "http://avalanche123.com"
  1115. }
  1116. ],
  1117. "description": "Image processing for PHP 5.3",
  1118. "homepage": "http://imagine.readthedocs.org/",
  1119. "keywords": [
  1120. "drawing",
  1121. "graphics",
  1122. "image manipulation",
  1123. "image processing"
  1124. ]
  1125. },
  1126. {
  1127. "name": "jzweb/open-weixin",
  1128. "version": "dev-master",
  1129. "version_normalized": "9999999-dev",
  1130. "source": {
  1131. "type": "git",
  1132. "url": "https://github.com/yidejia/jzweb-open-weixin.git",
  1133. "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7"
  1134. },
  1135. "dist": {
  1136. "type": "zip",
  1137. "url": "https://api.github.com/repos/yidejia/jzweb-open-weixin/zipball/90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
  1138. "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
  1139. "shasum": "",
  1140. "mirrors": [
  1141. {
  1142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1143. "preferred": true
  1144. }
  1145. ]
  1146. },
  1147. "require": {
  1148. "guzzlehttp/guzzle": "~6.0",
  1149. "php": ">=5.5.0"
  1150. },
  1151. "time": "2018-06-01T07:58:00+00:00",
  1152. "type": "library",
  1153. "installation-source": "source",
  1154. "autoload": {
  1155. "psr-4": {
  1156. "jzweb\\open\\weixin\\": "src/"
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "MIT"
  1162. ],
  1163. "authors": [
  1164. {
  1165. "name": "liusongsen",
  1166. "email": "liusongsen@gmail.com"
  1167. }
  1168. ],
  1169. "description": "微信开放平台接口"
  1170. },
  1171. {
  1172. "name": "lcobucci/clock",
  1173. "version": "1.1.0",
  1174. "version_normalized": "1.1.0.0",
  1175. "source": {
  1176. "type": "git",
  1177. "url": "https://github.com/lcobucci/clock.git",
  1178. "reference": "d11d20b6a3df872d34f3b18d5bf4cbe5a01a2451"
  1179. },
  1180. "dist": {
  1181. "type": "zip",
  1182. "url": "https://api.github.com/repos/lcobucci/clock/zipball/d11d20b6a3df872d34f3b18d5bf4cbe5a01a2451",
  1183. "reference": "d11d20b6a3df872d34f3b18d5bf4cbe5a01a2451",
  1184. "shasum": "",
  1185. "mirrors": [
  1186. {
  1187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1188. "preferred": true
  1189. }
  1190. ]
  1191. },
  1192. "require": {
  1193. "php": "^7.1"
  1194. },
  1195. "require-dev": {
  1196. "phpunit/phpunit": "^6.1"
  1197. },
  1198. "time": "2018-01-19T15:38:44+00:00",
  1199. "type": "library",
  1200. "extra": {
  1201. "branch-alias": {
  1202. "dev-master": "1.1-dev"
  1203. }
  1204. },
  1205. "installation-source": "dist",
  1206. "autoload": {
  1207. "psr-4": {
  1208. "Lcobucci\\Clock\\": "src"
  1209. }
  1210. },
  1211. "notification-url": "https://packagist.org/downloads/",
  1212. "license": [
  1213. "MIT"
  1214. ],
  1215. "authors": [
  1216. {
  1217. "name": "Luís Cobucci",
  1218. "email": "lcobucci@gmail.com"
  1219. }
  1220. ],
  1221. "description": "Yet another clock abstraction"
  1222. },
  1223. {
  1224. "name": "lcobucci/jose-parsing",
  1225. "version": "2.2.0",
  1226. "version_normalized": "2.2.0.0",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/lcobucci/jose-parsing.git",
  1230. "reference": "ea0eaed79c3a5ca9ece3f824ecfe1e798fd1e1f4"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/lcobucci/jose-parsing/zipball/ea0eaed79c3a5ca9ece3f824ecfe1e798fd1e1f4",
  1235. "reference": "ea0eaed79c3a5ca9ece3f824ecfe1e798fd1e1f4",
  1236. "shasum": "",
  1237. "mirrors": [
  1238. {
  1239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1240. "preferred": true
  1241. }
  1242. ]
  1243. },
  1244. "require": {
  1245. "php": "^7.1"
  1246. },
  1247. "require-dev": {
  1248. "phpmd/phpmd": "^2.3",
  1249. "phpunit/phpunit": "^6.0",
  1250. "squizlabs/php_codesniffer": "^2.3"
  1251. },
  1252. "time": "2017-02-12T22:14:17+00:00",
  1253. "type": "library",
  1254. "extra": {
  1255. "branch-alias": {
  1256. "dev-master": "2.2-dev"
  1257. }
  1258. },
  1259. "installation-source": "dist",
  1260. "autoload": {
  1261. "psr-4": {
  1262. "Lcobucci\\Jose\\Parsing\\": "src"
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "BSD-3-Clause"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Luís Otávio Cobucci Oblonczyk",
  1272. "email": "lcobucci@gmail.com",
  1273. "role": "Developer"
  1274. }
  1275. ],
  1276. "description": "A basic Base64Url and JSON encoding/decoding implementation",
  1277. "keywords": [
  1278. "JOSE",
  1279. "base64url"
  1280. ],
  1281. "abandoned": true
  1282. },
  1283. {
  1284. "name": "lcobucci/jwt",
  1285. "version": "3.3.0",
  1286. "version_normalized": "3.3.0.0",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/lcobucci/jwt.git",
  1290. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1295. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1296. "shasum": "",
  1297. "mirrors": [
  1298. {
  1299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1300. "preferred": true
  1301. }
  1302. ]
  1303. },
  1304. "require": {
  1305. "ext-mbstring": "*",
  1306. "ext-openssl": "*",
  1307. "php": "^5.6 || ^7.0"
  1308. },
  1309. "require-dev": {
  1310. "mikey179/vfsstream": "~1.5",
  1311. "phpmd/phpmd": "~2.2",
  1312. "phpunit/php-invoker": "~1.1",
  1313. "phpunit/phpunit": "^5.7 || ^7.3",
  1314. "squizlabs/php_codesniffer": "~2.3"
  1315. },
  1316. "time": "2019-05-22T09:44:23+00:00",
  1317. "type": "library",
  1318. "extra": {
  1319. "branch-alias": {
  1320. "dev-master": "3.1-dev"
  1321. }
  1322. },
  1323. "installation-source": "dist",
  1324. "autoload": {
  1325. "psr-4": {
  1326. "Lcobucci\\JWT\\": "src"
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "BSD-3-Clause"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Luís Otávio Cobucci Oblonczyk",
  1336. "email": "lcobucci@gmail.com",
  1337. "role": "Developer"
  1338. }
  1339. ],
  1340. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1341. "keywords": [
  1342. "JWS",
  1343. "jwt"
  1344. ]
  1345. },
  1346. {
  1347. "name": "linslin/yii2-curl",
  1348. "version": "1.0.11",
  1349. "version_normalized": "1.0.11.0",
  1350. "source": {
  1351. "type": "git",
  1352. "url": "https://github.com/linslin/Yii2-Curl.git",
  1353. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3"
  1354. },
  1355. "dist": {
  1356. "type": "zip",
  1357. "url": "https://api.github.com/repos/linslin/Yii2-Curl/zipball/0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1358. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1359. "shasum": "",
  1360. "mirrors": [
  1361. {
  1362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1363. "preferred": true
  1364. }
  1365. ]
  1366. },
  1367. "require": {
  1368. "ext-curl": "*",
  1369. "yiisoft/yii2": "*"
  1370. },
  1371. "time": "2017-01-17T11:11:37+00:00",
  1372. "type": "yii2-extension",
  1373. "installation-source": "dist",
  1374. "autoload": {
  1375. "psr-4": {
  1376. "linslin\\yii2\\curl\\": ""
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "MIT"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Nils Gajsek",
  1386. "email": "info@linslin.org"
  1387. }
  1388. ],
  1389. "description": "Easy and nice cURL extension with RESTful support for Yii2",
  1390. "keywords": [
  1391. " curl",
  1392. "extension",
  1393. "restful",
  1394. "yii2"
  1395. ]
  1396. },
  1397. {
  1398. "name": "mikemadisonweb/yii2-rabbitmq",
  1399. "version": "2.2.1",
  1400. "version_normalized": "2.2.1.0",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/mikemadisonweb/yii2-rabbitmq.git",
  1404. "reference": "d5574048b813f26f57996b0a7819a879df5826e2"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/mikemadisonweb/yii2-rabbitmq/zipball/d5574048b813f26f57996b0a7819a879df5826e2",
  1409. "reference": "d5574048b813f26f57996b0a7819a879df5826e2",
  1410. "shasum": "",
  1411. "mirrors": [
  1412. {
  1413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1414. "preferred": true
  1415. }
  1416. ]
  1417. },
  1418. "require": {
  1419. "php": "^7.0",
  1420. "php-amqplib/php-amqplib": "^2.9",
  1421. "yiisoft/yii2": "^2.0"
  1422. },
  1423. "require-dev": {
  1424. "php-coveralls/php-coveralls": "^1.0",
  1425. "phpunit/phpunit": "^6.4"
  1426. },
  1427. "time": "2019-04-23T12:48:21+00:00",
  1428. "type": "yii2-extension",
  1429. "extra": {
  1430. "bootstrap": "mikemadisonweb\\rabbitmq\\DependencyInjection"
  1431. },
  1432. "installation-source": "source",
  1433. "autoload": {
  1434. "psr-4": {
  1435. "mikemadisonweb\\rabbitmq\\": ""
  1436. }
  1437. },
  1438. "notification-url": "https://packagist.org/downloads/",
  1439. "license": [
  1440. "MIT"
  1441. ],
  1442. "authors": [
  1443. {
  1444. "name": "Mikhail Bakulin",
  1445. "email": "mikemadweb@gmail.com"
  1446. }
  1447. ],
  1448. "description": "Wrapper based on php-amqplib to incorporate messaging in your Yii2 application via RabbitMQ. Inspired by RabbitMqBundle for Symfony 2, really awesome package.",
  1449. "keywords": [
  1450. "AMQP",
  1451. "distributed systems",
  1452. "extension",
  1453. "message queue",
  1454. "rabbitmq",
  1455. "yii2"
  1456. ]
  1457. },
  1458. {
  1459. "name": "mtdowling/jmespath.php",
  1460. "version": "2.5.x-dev",
  1461. "version_normalized": "2.5.9999999.9999999-dev",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/jmespath/jmespath.php.git",
  1465. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  1470. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  1471. "shasum": "",
  1472. "mirrors": [
  1473. {
  1474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1475. "preferred": true
  1476. }
  1477. ]
  1478. },
  1479. "require": {
  1480. "php": ">=5.4.0",
  1481. "symfony/polyfill-mbstring": "^1.4"
  1482. },
  1483. "require-dev": {
  1484. "composer/xdebug-handler": "^1.2",
  1485. "phpunit/phpunit": "^4.8.36|^7.5.15"
  1486. },
  1487. "time": "2019-12-30T18:03:34+00:00",
  1488. "bin": [
  1489. "bin/jp.php"
  1490. ],
  1491. "type": "library",
  1492. "extra": {
  1493. "branch-alias": {
  1494. "dev-master": "2.5-dev"
  1495. }
  1496. },
  1497. "installation-source": "source",
  1498. "autoload": {
  1499. "psr-4": {
  1500. "JmesPath\\": "src/"
  1501. },
  1502. "files": [
  1503. "src/JmesPath.php"
  1504. ]
  1505. },
  1506. "notification-url": "https://packagist.org/downloads/",
  1507. "license": [
  1508. "MIT"
  1509. ],
  1510. "authors": [
  1511. {
  1512. "name": "Michael Dowling",
  1513. "email": "mtdowling@gmail.com",
  1514. "homepage": "https://github.com/mtdowling"
  1515. }
  1516. ],
  1517. "description": "Declaratively specify how to extract elements from a JSON document",
  1518. "keywords": [
  1519. "json",
  1520. "jsonpath"
  1521. ]
  1522. },
  1523. {
  1524. "name": "php-amqplib/php-amqplib",
  1525. "version": "dev-master",
  1526. "version_normalized": "9999999-dev",
  1527. "source": {
  1528. "type": "git",
  1529. "url": "https://github.com/php-amqplib/php-amqplib.git",
  1530. "reference": "04e5366f032906d5f716890427e425e71307d3a8"
  1531. },
  1532. "dist": {
  1533. "type": "zip",
  1534. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/04e5366f032906d5f716890427e425e71307d3a8",
  1535. "reference": "04e5366f032906d5f716890427e425e71307d3a8",
  1536. "shasum": "",
  1537. "mirrors": [
  1538. {
  1539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1540. "preferred": true
  1541. }
  1542. ]
  1543. },
  1544. "require": {
  1545. "ext-bcmath": "*",
  1546. "ext-sockets": "*",
  1547. "php": ">=5.6"
  1548. },
  1549. "replace": {
  1550. "videlalvaro/php-amqplib": "self.version"
  1551. },
  1552. "require-dev": {
  1553. "ext-curl": "*",
  1554. "nategood/httpful": "^0.2.20",
  1555. "phpdocumentor/phpdocumentor": "dev-master",
  1556. "phpunit/phpunit": "^5.7|^6.5|^7.0",
  1557. "squizlabs/php_codesniffer": "^2.5"
  1558. },
  1559. "time": "2019-08-08T18:28:18+00:00",
  1560. "type": "library",
  1561. "extra": {
  1562. "branch-alias": {
  1563. "dev-master": "2.10-dev"
  1564. }
  1565. },
  1566. "installation-source": "source",
  1567. "autoload": {
  1568. "psr-4": {
  1569. "PhpAmqpLib\\": "PhpAmqpLib/"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "LGPL-2.1-or-later"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "Alvaro Videla",
  1579. "role": "Original Maintainer"
  1580. },
  1581. {
  1582. "name": "John Kelly",
  1583. "role": "Maintainer",
  1584. "email": "johnmkelly86@gmail.com"
  1585. },
  1586. {
  1587. "name": "Raúl Araya",
  1588. "role": "Maintainer",
  1589. "email": "nubeiro@gmail.com"
  1590. },
  1591. {
  1592. "name": "Luke Bakken",
  1593. "role": "Maintainer",
  1594. "email": "luke@bakken.io"
  1595. }
  1596. ],
  1597. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  1598. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  1599. "keywords": [
  1600. "message",
  1601. "queue",
  1602. "rabbitmq"
  1603. ]
  1604. },
  1605. {
  1606. "name": "phpoffice/phpexcel",
  1607. "version": "1.8.x-dev",
  1608. "version_normalized": "1.8.9999999.9999999-dev",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1612. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/39534e3dd376041d0d50a4714e73375bf45b692b",
  1617. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b",
  1618. "shasum": "",
  1619. "mirrors": [
  1620. {
  1621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1622. "preferred": true
  1623. }
  1624. ]
  1625. },
  1626. "require": {
  1627. "ext-mbstring": "*",
  1628. "ext-xml": "*",
  1629. "ext-xmlwriter": "*",
  1630. "php": "^5.2|^7.0"
  1631. },
  1632. "require-dev": {
  1633. "squizlabs/php_codesniffer": "2.*"
  1634. },
  1635. "time": "2019-01-02T01:38:47+00:00",
  1636. "type": "library",
  1637. "installation-source": "source",
  1638. "autoload": {
  1639. "psr-0": {
  1640. "PHPExcel": "Classes/"
  1641. }
  1642. },
  1643. "notification-url": "https://packagist.org/downloads/",
  1644. "license": [
  1645. "LGPL-2.1"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "Maarten Balliauw",
  1650. "homepage": "http://blog.maartenballiauw.be"
  1651. },
  1652. {
  1653. "name": "Erik Tilt"
  1654. },
  1655. {
  1656. "name": "Franck Lefevre",
  1657. "homepage": "http://rootslabs.net"
  1658. },
  1659. {
  1660. "name": "Mark Baker",
  1661. "homepage": "http://markbakeruk.net"
  1662. }
  1663. ],
  1664. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1665. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1666. "keywords": [
  1667. "OpenXML",
  1668. "excel",
  1669. "php",
  1670. "spreadsheet",
  1671. "xls",
  1672. "xlsx"
  1673. ],
  1674. "abandoned": "phpoffice/phpspreadsheet"
  1675. },
  1676. {
  1677. "name": "phpoption/phpoption",
  1678. "version": "dev-master",
  1679. "version_normalized": "9999999-dev",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/schmittjoh/php-option.git",
  1683. "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
  1688. "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
  1689. "shasum": "",
  1690. "mirrors": [
  1691. {
  1692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1693. "preferred": true
  1694. }
  1695. ]
  1696. },
  1697. "require": {
  1698. "php": ">=5.3.0"
  1699. },
  1700. "require-dev": {
  1701. "phpunit/phpunit": "^4.7|^5.0"
  1702. },
  1703. "time": "2019-11-10T15:06:50+00:00",
  1704. "type": "library",
  1705. "extra": {
  1706. "branch-alias": {
  1707. "dev-master": "1.6-dev"
  1708. }
  1709. },
  1710. "installation-source": "source",
  1711. "autoload": {
  1712. "psr-0": {
  1713. "PhpOption\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "Apache-2.0"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Johannes M. Schmitt",
  1723. "email": "schmittjoh@gmail.com"
  1724. }
  1725. ],
  1726. "description": "Option Type for PHP",
  1727. "keywords": [
  1728. "language",
  1729. "option",
  1730. "php",
  1731. "type"
  1732. ]
  1733. },
  1734. {
  1735. "name": "phpspec/php-diff",
  1736. "version": "dev-master",
  1737. "version_normalized": "9999999-dev",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://github.com/phpspec/php-diff.git",
  1741. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  1746. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  1747. "shasum": "",
  1748. "mirrors": [
  1749. {
  1750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1751. "preferred": true
  1752. }
  1753. ]
  1754. },
  1755. "time": "2016-04-07T12:29:16+00:00",
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-master": "1.0.x-dev"
  1760. }
  1761. },
  1762. "installation-source": "source",
  1763. "autoload": {
  1764. "psr-0": {
  1765. "Diff": "lib/"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "BSD-3-Clause"
  1771. ],
  1772. "authors": [
  1773. {
  1774. "name": "Chris Boulton",
  1775. "homepage": "http://github.com/chrisboulton"
  1776. }
  1777. ],
  1778. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays)."
  1779. },
  1780. {
  1781. "name": "psr/http-message",
  1782. "version": "dev-master",
  1783. "version_normalized": "9999999-dev",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://github.com/php-fig/http-message.git",
  1787. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1792. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1793. "shasum": "",
  1794. "mirrors": [
  1795. {
  1796. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1797. "preferred": true
  1798. }
  1799. ]
  1800. },
  1801. "require": {
  1802. "php": ">=5.3.0"
  1803. },
  1804. "time": "2016-08-06T14:39:51+00:00",
  1805. "type": "library",
  1806. "extra": {
  1807. "branch-alias": {
  1808. "dev-master": "1.0.x-dev"
  1809. }
  1810. },
  1811. "installation-source": "source",
  1812. "autoload": {
  1813. "psr-4": {
  1814. "Psr\\Http\\Message\\": "src/"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "PHP-FIG",
  1824. "homepage": "http://www.php-fig.org/"
  1825. }
  1826. ],
  1827. "description": "Common interface for HTTP messages",
  1828. "homepage": "https://github.com/php-fig/http-message",
  1829. "keywords": [
  1830. "http",
  1831. "http-message",
  1832. "psr",
  1833. "psr-7",
  1834. "request",
  1835. "response"
  1836. ]
  1837. },
  1838. {
  1839. "name": "pwf0112/wxcrypt",
  1840. "version": "dev-master",
  1841. "version_normalized": "9999999-dev",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/pwf0112/wxcrypt.git",
  1845. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/pwf0112/wxcrypt/zipball/4756b3cfb9e4b812d42acc381582485f21abe831",
  1850. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831",
  1851. "shasum": "",
  1852. "mirrors": [
  1853. {
  1854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1855. "preferred": true
  1856. }
  1857. ]
  1858. },
  1859. "require": {
  1860. "php": ">=5.5.9"
  1861. },
  1862. "require-dev": {
  1863. "phpunit/phpunit": "~4.0"
  1864. },
  1865. "time": "2016-10-27T08:11:14+00:00",
  1866. "type": "library",
  1867. "installation-source": "source",
  1868. "autoload": {
  1869. "psr-4": {
  1870. "WxCrypt\\": "src/"
  1871. }
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "彭未峰",
  1880. "email": "pwf0112@163.com"
  1881. }
  1882. ],
  1883. "description": "微信企业号接入文档Laravel改装",
  1884. "keywords": [
  1885. "企业号",
  1886. "回调接入",
  1887. "微信",
  1888. "消息加密",
  1889. "消息解密"
  1890. ]
  1891. },
  1892. {
  1893. "name": "ralouphie/getallheaders",
  1894. "version": "3.0.3",
  1895. "version_normalized": "3.0.3.0",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/ralouphie/getallheaders.git",
  1899. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1904. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1905. "shasum": "",
  1906. "mirrors": [
  1907. {
  1908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1909. "preferred": true
  1910. }
  1911. ]
  1912. },
  1913. "require": {
  1914. "php": ">=5.6"
  1915. },
  1916. "require-dev": {
  1917. "php-coveralls/php-coveralls": "^2.1",
  1918. "phpunit/phpunit": "^5 || ^6.5"
  1919. },
  1920. "time": "2019-03-08T08:55:37+00:00",
  1921. "type": "library",
  1922. "installation-source": "dist",
  1923. "autoload": {
  1924. "files": [
  1925. "src/getallheaders.php"
  1926. ]
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Ralph Khattar",
  1935. "email": "ralph.khattar@gmail.com"
  1936. }
  1937. ],
  1938. "description": "A polyfill for getallheaders."
  1939. },
  1940. {
  1941. "name": "swiftmailer/swiftmailer",
  1942. "version": "5.x-dev",
  1943. "version_normalized": "5.9999999.9999999.9999999-dev",
  1944. "source": {
  1945. "type": "git",
  1946. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1947. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  1948. },
  1949. "dist": {
  1950. "type": "zip",
  1951. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  1952. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  1953. "shasum": "",
  1954. "mirrors": [
  1955. {
  1956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1957. "preferred": true
  1958. }
  1959. ]
  1960. },
  1961. "require": {
  1962. "php": ">=5.3.3"
  1963. },
  1964. "require-dev": {
  1965. "mockery/mockery": "~0.9.1",
  1966. "symfony/phpunit-bridge": "~3.2"
  1967. },
  1968. "time": "2018-07-31T09:26:32+00:00",
  1969. "type": "library",
  1970. "extra": {
  1971. "branch-alias": {
  1972. "dev-master": "5.4-dev"
  1973. }
  1974. },
  1975. "installation-source": "source",
  1976. "autoload": {
  1977. "files": [
  1978. "lib/swift_required.php"
  1979. ]
  1980. },
  1981. "notification-url": "https://packagist.org/downloads/",
  1982. "license": [
  1983. "MIT"
  1984. ],
  1985. "authors": [
  1986. {
  1987. "name": "Chris Corbyn"
  1988. },
  1989. {
  1990. "name": "Fabien Potencier",
  1991. "email": "fabien@symfony.com"
  1992. }
  1993. ],
  1994. "description": "Swiftmailer, free feature-rich PHP mailer",
  1995. "homepage": "https://swiftmailer.symfony.com",
  1996. "keywords": [
  1997. "email",
  1998. "mail",
  1999. "mailer"
  2000. ]
  2001. },
  2002. {
  2003. "name": "symfony/polyfill-ctype",
  2004. "version": "dev-master",
  2005. "version_normalized": "9999999-dev",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/symfony/polyfill-ctype.git",
  2009. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  2014. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  2015. "shasum": "",
  2016. "mirrors": [
  2017. {
  2018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2019. "preferred": true
  2020. }
  2021. ]
  2022. },
  2023. "require": {
  2024. "php": ">=5.3.3"
  2025. },
  2026. "suggest": {
  2027. "ext-ctype": "For best performance"
  2028. },
  2029. "time": "2019-08-06T08:03:45+00:00",
  2030. "type": "library",
  2031. "extra": {
  2032. "branch-alias": {
  2033. "dev-master": "1.12-dev"
  2034. }
  2035. },
  2036. "installation-source": "source",
  2037. "autoload": {
  2038. "psr-4": {
  2039. "Symfony\\Polyfill\\Ctype\\": ""
  2040. },
  2041. "files": [
  2042. "bootstrap.php"
  2043. ]
  2044. },
  2045. "notification-url": "https://packagist.org/downloads/",
  2046. "license": [
  2047. "MIT"
  2048. ],
  2049. "authors": [
  2050. {
  2051. "name": "Gert de Pagter",
  2052. "email": "BackEndTea@gmail.com"
  2053. },
  2054. {
  2055. "name": "Symfony Community",
  2056. "homepage": "https://symfony.com/contributors"
  2057. }
  2058. ],
  2059. "description": "Symfony polyfill for ctype functions",
  2060. "homepage": "https://symfony.com",
  2061. "keywords": [
  2062. "compatibility",
  2063. "ctype",
  2064. "polyfill",
  2065. "portable"
  2066. ]
  2067. },
  2068. {
  2069. "name": "symfony/polyfill-mbstring",
  2070. "version": "dev-master",
  2071. "version_normalized": "9999999-dev",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2075. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  2080. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  2081. "shasum": "",
  2082. "mirrors": [
  2083. {
  2084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2085. "preferred": true
  2086. }
  2087. ]
  2088. },
  2089. "require": {
  2090. "php": ">=5.3.3"
  2091. },
  2092. "suggest": {
  2093. "ext-mbstring": "For best performance"
  2094. },
  2095. "time": "2019-02-06T07:57:58+00:00",
  2096. "type": "library",
  2097. "extra": {
  2098. "branch-alias": {
  2099. "dev-master": "1.11-dev"
  2100. }
  2101. },
  2102. "installation-source": "source",
  2103. "autoload": {
  2104. "psr-4": {
  2105. "Symfony\\Polyfill\\Mbstring\\": ""
  2106. },
  2107. "files": [
  2108. "bootstrap.php"
  2109. ]
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "MIT"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Nicolas Grekas",
  2118. "email": "p@tchwork.com"
  2119. },
  2120. {
  2121. "name": "Symfony Community",
  2122. "homepage": "https://symfony.com/contributors"
  2123. }
  2124. ],
  2125. "description": "Symfony polyfill for the Mbstring extension",
  2126. "homepage": "https://symfony.com",
  2127. "keywords": [
  2128. "compatibility",
  2129. "mbstring",
  2130. "polyfill",
  2131. "portable",
  2132. "shim"
  2133. ]
  2134. },
  2135. {
  2136. "name": "symfony/var-dumper",
  2137. "version": "3.4.x-dev",
  2138. "version_normalized": "3.4.9999999.9999999-dev",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/symfony/var-dumper.git",
  2142. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  2147. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  2148. "shasum": "",
  2149. "mirrors": [
  2150. {
  2151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2152. "preferred": true
  2153. }
  2154. ]
  2155. },
  2156. "require": {
  2157. "php": "^5.5.9|>=7.0.8",
  2158. "symfony/polyfill-mbstring": "~1.0"
  2159. },
  2160. "conflict": {
  2161. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2162. },
  2163. "require-dev": {
  2164. "ext-iconv": "*",
  2165. "twig/twig": "~1.34|~2.4"
  2166. },
  2167. "suggest": {
  2168. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2169. "ext-intl": "To show region name in time zone dump",
  2170. "ext-symfony_debug": ""
  2171. },
  2172. "time": "2019-04-11T09:48:14+00:00",
  2173. "type": "library",
  2174. "extra": {
  2175. "branch-alias": {
  2176. "dev-master": "3.4-dev"
  2177. }
  2178. },
  2179. "installation-source": "source",
  2180. "autoload": {
  2181. "files": [
  2182. "Resources/functions/dump.php"
  2183. ],
  2184. "psr-4": {
  2185. "Symfony\\Component\\VarDumper\\": ""
  2186. },
  2187. "exclude-from-classmap": [
  2188. "/Tests/"
  2189. ]
  2190. },
  2191. "notification-url": "https://packagist.org/downloads/",
  2192. "license": [
  2193. "MIT"
  2194. ],
  2195. "authors": [
  2196. {
  2197. "name": "Nicolas Grekas",
  2198. "email": "p@tchwork.com"
  2199. },
  2200. {
  2201. "name": "Symfony Community",
  2202. "homepage": "https://symfony.com/contributors"
  2203. }
  2204. ],
  2205. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2206. "homepage": "https://symfony.com",
  2207. "keywords": [
  2208. "debug",
  2209. "dump"
  2210. ]
  2211. },
  2212. {
  2213. "name": "vlucas/phpdotenv",
  2214. "version": "dev-master",
  2215. "version_normalized": "9999999-dev",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://github.com/vlucas/phpdotenv.git",
  2219. "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
  2224. "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
  2225. "shasum": "",
  2226. "mirrors": [
  2227. {
  2228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2229. "preferred": true
  2230. }
  2231. ]
  2232. },
  2233. "require": {
  2234. "php": "^5.4 || ^7.0",
  2235. "phpoption/phpoption": "^1.5",
  2236. "symfony/polyfill-ctype": "^1.9"
  2237. },
  2238. "require-dev": {
  2239. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  2240. },
  2241. "time": "2019-11-04T22:18:38+00:00",
  2242. "type": "library",
  2243. "extra": {
  2244. "branch-alias": {
  2245. "dev-master": "4.0-dev"
  2246. }
  2247. },
  2248. "installation-source": "source",
  2249. "autoload": {
  2250. "psr-4": {
  2251. "Dotenv\\": "src/"
  2252. }
  2253. },
  2254. "notification-url": "https://packagist.org/downloads/",
  2255. "license": [
  2256. "BSD-3-Clause"
  2257. ],
  2258. "authors": [
  2259. {
  2260. "name": "Graham Campbell",
  2261. "email": "graham@alt-three.com",
  2262. "homepage": "https://gjcampbell.co.uk/"
  2263. },
  2264. {
  2265. "name": "Vance Lucas",
  2266. "email": "vance@vancelucas.com",
  2267. "homepage": "https://vancelucas.com/"
  2268. }
  2269. ],
  2270. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2271. "keywords": [
  2272. "dotenv",
  2273. "env",
  2274. "environment"
  2275. ]
  2276. },
  2277. {
  2278. "name": "workerman/gatewayclient",
  2279. "version": "v3.0.13",
  2280. "version_normalized": "3.0.13.0",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/walkor/GatewayClient.git",
  2284. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/6f4e76f38947be5cabca2c6fee367151f248d949",
  2289. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949",
  2290. "shasum": "",
  2291. "mirrors": [
  2292. {
  2293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2294. "preferred": true
  2295. }
  2296. ]
  2297. },
  2298. "time": "2018-09-15T03:03:50+00:00",
  2299. "type": "library",
  2300. "installation-source": "dist",
  2301. "autoload": {
  2302. "psr-4": {
  2303. "GatewayClient\\": "./"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "homepage": "http://www.workerman.net"
  2311. },
  2312. {
  2313. "name": "yiier/yii2-aliyun-oss",
  2314. "version": "dev-master",
  2315. "version_normalized": "9999999-dev",
  2316. "source": {
  2317. "type": "git",
  2318. "url": "https://github.com/yiier/yii2-aliyun-oss.git",
  2319. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a"
  2320. },
  2321. "dist": {
  2322. "type": "zip",
  2323. "url": "https://api.github.com/repos/yiier/yii2-aliyun-oss/zipball/ce1587cd58466cdf3a593f78532a210f2645f76a",
  2324. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a",
  2325. "shasum": "",
  2326. "mirrors": [
  2327. {
  2328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2329. "preferred": true
  2330. }
  2331. ]
  2332. },
  2333. "require": {
  2334. "aliyuncs/oss-sdk-php": ">2.0",
  2335. "yiisoft/yii2": "*"
  2336. },
  2337. "time": "2020-06-08T06:35:54+00:00",
  2338. "type": "yii2-extension",
  2339. "installation-source": "dist",
  2340. "autoload": {
  2341. "psr-4": {
  2342. "yiier\\AliyunOSS\\": ""
  2343. }
  2344. },
  2345. "notification-url": "https://packagist.org/downloads/",
  2346. "license": [
  2347. "BSD-3-Clause"
  2348. ],
  2349. "authors": [
  2350. {
  2351. "name": "forecho",
  2352. "email": "caizhenghai@gmail.com"
  2353. }
  2354. ],
  2355. "description": "Yii2 阿里云 OSS",
  2356. "keywords": [
  2357. "AliyunOSS",
  2358. "extension",
  2359. "oss",
  2360. "yii2"
  2361. ]
  2362. },
  2363. {
  2364. "name": "yiisoft/yii2",
  2365. "version": "2.0.29",
  2366. "version_normalized": "2.0.29.0",
  2367. "source": {
  2368. "type": "git",
  2369. "url": "https://github.com/yiisoft/yii2-framework.git",
  2370. "reference": "f972275551172a4b2e293979d77aa0c795ae36a2"
  2371. },
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/f972275551172a4b2e293979d77aa0c795ae36a2",
  2375. "reference": "f972275551172a4b2e293979d77aa0c795ae36a2",
  2376. "shasum": "",
  2377. "mirrors": [
  2378. {
  2379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2380. "preferred": true
  2381. }
  2382. ]
  2383. },
  2384. "require": {
  2385. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  2386. "bower-asset/jquery": "3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  2387. "bower-asset/punycode": "1.3.*",
  2388. "bower-asset/yii2-pjax": "~2.0.1",
  2389. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  2390. "ext-ctype": "*",
  2391. "ext-mbstring": "*",
  2392. "ezyang/htmlpurifier": "~4.6",
  2393. "lib-pcre": "*",
  2394. "php": ">=5.4.0",
  2395. "yiisoft/yii2-composer": "~2.0.4"
  2396. },
  2397. "time": "2019-10-22T13:47:14+00:00",
  2398. "bin": [
  2399. "yii"
  2400. ],
  2401. "type": "library",
  2402. "extra": {
  2403. "branch-alias": {
  2404. "dev-master": "2.0.x-dev"
  2405. }
  2406. },
  2407. "installation-source": "dist",
  2408. "autoload": {
  2409. "psr-4": {
  2410. "yii\\": ""
  2411. }
  2412. },
  2413. "notification-url": "https://packagist.org/downloads/",
  2414. "license": [
  2415. "BSD-3-Clause"
  2416. ],
  2417. "authors": [
  2418. {
  2419. "name": "Qiang Xue",
  2420. "email": "qiang.xue@gmail.com",
  2421. "homepage": "http://www.yiiframework.com/",
  2422. "role": "Founder and project lead"
  2423. },
  2424. {
  2425. "name": "Alexander Makarov",
  2426. "email": "sam@rmcreative.ru",
  2427. "homepage": "http://rmcreative.ru/",
  2428. "role": "Core framework development"
  2429. },
  2430. {
  2431. "name": "Maurizio Domba",
  2432. "homepage": "http://mdomba.info/",
  2433. "role": "Core framework development"
  2434. },
  2435. {
  2436. "name": "Carsten Brandt",
  2437. "email": "mail@cebe.cc",
  2438. "homepage": "http://cebe.cc/",
  2439. "role": "Core framework development"
  2440. },
  2441. {
  2442. "name": "Timur Ruziev",
  2443. "email": "resurtm@gmail.com",
  2444. "homepage": "http://resurtm.com/",
  2445. "role": "Core framework development"
  2446. },
  2447. {
  2448. "name": "Paul Klimov",
  2449. "email": "klimov.paul@gmail.com",
  2450. "role": "Core framework development"
  2451. },
  2452. {
  2453. "name": "Dmitry Naumenko",
  2454. "email": "d.naumenko.a@gmail.com",
  2455. "role": "Core framework development"
  2456. },
  2457. {
  2458. "name": "Boudewijn Vahrmeijer",
  2459. "email": "info@dynasource.eu",
  2460. "homepage": "http://dynasource.eu",
  2461. "role": "Core framework development"
  2462. }
  2463. ],
  2464. "description": "Yii PHP Framework Version 2",
  2465. "homepage": "http://www.yiiframework.com/",
  2466. "keywords": [
  2467. "framework",
  2468. "yii2"
  2469. ]
  2470. },
  2471. {
  2472. "name": "yiisoft/yii2-bootstrap",
  2473. "version": "dev-master",
  2474. "version_normalized": "9999999-dev",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  2478. "reference": "454552b7a90e2a803def733e4d1f612b850158da"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/454552b7a90e2a803def733e4d1f612b850158da",
  2483. "reference": "454552b7a90e2a803def733e4d1f612b850158da",
  2484. "shasum": "",
  2485. "mirrors": [
  2486. {
  2487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2488. "preferred": true
  2489. }
  2490. ]
  2491. },
  2492. "require": {
  2493. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  2494. "yiisoft/yii2": "~2.0.6"
  2495. },
  2496. "require-dev": {
  2497. "phpunit/phpunit": "<7"
  2498. },
  2499. "time": "2019-02-17T13:23:56+00:00",
  2500. "type": "yii2-extension",
  2501. "extra": {
  2502. "branch-alias": {
  2503. "dev-master": "2.0.x-dev"
  2504. }
  2505. },
  2506. "installation-source": "source",
  2507. "autoload": {
  2508. "psr-4": {
  2509. "yii\\bootstrap\\": "src"
  2510. }
  2511. },
  2512. "notification-url": "https://packagist.org/downloads/",
  2513. "license": [
  2514. "BSD-3-Clause"
  2515. ],
  2516. "authors": [
  2517. {
  2518. "name": "Paul Klimov",
  2519. "email": "klimov.paul@gmail.com"
  2520. },
  2521. {
  2522. "name": "Alexander Makarov",
  2523. "email": "sam@rmcreative.ru",
  2524. "homepage": "http://rmcreative.ru/"
  2525. },
  2526. {
  2527. "name": "Antonio Ramirez",
  2528. "email": "amigo.cobos@gmail.com"
  2529. },
  2530. {
  2531. "name": "Qiang Xue",
  2532. "email": "qiang.xue@gmail.com",
  2533. "homepage": "http://www.yiiframework.com/"
  2534. }
  2535. ],
  2536. "description": "The Twitter Bootstrap extension for the Yii framework",
  2537. "keywords": [
  2538. "bootstrap",
  2539. "yii2"
  2540. ]
  2541. },
  2542. {
  2543. "name": "yiisoft/yii2-codeception",
  2544. "version": "dev-master",
  2545. "version_normalized": "9999999-dev",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/yiisoft/yii2-codeception.git",
  2549. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/c7d1509498c349179940a8d2b9c6d078e8054b90",
  2554. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90",
  2555. "shasum": "",
  2556. "mirrors": [
  2557. {
  2558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2559. "preferred": true
  2560. }
  2561. ]
  2562. },
  2563. "require": {
  2564. "yiisoft/yii2": ">=2.0.4"
  2565. },
  2566. "time": "2018-04-26T18:21:40+00:00",
  2567. "type": "yii2-extension",
  2568. "extra": {
  2569. "branch-alias": {
  2570. "dev-master": "2.0.x-dev"
  2571. }
  2572. },
  2573. "installation-source": "source",
  2574. "autoload": {
  2575. "psr-4": {
  2576. "yii\\codeception\\": ""
  2577. }
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "BSD-3-Clause"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Mark Jebri",
  2586. "email": "mark.github@yandex.ru"
  2587. }
  2588. ],
  2589. "description": "The Codeception integration for the Yii framework",
  2590. "keywords": [
  2591. "codeception",
  2592. "yii2"
  2593. ],
  2594. "abandoned": "codeception/codeception"
  2595. },
  2596. {
  2597. "name": "yiisoft/yii2-composer",
  2598. "version": "dev-master",
  2599. "version_normalized": "9999999-dev",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/yiisoft/yii2-composer.git",
  2603. "reference": "602673880e00bc2cc6d874b0714382775b372ac2"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/602673880e00bc2cc6d874b0714382775b372ac2",
  2608. "reference": "602673880e00bc2cc6d874b0714382775b372ac2",
  2609. "shasum": "",
  2610. "mirrors": [
  2611. {
  2612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2613. "preferred": true
  2614. }
  2615. ]
  2616. },
  2617. "require": {
  2618. "composer-plugin-api": "^1.0"
  2619. },
  2620. "require-dev": {
  2621. "composer/composer": "^1.0",
  2622. "phpunit/phpunit": "<7"
  2623. },
  2624. "time": "2019-07-16T13:22:50+00:00",
  2625. "type": "composer-plugin",
  2626. "extra": {
  2627. "class": "yii\\composer\\Plugin",
  2628. "branch-alias": {
  2629. "dev-master": "2.0.x-dev"
  2630. }
  2631. },
  2632. "installation-source": "source",
  2633. "autoload": {
  2634. "psr-4": {
  2635. "yii\\composer\\": ""
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "BSD-3-Clause"
  2641. ],
  2642. "authors": [
  2643. {
  2644. "name": "Qiang Xue",
  2645. "email": "qiang.xue@gmail.com"
  2646. },
  2647. {
  2648. "name": "Carsten Brandt",
  2649. "email": "mail@cebe.cc"
  2650. }
  2651. ],
  2652. "description": "The composer plugin for Yii extension installer",
  2653. "keywords": [
  2654. "composer",
  2655. "extension installer",
  2656. "yii2"
  2657. ]
  2658. },
  2659. {
  2660. "name": "yiisoft/yii2-debug",
  2661. "version": "2.0.12",
  2662. "version_normalized": "2.0.12.0",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/yiisoft/yii2-debug.git",
  2666. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/93082f46d3568b4431a26f264e0d16a12c42bd50",
  2671. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50",
  2672. "shasum": "",
  2673. "mirrors": [
  2674. {
  2675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2676. "preferred": true
  2677. }
  2678. ]
  2679. },
  2680. "require": {
  2681. "yiisoft/yii2": "~2.0.11",
  2682. "yiisoft/yii2-bootstrap": "~2.0.0"
  2683. },
  2684. "time": "2017-10-09T20:30:01+00:00",
  2685. "type": "yii2-extension",
  2686. "extra": {
  2687. "branch-alias": {
  2688. "dev-master": "2.0.x-dev"
  2689. }
  2690. },
  2691. "installation-source": "dist",
  2692. "autoload": {
  2693. "psr-4": {
  2694. "yii\\debug\\": ""
  2695. }
  2696. },
  2697. "notification-url": "https://packagist.org/downloads/",
  2698. "license": [
  2699. "BSD-3-Clause"
  2700. ],
  2701. "authors": [
  2702. {
  2703. "name": "Qiang Xue",
  2704. "email": "qiang.xue@gmail.com"
  2705. }
  2706. ],
  2707. "description": "The debugger extension for the Yii framework",
  2708. "keywords": [
  2709. "debug",
  2710. "debugger",
  2711. "yii2"
  2712. ]
  2713. },
  2714. {
  2715. "name": "yiisoft/yii2-faker",
  2716. "version": "dev-master",
  2717. "version_normalized": "9999999-dev",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://github.com/yiisoft/yii2-faker.git",
  2721. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/2f548188b2961f097c08623214f5190e3cf2f1ac",
  2726. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac",
  2727. "shasum": "",
  2728. "mirrors": [
  2729. {
  2730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2731. "preferred": true
  2732. }
  2733. ]
  2734. },
  2735. "require": {
  2736. "fzaninotto/faker": "~1.4",
  2737. "yiisoft/yii2": "~2.0.0"
  2738. },
  2739. "require-dev": {
  2740. "phpunit/phpunit": "<7"
  2741. },
  2742. "time": "2019-02-18T10:24:17+00:00",
  2743. "type": "yii2-extension",
  2744. "extra": {
  2745. "branch-alias": {
  2746. "dev-master": "2.0.x-dev"
  2747. }
  2748. },
  2749. "installation-source": "source",
  2750. "autoload": {
  2751. "psr-4": {
  2752. "yii\\faker\\": "src"
  2753. }
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "BSD-3-Clause"
  2758. ],
  2759. "authors": [
  2760. {
  2761. "name": "Mark Jebri",
  2762. "email": "mark.github@yandex.ru"
  2763. }
  2764. ],
  2765. "description": "Fixture generator. The Faker integration for the Yii framework.",
  2766. "keywords": [
  2767. "Fixture",
  2768. "faker",
  2769. "yii2"
  2770. ]
  2771. },
  2772. {
  2773. "name": "yiisoft/yii2-gii",
  2774. "version": "2.0.5",
  2775. "version_normalized": "2.0.5.0",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/yiisoft/yii2-gii.git",
  2779. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
  2784. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
  2785. "shasum": "",
  2786. "mirrors": [
  2787. {
  2788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2789. "preferred": true
  2790. }
  2791. ]
  2792. },
  2793. "require": {
  2794. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  2795. "phpspec/php-diff": ">=1.0.2",
  2796. "yiisoft/yii2": ">=2.0.4",
  2797. "yiisoft/yii2-bootstrap": "~2.0"
  2798. },
  2799. "time": "2016-03-18T14:09:46+00:00",
  2800. "type": "yii2-extension",
  2801. "extra": {
  2802. "branch-alias": {
  2803. "dev-master": "2.0.x-dev"
  2804. },
  2805. "asset-installer-paths": {
  2806. "npm-asset-library": "vendor/npm",
  2807. "bower-asset-library": "vendor/bower"
  2808. }
  2809. },
  2810. "installation-source": "dist",
  2811. "autoload": {
  2812. "psr-4": {
  2813. "yii\\gii\\": ""
  2814. }
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "BSD-3-Clause"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "Qiang Xue",
  2823. "email": "qiang.xue@gmail.com"
  2824. }
  2825. ],
  2826. "description": "The Gii extension for the Yii framework",
  2827. "keywords": [
  2828. "code generator",
  2829. "gii",
  2830. "yii2"
  2831. ]
  2832. },
  2833. {
  2834. "name": "yiisoft/yii2-imagine",
  2835. "version": "dev-master",
  2836. "version_normalized": "9999999-dev",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://github.com/yiisoft/yii2-imagine.git",
  2840. "reference": "21d3df6f100410a40a163f849d311faf138b88b8"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/21d3df6f100410a40a163f849d311faf138b88b8",
  2845. "reference": "21d3df6f100410a40a163f849d311faf138b88b8",
  2846. "shasum": "",
  2847. "mirrors": [
  2848. {
  2849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2850. "preferred": true
  2851. }
  2852. ]
  2853. },
  2854. "require": {
  2855. "imagine/imagine": "^0.6 | ^0.7 | ^1.0",
  2856. "yiisoft/yii2": "~2.0.0"
  2857. },
  2858. "require-dev": {
  2859. "phpunit/phpunit": "<7"
  2860. },
  2861. "time": "2019-12-06T16:12:49+00:00",
  2862. "type": "yii2-extension",
  2863. "extra": {
  2864. "branch-alias": {
  2865. "dev-master": "2.0.x-dev"
  2866. }
  2867. },
  2868. "installation-source": "dist",
  2869. "autoload": {
  2870. "psr-4": {
  2871. "yii\\imagine\\": "src"
  2872. }
  2873. },
  2874. "notification-url": "https://packagist.org/downloads/",
  2875. "license": [
  2876. "BSD-3-Clause"
  2877. ],
  2878. "authors": [
  2879. {
  2880. "name": "Antonio Ramirez",
  2881. "email": "amigo.cobos@gmail.com"
  2882. }
  2883. ],
  2884. "description": "The Imagine integration for the Yii framework",
  2885. "keywords": [
  2886. "helper",
  2887. "image",
  2888. "imagine",
  2889. "yii2"
  2890. ]
  2891. },
  2892. {
  2893. "name": "yiisoft/yii2-redis",
  2894. "version": "2.0.6",
  2895. "version_normalized": "2.0.6.0",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/yiisoft/yii2-redis.git",
  2899. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  2904. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  2905. "shasum": "",
  2906. "mirrors": [
  2907. {
  2908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2909. "preferred": true
  2910. }
  2911. ]
  2912. },
  2913. "require": {
  2914. "yiisoft/yii2": "~2.0.11"
  2915. },
  2916. "time": "2017-04-05T13:42:11+00:00",
  2917. "type": "yii2-extension",
  2918. "extra": {
  2919. "branch-alias": {
  2920. "dev-master": "2.0.x-dev"
  2921. }
  2922. },
  2923. "installation-source": "dist",
  2924. "autoload": {
  2925. "psr-4": {
  2926. "yii\\redis\\": ""
  2927. }
  2928. },
  2929. "notification-url": "https://packagist.org/downloads/",
  2930. "license": [
  2931. "BSD-3-Clause"
  2932. ],
  2933. "authors": [
  2934. {
  2935. "name": "Carsten Brandt",
  2936. "email": "mail@cebe.cc"
  2937. }
  2938. ],
  2939. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  2940. "keywords": [
  2941. "active-record",
  2942. "cache",
  2943. "redis",
  2944. "session",
  2945. "yii2"
  2946. ]
  2947. },
  2948. {
  2949. "name": "yiisoft/yii2-swiftmailer",
  2950. "version": "2.0.7",
  2951. "version_normalized": "2.0.7.0",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  2955. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  2960. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  2961. "shasum": "",
  2962. "mirrors": [
  2963. {
  2964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2965. "preferred": true
  2966. }
  2967. ]
  2968. },
  2969. "require": {
  2970. "swiftmailer/swiftmailer": "~5.0",
  2971. "yiisoft/yii2": "~2.0.4"
  2972. },
  2973. "time": "2017-05-01T08:29:00+00:00",
  2974. "type": "yii2-extension",
  2975. "extra": {
  2976. "branch-alias": {
  2977. "dev-master": "2.0.x-dev"
  2978. }
  2979. },
  2980. "installation-source": "dist",
  2981. "autoload": {
  2982. "psr-4": {
  2983. "yii\\swiftmailer\\": ""
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "BSD-3-Clause"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Paul Klimov",
  2993. "email": "klimov.paul@gmail.com"
  2994. }
  2995. ],
  2996. "description": "The SwiftMailer integration for the Yii framework",
  2997. "keywords": [
  2998. "email",
  2999. "mail",
  3000. "mailer",
  3001. "swift",
  3002. "swiftmailer",
  3003. "yii2"
  3004. ]
  3005. }
  3006. ]