installed.json 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459
  1. [
  2. {
  3. "name": "adbario/php-dot-notation",
  4. "version": "2.2.0",
  5. "version_normalized": "2.2.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/adbario/php-dot-notation.git",
  9. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  14. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  15. "shasum": "",
  16. "mirrors": [
  17. {
  18. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  19. "preferred": true
  20. }
  21. ]
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": ">=5.5"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  29. "squizlabs/php_codesniffer": "^3.0"
  30. },
  31. "time": "2019-01-01T23:59:15+00:00",
  32. "type": "library",
  33. "installation-source": "dist",
  34. "autoload": {
  35. "files": [
  36. "src/helpers.php"
  37. ],
  38. "psr-4": {
  39. "Adbar\\": "src"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Riku Särkinen",
  49. "email": "riku@adbar.io"
  50. }
  51. ],
  52. "description": "PHP dot notation access to arrays",
  53. "homepage": "https://github.com/adbario/php-dot-notation",
  54. "keywords": [
  55. "ArrayAccess",
  56. "dotnotation"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/adbario/php-dot-notation/issues",
  60. "source": "https://github.com/adbario/php-dot-notation/tree/2.x"
  61. }
  62. },
  63. {
  64. "name": "alibabacloud/client",
  65. "version": "1.5.31",
  66. "version_normalized": "1.5.31.0",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  70. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  75. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "adbario/php-dot-notation": "^2.2",
  86. "clagiordano/weblibs-configmanager": "^1.0",
  87. "danielstjules/stringy": "^3.1",
  88. "ext-curl": "*",
  89. "ext-json": "*",
  90. "ext-libxml": "*",
  91. "ext-mbstring": "*",
  92. "ext-openssl": "*",
  93. "ext-simplexml": "*",
  94. "ext-xmlwriter": "*",
  95. "guzzlehttp/guzzle": "^6.3|^7.0",
  96. "mtdowling/jmespath.php": "^2.5",
  97. "php": ">=5.5"
  98. },
  99. "require-dev": {
  100. "composer/composer": "^1.8",
  101. "drupal/coder": "^8.3",
  102. "ext-dom": "*",
  103. "ext-pcre": "*",
  104. "ext-sockets": "*",
  105. "ext-spl": "*",
  106. "league/climate": "^3.2.4",
  107. "mikey179/vfsstream": "^1.6",
  108. "monolog/monolog": "^1.24",
  109. "phpunit/phpunit": "^5.7.27|^6.1",
  110. "psr/cache": "^1.0",
  111. "symfony/dotenv": "^3.4",
  112. "symfony/var-dumper": "^3.4"
  113. },
  114. "suggest": {
  115. "ext-sockets": "To use client-side monitoring"
  116. },
  117. "time": "2021-05-13T06:26:38+00:00",
  118. "type": "library",
  119. "installation-source": "dist",
  120. "autoload": {
  121. "psr-4": {
  122. "AlibabaCloud\\Client\\": "src"
  123. },
  124. "files": [
  125. "src/Functions.php"
  126. ]
  127. },
  128. "notification-url": "https://packagist.org/downloads/",
  129. "license": [
  130. "Apache-2.0"
  131. ],
  132. "authors": [
  133. {
  134. "name": "Alibaba Cloud SDK",
  135. "email": "sdk-team@alibabacloud.com",
  136. "homepage": "http://www.alibabacloud.com"
  137. }
  138. ],
  139. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  140. "homepage": "https://www.alibabacloud.com/",
  141. "keywords": [
  142. "alibaba",
  143. "alibabacloud",
  144. "aliyun",
  145. "client",
  146. "cloud",
  147. "library",
  148. "sdk",
  149. "tool"
  150. ]
  151. },
  152. {
  153. "name": "alibabacloud/sdk",
  154. "version": "1.8.1105",
  155. "version_normalized": "1.8.1105.0",
  156. "source": {
  157. "type": "git",
  158. "url": "https://github.com/aliyun/openapi-sdk-php.git",
  159. "reference": "2cdf1463939476d56e8a4944c00c15b456857a32"
  160. },
  161. "dist": {
  162. "type": "zip",
  163. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php/zipball/2cdf1463939476d56e8a4944c00c15b456857a32",
  164. "reference": "2cdf1463939476d56e8a4944c00c15b456857a32",
  165. "shasum": "",
  166. "mirrors": [
  167. {
  168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  169. "preferred": true
  170. }
  171. ]
  172. },
  173. "require": {
  174. "alibabacloud/client": "^1.5",
  175. "ext-curl": "*",
  176. "ext-json": "*",
  177. "ext-libxml": "*",
  178. "ext-mbstring": "*",
  179. "ext-openssl": "*",
  180. "ext-simplexml": "*",
  181. "ext-xmlwriter": "*",
  182. "php": ">=5.5"
  183. },
  184. "replace": {
  185. "alibabacloud/aas": "self.version",
  186. "alibabacloud/actiontrail": "self.version",
  187. "alibabacloud/adb": "self.version",
  188. "alibabacloud/aegis": "self.version",
  189. "alibabacloud/afs": "self.version",
  190. "alibabacloud/airec": "self.version",
  191. "alibabacloud/alidns": "self.version",
  192. "alibabacloud/alikafka": "self.version",
  193. "alibabacloud/alimt": "self.version",
  194. "alibabacloud/aliprobe": "self.version",
  195. "alibabacloud/aliyuncvc": "self.version",
  196. "alibabacloud/appmallsservice": "self.version",
  197. "alibabacloud/arms": "self.version",
  198. "alibabacloud/arms4finance": "self.version",
  199. "alibabacloud/baas": "self.version",
  200. "alibabacloud/batchcompute": "self.version",
  201. "alibabacloud/bss": "self.version",
  202. "alibabacloud/bssopenapi": "self.version",
  203. "alibabacloud/cas": "self.version",
  204. "alibabacloud/cbn": "self.version",
  205. "alibabacloud/ccc": "self.version",
  206. "alibabacloud/ccs": "self.version",
  207. "alibabacloud/cdn": "self.version",
  208. "alibabacloud/cds": "self.version",
  209. "alibabacloud/cf": "self.version",
  210. "alibabacloud/chatbot": "self.version",
  211. "alibabacloud/cloudapi": "self.version",
  212. "alibabacloud/cloudauth": "self.version",
  213. "alibabacloud/cloudesl": "self.version",
  214. "alibabacloud/cloudmarketing": "self.version",
  215. "alibabacloud/cloudphoto": "self.version",
  216. "alibabacloud/cloudwf": "self.version",
  217. "alibabacloud/cms": "self.version",
  218. "alibabacloud/commondriver": "self.version",
  219. "alibabacloud/companyreg": "self.version",
  220. "alibabacloud/cr": "self.version",
  221. "alibabacloud/crm": "self.version",
  222. "alibabacloud/cs": "self.version",
  223. "alibabacloud/csb": "self.version",
  224. "alibabacloud/cusanalyticsconline": "self.version",
  225. "alibabacloud/dataworkspublic": "self.version",
  226. "alibabacloud/dbs": "self.version",
  227. "alibabacloud/dcdn": "self.version",
  228. "alibabacloud/dds": "self.version",
  229. "alibabacloud/democenter": "self.version",
  230. "alibabacloud/dm": "self.version",
  231. "alibabacloud/dmsenterprise": "self.version",
  232. "alibabacloud/domain": "self.version",
  233. "alibabacloud/domainintl": "self.version",
  234. "alibabacloud/drcloud": "self.version",
  235. "alibabacloud/drds": "self.version",
  236. "alibabacloud/dts": "self.version",
  237. "alibabacloud/dybaseapi": "self.version",
  238. "alibabacloud/dyplsapi": "self.version",
  239. "alibabacloud/dypnsapi": "self.version",
  240. "alibabacloud/dysmsapi": "self.version",
  241. "alibabacloud/dyvmsapi": "self.version",
  242. "alibabacloud/eci": "self.version",
  243. "alibabacloud/ecs": "self.version",
  244. "alibabacloud/ecsinc": "self.version",
  245. "alibabacloud/edas": "self.version",
  246. "alibabacloud/ehpc": "self.version",
  247. "alibabacloud/elasticsearch": "self.version",
  248. "alibabacloud/emr": "self.version",
  249. "alibabacloud/ess": "self.version",
  250. "alibabacloud/facebody": "self.version",
  251. "alibabacloud/fnf": "self.version",
  252. "alibabacloud/foas": "self.version",
  253. "alibabacloud/ft": "self.version",
  254. "alibabacloud/goodstech": "self.version",
  255. "alibabacloud/gpdb": "self.version",
  256. "alibabacloud/green": "self.version",
  257. "alibabacloud/hbase": "self.version",
  258. "alibabacloud/hiknoengine": "self.version",
  259. "alibabacloud/hpc": "self.version",
  260. "alibabacloud/hsm": "self.version",
  261. "alibabacloud/httpdns": "self.version",
  262. "alibabacloud/idst": "self.version",
  263. "alibabacloud/imageaudit": "self.version",
  264. "alibabacloud/imageenhan": "self.version",
  265. "alibabacloud/imagerecog": "self.version",
  266. "alibabacloud/imagesearch": "self.version",
  267. "alibabacloud/imageseg": "self.version",
  268. "alibabacloud/imm": "self.version",
  269. "alibabacloud/industrybrain": "self.version",
  270. "alibabacloud/iot": "self.version",
  271. "alibabacloud/iqa": "self.version",
  272. "alibabacloud/itaas": "self.version",
  273. "alibabacloud/ivision": "self.version",
  274. "alibabacloud/ivpd": "self.version",
  275. "alibabacloud/jaq": "self.version",
  276. "alibabacloud/jarvis": "self.version",
  277. "alibabacloud/jarvispublic": "self.version",
  278. "alibabacloud/kms": "self.version",
  279. "alibabacloud/linkedmall": "self.version",
  280. "alibabacloud/linkface": "self.version",
  281. "alibabacloud/linkwan": "self.version",
  282. "alibabacloud/live": "self.version",
  283. "alibabacloud/lubancloud": "self.version",
  284. "alibabacloud/lubanruler": "self.version",
  285. "alibabacloud/market": "self.version",
  286. "alibabacloud/mopen": "self.version",
  287. "alibabacloud/mpserverless": "self.version",
  288. "alibabacloud/mts": "self.version",
  289. "alibabacloud/multimediaai": "self.version",
  290. "alibabacloud/nas": "self.version",
  291. "alibabacloud/netana": "self.version",
  292. "alibabacloud/nlp": "self.version",
  293. "alibabacloud/nlpautoml": "self.version",
  294. "alibabacloud/nlscloudmeta": "self.version",
  295. "alibabacloud/nlsfiletrans": "self.version",
  296. "alibabacloud/objectdet": "self.version",
  297. "alibabacloud/ocr": "self.version",
  298. "alibabacloud/ocs": "self.version",
  299. "alibabacloud/oms": "self.version",
  300. "alibabacloud/ons": "self.version",
  301. "alibabacloud/onsmqtt": "self.version",
  302. "alibabacloud/oos": "self.version",
  303. "alibabacloud/openanalytics": "self.version",
  304. "alibabacloud/ossadmin": "self.version",
  305. "alibabacloud/ots": "self.version",
  306. "alibabacloud/outboundbot": "self.version",
  307. "alibabacloud/petadata": "self.version",
  308. "alibabacloud/polardb": "self.version",
  309. "alibabacloud/productcatalog": "self.version",
  310. "alibabacloud/pts": "self.version",
  311. "alibabacloud/push": "self.version",
  312. "alibabacloud/pvtz": "self.version",
  313. "alibabacloud/qualitycheck": "self.version",
  314. "alibabacloud/ram": "self.version",
  315. "alibabacloud/rds": "self.version",
  316. "alibabacloud/reid": "self.version",
  317. "alibabacloud/retailcloud": "self.version",
  318. "alibabacloud/rkvstore": "self.version",
  319. "alibabacloud/ros": "self.version",
  320. "alibabacloud/rtc": "self.version",
  321. "alibabacloud/saf": "self.version",
  322. "alibabacloud/sas": "self.version",
  323. "alibabacloud/sasapi": "self.version",
  324. "alibabacloud/scdn": "self.version",
  325. "alibabacloud/schedulerx2": "self.version",
  326. "alibabacloud/skyeye": "self.version",
  327. "alibabacloud/slb": "self.version",
  328. "alibabacloud/smartag": "self.version",
  329. "alibabacloud/smc": "self.version",
  330. "alibabacloud/sms": "self.version",
  331. "alibabacloud/smsintl": "self.version",
  332. "alibabacloud/snsuapi": "self.version",
  333. "alibabacloud/sts": "self.version",
  334. "alibabacloud/taginner": "self.version",
  335. "alibabacloud/tesladam": "self.version",
  336. "alibabacloud/teslamaxcompute": "self.version",
  337. "alibabacloud/teslastream": "self.version",
  338. "alibabacloud/ubsms": "self.version",
  339. "alibabacloud/ubsmsinner": "self.version",
  340. "alibabacloud/uis": "self.version",
  341. "alibabacloud/unimkt": "self.version",
  342. "alibabacloud/visionai": "self.version",
  343. "alibabacloud/vod": "self.version",
  344. "alibabacloud/voicenavigator": "self.version",
  345. "alibabacloud/vpc": "self.version",
  346. "alibabacloud/vs": "self.version",
  347. "alibabacloud/wafopenapi": "self.version",
  348. "alibabacloud/welfareinner": "self.version",
  349. "alibabacloud/xspace": "self.version",
  350. "alibabacloud/xtrace": "self.version",
  351. "alibabacloud/yqbridge": "self.version",
  352. "alibabacloud/yundun": "self.version"
  353. },
  354. "require-dev": {
  355. "composer/composer": "^1.8",
  356. "league/climate": "^3.2.4",
  357. "phpunit/phpunit": "^4.8",
  358. "symfony/dotenv": "^3.4",
  359. "symfony/var-dumper": "^3.4"
  360. },
  361. "suggest": {
  362. "ext-sockets": "To use client-side monitoring"
  363. },
  364. "time": "2021-09-26T10:08:46+00:00",
  365. "type": "library",
  366. "installation-source": "dist",
  367. "autoload": {
  368. "psr-4": {
  369. "AlibabaCloud\\": "src"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "Apache-2.0"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Alibaba Cloud SDK",
  379. "email": "sdk-team@alibabacloud.com",
  380. "homepage": "http://www.alibabacloud.com"
  381. }
  382. ],
  383. "description": "Alibaba Cloud SDK for PHP - Easier to Use Alibaba Cloud in your PHP project",
  384. "homepage": "https://www.alibabacloud.com/",
  385. "keywords": [
  386. "alibaba",
  387. "alibabacloud",
  388. "aliyun",
  389. "cloud",
  390. "library",
  391. "sdk"
  392. ]
  393. },
  394. {
  395. "name": "aliyuncs/oss-sdk-php",
  396. "version": "v2.4.3",
  397. "version_normalized": "2.4.3.0",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  401. "reference": "4ccead614915ee6685bf30016afb01aabd347e46"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/4ccead614915ee6685bf30016afb01aabd347e46",
  406. "reference": "4ccead614915ee6685bf30016afb01aabd347e46",
  407. "shasum": "",
  408. "mirrors": [
  409. {
  410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  411. "preferred": true
  412. }
  413. ]
  414. },
  415. "require": {
  416. "php": ">=5.3"
  417. },
  418. "require-dev": {
  419. "phpunit/phpunit": "*",
  420. "satooshi/php-coveralls": "*"
  421. },
  422. "time": "2021-08-25T13:03:58+00:00",
  423. "type": "library",
  424. "installation-source": "dist",
  425. "autoload": {
  426. "psr-4": {
  427. "OSS\\": "src/OSS"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "MIT"
  433. ],
  434. "authors": [
  435. {
  436. "name": "Aliyuncs",
  437. "homepage": "http://www.aliyun.com"
  438. }
  439. ],
  440. "description": "Aliyun OSS SDK for PHP",
  441. "homepage": "http://www.aliyun.com/product/oss/"
  442. },
  443. {
  444. "name": "clagiordano/weblibs-configmanager",
  445. "version": "v1.5.0",
  446. "version_normalized": "1.5.0.0",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  450. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  455. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  456. "shasum": "",
  457. "mirrors": [
  458. {
  459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  460. "preferred": true
  461. }
  462. ]
  463. },
  464. "require": {
  465. "ext-json": "*",
  466. "php": ">=5.4",
  467. "symfony/yaml": "^2.8"
  468. },
  469. "require-dev": {
  470. "clagiordano/phpunit-result-printer": "^1",
  471. "php-coveralls/php-coveralls": "^1.1",
  472. "phpunit/phpunit": "^4.8"
  473. },
  474. "time": "2021-07-12T15:27:21+00:00",
  475. "type": "library",
  476. "installation-source": "dist",
  477. "autoload": {
  478. "psr-4": {
  479. "clagiordano\\weblibs\\configmanager\\": "src/"
  480. }
  481. },
  482. "notification-url": "https://packagist.org/downloads/",
  483. "license": [
  484. "LGPL-3.0-or-later"
  485. ],
  486. "authors": [
  487. {
  488. "name": "Claudio Giordano",
  489. "email": "claudio.giordano@autistici.org",
  490. "role": "Developer"
  491. }
  492. ],
  493. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  494. "keywords": [
  495. "clagiordano",
  496. "configuration",
  497. "manager",
  498. "tool",
  499. "weblibs"
  500. ]
  501. },
  502. {
  503. "name": "danielstjules/stringy",
  504. "version": "3.1.0",
  505. "version_normalized": "3.1.0.0",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/danielstjules/Stringy.git",
  509. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  514. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  515. "shasum": "",
  516. "mirrors": [
  517. {
  518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  519. "preferred": true
  520. }
  521. ]
  522. },
  523. "require": {
  524. "php": ">=5.4.0",
  525. "symfony/polyfill-mbstring": "~1.1"
  526. },
  527. "require-dev": {
  528. "phpunit/phpunit": "~4.0"
  529. },
  530. "time": "2017-06-12T01:10:27+00:00",
  531. "type": "library",
  532. "installation-source": "dist",
  533. "autoload": {
  534. "psr-4": {
  535. "Stringy\\": "src/"
  536. },
  537. "files": [
  538. "src/Create.php"
  539. ]
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Daniel St. Jules",
  548. "email": "danielst.jules@gmail.com",
  549. "homepage": "http://www.danielstjules.com"
  550. }
  551. ],
  552. "description": "A string manipulation library with multibyte support",
  553. "homepage": "https://github.com/danielstjules/Stringy",
  554. "keywords": [
  555. "UTF",
  556. "helpers",
  557. "manipulation",
  558. "methods",
  559. "multibyte",
  560. "string",
  561. "utf-8",
  562. "utility",
  563. "utils"
  564. ],
  565. "support": {
  566. "issues": "https://github.com/danielstjules/Stringy/issues",
  567. "source": "https://github.com/danielstjules/Stringy"
  568. }
  569. },
  570. {
  571. "name": "easywechat-composer/easywechat-composer",
  572. "version": "1.4.1",
  573. "version_normalized": "1.4.1.0",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/mingyoung/easywechat-composer.git",
  577. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  582. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  583. "shasum": "",
  584. "mirrors": [
  585. {
  586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  587. "preferred": true
  588. }
  589. ]
  590. },
  591. "require": {
  592. "composer-plugin-api": "^1.0 || ^2.0",
  593. "php": ">=7.0"
  594. },
  595. "require-dev": {
  596. "composer/composer": "^1.0 || ^2.0",
  597. "phpunit/phpunit": "^6.5 || ^7.0"
  598. },
  599. "time": "2021-07-05T04:03:22+00:00",
  600. "type": "composer-plugin",
  601. "extra": {
  602. "class": "EasyWeChatComposer\\Plugin"
  603. },
  604. "installation-source": "dist",
  605. "autoload": {
  606. "psr-4": {
  607. "EasyWeChatComposer\\": "src/"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "MIT"
  613. ],
  614. "authors": [
  615. {
  616. "name": "张铭阳",
  617. "email": "mingyoungcheung@gmail.com"
  618. }
  619. ],
  620. "description": "The composer plugin for EasyWeChat"
  621. },
  622. {
  623. "name": "endroid/qr-code",
  624. "version": "1.9.3",
  625. "version_normalized": "1.9.3.0",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/endroid/qr-code.git",
  629. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/endroid/qr-code/zipball/c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  634. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  635. "shasum": "",
  636. "mirrors": [
  637. {
  638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  639. "preferred": true
  640. }
  641. ]
  642. },
  643. "require": {
  644. "ext-gd": "*",
  645. "php": ">=5.4",
  646. "symfony/options-resolver": "^2.3|^3.0"
  647. },
  648. "require-dev": {
  649. "phpunit/phpunit": "^4.0|^5.0",
  650. "sensio/framework-extra-bundle": "^3.0",
  651. "symfony/browser-kit": "^2.3|^3.0",
  652. "symfony/framework-bundle": "^2.3|^3.0",
  653. "symfony/http-kernel": "^2.3|^3.0"
  654. },
  655. "time": "2017-04-08T09:13:59+00:00",
  656. "type": "library",
  657. "extra": {
  658. "branch-alias": {
  659. "dev-master": "1.x-dev"
  660. }
  661. },
  662. "installation-source": "dist",
  663. "autoload": {
  664. "psr-4": {
  665. "Endroid\\QrCode\\": "src/"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "MIT"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Jeroen van den Enden",
  675. "email": "info@endroid.nl",
  676. "homepage": "http://endroid.nl/"
  677. }
  678. ],
  679. "description": "Endroid QR Code",
  680. "homepage": "https://github.com/endroid/QrCode",
  681. "keywords": [
  682. "bundle",
  683. "code",
  684. "endroid",
  685. "qr",
  686. "qrcode",
  687. "symfony"
  688. ]
  689. },
  690. {
  691. "name": "firebase/php-jwt",
  692. "version": "v5.4.0",
  693. "version_normalized": "5.4.0.0",
  694. "source": {
  695. "type": "git",
  696. "url": "https://github.com/firebase/php-jwt.git",
  697. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  698. },
  699. "dist": {
  700. "type": "zip",
  701. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  702. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  703. "shasum": "",
  704. "mirrors": [
  705. {
  706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  707. "preferred": true
  708. }
  709. ]
  710. },
  711. "require": {
  712. "php": ">=5.3.0"
  713. },
  714. "require-dev": {
  715. "phpunit/phpunit": ">=4.8 <=9"
  716. },
  717. "suggest": {
  718. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  719. },
  720. "time": "2021-06-23T19:00:23+00:00",
  721. "type": "library",
  722. "installation-source": "dist",
  723. "autoload": {
  724. "psr-4": {
  725. "Firebase\\JWT\\": "src"
  726. }
  727. },
  728. "notification-url": "https://packagist.org/downloads/",
  729. "license": [
  730. "BSD-3-Clause"
  731. ],
  732. "authors": [
  733. {
  734. "name": "Neuman Vong",
  735. "email": "neuman+pear@twilio.com",
  736. "role": "Developer"
  737. },
  738. {
  739. "name": "Anant Narayanan",
  740. "email": "anant@php.net",
  741. "role": "Developer"
  742. }
  743. ],
  744. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  745. "homepage": "https://github.com/firebase/php-jwt",
  746. "keywords": [
  747. "jwt",
  748. "php"
  749. ]
  750. },
  751. {
  752. "name": "guzzlehttp/guzzle",
  753. "version": "7.3.0",
  754. "version_normalized": "7.3.0.0",
  755. "source": {
  756. "type": "git",
  757. "url": "https://github.com/guzzle/guzzle.git",
  758. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  759. },
  760. "dist": {
  761. "type": "zip",
  762. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  763. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  764. "shasum": "",
  765. "mirrors": [
  766. {
  767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  768. "preferred": true
  769. }
  770. ]
  771. },
  772. "require": {
  773. "ext-json": "*",
  774. "guzzlehttp/promises": "^1.4",
  775. "guzzlehttp/psr7": "^1.7 || ^2.0",
  776. "php": "^7.2.5 || ^8.0",
  777. "psr/http-client": "^1.0"
  778. },
  779. "provide": {
  780. "psr/http-client-implementation": "1.0"
  781. },
  782. "require-dev": {
  783. "bamarni/composer-bin-plugin": "^1.4.1",
  784. "ext-curl": "*",
  785. "php-http/client-integration-tests": "^3.0",
  786. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  787. "psr/log": "^1.1"
  788. },
  789. "suggest": {
  790. "ext-curl": "Required for CURL handler support",
  791. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  792. "psr/log": "Required for using the Log middleware"
  793. },
  794. "time": "2021-03-23T11:33:13+00:00",
  795. "type": "library",
  796. "extra": {
  797. "branch-alias": {
  798. "dev-master": "7.3-dev"
  799. }
  800. },
  801. "installation-source": "dist",
  802. "autoload": {
  803. "psr-4": {
  804. "GuzzleHttp\\": "src/"
  805. },
  806. "files": [
  807. "src/functions_include.php"
  808. ]
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Michael Dowling",
  817. "email": "mtdowling@gmail.com",
  818. "homepage": "https://github.com/mtdowling"
  819. },
  820. {
  821. "name": "Márk Sági-Kazár",
  822. "email": "mark.sagikazar@gmail.com",
  823. "homepage": "https://sagikazarmark.hu"
  824. }
  825. ],
  826. "description": "Guzzle is a PHP HTTP client library",
  827. "homepage": "http://guzzlephp.org/",
  828. "keywords": [
  829. "client",
  830. "curl",
  831. "framework",
  832. "http",
  833. "http client",
  834. "psr-18",
  835. "psr-7",
  836. "rest",
  837. "web service"
  838. ]
  839. },
  840. {
  841. "name": "guzzlehttp/promises",
  842. "version": "1.4.1",
  843. "version_normalized": "1.4.1.0",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/guzzle/promises.git",
  847. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  852. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  853. "shasum": "",
  854. "mirrors": [
  855. {
  856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  857. "preferred": true
  858. }
  859. ]
  860. },
  861. "require": {
  862. "php": ">=5.5"
  863. },
  864. "require-dev": {
  865. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  866. },
  867. "time": "2021-03-07T09:25:29+00:00",
  868. "type": "library",
  869. "extra": {
  870. "branch-alias": {
  871. "dev-master": "1.4-dev"
  872. }
  873. },
  874. "installation-source": "dist",
  875. "autoload": {
  876. "psr-4": {
  877. "GuzzleHttp\\Promise\\": "src/"
  878. },
  879. "files": [
  880. "src/functions_include.php"
  881. ]
  882. },
  883. "notification-url": "https://packagist.org/downloads/",
  884. "license": [
  885. "MIT"
  886. ],
  887. "authors": [
  888. {
  889. "name": "Michael Dowling",
  890. "email": "mtdowling@gmail.com",
  891. "homepage": "https://github.com/mtdowling"
  892. }
  893. ],
  894. "description": "Guzzle promises library",
  895. "keywords": [
  896. "promise"
  897. ],
  898. "support": {
  899. "issues": "https://github.com/guzzle/promises/issues",
  900. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  901. }
  902. },
  903. {
  904. "name": "guzzlehttp/psr7",
  905. "version": "2.0.0",
  906. "version_normalized": "2.0.0.0",
  907. "source": {
  908. "type": "git",
  909. "url": "https://github.com/guzzle/psr7.git",
  910. "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7"
  911. },
  912. "dist": {
  913. "type": "zip",
  914. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1dc8d9cba3897165e16d12bb13d813afb1eb3fe7",
  915. "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7",
  916. "shasum": "",
  917. "mirrors": [
  918. {
  919. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  920. "preferred": true
  921. }
  922. ]
  923. },
  924. "require": {
  925. "php": "^7.2.5 || ^8.0",
  926. "psr/http-factory": "^1.0",
  927. "psr/http-message": "^1.0",
  928. "ralouphie/getallheaders": "^3.0"
  929. },
  930. "provide": {
  931. "psr/http-factory-implementation": "1.0",
  932. "psr/http-message-implementation": "1.0"
  933. },
  934. "require-dev": {
  935. "bamarni/composer-bin-plugin": "^1.4.1",
  936. "http-interop/http-factory-tests": "^0.9",
  937. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  938. },
  939. "suggest": {
  940. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  941. },
  942. "time": "2021-06-30T20:03:07+00:00",
  943. "type": "library",
  944. "extra": {
  945. "branch-alias": {
  946. "dev-master": "2.0-dev"
  947. }
  948. },
  949. "installation-source": "dist",
  950. "autoload": {
  951. "psr-4": {
  952. "GuzzleHttp\\Psr7\\": "src/"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "authors": [
  960. {
  961. "name": "Michael Dowling",
  962. "email": "mtdowling@gmail.com",
  963. "homepage": "https://github.com/mtdowling"
  964. },
  965. {
  966. "name": "Tobias Schultze",
  967. "homepage": "https://github.com/Tobion"
  968. },
  969. {
  970. "name": "Márk Sági-Kazár",
  971. "email": "mark.sagikazar@gmail.com",
  972. "homepage": "https://sagikazarmark.hu"
  973. }
  974. ],
  975. "description": "PSR-7 message implementation that also provides common utility methods",
  976. "keywords": [
  977. "http",
  978. "message",
  979. "psr-7",
  980. "request",
  981. "response",
  982. "stream",
  983. "uri",
  984. "url"
  985. ]
  986. },
  987. {
  988. "name": "hg/apidoc",
  989. "version": "v1.1.2",
  990. "version_normalized": "1.1.2.0",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/HGthecode/thinkphp-apidoc.git",
  994. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/HGthecode/thinkphp-apidoc/zipball/4925ddf39c22f48acca702843d53bbb70a4687a4",
  999. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4",
  1000. "shasum": "",
  1001. "mirrors": [
  1002. {
  1003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1004. "preferred": true
  1005. }
  1006. ]
  1007. },
  1008. "require": {
  1009. "php": ">=5.6"
  1010. },
  1011. "time": "2021-02-20T02:40:45+00:00",
  1012. "type": "think-extend",
  1013. "extra": {
  1014. "think": {
  1015. "services": [
  1016. "hg\\apidoc\\Service"
  1017. ],
  1018. "config": {
  1019. "apidoc": "src/config.php"
  1020. }
  1021. }
  1022. },
  1023. "installation-source": "dist",
  1024. "autoload": {
  1025. "psr-4": {
  1026. "hg\\apidoc\\": "src/"
  1027. }
  1028. },
  1029. "notification-url": "https://packagist.org/downloads/",
  1030. "license": [
  1031. "MIT"
  1032. ],
  1033. "authors": [
  1034. {
  1035. "name": "hg-code",
  1036. "email": "376401263@qq.com"
  1037. }
  1038. ],
  1039. "description": "thinkphp API文档自动生成",
  1040. "keywords": [
  1041. "apidoc",
  1042. "api文档",
  1043. "php接口文档",
  1044. "thinkphp",
  1045. "thinkphp6",
  1046. "接口文档",
  1047. "注释生成",
  1048. "自动生成"
  1049. ],
  1050. "support": {
  1051. "issues": "https://github.com/HGthecode/thinkphp-apidoc/issues",
  1052. "source": "https://github.com/HGthecode/thinkphp-apidoc/tree/v1.1.2"
  1053. }
  1054. },
  1055. {
  1056. "name": "monolog/monolog",
  1057. "version": "2.3.4",
  1058. "version_normalized": "2.3.4.0",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/Seldaek/monolog.git",
  1062. "reference": "437e7a1c50044b92773b361af77620efb76fff59"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437e7a1c50044b92773b361af77620efb76fff59",
  1067. "reference": "437e7a1c50044b92773b361af77620efb76fff59",
  1068. "shasum": "",
  1069. "mirrors": [
  1070. {
  1071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1072. "preferred": true
  1073. }
  1074. ]
  1075. },
  1076. "require": {
  1077. "php": ">=7.2",
  1078. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1079. },
  1080. "provide": {
  1081. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1082. },
  1083. "require-dev": {
  1084. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1085. "doctrine/couchdb": "~1.0@dev",
  1086. "elasticsearch/elasticsearch": "^7",
  1087. "graylog2/gelf-php": "^1.4.2",
  1088. "mongodb/mongodb": "^1.8",
  1089. "php-amqplib/php-amqplib": "~2.4",
  1090. "php-console/php-console": "^3.1.3",
  1091. "phpspec/prophecy": "^1.6.1",
  1092. "phpstan/phpstan": "^0.12.91",
  1093. "phpunit/phpunit": "^8.5",
  1094. "predis/predis": "^1.1",
  1095. "rollbar/rollbar": "^1.3",
  1096. "ruflin/elastica": ">=0.90@dev",
  1097. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1098. },
  1099. "suggest": {
  1100. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1101. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1102. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1103. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1104. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1105. "ext-mbstring": "Allow to work properly with unicode symbols",
  1106. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1107. "ext-openssl": "Required to send log messages using SSL",
  1108. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1109. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1110. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1111. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1112. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1113. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1114. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1115. },
  1116. "time": "2021-09-15T11:27:21+00:00",
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-main": "2.x-dev"
  1121. }
  1122. },
  1123. "installation-source": "dist",
  1124. "autoload": {
  1125. "psr-4": {
  1126. "Monolog\\": "src/Monolog"
  1127. }
  1128. },
  1129. "notification-url": "https://packagist.org/downloads/",
  1130. "license": [
  1131. "MIT"
  1132. ],
  1133. "authors": [
  1134. {
  1135. "name": "Jordi Boggiano",
  1136. "email": "j.boggiano@seld.be",
  1137. "homepage": "https://seld.be"
  1138. }
  1139. ],
  1140. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1141. "homepage": "https://github.com/Seldaek/monolog",
  1142. "keywords": [
  1143. "log",
  1144. "logging",
  1145. "psr-3"
  1146. ]
  1147. },
  1148. {
  1149. "name": "mtdowling/jmespath.php",
  1150. "version": "2.6.1",
  1151. "version_normalized": "2.6.1.0",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/jmespath/jmespath.php.git",
  1155. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1160. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1161. "shasum": "",
  1162. "mirrors": [
  1163. {
  1164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1165. "preferred": true
  1166. }
  1167. ]
  1168. },
  1169. "require": {
  1170. "php": "^5.4 || ^7.0 || ^8.0",
  1171. "symfony/polyfill-mbstring": "^1.17"
  1172. },
  1173. "require-dev": {
  1174. "composer/xdebug-handler": "^1.4 || ^2.0",
  1175. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1176. },
  1177. "time": "2021-06-14T00:11:39+00:00",
  1178. "bin": [
  1179. "bin/jp.php"
  1180. ],
  1181. "type": "library",
  1182. "extra": {
  1183. "branch-alias": {
  1184. "dev-master": "2.6-dev"
  1185. }
  1186. },
  1187. "installation-source": "dist",
  1188. "autoload": {
  1189. "psr-4": {
  1190. "JmesPath\\": "src/"
  1191. },
  1192. "files": [
  1193. "src/JmesPath.php"
  1194. ]
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Michael Dowling",
  1203. "email": "mtdowling@gmail.com",
  1204. "homepage": "https://github.com/mtdowling"
  1205. }
  1206. ],
  1207. "description": "Declaratively specify how to extract elements from a JSON document",
  1208. "keywords": [
  1209. "json",
  1210. "jsonpath"
  1211. ]
  1212. },
  1213. {
  1214. "name": "overtrue/socialite",
  1215. "version": "2.0.24",
  1216. "version_normalized": "2.0.24.0",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/overtrue/socialite.git",
  1220. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1225. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1226. "shasum": "",
  1227. "mirrors": [
  1228. {
  1229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1230. "preferred": true
  1231. }
  1232. ]
  1233. },
  1234. "require": {
  1235. "ext-json": "*",
  1236. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  1237. "php": ">=5.6",
  1238. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  1239. },
  1240. "require-dev": {
  1241. "mockery/mockery": "~1.2",
  1242. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  1243. },
  1244. "time": "2021-05-13T16:04:48+00:00",
  1245. "type": "library",
  1246. "installation-source": "dist",
  1247. "autoload": {
  1248. "psr-4": {
  1249. "Overtrue\\Socialite\\": "src/"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "overtrue",
  1259. "email": "anzhengchao@gmail.com"
  1260. }
  1261. ],
  1262. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1263. "keywords": [
  1264. "login",
  1265. "oauth",
  1266. "qq",
  1267. "social",
  1268. "wechat",
  1269. "weibo"
  1270. ]
  1271. },
  1272. {
  1273. "name": "overtrue/wechat",
  1274. "version": "4.4.2",
  1275. "version_normalized": "4.4.2.0",
  1276. "source": {
  1277. "type": "git",
  1278. "url": "https://github.com/w7corp/easywechat.git",
  1279. "reference": "00f72fb0113ad1aa47bcf350c3dd4c3af1cd1f54"
  1280. },
  1281. "dist": {
  1282. "type": "zip",
  1283. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/00f72fb0113ad1aa47bcf350c3dd4c3af1cd1f54",
  1284. "reference": "00f72fb0113ad1aa47bcf350c3dd4c3af1cd1f54",
  1285. "shasum": "",
  1286. "mirrors": [
  1287. {
  1288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1289. "preferred": true
  1290. }
  1291. ]
  1292. },
  1293. "require": {
  1294. "easywechat-composer/easywechat-composer": "^1.1",
  1295. "ext-fileinfo": "*",
  1296. "ext-openssl": "*",
  1297. "ext-simplexml": "*",
  1298. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1299. "monolog/monolog": "^1.22 || ^2.0",
  1300. "overtrue/socialite": "~2.0",
  1301. "php": ">=7.2",
  1302. "pimple/pimple": "^3.0",
  1303. "psr/simple-cache": "^1.0",
  1304. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  1305. "symfony/event-dispatcher": "^4.3 || ^5.0",
  1306. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  1307. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  1308. },
  1309. "require-dev": {
  1310. "friendsofphp/php-cs-fixer": "^2.15",
  1311. "mikey179/vfsstream": "^1.6",
  1312. "mockery/mockery": "^1.2.3",
  1313. "phpstan/phpstan": "^0.12.0",
  1314. "phpunit/phpunit": "^7.5"
  1315. },
  1316. "time": "2021-06-30T12:54:00+00:00",
  1317. "type": "library",
  1318. "installation-source": "dist",
  1319. "autoload": {
  1320. "psr-4": {
  1321. "EasyWeChat\\": "src/"
  1322. },
  1323. "files": [
  1324. "src/Kernel/Support/Helpers.php",
  1325. "src/Kernel/Helpers.php"
  1326. ]
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "overtrue",
  1335. "email": "anzhengchao@gmail.com"
  1336. }
  1337. ],
  1338. "description": "微信SDK",
  1339. "keywords": [
  1340. "easywechat",
  1341. "sdk",
  1342. "wechat",
  1343. "weixin",
  1344. "weixin-sdk"
  1345. ]
  1346. },
  1347. {
  1348. "name": "phpoffice/phpexcel",
  1349. "version": "1.8.2",
  1350. "version_normalized": "1.8.2.0",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1354. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1359. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1360. "shasum": "",
  1361. "mirrors": [
  1362. {
  1363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1364. "preferred": true
  1365. }
  1366. ]
  1367. },
  1368. "require": {
  1369. "ext-mbstring": "*",
  1370. "ext-xml": "*",
  1371. "ext-xmlwriter": "*",
  1372. "php": "^5.2|^7.0"
  1373. },
  1374. "require-dev": {
  1375. "squizlabs/php_codesniffer": "2.*"
  1376. },
  1377. "time": "2018-11-22T23:07:24+00:00",
  1378. "type": "library",
  1379. "installation-source": "dist",
  1380. "autoload": {
  1381. "psr-0": {
  1382. "PHPExcel": "Classes/"
  1383. }
  1384. },
  1385. "notification-url": "https://packagist.org/downloads/",
  1386. "license": [
  1387. "LGPL-2.1"
  1388. ],
  1389. "authors": [
  1390. {
  1391. "name": "Maarten Balliauw",
  1392. "homepage": "http://blog.maartenballiauw.be"
  1393. },
  1394. {
  1395. "name": "Erik Tilt"
  1396. },
  1397. {
  1398. "name": "Franck Lefevre",
  1399. "homepage": "http://rootslabs.net"
  1400. },
  1401. {
  1402. "name": "Mark Baker",
  1403. "homepage": "http://markbakeruk.net"
  1404. }
  1405. ],
  1406. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1407. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1408. "keywords": [
  1409. "OpenXML",
  1410. "excel",
  1411. "php",
  1412. "spreadsheet",
  1413. "xls",
  1414. "xlsx"
  1415. ],
  1416. "abandoned": "phpoffice/phpspreadsheet"
  1417. },
  1418. {
  1419. "name": "pimple/pimple",
  1420. "version": "v3.4.0",
  1421. "version_normalized": "3.4.0.0",
  1422. "source": {
  1423. "type": "git",
  1424. "url": "https://github.com/silexphp/Pimple.git",
  1425. "reference": "86406047271859ffc13424a048541f4531f53601"
  1426. },
  1427. "dist": {
  1428. "type": "zip",
  1429. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  1430. "reference": "86406047271859ffc13424a048541f4531f53601",
  1431. "shasum": "",
  1432. "mirrors": [
  1433. {
  1434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1435. "preferred": true
  1436. }
  1437. ]
  1438. },
  1439. "require": {
  1440. "php": ">=7.2.5",
  1441. "psr/container": "^1.1"
  1442. },
  1443. "require-dev": {
  1444. "symfony/phpunit-bridge": "^5.0"
  1445. },
  1446. "time": "2021-03-06T08:28:00+00:00",
  1447. "type": "library",
  1448. "extra": {
  1449. "branch-alias": {
  1450. "dev-master": "3.4.x-dev"
  1451. }
  1452. },
  1453. "installation-source": "dist",
  1454. "autoload": {
  1455. "psr-0": {
  1456. "Pimple": "src/"
  1457. }
  1458. },
  1459. "notification-url": "https://packagist.org/downloads/",
  1460. "license": [
  1461. "MIT"
  1462. ],
  1463. "authors": [
  1464. {
  1465. "name": "Fabien Potencier",
  1466. "email": "fabien@symfony.com"
  1467. }
  1468. ],
  1469. "description": "Pimple, a simple Dependency Injection Container",
  1470. "homepage": "https://pimple.symfony.com",
  1471. "keywords": [
  1472. "container",
  1473. "dependency injection"
  1474. ],
  1475. "support": {
  1476. "source": "https://github.com/silexphp/Pimple/tree/v3.4.0"
  1477. }
  1478. },
  1479. {
  1480. "name": "psr/cache",
  1481. "version": "1.0.1",
  1482. "version_normalized": "1.0.1.0",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/php-fig/cache.git",
  1486. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1491. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1492. "shasum": "",
  1493. "mirrors": [
  1494. {
  1495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1496. "preferred": true
  1497. }
  1498. ]
  1499. },
  1500. "require": {
  1501. "php": ">=5.3.0"
  1502. },
  1503. "time": "2016-08-06T20:24:11+00:00",
  1504. "type": "library",
  1505. "extra": {
  1506. "branch-alias": {
  1507. "dev-master": "1.0.x-dev"
  1508. }
  1509. },
  1510. "installation-source": "dist",
  1511. "autoload": {
  1512. "psr-4": {
  1513. "Psr\\Cache\\": "src/"
  1514. }
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "MIT"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "PHP-FIG",
  1523. "homepage": "http://www.php-fig.org/"
  1524. }
  1525. ],
  1526. "description": "Common interface for caching libraries",
  1527. "keywords": [
  1528. "cache",
  1529. "psr",
  1530. "psr-6"
  1531. ],
  1532. "support": {
  1533. "source": "https://github.com/php-fig/cache/tree/master"
  1534. }
  1535. },
  1536. {
  1537. "name": "psr/container",
  1538. "version": "1.1.1",
  1539. "version_normalized": "1.1.1.0",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/php-fig/container.git",
  1543. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1548. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1549. "shasum": "",
  1550. "mirrors": [
  1551. {
  1552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1553. "preferred": true
  1554. }
  1555. ]
  1556. },
  1557. "require": {
  1558. "php": ">=7.2.0"
  1559. },
  1560. "time": "2021-03-05T17:36:06+00:00",
  1561. "type": "library",
  1562. "installation-source": "dist",
  1563. "autoload": {
  1564. "psr-4": {
  1565. "Psr\\Container\\": "src/"
  1566. }
  1567. },
  1568. "notification-url": "https://packagist.org/downloads/",
  1569. "license": [
  1570. "MIT"
  1571. ],
  1572. "authors": [
  1573. {
  1574. "name": "PHP-FIG",
  1575. "homepage": "https://www.php-fig.org/"
  1576. }
  1577. ],
  1578. "description": "Common Container Interface (PHP FIG PSR-11)",
  1579. "homepage": "https://github.com/php-fig/container",
  1580. "keywords": [
  1581. "PSR-11",
  1582. "container",
  1583. "container-interface",
  1584. "container-interop",
  1585. "psr"
  1586. ],
  1587. "support": {
  1588. "issues": "https://github.com/php-fig/container/issues",
  1589. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1590. }
  1591. },
  1592. {
  1593. "name": "psr/event-dispatcher",
  1594. "version": "1.0.0",
  1595. "version_normalized": "1.0.0.0",
  1596. "source": {
  1597. "type": "git",
  1598. "url": "https://github.com/php-fig/event-dispatcher.git",
  1599. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1600. },
  1601. "dist": {
  1602. "type": "zip",
  1603. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1604. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1605. "shasum": "",
  1606. "mirrors": [
  1607. {
  1608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1609. "preferred": true
  1610. }
  1611. ]
  1612. },
  1613. "require": {
  1614. "php": ">=7.2.0"
  1615. },
  1616. "time": "2019-01-08T18:20:26+00:00",
  1617. "type": "library",
  1618. "extra": {
  1619. "branch-alias": {
  1620. "dev-master": "1.0.x-dev"
  1621. }
  1622. },
  1623. "installation-source": "dist",
  1624. "autoload": {
  1625. "psr-4": {
  1626. "Psr\\EventDispatcher\\": "src/"
  1627. }
  1628. },
  1629. "notification-url": "https://packagist.org/downloads/",
  1630. "license": [
  1631. "MIT"
  1632. ],
  1633. "authors": [
  1634. {
  1635. "name": "PHP-FIG",
  1636. "homepage": "http://www.php-fig.org/"
  1637. }
  1638. ],
  1639. "description": "Standard interfaces for event handling.",
  1640. "keywords": [
  1641. "events",
  1642. "psr",
  1643. "psr-14"
  1644. ],
  1645. "support": {
  1646. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1647. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1648. }
  1649. },
  1650. {
  1651. "name": "psr/http-client",
  1652. "version": "1.0.1",
  1653. "version_normalized": "1.0.1.0",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/php-fig/http-client.git",
  1657. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1662. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1663. "shasum": "",
  1664. "mirrors": [
  1665. {
  1666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1667. "preferred": true
  1668. }
  1669. ]
  1670. },
  1671. "require": {
  1672. "php": "^7.0 || ^8.0",
  1673. "psr/http-message": "^1.0"
  1674. },
  1675. "time": "2020-06-29T06:28:15+00:00",
  1676. "type": "library",
  1677. "extra": {
  1678. "branch-alias": {
  1679. "dev-master": "1.0.x-dev"
  1680. }
  1681. },
  1682. "installation-source": "dist",
  1683. "autoload": {
  1684. "psr-4": {
  1685. "Psr\\Http\\Client\\": "src/"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "PHP-FIG",
  1695. "homepage": "http://www.php-fig.org/"
  1696. }
  1697. ],
  1698. "description": "Common interface for HTTP clients",
  1699. "homepage": "https://github.com/php-fig/http-client",
  1700. "keywords": [
  1701. "http",
  1702. "http-client",
  1703. "psr",
  1704. "psr-18"
  1705. ]
  1706. },
  1707. {
  1708. "name": "psr/http-factory",
  1709. "version": "1.0.1",
  1710. "version_normalized": "1.0.1.0",
  1711. "source": {
  1712. "type": "git",
  1713. "url": "https://github.com/php-fig/http-factory.git",
  1714. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1715. },
  1716. "dist": {
  1717. "type": "zip",
  1718. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1719. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1720. "shasum": "",
  1721. "mirrors": [
  1722. {
  1723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1724. "preferred": true
  1725. }
  1726. ]
  1727. },
  1728. "require": {
  1729. "php": ">=7.0.0",
  1730. "psr/http-message": "^1.0"
  1731. },
  1732. "time": "2019-04-30T12:38:16+00:00",
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-master": "1.0.x-dev"
  1737. }
  1738. },
  1739. "installation-source": "dist",
  1740. "autoload": {
  1741. "psr-4": {
  1742. "Psr\\Http\\Message\\": "src/"
  1743. }
  1744. },
  1745. "notification-url": "https://packagist.org/downloads/",
  1746. "license": [
  1747. "MIT"
  1748. ],
  1749. "authors": [
  1750. {
  1751. "name": "PHP-FIG",
  1752. "homepage": "http://www.php-fig.org/"
  1753. }
  1754. ],
  1755. "description": "Common interfaces for PSR-7 HTTP message factories",
  1756. "keywords": [
  1757. "factory",
  1758. "http",
  1759. "message",
  1760. "psr",
  1761. "psr-17",
  1762. "psr-7",
  1763. "request",
  1764. "response"
  1765. ]
  1766. },
  1767. {
  1768. "name": "psr/http-message",
  1769. "version": "1.0.1",
  1770. "version_normalized": "1.0.1.0",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/php-fig/http-message.git",
  1774. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1779. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1780. "shasum": "",
  1781. "mirrors": [
  1782. {
  1783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1784. "preferred": true
  1785. }
  1786. ]
  1787. },
  1788. "require": {
  1789. "php": ">=5.3.0"
  1790. },
  1791. "time": "2016-08-06T14:39:51+00:00",
  1792. "type": "library",
  1793. "extra": {
  1794. "branch-alias": {
  1795. "dev-master": "1.0.x-dev"
  1796. }
  1797. },
  1798. "installation-source": "dist",
  1799. "autoload": {
  1800. "psr-4": {
  1801. "Psr\\Http\\Message\\": "src/"
  1802. }
  1803. },
  1804. "notification-url": "https://packagist.org/downloads/",
  1805. "license": [
  1806. "MIT"
  1807. ],
  1808. "authors": [
  1809. {
  1810. "name": "PHP-FIG",
  1811. "homepage": "http://www.php-fig.org/"
  1812. }
  1813. ],
  1814. "description": "Common interface for HTTP messages",
  1815. "homepage": "https://github.com/php-fig/http-message",
  1816. "keywords": [
  1817. "http",
  1818. "http-message",
  1819. "psr",
  1820. "psr-7",
  1821. "request",
  1822. "response"
  1823. ],
  1824. "support": {
  1825. "source": "https://github.com/php-fig/http-message/tree/master"
  1826. }
  1827. },
  1828. {
  1829. "name": "psr/log",
  1830. "version": "1.1.4",
  1831. "version_normalized": "1.1.4.0",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/php-fig/log.git",
  1835. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1840. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1841. "shasum": "",
  1842. "mirrors": [
  1843. {
  1844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1845. "preferred": true
  1846. }
  1847. ]
  1848. },
  1849. "require": {
  1850. "php": ">=5.3.0"
  1851. },
  1852. "time": "2021-05-03T11:20:27+00:00",
  1853. "type": "library",
  1854. "extra": {
  1855. "branch-alias": {
  1856. "dev-master": "1.1.x-dev"
  1857. }
  1858. },
  1859. "installation-source": "dist",
  1860. "autoload": {
  1861. "psr-4": {
  1862. "Psr\\Log\\": "Psr/Log/"
  1863. }
  1864. },
  1865. "notification-url": "https://packagist.org/downloads/",
  1866. "license": [
  1867. "MIT"
  1868. ],
  1869. "authors": [
  1870. {
  1871. "name": "PHP-FIG",
  1872. "homepage": "https://www.php-fig.org/"
  1873. }
  1874. ],
  1875. "description": "Common interface for logging libraries",
  1876. "homepage": "https://github.com/php-fig/log",
  1877. "keywords": [
  1878. "log",
  1879. "psr",
  1880. "psr-3"
  1881. ],
  1882. "support": {
  1883. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1884. }
  1885. },
  1886. {
  1887. "name": "psr/simple-cache",
  1888. "version": "1.0.1",
  1889. "version_normalized": "1.0.1.0",
  1890. "source": {
  1891. "type": "git",
  1892. "url": "https://github.com/php-fig/simple-cache.git",
  1893. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1894. },
  1895. "dist": {
  1896. "type": "zip",
  1897. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1898. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1899. "shasum": "",
  1900. "mirrors": [
  1901. {
  1902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1903. "preferred": true
  1904. }
  1905. ]
  1906. },
  1907. "require": {
  1908. "php": ">=5.3.0"
  1909. },
  1910. "time": "2017-10-23T01:57:42+00:00",
  1911. "type": "library",
  1912. "extra": {
  1913. "branch-alias": {
  1914. "dev-master": "1.0.x-dev"
  1915. }
  1916. },
  1917. "installation-source": "dist",
  1918. "autoload": {
  1919. "psr-4": {
  1920. "Psr\\SimpleCache\\": "src/"
  1921. }
  1922. },
  1923. "notification-url": "https://packagist.org/downloads/",
  1924. "license": [
  1925. "MIT"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "PHP-FIG",
  1930. "homepage": "http://www.php-fig.org/"
  1931. }
  1932. ],
  1933. "description": "Common interfaces for simple caching",
  1934. "keywords": [
  1935. "cache",
  1936. "caching",
  1937. "psr",
  1938. "psr-16",
  1939. "simple-cache"
  1940. ],
  1941. "support": {
  1942. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1943. }
  1944. },
  1945. {
  1946. "name": "qiniu/php-sdk",
  1947. "version": "v7.4.1",
  1948. "version_normalized": "7.4.1.0",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/qiniu/php-sdk.git",
  1952. "reference": "10c7ead8357743b4b987a335c14964fb07700d57"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/10c7ead8357743b4b987a335c14964fb07700d57",
  1957. "reference": "10c7ead8357743b4b987a335c14964fb07700d57",
  1958. "shasum": "",
  1959. "mirrors": [
  1960. {
  1961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1962. "preferred": true
  1963. }
  1964. ]
  1965. },
  1966. "require": {
  1967. "php": ">=5.3.3"
  1968. },
  1969. "require-dev": {
  1970. "paragonie/random_compat": ">=2",
  1971. "phpunit/phpunit": "~4.0",
  1972. "squizlabs/php_codesniffer": "~3.6"
  1973. },
  1974. "time": "2021-09-24T09:39:16+00:00",
  1975. "type": "library",
  1976. "installation-source": "dist",
  1977. "autoload": {
  1978. "psr-4": {
  1979. "Qiniu\\": "src/Qiniu"
  1980. },
  1981. "files": [
  1982. "src/Qiniu/functions.php"
  1983. ]
  1984. },
  1985. "notification-url": "https://packagist.org/downloads/",
  1986. "license": [
  1987. "MIT"
  1988. ],
  1989. "authors": [
  1990. {
  1991. "name": "Qiniu",
  1992. "email": "sdk@qiniu.com",
  1993. "homepage": "http://www.qiniu.com"
  1994. }
  1995. ],
  1996. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  1997. "homepage": "http://developer.qiniu.com/",
  1998. "keywords": [
  1999. "cloud",
  2000. "qiniu",
  2001. "sdk",
  2002. "storage"
  2003. ]
  2004. },
  2005. {
  2006. "name": "ralouphie/getallheaders",
  2007. "version": "3.0.3",
  2008. "version_normalized": "3.0.3.0",
  2009. "source": {
  2010. "type": "git",
  2011. "url": "https://github.com/ralouphie/getallheaders.git",
  2012. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2013. },
  2014. "dist": {
  2015. "type": "zip",
  2016. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2017. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2018. "shasum": "",
  2019. "mirrors": [
  2020. {
  2021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2022. "preferred": true
  2023. }
  2024. ]
  2025. },
  2026. "require": {
  2027. "php": ">=5.6"
  2028. },
  2029. "require-dev": {
  2030. "php-coveralls/php-coveralls": "^2.1",
  2031. "phpunit/phpunit": "^5 || ^6.5"
  2032. },
  2033. "time": "2019-03-08T08:55:37+00:00",
  2034. "type": "library",
  2035. "installation-source": "dist",
  2036. "autoload": {
  2037. "files": [
  2038. "src/getallheaders.php"
  2039. ]
  2040. },
  2041. "notification-url": "https://packagist.org/downloads/",
  2042. "license": [
  2043. "MIT"
  2044. ],
  2045. "authors": [
  2046. {
  2047. "name": "Ralph Khattar",
  2048. "email": "ralph.khattar@gmail.com"
  2049. }
  2050. ],
  2051. "description": "A polyfill for getallheaders.",
  2052. "support": {
  2053. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2054. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2055. }
  2056. },
  2057. {
  2058. "name": "symfony/cache",
  2059. "version": "v5.3.8",
  2060. "version_normalized": "5.3.8.0",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/symfony/cache.git",
  2064. "reference": "945bcebfef0aeef105de61843dd14105633ae38f"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/symfony/cache/zipball/945bcebfef0aeef105de61843dd14105633ae38f",
  2069. "reference": "945bcebfef0aeef105de61843dd14105633ae38f",
  2070. "shasum": "",
  2071. "mirrors": [
  2072. {
  2073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2074. "preferred": true
  2075. }
  2076. ]
  2077. },
  2078. "require": {
  2079. "php": ">=7.2.5",
  2080. "psr/cache": "^1.0|^2.0",
  2081. "psr/log": "^1.1|^2|^3",
  2082. "symfony/cache-contracts": "^1.1.7|^2",
  2083. "symfony/deprecation-contracts": "^2.1",
  2084. "symfony/polyfill-php73": "^1.9",
  2085. "symfony/polyfill-php80": "^1.16",
  2086. "symfony/service-contracts": "^1.1|^2",
  2087. "symfony/var-exporter": "^4.4|^5.0"
  2088. },
  2089. "conflict": {
  2090. "doctrine/dbal": "<2.10",
  2091. "symfony/dependency-injection": "<4.4",
  2092. "symfony/http-kernel": "<4.4",
  2093. "symfony/var-dumper": "<4.4"
  2094. },
  2095. "provide": {
  2096. "psr/cache-implementation": "1.0|2.0",
  2097. "psr/simple-cache-implementation": "1.0",
  2098. "symfony/cache-implementation": "1.0|2.0"
  2099. },
  2100. "require-dev": {
  2101. "cache/integration-tests": "dev-master",
  2102. "doctrine/cache": "^1.6|^2.0",
  2103. "doctrine/dbal": "^2.10|^3.0",
  2104. "predis/predis": "^1.1",
  2105. "psr/simple-cache": "^1.0",
  2106. "symfony/config": "^4.4|^5.0",
  2107. "symfony/dependency-injection": "^4.4|^5.0",
  2108. "symfony/filesystem": "^4.4|^5.0",
  2109. "symfony/http-kernel": "^4.4|^5.0",
  2110. "symfony/messenger": "^4.4|^5.0",
  2111. "symfony/var-dumper": "^4.4|^5.0"
  2112. },
  2113. "time": "2021-09-26T18:29:18+00:00",
  2114. "type": "library",
  2115. "installation-source": "dist",
  2116. "autoload": {
  2117. "psr-4": {
  2118. "Symfony\\Component\\Cache\\": ""
  2119. },
  2120. "exclude-from-classmap": [
  2121. "/Tests/"
  2122. ]
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "authors": [
  2129. {
  2130. "name": "Nicolas Grekas",
  2131. "email": "p@tchwork.com"
  2132. },
  2133. {
  2134. "name": "Symfony Community",
  2135. "homepage": "https://symfony.com/contributors"
  2136. }
  2137. ],
  2138. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2139. "homepage": "https://symfony.com",
  2140. "keywords": [
  2141. "caching",
  2142. "psr6"
  2143. ]
  2144. },
  2145. {
  2146. "name": "symfony/cache-contracts",
  2147. "version": "v2.4.0",
  2148. "version_normalized": "2.4.0.0",
  2149. "source": {
  2150. "type": "git",
  2151. "url": "https://github.com/symfony/cache-contracts.git",
  2152. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d"
  2153. },
  2154. "dist": {
  2155. "type": "zip",
  2156. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d",
  2157. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d",
  2158. "shasum": "",
  2159. "mirrors": [
  2160. {
  2161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2162. "preferred": true
  2163. }
  2164. ]
  2165. },
  2166. "require": {
  2167. "php": ">=7.2.5",
  2168. "psr/cache": "^1.0|^2.0|^3.0"
  2169. },
  2170. "suggest": {
  2171. "symfony/cache-implementation": ""
  2172. },
  2173. "time": "2021-03-23T23:28:01+00:00",
  2174. "type": "library",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-main": "2.4-dev"
  2178. },
  2179. "thanks": {
  2180. "name": "symfony/contracts",
  2181. "url": "https://github.com/symfony/contracts"
  2182. }
  2183. },
  2184. "installation-source": "dist",
  2185. "autoload": {
  2186. "psr-4": {
  2187. "Symfony\\Contracts\\Cache\\": ""
  2188. }
  2189. },
  2190. "notification-url": "https://packagist.org/downloads/",
  2191. "license": [
  2192. "MIT"
  2193. ],
  2194. "authors": [
  2195. {
  2196. "name": "Nicolas Grekas",
  2197. "email": "p@tchwork.com"
  2198. },
  2199. {
  2200. "name": "Symfony Community",
  2201. "homepage": "https://symfony.com/contributors"
  2202. }
  2203. ],
  2204. "description": "Generic abstractions related to caching",
  2205. "homepage": "https://symfony.com",
  2206. "keywords": [
  2207. "abstractions",
  2208. "contracts",
  2209. "decoupling",
  2210. "interfaces",
  2211. "interoperability",
  2212. "standards"
  2213. ],
  2214. "support": {
  2215. "source": "https://github.com/symfony/cache-contracts/tree/v2.4.0"
  2216. }
  2217. },
  2218. {
  2219. "name": "symfony/deprecation-contracts",
  2220. "version": "v2.4.0",
  2221. "version_normalized": "2.4.0.0",
  2222. "source": {
  2223. "type": "git",
  2224. "url": "https://github.com/symfony/deprecation-contracts.git",
  2225. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  2226. },
  2227. "dist": {
  2228. "type": "zip",
  2229. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  2230. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  2231. "shasum": "",
  2232. "mirrors": [
  2233. {
  2234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2235. "preferred": true
  2236. }
  2237. ]
  2238. },
  2239. "require": {
  2240. "php": ">=7.1"
  2241. },
  2242. "time": "2021-03-23T23:28:01+00:00",
  2243. "type": "library",
  2244. "extra": {
  2245. "branch-alias": {
  2246. "dev-main": "2.4-dev"
  2247. },
  2248. "thanks": {
  2249. "name": "symfony/contracts",
  2250. "url": "https://github.com/symfony/contracts"
  2251. }
  2252. },
  2253. "installation-source": "dist",
  2254. "autoload": {
  2255. "files": [
  2256. "function.php"
  2257. ]
  2258. },
  2259. "notification-url": "https://packagist.org/downloads/",
  2260. "license": [
  2261. "MIT"
  2262. ],
  2263. "authors": [
  2264. {
  2265. "name": "Nicolas Grekas",
  2266. "email": "p@tchwork.com"
  2267. },
  2268. {
  2269. "name": "Symfony Community",
  2270. "homepage": "https://symfony.com/contributors"
  2271. }
  2272. ],
  2273. "description": "A generic function and convention to trigger deprecation notices",
  2274. "homepage": "https://symfony.com",
  2275. "support": {
  2276. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  2277. }
  2278. },
  2279. {
  2280. "name": "symfony/event-dispatcher",
  2281. "version": "v5.3.7",
  2282. "version_normalized": "5.3.7.0",
  2283. "source": {
  2284. "type": "git",
  2285. "url": "https://github.com/symfony/event-dispatcher.git",
  2286. "reference": "ce7b20d69c66a20939d8952b617506a44d102130"
  2287. },
  2288. "dist": {
  2289. "type": "zip",
  2290. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ce7b20d69c66a20939d8952b617506a44d102130",
  2291. "reference": "ce7b20d69c66a20939d8952b617506a44d102130",
  2292. "shasum": "",
  2293. "mirrors": [
  2294. {
  2295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2296. "preferred": true
  2297. }
  2298. ]
  2299. },
  2300. "require": {
  2301. "php": ">=7.2.5",
  2302. "symfony/deprecation-contracts": "^2.1",
  2303. "symfony/event-dispatcher-contracts": "^2",
  2304. "symfony/polyfill-php80": "^1.16"
  2305. },
  2306. "conflict": {
  2307. "symfony/dependency-injection": "<4.4"
  2308. },
  2309. "provide": {
  2310. "psr/event-dispatcher-implementation": "1.0",
  2311. "symfony/event-dispatcher-implementation": "2.0"
  2312. },
  2313. "require-dev": {
  2314. "psr/log": "^1|^2|^3",
  2315. "symfony/config": "^4.4|^5.0",
  2316. "symfony/dependency-injection": "^4.4|^5.0",
  2317. "symfony/error-handler": "^4.4|^5.0",
  2318. "symfony/expression-language": "^4.4|^5.0",
  2319. "symfony/http-foundation": "^4.4|^5.0",
  2320. "symfony/service-contracts": "^1.1|^2",
  2321. "symfony/stopwatch": "^4.4|^5.0"
  2322. },
  2323. "suggest": {
  2324. "symfony/dependency-injection": "",
  2325. "symfony/http-kernel": ""
  2326. },
  2327. "time": "2021-08-04T21:20:46+00:00",
  2328. "type": "library",
  2329. "installation-source": "dist",
  2330. "autoload": {
  2331. "psr-4": {
  2332. "Symfony\\Component\\EventDispatcher\\": ""
  2333. },
  2334. "exclude-from-classmap": [
  2335. "/Tests/"
  2336. ]
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "Fabien Potencier",
  2345. "email": "fabien@symfony.com"
  2346. },
  2347. {
  2348. "name": "Symfony Community",
  2349. "homepage": "https://symfony.com/contributors"
  2350. }
  2351. ],
  2352. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2353. "homepage": "https://symfony.com"
  2354. },
  2355. {
  2356. "name": "symfony/event-dispatcher-contracts",
  2357. "version": "v2.4.0",
  2358. "version_normalized": "2.4.0.0",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2362. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  2367. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  2368. "shasum": "",
  2369. "mirrors": [
  2370. {
  2371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2372. "preferred": true
  2373. }
  2374. ]
  2375. },
  2376. "require": {
  2377. "php": ">=7.2.5",
  2378. "psr/event-dispatcher": "^1"
  2379. },
  2380. "suggest": {
  2381. "symfony/event-dispatcher-implementation": ""
  2382. },
  2383. "time": "2021-03-23T23:28:01+00:00",
  2384. "type": "library",
  2385. "extra": {
  2386. "branch-alias": {
  2387. "dev-main": "2.4-dev"
  2388. },
  2389. "thanks": {
  2390. "name": "symfony/contracts",
  2391. "url": "https://github.com/symfony/contracts"
  2392. }
  2393. },
  2394. "installation-source": "dist",
  2395. "autoload": {
  2396. "psr-4": {
  2397. "Symfony\\Contracts\\EventDispatcher\\": ""
  2398. }
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "Nicolas Grekas",
  2407. "email": "p@tchwork.com"
  2408. },
  2409. {
  2410. "name": "Symfony Community",
  2411. "homepage": "https://symfony.com/contributors"
  2412. }
  2413. ],
  2414. "description": "Generic abstractions related to dispatching event",
  2415. "homepage": "https://symfony.com",
  2416. "keywords": [
  2417. "abstractions",
  2418. "contracts",
  2419. "decoupling",
  2420. "interfaces",
  2421. "interoperability",
  2422. "standards"
  2423. ],
  2424. "support": {
  2425. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  2426. }
  2427. },
  2428. {
  2429. "name": "symfony/http-foundation",
  2430. "version": "v5.3.7",
  2431. "version_normalized": "5.3.7.0",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/symfony/http-foundation.git",
  2435. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  2440. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  2441. "shasum": "",
  2442. "mirrors": [
  2443. {
  2444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2445. "preferred": true
  2446. }
  2447. ]
  2448. },
  2449. "require": {
  2450. "php": ">=7.2.5",
  2451. "symfony/deprecation-contracts": "^2.1",
  2452. "symfony/polyfill-mbstring": "~1.1",
  2453. "symfony/polyfill-php80": "^1.16"
  2454. },
  2455. "require-dev": {
  2456. "predis/predis": "~1.0",
  2457. "symfony/cache": "^4.4|^5.0",
  2458. "symfony/expression-language": "^4.4|^5.0",
  2459. "symfony/mime": "^4.4|^5.0"
  2460. },
  2461. "suggest": {
  2462. "symfony/mime": "To use the file extension guesser"
  2463. },
  2464. "time": "2021-08-27T11:20:35+00:00",
  2465. "type": "library",
  2466. "installation-source": "dist",
  2467. "autoload": {
  2468. "psr-4": {
  2469. "Symfony\\Component\\HttpFoundation\\": ""
  2470. },
  2471. "exclude-from-classmap": [
  2472. "/Tests/"
  2473. ]
  2474. },
  2475. "notification-url": "https://packagist.org/downloads/",
  2476. "license": [
  2477. "MIT"
  2478. ],
  2479. "authors": [
  2480. {
  2481. "name": "Fabien Potencier",
  2482. "email": "fabien@symfony.com"
  2483. },
  2484. {
  2485. "name": "Symfony Community",
  2486. "homepage": "https://symfony.com/contributors"
  2487. }
  2488. ],
  2489. "description": "Defines an object-oriented layer for the HTTP specification",
  2490. "homepage": "https://symfony.com"
  2491. },
  2492. {
  2493. "name": "symfony/options-resolver",
  2494. "version": "v3.4.47",
  2495. "version_normalized": "3.4.47.0",
  2496. "source": {
  2497. "type": "git",
  2498. "url": "https://github.com/symfony/options-resolver.git",
  2499. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744"
  2500. },
  2501. "dist": {
  2502. "type": "zip",
  2503. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  2504. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  2505. "shasum": "",
  2506. "mirrors": [
  2507. {
  2508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2509. "preferred": true
  2510. }
  2511. ]
  2512. },
  2513. "require": {
  2514. "php": "^5.5.9|>=7.0.8"
  2515. },
  2516. "time": "2020-10-24T10:57:07+00:00",
  2517. "type": "library",
  2518. "installation-source": "dist",
  2519. "autoload": {
  2520. "psr-4": {
  2521. "Symfony\\Component\\OptionsResolver\\": ""
  2522. },
  2523. "exclude-from-classmap": [
  2524. "/Tests/"
  2525. ]
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Fabien Potencier",
  2534. "email": "fabien@symfony.com"
  2535. },
  2536. {
  2537. "name": "Symfony Community",
  2538. "homepage": "https://symfony.com/contributors"
  2539. }
  2540. ],
  2541. "description": "Symfony OptionsResolver Component",
  2542. "homepage": "https://symfony.com",
  2543. "keywords": [
  2544. "config",
  2545. "configuration",
  2546. "options"
  2547. ],
  2548. "support": {
  2549. "source": "https://github.com/symfony/options-resolver/tree/v3.4.47"
  2550. }
  2551. },
  2552. {
  2553. "name": "symfony/polyfill-ctype",
  2554. "version": "v1.23.0",
  2555. "version_normalized": "1.23.0.0",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/symfony/polyfill-ctype.git",
  2559. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  2564. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  2565. "shasum": "",
  2566. "mirrors": [
  2567. {
  2568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2569. "preferred": true
  2570. }
  2571. ]
  2572. },
  2573. "require": {
  2574. "php": ">=7.1"
  2575. },
  2576. "suggest": {
  2577. "ext-ctype": "For best performance"
  2578. },
  2579. "time": "2021-02-19T12:13:01+00:00",
  2580. "type": "library",
  2581. "extra": {
  2582. "branch-alias": {
  2583. "dev-main": "1.23-dev"
  2584. },
  2585. "thanks": {
  2586. "name": "symfony/polyfill",
  2587. "url": "https://github.com/symfony/polyfill"
  2588. }
  2589. },
  2590. "installation-source": "dist",
  2591. "autoload": {
  2592. "psr-4": {
  2593. "Symfony\\Polyfill\\Ctype\\": ""
  2594. },
  2595. "files": [
  2596. "bootstrap.php"
  2597. ]
  2598. },
  2599. "notification-url": "https://packagist.org/downloads/",
  2600. "license": [
  2601. "MIT"
  2602. ],
  2603. "authors": [
  2604. {
  2605. "name": "Gert de Pagter",
  2606. "email": "BackEndTea@gmail.com"
  2607. },
  2608. {
  2609. "name": "Symfony Community",
  2610. "homepage": "https://symfony.com/contributors"
  2611. }
  2612. ],
  2613. "description": "Symfony polyfill for ctype functions",
  2614. "homepage": "https://symfony.com",
  2615. "keywords": [
  2616. "compatibility",
  2617. "ctype",
  2618. "polyfill",
  2619. "portable"
  2620. ]
  2621. },
  2622. {
  2623. "name": "symfony/polyfill-mbstring",
  2624. "version": "v1.23.1",
  2625. "version_normalized": "1.23.1.0",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2629. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  2634. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  2635. "shasum": "",
  2636. "mirrors": [
  2637. {
  2638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2639. "preferred": true
  2640. }
  2641. ]
  2642. },
  2643. "require": {
  2644. "php": ">=7.1"
  2645. },
  2646. "suggest": {
  2647. "ext-mbstring": "For best performance"
  2648. },
  2649. "time": "2021-05-27T12:26:48+00:00",
  2650. "type": "library",
  2651. "extra": {
  2652. "branch-alias": {
  2653. "dev-main": "1.23-dev"
  2654. },
  2655. "thanks": {
  2656. "name": "symfony/polyfill",
  2657. "url": "https://github.com/symfony/polyfill"
  2658. }
  2659. },
  2660. "installation-source": "dist",
  2661. "autoload": {
  2662. "psr-4": {
  2663. "Symfony\\Polyfill\\Mbstring\\": ""
  2664. },
  2665. "files": [
  2666. "bootstrap.php"
  2667. ]
  2668. },
  2669. "notification-url": "https://packagist.org/downloads/",
  2670. "license": [
  2671. "MIT"
  2672. ],
  2673. "authors": [
  2674. {
  2675. "name": "Nicolas Grekas",
  2676. "email": "p@tchwork.com"
  2677. },
  2678. {
  2679. "name": "Symfony Community",
  2680. "homepage": "https://symfony.com/contributors"
  2681. }
  2682. ],
  2683. "description": "Symfony polyfill for the Mbstring extension",
  2684. "homepage": "https://symfony.com",
  2685. "keywords": [
  2686. "compatibility",
  2687. "mbstring",
  2688. "polyfill",
  2689. "portable",
  2690. "shim"
  2691. ]
  2692. },
  2693. {
  2694. "name": "symfony/polyfill-php73",
  2695. "version": "v1.23.0",
  2696. "version_normalized": "1.23.0.0",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/symfony/polyfill-php73.git",
  2700. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  2705. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  2706. "shasum": "",
  2707. "mirrors": [
  2708. {
  2709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2710. "preferred": true
  2711. }
  2712. ]
  2713. },
  2714. "require": {
  2715. "php": ">=7.1"
  2716. },
  2717. "time": "2021-02-19T12:13:01+00:00",
  2718. "type": "library",
  2719. "extra": {
  2720. "branch-alias": {
  2721. "dev-main": "1.23-dev"
  2722. },
  2723. "thanks": {
  2724. "name": "symfony/polyfill",
  2725. "url": "https://github.com/symfony/polyfill"
  2726. }
  2727. },
  2728. "installation-source": "dist",
  2729. "autoload": {
  2730. "psr-4": {
  2731. "Symfony\\Polyfill\\Php73\\": ""
  2732. },
  2733. "files": [
  2734. "bootstrap.php"
  2735. ],
  2736. "classmap": [
  2737. "Resources/stubs"
  2738. ]
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "MIT"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Nicolas Grekas",
  2747. "email": "p@tchwork.com"
  2748. },
  2749. {
  2750. "name": "Symfony Community",
  2751. "homepage": "https://symfony.com/contributors"
  2752. }
  2753. ],
  2754. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2755. "homepage": "https://symfony.com",
  2756. "keywords": [
  2757. "compatibility",
  2758. "polyfill",
  2759. "portable",
  2760. "shim"
  2761. ]
  2762. },
  2763. {
  2764. "name": "symfony/polyfill-php80",
  2765. "version": "v1.23.1",
  2766. "version_normalized": "1.23.1.0",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/symfony/polyfill-php80.git",
  2770. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  2775. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  2776. "shasum": "",
  2777. "mirrors": [
  2778. {
  2779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2780. "preferred": true
  2781. }
  2782. ]
  2783. },
  2784. "require": {
  2785. "php": ">=7.1"
  2786. },
  2787. "time": "2021-07-28T13:41:28+00:00",
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-main": "1.23-dev"
  2792. },
  2793. "thanks": {
  2794. "name": "symfony/polyfill",
  2795. "url": "https://github.com/symfony/polyfill"
  2796. }
  2797. },
  2798. "installation-source": "dist",
  2799. "autoload": {
  2800. "psr-4": {
  2801. "Symfony\\Polyfill\\Php80\\": ""
  2802. },
  2803. "files": [
  2804. "bootstrap.php"
  2805. ],
  2806. "classmap": [
  2807. "Resources/stubs"
  2808. ]
  2809. },
  2810. "notification-url": "https://packagist.org/downloads/",
  2811. "license": [
  2812. "MIT"
  2813. ],
  2814. "authors": [
  2815. {
  2816. "name": "Ion Bazan",
  2817. "email": "ion.bazan@gmail.com"
  2818. },
  2819. {
  2820. "name": "Nicolas Grekas",
  2821. "email": "p@tchwork.com"
  2822. },
  2823. {
  2824. "name": "Symfony Community",
  2825. "homepage": "https://symfony.com/contributors"
  2826. }
  2827. ],
  2828. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2829. "homepage": "https://symfony.com",
  2830. "keywords": [
  2831. "compatibility",
  2832. "polyfill",
  2833. "portable",
  2834. "shim"
  2835. ]
  2836. },
  2837. {
  2838. "name": "symfony/psr-http-message-bridge",
  2839. "version": "v2.1.1",
  2840. "version_normalized": "2.1.1.0",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  2844. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9012994c4b4fb23e7c57dd86b763a417a04feba",
  2849. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba",
  2850. "shasum": "",
  2851. "mirrors": [
  2852. {
  2853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2854. "preferred": true
  2855. }
  2856. ]
  2857. },
  2858. "require": {
  2859. "php": ">=7.1",
  2860. "psr/http-message": "^1.0",
  2861. "symfony/http-foundation": "^4.4 || ^5.0"
  2862. },
  2863. "require-dev": {
  2864. "nyholm/psr7": "^1.1",
  2865. "psr/log": "^1.1 || ^2 || ^3",
  2866. "symfony/browser-kit": "^4.4 || ^5.0",
  2867. "symfony/config": "^4.4 || ^5.0",
  2868. "symfony/event-dispatcher": "^4.4 || ^5.0",
  2869. "symfony/framework-bundle": "^4.4 || ^5.0",
  2870. "symfony/http-kernel": "^4.4 || ^5.0",
  2871. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  2872. },
  2873. "suggest": {
  2874. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2875. },
  2876. "time": "2021-07-27T17:25:39+00:00",
  2877. "type": "symfony-bridge",
  2878. "extra": {
  2879. "branch-alias": {
  2880. "dev-main": "2.1-dev"
  2881. }
  2882. },
  2883. "installation-source": "dist",
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2887. },
  2888. "exclude-from-classmap": [
  2889. "/Tests/"
  2890. ]
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Fabien Potencier",
  2899. "email": "fabien@symfony.com"
  2900. },
  2901. {
  2902. "name": "Symfony Community",
  2903. "homepage": "http://symfony.com/contributors"
  2904. }
  2905. ],
  2906. "description": "PSR HTTP message bridge",
  2907. "homepage": "http://symfony.com",
  2908. "keywords": [
  2909. "http",
  2910. "http-message",
  2911. "psr-17",
  2912. "psr-7"
  2913. ]
  2914. },
  2915. {
  2916. "name": "symfony/service-contracts",
  2917. "version": "v2.4.0",
  2918. "version_normalized": "2.4.0.0",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/symfony/service-contracts.git",
  2922. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  2927. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  2928. "shasum": "",
  2929. "mirrors": [
  2930. {
  2931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2932. "preferred": true
  2933. }
  2934. ]
  2935. },
  2936. "require": {
  2937. "php": ">=7.2.5",
  2938. "psr/container": "^1.1"
  2939. },
  2940. "suggest": {
  2941. "symfony/service-implementation": ""
  2942. },
  2943. "time": "2021-04-01T10:43:52+00:00",
  2944. "type": "library",
  2945. "extra": {
  2946. "branch-alias": {
  2947. "dev-main": "2.4-dev"
  2948. },
  2949. "thanks": {
  2950. "name": "symfony/contracts",
  2951. "url": "https://github.com/symfony/contracts"
  2952. }
  2953. },
  2954. "installation-source": "dist",
  2955. "autoload": {
  2956. "psr-4": {
  2957. "Symfony\\Contracts\\Service\\": ""
  2958. }
  2959. },
  2960. "notification-url": "https://packagist.org/downloads/",
  2961. "license": [
  2962. "MIT"
  2963. ],
  2964. "authors": [
  2965. {
  2966. "name": "Nicolas Grekas",
  2967. "email": "p@tchwork.com"
  2968. },
  2969. {
  2970. "name": "Symfony Community",
  2971. "homepage": "https://symfony.com/contributors"
  2972. }
  2973. ],
  2974. "description": "Generic abstractions related to writing services",
  2975. "homepage": "https://symfony.com",
  2976. "keywords": [
  2977. "abstractions",
  2978. "contracts",
  2979. "decoupling",
  2980. "interfaces",
  2981. "interoperability",
  2982. "standards"
  2983. ],
  2984. "support": {
  2985. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  2986. }
  2987. },
  2988. {
  2989. "name": "symfony/var-exporter",
  2990. "version": "v5.3.8",
  2991. "version_normalized": "5.3.8.0",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://github.com/symfony/var-exporter.git",
  2995. "reference": "a7604de14bcf472fe8e33f758e9e5b7bf07d3b91"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a7604de14bcf472fe8e33f758e9e5b7bf07d3b91",
  3000. "reference": "a7604de14bcf472fe8e33f758e9e5b7bf07d3b91",
  3001. "shasum": "",
  3002. "mirrors": [
  3003. {
  3004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3005. "preferred": true
  3006. }
  3007. ]
  3008. },
  3009. "require": {
  3010. "php": ">=7.2.5",
  3011. "symfony/polyfill-php80": "^1.16"
  3012. },
  3013. "require-dev": {
  3014. "symfony/var-dumper": "^4.4.9|^5.0.9"
  3015. },
  3016. "time": "2021-08-31T12:49:16+00:00",
  3017. "type": "library",
  3018. "installation-source": "dist",
  3019. "autoload": {
  3020. "psr-4": {
  3021. "Symfony\\Component\\VarExporter\\": ""
  3022. },
  3023. "exclude-from-classmap": [
  3024. "/Tests/"
  3025. ]
  3026. },
  3027. "notification-url": "https://packagist.org/downloads/",
  3028. "license": [
  3029. "MIT"
  3030. ],
  3031. "authors": [
  3032. {
  3033. "name": "Nicolas Grekas",
  3034. "email": "p@tchwork.com"
  3035. },
  3036. {
  3037. "name": "Symfony Community",
  3038. "homepage": "https://symfony.com/contributors"
  3039. }
  3040. ],
  3041. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3042. "homepage": "https://symfony.com",
  3043. "keywords": [
  3044. "clone",
  3045. "construct",
  3046. "export",
  3047. "hydrate",
  3048. "instantiate",
  3049. "serialize"
  3050. ]
  3051. },
  3052. {
  3053. "name": "symfony/yaml",
  3054. "version": "v2.8.52",
  3055. "version_normalized": "2.8.52.0",
  3056. "source": {
  3057. "type": "git",
  3058. "url": "https://github.com/symfony/yaml.git",
  3059. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  3060. },
  3061. "dist": {
  3062. "type": "zip",
  3063. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  3064. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  3065. "shasum": "",
  3066. "mirrors": [
  3067. {
  3068. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3069. "preferred": true
  3070. }
  3071. ]
  3072. },
  3073. "require": {
  3074. "php": ">=5.3.9",
  3075. "symfony/polyfill-ctype": "~1.8"
  3076. },
  3077. "time": "2018-11-11T11:18:13+00:00",
  3078. "type": "library",
  3079. "extra": {
  3080. "branch-alias": {
  3081. "dev-master": "2.8-dev"
  3082. }
  3083. },
  3084. "installation-source": "dist",
  3085. "autoload": {
  3086. "psr-4": {
  3087. "Symfony\\Component\\Yaml\\": ""
  3088. },
  3089. "exclude-from-classmap": [
  3090. "/Tests/"
  3091. ]
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Fabien Potencier",
  3100. "email": "fabien@symfony.com"
  3101. },
  3102. {
  3103. "name": "Symfony Community",
  3104. "homepage": "https://symfony.com/contributors"
  3105. }
  3106. ],
  3107. "description": "Symfony Yaml Component",
  3108. "homepage": "https://symfony.com"
  3109. },
  3110. {
  3111. "name": "topthink/framework",
  3112. "version": "v5.1.41",
  3113. "version_normalized": "5.1.41.0",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/top-think/framework.git",
  3117. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/top-think/framework/zipball/7137741a323a4a60cfca334507cd1812fac91bb2",
  3122. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2",
  3123. "shasum": "",
  3124. "mirrors": [
  3125. {
  3126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3127. "preferred": true
  3128. }
  3129. ]
  3130. },
  3131. "require": {
  3132. "php": ">=5.6.0",
  3133. "topthink/think-installer": "2.*"
  3134. },
  3135. "require-dev": {
  3136. "johnkary/phpunit-speedtrap": "^1.0",
  3137. "mikey179/vfsstream": "~1.6",
  3138. "phpdocumentor/reflection-docblock": "^2.0",
  3139. "phploc/phploc": "2.*",
  3140. "phpunit/phpunit": "^5.0|^6.0",
  3141. "sebastian/phpcpd": "2.*",
  3142. "squizlabs/php_codesniffer": "2.*"
  3143. },
  3144. "time": "2021-01-11T02:51:29+00:00",
  3145. "type": "think-framework",
  3146. "installation-source": "dist",
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "Apache-2.0"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "liu21st",
  3154. "email": "liu21st@gmail.com"
  3155. },
  3156. {
  3157. "name": "yunwuxin",
  3158. "email": "448901948@qq.com"
  3159. }
  3160. ],
  3161. "description": "the new thinkphp framework",
  3162. "homepage": "http://thinkphp.cn/",
  3163. "keywords": [
  3164. "framework",
  3165. "orm",
  3166. "thinkphp"
  3167. ],
  3168. "support": {
  3169. "issues": "https://github.com/top-think/framework/issues",
  3170. "source": "https://github.com/top-think/framework/tree/v5.1.41"
  3171. }
  3172. },
  3173. {
  3174. "name": "topthink/think-installer",
  3175. "version": "v2.0.5",
  3176. "version_normalized": "2.0.5.0",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://github.com/top-think/think-installer.git",
  3180. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://api.github.com/repos/top-think/think-installer/zipball/38ba647706e35d6704b5d370c06f8a160b635f88",
  3185. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88",
  3186. "shasum": "",
  3187. "mirrors": [
  3188. {
  3189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3190. "preferred": true
  3191. }
  3192. ]
  3193. },
  3194. "require": {
  3195. "composer-plugin-api": "^1.0||^2.0"
  3196. },
  3197. "require-dev": {
  3198. "composer/composer": "^1.0||^2.0"
  3199. },
  3200. "time": "2021-01-14T12:12:14+00:00",
  3201. "type": "composer-plugin",
  3202. "extra": {
  3203. "class": "think\\composer\\Plugin"
  3204. },
  3205. "installation-source": "dist",
  3206. "autoload": {
  3207. "psr-4": {
  3208. "think\\composer\\": "src"
  3209. }
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "Apache-2.0"
  3214. ],
  3215. "authors": [
  3216. {
  3217. "name": "yunwuxin",
  3218. "email": "448901948@qq.com"
  3219. }
  3220. ],
  3221. "support": {
  3222. "issues": "https://github.com/top-think/think-installer/issues",
  3223. "source": "https://github.com/top-think/think-installer/tree/v2.0.5"
  3224. }
  3225. },
  3226. {
  3227. "name": "zoujingli/ip2region",
  3228. "version": "v1.0.10",
  3229. "version_normalized": "1.0.10.0",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/zoujingli/ip2region.git",
  3233. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  3238. "reference": "453480d0ab5b6fdbdf4aa400b7598a10ff2dc5c0",
  3239. "shasum": "",
  3240. "mirrors": [
  3241. {
  3242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3243. "preferred": true
  3244. }
  3245. ]
  3246. },
  3247. "require": {
  3248. "php": ">=5.3"
  3249. },
  3250. "time": "2021-03-23T10:29:05+00:00",
  3251. "type": "library",
  3252. "installation-source": "dist",
  3253. "autoload": {
  3254. "classmap": [
  3255. "Ip2Region.php"
  3256. ]
  3257. },
  3258. "notification-url": "https://packagist.org/downloads/",
  3259. "license": [
  3260. "Apache-2.0"
  3261. ],
  3262. "authors": [
  3263. {
  3264. "name": "Anyon",
  3265. "email": "zoujingli@qq.com",
  3266. "homepage": "http://ctolog.com"
  3267. }
  3268. ],
  3269. "description": "Ip2Region for PHP",
  3270. "homepage": "https://github.com/zoujingli/Ip2Region",
  3271. "keywords": [
  3272. "Ip2Region"
  3273. ],
  3274. "support": {
  3275. "issues": "https://github.com/zoujingli/ip2region/issues",
  3276. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.10"
  3277. }
  3278. },
  3279. {
  3280. "name": "zoujingli/think-library",
  3281. "version": "v5.1.x-dev",
  3282. "version_normalized": "5.1.9999999.9999999-dev",
  3283. "source": {
  3284. "type": "git",
  3285. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  3286. "reference": "38c150e2a61280f1f16d16a08aeabdc18b551151"
  3287. },
  3288. "dist": {
  3289. "type": "zip",
  3290. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/38c150e2a61280f1f16d16a08aeabdc18b551151",
  3291. "reference": "38c150e2a61280f1f16d16a08aeabdc18b551151",
  3292. "shasum": "",
  3293. "mirrors": [
  3294. {
  3295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3296. "preferred": true
  3297. }
  3298. ]
  3299. },
  3300. "require": {
  3301. "aliyuncs/oss-sdk-php": "^2.3",
  3302. "ext-curl": "*",
  3303. "ext-gd": "*",
  3304. "ext-iconv": "*",
  3305. "ext-json": "*",
  3306. "ext-openssl": "*",
  3307. "php": ">=5.5",
  3308. "qiniu/php-sdk": "^7.2",
  3309. "topthink/framework": "5.1.*"
  3310. },
  3311. "time": "2020-09-08T01:49:52+00:00",
  3312. "type": "library",
  3313. "installation-source": "dist",
  3314. "autoload": {
  3315. "files": [
  3316. "src/common.php"
  3317. ],
  3318. "psr-4": {
  3319. "library\\": "src"
  3320. }
  3321. },
  3322. "notification-url": "https://packagist.org/downloads/",
  3323. "license": [
  3324. "MIT"
  3325. ],
  3326. "description": "ThinkPHP Basic Development Library",
  3327. "homepage": "http://framework.thinkadmin.top",
  3328. "support": {
  3329. "issues": "https://github.com/zoujingli/ThinkLibrary/issues",
  3330. "source": "https://github.com/zoujingli/ThinkLibrary/tree/v5.1"
  3331. }
  3332. },
  3333. {
  3334. "name": "zoujingli/wechat-developer",
  3335. "version": "v1.2.32",
  3336. "version_normalized": "1.2.32.0",
  3337. "source": {
  3338. "type": "git",
  3339. "url": "https://github.com/zoujingli/WeChatDeveloper.git",
  3340. "reference": "58478f9baa68aca9bcf71e1a8bf17eae1d91ddf2"
  3341. },
  3342. "dist": {
  3343. "type": "zip",
  3344. "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/58478f9baa68aca9bcf71e1a8bf17eae1d91ddf2",
  3345. "reference": "58478f9baa68aca9bcf71e1a8bf17eae1d91ddf2",
  3346. "shasum": "",
  3347. "mirrors": [
  3348. {
  3349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3350. "preferred": true
  3351. }
  3352. ]
  3353. },
  3354. "require": {
  3355. "ext-bcmath": "*",
  3356. "ext-curl": "*",
  3357. "ext-json": "*",
  3358. "ext-libxml": "*",
  3359. "ext-mbstring": "*",
  3360. "ext-openssl": "*",
  3361. "ext-simplexml": "*",
  3362. "ext-xml": "*",
  3363. "php": ">=5.4"
  3364. },
  3365. "time": "2021-09-26T02:03:44+00:00",
  3366. "type": "library",
  3367. "installation-source": "dist",
  3368. "autoload": {
  3369. "classmap": [
  3370. "We.php"
  3371. ],
  3372. "psr-4": {
  3373. "WePay\\": "WePay",
  3374. "WeChat\\": "WeChat",
  3375. "WeMini\\": "WeMini",
  3376. "AliPay\\": "AliPay",
  3377. "WePayV3\\": "WePayV3"
  3378. }
  3379. },
  3380. "notification-url": "https://packagist.org/downloads/",
  3381. "license": [
  3382. "MIT"
  3383. ],
  3384. "authors": [
  3385. {
  3386. "name": "Anyon",
  3387. "email": "zoujingli@qq.com",
  3388. "homepage": "https://thinkadmin.top"
  3389. }
  3390. ],
  3391. "description": "WeChat platform and WeChat payment development tools",
  3392. "homepage": "https://github.com/kentwangit/WeChatDeveloper",
  3393. "keywords": [
  3394. "WeChatDeveloper",
  3395. "WeMini",
  3396. "alipay",
  3397. "wechat",
  3398. "wechatpay",
  3399. "wepay"
  3400. ]
  3401. },
  3402. {
  3403. "name": "zoujingli/weopen-developer",
  3404. "version": "dev-master",
  3405. "version_normalized": "9999999-dev",
  3406. "source": {
  3407. "type": "git",
  3408. "url": "https://github.com/zoujingli/WeOpenDeveloper.git",
  3409. "reference": "4d0d3c064e54556621453845fc65ba52de58a880"
  3410. },
  3411. "dist": {
  3412. "type": "zip",
  3413. "url": "https://api.github.com/repos/zoujingli/WeOpenDeveloper/zipball/4d0d3c064e54556621453845fc65ba52de58a880",
  3414. "reference": "4d0d3c064e54556621453845fc65ba52de58a880",
  3415. "shasum": "",
  3416. "mirrors": [
  3417. {
  3418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3419. "preferred": true
  3420. }
  3421. ]
  3422. },
  3423. "require": {
  3424. "ext-curl": "*",
  3425. "ext-json": "*",
  3426. "ext-openssl": "*",
  3427. "php": ">=5.4",
  3428. "zoujingli/wechat-developer": "^1.0"
  3429. },
  3430. "time": "2019-10-10T10:18:05+00:00",
  3431. "type": "library",
  3432. "installation-source": "dist",
  3433. "autoload": {
  3434. "psr-4": {
  3435. "WeOpen\\": "WeOpen",
  3436. "WeChat\\": "WeChat",
  3437. "WeMini\\": "WeMini"
  3438. }
  3439. },
  3440. "notification-url": "https://packagist.org/downloads/",
  3441. "license": [
  3442. "MIT"
  3443. ],
  3444. "authors": [
  3445. {
  3446. "name": "Anyon",
  3447. "email": "zoujingli@qq.com",
  3448. "homepage": "http://ctolog.com"
  3449. }
  3450. ],
  3451. "description": "WeChat Open development of SDK",
  3452. "homepage": "https://github.com/zoujingli/WeOpenDeveloper",
  3453. "keywords": [
  3454. "WeChatOpen",
  3455. "WeChatOpenDeveloper",
  3456. "wechat"
  3457. ]
  3458. }
  3459. ]