installed.json 98 KB

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