composer.lock 129 KB

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