composer.lock 121 KB

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