composer.lock 144 KB

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