composer.lock 131 KB

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