composer.lock 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "091a1b70af72431b7cf9d109e1214317",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "time": "2019-01-01T23:59:15+00:00"
  63. },
  64. {
  65. "name": "alibabacloud/client",
  66. "version": "1.5.31",
  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.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "adbario/php-dot-notation": "^2.2",
  86. "clagiordano/weblibs-configmanager": "^1.0",
  87. "danielstjules/stringy": "^3.1",
  88. "ext-curl": "*",
  89. "ext-json": "*",
  90. "ext-libxml": "*",
  91. "ext-mbstring": "*",
  92. "ext-openssl": "*",
  93. "ext-simplexml": "*",
  94. "ext-xmlwriter": "*",
  95. "guzzlehttp/guzzle": "^6.3|^7.0",
  96. "mtdowling/jmespath.php": "^2.5",
  97. "php": ">=5.5"
  98. },
  99. "require-dev": {
  100. "composer/composer": "^1.8",
  101. "drupal/coder": "^8.3",
  102. "ext-dom": "*",
  103. "ext-pcre": "*",
  104. "ext-sockets": "*",
  105. "ext-spl": "*",
  106. "league/climate": "^3.2.4",
  107. "mikey179/vfsstream": "^1.6",
  108. "monolog/monolog": "^1.24",
  109. "phpunit/phpunit": "^5.7.27|^6.1",
  110. "psr/cache": "^1.0",
  111. "symfony/dotenv": "^3.4",
  112. "symfony/var-dumper": "^3.4"
  113. },
  114. "suggest": {
  115. "ext-sockets": "To use client-side monitoring"
  116. },
  117. "type": "library",
  118. "autoload": {
  119. "psr-4": {
  120. "AlibabaCloud\\Client\\": "src"
  121. },
  122. "files": [
  123. "src/Functions.php"
  124. ]
  125. },
  126. "notification-url": "https://packagist.org/downloads/",
  127. "license": [
  128. "Apache-2.0"
  129. ],
  130. "authors": [
  131. {
  132. "name": "Alibaba Cloud SDK",
  133. "email": "sdk-team@alibabacloud.com",
  134. "homepage": "http://www.alibabacloud.com"
  135. }
  136. ],
  137. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  138. "homepage": "https://www.alibabacloud.com/",
  139. "keywords": [
  140. "alibaba",
  141. "alibabacloud",
  142. "aliyun",
  143. "client",
  144. "cloud",
  145. "library",
  146. "sdk",
  147. "tool"
  148. ],
  149. "time": "2021-05-13T06:26:38+00:00"
  150. },
  151. {
  152. "name": "alibabacloud/credentials",
  153. "version": "1.1.4",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/aliyun/credentials-php.git",
  157. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  162. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  163. "shasum": "",
  164. "mirrors": [
  165. {
  166. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  167. "preferred": true
  168. }
  169. ]
  170. },
  171. "require": {
  172. "adbario/php-dot-notation": "^2.2",
  173. "alibabacloud/tea": "^3.0",
  174. "ext-curl": "*",
  175. "ext-json": "*",
  176. "ext-libxml": "*",
  177. "ext-mbstring": "*",
  178. "ext-openssl": "*",
  179. "ext-simplexml": "*",
  180. "ext-xmlwriter": "*",
  181. "guzzlehttp/guzzle": "^6.3|^7.0",
  182. "php": ">=5.6"
  183. },
  184. "require-dev": {
  185. "composer/composer": "^1.8",
  186. "drupal/coder": "^8.3",
  187. "ext-dom": "*",
  188. "ext-pcre": "*",
  189. "ext-sockets": "*",
  190. "ext-spl": "*",
  191. "mikey179/vfsstream": "^1.6",
  192. "monolog/monolog": "^1.24",
  193. "phpunit/phpunit": "^4.8.35|^5.4.3",
  194. "psr/cache": "^1.0",
  195. "symfony/dotenv": "^3.4",
  196. "symfony/var-dumper": "^3.4"
  197. },
  198. "suggest": {
  199. "ext-sockets": "To use client-side monitoring"
  200. },
  201. "type": "library",
  202. "autoload": {
  203. "psr-4": {
  204. "AlibabaCloud\\Credentials\\": "src"
  205. }
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "Apache-2.0"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Alibaba Cloud SDK",
  214. "email": "sdk-team@alibabacloud.com",
  215. "homepage": "http://www.alibabacloud.com"
  216. }
  217. ],
  218. "description": "Alibaba Cloud Credentials for PHP",
  219. "homepage": "https://www.alibabacloud.com/",
  220. "keywords": [
  221. "alibaba",
  222. "alibabacloud",
  223. "aliyun",
  224. "client",
  225. "cloud",
  226. "credentials",
  227. "library",
  228. "sdk",
  229. "tool"
  230. ],
  231. "time": "2021-06-08T10:49:34+00:00"
  232. },
  233. {
  234. "name": "alibabacloud/darabonba-openapi",
  235. "version": "0.1.8",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  239. "reference": "c577dea4415b6812d52d9e970a517932eed4a997"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/c577dea4415b6812d52d9e970a517932eed4a997",
  244. "reference": "c577dea4415b6812d52d9e970a517932eed4a997",
  245. "shasum": "",
  246. "mirrors": [
  247. {
  248. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  249. "preferred": true
  250. }
  251. ]
  252. },
  253. "require": {
  254. "alibabacloud/credentials": "^1.1",
  255. "alibabacloud/openapi-util": "^0.1.7",
  256. "alibabacloud/tea-utils": "^0.2.0",
  257. "php": ">5.5"
  258. },
  259. "type": "library",
  260. "autoload": {
  261. "psr-4": {
  262. "Darabonba\\OpenApi\\": "src"
  263. }
  264. },
  265. "notification-url": "https://packagist.org/downloads/",
  266. "license": [
  267. "Apache-2.0"
  268. ],
  269. "authors": [
  270. {
  271. "name": "Alibaba Cloud SDK",
  272. "email": "sdk-team@alibabacloud.com"
  273. }
  274. ],
  275. "description": "Alibaba Cloud OpenApi Client",
  276. "time": "2021-02-20T10:03:26+00:00"
  277. },
  278. {
  279. "name": "alibabacloud/dyvmsapi-20170525",
  280. "version": "1.0.2",
  281. "source": {
  282. "type": "git",
  283. "url": "https://github.com/alibabacloud-sdk-php/Dyvmsapi-20170525.git",
  284. "reference": "483e09db7c32ab05e629d7872533972d9e472851"
  285. },
  286. "dist": {
  287. "type": "zip",
  288. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dyvmsapi-20170525/zipball/483e09db7c32ab05e629d7872533972d9e472851",
  289. "reference": "483e09db7c32ab05e629d7872533972d9e472851",
  290. "shasum": "",
  291. "mirrors": [
  292. {
  293. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  294. "preferred": true
  295. }
  296. ]
  297. },
  298. "require": {
  299. "alibabacloud/darabonba-openapi": "^0.1.8",
  300. "alibabacloud/endpoint-util": "^0.1.0",
  301. "alibabacloud/tea-utils": "^0.2.0",
  302. "php": ">5.5"
  303. },
  304. "type": "library",
  305. "autoload": {
  306. "psr-4": {
  307. "AlibabaCloud\\SDK\\Dyvmsapi\\V20170525\\": "src"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "Apache-2.0"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Alibaba Cloud SDK",
  317. "email": "sdk-team@alibabacloud.com"
  318. }
  319. ],
  320. "description": "Alibaba Cloud Dyvmsapi (20170525) SDK Library for PHP",
  321. "time": "2021-07-30T06:33:37+00:00"
  322. },
  323. {
  324. "name": "alibabacloud/endpoint-util",
  325. "version": "0.1.1",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  329. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  334. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  335. "shasum": "",
  336. "mirrors": [
  337. {
  338. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  339. "preferred": true
  340. }
  341. ]
  342. },
  343. "require": {
  344. "php": ">5.5"
  345. },
  346. "require-dev": {
  347. "phpunit/phpunit": "^4.8.35|^5.4.3"
  348. },
  349. "type": "library",
  350. "autoload": {
  351. "psr-4": {
  352. "AlibabaCloud\\Endpoint\\": "src"
  353. }
  354. },
  355. "notification-url": "https://packagist.org/downloads/",
  356. "license": [
  357. "Apache-2.0"
  358. ],
  359. "authors": [
  360. {
  361. "name": "Alibaba Cloud SDK",
  362. "email": "sdk-team@alibabacloud.com"
  363. }
  364. ],
  365. "description": "Alibaba Cloud Endpoint Library for PHP",
  366. "time": "2020-06-04T10:57:15+00:00"
  367. },
  368. {
  369. "name": "alibabacloud/openapi-util",
  370. "version": "0.1.8",
  371. "source": {
  372. "type": "git",
  373. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  374. "reference": "108ef765e9cd11bba0a185a5c12e5ad33621ff35"
  375. },
  376. "dist": {
  377. "type": "zip",
  378. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/108ef765e9cd11bba0a185a5c12e5ad33621ff35",
  379. "reference": "108ef765e9cd11bba0a185a5c12e5ad33621ff35",
  380. "shasum": "",
  381. "mirrors": [
  382. {
  383. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  384. "preferred": true
  385. }
  386. ]
  387. },
  388. "require": {
  389. "alibabacloud/tea": "^3.1",
  390. "alibabacloud/tea-utils": "^0.2",
  391. "lizhichao/one-sm": "^1.5",
  392. "php": ">5.5"
  393. },
  394. "require-dev": {
  395. "phpunit/phpunit": "^4.8.35|^5.4.3"
  396. },
  397. "type": "library",
  398. "autoload": {
  399. "psr-4": {
  400. "AlibabaCloud\\OpenApiUtil\\": "src"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "Apache-2.0"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Alibaba Cloud SDK",
  410. "email": "sdk-team@alibabacloud.com"
  411. }
  412. ],
  413. "description": "Alibaba Cloud OpenApi Util",
  414. "time": "2021-04-27T09:43:17+00:00"
  415. },
  416. {
  417. "name": "alibabacloud/sdk",
  418. "version": "1.8.1138",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/aliyun/openapi-sdk-php.git",
  422. "reference": "dc7713cd1468bcac8ad058e5f539a90062715b46"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php/zipball/dc7713cd1468bcac8ad058e5f539a90062715b46",
  427. "reference": "dc7713cd1468bcac8ad058e5f539a90062715b46",
  428. "shasum": "",
  429. "mirrors": [
  430. {
  431. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  432. "preferred": true
  433. }
  434. ]
  435. },
  436. "require": {
  437. "alibabacloud/client": "^1.5",
  438. "ext-curl": "*",
  439. "ext-json": "*",
  440. "ext-libxml": "*",
  441. "ext-mbstring": "*",
  442. "ext-openssl": "*",
  443. "ext-simplexml": "*",
  444. "ext-xmlwriter": "*",
  445. "php": ">=5.5"
  446. },
  447. "replace": {
  448. "alibabacloud/aas": "self.version",
  449. "alibabacloud/actiontrail": "self.version",
  450. "alibabacloud/adb": "self.version",
  451. "alibabacloud/aegis": "self.version",
  452. "alibabacloud/afs": "self.version",
  453. "alibabacloud/airec": "self.version",
  454. "alibabacloud/alidns": "self.version",
  455. "alibabacloud/alikafka": "self.version",
  456. "alibabacloud/alimt": "self.version",
  457. "alibabacloud/aliprobe": "self.version",
  458. "alibabacloud/aliyuncvc": "self.version",
  459. "alibabacloud/appmallsservice": "self.version",
  460. "alibabacloud/arms": "self.version",
  461. "alibabacloud/arms4finance": "self.version",
  462. "alibabacloud/baas": "self.version",
  463. "alibabacloud/batchcompute": "self.version",
  464. "alibabacloud/bss": "self.version",
  465. "alibabacloud/bssopenapi": "self.version",
  466. "alibabacloud/cas": "self.version",
  467. "alibabacloud/cbn": "self.version",
  468. "alibabacloud/ccc": "self.version",
  469. "alibabacloud/ccs": "self.version",
  470. "alibabacloud/cdn": "self.version",
  471. "alibabacloud/cds": "self.version",
  472. "alibabacloud/cf": "self.version",
  473. "alibabacloud/chatbot": "self.version",
  474. "alibabacloud/cloudapi": "self.version",
  475. "alibabacloud/cloudauth": "self.version",
  476. "alibabacloud/cloudesl": "self.version",
  477. "alibabacloud/cloudmarketing": "self.version",
  478. "alibabacloud/cloudphoto": "self.version",
  479. "alibabacloud/cloudwf": "self.version",
  480. "alibabacloud/cms": "self.version",
  481. "alibabacloud/commondriver": "self.version",
  482. "alibabacloud/companyreg": "self.version",
  483. "alibabacloud/cr": "self.version",
  484. "alibabacloud/crm": "self.version",
  485. "alibabacloud/cs": "self.version",
  486. "alibabacloud/csb": "self.version",
  487. "alibabacloud/cusanalyticsconline": "self.version",
  488. "alibabacloud/dataworkspublic": "self.version",
  489. "alibabacloud/dbs": "self.version",
  490. "alibabacloud/dcdn": "self.version",
  491. "alibabacloud/dds": "self.version",
  492. "alibabacloud/democenter": "self.version",
  493. "alibabacloud/dm": "self.version",
  494. "alibabacloud/dmsenterprise": "self.version",
  495. "alibabacloud/domain": "self.version",
  496. "alibabacloud/domainintl": "self.version",
  497. "alibabacloud/drcloud": "self.version",
  498. "alibabacloud/drds": "self.version",
  499. "alibabacloud/dts": "self.version",
  500. "alibabacloud/dybaseapi": "self.version",
  501. "alibabacloud/dyplsapi": "self.version",
  502. "alibabacloud/dypnsapi": "self.version",
  503. "alibabacloud/dysmsapi": "self.version",
  504. "alibabacloud/dyvmsapi": "self.version",
  505. "alibabacloud/eci": "self.version",
  506. "alibabacloud/ecs": "self.version",
  507. "alibabacloud/ecsinc": "self.version",
  508. "alibabacloud/edas": "self.version",
  509. "alibabacloud/ehpc": "self.version",
  510. "alibabacloud/elasticsearch": "self.version",
  511. "alibabacloud/emr": "self.version",
  512. "alibabacloud/ess": "self.version",
  513. "alibabacloud/facebody": "self.version",
  514. "alibabacloud/fnf": "self.version",
  515. "alibabacloud/foas": "self.version",
  516. "alibabacloud/ft": "self.version",
  517. "alibabacloud/goodstech": "self.version",
  518. "alibabacloud/gpdb": "self.version",
  519. "alibabacloud/green": "self.version",
  520. "alibabacloud/hbase": "self.version",
  521. "alibabacloud/hiknoengine": "self.version",
  522. "alibabacloud/hpc": "self.version",
  523. "alibabacloud/hsm": "self.version",
  524. "alibabacloud/httpdns": "self.version",
  525. "alibabacloud/idst": "self.version",
  526. "alibabacloud/imageaudit": "self.version",
  527. "alibabacloud/imageenhan": "self.version",
  528. "alibabacloud/imagerecog": "self.version",
  529. "alibabacloud/imagesearch": "self.version",
  530. "alibabacloud/imageseg": "self.version",
  531. "alibabacloud/imm": "self.version",
  532. "alibabacloud/industrybrain": "self.version",
  533. "alibabacloud/iot": "self.version",
  534. "alibabacloud/iqa": "self.version",
  535. "alibabacloud/itaas": "self.version",
  536. "alibabacloud/ivision": "self.version",
  537. "alibabacloud/ivpd": "self.version",
  538. "alibabacloud/jaq": "self.version",
  539. "alibabacloud/jarvis": "self.version",
  540. "alibabacloud/jarvispublic": "self.version",
  541. "alibabacloud/kms": "self.version",
  542. "alibabacloud/linkedmall": "self.version",
  543. "alibabacloud/linkface": "self.version",
  544. "alibabacloud/linkwan": "self.version",
  545. "alibabacloud/live": "self.version",
  546. "alibabacloud/lubancloud": "self.version",
  547. "alibabacloud/lubanruler": "self.version",
  548. "alibabacloud/market": "self.version",
  549. "alibabacloud/mopen": "self.version",
  550. "alibabacloud/mpserverless": "self.version",
  551. "alibabacloud/mts": "self.version",
  552. "alibabacloud/multimediaai": "self.version",
  553. "alibabacloud/nas": "self.version",
  554. "alibabacloud/netana": "self.version",
  555. "alibabacloud/nlp": "self.version",
  556. "alibabacloud/nlpautoml": "self.version",
  557. "alibabacloud/nlscloudmeta": "self.version",
  558. "alibabacloud/nlsfiletrans": "self.version",
  559. "alibabacloud/objectdet": "self.version",
  560. "alibabacloud/ocr": "self.version",
  561. "alibabacloud/ocs": "self.version",
  562. "alibabacloud/oms": "self.version",
  563. "alibabacloud/ons": "self.version",
  564. "alibabacloud/onsmqtt": "self.version",
  565. "alibabacloud/oos": "self.version",
  566. "alibabacloud/openanalytics": "self.version",
  567. "alibabacloud/ossadmin": "self.version",
  568. "alibabacloud/ots": "self.version",
  569. "alibabacloud/outboundbot": "self.version",
  570. "alibabacloud/petadata": "self.version",
  571. "alibabacloud/polardb": "self.version",
  572. "alibabacloud/productcatalog": "self.version",
  573. "alibabacloud/pts": "self.version",
  574. "alibabacloud/push": "self.version",
  575. "alibabacloud/pvtz": "self.version",
  576. "alibabacloud/qualitycheck": "self.version",
  577. "alibabacloud/ram": "self.version",
  578. "alibabacloud/rds": "self.version",
  579. "alibabacloud/reid": "self.version",
  580. "alibabacloud/retailcloud": "self.version",
  581. "alibabacloud/rkvstore": "self.version",
  582. "alibabacloud/ros": "self.version",
  583. "alibabacloud/rtc": "self.version",
  584. "alibabacloud/saf": "self.version",
  585. "alibabacloud/sas": "self.version",
  586. "alibabacloud/sasapi": "self.version",
  587. "alibabacloud/scdn": "self.version",
  588. "alibabacloud/schedulerx2": "self.version",
  589. "alibabacloud/skyeye": "self.version",
  590. "alibabacloud/slb": "self.version",
  591. "alibabacloud/smartag": "self.version",
  592. "alibabacloud/smc": "self.version",
  593. "alibabacloud/sms": "self.version",
  594. "alibabacloud/smsintl": "self.version",
  595. "alibabacloud/snsuapi": "self.version",
  596. "alibabacloud/sts": "self.version",
  597. "alibabacloud/taginner": "self.version",
  598. "alibabacloud/tesladam": "self.version",
  599. "alibabacloud/teslamaxcompute": "self.version",
  600. "alibabacloud/teslastream": "self.version",
  601. "alibabacloud/ubsms": "self.version",
  602. "alibabacloud/ubsmsinner": "self.version",
  603. "alibabacloud/uis": "self.version",
  604. "alibabacloud/unimkt": "self.version",
  605. "alibabacloud/visionai": "self.version",
  606. "alibabacloud/vod": "self.version",
  607. "alibabacloud/voicenavigator": "self.version",
  608. "alibabacloud/vpc": "self.version",
  609. "alibabacloud/vs": "self.version",
  610. "alibabacloud/wafopenapi": "self.version",
  611. "alibabacloud/welfareinner": "self.version",
  612. "alibabacloud/xspace": "self.version",
  613. "alibabacloud/xtrace": "self.version",
  614. "alibabacloud/yqbridge": "self.version",
  615. "alibabacloud/yundun": "self.version"
  616. },
  617. "require-dev": {
  618. "composer/composer": "^1.8",
  619. "league/climate": "^3.2.4",
  620. "phpunit/phpunit": "^4.8",
  621. "symfony/dotenv": "^3.4",
  622. "symfony/var-dumper": "^3.4"
  623. },
  624. "suggest": {
  625. "ext-sockets": "To use client-side monitoring"
  626. },
  627. "type": "library",
  628. "autoload": {
  629. "psr-4": {
  630. "AlibabaCloud\\": "src"
  631. }
  632. },
  633. "notification-url": "https://packagist.org/downloads/",
  634. "license": [
  635. "Apache-2.0"
  636. ],
  637. "authors": [
  638. {
  639. "name": "Alibaba Cloud SDK",
  640. "email": "sdk-team@alibabacloud.com",
  641. "homepage": "http://www.alibabacloud.com"
  642. }
  643. ],
  644. "description": "Alibaba Cloud SDK for PHP - Easier to Use Alibaba Cloud in your PHP project",
  645. "homepage": "https://www.alibabacloud.com/",
  646. "keywords": [
  647. "alibaba",
  648. "alibabacloud",
  649. "aliyun",
  650. "cloud",
  651. "library",
  652. "sdk"
  653. ],
  654. "time": "2021-11-12T07:13:46+00:00"
  655. },
  656. {
  657. "name": "alibabacloud/tea",
  658. "version": "3.1.22",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/aliyun/tea-php.git",
  662. "reference": "f9c9b2c927253a1c23a5381cc655e41311be7f65"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/f9c9b2c927253a1c23a5381cc655e41311be7f65",
  667. "reference": "f9c9b2c927253a1c23a5381cc655e41311be7f65",
  668. "shasum": "",
  669. "mirrors": [
  670. {
  671. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  672. "preferred": true
  673. }
  674. ]
  675. },
  676. "require": {
  677. "adbario/php-dot-notation": "^2.2",
  678. "ext-curl": "*",
  679. "ext-json": "*",
  680. "ext-libxml": "*",
  681. "ext-mbstring": "*",
  682. "ext-openssl": "*",
  683. "ext-simplexml": "*",
  684. "ext-xmlwriter": "*",
  685. "guzzlehttp/guzzle": "^6.3|^7.0",
  686. "php": ">=5.5"
  687. },
  688. "require-dev": {
  689. "phpunit/phpunit": "*",
  690. "symfony/dotenv": "^3.4",
  691. "symfony/var-dumper": "^3.4"
  692. },
  693. "suggest": {
  694. "ext-sockets": "To use client-side monitoring"
  695. },
  696. "type": "library",
  697. "autoload": {
  698. "psr-4": {
  699. "AlibabaCloud\\Tea\\": "src"
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "Apache-2.0"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Alibaba Cloud SDK",
  709. "email": "sdk-team@alibabacloud.com",
  710. "homepage": "http://www.alibabacloud.com"
  711. }
  712. ],
  713. "description": "Client of Tea for PHP",
  714. "homepage": "https://www.alibabacloud.com/",
  715. "keywords": [
  716. "alibabacloud",
  717. "client",
  718. "cloud",
  719. "tea"
  720. ],
  721. "time": "2021-05-11T06:17:44+00:00"
  722. },
  723. {
  724. "name": "alibabacloud/tea-console",
  725. "version": "0.1.3",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/alibabacloud-sdk-php/tea-console.git",
  729. "reference": "6b30249a17ca1a0962f2a71e01c92fe91b654f17"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-console/zipball/6b30249a17ca1a0962f2a71e01c92fe91b654f17",
  734. "reference": "6b30249a17ca1a0962f2a71e01c92fe91b654f17",
  735. "shasum": "",
  736. "mirrors": [
  737. {
  738. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  739. "preferred": true
  740. }
  741. ]
  742. },
  743. "require": {
  744. "monolog/monolog": "^1.0|^2.1",
  745. "php": ">5.5"
  746. },
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "AlibabaCloud\\Tea\\Console\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "Apache-2.0"
  756. ],
  757. "description": "Alibaba Cloud Tea Console Output Library for PHP",
  758. "time": "2020-12-01T02:14:32+00:00"
  759. },
  760. {
  761. "name": "alibabacloud/tea-utils",
  762. "version": "0.2.14",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  766. "reference": "381df15cb4bdb58dbf596f94869ffd2ef680eddd"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/381df15cb4bdb58dbf596f94869ffd2ef680eddd",
  771. "reference": "381df15cb4bdb58dbf596f94869ffd2ef680eddd",
  772. "shasum": "",
  773. "mirrors": [
  774. {
  775. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  776. "preferred": true
  777. }
  778. ]
  779. },
  780. "require": {
  781. "alibabacloud/tea": "^3.1",
  782. "php": ">5.5"
  783. },
  784. "type": "library",
  785. "autoload": {
  786. "psr-4": {
  787. "AlibabaCloud\\Tea\\Utils\\": "src"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "Apache-2.0"
  793. ],
  794. "authors": [
  795. {
  796. "name": "Alibaba Cloud SDK",
  797. "email": "sdk-team@alibabacloud.com"
  798. }
  799. ],
  800. "description": "Alibaba Cloud Tea Utils for PHP",
  801. "time": "2021-02-02T10:10:58+00:00"
  802. },
  803. {
  804. "name": "clagiordano/weblibs-configmanager",
  805. "version": "v1.5.0",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  809. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  814. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require": {
  824. "ext-json": "*",
  825. "php": ">=5.4",
  826. "symfony/yaml": "^2.8"
  827. },
  828. "require-dev": {
  829. "clagiordano/phpunit-result-printer": "^1",
  830. "php-coveralls/php-coveralls": "^1.1",
  831. "phpunit/phpunit": "^4.8"
  832. },
  833. "type": "library",
  834. "autoload": {
  835. "psr-4": {
  836. "clagiordano\\weblibs\\configmanager\\": "src/"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "LGPL-3.0-or-later"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Claudio Giordano",
  846. "email": "claudio.giordano@autistici.org",
  847. "role": "Developer"
  848. }
  849. ],
  850. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  851. "keywords": [
  852. "clagiordano",
  853. "configuration",
  854. "manager",
  855. "tool",
  856. "weblibs"
  857. ],
  858. "time": "2021-07-12T15:27:21+00:00"
  859. },
  860. {
  861. "name": "danielstjules/stringy",
  862. "version": "3.1.0",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/danielstjules/Stringy.git",
  866. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  871. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  872. "shasum": "",
  873. "mirrors": [
  874. {
  875. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  876. "preferred": true
  877. }
  878. ]
  879. },
  880. "require": {
  881. "php": ">=5.4.0",
  882. "symfony/polyfill-mbstring": "~1.1"
  883. },
  884. "require-dev": {
  885. "phpunit/phpunit": "~4.0"
  886. },
  887. "type": "library",
  888. "autoload": {
  889. "psr-4": {
  890. "Stringy\\": "src/"
  891. },
  892. "files": [
  893. "src/Create.php"
  894. ]
  895. },
  896. "notification-url": "https://packagist.org/downloads/",
  897. "license": [
  898. "MIT"
  899. ],
  900. "authors": [
  901. {
  902. "name": "Daniel St. Jules",
  903. "email": "danielst.jules@gmail.com",
  904. "homepage": "http://www.danielstjules.com"
  905. }
  906. ],
  907. "description": "A string manipulation library with multibyte support",
  908. "homepage": "https://github.com/danielstjules/Stringy",
  909. "keywords": [
  910. "UTF",
  911. "helpers",
  912. "manipulation",
  913. "methods",
  914. "multibyte",
  915. "string",
  916. "utf-8",
  917. "utility",
  918. "utils"
  919. ],
  920. "time": "2017-06-12T01:10:27+00:00"
  921. },
  922. {
  923. "name": "easywechat-composer/easywechat-composer",
  924. "version": "1.4.1",
  925. "source": {
  926. "type": "git",
  927. "url": "https://github.com/mingyoung/easywechat-composer.git",
  928. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  929. },
  930. "dist": {
  931. "type": "zip",
  932. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  933. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  934. "shasum": "",
  935. "mirrors": [
  936. {
  937. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  938. "preferred": true
  939. }
  940. ]
  941. },
  942. "require": {
  943. "composer-plugin-api": "^1.0 || ^2.0",
  944. "php": ">=7.0"
  945. },
  946. "require-dev": {
  947. "composer/composer": "^1.0 || ^2.0",
  948. "phpunit/phpunit": "^6.5 || ^7.0"
  949. },
  950. "type": "composer-plugin",
  951. "extra": {
  952. "class": "EasyWeChatComposer\\Plugin"
  953. },
  954. "autoload": {
  955. "psr-4": {
  956. "EasyWeChatComposer\\": "src/"
  957. }
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "MIT"
  962. ],
  963. "authors": [
  964. {
  965. "name": "张铭阳",
  966. "email": "mingyoungcheung@gmail.com"
  967. }
  968. ],
  969. "description": "The composer plugin for EasyWeChat",
  970. "time": "2021-07-05T04:03:22+00:00"
  971. },
  972. {
  973. "name": "guzzlehttp/guzzle",
  974. "version": "6.5.5",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/guzzle/guzzle.git",
  978. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  983. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  984. "shasum": "",
  985. "mirrors": [
  986. {
  987. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  988. "preferred": true
  989. }
  990. ]
  991. },
  992. "require": {
  993. "ext-json": "*",
  994. "guzzlehttp/promises": "^1.0",
  995. "guzzlehttp/psr7": "^1.6.1",
  996. "php": ">=5.5",
  997. "symfony/polyfill-intl-idn": "^1.17.0"
  998. },
  999. "require-dev": {
  1000. "ext-curl": "*",
  1001. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1002. "psr/log": "^1.1"
  1003. },
  1004. "suggest": {
  1005. "psr/log": "Required for using the Log middleware"
  1006. },
  1007. "type": "library",
  1008. "extra": {
  1009. "branch-alias": {
  1010. "dev-master": "6.5-dev"
  1011. }
  1012. },
  1013. "autoload": {
  1014. "psr-4": {
  1015. "GuzzleHttp\\": "src/"
  1016. },
  1017. "files": [
  1018. "src/functions_include.php"
  1019. ]
  1020. },
  1021. "notification-url": "https://packagist.org/downloads/",
  1022. "license": [
  1023. "MIT"
  1024. ],
  1025. "authors": [
  1026. {
  1027. "name": "Michael Dowling",
  1028. "email": "mtdowling@gmail.com",
  1029. "homepage": "https://github.com/mtdowling"
  1030. }
  1031. ],
  1032. "description": "Guzzle is a PHP HTTP client library",
  1033. "homepage": "http://guzzlephp.org/",
  1034. "keywords": [
  1035. "client",
  1036. "curl",
  1037. "framework",
  1038. "http",
  1039. "http client",
  1040. "rest",
  1041. "web service"
  1042. ],
  1043. "time": "2020-06-16T21:01:06+00:00"
  1044. },
  1045. {
  1046. "name": "guzzlehttp/promises",
  1047. "version": "1.4.1",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/guzzle/promises.git",
  1051. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1056. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1057. "shasum": "",
  1058. "mirrors": [
  1059. {
  1060. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1061. "preferred": true
  1062. }
  1063. ]
  1064. },
  1065. "require": {
  1066. "php": ">=5.5"
  1067. },
  1068. "require-dev": {
  1069. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1070. },
  1071. "type": "library",
  1072. "extra": {
  1073. "branch-alias": {
  1074. "dev-master": "1.4-dev"
  1075. }
  1076. },
  1077. "autoload": {
  1078. "psr-4": {
  1079. "GuzzleHttp\\Promise\\": "src/"
  1080. },
  1081. "files": [
  1082. "src/functions_include.php"
  1083. ]
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "MIT"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "Michael Dowling",
  1092. "email": "mtdowling@gmail.com",
  1093. "homepage": "https://github.com/mtdowling"
  1094. }
  1095. ],
  1096. "description": "Guzzle promises library",
  1097. "keywords": [
  1098. "promise"
  1099. ],
  1100. "time": "2021-03-07T09:25:29+00:00"
  1101. },
  1102. {
  1103. "name": "guzzlehttp/psr7",
  1104. "version": "1.8.2",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/guzzle/psr7.git",
  1108. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1113. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1114. "shasum": "",
  1115. "mirrors": [
  1116. {
  1117. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1118. "preferred": true
  1119. }
  1120. ]
  1121. },
  1122. "require": {
  1123. "php": ">=5.4.0",
  1124. "psr/http-message": "~1.0",
  1125. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1126. },
  1127. "provide": {
  1128. "psr/http-message-implementation": "1.0"
  1129. },
  1130. "require-dev": {
  1131. "ext-zlib": "*",
  1132. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1133. },
  1134. "suggest": {
  1135. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1136. },
  1137. "type": "library",
  1138. "extra": {
  1139. "branch-alias": {
  1140. "dev-master": "1.7-dev"
  1141. }
  1142. },
  1143. "autoload": {
  1144. "psr-4": {
  1145. "GuzzleHttp\\Psr7\\": "src/"
  1146. },
  1147. "files": [
  1148. "src/functions_include.php"
  1149. ]
  1150. },
  1151. "notification-url": "https://packagist.org/downloads/",
  1152. "license": [
  1153. "MIT"
  1154. ],
  1155. "authors": [
  1156. {
  1157. "name": "Michael Dowling",
  1158. "email": "mtdowling@gmail.com",
  1159. "homepage": "https://github.com/mtdowling"
  1160. },
  1161. {
  1162. "name": "Tobias Schultze",
  1163. "homepage": "https://github.com/Tobion"
  1164. }
  1165. ],
  1166. "description": "PSR-7 message implementation that also provides common utility methods",
  1167. "keywords": [
  1168. "http",
  1169. "message",
  1170. "psr-7",
  1171. "request",
  1172. "response",
  1173. "stream",
  1174. "uri",
  1175. "url"
  1176. ],
  1177. "time": "2021-04-26T09:17:50+00:00"
  1178. },
  1179. {
  1180. "name": "karsonzhang/fastadmin-addons",
  1181. "version": "1.2.12",
  1182. "source": {
  1183. "type": "git",
  1184. "url": "https://github.com/karsonzhang/fastadmin-addons.git",
  1185. "reference": "7b0bbb23ba46233ba3decfa534d49d511f702b6c"
  1186. },
  1187. "dist": {
  1188. "type": "zip",
  1189. "url": "https://api.github.com/repos/karsonzhang/fastadmin-addons/zipball/7b0bbb23ba46233ba3decfa534d49d511f702b6c",
  1190. "reference": "7b0bbb23ba46233ba3decfa534d49d511f702b6c",
  1191. "shasum": "",
  1192. "mirrors": [
  1193. {
  1194. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1195. "preferred": true
  1196. }
  1197. ]
  1198. },
  1199. "require": {
  1200. "nelexa/zip": "^3.3",
  1201. "php": ">=7.0.0",
  1202. "symfony/var-exporter": "^4.4.13"
  1203. },
  1204. "type": "library",
  1205. "extra": {
  1206. "think-config": {
  1207. "addons": "src/config.php"
  1208. }
  1209. },
  1210. "autoload": {
  1211. "psr-4": {
  1212. "think\\": "src/"
  1213. },
  1214. "files": [
  1215. "src/common.php"
  1216. ]
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "Apache-2.0"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Karson",
  1225. "email": "karson@fastadmin.net"
  1226. },
  1227. {
  1228. "name": "xiaobo.sun",
  1229. "email": "xiaobo.sun@qq.com"
  1230. }
  1231. ],
  1232. "description": "addons package for fastadmin",
  1233. "homepage": "https://github.com/karsonzhang/fastadmin-addons",
  1234. "time": "2021-07-19T08:10:11+00:00"
  1235. },
  1236. {
  1237. "name": "limen/redisun",
  1238. "version": "v2.0.3",
  1239. "source": {
  1240. "type": "git",
  1241. "url": "https://github.com/limen/redisun.git",
  1242. "reference": "c9c8f91a761b5e893415d28615f0bdf9dbc34fd4"
  1243. },
  1244. "dist": {
  1245. "type": "zip",
  1246. "url": "https://api.github.com/repos/limen/redisun/zipball/c9c8f91a761b5e893415d28615f0bdf9dbc34fd4",
  1247. "reference": "c9c8f91a761b5e893415d28615f0bdf9dbc34fd4",
  1248. "shasum": ""
  1249. },
  1250. "require": {
  1251. "php": ">=5.5",
  1252. "predis/predis": "^1.1"
  1253. },
  1254. "require-dev": {
  1255. "phpunit/phpunit": "~4.8"
  1256. },
  1257. "type": "library",
  1258. "autoload": {
  1259. "psr-4": {
  1260. "Limen\\Redisun\\": "src/"
  1261. }
  1262. },
  1263. "notification-url": "https://packagist.org/downloads/",
  1264. "license": [
  1265. "MIT"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "LI Mengxiang",
  1270. "email": "limengxiang876@gmail.com",
  1271. "homepage": "https://github.com/limen"
  1272. }
  1273. ],
  1274. "description": "Make redis manipulations easy. Unify commands for all data types.",
  1275. "homepage": "https://github.com/limen/redisun",
  1276. "keywords": [
  1277. "eval",
  1278. "lua",
  1279. "orm",
  1280. "redis",
  1281. "sql"
  1282. ],
  1283. "time": "2018-11-30T07:11:37+00:00"
  1284. },
  1285. {
  1286. "name": "lizhichao/one-sm",
  1287. "version": "1.10",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/lizhichao/sm.git",
  1291. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1296. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1297. "shasum": "",
  1298. "mirrors": [
  1299. {
  1300. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1301. "preferred": true
  1302. }
  1303. ]
  1304. },
  1305. "require": {
  1306. "php": ">=5.6"
  1307. },
  1308. "type": "library",
  1309. "autoload": {
  1310. "psr-4": {
  1311. "OneSm\\": "src/"
  1312. }
  1313. },
  1314. "notification-url": "https://packagist.org/downloads/",
  1315. "license": [
  1316. "Apache-2.0"
  1317. ],
  1318. "authors": [
  1319. {
  1320. "name": "tanszhe",
  1321. "email": "1018595261@qq.com"
  1322. }
  1323. ],
  1324. "description": "国密sm3",
  1325. "keywords": [
  1326. "php",
  1327. "sm3"
  1328. ],
  1329. "funding": [
  1330. {
  1331. "url": "https://www.vicsdf.com/img/w.jpg",
  1332. "type": "custom"
  1333. },
  1334. {
  1335. "url": "https://www.vicsdf.com/img/z.jpg",
  1336. "type": "custom"
  1337. }
  1338. ],
  1339. "time": "2021-05-26T06:19:22+00:00"
  1340. },
  1341. {
  1342. "name": "markbaker/complex",
  1343. "version": "1.5.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1347. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1352. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1353. "shasum": "",
  1354. "mirrors": [
  1355. {
  1356. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1357. "preferred": true
  1358. }
  1359. ]
  1360. },
  1361. "require": {
  1362. "php": "^5.6.0|^7.0"
  1363. },
  1364. "require-dev": {
  1365. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1366. "phpcompatibility/php-compatibility": "^9.0",
  1367. "phpdocumentor/phpdocumentor": "2.*",
  1368. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1369. "phpmd/phpmd": "2.*",
  1370. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1371. "sebastian/phpcpd": "2.*",
  1372. "squizlabs/php_codesniffer": "^3.4.0"
  1373. },
  1374. "type": "library",
  1375. "autoload": {
  1376. "psr-4": {
  1377. "Complex\\": "classes/src/"
  1378. },
  1379. "files": [
  1380. "classes/src/functions/abs.php",
  1381. "classes/src/functions/acos.php",
  1382. "classes/src/functions/acosh.php",
  1383. "classes/src/functions/acot.php",
  1384. "classes/src/functions/acoth.php",
  1385. "classes/src/functions/acsc.php",
  1386. "classes/src/functions/acsch.php",
  1387. "classes/src/functions/argument.php",
  1388. "classes/src/functions/asec.php",
  1389. "classes/src/functions/asech.php",
  1390. "classes/src/functions/asin.php",
  1391. "classes/src/functions/asinh.php",
  1392. "classes/src/functions/atan.php",
  1393. "classes/src/functions/atanh.php",
  1394. "classes/src/functions/conjugate.php",
  1395. "classes/src/functions/cos.php",
  1396. "classes/src/functions/cosh.php",
  1397. "classes/src/functions/cot.php",
  1398. "classes/src/functions/coth.php",
  1399. "classes/src/functions/csc.php",
  1400. "classes/src/functions/csch.php",
  1401. "classes/src/functions/exp.php",
  1402. "classes/src/functions/inverse.php",
  1403. "classes/src/functions/ln.php",
  1404. "classes/src/functions/log2.php",
  1405. "classes/src/functions/log10.php",
  1406. "classes/src/functions/negative.php",
  1407. "classes/src/functions/pow.php",
  1408. "classes/src/functions/rho.php",
  1409. "classes/src/functions/sec.php",
  1410. "classes/src/functions/sech.php",
  1411. "classes/src/functions/sin.php",
  1412. "classes/src/functions/sinh.php",
  1413. "classes/src/functions/sqrt.php",
  1414. "classes/src/functions/tan.php",
  1415. "classes/src/functions/tanh.php",
  1416. "classes/src/functions/theta.php",
  1417. "classes/src/operations/add.php",
  1418. "classes/src/operations/subtract.php",
  1419. "classes/src/operations/multiply.php",
  1420. "classes/src/operations/divideby.php",
  1421. "classes/src/operations/divideinto.php"
  1422. ]
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "MIT"
  1427. ],
  1428. "authors": [
  1429. {
  1430. "name": "Mark Baker",
  1431. "email": "mark@lange.demon.co.uk"
  1432. }
  1433. ],
  1434. "description": "PHP Class for working with complex numbers",
  1435. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1436. "keywords": [
  1437. "complex",
  1438. "mathematics"
  1439. ],
  1440. "time": "2020-08-26T19:47:57+00:00"
  1441. },
  1442. {
  1443. "name": "markbaker/matrix",
  1444. "version": "1.2.3",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1448. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1453. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": "^5.6.0|^7.0.0"
  1464. },
  1465. "require-dev": {
  1466. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1467. "phpcompatibility/php-compatibility": "dev-master",
  1468. "phploc/phploc": "^4",
  1469. "phpmd/phpmd": "dev-master",
  1470. "phpunit/phpunit": "^5.7|^6.0|7.0",
  1471. "sebastian/phpcpd": "^3.0",
  1472. "squizlabs/php_codesniffer": "^3.0@dev"
  1473. },
  1474. "type": "library",
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Matrix\\": "classes/src/"
  1478. },
  1479. "files": [
  1480. "classes/src/Functions/adjoint.php",
  1481. "classes/src/Functions/antidiagonal.php",
  1482. "classes/src/Functions/cofactors.php",
  1483. "classes/src/Functions/determinant.php",
  1484. "classes/src/Functions/diagonal.php",
  1485. "classes/src/Functions/identity.php",
  1486. "classes/src/Functions/inverse.php",
  1487. "classes/src/Functions/minors.php",
  1488. "classes/src/Functions/trace.php",
  1489. "classes/src/Functions/transpose.php",
  1490. "classes/src/Operations/add.php",
  1491. "classes/src/Operations/directsum.php",
  1492. "classes/src/Operations/subtract.php",
  1493. "classes/src/Operations/multiply.php",
  1494. "classes/src/Operations/divideby.php",
  1495. "classes/src/Operations/divideinto.php"
  1496. ]
  1497. },
  1498. "notification-url": "https://packagist.org/downloads/",
  1499. "license": [
  1500. "MIT"
  1501. ],
  1502. "authors": [
  1503. {
  1504. "name": "Mark Baker",
  1505. "email": "mark@lange.demon.co.uk"
  1506. }
  1507. ],
  1508. "description": "PHP Class for working with matrices",
  1509. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1510. "keywords": [
  1511. "mathematics",
  1512. "matrix",
  1513. "vector"
  1514. ],
  1515. "time": "2021-01-26T14:36:01+00:00"
  1516. },
  1517. {
  1518. "name": "monolog/monolog",
  1519. "version": "1.26.1",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/Seldaek/monolog.git",
  1523. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1528. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1529. "shasum": "",
  1530. "mirrors": [
  1531. {
  1532. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1533. "preferred": true
  1534. }
  1535. ]
  1536. },
  1537. "require": {
  1538. "php": ">=5.3.0",
  1539. "psr/log": "~1.0"
  1540. },
  1541. "provide": {
  1542. "psr/log-implementation": "1.0.0"
  1543. },
  1544. "require-dev": {
  1545. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1546. "doctrine/couchdb": "~1.0@dev",
  1547. "graylog2/gelf-php": "~1.0",
  1548. "php-amqplib/php-amqplib": "~2.4",
  1549. "php-console/php-console": "^3.1.3",
  1550. "phpstan/phpstan": "^0.12.59",
  1551. "phpunit/phpunit": "~4.5",
  1552. "ruflin/elastica": ">=0.90 <3.0",
  1553. "sentry/sentry": "^0.13",
  1554. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1555. },
  1556. "suggest": {
  1557. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1558. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1559. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1560. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1561. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1562. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1563. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1564. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1565. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1566. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1567. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1568. },
  1569. "type": "library",
  1570. "autoload": {
  1571. "psr-4": {
  1572. "Monolog\\": "src/Monolog"
  1573. }
  1574. },
  1575. "notification-url": "https://packagist.org/downloads/",
  1576. "license": [
  1577. "MIT"
  1578. ],
  1579. "authors": [
  1580. {
  1581. "name": "Jordi Boggiano",
  1582. "email": "j.boggiano@seld.be",
  1583. "homepage": "http://seld.be"
  1584. }
  1585. ],
  1586. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1587. "homepage": "http://github.com/Seldaek/monolog",
  1588. "keywords": [
  1589. "log",
  1590. "logging",
  1591. "psr-3"
  1592. ],
  1593. "funding": [
  1594. {
  1595. "url": "https://github.com/Seldaek",
  1596. "type": "github"
  1597. },
  1598. {
  1599. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1600. "type": "tidelift"
  1601. }
  1602. ],
  1603. "time": "2021-05-28T08:32:12+00:00"
  1604. },
  1605. {
  1606. "name": "mtdowling/jmespath.php",
  1607. "version": "2.6.1",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/jmespath/jmespath.php.git",
  1611. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1616. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1617. "shasum": "",
  1618. "mirrors": [
  1619. {
  1620. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1621. "preferred": true
  1622. }
  1623. ]
  1624. },
  1625. "require": {
  1626. "php": "^5.4 || ^7.0 || ^8.0",
  1627. "symfony/polyfill-mbstring": "^1.17"
  1628. },
  1629. "require-dev": {
  1630. "composer/xdebug-handler": "^1.4 || ^2.0",
  1631. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1632. },
  1633. "bin": [
  1634. "bin/jp.php"
  1635. ],
  1636. "type": "library",
  1637. "extra": {
  1638. "branch-alias": {
  1639. "dev-master": "2.6-dev"
  1640. }
  1641. },
  1642. "autoload": {
  1643. "psr-4": {
  1644. "JmesPath\\": "src/"
  1645. },
  1646. "files": [
  1647. "src/JmesPath.php"
  1648. ]
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Michael Dowling",
  1657. "email": "mtdowling@gmail.com",
  1658. "homepage": "https://github.com/mtdowling"
  1659. }
  1660. ],
  1661. "description": "Declaratively specify how to extract elements from a JSON document",
  1662. "keywords": [
  1663. "json",
  1664. "jsonpath"
  1665. ],
  1666. "time": "2021-06-14T00:11:39+00:00"
  1667. },
  1668. {
  1669. "name": "nelexa/zip",
  1670. "version": "3.3.3",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/Ne-Lexa/php-zip.git",
  1674. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/Ne-Lexa/php-zip/zipball/501b52f6fc393a599b44ff348a42740e1eaac7c6",
  1679. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6",
  1680. "shasum": "",
  1681. "mirrors": [
  1682. {
  1683. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1684. "preferred": true
  1685. }
  1686. ]
  1687. },
  1688. "require": {
  1689. "ext-zlib": "*",
  1690. "paragonie/random_compat": "*",
  1691. "php": "^5.5.9 || ^7.0",
  1692. "psr/http-message": "^1.0",
  1693. "symfony/finder": "^3.0|^4.0|^5.0"
  1694. },
  1695. "require-dev": {
  1696. "ext-bz2": "*",
  1697. "ext-fileinfo": "*",
  1698. "ext-openssl": "*",
  1699. "ext-xml": "*",
  1700. "guzzlehttp/psr7": "^1.6",
  1701. "phpunit/phpunit": "^4.8|^5.7",
  1702. "symfony/var-dumper": "^3.0|^4.0|^5.0"
  1703. },
  1704. "suggest": {
  1705. "ext-bz2": "Needed to support BZIP2 compression",
  1706. "ext-fileinfo": "Needed to get mime-type file",
  1707. "ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
  1708. "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
  1709. },
  1710. "type": "library",
  1711. "autoload": {
  1712. "psr-4": {
  1713. "PhpZip\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Ne-Lexa",
  1723. "email": "alexey@nelexa.ru",
  1724. "role": "Developer"
  1725. }
  1726. ],
  1727. "description": "PhpZip is a php-library for extended work with ZIP-archives. Open, create, update, delete, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, ZipAlign tool, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
  1728. "homepage": "https://github.com/Ne-Lexa/php-zip",
  1729. "keywords": [
  1730. "archive",
  1731. "extract",
  1732. "unzip",
  1733. "winzip",
  1734. "zip",
  1735. "zipalign",
  1736. "ziparchive"
  1737. ],
  1738. "time": "2020-07-11T21:01:42+00:00"
  1739. },
  1740. {
  1741. "name": "overtrue/pinyin",
  1742. "version": "3.0.6",
  1743. "source": {
  1744. "type": "git",
  1745. "url": "https://github.com/overtrue/pinyin.git",
  1746. "reference": "3b781d267197b74752daa32814d3a2cf5d140779"
  1747. },
  1748. "dist": {
  1749. "type": "zip",
  1750. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/3b781d267197b74752daa32814d3a2cf5d140779",
  1751. "reference": "3b781d267197b74752daa32814d3a2cf5d140779",
  1752. "shasum": "",
  1753. "mirrors": [
  1754. {
  1755. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1756. "preferred": true
  1757. }
  1758. ]
  1759. },
  1760. "require": {
  1761. "php": ">=5.3"
  1762. },
  1763. "require-dev": {
  1764. "phpunit/phpunit": "~4.8"
  1765. },
  1766. "type": "library",
  1767. "autoload": {
  1768. "psr-4": {
  1769. "Overtrue\\Pinyin\\": "src/"
  1770. }
  1771. },
  1772. "notification-url": "https://packagist.org/downloads/",
  1773. "license": [
  1774. "MIT"
  1775. ],
  1776. "authors": [
  1777. {
  1778. "name": "Carlos",
  1779. "homepage": "http://github.com/overtrue"
  1780. }
  1781. ],
  1782. "description": "Chinese to pinyin translator.",
  1783. "homepage": "https://github.com/overtrue/pinyin",
  1784. "keywords": [
  1785. "Chinese",
  1786. "Pinyin",
  1787. "cn2pinyin"
  1788. ],
  1789. "time": "2017-07-10T07:20:01+00:00"
  1790. },
  1791. {
  1792. "name": "overtrue/socialite",
  1793. "version": "2.0.24",
  1794. "source": {
  1795. "type": "git",
  1796. "url": "https://github.com/overtrue/socialite.git",
  1797. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  1798. },
  1799. "dist": {
  1800. "type": "zip",
  1801. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1802. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1803. "shasum": "",
  1804. "mirrors": [
  1805. {
  1806. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1807. "preferred": true
  1808. }
  1809. ]
  1810. },
  1811. "require": {
  1812. "ext-json": "*",
  1813. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  1814. "php": ">=5.6",
  1815. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  1816. },
  1817. "require-dev": {
  1818. "mockery/mockery": "~1.2",
  1819. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  1820. },
  1821. "type": "library",
  1822. "autoload": {
  1823. "psr-4": {
  1824. "Overtrue\\Socialite\\": "src/"
  1825. }
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "authors": [
  1832. {
  1833. "name": "overtrue",
  1834. "email": "anzhengchao@gmail.com"
  1835. }
  1836. ],
  1837. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1838. "keywords": [
  1839. "login",
  1840. "oauth",
  1841. "qq",
  1842. "social",
  1843. "wechat",
  1844. "weibo"
  1845. ],
  1846. "funding": [
  1847. {
  1848. "url": "https://www.patreon.com/overtrue",
  1849. "type": "patreon"
  1850. }
  1851. ],
  1852. "time": "2021-05-13T16:04:48+00:00"
  1853. },
  1854. {
  1855. "name": "overtrue/wechat",
  1856. "version": "4.2.11",
  1857. "source": {
  1858. "type": "git",
  1859. "url": "https://github.com/w7corp/easywechat.git",
  1860. "reference": "853e0772e6aa53a71edf1b5d251c7ff1e6b2a2bf"
  1861. },
  1862. "dist": {
  1863. "type": "zip",
  1864. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/853e0772e6aa53a71edf1b5d251c7ff1e6b2a2bf",
  1865. "reference": "853e0772e6aa53a71edf1b5d251c7ff1e6b2a2bf",
  1866. "shasum": "",
  1867. "mirrors": [
  1868. {
  1869. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1870. "preferred": true
  1871. }
  1872. ]
  1873. },
  1874. "require": {
  1875. "easywechat-composer/easywechat-composer": "^1.1",
  1876. "ext-fileinfo": "*",
  1877. "ext-openssl": "*",
  1878. "ext-simplexml": "*",
  1879. "guzzlehttp/guzzle": "^6.2",
  1880. "monolog/monolog": "^1.22 || ^2.0",
  1881. "overtrue/socialite": "~2.0",
  1882. "php": ">=7.1",
  1883. "pimple/pimple": "^3.0",
  1884. "psr/simple-cache": "^1.0",
  1885. "symfony/cache": "^3.3 || ^4.3",
  1886. "symfony/event-dispatcher": "^4.3",
  1887. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0",
  1888. "symfony/psr-http-message-bridge": "^0.3 || ^1.0"
  1889. },
  1890. "require-dev": {
  1891. "friendsofphp/php-cs-fixer": "^2.15",
  1892. "mikey179/vfsstream": "^1.6",
  1893. "mockery/mockery": "^1.2.3",
  1894. "phpstan/phpstan": "^0.11.12",
  1895. "phpunit/phpunit": "^7.5"
  1896. },
  1897. "type": "library",
  1898. "autoload": {
  1899. "psr-4": {
  1900. "EasyWeChat\\": "src/"
  1901. },
  1902. "files": [
  1903. "src/Kernel/Support/Helpers.php",
  1904. "src/Kernel/Helpers.php"
  1905. ]
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "overtrue",
  1914. "email": "anzhengchao@gmail.com"
  1915. }
  1916. ],
  1917. "description": "微信SDK",
  1918. "keywords": [
  1919. "sdk",
  1920. "wechat",
  1921. "weixin",
  1922. "weixin-sdk"
  1923. ],
  1924. "time": "2019-11-27T16:38:00+00:00"
  1925. },
  1926. {
  1927. "name": "paragonie/random_compat",
  1928. "version": "v9.99.100",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/paragonie/random_compat.git",
  1932. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1937. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1938. "shasum": "",
  1939. "mirrors": [
  1940. {
  1941. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1942. "preferred": true
  1943. }
  1944. ]
  1945. },
  1946. "require": {
  1947. "php": ">= 7"
  1948. },
  1949. "require-dev": {
  1950. "phpunit/phpunit": "4.*|5.*",
  1951. "vimeo/psalm": "^1"
  1952. },
  1953. "suggest": {
  1954. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1955. },
  1956. "type": "library",
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "MIT"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Paragon Initiative Enterprises",
  1964. "email": "security@paragonie.com",
  1965. "homepage": "https://paragonie.com"
  1966. }
  1967. ],
  1968. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1969. "keywords": [
  1970. "csprng",
  1971. "polyfill",
  1972. "pseudorandom",
  1973. "random"
  1974. ],
  1975. "time": "2020-10-15T08:29:30+00:00"
  1976. },
  1977. {
  1978. "name": "phpoffice/phpspreadsheet",
  1979. "version": "1.12.0",
  1980. "source": {
  1981. "type": "git",
  1982. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1983. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd"
  1984. },
  1985. "dist": {
  1986. "type": "zip",
  1987. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  1988. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  1989. "shasum": "",
  1990. "mirrors": [
  1991. {
  1992. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1993. "preferred": true
  1994. }
  1995. ]
  1996. },
  1997. "require": {
  1998. "ext-ctype": "*",
  1999. "ext-dom": "*",
  2000. "ext-fileinfo": "*",
  2001. "ext-gd": "*",
  2002. "ext-iconv": "*",
  2003. "ext-libxml": "*",
  2004. "ext-mbstring": "*",
  2005. "ext-simplexml": "*",
  2006. "ext-xml": "*",
  2007. "ext-xmlreader": "*",
  2008. "ext-xmlwriter": "*",
  2009. "ext-zip": "*",
  2010. "ext-zlib": "*",
  2011. "markbaker/complex": "^1.4",
  2012. "markbaker/matrix": "^1.2",
  2013. "php": "^7.1",
  2014. "psr/simple-cache": "^1.0"
  2015. },
  2016. "require-dev": {
  2017. "dompdf/dompdf": "^0.8.3",
  2018. "friendsofphp/php-cs-fixer": "^2.16",
  2019. "jpgraph/jpgraph": "^4.0",
  2020. "mpdf/mpdf": "^8.0",
  2021. "phpcompatibility/php-compatibility": "^9.3",
  2022. "phpunit/phpunit": "^7.5",
  2023. "squizlabs/php_codesniffer": "^3.5",
  2024. "tecnickcom/tcpdf": "^6.3"
  2025. },
  2026. "suggest": {
  2027. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2028. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2029. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2030. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2031. },
  2032. "type": "library",
  2033. "autoload": {
  2034. "psr-4": {
  2035. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2036. }
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Maarten Balliauw",
  2045. "homepage": "https://blog.maartenballiauw.be"
  2046. },
  2047. {
  2048. "name": "Mark Baker",
  2049. "homepage": "https://markbakeruk.net"
  2050. },
  2051. {
  2052. "name": "Franck Lefevre",
  2053. "homepage": "https://rootslabs.net"
  2054. },
  2055. {
  2056. "name": "Erik Tilt"
  2057. },
  2058. {
  2059. "name": "Adrien Crivelli"
  2060. }
  2061. ],
  2062. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2063. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2064. "keywords": [
  2065. "OpenXML",
  2066. "excel",
  2067. "gnumeric",
  2068. "ods",
  2069. "php",
  2070. "spreadsheet",
  2071. "xls",
  2072. "xlsx"
  2073. ],
  2074. "time": "2020-04-27T08:12:48+00:00"
  2075. },
  2076. {
  2077. "name": "pimple/pimple",
  2078. "version": "v3.2.3",
  2079. "source": {
  2080. "type": "git",
  2081. "url": "https://github.com/silexphp/Pimple.git",
  2082. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  2083. },
  2084. "dist": {
  2085. "type": "zip",
  2086. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  2087. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  2088. "shasum": "",
  2089. "mirrors": [
  2090. {
  2091. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2092. "preferred": true
  2093. }
  2094. ]
  2095. },
  2096. "require": {
  2097. "php": ">=5.3.0",
  2098. "psr/container": "^1.0"
  2099. },
  2100. "require-dev": {
  2101. "symfony/phpunit-bridge": "^3.2"
  2102. },
  2103. "type": "library",
  2104. "extra": {
  2105. "branch-alias": {
  2106. "dev-master": "3.2.x-dev"
  2107. }
  2108. },
  2109. "autoload": {
  2110. "psr-0": {
  2111. "Pimple": "src/"
  2112. }
  2113. },
  2114. "notification-url": "https://packagist.org/downloads/",
  2115. "license": [
  2116. "MIT"
  2117. ],
  2118. "authors": [
  2119. {
  2120. "name": "Fabien Potencier",
  2121. "email": "fabien@symfony.com"
  2122. }
  2123. ],
  2124. "description": "Pimple, a simple Dependency Injection Container",
  2125. "homepage": "http://pimple.sensiolabs.org",
  2126. "keywords": [
  2127. "container",
  2128. "dependency injection"
  2129. ],
  2130. "time": "2018-01-21T07:42:36+00:00"
  2131. },
  2132. {
  2133. "name": "predis/predis",
  2134. "version": "v1.1.9",
  2135. "source": {
  2136. "type": "git",
  2137. "url": "https://github.com/predis/predis.git",
  2138. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259"
  2139. },
  2140. "dist": {
  2141. "type": "zip",
  2142. "url": "https://api.github.com/repos/predis/predis/zipball/c50c3393bb9f47fa012d0cdfb727a266b0818259",
  2143. "reference": "c50c3393bb9f47fa012d0cdfb727a266b0818259",
  2144. "shasum": ""
  2145. },
  2146. "require": {
  2147. "php": ">=5.3.9"
  2148. },
  2149. "require-dev": {
  2150. "phpunit/phpunit": "~4.8"
  2151. },
  2152. "suggest": {
  2153. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2154. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2155. },
  2156. "type": "library",
  2157. "autoload": {
  2158. "psr-4": {
  2159. "Predis\\": "src/"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Daniele Alessandri",
  2169. "email": "suppakilla@gmail.com",
  2170. "homepage": "http://clorophilla.net",
  2171. "role": "Creator & Maintainer"
  2172. },
  2173. {
  2174. "name": "Till Krüss",
  2175. "homepage": "https://till.im",
  2176. "role": "Maintainer"
  2177. }
  2178. ],
  2179. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2180. "homepage": "http://github.com/predis/predis",
  2181. "keywords": [
  2182. "nosql",
  2183. "predis",
  2184. "redis"
  2185. ],
  2186. "funding": [
  2187. {
  2188. "url": "https://github.com/sponsors/tillkruss",
  2189. "type": "github"
  2190. }
  2191. ],
  2192. "time": "2021-10-05T19:02:38+00:00"
  2193. },
  2194. {
  2195. "name": "psr/cache",
  2196. "version": "1.0.1",
  2197. "source": {
  2198. "type": "git",
  2199. "url": "https://github.com/php-fig/cache.git",
  2200. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2201. },
  2202. "dist": {
  2203. "type": "zip",
  2204. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2205. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2206. "shasum": "",
  2207. "mirrors": [
  2208. {
  2209. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2210. "preferred": true
  2211. }
  2212. ]
  2213. },
  2214. "require": {
  2215. "php": ">=5.3.0"
  2216. },
  2217. "type": "library",
  2218. "extra": {
  2219. "branch-alias": {
  2220. "dev-master": "1.0.x-dev"
  2221. }
  2222. },
  2223. "autoload": {
  2224. "psr-4": {
  2225. "Psr\\Cache\\": "src/"
  2226. }
  2227. },
  2228. "notification-url": "https://packagist.org/downloads/",
  2229. "license": [
  2230. "MIT"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "PHP-FIG",
  2235. "homepage": "http://www.php-fig.org/"
  2236. }
  2237. ],
  2238. "description": "Common interface for caching libraries",
  2239. "keywords": [
  2240. "cache",
  2241. "psr",
  2242. "psr-6"
  2243. ],
  2244. "time": "2016-08-06T20:24:11+00:00"
  2245. },
  2246. {
  2247. "name": "psr/container",
  2248. "version": "1.0.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/php-fig/container.git",
  2252. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2257. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "php": ">=5.3.0"
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "branch-alias": {
  2272. "dev-master": "1.0.x-dev"
  2273. }
  2274. },
  2275. "autoload": {
  2276. "psr-4": {
  2277. "Psr\\Container\\": "src/"
  2278. }
  2279. },
  2280. "notification-url": "https://packagist.org/downloads/",
  2281. "license": [
  2282. "MIT"
  2283. ],
  2284. "authors": [
  2285. {
  2286. "name": "PHP-FIG",
  2287. "homepage": "http://www.php-fig.org/"
  2288. }
  2289. ],
  2290. "description": "Common Container Interface (PHP FIG PSR-11)",
  2291. "homepage": "https://github.com/php-fig/container",
  2292. "keywords": [
  2293. "PSR-11",
  2294. "container",
  2295. "container-interface",
  2296. "container-interop",
  2297. "psr"
  2298. ],
  2299. "time": "2017-02-14T16:28:37+00:00"
  2300. },
  2301. {
  2302. "name": "psr/http-message",
  2303. "version": "1.0.1",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/php-fig/http-message.git",
  2307. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2312. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2313. "shasum": "",
  2314. "mirrors": [
  2315. {
  2316. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2317. "preferred": true
  2318. }
  2319. ]
  2320. },
  2321. "require": {
  2322. "php": ">=5.3.0"
  2323. },
  2324. "type": "library",
  2325. "extra": {
  2326. "branch-alias": {
  2327. "dev-master": "1.0.x-dev"
  2328. }
  2329. },
  2330. "autoload": {
  2331. "psr-4": {
  2332. "Psr\\Http\\Message\\": "src/"
  2333. }
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "MIT"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "PHP-FIG",
  2342. "homepage": "http://www.php-fig.org/"
  2343. }
  2344. ],
  2345. "description": "Common interface for HTTP messages",
  2346. "homepage": "https://github.com/php-fig/http-message",
  2347. "keywords": [
  2348. "http",
  2349. "http-message",
  2350. "psr",
  2351. "psr-7",
  2352. "request",
  2353. "response"
  2354. ],
  2355. "time": "2016-08-06T14:39:51+00:00"
  2356. },
  2357. {
  2358. "name": "psr/log",
  2359. "version": "1.1.4",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/php-fig/log.git",
  2363. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2368. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2369. "shasum": "",
  2370. "mirrors": [
  2371. {
  2372. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2373. "preferred": true
  2374. }
  2375. ]
  2376. },
  2377. "require": {
  2378. "php": ">=5.3.0"
  2379. },
  2380. "type": "library",
  2381. "extra": {
  2382. "branch-alias": {
  2383. "dev-master": "1.1.x-dev"
  2384. }
  2385. },
  2386. "autoload": {
  2387. "psr-4": {
  2388. "Psr\\Log\\": "Psr/Log/"
  2389. }
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "MIT"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "PHP-FIG",
  2398. "homepage": "https://www.php-fig.org/"
  2399. }
  2400. ],
  2401. "description": "Common interface for logging libraries",
  2402. "homepage": "https://github.com/php-fig/log",
  2403. "keywords": [
  2404. "log",
  2405. "psr",
  2406. "psr-3"
  2407. ],
  2408. "time": "2021-05-03T11:20:27+00:00"
  2409. },
  2410. {
  2411. "name": "psr/simple-cache",
  2412. "version": "1.0.1",
  2413. "source": {
  2414. "type": "git",
  2415. "url": "https://github.com/php-fig/simple-cache.git",
  2416. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2417. },
  2418. "dist": {
  2419. "type": "zip",
  2420. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2421. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2422. "shasum": "",
  2423. "mirrors": [
  2424. {
  2425. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2426. "preferred": true
  2427. }
  2428. ]
  2429. },
  2430. "require": {
  2431. "php": ">=5.3.0"
  2432. },
  2433. "type": "library",
  2434. "extra": {
  2435. "branch-alias": {
  2436. "dev-master": "1.0.x-dev"
  2437. }
  2438. },
  2439. "autoload": {
  2440. "psr-4": {
  2441. "Psr\\SimpleCache\\": "src/"
  2442. }
  2443. },
  2444. "notification-url": "https://packagist.org/downloads/",
  2445. "license": [
  2446. "MIT"
  2447. ],
  2448. "authors": [
  2449. {
  2450. "name": "PHP-FIG",
  2451. "homepage": "http://www.php-fig.org/"
  2452. }
  2453. ],
  2454. "description": "Common interfaces for simple caching",
  2455. "keywords": [
  2456. "cache",
  2457. "caching",
  2458. "psr",
  2459. "psr-16",
  2460. "simple-cache"
  2461. ],
  2462. "time": "2017-10-23T01:57:42+00:00"
  2463. },
  2464. {
  2465. "name": "ralouphie/getallheaders",
  2466. "version": "3.0.3",
  2467. "source": {
  2468. "type": "git",
  2469. "url": "https://github.com/ralouphie/getallheaders.git",
  2470. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2471. },
  2472. "dist": {
  2473. "type": "zip",
  2474. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2475. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2476. "shasum": "",
  2477. "mirrors": [
  2478. {
  2479. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2480. "preferred": true
  2481. }
  2482. ]
  2483. },
  2484. "require": {
  2485. "php": ">=5.6"
  2486. },
  2487. "require-dev": {
  2488. "php-coveralls/php-coveralls": "^2.1",
  2489. "phpunit/phpunit": "^5 || ^6.5"
  2490. },
  2491. "type": "library",
  2492. "autoload": {
  2493. "files": [
  2494. "src/getallheaders.php"
  2495. ]
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "MIT"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "Ralph Khattar",
  2504. "email": "ralph.khattar@gmail.com"
  2505. }
  2506. ],
  2507. "description": "A polyfill for getallheaders.",
  2508. "time": "2019-03-08T08:55:37+00:00"
  2509. },
  2510. {
  2511. "name": "symfony/cache",
  2512. "version": "v4.4.27",
  2513. "source": {
  2514. "type": "git",
  2515. "url": "https://github.com/symfony/cache.git",
  2516. "reference": "49002c15f3e26b13c7d36c6ffe5d597ef6719cc1"
  2517. },
  2518. "dist": {
  2519. "type": "zip",
  2520. "url": "https://api.github.com/repos/symfony/cache/zipball/49002c15f3e26b13c7d36c6ffe5d597ef6719cc1",
  2521. "reference": "49002c15f3e26b13c7d36c6ffe5d597ef6719cc1",
  2522. "shasum": "",
  2523. "mirrors": [
  2524. {
  2525. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2526. "preferred": true
  2527. }
  2528. ]
  2529. },
  2530. "require": {
  2531. "php": ">=7.1.3",
  2532. "psr/cache": "^1.0|^2.0",
  2533. "psr/log": "^1|^2|^3",
  2534. "symfony/cache-contracts": "^1.1.7|^2",
  2535. "symfony/polyfill-php80": "^1.16",
  2536. "symfony/service-contracts": "^1.1|^2",
  2537. "symfony/var-exporter": "^4.2|^5.0"
  2538. },
  2539. "conflict": {
  2540. "doctrine/dbal": "<2.6",
  2541. "symfony/dependency-injection": "<3.4",
  2542. "symfony/http-kernel": "<4.4|>=5.0",
  2543. "symfony/var-dumper": "<4.4"
  2544. },
  2545. "provide": {
  2546. "psr/cache-implementation": "1.0|2.0",
  2547. "psr/simple-cache-implementation": "1.0",
  2548. "symfony/cache-implementation": "1.0|2.0"
  2549. },
  2550. "require-dev": {
  2551. "cache/integration-tests": "dev-master",
  2552. "doctrine/cache": "^1.6|^2.0",
  2553. "doctrine/dbal": "^2.6|^3.0",
  2554. "predis/predis": "^1.1",
  2555. "psr/simple-cache": "^1.0",
  2556. "symfony/config": "^4.2|^5.0",
  2557. "symfony/dependency-injection": "^3.4|^4.1|^5.0",
  2558. "symfony/filesystem": "^4.4|^5.0",
  2559. "symfony/http-kernel": "^4.4",
  2560. "symfony/var-dumper": "^4.4|^5.0"
  2561. },
  2562. "type": "library",
  2563. "autoload": {
  2564. "psr-4": {
  2565. "Symfony\\Component\\Cache\\": ""
  2566. },
  2567. "exclude-from-classmap": [
  2568. "/Tests/"
  2569. ]
  2570. },
  2571. "notification-url": "https://packagist.org/downloads/",
  2572. "license": [
  2573. "MIT"
  2574. ],
  2575. "authors": [
  2576. {
  2577. "name": "Nicolas Grekas",
  2578. "email": "p@tchwork.com"
  2579. },
  2580. {
  2581. "name": "Symfony Community",
  2582. "homepage": "https://symfony.com/contributors"
  2583. }
  2584. ],
  2585. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2586. "homepage": "https://symfony.com",
  2587. "keywords": [
  2588. "caching",
  2589. "psr6"
  2590. ],
  2591. "funding": [
  2592. {
  2593. "url": "https://symfony.com/sponsor",
  2594. "type": "custom"
  2595. },
  2596. {
  2597. "url": "https://github.com/fabpot",
  2598. "type": "github"
  2599. },
  2600. {
  2601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2602. "type": "tidelift"
  2603. }
  2604. ],
  2605. "time": "2021-07-23T15:41:52+00:00"
  2606. },
  2607. {
  2608. "name": "symfony/cache-contracts",
  2609. "version": "v1.1.10",
  2610. "source": {
  2611. "type": "git",
  2612. "url": "https://github.com/symfony/cache-contracts.git",
  2613. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7"
  2614. },
  2615. "dist": {
  2616. "type": "zip",
  2617. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  2618. "reference": "8d5489c10ef90aa7413e4921fc3c0520e24cbed7",
  2619. "shasum": "",
  2620. "mirrors": [
  2621. {
  2622. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2623. "preferred": true
  2624. }
  2625. ]
  2626. },
  2627. "require": {
  2628. "php": ">=7.1.3",
  2629. "psr/cache": "^1.0"
  2630. },
  2631. "suggest": {
  2632. "symfony/cache-implementation": ""
  2633. },
  2634. "type": "library",
  2635. "extra": {
  2636. "branch-alias": {
  2637. "dev-master": "1.1-dev"
  2638. },
  2639. "thanks": {
  2640. "name": "symfony/contracts",
  2641. "url": "https://github.com/symfony/contracts"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "psr-4": {
  2646. "Symfony\\Contracts\\Cache\\": ""
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Nicolas Grekas",
  2656. "email": "p@tchwork.com"
  2657. },
  2658. {
  2659. "name": "Symfony Community",
  2660. "homepage": "https://symfony.com/contributors"
  2661. }
  2662. ],
  2663. "description": "Generic abstractions related to caching",
  2664. "homepage": "https://symfony.com",
  2665. "keywords": [
  2666. "abstractions",
  2667. "contracts",
  2668. "decoupling",
  2669. "interfaces",
  2670. "interoperability",
  2671. "standards"
  2672. ],
  2673. "funding": [
  2674. {
  2675. "url": "https://symfony.com/sponsor",
  2676. "type": "custom"
  2677. },
  2678. {
  2679. "url": "https://github.com/fabpot",
  2680. "type": "github"
  2681. },
  2682. {
  2683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2684. "type": "tidelift"
  2685. }
  2686. ],
  2687. "time": "2020-09-02T16:08:58+00:00"
  2688. },
  2689. {
  2690. "name": "symfony/event-dispatcher",
  2691. "version": "v4.4.27",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/symfony/event-dispatcher.git",
  2695. "reference": "958a128b184fcf0ba45ec90c0e88554c9327c2e9"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/958a128b184fcf0ba45ec90c0e88554c9327c2e9",
  2700. "reference": "958a128b184fcf0ba45ec90c0e88554c9327c2e9",
  2701. "shasum": "",
  2702. "mirrors": [
  2703. {
  2704. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2705. "preferred": true
  2706. }
  2707. ]
  2708. },
  2709. "require": {
  2710. "php": ">=7.1.3",
  2711. "symfony/event-dispatcher-contracts": "^1.1",
  2712. "symfony/polyfill-php80": "^1.16"
  2713. },
  2714. "conflict": {
  2715. "symfony/dependency-injection": "<3.4"
  2716. },
  2717. "provide": {
  2718. "psr/event-dispatcher-implementation": "1.0",
  2719. "symfony/event-dispatcher-implementation": "1.1"
  2720. },
  2721. "require-dev": {
  2722. "psr/log": "^1|^2|^3",
  2723. "symfony/config": "^3.4|^4.0|^5.0",
  2724. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2725. "symfony/error-handler": "~3.4|~4.4",
  2726. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2727. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2728. "symfony/service-contracts": "^1.1|^2",
  2729. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2730. },
  2731. "suggest": {
  2732. "symfony/dependency-injection": "",
  2733. "symfony/http-kernel": ""
  2734. },
  2735. "type": "library",
  2736. "autoload": {
  2737. "psr-4": {
  2738. "Symfony\\Component\\EventDispatcher\\": ""
  2739. },
  2740. "exclude-from-classmap": [
  2741. "/Tests/"
  2742. ]
  2743. },
  2744. "notification-url": "https://packagist.org/downloads/",
  2745. "license": [
  2746. "MIT"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "Fabien Potencier",
  2751. "email": "fabien@symfony.com"
  2752. },
  2753. {
  2754. "name": "Symfony Community",
  2755. "homepage": "https://symfony.com/contributors"
  2756. }
  2757. ],
  2758. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2759. "homepage": "https://symfony.com",
  2760. "funding": [
  2761. {
  2762. "url": "https://symfony.com/sponsor",
  2763. "type": "custom"
  2764. },
  2765. {
  2766. "url": "https://github.com/fabpot",
  2767. "type": "github"
  2768. },
  2769. {
  2770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2771. "type": "tidelift"
  2772. }
  2773. ],
  2774. "time": "2021-07-23T15:41:52+00:00"
  2775. },
  2776. {
  2777. "name": "symfony/event-dispatcher-contracts",
  2778. "version": "v1.1.9",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2782. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  2787. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  2788. "shasum": "",
  2789. "mirrors": [
  2790. {
  2791. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2792. "preferred": true
  2793. }
  2794. ]
  2795. },
  2796. "require": {
  2797. "php": ">=7.1.3"
  2798. },
  2799. "suggest": {
  2800. "psr/event-dispatcher": "",
  2801. "symfony/event-dispatcher-implementation": ""
  2802. },
  2803. "type": "library",
  2804. "extra": {
  2805. "branch-alias": {
  2806. "dev-master": "1.1-dev"
  2807. },
  2808. "thanks": {
  2809. "name": "symfony/contracts",
  2810. "url": "https://github.com/symfony/contracts"
  2811. }
  2812. },
  2813. "autoload": {
  2814. "psr-4": {
  2815. "Symfony\\Contracts\\EventDispatcher\\": ""
  2816. }
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "MIT"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "Nicolas Grekas",
  2825. "email": "p@tchwork.com"
  2826. },
  2827. {
  2828. "name": "Symfony Community",
  2829. "homepage": "https://symfony.com/contributors"
  2830. }
  2831. ],
  2832. "description": "Generic abstractions related to dispatching event",
  2833. "homepage": "https://symfony.com",
  2834. "keywords": [
  2835. "abstractions",
  2836. "contracts",
  2837. "decoupling",
  2838. "interfaces",
  2839. "interoperability",
  2840. "standards"
  2841. ],
  2842. "funding": [
  2843. {
  2844. "url": "https://symfony.com/sponsor",
  2845. "type": "custom"
  2846. },
  2847. {
  2848. "url": "https://github.com/fabpot",
  2849. "type": "github"
  2850. },
  2851. {
  2852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2853. "type": "tidelift"
  2854. }
  2855. ],
  2856. "time": "2020-07-06T13:19:58+00:00"
  2857. },
  2858. {
  2859. "name": "symfony/finder",
  2860. "version": "v4.4.27",
  2861. "source": {
  2862. "type": "git",
  2863. "url": "https://github.com/symfony/finder.git",
  2864. "reference": "42414d7ac96fc2880a783b872185789dea0d4262"
  2865. },
  2866. "dist": {
  2867. "type": "zip",
  2868. "url": "https://api.github.com/repos/symfony/finder/zipball/42414d7ac96fc2880a783b872185789dea0d4262",
  2869. "reference": "42414d7ac96fc2880a783b872185789dea0d4262",
  2870. "shasum": "",
  2871. "mirrors": [
  2872. {
  2873. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2874. "preferred": true
  2875. }
  2876. ]
  2877. },
  2878. "require": {
  2879. "php": ">=7.1.3",
  2880. "symfony/polyfill-php80": "^1.16"
  2881. },
  2882. "type": "library",
  2883. "autoload": {
  2884. "psr-4": {
  2885. "Symfony\\Component\\Finder\\": ""
  2886. },
  2887. "exclude-from-classmap": [
  2888. "/Tests/"
  2889. ]
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "MIT"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "Fabien Potencier",
  2898. "email": "fabien@symfony.com"
  2899. },
  2900. {
  2901. "name": "Symfony Community",
  2902. "homepage": "https://symfony.com/contributors"
  2903. }
  2904. ],
  2905. "description": "Finds files and directories via an intuitive fluent interface",
  2906. "homepage": "https://symfony.com",
  2907. "funding": [
  2908. {
  2909. "url": "https://symfony.com/sponsor",
  2910. "type": "custom"
  2911. },
  2912. {
  2913. "url": "https://github.com/fabpot",
  2914. "type": "github"
  2915. },
  2916. {
  2917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2918. "type": "tidelift"
  2919. }
  2920. ],
  2921. "time": "2021-07-23T15:41:52+00:00"
  2922. },
  2923. {
  2924. "name": "symfony/http-foundation",
  2925. "version": "v4.4.29",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://github.com/symfony/http-foundation.git",
  2929. "reference": "7016057b01f0ed3ec3ba1f31a580b6661667c2e1"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7016057b01f0ed3ec3ba1f31a580b6661667c2e1",
  2934. "reference": "7016057b01f0ed3ec3ba1f31a580b6661667c2e1",
  2935. "shasum": "",
  2936. "mirrors": [
  2937. {
  2938. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2939. "preferred": true
  2940. }
  2941. ]
  2942. },
  2943. "require": {
  2944. "php": ">=7.1.3",
  2945. "symfony/mime": "^4.3|^5.0",
  2946. "symfony/polyfill-mbstring": "~1.1",
  2947. "symfony/polyfill-php80": "^1.16"
  2948. },
  2949. "require-dev": {
  2950. "predis/predis": "~1.0",
  2951. "symfony/expression-language": "^3.4|^4.0|^5.0"
  2952. },
  2953. "type": "library",
  2954. "autoload": {
  2955. "psr-4": {
  2956. "Symfony\\Component\\HttpFoundation\\": ""
  2957. },
  2958. "exclude-from-classmap": [
  2959. "/Tests/"
  2960. ]
  2961. },
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "MIT"
  2965. ],
  2966. "authors": [
  2967. {
  2968. "name": "Fabien Potencier",
  2969. "email": "fabien@symfony.com"
  2970. },
  2971. {
  2972. "name": "Symfony Community",
  2973. "homepage": "https://symfony.com/contributors"
  2974. }
  2975. ],
  2976. "description": "Defines an object-oriented layer for the HTTP specification",
  2977. "homepage": "https://symfony.com",
  2978. "funding": [
  2979. {
  2980. "url": "https://symfony.com/sponsor",
  2981. "type": "custom"
  2982. },
  2983. {
  2984. "url": "https://github.com/fabpot",
  2985. "type": "github"
  2986. },
  2987. {
  2988. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2989. "type": "tidelift"
  2990. }
  2991. ],
  2992. "time": "2021-07-27T14:32:23+00:00"
  2993. },
  2994. {
  2995. "name": "symfony/mime",
  2996. "version": "v4.4.27",
  2997. "source": {
  2998. "type": "git",
  2999. "url": "https://github.com/symfony/mime.git",
  3000. "reference": "6ab91e811439360339ebde803630c8d74223fa77"
  3001. },
  3002. "dist": {
  3003. "type": "zip",
  3004. "url": "https://api.github.com/repos/symfony/mime/zipball/6ab91e811439360339ebde803630c8d74223fa77",
  3005. "reference": "6ab91e811439360339ebde803630c8d74223fa77",
  3006. "shasum": "",
  3007. "mirrors": [
  3008. {
  3009. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3010. "preferred": true
  3011. }
  3012. ]
  3013. },
  3014. "require": {
  3015. "php": ">=7.1.3",
  3016. "symfony/polyfill-intl-idn": "^1.10",
  3017. "symfony/polyfill-mbstring": "^1.0",
  3018. "symfony/polyfill-php80": "^1.16"
  3019. },
  3020. "conflict": {
  3021. "egulias/email-validator": "~3.0.0",
  3022. "symfony/mailer": "<4.4"
  3023. },
  3024. "require-dev": {
  3025. "egulias/email-validator": "^2.1.10|^3.1",
  3026. "symfony/dependency-injection": "^3.4|^4.1|^5.0"
  3027. },
  3028. "type": "library",
  3029. "autoload": {
  3030. "psr-4": {
  3031. "Symfony\\Component\\Mime\\": ""
  3032. },
  3033. "exclude-from-classmap": [
  3034. "/Tests/"
  3035. ]
  3036. },
  3037. "notification-url": "https://packagist.org/downloads/",
  3038. "license": [
  3039. "MIT"
  3040. ],
  3041. "authors": [
  3042. {
  3043. "name": "Fabien Potencier",
  3044. "email": "fabien@symfony.com"
  3045. },
  3046. {
  3047. "name": "Symfony Community",
  3048. "homepage": "https://symfony.com/contributors"
  3049. }
  3050. ],
  3051. "description": "Allows manipulating MIME messages",
  3052. "homepage": "https://symfony.com",
  3053. "keywords": [
  3054. "mime",
  3055. "mime-type"
  3056. ],
  3057. "funding": [
  3058. {
  3059. "url": "https://symfony.com/sponsor",
  3060. "type": "custom"
  3061. },
  3062. {
  3063. "url": "https://github.com/fabpot",
  3064. "type": "github"
  3065. },
  3066. {
  3067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3068. "type": "tidelift"
  3069. }
  3070. ],
  3071. "time": "2021-07-21T12:19:41+00:00"
  3072. },
  3073. {
  3074. "name": "symfony/polyfill-ctype",
  3075. "version": "v1.23.0",
  3076. "source": {
  3077. "type": "git",
  3078. "url": "https://github.com/symfony/polyfill-ctype.git",
  3079. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  3080. },
  3081. "dist": {
  3082. "type": "zip",
  3083. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  3084. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  3085. "shasum": "",
  3086. "mirrors": [
  3087. {
  3088. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3089. "preferred": true
  3090. }
  3091. ]
  3092. },
  3093. "require": {
  3094. "php": ">=7.1"
  3095. },
  3096. "suggest": {
  3097. "ext-ctype": "For best performance"
  3098. },
  3099. "type": "library",
  3100. "extra": {
  3101. "branch-alias": {
  3102. "dev-main": "1.23-dev"
  3103. },
  3104. "thanks": {
  3105. "name": "symfony/polyfill",
  3106. "url": "https://github.com/symfony/polyfill"
  3107. }
  3108. },
  3109. "autoload": {
  3110. "psr-4": {
  3111. "Symfony\\Polyfill\\Ctype\\": ""
  3112. },
  3113. "files": [
  3114. "bootstrap.php"
  3115. ]
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "MIT"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "Gert de Pagter",
  3124. "email": "BackEndTea@gmail.com"
  3125. },
  3126. {
  3127. "name": "Symfony Community",
  3128. "homepage": "https://symfony.com/contributors"
  3129. }
  3130. ],
  3131. "description": "Symfony polyfill for ctype functions",
  3132. "homepage": "https://symfony.com",
  3133. "keywords": [
  3134. "compatibility",
  3135. "ctype",
  3136. "polyfill",
  3137. "portable"
  3138. ],
  3139. "funding": [
  3140. {
  3141. "url": "https://symfony.com/sponsor",
  3142. "type": "custom"
  3143. },
  3144. {
  3145. "url": "https://github.com/fabpot",
  3146. "type": "github"
  3147. },
  3148. {
  3149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3150. "type": "tidelift"
  3151. }
  3152. ],
  3153. "time": "2021-02-19T12:13:01+00:00"
  3154. },
  3155. {
  3156. "name": "symfony/polyfill-intl-idn",
  3157. "version": "v1.23.0",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3161. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  3166. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  3167. "shasum": "",
  3168. "mirrors": [
  3169. {
  3170. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3171. "preferred": true
  3172. }
  3173. ]
  3174. },
  3175. "require": {
  3176. "php": ">=7.1",
  3177. "symfony/polyfill-intl-normalizer": "^1.10",
  3178. "symfony/polyfill-php72": "^1.10"
  3179. },
  3180. "suggest": {
  3181. "ext-intl": "For best performance"
  3182. },
  3183. "type": "library",
  3184. "extra": {
  3185. "branch-alias": {
  3186. "dev-main": "1.23-dev"
  3187. },
  3188. "thanks": {
  3189. "name": "symfony/polyfill",
  3190. "url": "https://github.com/symfony/polyfill"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3196. },
  3197. "files": [
  3198. "bootstrap.php"
  3199. ]
  3200. },
  3201. "notification-url": "https://packagist.org/downloads/",
  3202. "license": [
  3203. "MIT"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "Laurent Bassin",
  3208. "email": "laurent@bassin.info"
  3209. },
  3210. {
  3211. "name": "Trevor Rowbotham",
  3212. "email": "trevor.rowbotham@pm.me"
  3213. },
  3214. {
  3215. "name": "Symfony Community",
  3216. "homepage": "https://symfony.com/contributors"
  3217. }
  3218. ],
  3219. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3220. "homepage": "https://symfony.com",
  3221. "keywords": [
  3222. "compatibility",
  3223. "idn",
  3224. "intl",
  3225. "polyfill",
  3226. "portable",
  3227. "shim"
  3228. ],
  3229. "funding": [
  3230. {
  3231. "url": "https://symfony.com/sponsor",
  3232. "type": "custom"
  3233. },
  3234. {
  3235. "url": "https://github.com/fabpot",
  3236. "type": "github"
  3237. },
  3238. {
  3239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3240. "type": "tidelift"
  3241. }
  3242. ],
  3243. "time": "2021-05-27T09:27:20+00:00"
  3244. },
  3245. {
  3246. "name": "symfony/polyfill-intl-normalizer",
  3247. "version": "v1.23.0",
  3248. "source": {
  3249. "type": "git",
  3250. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3251. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  3252. },
  3253. "dist": {
  3254. "type": "zip",
  3255. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3256. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  3257. "shasum": "",
  3258. "mirrors": [
  3259. {
  3260. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3261. "preferred": true
  3262. }
  3263. ]
  3264. },
  3265. "require": {
  3266. "php": ">=7.1"
  3267. },
  3268. "suggest": {
  3269. "ext-intl": "For best performance"
  3270. },
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-main": "1.23-dev"
  3275. },
  3276. "thanks": {
  3277. "name": "symfony/polyfill",
  3278. "url": "https://github.com/symfony/polyfill"
  3279. }
  3280. },
  3281. "autoload": {
  3282. "psr-4": {
  3283. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3284. },
  3285. "files": [
  3286. "bootstrap.php"
  3287. ],
  3288. "classmap": [
  3289. "Resources/stubs"
  3290. ]
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Nicolas Grekas",
  3299. "email": "p@tchwork.com"
  3300. },
  3301. {
  3302. "name": "Symfony Community",
  3303. "homepage": "https://symfony.com/contributors"
  3304. }
  3305. ],
  3306. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3307. "homepage": "https://symfony.com",
  3308. "keywords": [
  3309. "compatibility",
  3310. "intl",
  3311. "normalizer",
  3312. "polyfill",
  3313. "portable",
  3314. "shim"
  3315. ],
  3316. "funding": [
  3317. {
  3318. "url": "https://symfony.com/sponsor",
  3319. "type": "custom"
  3320. },
  3321. {
  3322. "url": "https://github.com/fabpot",
  3323. "type": "github"
  3324. },
  3325. {
  3326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3327. "type": "tidelift"
  3328. }
  3329. ],
  3330. "time": "2021-02-19T12:13:01+00:00"
  3331. },
  3332. {
  3333. "name": "symfony/polyfill-mbstring",
  3334. "version": "v1.23.1",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3338. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  3343. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  3344. "shasum": "",
  3345. "mirrors": [
  3346. {
  3347. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3348. "preferred": true
  3349. }
  3350. ]
  3351. },
  3352. "require": {
  3353. "php": ">=7.1"
  3354. },
  3355. "suggest": {
  3356. "ext-mbstring": "For best performance"
  3357. },
  3358. "type": "library",
  3359. "extra": {
  3360. "branch-alias": {
  3361. "dev-main": "1.23-dev"
  3362. },
  3363. "thanks": {
  3364. "name": "symfony/polyfill",
  3365. "url": "https://github.com/symfony/polyfill"
  3366. }
  3367. },
  3368. "autoload": {
  3369. "psr-4": {
  3370. "Symfony\\Polyfill\\Mbstring\\": ""
  3371. },
  3372. "files": [
  3373. "bootstrap.php"
  3374. ]
  3375. },
  3376. "notification-url": "https://packagist.org/downloads/",
  3377. "license": [
  3378. "MIT"
  3379. ],
  3380. "authors": [
  3381. {
  3382. "name": "Nicolas Grekas",
  3383. "email": "p@tchwork.com"
  3384. },
  3385. {
  3386. "name": "Symfony Community",
  3387. "homepage": "https://symfony.com/contributors"
  3388. }
  3389. ],
  3390. "description": "Symfony polyfill for the Mbstring extension",
  3391. "homepage": "https://symfony.com",
  3392. "keywords": [
  3393. "compatibility",
  3394. "mbstring",
  3395. "polyfill",
  3396. "portable",
  3397. "shim"
  3398. ],
  3399. "funding": [
  3400. {
  3401. "url": "https://symfony.com/sponsor",
  3402. "type": "custom"
  3403. },
  3404. {
  3405. "url": "https://github.com/fabpot",
  3406. "type": "github"
  3407. },
  3408. {
  3409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3410. "type": "tidelift"
  3411. }
  3412. ],
  3413. "time": "2021-05-27T12:26:48+00:00"
  3414. },
  3415. {
  3416. "name": "symfony/polyfill-php72",
  3417. "version": "v1.23.0",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/symfony/polyfill-php72.git",
  3421. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  3426. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  3427. "shasum": "",
  3428. "mirrors": [
  3429. {
  3430. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3431. "preferred": true
  3432. }
  3433. ]
  3434. },
  3435. "require": {
  3436. "php": ">=7.1"
  3437. },
  3438. "type": "library",
  3439. "extra": {
  3440. "branch-alias": {
  3441. "dev-main": "1.23-dev"
  3442. },
  3443. "thanks": {
  3444. "name": "symfony/polyfill",
  3445. "url": "https://github.com/symfony/polyfill"
  3446. }
  3447. },
  3448. "autoload": {
  3449. "psr-4": {
  3450. "Symfony\\Polyfill\\Php72\\": ""
  3451. },
  3452. "files": [
  3453. "bootstrap.php"
  3454. ]
  3455. },
  3456. "notification-url": "https://packagist.org/downloads/",
  3457. "license": [
  3458. "MIT"
  3459. ],
  3460. "authors": [
  3461. {
  3462. "name": "Nicolas Grekas",
  3463. "email": "p@tchwork.com"
  3464. },
  3465. {
  3466. "name": "Symfony Community",
  3467. "homepage": "https://symfony.com/contributors"
  3468. }
  3469. ],
  3470. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3471. "homepage": "https://symfony.com",
  3472. "keywords": [
  3473. "compatibility",
  3474. "polyfill",
  3475. "portable",
  3476. "shim"
  3477. ],
  3478. "funding": [
  3479. {
  3480. "url": "https://symfony.com/sponsor",
  3481. "type": "custom"
  3482. },
  3483. {
  3484. "url": "https://github.com/fabpot",
  3485. "type": "github"
  3486. },
  3487. {
  3488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3489. "type": "tidelift"
  3490. }
  3491. ],
  3492. "time": "2021-05-27T09:17:38+00:00"
  3493. },
  3494. {
  3495. "name": "symfony/polyfill-php80",
  3496. "version": "v1.23.1",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/symfony/polyfill-php80.git",
  3500. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  3505. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  3506. "shasum": "",
  3507. "mirrors": [
  3508. {
  3509. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3510. "preferred": true
  3511. }
  3512. ]
  3513. },
  3514. "require": {
  3515. "php": ">=7.1"
  3516. },
  3517. "type": "library",
  3518. "extra": {
  3519. "branch-alias": {
  3520. "dev-main": "1.23-dev"
  3521. },
  3522. "thanks": {
  3523. "name": "symfony/polyfill",
  3524. "url": "https://github.com/symfony/polyfill"
  3525. }
  3526. },
  3527. "autoload": {
  3528. "psr-4": {
  3529. "Symfony\\Polyfill\\Php80\\": ""
  3530. },
  3531. "files": [
  3532. "bootstrap.php"
  3533. ],
  3534. "classmap": [
  3535. "Resources/stubs"
  3536. ]
  3537. },
  3538. "notification-url": "https://packagist.org/downloads/",
  3539. "license": [
  3540. "MIT"
  3541. ],
  3542. "authors": [
  3543. {
  3544. "name": "Ion Bazan",
  3545. "email": "ion.bazan@gmail.com"
  3546. },
  3547. {
  3548. "name": "Nicolas Grekas",
  3549. "email": "p@tchwork.com"
  3550. },
  3551. {
  3552. "name": "Symfony Community",
  3553. "homepage": "https://symfony.com/contributors"
  3554. }
  3555. ],
  3556. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3557. "homepage": "https://symfony.com",
  3558. "keywords": [
  3559. "compatibility",
  3560. "polyfill",
  3561. "portable",
  3562. "shim"
  3563. ],
  3564. "funding": [
  3565. {
  3566. "url": "https://symfony.com/sponsor",
  3567. "type": "custom"
  3568. },
  3569. {
  3570. "url": "https://github.com/fabpot",
  3571. "type": "github"
  3572. },
  3573. {
  3574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3575. "type": "tidelift"
  3576. }
  3577. ],
  3578. "time": "2021-07-28T13:41:28+00:00"
  3579. },
  3580. {
  3581. "name": "symfony/psr-http-message-bridge",
  3582. "version": "v1.3.0",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3586. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9d3e80d54d9ae747ad573cad796e8e247df7b796",
  3591. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796",
  3592. "shasum": "",
  3593. "mirrors": [
  3594. {
  3595. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3596. "preferred": true
  3597. }
  3598. ]
  3599. },
  3600. "require": {
  3601. "php": "^7.1",
  3602. "psr/http-message": "^1.0",
  3603. "symfony/http-foundation": "^4.4 || ^5.0"
  3604. },
  3605. "require-dev": {
  3606. "nyholm/psr7": "^1.1",
  3607. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  3608. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  3609. },
  3610. "suggest": {
  3611. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3612. },
  3613. "type": "symfony-bridge",
  3614. "extra": {
  3615. "branch-alias": {
  3616. "dev-master": "1.3-dev"
  3617. }
  3618. },
  3619. "autoload": {
  3620. "psr-4": {
  3621. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3622. },
  3623. "exclude-from-classmap": [
  3624. "/Tests/"
  3625. ]
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "MIT"
  3630. ],
  3631. "authors": [
  3632. {
  3633. "name": "Fabien Potencier",
  3634. "email": "fabien@symfony.com"
  3635. },
  3636. {
  3637. "name": "Symfony Community",
  3638. "homepage": "http://symfony.com/contributors"
  3639. }
  3640. ],
  3641. "description": "PSR HTTP message bridge",
  3642. "homepage": "http://symfony.com",
  3643. "keywords": [
  3644. "http",
  3645. "http-message",
  3646. "psr-17",
  3647. "psr-7"
  3648. ],
  3649. "time": "2019-11-25T19:33:50+00:00"
  3650. },
  3651. {
  3652. "name": "symfony/service-contracts",
  3653. "version": "v1.1.9",
  3654. "source": {
  3655. "type": "git",
  3656. "url": "https://github.com/symfony/service-contracts.git",
  3657. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26"
  3658. },
  3659. "dist": {
  3660. "type": "zip",
  3661. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b776d18b303a39f56c63747bcb977ad4b27aca26",
  3662. "reference": "b776d18b303a39f56c63747bcb977ad4b27aca26",
  3663. "shasum": "",
  3664. "mirrors": [
  3665. {
  3666. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3667. "preferred": true
  3668. }
  3669. ]
  3670. },
  3671. "require": {
  3672. "php": ">=7.1.3",
  3673. "psr/container": "^1.0"
  3674. },
  3675. "suggest": {
  3676. "symfony/service-implementation": ""
  3677. },
  3678. "type": "library",
  3679. "extra": {
  3680. "branch-alias": {
  3681. "dev-master": "1.1-dev"
  3682. },
  3683. "thanks": {
  3684. "name": "symfony/contracts",
  3685. "url": "https://github.com/symfony/contracts"
  3686. }
  3687. },
  3688. "autoload": {
  3689. "psr-4": {
  3690. "Symfony\\Contracts\\Service\\": ""
  3691. }
  3692. },
  3693. "notification-url": "https://packagist.org/downloads/",
  3694. "license": [
  3695. "MIT"
  3696. ],
  3697. "authors": [
  3698. {
  3699. "name": "Nicolas Grekas",
  3700. "email": "p@tchwork.com"
  3701. },
  3702. {
  3703. "name": "Symfony Community",
  3704. "homepage": "https://symfony.com/contributors"
  3705. }
  3706. ],
  3707. "description": "Generic abstractions related to writing services",
  3708. "homepage": "https://symfony.com",
  3709. "keywords": [
  3710. "abstractions",
  3711. "contracts",
  3712. "decoupling",
  3713. "interfaces",
  3714. "interoperability",
  3715. "standards"
  3716. ],
  3717. "funding": [
  3718. {
  3719. "url": "https://symfony.com/sponsor",
  3720. "type": "custom"
  3721. },
  3722. {
  3723. "url": "https://github.com/fabpot",
  3724. "type": "github"
  3725. },
  3726. {
  3727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3728. "type": "tidelift"
  3729. }
  3730. ],
  3731. "time": "2020-07-06T13:19:58+00:00"
  3732. },
  3733. {
  3734. "name": "symfony/var-exporter",
  3735. "version": "v4.4.27",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://github.com/symfony/var-exporter.git",
  3739. "reference": "447d2c9ff61d3844c231280b8575ef5456f5dbb6"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/447d2c9ff61d3844c231280b8575ef5456f5dbb6",
  3744. "reference": "447d2c9ff61d3844c231280b8575ef5456f5dbb6",
  3745. "shasum": "",
  3746. "mirrors": [
  3747. {
  3748. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3749. "preferred": true
  3750. }
  3751. ]
  3752. },
  3753. "require": {
  3754. "php": ">=7.1.3",
  3755. "symfony/polyfill-php80": "^1.16"
  3756. },
  3757. "require-dev": {
  3758. "symfony/var-dumper": "^4.4.9|^5.0.9"
  3759. },
  3760. "type": "library",
  3761. "autoload": {
  3762. "psr-4": {
  3763. "Symfony\\Component\\VarExporter\\": ""
  3764. },
  3765. "exclude-from-classmap": [
  3766. "/Tests/"
  3767. ]
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "Nicolas Grekas",
  3776. "email": "p@tchwork.com"
  3777. },
  3778. {
  3779. "name": "Symfony Community",
  3780. "homepage": "https://symfony.com/contributors"
  3781. }
  3782. ],
  3783. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3784. "homepage": "https://symfony.com",
  3785. "keywords": [
  3786. "clone",
  3787. "construct",
  3788. "export",
  3789. "hydrate",
  3790. "instantiate",
  3791. "serialize"
  3792. ],
  3793. "funding": [
  3794. {
  3795. "url": "https://symfony.com/sponsor",
  3796. "type": "custom"
  3797. },
  3798. {
  3799. "url": "https://github.com/fabpot",
  3800. "type": "github"
  3801. },
  3802. {
  3803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3804. "type": "tidelift"
  3805. }
  3806. ],
  3807. "time": "2021-07-21T12:19:41+00:00"
  3808. },
  3809. {
  3810. "name": "symfony/yaml",
  3811. "version": "v2.8.52",
  3812. "source": {
  3813. "type": "git",
  3814. "url": "https://github.com/symfony/yaml.git",
  3815. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  3816. },
  3817. "dist": {
  3818. "type": "zip",
  3819. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  3820. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  3821. "shasum": "",
  3822. "mirrors": [
  3823. {
  3824. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3825. "preferred": true
  3826. }
  3827. ]
  3828. },
  3829. "require": {
  3830. "php": ">=5.3.9",
  3831. "symfony/polyfill-ctype": "~1.8"
  3832. },
  3833. "type": "library",
  3834. "extra": {
  3835. "branch-alias": {
  3836. "dev-master": "2.8-dev"
  3837. }
  3838. },
  3839. "autoload": {
  3840. "psr-4": {
  3841. "Symfony\\Component\\Yaml\\": ""
  3842. },
  3843. "exclude-from-classmap": [
  3844. "/Tests/"
  3845. ]
  3846. },
  3847. "notification-url": "https://packagist.org/downloads/",
  3848. "license": [
  3849. "MIT"
  3850. ],
  3851. "authors": [
  3852. {
  3853. "name": "Fabien Potencier",
  3854. "email": "fabien@symfony.com"
  3855. },
  3856. {
  3857. "name": "Symfony Community",
  3858. "homepage": "https://symfony.com/contributors"
  3859. }
  3860. ],
  3861. "description": "Symfony Yaml Component",
  3862. "homepage": "https://symfony.com",
  3863. "time": "2018-11-11T11:18:13+00:00"
  3864. },
  3865. {
  3866. "name": "topthink/framework",
  3867. "version": "dev-master",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://gitee.com/karson/framework",
  3871. "reference": "7d08e64b4d8e3352c0f855e63513d85aeaa41349"
  3872. },
  3873. "require": {
  3874. "php": ">=5.4.0",
  3875. "topthink/think-installer": "~1.0"
  3876. },
  3877. "require-dev": {
  3878. "johnkary/phpunit-speedtrap": "^1.0",
  3879. "mikey179/vfsstream": "~1.6",
  3880. "phpdocumentor/reflection-docblock": "^2.0",
  3881. "phploc/phploc": "2.*",
  3882. "phpunit/phpunit": "4.8.*",
  3883. "sebastian/phpcpd": "2.*"
  3884. },
  3885. "default-branch": true,
  3886. "type": "think-framework",
  3887. "autoload": {
  3888. "psr-4": {
  3889. "think\\": "library/think"
  3890. }
  3891. },
  3892. "license": [
  3893. "Apache-2.0"
  3894. ],
  3895. "authors": [
  3896. {
  3897. "name": "liu21st",
  3898. "email": "liu21st@gmail.com"
  3899. }
  3900. ],
  3901. "description": "the new thinkphp framework",
  3902. "homepage": "http://thinkphp.cn/",
  3903. "keywords": [
  3904. "ORM",
  3905. "framework",
  3906. "thinkphp"
  3907. ],
  3908. "time": "2021-03-17T09:43:15+00:00"
  3909. },
  3910. {
  3911. "name": "topthink/think-captcha",
  3912. "version": "v1.0.7",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/top-think/think-captcha.git",
  3916. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/0c55455df26a1626a60d0dc35d2d89002b741d44",
  3921. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44",
  3922. "shasum": "",
  3923. "mirrors": [
  3924. {
  3925. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3926. "preferred": true
  3927. }
  3928. ]
  3929. },
  3930. "type": "library",
  3931. "autoload": {
  3932. "psr-4": {
  3933. "think\\captcha\\": "src/"
  3934. },
  3935. "files": [
  3936. "src/helper.php"
  3937. ]
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "Apache-2.0"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "yunwuxin",
  3946. "email": "448901948@qq.com"
  3947. }
  3948. ],
  3949. "description": "captcha package for thinkphp5",
  3950. "time": "2016-07-06T01:47:11+00:00"
  3951. },
  3952. {
  3953. "name": "topthink/think-helper",
  3954. "version": "v1.0.7",
  3955. "source": {
  3956. "type": "git",
  3957. "url": "https://github.com/top-think/think-helper.git",
  3958. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  3959. },
  3960. "dist": {
  3961. "type": "zip",
  3962. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  3963. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  3964. "shasum": "",
  3965. "mirrors": [
  3966. {
  3967. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3968. "preferred": true
  3969. }
  3970. ]
  3971. },
  3972. "type": "library",
  3973. "autoload": {
  3974. "psr-4": {
  3975. "think\\helper\\": "src"
  3976. },
  3977. "files": [
  3978. "src/helper.php"
  3979. ]
  3980. },
  3981. "notification-url": "https://packagist.org/downloads/",
  3982. "license": [
  3983. "Apache-2.0"
  3984. ],
  3985. "authors": [
  3986. {
  3987. "name": "yunwuxin",
  3988. "email": "448901948@qq.com"
  3989. }
  3990. ],
  3991. "description": "The ThinkPHP5 Helper Package",
  3992. "time": "2018-10-05T00:43:21+00:00"
  3993. },
  3994. {
  3995. "name": "topthink/think-installer",
  3996. "version": "v1.0.14",
  3997. "source": {
  3998. "type": "git",
  3999. "url": "https://github.com/top-think/think-installer.git",
  4000. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1"
  4001. },
  4002. "dist": {
  4003. "type": "zip",
  4004. "url": "https://api.github.com/repos/top-think/think-installer/zipball/eae1740ac264a55c06134b6685dfb9f837d004d1",
  4005. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1",
  4006. "shasum": "",
  4007. "mirrors": [
  4008. {
  4009. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4010. "preferred": true
  4011. }
  4012. ]
  4013. },
  4014. "require": {
  4015. "composer-plugin-api": "^1.0||^2.0"
  4016. },
  4017. "require-dev": {
  4018. "composer/composer": "^1.0||^2.0"
  4019. },
  4020. "type": "composer-plugin",
  4021. "extra": {
  4022. "class": "think\\composer\\Plugin"
  4023. },
  4024. "autoload": {
  4025. "psr-4": {
  4026. "think\\composer\\": "src"
  4027. }
  4028. },
  4029. "notification-url": "https://packagist.org/downloads/",
  4030. "license": [
  4031. "Apache-2.0"
  4032. ],
  4033. "authors": [
  4034. {
  4035. "name": "yunwuxin",
  4036. "email": "448901948@qq.com"
  4037. }
  4038. ],
  4039. "time": "2021-03-25T08:34:02+00:00"
  4040. },
  4041. {
  4042. "name": "topthink/think-queue",
  4043. "version": "v1.1.6",
  4044. "source": {
  4045. "type": "git",
  4046. "url": "https://github.com/top-think/think-queue.git",
  4047. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245"
  4048. },
  4049. "dist": {
  4050. "type": "zip",
  4051. "url": "https://api.github.com/repos/top-think/think-queue/zipball/250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  4052. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  4053. "shasum": "",
  4054. "mirrors": [
  4055. {
  4056. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4057. "preferred": true
  4058. }
  4059. ]
  4060. },
  4061. "require": {
  4062. "topthink/think-helper": ">=1.0.4",
  4063. "topthink/think-installer": ">=1.0.10"
  4064. },
  4065. "require-dev": {
  4066. "topthink/framework": "~5.0.0"
  4067. },
  4068. "type": "think-extend",
  4069. "extra": {
  4070. "think-config": {
  4071. "queue": "src/config.php"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "think\\": "src"
  4077. },
  4078. "files": [
  4079. "src/common.php"
  4080. ]
  4081. },
  4082. "notification-url": "https://packagist.org/downloads/",
  4083. "license": [
  4084. "Apache-2.0"
  4085. ],
  4086. "authors": [
  4087. {
  4088. "name": "yunwuxin",
  4089. "email": "448901948@qq.com"
  4090. }
  4091. ],
  4092. "description": "The ThinkPHP5 Queue Package",
  4093. "time": "2018-10-15T10:16:55+00:00"
  4094. },
  4095. {
  4096. "name": "txthinking/mailer",
  4097. "version": "v2.0.1",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/txthinking/Mailer.git",
  4101. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/txthinking/Mailer/zipball/09013cf9dad3aac195f66ae5309e8c3343c018e9",
  4106. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9",
  4107. "shasum": "",
  4108. "mirrors": [
  4109. {
  4110. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4111. "preferred": true
  4112. }
  4113. ]
  4114. },
  4115. "require": {
  4116. "php": ">=5.3.2",
  4117. "psr/log": "~1.0"
  4118. },
  4119. "require-dev": {
  4120. "monolog/monolog": "~1.13",
  4121. "phpunit/phpunit": "~4.0"
  4122. },
  4123. "type": "library",
  4124. "autoload": {
  4125. "psr-4": {
  4126. "Tx\\": "src/"
  4127. }
  4128. },
  4129. "notification-url": "https://packagist.org/downloads/",
  4130. "license": [
  4131. "MIT"
  4132. ],
  4133. "authors": [
  4134. {
  4135. "name": "Cloud",
  4136. "email": "cloud@txthinking.com",
  4137. "homepage": "http://www.txthinking.com",
  4138. "role": "Thinker"
  4139. },
  4140. {
  4141. "name": "Matt Sowers",
  4142. "email": "msowers@erblearn.org"
  4143. }
  4144. ],
  4145. "description": "A very lightweight PHP SMTP mail sender",
  4146. "homepage": "http://github.com/txthinking/Mailer",
  4147. "keywords": [
  4148. "mail",
  4149. "smtp"
  4150. ],
  4151. "time": "2018-10-09T10:47:23+00:00"
  4152. }
  4153. ],
  4154. "packages-dev": [],
  4155. "aliases": [],
  4156. "minimum-stability": "stable",
  4157. "stability-flags": {
  4158. "topthink/framework": 20
  4159. },
  4160. "prefer-stable": false,
  4161. "prefer-lowest": false,
  4162. "platform": {
  4163. "php": ">=7.1.0",
  4164. "ext-json": "*",
  4165. "ext-curl": "*",
  4166. "ext-pdo": "*"
  4167. },
  4168. "platform-dev": [],
  4169. "plugin-api-version": "2.1.0"
  4170. }