composer.lock 132 KB

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