composer.lock 110 KB

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