composer.lock 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794
  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": "508ce68a3027e5793d7710883ad5deed",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/39ece8d385ce2f5e03718c693932d83ab0cb5972",
  20. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.3.0"
  59. },
  60. "time": "2022-07-12T02:52:50+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/client",
  64. "version": "1.5.31",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  68. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  73. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "clagiordano/weblibs-configmanager": "^1.0",
  79. "danielstjules/stringy": "^3.1",
  80. "ext-curl": "*",
  81. "ext-json": "*",
  82. "ext-libxml": "*",
  83. "ext-mbstring": "*",
  84. "ext-openssl": "*",
  85. "ext-simplexml": "*",
  86. "ext-xmlwriter": "*",
  87. "guzzlehttp/guzzle": "^6.3|^7.0",
  88. "mtdowling/jmespath.php": "^2.5",
  89. "php": ">=5.5"
  90. },
  91. "require-dev": {
  92. "composer/composer": "^1.8",
  93. "drupal/coder": "^8.3",
  94. "ext-dom": "*",
  95. "ext-pcre": "*",
  96. "ext-sockets": "*",
  97. "ext-spl": "*",
  98. "league/climate": "^3.2.4",
  99. "mikey179/vfsstream": "^1.6",
  100. "monolog/monolog": "^1.24",
  101. "phpunit/phpunit": "^5.7.27|^6.1",
  102. "psr/cache": "^1.0",
  103. "symfony/dotenv": "^3.4",
  104. "symfony/var-dumper": "^3.4"
  105. },
  106. "suggest": {
  107. "ext-sockets": "To use client-side monitoring"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "files": [
  112. "src/Functions.php"
  113. ],
  114. "psr-4": {
  115. "AlibabaCloud\\Client\\": "src"
  116. }
  117. },
  118. "notification-url": "https://packagist.org/downloads/",
  119. "license": [
  120. "Apache-2.0"
  121. ],
  122. "authors": [
  123. {
  124. "name": "Alibaba Cloud SDK",
  125. "email": "sdk-team@alibabacloud.com",
  126. "homepage": "http://www.alibabacloud.com"
  127. }
  128. ],
  129. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  130. "homepage": "https://www.alibabacloud.com/",
  131. "keywords": [
  132. "alibaba",
  133. "alibabacloud",
  134. "aliyun",
  135. "client",
  136. "cloud",
  137. "library",
  138. "sdk",
  139. "tool"
  140. ],
  141. "support": {
  142. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  143. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  144. },
  145. "time": "2021-05-13T06:26:38+00:00"
  146. },
  147. {
  148. "name": "alibabacloud/cloudauth-20190307",
  149. "version": "2.0.3",
  150. "source": {
  151. "type": "git",
  152. "url": "https://github.com/alibabacloud-sdk-php/cloudauth-20190307.git",
  153. "reference": "8507596ac64ddd478aed7db7dc845f32abf80839"
  154. },
  155. "dist": {
  156. "type": "zip",
  157. "url": "https://api.github.com/repos/alibabacloud-sdk-php/cloudauth-20190307/zipball/8507596ac64ddd478aed7db7dc845f32abf80839",
  158. "reference": "8507596ac64ddd478aed7db7dc845f32abf80839",
  159. "shasum": ""
  160. },
  161. "require": {
  162. "alibabacloud/darabonba-openapi": "^0.2.5",
  163. "alibabacloud/endpoint-util": "^0.1.0",
  164. "alibabacloud/openapi-util": "^0.1.10",
  165. "alibabacloud/openplatform-20191219": "^1.0.3",
  166. "alibabacloud/tea-fileform": "^0.3.0",
  167. "alibabacloud/tea-oss-sdk": "^0.3.0",
  168. "alibabacloud/tea-oss-utils": "^0.2.0",
  169. "alibabacloud/tea-rpc": "^0.1.5",
  170. "alibabacloud/tea-utils": "^0.2.0",
  171. "php": ">5.5"
  172. },
  173. "type": "library",
  174. "autoload": {
  175. "psr-4": {
  176. "AlibabaCloud\\SDK\\Cloudauth\\V20190307\\": "src"
  177. }
  178. },
  179. "notification-url": "https://packagist.org/downloads/",
  180. "license": [
  181. "Apache-2.0"
  182. ],
  183. "authors": [
  184. {
  185. "name": "Alibaba Cloud SDK",
  186. "email": "sdk-team@alibabacloud.com"
  187. }
  188. ],
  189. "description": "Alibaba Cloud ID Verification (20190307) SDK Library for PHP",
  190. "support": {
  191. "source": "https://github.com/alibabacloud-sdk-php/cloudauth-20190307/tree/2.0.3"
  192. },
  193. "time": "2022-06-29T02:27:42+00:00"
  194. },
  195. {
  196. "name": "alibabacloud/credentials",
  197. "version": "1.1.4",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/aliyun/credentials-php.git",
  201. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  206. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  207. "shasum": ""
  208. },
  209. "require": {
  210. "adbario/php-dot-notation": "^2.2",
  211. "alibabacloud/tea": "^3.0",
  212. "ext-curl": "*",
  213. "ext-json": "*",
  214. "ext-libxml": "*",
  215. "ext-mbstring": "*",
  216. "ext-openssl": "*",
  217. "ext-simplexml": "*",
  218. "ext-xmlwriter": "*",
  219. "guzzlehttp/guzzle": "^6.3|^7.0",
  220. "php": ">=5.6"
  221. },
  222. "require-dev": {
  223. "composer/composer": "^1.8",
  224. "drupal/coder": "^8.3",
  225. "ext-dom": "*",
  226. "ext-pcre": "*",
  227. "ext-sockets": "*",
  228. "ext-spl": "*",
  229. "mikey179/vfsstream": "^1.6",
  230. "monolog/monolog": "^1.24",
  231. "phpunit/phpunit": "^4.8.35|^5.4.3",
  232. "psr/cache": "^1.0",
  233. "symfony/dotenv": "^3.4",
  234. "symfony/var-dumper": "^3.4"
  235. },
  236. "suggest": {
  237. "ext-sockets": "To use client-side monitoring"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "AlibabaCloud\\Credentials\\": "src"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "Apache-2.0"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Alibaba Cloud SDK",
  252. "email": "sdk-team@alibabacloud.com",
  253. "homepage": "http://www.alibabacloud.com"
  254. }
  255. ],
  256. "description": "Alibaba Cloud Credentials for PHP",
  257. "homepage": "https://www.alibabacloud.com/",
  258. "keywords": [
  259. "alibaba",
  260. "alibabacloud",
  261. "aliyun",
  262. "client",
  263. "cloud",
  264. "credentials",
  265. "library",
  266. "sdk",
  267. "tool"
  268. ],
  269. "support": {
  270. "issues": "https://github.com/aliyun/credentials-php/issues",
  271. "source": "https://github.com/aliyun/credentials-php"
  272. },
  273. "time": "2021-06-08T10:49:34+00:00"
  274. },
  275. {
  276. "name": "alibabacloud/darabonba-openapi",
  277. "version": "0.2.5",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  281. "reference": "e57268b72616ed146eea1b5749d96b33e1f75ec3"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/e57268b72616ed146eea1b5749d96b33e1f75ec3",
  286. "reference": "e57268b72616ed146eea1b5749d96b33e1f75ec3",
  287. "shasum": ""
  288. },
  289. "require": {
  290. "alibabacloud/credentials": "^1.1",
  291. "alibabacloud/gateway-spi": "^0.0.1",
  292. "alibabacloud/openapi-util": "^0.1.10",
  293. "alibabacloud/tea-utils": "^0.2.0",
  294. "php": ">5.5"
  295. },
  296. "type": "library",
  297. "autoload": {
  298. "psr-4": {
  299. "Darabonba\\OpenApi\\": "src"
  300. }
  301. },
  302. "notification-url": "https://packagist.org/downloads/",
  303. "license": [
  304. "Apache-2.0"
  305. ],
  306. "authors": [
  307. {
  308. "name": "Alibaba Cloud SDK",
  309. "email": "sdk-team@alibabacloud.com"
  310. }
  311. ],
  312. "description": "Alibaba Cloud OpenApi Client",
  313. "support": {
  314. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  315. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.5"
  316. },
  317. "time": "2021-12-22T07:45:24+00:00"
  318. },
  319. {
  320. "name": "alibabacloud/endpoint-util",
  321. "version": "0.1.1",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  325. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  330. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  331. "shasum": ""
  332. },
  333. "require": {
  334. "php": ">5.5"
  335. },
  336. "require-dev": {
  337. "phpunit/phpunit": "^4.8.35|^5.4.3"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "AlibabaCloud\\Endpoint\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "Apache-2.0"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Alibaba Cloud SDK",
  352. "email": "sdk-team@alibabacloud.com"
  353. }
  354. ],
  355. "description": "Alibaba Cloud Endpoint Library for PHP",
  356. "support": {
  357. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  358. },
  359. "time": "2020-06-04T10:57:15+00:00"
  360. },
  361. {
  362. "name": "alibabacloud/gateway-spi",
  363. "version": "0.0.1",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  367. "reference": "36ba38571acbf821cfd84555cdb1327cdbf86935"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/36ba38571acbf821cfd84555cdb1327cdbf86935",
  372. "reference": "36ba38571acbf821cfd84555cdb1327cdbf86935",
  373. "shasum": ""
  374. },
  375. "require": {
  376. "alibabacloud/credentials": "^1.1",
  377. "php": ">5.5"
  378. },
  379. "type": "library",
  380. "autoload": {
  381. "psr-4": {
  382. "Darabonba\\GatewaySpi\\": "src"
  383. }
  384. },
  385. "notification-url": "https://packagist.org/downloads/",
  386. "license": [
  387. "Apache-2.0"
  388. ],
  389. "authors": [
  390. {
  391. "name": "Alibaba Cloud SDK",
  392. "email": "sdk-team@alibabacloud.com"
  393. }
  394. ],
  395. "description": "Alibaba Cloud Gateway SPI Client",
  396. "support": {
  397. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/0.0.1"
  398. },
  399. "time": "2021-12-07T04:41:11+00:00"
  400. },
  401. {
  402. "name": "alibabacloud/openapi-util",
  403. "version": "0.1.11",
  404. "source": {
  405. "type": "git",
  406. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  407. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c"
  408. },
  409. "dist": {
  410. "type": "zip",
  411. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/61ee137955a25c9f5f33170babb6071d4bccf12c",
  412. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c",
  413. "shasum": ""
  414. },
  415. "require": {
  416. "alibabacloud/tea": "^3.1",
  417. "alibabacloud/tea-utils": "^0.2",
  418. "lizhichao/one-sm": "^1.5",
  419. "php": ">5.5"
  420. },
  421. "require-dev": {
  422. "phpunit/phpunit": "^4.8.35|^5.4.3"
  423. },
  424. "type": "library",
  425. "autoload": {
  426. "psr-4": {
  427. "AlibabaCloud\\OpenApiUtil\\": "src"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "Apache-2.0"
  433. ],
  434. "authors": [
  435. {
  436. "name": "Alibaba Cloud SDK",
  437. "email": "sdk-team@alibabacloud.com"
  438. }
  439. ],
  440. "description": "Alibaba Cloud OpenApi Util",
  441. "support": {
  442. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  443. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.1.11"
  444. },
  445. "time": "2021-12-28T07:57:21+00:00"
  446. },
  447. {
  448. "name": "alibabacloud/openplatform-20191219",
  449. "version": "1.0.3",
  450. "source": {
  451. "type": "git",
  452. "url": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219.git",
  453. "reference": "8b3ee6ed5c388d71c27377b304fb5a6e5bd17fe4"
  454. },
  455. "dist": {
  456. "type": "zip",
  457. "url": "https://api.github.com/repos/alibabacloud-sdk-php/OpenPlatform-20191219/zipball/8b3ee6ed5c388d71c27377b304fb5a6e5bd17fe4",
  458. "reference": "8b3ee6ed5c388d71c27377b304fb5a6e5bd17fe4",
  459. "shasum": ""
  460. },
  461. "require": {
  462. "alibabacloud/endpoint-util": "^0.1.0",
  463. "alibabacloud/tea-rpc": "^0.1.5",
  464. "alibabacloud/tea-utils": "^0.2.0",
  465. "php": ">5.5"
  466. },
  467. "type": "library",
  468. "autoload": {
  469. "psr-4": {
  470. "AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\": "src"
  471. }
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "Apache-2.0"
  476. ],
  477. "authors": [
  478. {
  479. "name": "Alibaba Cloud SDK",
  480. "email": "sdk-team@alibabacloud.com"
  481. }
  482. ],
  483. "description": "Alibaba Cloud OpenPlatform (20191219) SDK Library for PHP",
  484. "support": {
  485. "source": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219/tree/1.0.3"
  486. },
  487. "time": "2021-07-27T09:10:56+00:00"
  488. },
  489. {
  490. "name": "alibabacloud/tea",
  491. "version": "3.1.23",
  492. "source": {
  493. "type": "git",
  494. "url": "https://github.com/aliyun/tea-php.git",
  495. "reference": "61fce993274edf6e7131af07256ed7723d97a85f"
  496. },
  497. "dist": {
  498. "type": "zip",
  499. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/61fce993274edf6e7131af07256ed7723d97a85f",
  500. "reference": "61fce993274edf6e7131af07256ed7723d97a85f",
  501. "shasum": ""
  502. },
  503. "require": {
  504. "adbario/php-dot-notation": "^2.2",
  505. "ext-curl": "*",
  506. "ext-json": "*",
  507. "ext-libxml": "*",
  508. "ext-mbstring": "*",
  509. "ext-openssl": "*",
  510. "ext-simplexml": "*",
  511. "ext-xmlwriter": "*",
  512. "guzzlehttp/guzzle": "^6.3|^7.0",
  513. "php": ">=5.5"
  514. },
  515. "require-dev": {
  516. "phpunit/phpunit": "*",
  517. "symfony/dotenv": "^3.4",
  518. "symfony/var-dumper": "^3.4"
  519. },
  520. "suggest": {
  521. "ext-sockets": "To use client-side monitoring"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "AlibabaCloud\\Tea\\": "src"
  527. }
  528. },
  529. "notification-url": "https://packagist.org/downloads/",
  530. "license": [
  531. "Apache-2.0"
  532. ],
  533. "authors": [
  534. {
  535. "name": "Alibaba Cloud SDK",
  536. "email": "sdk-team@alibabacloud.com",
  537. "homepage": "http://www.alibabacloud.com"
  538. }
  539. ],
  540. "description": "Client of Tea for PHP",
  541. "homepage": "https://www.alibabacloud.com/",
  542. "keywords": [
  543. "alibabacloud",
  544. "client",
  545. "cloud",
  546. "tea"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/aliyun/tea-php/issues",
  550. "source": "https://github.com/aliyun/tea-php"
  551. },
  552. "time": "2021-12-20T02:32:43+00:00"
  553. },
  554. {
  555. "name": "alibabacloud/tea-fileform",
  556. "version": "0.3.4",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  560. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  565. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "alibabacloud/tea": "^3.0",
  570. "php": ">5.5"
  571. },
  572. "require-dev": {
  573. "phpunit/phpunit": "^4.8.35|^5.4.3"
  574. },
  575. "type": "library",
  576. "autoload": {
  577. "psr-4": {
  578. "AlibabaCloud\\Tea\\FileForm\\": "src"
  579. }
  580. },
  581. "notification-url": "https://packagist.org/downloads/",
  582. "license": [
  583. "Apache-2.0"
  584. ],
  585. "authors": [
  586. {
  587. "name": "Alibaba Cloud SDK",
  588. "email": "sdk-team@alibabacloud.com"
  589. }
  590. ],
  591. "description": "Alibaba Cloud Tea File Library for PHP",
  592. "support": {
  593. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  594. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  595. },
  596. "time": "2020-12-01T07:24:35+00:00"
  597. },
  598. {
  599. "name": "alibabacloud/tea-oss-sdk",
  600. "version": "0.3.5",
  601. "source": {
  602. "type": "git",
  603. "url": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk.git",
  604. "reference": "7f9c7ef0f6c05f3d6fb6b95195ba95d6929403e1"
  605. },
  606. "dist": {
  607. "type": "zip",
  608. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-sdk/zipball/7f9c7ef0f6c05f3d6fb6b95195ba95d6929403e1",
  609. "reference": "7f9c7ef0f6c05f3d6fb6b95195ba95d6929403e1",
  610. "shasum": ""
  611. },
  612. "require": {
  613. "alibabacloud/credentials": "^1.1",
  614. "alibabacloud/tea-fileform": "^0.3.0",
  615. "alibabacloud/tea-oss-utils": "^0.2.0",
  616. "alibabacloud/tea-utils": "^0.2.0",
  617. "alibabacloud/tea-xml": "^0.2",
  618. "php": ">5.5"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "AlibabaCloud\\SDK\\OSS\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "Apache-2.0"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Alibaba Cloud SDK",
  633. "email": "sdk-team@alibabacloud.com"
  634. }
  635. ],
  636. "description": "Aliyun Tea OSS SDK Library for PHP",
  637. "support": {
  638. "source": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk/tree/0.3.5"
  639. },
  640. "time": "2020-11-30T06:10:35+00:00"
  641. },
  642. {
  643. "name": "alibabacloud/tea-oss-utils",
  644. "version": "0.2.2",
  645. "source": {
  646. "type": "git",
  647. "url": "https://github.com/alibabacloud-sdk-php/tea-oss-utils.git",
  648. "reference": "42a218da7559a4352c9fc73640a71649484e9593"
  649. },
  650. "dist": {
  651. "type": "zip",
  652. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-utils/zipball/42a218da7559a4352c9fc73640a71649484e9593",
  653. "reference": "42a218da7559a4352c9fc73640a71649484e9593",
  654. "shasum": ""
  655. },
  656. "require": {
  657. "alibabacloud/tea": "^3.0",
  658. "php": ">5.5",
  659. "ralouphie/mimey": "^2.1"
  660. },
  661. "require-dev": {
  662. "phpunit/phpunit": "^4.8.35|^5.4.3"
  663. },
  664. "type": "library",
  665. "autoload": {
  666. "psr-4": {
  667. "AlibabaCloud\\Tea\\OSSUtils\\": "src"
  668. }
  669. },
  670. "notification-url": "https://packagist.org/downloads/",
  671. "license": [
  672. "Apache-2.0"
  673. ],
  674. "authors": [
  675. {
  676. "name": "Alibaba Cloud SDK",
  677. "email": "sdk-team@alibabacloud.com"
  678. }
  679. ],
  680. "description": "Alibaba Cloud Tea OSS Utils Library for PHP",
  681. "support": {
  682. "source": "https://github.com/alibabacloud-sdk-php/tea-oss-utils/tree/master"
  683. },
  684. "time": "2020-05-26T06:57:59+00:00"
  685. },
  686. {
  687. "name": "alibabacloud/tea-rpc",
  688. "version": "0.1.11",
  689. "source": {
  690. "type": "git",
  691. "url": "https://github.com/alibabacloud-sdk-php/tea-rpc.git",
  692. "reference": "35f0fda2c5fc1bde6ad4276f3e476dcc7bfdc5e8"
  693. },
  694. "dist": {
  695. "type": "zip",
  696. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-rpc/zipball/35f0fda2c5fc1bde6ad4276f3e476dcc7bfdc5e8",
  697. "reference": "35f0fda2c5fc1bde6ad4276f3e476dcc7bfdc5e8",
  698. "shasum": ""
  699. },
  700. "require": {
  701. "alibabacloud/credentials": "^1.1",
  702. "alibabacloud/tea-rpc-utils": "^0.2.0",
  703. "alibabacloud/tea-utils": "^0.2.0",
  704. "php": ">5.5"
  705. },
  706. "require-dev": {
  707. "phpunit/phpunit": "^4.8.35|^5.4.3",
  708. "symfony/var-dumper": "^5.0"
  709. },
  710. "type": "library",
  711. "autoload": {
  712. "psr-4": {
  713. "AlibabaCloud\\Tea\\Rpc\\": "src"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "Apache-2.0"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Alibaba Cloud SDK",
  723. "email": "sdk-team@alibabacloud.com"
  724. }
  725. ],
  726. "description": "Alibaba Cloud RPC Client",
  727. "support": {
  728. "issues": "https://github.com/alibabacloud-sdk-php/tea-rpc/issues",
  729. "source": "https://github.com/alibabacloud-sdk-php/tea-rpc/tree/0.1.11"
  730. },
  731. "time": "2020-09-29T08:29:19+00:00"
  732. },
  733. {
  734. "name": "alibabacloud/tea-rpc-utils",
  735. "version": "0.2.9",
  736. "source": {
  737. "type": "git",
  738. "url": "https://github.com/alibabacloud-sdk-php/tea-rpc-utils.git",
  739. "reference": "8e7d3f8849ab08eae7cd75cbb7363f6040997c56"
  740. },
  741. "dist": {
  742. "type": "zip",
  743. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-rpc-utils/zipball/8e7d3f8849ab08eae7cd75cbb7363f6040997c56",
  744. "reference": "8e7d3f8849ab08eae7cd75cbb7363f6040997c56",
  745. "shasum": ""
  746. },
  747. "require": {
  748. "alibabacloud/tea": "^3.1"
  749. },
  750. "require-dev": {
  751. "phpunit/phpunit": "^4.8.35|^5.4.3"
  752. },
  753. "type": "library",
  754. "autoload": {
  755. "psr-4": {
  756. "AlibabaCloud\\Tea\\RpcUtils\\": "src"
  757. }
  758. },
  759. "notification-url": "https://packagist.org/downloads/",
  760. "license": [
  761. "Apache-2.0"
  762. ],
  763. "authors": [
  764. {
  765. "name": "Alibaba Cloud SDK",
  766. "email": "sdk-team@alibabacloud.com"
  767. }
  768. ],
  769. "description": "Alibaba Cloud RPC Utils SDK for PHP",
  770. "support": {
  771. "issues": "https://github.com/alibabacloud-sdk-php/tea-rpc-utils/issues",
  772. "source": "https://github.com/alibabacloud-sdk-php/tea-rpc-utils/tree/0.2.9"
  773. },
  774. "time": "2020-09-29T03:30:34+00:00"
  775. },
  776. {
  777. "name": "alibabacloud/tea-utils",
  778. "version": "0.2.16",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  782. "reference": "ae10b306509a196e4af71803db710a0a05c54e60"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/ae10b306509a196e4af71803db710a0a05c54e60",
  787. "reference": "ae10b306509a196e4af71803db710a0a05c54e60",
  788. "shasum": ""
  789. },
  790. "require": {
  791. "alibabacloud/tea": "^3.1",
  792. "php": ">5.5"
  793. },
  794. "type": "library",
  795. "autoload": {
  796. "psr-4": {
  797. "AlibabaCloud\\Tea\\Utils\\": "src"
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "Apache-2.0"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Alibaba Cloud SDK",
  807. "email": "sdk-team@alibabacloud.com"
  808. }
  809. ],
  810. "description": "Alibaba Cloud Tea Utils for PHP",
  811. "support": {
  812. "issues": "https://github.com/aliyun/tea-util/issues",
  813. "source": "https://github.com/aliyun/tea-util"
  814. },
  815. "time": "2022-07-05T09:58:20+00:00"
  816. },
  817. {
  818. "name": "alibabacloud/tea-xml",
  819. "version": "0.2.3",
  820. "source": {
  821. "type": "git",
  822. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  823. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b"
  824. },
  825. "dist": {
  826. "type": "zip",
  827. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  828. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  829. "shasum": ""
  830. },
  831. "require": {
  832. "php": ">5.5"
  833. },
  834. "require-dev": {
  835. "phpunit/phpunit": "^4.8.35|^5.4.3",
  836. "symfony/var-dumper": "*"
  837. },
  838. "type": "library",
  839. "autoload": {
  840. "psr-4": {
  841. "AlibabaCloud\\Tea\\XML\\": "src"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "Apache-2.0"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Alibaba Cloud SDK",
  851. "email": "sdk-team@alibabacloud.com"
  852. }
  853. ],
  854. "description": "Alibaba Cloud Tea XML Library for PHP",
  855. "support": {
  856. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.3"
  857. },
  858. "time": "2021-12-08T06:43:00+00:00"
  859. },
  860. {
  861. "name": "alipaysdk/easysdk",
  862. "version": "2.2.2",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/alipay/alipay-easysdk.git",
  866. "reference": "eac46450971d094e8cfb1c183da1080ca53d75b9"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/eac46450971d094e8cfb1c183da1080ca53d75b9",
  871. "reference": "eac46450971d094e8cfb1c183da1080ca53d75b9",
  872. "shasum": ""
  873. },
  874. "require": {
  875. "alibabacloud/tea": "^3.1",
  876. "alibabacloud/tea-fileform": "^0.3.2",
  877. "ext-ctype": "*",
  878. "ext-curl": "*",
  879. "ext-dom": "*",
  880. "ext-fileinfo": "*",
  881. "ext-json": "*",
  882. "ext-libxml": "*",
  883. "ext-mbstring": "*",
  884. "ext-openssl": "*",
  885. "ext-simplexml": "*",
  886. "ext-xmlwriter": "*",
  887. "guzzlehttp/guzzle": ">=6.3",
  888. "php": ">=7.0"
  889. },
  890. "require-dev": {
  891. "phpunit/phpunit": "^7.5"
  892. },
  893. "type": "library",
  894. "autoload": {
  895. "psr-4": {
  896. "Alipay\\EasySDK\\": "php/src/"
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "Apache-2.0"
  902. ],
  903. "authors": [
  904. {
  905. "name": "junying.wjy",
  906. "email": "junying.wjy@antfin.com"
  907. }
  908. ],
  909. "description": "支付宝官方 Alipay Easy SDK",
  910. "support": {
  911. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.2"
  912. },
  913. "time": "2022-05-07T03:29:10+00:00"
  914. },
  915. {
  916. "name": "aliyuncs/oss-sdk-php",
  917. "version": "v2.5.0",
  918. "source": {
  919. "type": "git",
  920. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  921. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  922. },
  923. "dist": {
  924. "type": "zip",
  925. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  926. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  927. "shasum": ""
  928. },
  929. "require": {
  930. "php": ">=5.3"
  931. },
  932. "require-dev": {
  933. "phpunit/phpunit": "*",
  934. "satooshi/php-coveralls": "*"
  935. },
  936. "type": "library",
  937. "autoload": {
  938. "psr-4": {
  939. "OSS\\": "src/OSS"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Aliyuncs",
  949. "homepage": "http://www.aliyun.com"
  950. }
  951. ],
  952. "description": "Aliyun OSS SDK for PHP",
  953. "homepage": "http://www.aliyun.com/product/oss/",
  954. "support": {
  955. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  956. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  957. },
  958. "time": "2022-05-13T07:41:28+00:00"
  959. },
  960. {
  961. "name": "bacon/bacon-qr-code",
  962. "version": "2.0.7",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/Bacon/BaconQrCode.git",
  966. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  971. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "dasprid/enum": "^1.0.3",
  976. "ext-iconv": "*",
  977. "php": "^7.1 || ^8.0"
  978. },
  979. "require-dev": {
  980. "phly/keep-a-changelog": "^2.1",
  981. "phpunit/phpunit": "^7 | ^8 | ^9",
  982. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  983. "squizlabs/php_codesniffer": "^3.4"
  984. },
  985. "suggest": {
  986. "ext-imagick": "to generate QR code images"
  987. },
  988. "type": "library",
  989. "autoload": {
  990. "psr-4": {
  991. "BaconQrCode\\": "src/"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "BSD-2-Clause"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Ben Scholzen 'DASPRiD'",
  1001. "email": "mail@dasprids.de",
  1002. "homepage": "https://dasprids.de/",
  1003. "role": "Developer"
  1004. }
  1005. ],
  1006. "description": "BaconQrCode is a QR code generator for PHP.",
  1007. "homepage": "https://github.com/Bacon/BaconQrCode",
  1008. "support": {
  1009. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  1010. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7"
  1011. },
  1012. "time": "2022-03-14T02:02:36+00:00"
  1013. },
  1014. {
  1015. "name": "clagiordano/weblibs-configmanager",
  1016. "version": "v1.5.0",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1020. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  1025. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  1026. "shasum": ""
  1027. },
  1028. "require": {
  1029. "ext-json": "*",
  1030. "php": ">=5.4",
  1031. "symfony/yaml": "^2.8"
  1032. },
  1033. "require-dev": {
  1034. "clagiordano/phpunit-result-printer": "^1",
  1035. "php-coveralls/php-coveralls": "^1.1",
  1036. "phpunit/phpunit": "^4.8"
  1037. },
  1038. "type": "library",
  1039. "autoload": {
  1040. "psr-4": {
  1041. "clagiordano\\weblibs\\configmanager\\": "src/"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "LGPL-3.0-or-later"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "Claudio Giordano",
  1051. "email": "claudio.giordano@autistici.org",
  1052. "role": "Developer"
  1053. }
  1054. ],
  1055. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1056. "keywords": [
  1057. "clagiordano",
  1058. "configuration",
  1059. "manager",
  1060. "tool",
  1061. "weblibs"
  1062. ],
  1063. "support": {
  1064. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1065. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.5.0"
  1066. },
  1067. "time": "2021-07-12T15:27:21+00:00"
  1068. },
  1069. {
  1070. "name": "danielstjules/stringy",
  1071. "version": "3.1.0",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/danielstjules/Stringy.git",
  1075. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  1080. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "php": ">=5.4.0",
  1085. "symfony/polyfill-mbstring": "~1.1"
  1086. },
  1087. "require-dev": {
  1088. "phpunit/phpunit": "~4.0"
  1089. },
  1090. "type": "library",
  1091. "autoload": {
  1092. "files": [
  1093. "src/Create.php"
  1094. ],
  1095. "psr-4": {
  1096. "Stringy\\": "src/"
  1097. }
  1098. },
  1099. "notification-url": "https://packagist.org/downloads/",
  1100. "license": [
  1101. "MIT"
  1102. ],
  1103. "authors": [
  1104. {
  1105. "name": "Daniel St. Jules",
  1106. "email": "danielst.jules@gmail.com",
  1107. "homepage": "http://www.danielstjules.com"
  1108. }
  1109. ],
  1110. "description": "A string manipulation library with multibyte support",
  1111. "homepage": "https://github.com/danielstjules/Stringy",
  1112. "keywords": [
  1113. "UTF",
  1114. "helpers",
  1115. "manipulation",
  1116. "methods",
  1117. "multibyte",
  1118. "string",
  1119. "utf-8",
  1120. "utility",
  1121. "utils"
  1122. ],
  1123. "support": {
  1124. "issues": "https://github.com/danielstjules/Stringy/issues",
  1125. "source": "https://github.com/danielstjules/Stringy"
  1126. },
  1127. "time": "2017-06-12T01:10:27+00:00"
  1128. },
  1129. {
  1130. "name": "dasprid/enum",
  1131. "version": "1.0.3",
  1132. "source": {
  1133. "type": "git",
  1134. "url": "https://github.com/DASPRiD/Enum.git",
  1135. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  1136. },
  1137. "dist": {
  1138. "type": "zip",
  1139. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  1140. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  1141. "shasum": ""
  1142. },
  1143. "require-dev": {
  1144. "phpunit/phpunit": "^7 | ^8 | ^9",
  1145. "squizlabs/php_codesniffer": "^3.4"
  1146. },
  1147. "type": "library",
  1148. "autoload": {
  1149. "psr-4": {
  1150. "DASPRiD\\Enum\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "BSD-2-Clause"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Ben Scholzen 'DASPRiD'",
  1160. "email": "mail@dasprids.de",
  1161. "homepage": "https://dasprids.de/",
  1162. "role": "Developer"
  1163. }
  1164. ],
  1165. "description": "PHP 7.1 enum implementation",
  1166. "keywords": [
  1167. "enum",
  1168. "map"
  1169. ],
  1170. "support": {
  1171. "issues": "https://github.com/DASPRiD/Enum/issues",
  1172. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  1173. },
  1174. "time": "2020-10-02T16:03:48+00:00"
  1175. },
  1176. {
  1177. "name": "easywechat-composer/easywechat-composer",
  1178. "version": "1.4.1",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1182. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1187. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1188. "shasum": ""
  1189. },
  1190. "require": {
  1191. "composer-plugin-api": "^1.0 || ^2.0",
  1192. "php": ">=7.0"
  1193. },
  1194. "require-dev": {
  1195. "composer/composer": "^1.0 || ^2.0",
  1196. "phpunit/phpunit": "^6.5 || ^7.0"
  1197. },
  1198. "type": "composer-plugin",
  1199. "extra": {
  1200. "class": "EasyWeChatComposer\\Plugin"
  1201. },
  1202. "autoload": {
  1203. "psr-4": {
  1204. "EasyWeChatComposer\\": "src/"
  1205. }
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "MIT"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "张铭阳",
  1214. "email": "mingyoungcheung@gmail.com"
  1215. }
  1216. ],
  1217. "description": "The composer plugin for EasyWeChat",
  1218. "support": {
  1219. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1220. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1221. },
  1222. "time": "2021-07-05T04:03:22+00:00"
  1223. },
  1224. {
  1225. "name": "endroid/qr-code",
  1226. "version": "3.9.7",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/endroid/qr-code.git",
  1230. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1235. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "bacon/bacon-qr-code": "^2.0",
  1240. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1241. "myclabs/php-enum": "^1.5",
  1242. "php": "^7.3||^8.0",
  1243. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1244. "symfony/property-access": "^3.4||^4.4||^5.0"
  1245. },
  1246. "require-dev": {
  1247. "endroid/quality": "^1.5.2",
  1248. "setasign/fpdf": "^1.8"
  1249. },
  1250. "suggest": {
  1251. "ext-gd": "Required for generating PNG images",
  1252. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1253. "setasign/fpdf": "Required to use the FPDF writer.",
  1254. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1255. },
  1256. "type": "library",
  1257. "extra": {
  1258. "branch-alias": {
  1259. "dev-master": "3.x-dev"
  1260. }
  1261. },
  1262. "autoload": {
  1263. "psr-4": {
  1264. "Endroid\\QrCode\\": "src/"
  1265. }
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Jeroen van den Enden",
  1274. "email": "info@endroid.nl"
  1275. }
  1276. ],
  1277. "description": "Endroid QR Code",
  1278. "homepage": "https://github.com/endroid/qr-code",
  1279. "keywords": [
  1280. "bundle",
  1281. "code",
  1282. "endroid",
  1283. "php",
  1284. "qr",
  1285. "qrcode"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/endroid/qr-code/issues",
  1289. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1290. },
  1291. "funding": [
  1292. {
  1293. "url": "https://github.com/endroid",
  1294. "type": "github"
  1295. }
  1296. ],
  1297. "time": "2021-04-20T19:10:54+00:00"
  1298. },
  1299. {
  1300. "name": "firebase/php-jwt",
  1301. "version": "v5.5.1",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/firebase/php-jwt.git",
  1305. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1310. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "php": ">=5.3.0"
  1315. },
  1316. "require-dev": {
  1317. "phpunit/phpunit": ">=4.8 <=9"
  1318. },
  1319. "suggest": {
  1320. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1321. },
  1322. "type": "library",
  1323. "autoload": {
  1324. "psr-4": {
  1325. "Firebase\\JWT\\": "src"
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "BSD-3-Clause"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Neuman Vong",
  1335. "email": "neuman+pear@twilio.com",
  1336. "role": "Developer"
  1337. },
  1338. {
  1339. "name": "Anant Narayanan",
  1340. "email": "anant@php.net",
  1341. "role": "Developer"
  1342. }
  1343. ],
  1344. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1345. "homepage": "https://github.com/firebase/php-jwt",
  1346. "keywords": [
  1347. "jwt",
  1348. "php"
  1349. ],
  1350. "support": {
  1351. "issues": "https://github.com/firebase/php-jwt/issues",
  1352. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1353. },
  1354. "time": "2021-11-08T20:18:51+00:00"
  1355. },
  1356. {
  1357. "name": "guzzlehttp/guzzle",
  1358. "version": "7.4.5",
  1359. "source": {
  1360. "type": "git",
  1361. "url": "https://github.com/guzzle/guzzle.git",
  1362. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  1363. },
  1364. "dist": {
  1365. "type": "zip",
  1366. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1367. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1368. "shasum": ""
  1369. },
  1370. "require": {
  1371. "ext-json": "*",
  1372. "guzzlehttp/promises": "^1.5",
  1373. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1374. "php": "^7.2.5 || ^8.0",
  1375. "psr/http-client": "^1.0",
  1376. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1377. },
  1378. "provide": {
  1379. "psr/http-client-implementation": "1.0"
  1380. },
  1381. "require-dev": {
  1382. "bamarni/composer-bin-plugin": "^1.4.1",
  1383. "ext-curl": "*",
  1384. "php-http/client-integration-tests": "^3.0",
  1385. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1386. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1387. },
  1388. "suggest": {
  1389. "ext-curl": "Required for CURL handler support",
  1390. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1391. "psr/log": "Required for using the Log middleware"
  1392. },
  1393. "type": "library",
  1394. "extra": {
  1395. "branch-alias": {
  1396. "dev-master": "7.4-dev"
  1397. }
  1398. },
  1399. "autoload": {
  1400. "files": [
  1401. "src/functions_include.php"
  1402. ],
  1403. "psr-4": {
  1404. "GuzzleHttp\\": "src/"
  1405. }
  1406. },
  1407. "notification-url": "https://packagist.org/downloads/",
  1408. "license": [
  1409. "MIT"
  1410. ],
  1411. "authors": [
  1412. {
  1413. "name": "Graham Campbell",
  1414. "email": "hello@gjcampbell.co.uk",
  1415. "homepage": "https://github.com/GrahamCampbell"
  1416. },
  1417. {
  1418. "name": "Michael Dowling",
  1419. "email": "mtdowling@gmail.com",
  1420. "homepage": "https://github.com/mtdowling"
  1421. },
  1422. {
  1423. "name": "Jeremy Lindblom",
  1424. "email": "jeremeamia@gmail.com",
  1425. "homepage": "https://github.com/jeremeamia"
  1426. },
  1427. {
  1428. "name": "George Mponos",
  1429. "email": "gmponos@gmail.com",
  1430. "homepage": "https://github.com/gmponos"
  1431. },
  1432. {
  1433. "name": "Tobias Nyholm",
  1434. "email": "tobias.nyholm@gmail.com",
  1435. "homepage": "https://github.com/Nyholm"
  1436. },
  1437. {
  1438. "name": "Márk Sági-Kazár",
  1439. "email": "mark.sagikazar@gmail.com",
  1440. "homepage": "https://github.com/sagikazarmark"
  1441. },
  1442. {
  1443. "name": "Tobias Schultze",
  1444. "email": "webmaster@tubo-world.de",
  1445. "homepage": "https://github.com/Tobion"
  1446. }
  1447. ],
  1448. "description": "Guzzle is a PHP HTTP client library",
  1449. "keywords": [
  1450. "client",
  1451. "curl",
  1452. "framework",
  1453. "http",
  1454. "http client",
  1455. "psr-18",
  1456. "psr-7",
  1457. "rest",
  1458. "web service"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/guzzle/guzzle/issues",
  1462. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  1463. },
  1464. "funding": [
  1465. {
  1466. "url": "https://github.com/GrahamCampbell",
  1467. "type": "github"
  1468. },
  1469. {
  1470. "url": "https://github.com/Nyholm",
  1471. "type": "github"
  1472. },
  1473. {
  1474. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1475. "type": "tidelift"
  1476. }
  1477. ],
  1478. "time": "2022-06-20T22:16:13+00:00"
  1479. },
  1480. {
  1481. "name": "guzzlehttp/promises",
  1482. "version": "1.5.1",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/guzzle/promises.git",
  1486. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1491. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1492. "shasum": ""
  1493. },
  1494. "require": {
  1495. "php": ">=5.5"
  1496. },
  1497. "require-dev": {
  1498. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-master": "1.5-dev"
  1504. }
  1505. },
  1506. "autoload": {
  1507. "files": [
  1508. "src/functions_include.php"
  1509. ],
  1510. "psr-4": {
  1511. "GuzzleHttp\\Promise\\": "src/"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Graham Campbell",
  1521. "email": "hello@gjcampbell.co.uk",
  1522. "homepage": "https://github.com/GrahamCampbell"
  1523. },
  1524. {
  1525. "name": "Michael Dowling",
  1526. "email": "mtdowling@gmail.com",
  1527. "homepage": "https://github.com/mtdowling"
  1528. },
  1529. {
  1530. "name": "Tobias Nyholm",
  1531. "email": "tobias.nyholm@gmail.com",
  1532. "homepage": "https://github.com/Nyholm"
  1533. },
  1534. {
  1535. "name": "Tobias Schultze",
  1536. "email": "webmaster@tubo-world.de",
  1537. "homepage": "https://github.com/Tobion"
  1538. }
  1539. ],
  1540. "description": "Guzzle promises library",
  1541. "keywords": [
  1542. "promise"
  1543. ],
  1544. "support": {
  1545. "issues": "https://github.com/guzzle/promises/issues",
  1546. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1547. },
  1548. "funding": [
  1549. {
  1550. "url": "https://github.com/GrahamCampbell",
  1551. "type": "github"
  1552. },
  1553. {
  1554. "url": "https://github.com/Nyholm",
  1555. "type": "github"
  1556. },
  1557. {
  1558. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1559. "type": "tidelift"
  1560. }
  1561. ],
  1562. "time": "2021-10-22T20:56:57+00:00"
  1563. },
  1564. {
  1565. "name": "guzzlehttp/psr7",
  1566. "version": "2.4.0",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/guzzle/psr7.git",
  1570. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  1575. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  1576. "shasum": ""
  1577. },
  1578. "require": {
  1579. "php": "^7.2.5 || ^8.0",
  1580. "psr/http-factory": "^1.0",
  1581. "psr/http-message": "^1.0",
  1582. "ralouphie/getallheaders": "^3.0"
  1583. },
  1584. "provide": {
  1585. "psr/http-factory-implementation": "1.0",
  1586. "psr/http-message-implementation": "1.0"
  1587. },
  1588. "require-dev": {
  1589. "bamarni/composer-bin-plugin": "^1.4.1",
  1590. "http-interop/http-factory-tests": "^0.9",
  1591. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  1592. },
  1593. "suggest": {
  1594. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1595. },
  1596. "type": "library",
  1597. "extra": {
  1598. "branch-alias": {
  1599. "dev-master": "2.4-dev"
  1600. }
  1601. },
  1602. "autoload": {
  1603. "psr-4": {
  1604. "GuzzleHttp\\Psr7\\": "src/"
  1605. }
  1606. },
  1607. "notification-url": "https://packagist.org/downloads/",
  1608. "license": [
  1609. "MIT"
  1610. ],
  1611. "authors": [
  1612. {
  1613. "name": "Graham Campbell",
  1614. "email": "hello@gjcampbell.co.uk",
  1615. "homepage": "https://github.com/GrahamCampbell"
  1616. },
  1617. {
  1618. "name": "Michael Dowling",
  1619. "email": "mtdowling@gmail.com",
  1620. "homepage": "https://github.com/mtdowling"
  1621. },
  1622. {
  1623. "name": "George Mponos",
  1624. "email": "gmponos@gmail.com",
  1625. "homepage": "https://github.com/gmponos"
  1626. },
  1627. {
  1628. "name": "Tobias Nyholm",
  1629. "email": "tobias.nyholm@gmail.com",
  1630. "homepage": "https://github.com/Nyholm"
  1631. },
  1632. {
  1633. "name": "Márk Sági-Kazár",
  1634. "email": "mark.sagikazar@gmail.com",
  1635. "homepage": "https://github.com/sagikazarmark"
  1636. },
  1637. {
  1638. "name": "Tobias Schultze",
  1639. "email": "webmaster@tubo-world.de",
  1640. "homepage": "https://github.com/Tobion"
  1641. },
  1642. {
  1643. "name": "Márk Sági-Kazár",
  1644. "email": "mark.sagikazar@gmail.com",
  1645. "homepage": "https://sagikazarmark.hu"
  1646. }
  1647. ],
  1648. "description": "PSR-7 message implementation that also provides common utility methods",
  1649. "keywords": [
  1650. "http",
  1651. "message",
  1652. "psr-7",
  1653. "request",
  1654. "response",
  1655. "stream",
  1656. "uri",
  1657. "url"
  1658. ],
  1659. "support": {
  1660. "issues": "https://github.com/guzzle/psr7/issues",
  1661. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  1662. },
  1663. "funding": [
  1664. {
  1665. "url": "https://github.com/GrahamCampbell",
  1666. "type": "github"
  1667. },
  1668. {
  1669. "url": "https://github.com/Nyholm",
  1670. "type": "github"
  1671. },
  1672. {
  1673. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1674. "type": "tidelift"
  1675. }
  1676. ],
  1677. "time": "2022-06-20T21:43:11+00:00"
  1678. },
  1679. {
  1680. "name": "hg/apidoc",
  1681. "version": "v1.1.2",
  1682. "source": {
  1683. "type": "git",
  1684. "url": "https://github.com/HGthecode/thinkphp-apidoc.git",
  1685. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4"
  1686. },
  1687. "dist": {
  1688. "type": "zip",
  1689. "url": "https://api.github.com/repos/HGthecode/thinkphp-apidoc/zipball/4925ddf39c22f48acca702843d53bbb70a4687a4",
  1690. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4",
  1691. "shasum": ""
  1692. },
  1693. "require": {
  1694. "php": ">=5.6"
  1695. },
  1696. "type": "think-extend",
  1697. "extra": {
  1698. "think": {
  1699. "services": [
  1700. "hg\\apidoc\\Service"
  1701. ],
  1702. "config": {
  1703. "apidoc": "src/config.php"
  1704. }
  1705. }
  1706. },
  1707. "autoload": {
  1708. "psr-4": {
  1709. "hg\\apidoc\\": "src/"
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "hg-code",
  1719. "email": "376401263@qq.com"
  1720. }
  1721. ],
  1722. "description": "thinkphp API文档自动生成",
  1723. "keywords": [
  1724. "apidoc",
  1725. "api文档",
  1726. "php接口文档",
  1727. "thinkphp",
  1728. "thinkphp6",
  1729. "接口文档",
  1730. "注释生成",
  1731. "自动生成"
  1732. ],
  1733. "support": {
  1734. "issues": "https://github.com/HGthecode/thinkphp-apidoc/issues",
  1735. "source": "https://github.com/HGthecode/thinkphp-apidoc/tree/v1.1.2"
  1736. },
  1737. "time": "2021-02-20T02:40:45+00:00"
  1738. },
  1739. {
  1740. "name": "khanamiryan/qrcode-detector-decoder",
  1741. "version": "1.0.5.2",
  1742. "source": {
  1743. "type": "git",
  1744. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1745. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1746. },
  1747. "dist": {
  1748. "type": "zip",
  1749. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1750. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1751. "shasum": ""
  1752. },
  1753. "require": {
  1754. "php": ">=5.6"
  1755. },
  1756. "require-dev": {
  1757. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1758. },
  1759. "type": "library",
  1760. "autoload": {
  1761. "files": [
  1762. "lib/Common/customFunctions.php"
  1763. ],
  1764. "psr-4": {
  1765. "Zxing\\": "lib/"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "MIT",
  1771. "Apache-2.0"
  1772. ],
  1773. "authors": [
  1774. {
  1775. "name": "Ashot Khanamiryan",
  1776. "email": "a.khanamiryan@gmail.com",
  1777. "homepage": "https://github.com/khanamiryan",
  1778. "role": "Developer"
  1779. }
  1780. ],
  1781. "description": "QR code decoder / reader",
  1782. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1783. "keywords": [
  1784. "barcode",
  1785. "qr",
  1786. "zxing"
  1787. ],
  1788. "support": {
  1789. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1790. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  1791. },
  1792. "time": "2021-07-13T18:46:38+00:00"
  1793. },
  1794. {
  1795. "name": "lizhichao/one-sm",
  1796. "version": "1.10",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://github.com/lizhichao/sm.git",
  1800. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1805. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1806. "shasum": ""
  1807. },
  1808. "require": {
  1809. "php": ">=5.6"
  1810. },
  1811. "type": "library",
  1812. "autoload": {
  1813. "psr-4": {
  1814. "OneSm\\": "src/"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "Apache-2.0"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "tanszhe",
  1824. "email": "1018595261@qq.com"
  1825. }
  1826. ],
  1827. "description": "国密sm3",
  1828. "keywords": [
  1829. "php",
  1830. "sm3"
  1831. ],
  1832. "support": {
  1833. "issues": "https://github.com/lizhichao/sm/issues",
  1834. "source": "https://github.com/lizhichao/sm/tree/1.10"
  1835. },
  1836. "funding": [
  1837. {
  1838. "url": "https://www.vicsdf.com/img/w.jpg",
  1839. "type": "custom"
  1840. },
  1841. {
  1842. "url": "https://www.vicsdf.com/img/z.jpg",
  1843. "type": "custom"
  1844. }
  1845. ],
  1846. "time": "2021-05-26T06:19:22+00:00"
  1847. },
  1848. {
  1849. "name": "monolog/monolog",
  1850. "version": "2.7.0",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/Seldaek/monolog.git",
  1854. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  1859. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "php": ">=7.2",
  1864. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1865. },
  1866. "provide": {
  1867. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1868. },
  1869. "require-dev": {
  1870. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1871. "doctrine/couchdb": "~1.0@dev",
  1872. "elasticsearch/elasticsearch": "^7 || ^8",
  1873. "ext-json": "*",
  1874. "graylog2/gelf-php": "^1.4.2",
  1875. "guzzlehttp/guzzle": "^7.4",
  1876. "guzzlehttp/psr7": "^2.2",
  1877. "mongodb/mongodb": "^1.8",
  1878. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1879. "php-console/php-console": "^3.1.3",
  1880. "phpspec/prophecy": "^1.15",
  1881. "phpstan/phpstan": "^0.12.91",
  1882. "phpunit/phpunit": "^8.5.14",
  1883. "predis/predis": "^1.1",
  1884. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1885. "ruflin/elastica": "^7",
  1886. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1887. "symfony/mailer": "^5.4 || ^6",
  1888. "symfony/mime": "^5.4 || ^6"
  1889. },
  1890. "suggest": {
  1891. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1892. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1893. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1894. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1895. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1896. "ext-mbstring": "Allow to work properly with unicode symbols",
  1897. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1898. "ext-openssl": "Required to send log messages using SSL",
  1899. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1900. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1901. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1902. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1903. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1904. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1905. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1906. },
  1907. "type": "library",
  1908. "extra": {
  1909. "branch-alias": {
  1910. "dev-main": "2.x-dev"
  1911. }
  1912. },
  1913. "autoload": {
  1914. "psr-4": {
  1915. "Monolog\\": "src/Monolog"
  1916. }
  1917. },
  1918. "notification-url": "https://packagist.org/downloads/",
  1919. "license": [
  1920. "MIT"
  1921. ],
  1922. "authors": [
  1923. {
  1924. "name": "Jordi Boggiano",
  1925. "email": "j.boggiano@seld.be",
  1926. "homepage": "https://seld.be"
  1927. }
  1928. ],
  1929. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1930. "homepage": "https://github.com/Seldaek/monolog",
  1931. "keywords": [
  1932. "log",
  1933. "logging",
  1934. "psr-3"
  1935. ],
  1936. "support": {
  1937. "issues": "https://github.com/Seldaek/monolog/issues",
  1938. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  1939. },
  1940. "funding": [
  1941. {
  1942. "url": "https://github.com/Seldaek",
  1943. "type": "github"
  1944. },
  1945. {
  1946. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1947. "type": "tidelift"
  1948. }
  1949. ],
  1950. "time": "2022-06-09T08:59:12+00:00"
  1951. },
  1952. {
  1953. "name": "mtdowling/jmespath.php",
  1954. "version": "2.6.1",
  1955. "source": {
  1956. "type": "git",
  1957. "url": "https://github.com/jmespath/jmespath.php.git",
  1958. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1959. },
  1960. "dist": {
  1961. "type": "zip",
  1962. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1963. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1964. "shasum": ""
  1965. },
  1966. "require": {
  1967. "php": "^5.4 || ^7.0 || ^8.0",
  1968. "symfony/polyfill-mbstring": "^1.17"
  1969. },
  1970. "require-dev": {
  1971. "composer/xdebug-handler": "^1.4 || ^2.0",
  1972. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1973. },
  1974. "bin": [
  1975. "bin/jp.php"
  1976. ],
  1977. "type": "library",
  1978. "extra": {
  1979. "branch-alias": {
  1980. "dev-master": "2.6-dev"
  1981. }
  1982. },
  1983. "autoload": {
  1984. "files": [
  1985. "src/JmesPath.php"
  1986. ],
  1987. "psr-4": {
  1988. "JmesPath\\": "src/"
  1989. }
  1990. },
  1991. "notification-url": "https://packagist.org/downloads/",
  1992. "license": [
  1993. "MIT"
  1994. ],
  1995. "authors": [
  1996. {
  1997. "name": "Michael Dowling",
  1998. "email": "mtdowling@gmail.com",
  1999. "homepage": "https://github.com/mtdowling"
  2000. }
  2001. ],
  2002. "description": "Declaratively specify how to extract elements from a JSON document",
  2003. "keywords": [
  2004. "json",
  2005. "jsonpath"
  2006. ],
  2007. "support": {
  2008. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2009. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  2010. },
  2011. "time": "2021-06-14T00:11:39+00:00"
  2012. },
  2013. {
  2014. "name": "myclabs/php-enum",
  2015. "version": "1.8.3",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/myclabs/php-enum.git",
  2019. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2024. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "ext-json": "*",
  2029. "php": "^7.3 || ^8.0"
  2030. },
  2031. "require-dev": {
  2032. "phpunit/phpunit": "^9.5",
  2033. "squizlabs/php_codesniffer": "1.*",
  2034. "vimeo/psalm": "^4.6.2"
  2035. },
  2036. "type": "library",
  2037. "autoload": {
  2038. "psr-4": {
  2039. "MyCLabs\\Enum\\": "src/"
  2040. }
  2041. },
  2042. "notification-url": "https://packagist.org/downloads/",
  2043. "license": [
  2044. "MIT"
  2045. ],
  2046. "authors": [
  2047. {
  2048. "name": "PHP Enum contributors",
  2049. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2050. }
  2051. ],
  2052. "description": "PHP Enum implementation",
  2053. "homepage": "http://github.com/myclabs/php-enum",
  2054. "keywords": [
  2055. "enum"
  2056. ],
  2057. "support": {
  2058. "issues": "https://github.com/myclabs/php-enum/issues",
  2059. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  2060. },
  2061. "funding": [
  2062. {
  2063. "url": "https://github.com/mnapoli",
  2064. "type": "github"
  2065. },
  2066. {
  2067. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2068. "type": "tidelift"
  2069. }
  2070. ],
  2071. "time": "2021-07-05T08:18:36+00:00"
  2072. },
  2073. {
  2074. "name": "overtrue/socialite",
  2075. "version": "2.0.24",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/overtrue/socialite.git",
  2079. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2084. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "ext-json": "*",
  2089. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  2090. "php": ">=5.6",
  2091. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  2092. },
  2093. "require-dev": {
  2094. "mockery/mockery": "~1.2",
  2095. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  2096. },
  2097. "type": "library",
  2098. "autoload": {
  2099. "psr-4": {
  2100. "Overtrue\\Socialite\\": "src/"
  2101. }
  2102. },
  2103. "notification-url": "https://packagist.org/downloads/",
  2104. "license": [
  2105. "MIT"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "overtrue",
  2110. "email": "anzhengchao@gmail.com"
  2111. }
  2112. ],
  2113. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2114. "keywords": [
  2115. "login",
  2116. "oauth",
  2117. "qq",
  2118. "social",
  2119. "wechat",
  2120. "weibo"
  2121. ],
  2122. "support": {
  2123. "issues": "https://github.com/overtrue/socialite/issues",
  2124. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  2125. },
  2126. "funding": [
  2127. {
  2128. "url": "https://www.patreon.com/overtrue",
  2129. "type": "patreon"
  2130. }
  2131. ],
  2132. "time": "2021-05-13T16:04:48+00:00"
  2133. },
  2134. {
  2135. "name": "overtrue/wechat",
  2136. "version": "4.5.0",
  2137. "source": {
  2138. "type": "git",
  2139. "url": "https://github.com/w7corp/easywechat.git",
  2140. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  2141. },
  2142. "dist": {
  2143. "type": "zip",
  2144. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  2145. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  2146. "shasum": ""
  2147. },
  2148. "require": {
  2149. "easywechat-composer/easywechat-composer": "^1.1",
  2150. "ext-fileinfo": "*",
  2151. "ext-openssl": "*",
  2152. "ext-simplexml": "*",
  2153. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2154. "monolog/monolog": "^1.22 || ^2.0",
  2155. "overtrue/socialite": "~2.0",
  2156. "php": ">=7.2",
  2157. "pimple/pimple": "^3.0",
  2158. "psr/simple-cache": "^1.0",
  2159. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  2160. "symfony/event-dispatcher": "^4.3 || ^5.0",
  2161. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  2162. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  2163. },
  2164. "require-dev": {
  2165. "friendsofphp/php-cs-fixer": "^2.15",
  2166. "mikey179/vfsstream": "^1.6",
  2167. "mockery/mockery": "^1.2.3",
  2168. "phpstan/phpstan": "^0.12.0",
  2169. "phpunit/phpunit": "^7.5"
  2170. },
  2171. "type": "library",
  2172. "autoload": {
  2173. "files": [
  2174. "src/Kernel/Support/Helpers.php",
  2175. "src/Kernel/Helpers.php"
  2176. ],
  2177. "psr-4": {
  2178. "EasyWeChat\\": "src/"
  2179. }
  2180. },
  2181. "notification-url": "https://packagist.org/downloads/",
  2182. "license": [
  2183. "MIT"
  2184. ],
  2185. "authors": [
  2186. {
  2187. "name": "overtrue",
  2188. "email": "anzhengchao@gmail.com"
  2189. }
  2190. ],
  2191. "description": "微信SDK",
  2192. "keywords": [
  2193. "easywechat",
  2194. "sdk",
  2195. "wechat",
  2196. "weixin",
  2197. "weixin-sdk"
  2198. ],
  2199. "support": {
  2200. "issues": "https://github.com/w7corp/easywechat/issues",
  2201. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  2202. },
  2203. "funding": [
  2204. {
  2205. "url": "https://github.com/overtrue",
  2206. "type": "github"
  2207. }
  2208. ],
  2209. "abandoned": "w7corp/easywechat",
  2210. "time": "2021-12-27T13:56:47+00:00"
  2211. },
  2212. {
  2213. "name": "phpoffice/phpexcel",
  2214. "version": "1.8.2",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/PHPOffice/PHPExcel.git",
  2218. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2223. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2224. "shasum": ""
  2225. },
  2226. "require": {
  2227. "ext-mbstring": "*",
  2228. "ext-xml": "*",
  2229. "ext-xmlwriter": "*",
  2230. "php": "^5.2|^7.0"
  2231. },
  2232. "require-dev": {
  2233. "squizlabs/php_codesniffer": "2.*"
  2234. },
  2235. "type": "library",
  2236. "autoload": {
  2237. "psr-0": {
  2238. "PHPExcel": "Classes/"
  2239. }
  2240. },
  2241. "notification-url": "https://packagist.org/downloads/",
  2242. "license": [
  2243. "LGPL-2.1"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "Maarten Balliauw",
  2248. "homepage": "http://blog.maartenballiauw.be"
  2249. },
  2250. {
  2251. "name": "Erik Tilt"
  2252. },
  2253. {
  2254. "name": "Franck Lefevre",
  2255. "homepage": "http://rootslabs.net"
  2256. },
  2257. {
  2258. "name": "Mark Baker",
  2259. "homepage": "http://markbakeruk.net"
  2260. }
  2261. ],
  2262. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2263. "homepage": "https://github.com/PHPOffice/PHPExcel",
  2264. "keywords": [
  2265. "OpenXML",
  2266. "excel",
  2267. "php",
  2268. "spreadsheet",
  2269. "xls",
  2270. "xlsx"
  2271. ],
  2272. "support": {
  2273. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  2274. "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
  2275. },
  2276. "abandoned": "phpoffice/phpspreadsheet",
  2277. "time": "2018-11-22T23:07:24+00:00"
  2278. },
  2279. {
  2280. "name": "pimple/pimple",
  2281. "version": "v3.5.0",
  2282. "source": {
  2283. "type": "git",
  2284. "url": "https://github.com/silexphp/Pimple.git",
  2285. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  2286. },
  2287. "dist": {
  2288. "type": "zip",
  2289. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2290. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2291. "shasum": ""
  2292. },
  2293. "require": {
  2294. "php": ">=7.2.5",
  2295. "psr/container": "^1.1 || ^2.0"
  2296. },
  2297. "require-dev": {
  2298. "symfony/phpunit-bridge": "^5.4@dev"
  2299. },
  2300. "type": "library",
  2301. "extra": {
  2302. "branch-alias": {
  2303. "dev-master": "3.4.x-dev"
  2304. }
  2305. },
  2306. "autoload": {
  2307. "psr-0": {
  2308. "Pimple": "src/"
  2309. }
  2310. },
  2311. "notification-url": "https://packagist.org/downloads/",
  2312. "license": [
  2313. "MIT"
  2314. ],
  2315. "authors": [
  2316. {
  2317. "name": "Fabien Potencier",
  2318. "email": "fabien@symfony.com"
  2319. }
  2320. ],
  2321. "description": "Pimple, a simple Dependency Injection Container",
  2322. "homepage": "https://pimple.symfony.com",
  2323. "keywords": [
  2324. "container",
  2325. "dependency injection"
  2326. ],
  2327. "support": {
  2328. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  2329. },
  2330. "time": "2021-10-28T11:13:42+00:00"
  2331. },
  2332. {
  2333. "name": "psr/cache",
  2334. "version": "1.0.1",
  2335. "source": {
  2336. "type": "git",
  2337. "url": "https://github.com/php-fig/cache.git",
  2338. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2339. },
  2340. "dist": {
  2341. "type": "zip",
  2342. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2343. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2344. "shasum": ""
  2345. },
  2346. "require": {
  2347. "php": ">=5.3.0"
  2348. },
  2349. "type": "library",
  2350. "extra": {
  2351. "branch-alias": {
  2352. "dev-master": "1.0.x-dev"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Psr\\Cache\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "authors": [
  2365. {
  2366. "name": "PHP-FIG",
  2367. "homepage": "http://www.php-fig.org/"
  2368. }
  2369. ],
  2370. "description": "Common interface for caching libraries",
  2371. "keywords": [
  2372. "cache",
  2373. "psr",
  2374. "psr-6"
  2375. ],
  2376. "support": {
  2377. "source": "https://github.com/php-fig/cache/tree/master"
  2378. },
  2379. "time": "2016-08-06T20:24:11+00:00"
  2380. },
  2381. {
  2382. "name": "psr/container",
  2383. "version": "2.0.1",
  2384. "source": {
  2385. "type": "git",
  2386. "url": "https://github.com/php-fig/container.git",
  2387. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef"
  2388. },
  2389. "dist": {
  2390. "type": "zip",
  2391. "url": "https://api.github.com/repos/php-fig/container/zipball/2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  2392. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  2393. "shasum": ""
  2394. },
  2395. "require": {
  2396. "php": ">=7.2.0"
  2397. },
  2398. "type": "library",
  2399. "extra": {
  2400. "branch-alias": {
  2401. "dev-master": "2.0.x-dev"
  2402. }
  2403. },
  2404. "autoload": {
  2405. "psr-4": {
  2406. "Psr\\Container\\": "src/"
  2407. }
  2408. },
  2409. "notification-url": "https://packagist.org/downloads/",
  2410. "license": [
  2411. "MIT"
  2412. ],
  2413. "authors": [
  2414. {
  2415. "name": "PHP-FIG",
  2416. "homepage": "https://www.php-fig.org/"
  2417. }
  2418. ],
  2419. "description": "Common Container Interface (PHP FIG PSR-11)",
  2420. "homepage": "https://github.com/php-fig/container",
  2421. "keywords": [
  2422. "PSR-11",
  2423. "container",
  2424. "container-interface",
  2425. "container-interop",
  2426. "psr"
  2427. ],
  2428. "support": {
  2429. "issues": "https://github.com/php-fig/container/issues",
  2430. "source": "https://github.com/php-fig/container/tree/2.0.1"
  2431. },
  2432. "time": "2021-03-24T13:40:57+00:00"
  2433. },
  2434. {
  2435. "name": "psr/event-dispatcher",
  2436. "version": "1.0.0",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/php-fig/event-dispatcher.git",
  2440. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2445. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2446. "shasum": ""
  2447. },
  2448. "require": {
  2449. "php": ">=7.2.0"
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "branch-alias": {
  2454. "dev-master": "1.0.x-dev"
  2455. }
  2456. },
  2457. "autoload": {
  2458. "psr-4": {
  2459. "Psr\\EventDispatcher\\": "src/"
  2460. }
  2461. },
  2462. "notification-url": "https://packagist.org/downloads/",
  2463. "license": [
  2464. "MIT"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "PHP-FIG",
  2469. "homepage": "http://www.php-fig.org/"
  2470. }
  2471. ],
  2472. "description": "Standard interfaces for event handling.",
  2473. "keywords": [
  2474. "events",
  2475. "psr",
  2476. "psr-14"
  2477. ],
  2478. "support": {
  2479. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2480. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2481. },
  2482. "time": "2019-01-08T18:20:26+00:00"
  2483. },
  2484. {
  2485. "name": "psr/http-client",
  2486. "version": "1.0.1",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/php-fig/http-client.git",
  2490. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2495. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "php": "^7.0 || ^8.0",
  2500. "psr/http-message": "^1.0"
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-master": "1.0.x-dev"
  2506. }
  2507. },
  2508. "autoload": {
  2509. "psr-4": {
  2510. "Psr\\Http\\Client\\": "src/"
  2511. }
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "PHP-FIG",
  2520. "homepage": "http://www.php-fig.org/"
  2521. }
  2522. ],
  2523. "description": "Common interface for HTTP clients",
  2524. "homepage": "https://github.com/php-fig/http-client",
  2525. "keywords": [
  2526. "http",
  2527. "http-client",
  2528. "psr",
  2529. "psr-18"
  2530. ],
  2531. "support": {
  2532. "source": "https://github.com/php-fig/http-client/tree/master"
  2533. },
  2534. "time": "2020-06-29T06:28:15+00:00"
  2535. },
  2536. {
  2537. "name": "psr/http-factory",
  2538. "version": "1.0.1",
  2539. "source": {
  2540. "type": "git",
  2541. "url": "https://github.com/php-fig/http-factory.git",
  2542. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2543. },
  2544. "dist": {
  2545. "type": "zip",
  2546. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2547. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2548. "shasum": ""
  2549. },
  2550. "require": {
  2551. "php": ">=7.0.0",
  2552. "psr/http-message": "^1.0"
  2553. },
  2554. "type": "library",
  2555. "extra": {
  2556. "branch-alias": {
  2557. "dev-master": "1.0.x-dev"
  2558. }
  2559. },
  2560. "autoload": {
  2561. "psr-4": {
  2562. "Psr\\Http\\Message\\": "src/"
  2563. }
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "MIT"
  2568. ],
  2569. "authors": [
  2570. {
  2571. "name": "PHP-FIG",
  2572. "homepage": "http://www.php-fig.org/"
  2573. }
  2574. ],
  2575. "description": "Common interfaces for PSR-7 HTTP message factories",
  2576. "keywords": [
  2577. "factory",
  2578. "http",
  2579. "message",
  2580. "psr",
  2581. "psr-17",
  2582. "psr-7",
  2583. "request",
  2584. "response"
  2585. ],
  2586. "support": {
  2587. "source": "https://github.com/php-fig/http-factory/tree/master"
  2588. },
  2589. "time": "2019-04-30T12:38:16+00:00"
  2590. },
  2591. {
  2592. "name": "psr/http-message",
  2593. "version": "1.0.1",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/php-fig/http-message.git",
  2597. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2602. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2603. "shasum": ""
  2604. },
  2605. "require": {
  2606. "php": ">=5.3.0"
  2607. },
  2608. "type": "library",
  2609. "extra": {
  2610. "branch-alias": {
  2611. "dev-master": "1.0.x-dev"
  2612. }
  2613. },
  2614. "autoload": {
  2615. "psr-4": {
  2616. "Psr\\Http\\Message\\": "src/"
  2617. }
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "PHP-FIG",
  2626. "homepage": "http://www.php-fig.org/"
  2627. }
  2628. ],
  2629. "description": "Common interface for HTTP messages",
  2630. "homepage": "https://github.com/php-fig/http-message",
  2631. "keywords": [
  2632. "http",
  2633. "http-message",
  2634. "psr",
  2635. "psr-7",
  2636. "request",
  2637. "response"
  2638. ],
  2639. "support": {
  2640. "source": "https://github.com/php-fig/http-message/tree/master"
  2641. },
  2642. "time": "2016-08-06T14:39:51+00:00"
  2643. },
  2644. {
  2645. "name": "psr/log",
  2646. "version": "1.1.4",
  2647. "source": {
  2648. "type": "git",
  2649. "url": "https://github.com/php-fig/log.git",
  2650. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2651. },
  2652. "dist": {
  2653. "type": "zip",
  2654. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2655. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2656. "shasum": ""
  2657. },
  2658. "require": {
  2659. "php": ">=5.3.0"
  2660. },
  2661. "type": "library",
  2662. "extra": {
  2663. "branch-alias": {
  2664. "dev-master": "1.1.x-dev"
  2665. }
  2666. },
  2667. "autoload": {
  2668. "psr-4": {
  2669. "Psr\\Log\\": "Psr/Log/"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "PHP-FIG",
  2679. "homepage": "https://www.php-fig.org/"
  2680. }
  2681. ],
  2682. "description": "Common interface for logging libraries",
  2683. "homepage": "https://github.com/php-fig/log",
  2684. "keywords": [
  2685. "log",
  2686. "psr",
  2687. "psr-3"
  2688. ],
  2689. "support": {
  2690. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2691. },
  2692. "time": "2021-05-03T11:20:27+00:00"
  2693. },
  2694. {
  2695. "name": "psr/simple-cache",
  2696. "version": "1.0.1",
  2697. "source": {
  2698. "type": "git",
  2699. "url": "https://github.com/php-fig/simple-cache.git",
  2700. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2701. },
  2702. "dist": {
  2703. "type": "zip",
  2704. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2705. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2706. "shasum": ""
  2707. },
  2708. "require": {
  2709. "php": ">=5.3.0"
  2710. },
  2711. "type": "library",
  2712. "extra": {
  2713. "branch-alias": {
  2714. "dev-master": "1.0.x-dev"
  2715. }
  2716. },
  2717. "autoload": {
  2718. "psr-4": {
  2719. "Psr\\SimpleCache\\": "src/"
  2720. }
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "PHP-FIG",
  2729. "homepage": "http://www.php-fig.org/"
  2730. }
  2731. ],
  2732. "description": "Common interfaces for simple caching",
  2733. "keywords": [
  2734. "cache",
  2735. "caching",
  2736. "psr",
  2737. "psr-16",
  2738. "simple-cache"
  2739. ],
  2740. "support": {
  2741. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2742. },
  2743. "time": "2017-10-23T01:57:42+00:00"
  2744. },
  2745. {
  2746. "name": "qiniu/php-sdk",
  2747. "version": "v7.4.1",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/qiniu/php-sdk.git",
  2751. "reference": "10c7ead8357743b4b987a335c14964fb07700d57"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/10c7ead8357743b4b987a335c14964fb07700d57",
  2756. "reference": "10c7ead8357743b4b987a335c14964fb07700d57",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "php": ">=5.3.3"
  2761. },
  2762. "require-dev": {
  2763. "paragonie/random_compat": ">=2",
  2764. "phpunit/phpunit": "~4.0",
  2765. "squizlabs/php_codesniffer": "~3.6"
  2766. },
  2767. "type": "library",
  2768. "autoload": {
  2769. "files": [
  2770. "src/Qiniu/functions.php"
  2771. ],
  2772. "psr-4": {
  2773. "Qiniu\\": "src/Qiniu"
  2774. }
  2775. },
  2776. "notification-url": "https://packagist.org/downloads/",
  2777. "license": [
  2778. "MIT"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "Qiniu",
  2783. "email": "sdk@qiniu.com",
  2784. "homepage": "http://www.qiniu.com"
  2785. }
  2786. ],
  2787. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2788. "homepage": "http://developer.qiniu.com/",
  2789. "keywords": [
  2790. "cloud",
  2791. "qiniu",
  2792. "sdk",
  2793. "storage"
  2794. ],
  2795. "support": {
  2796. "issues": "https://github.com/qiniu/php-sdk/issues",
  2797. "source": "https://github.com/qiniu/php-sdk/tree/v7.4.1"
  2798. },
  2799. "time": "2021-09-24T09:39:16+00:00"
  2800. },
  2801. {
  2802. "name": "ralouphie/getallheaders",
  2803. "version": "3.0.3",
  2804. "source": {
  2805. "type": "git",
  2806. "url": "https://github.com/ralouphie/getallheaders.git",
  2807. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2808. },
  2809. "dist": {
  2810. "type": "zip",
  2811. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2812. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2813. "shasum": ""
  2814. },
  2815. "require": {
  2816. "php": ">=5.6"
  2817. },
  2818. "require-dev": {
  2819. "php-coveralls/php-coveralls": "^2.1",
  2820. "phpunit/phpunit": "^5 || ^6.5"
  2821. },
  2822. "type": "library",
  2823. "autoload": {
  2824. "files": [
  2825. "src/getallheaders.php"
  2826. ]
  2827. },
  2828. "notification-url": "https://packagist.org/downloads/",
  2829. "license": [
  2830. "MIT"
  2831. ],
  2832. "authors": [
  2833. {
  2834. "name": "Ralph Khattar",
  2835. "email": "ralph.khattar@gmail.com"
  2836. }
  2837. ],
  2838. "description": "A polyfill for getallheaders.",
  2839. "support": {
  2840. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2841. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2842. },
  2843. "time": "2019-03-08T08:55:37+00:00"
  2844. },
  2845. {
  2846. "name": "ralouphie/mimey",
  2847. "version": "2.1.0",
  2848. "source": {
  2849. "type": "git",
  2850. "url": "https://github.com/ralouphie/mimey.git",
  2851. "reference": "8f74e6da73f9df7bd965e4e123f3d8fb9acb89ba"
  2852. },
  2853. "dist": {
  2854. "type": "zip",
  2855. "url": "https://api.github.com/repos/ralouphie/mimey/zipball/8f74e6da73f9df7bd965e4e123f3d8fb9acb89ba",
  2856. "reference": "8f74e6da73f9df7bd965e4e123f3d8fb9acb89ba",
  2857. "shasum": ""
  2858. },
  2859. "require": {
  2860. "php": "^5.4|^7.0"
  2861. },
  2862. "require-dev": {
  2863. "php-coveralls/php-coveralls": "^1.1",
  2864. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5"
  2865. },
  2866. "type": "library",
  2867. "autoload": {
  2868. "psr-4": {
  2869. "Mimey\\": "src/"
  2870. }
  2871. },
  2872. "notification-url": "https://packagist.org/downloads/",
  2873. "license": [
  2874. "MIT"
  2875. ],
  2876. "authors": [
  2877. {
  2878. "name": "Ralph Khattar",
  2879. "email": "ralph.khattar@gmail.com"
  2880. }
  2881. ],
  2882. "description": "PHP package for converting file extensions to MIME types and vice versa.",
  2883. "support": {
  2884. "issues": "https://github.com/ralouphie/mimey/issues",
  2885. "source": "https://github.com/ralouphie/mimey/tree/develop"
  2886. },
  2887. "time": "2019-03-08T08:49:03+00:00"
  2888. },
  2889. {
  2890. "name": "symfony/cache",
  2891. "version": "v5.4.10",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://github.com/symfony/cache.git",
  2895. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://api.github.com/repos/symfony/cache/zipball/c4e387b739022fd4b20abd8edb2143c44c5daa14",
  2900. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14",
  2901. "shasum": ""
  2902. },
  2903. "require": {
  2904. "php": ">=7.2.5",
  2905. "psr/cache": "^1.0|^2.0",
  2906. "psr/log": "^1.1|^2|^3",
  2907. "symfony/cache-contracts": "^1.1.7|^2",
  2908. "symfony/deprecation-contracts": "^2.1|^3",
  2909. "symfony/polyfill-php73": "^1.9",
  2910. "symfony/polyfill-php80": "^1.16",
  2911. "symfony/service-contracts": "^1.1|^2|^3",
  2912. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2913. },
  2914. "conflict": {
  2915. "doctrine/dbal": "<2.13.1",
  2916. "symfony/dependency-injection": "<4.4",
  2917. "symfony/http-kernel": "<4.4",
  2918. "symfony/var-dumper": "<4.4"
  2919. },
  2920. "provide": {
  2921. "psr/cache-implementation": "1.0|2.0",
  2922. "psr/simple-cache-implementation": "1.0|2.0",
  2923. "symfony/cache-implementation": "1.0|2.0"
  2924. },
  2925. "require-dev": {
  2926. "cache/integration-tests": "dev-master",
  2927. "doctrine/cache": "^1.6|^2.0",
  2928. "doctrine/dbal": "^2.13.1|^3.0",
  2929. "predis/predis": "^1.1",
  2930. "psr/simple-cache": "^1.0|^2.0",
  2931. "symfony/config": "^4.4|^5.0|^6.0",
  2932. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2933. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2934. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2935. "symfony/messenger": "^4.4|^5.0|^6.0",
  2936. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2937. },
  2938. "type": "library",
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Symfony\\Component\\Cache\\": ""
  2942. },
  2943. "exclude-from-classmap": [
  2944. "/Tests/"
  2945. ]
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "Nicolas Grekas",
  2954. "email": "p@tchwork.com"
  2955. },
  2956. {
  2957. "name": "Symfony Community",
  2958. "homepage": "https://symfony.com/contributors"
  2959. }
  2960. ],
  2961. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2962. "homepage": "https://symfony.com",
  2963. "keywords": [
  2964. "caching",
  2965. "psr6"
  2966. ],
  2967. "support": {
  2968. "source": "https://github.com/symfony/cache/tree/v5.4.10"
  2969. },
  2970. "funding": [
  2971. {
  2972. "url": "https://symfony.com/sponsor",
  2973. "type": "custom"
  2974. },
  2975. {
  2976. "url": "https://github.com/fabpot",
  2977. "type": "github"
  2978. },
  2979. {
  2980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2981. "type": "tidelift"
  2982. }
  2983. ],
  2984. "time": "2022-06-19T12:03:50+00:00"
  2985. },
  2986. {
  2987. "name": "symfony/cache-contracts",
  2988. "version": "v2.5.2",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/symfony/cache-contracts.git",
  2992. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2997. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "php": ">=7.2.5",
  3002. "psr/cache": "^1.0|^2.0|^3.0"
  3003. },
  3004. "suggest": {
  3005. "symfony/cache-implementation": ""
  3006. },
  3007. "type": "library",
  3008. "extra": {
  3009. "branch-alias": {
  3010. "dev-main": "2.5-dev"
  3011. },
  3012. "thanks": {
  3013. "name": "symfony/contracts",
  3014. "url": "https://github.com/symfony/contracts"
  3015. }
  3016. },
  3017. "autoload": {
  3018. "psr-4": {
  3019. "Symfony\\Contracts\\Cache\\": ""
  3020. }
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "Nicolas Grekas",
  3029. "email": "p@tchwork.com"
  3030. },
  3031. {
  3032. "name": "Symfony Community",
  3033. "homepage": "https://symfony.com/contributors"
  3034. }
  3035. ],
  3036. "description": "Generic abstractions related to caching",
  3037. "homepage": "https://symfony.com",
  3038. "keywords": [
  3039. "abstractions",
  3040. "contracts",
  3041. "decoupling",
  3042. "interfaces",
  3043. "interoperability",
  3044. "standards"
  3045. ],
  3046. "support": {
  3047. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  3048. },
  3049. "funding": [
  3050. {
  3051. "url": "https://symfony.com/sponsor",
  3052. "type": "custom"
  3053. },
  3054. {
  3055. "url": "https://github.com/fabpot",
  3056. "type": "github"
  3057. },
  3058. {
  3059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3060. "type": "tidelift"
  3061. }
  3062. ],
  3063. "time": "2022-01-02T09:53:40+00:00"
  3064. },
  3065. {
  3066. "name": "symfony/deprecation-contracts",
  3067. "version": "v2.5.2",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/symfony/deprecation-contracts.git",
  3071. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3076. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "php": ">=7.1"
  3081. },
  3082. "type": "library",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-main": "2.5-dev"
  3086. },
  3087. "thanks": {
  3088. "name": "symfony/contracts",
  3089. "url": "https://github.com/symfony/contracts"
  3090. }
  3091. },
  3092. "autoload": {
  3093. "files": [
  3094. "function.php"
  3095. ]
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "MIT"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Nicolas Grekas",
  3104. "email": "p@tchwork.com"
  3105. },
  3106. {
  3107. "name": "Symfony Community",
  3108. "homepage": "https://symfony.com/contributors"
  3109. }
  3110. ],
  3111. "description": "A generic function and convention to trigger deprecation notices",
  3112. "homepage": "https://symfony.com",
  3113. "support": {
  3114. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3115. },
  3116. "funding": [
  3117. {
  3118. "url": "https://symfony.com/sponsor",
  3119. "type": "custom"
  3120. },
  3121. {
  3122. "url": "https://github.com/fabpot",
  3123. "type": "github"
  3124. },
  3125. {
  3126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3127. "type": "tidelift"
  3128. }
  3129. ],
  3130. "time": "2022-01-02T09:53:40+00:00"
  3131. },
  3132. {
  3133. "name": "symfony/event-dispatcher",
  3134. "version": "v5.4.9",
  3135. "source": {
  3136. "type": "git",
  3137. "url": "https://github.com/symfony/event-dispatcher.git",
  3138. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3139. },
  3140. "dist": {
  3141. "type": "zip",
  3142. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3143. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3144. "shasum": ""
  3145. },
  3146. "require": {
  3147. "php": ">=7.2.5",
  3148. "symfony/deprecation-contracts": "^2.1|^3",
  3149. "symfony/event-dispatcher-contracts": "^2|^3",
  3150. "symfony/polyfill-php80": "^1.16"
  3151. },
  3152. "conflict": {
  3153. "symfony/dependency-injection": "<4.4"
  3154. },
  3155. "provide": {
  3156. "psr/event-dispatcher-implementation": "1.0",
  3157. "symfony/event-dispatcher-implementation": "2.0"
  3158. },
  3159. "require-dev": {
  3160. "psr/log": "^1|^2|^3",
  3161. "symfony/config": "^4.4|^5.0|^6.0",
  3162. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3163. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3164. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3165. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3166. "symfony/service-contracts": "^1.1|^2|^3",
  3167. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3168. },
  3169. "suggest": {
  3170. "symfony/dependency-injection": "",
  3171. "symfony/http-kernel": ""
  3172. },
  3173. "type": "library",
  3174. "autoload": {
  3175. "psr-4": {
  3176. "Symfony\\Component\\EventDispatcher\\": ""
  3177. },
  3178. "exclude-from-classmap": [
  3179. "/Tests/"
  3180. ]
  3181. },
  3182. "notification-url": "https://packagist.org/downloads/",
  3183. "license": [
  3184. "MIT"
  3185. ],
  3186. "authors": [
  3187. {
  3188. "name": "Fabien Potencier",
  3189. "email": "fabien@symfony.com"
  3190. },
  3191. {
  3192. "name": "Symfony Community",
  3193. "homepage": "https://symfony.com/contributors"
  3194. }
  3195. ],
  3196. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3197. "homepage": "https://symfony.com",
  3198. "support": {
  3199. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3200. },
  3201. "funding": [
  3202. {
  3203. "url": "https://symfony.com/sponsor",
  3204. "type": "custom"
  3205. },
  3206. {
  3207. "url": "https://github.com/fabpot",
  3208. "type": "github"
  3209. },
  3210. {
  3211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3212. "type": "tidelift"
  3213. }
  3214. ],
  3215. "time": "2022-05-05T16:45:39+00:00"
  3216. },
  3217. {
  3218. "name": "symfony/event-dispatcher-contracts",
  3219. "version": "v2.5.2",
  3220. "source": {
  3221. "type": "git",
  3222. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3223. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3224. },
  3225. "dist": {
  3226. "type": "zip",
  3227. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3228. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3229. "shasum": ""
  3230. },
  3231. "require": {
  3232. "php": ">=7.2.5",
  3233. "psr/event-dispatcher": "^1"
  3234. },
  3235. "suggest": {
  3236. "symfony/event-dispatcher-implementation": ""
  3237. },
  3238. "type": "library",
  3239. "extra": {
  3240. "branch-alias": {
  3241. "dev-main": "2.5-dev"
  3242. },
  3243. "thanks": {
  3244. "name": "symfony/contracts",
  3245. "url": "https://github.com/symfony/contracts"
  3246. }
  3247. },
  3248. "autoload": {
  3249. "psr-4": {
  3250. "Symfony\\Contracts\\EventDispatcher\\": ""
  3251. }
  3252. },
  3253. "notification-url": "https://packagist.org/downloads/",
  3254. "license": [
  3255. "MIT"
  3256. ],
  3257. "authors": [
  3258. {
  3259. "name": "Nicolas Grekas",
  3260. "email": "p@tchwork.com"
  3261. },
  3262. {
  3263. "name": "Symfony Community",
  3264. "homepage": "https://symfony.com/contributors"
  3265. }
  3266. ],
  3267. "description": "Generic abstractions related to dispatching event",
  3268. "homepage": "https://symfony.com",
  3269. "keywords": [
  3270. "abstractions",
  3271. "contracts",
  3272. "decoupling",
  3273. "interfaces",
  3274. "interoperability",
  3275. "standards"
  3276. ],
  3277. "support": {
  3278. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3279. },
  3280. "funding": [
  3281. {
  3282. "url": "https://symfony.com/sponsor",
  3283. "type": "custom"
  3284. },
  3285. {
  3286. "url": "https://github.com/fabpot",
  3287. "type": "github"
  3288. },
  3289. {
  3290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3291. "type": "tidelift"
  3292. }
  3293. ],
  3294. "time": "2022-01-02T09:53:40+00:00"
  3295. },
  3296. {
  3297. "name": "symfony/http-foundation",
  3298. "version": "v5.4.10",
  3299. "source": {
  3300. "type": "git",
  3301. "url": "https://github.com/symfony/http-foundation.git",
  3302. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  3303. },
  3304. "dist": {
  3305. "type": "zip",
  3306. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3307. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3308. "shasum": ""
  3309. },
  3310. "require": {
  3311. "php": ">=7.2.5",
  3312. "symfony/deprecation-contracts": "^2.1|^3",
  3313. "symfony/polyfill-mbstring": "~1.1",
  3314. "symfony/polyfill-php80": "^1.16"
  3315. },
  3316. "require-dev": {
  3317. "predis/predis": "~1.0",
  3318. "symfony/cache": "^4.4|^5.0|^6.0",
  3319. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3320. "symfony/mime": "^4.4|^5.0|^6.0"
  3321. },
  3322. "suggest": {
  3323. "symfony/mime": "To use the file extension guesser"
  3324. },
  3325. "type": "library",
  3326. "autoload": {
  3327. "psr-4": {
  3328. "Symfony\\Component\\HttpFoundation\\": ""
  3329. },
  3330. "exclude-from-classmap": [
  3331. "/Tests/"
  3332. ]
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "authors": [
  3339. {
  3340. "name": "Fabien Potencier",
  3341. "email": "fabien@symfony.com"
  3342. },
  3343. {
  3344. "name": "Symfony Community",
  3345. "homepage": "https://symfony.com/contributors"
  3346. }
  3347. ],
  3348. "description": "Defines an object-oriented layer for the HTTP specification",
  3349. "homepage": "https://symfony.com",
  3350. "support": {
  3351. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  3352. },
  3353. "funding": [
  3354. {
  3355. "url": "https://symfony.com/sponsor",
  3356. "type": "custom"
  3357. },
  3358. {
  3359. "url": "https://github.com/fabpot",
  3360. "type": "github"
  3361. },
  3362. {
  3363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3364. "type": "tidelift"
  3365. }
  3366. ],
  3367. "time": "2022-06-19T13:13:40+00:00"
  3368. },
  3369. {
  3370. "name": "symfony/options-resolver",
  3371. "version": "v5.4.3",
  3372. "source": {
  3373. "type": "git",
  3374. "url": "https://github.com/symfony/options-resolver.git",
  3375. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8"
  3376. },
  3377. "dist": {
  3378. "type": "zip",
  3379. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  3380. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  3381. "shasum": ""
  3382. },
  3383. "require": {
  3384. "php": ">=7.2.5",
  3385. "symfony/deprecation-contracts": "^2.1|^3",
  3386. "symfony/polyfill-php73": "~1.0",
  3387. "symfony/polyfill-php80": "^1.16"
  3388. },
  3389. "type": "library",
  3390. "autoload": {
  3391. "psr-4": {
  3392. "Symfony\\Component\\OptionsResolver\\": ""
  3393. },
  3394. "exclude-from-classmap": [
  3395. "/Tests/"
  3396. ]
  3397. },
  3398. "notification-url": "https://packagist.org/downloads/",
  3399. "license": [
  3400. "MIT"
  3401. ],
  3402. "authors": [
  3403. {
  3404. "name": "Fabien Potencier",
  3405. "email": "fabien@symfony.com"
  3406. },
  3407. {
  3408. "name": "Symfony Community",
  3409. "homepage": "https://symfony.com/contributors"
  3410. }
  3411. ],
  3412. "description": "Provides an improved replacement for the array_replace PHP function",
  3413. "homepage": "https://symfony.com",
  3414. "keywords": [
  3415. "config",
  3416. "configuration",
  3417. "options"
  3418. ],
  3419. "support": {
  3420. "source": "https://github.com/symfony/options-resolver/tree/v5.4.3"
  3421. },
  3422. "funding": [
  3423. {
  3424. "url": "https://symfony.com/sponsor",
  3425. "type": "custom"
  3426. },
  3427. {
  3428. "url": "https://github.com/fabpot",
  3429. "type": "github"
  3430. },
  3431. {
  3432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3433. "type": "tidelift"
  3434. }
  3435. ],
  3436. "time": "2022-01-02T09:53:40+00:00"
  3437. },
  3438. {
  3439. "name": "symfony/polyfill-ctype",
  3440. "version": "v1.26.0",
  3441. "source": {
  3442. "type": "git",
  3443. "url": "https://github.com/symfony/polyfill-ctype.git",
  3444. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  3445. },
  3446. "dist": {
  3447. "type": "zip",
  3448. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3449. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3450. "shasum": ""
  3451. },
  3452. "require": {
  3453. "php": ">=7.1"
  3454. },
  3455. "provide": {
  3456. "ext-ctype": "*"
  3457. },
  3458. "suggest": {
  3459. "ext-ctype": "For best performance"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "branch-alias": {
  3464. "dev-main": "1.26-dev"
  3465. },
  3466. "thanks": {
  3467. "name": "symfony/polyfill",
  3468. "url": "https://github.com/symfony/polyfill"
  3469. }
  3470. },
  3471. "autoload": {
  3472. "files": [
  3473. "bootstrap.php"
  3474. ],
  3475. "psr-4": {
  3476. "Symfony\\Polyfill\\Ctype\\": ""
  3477. }
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "authors": [
  3484. {
  3485. "name": "Gert de Pagter",
  3486. "email": "BackEndTea@gmail.com"
  3487. },
  3488. {
  3489. "name": "Symfony Community",
  3490. "homepage": "https://symfony.com/contributors"
  3491. }
  3492. ],
  3493. "description": "Symfony polyfill for ctype functions",
  3494. "homepage": "https://symfony.com",
  3495. "keywords": [
  3496. "compatibility",
  3497. "ctype",
  3498. "polyfill",
  3499. "portable"
  3500. ],
  3501. "support": {
  3502. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  3503. },
  3504. "funding": [
  3505. {
  3506. "url": "https://symfony.com/sponsor",
  3507. "type": "custom"
  3508. },
  3509. {
  3510. "url": "https://github.com/fabpot",
  3511. "type": "github"
  3512. },
  3513. {
  3514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3515. "type": "tidelift"
  3516. }
  3517. ],
  3518. "time": "2022-05-24T11:49:31+00:00"
  3519. },
  3520. {
  3521. "name": "symfony/polyfill-intl-grapheme",
  3522. "version": "v1.26.0",
  3523. "source": {
  3524. "type": "git",
  3525. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3526. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  3527. },
  3528. "dist": {
  3529. "type": "zip",
  3530. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  3531. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  3532. "shasum": ""
  3533. },
  3534. "require": {
  3535. "php": ">=7.1"
  3536. },
  3537. "suggest": {
  3538. "ext-intl": "For best performance"
  3539. },
  3540. "type": "library",
  3541. "extra": {
  3542. "branch-alias": {
  3543. "dev-main": "1.26-dev"
  3544. },
  3545. "thanks": {
  3546. "name": "symfony/polyfill",
  3547. "url": "https://github.com/symfony/polyfill"
  3548. }
  3549. },
  3550. "autoload": {
  3551. "files": [
  3552. "bootstrap.php"
  3553. ],
  3554. "psr-4": {
  3555. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3556. }
  3557. },
  3558. "notification-url": "https://packagist.org/downloads/",
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "authors": [
  3563. {
  3564. "name": "Nicolas Grekas",
  3565. "email": "p@tchwork.com"
  3566. },
  3567. {
  3568. "name": "Symfony Community",
  3569. "homepage": "https://symfony.com/contributors"
  3570. }
  3571. ],
  3572. "description": "Symfony polyfill for intl's grapheme_* functions",
  3573. "homepage": "https://symfony.com",
  3574. "keywords": [
  3575. "compatibility",
  3576. "grapheme",
  3577. "intl",
  3578. "polyfill",
  3579. "portable",
  3580. "shim"
  3581. ],
  3582. "support": {
  3583. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  3584. },
  3585. "funding": [
  3586. {
  3587. "url": "https://symfony.com/sponsor",
  3588. "type": "custom"
  3589. },
  3590. {
  3591. "url": "https://github.com/fabpot",
  3592. "type": "github"
  3593. },
  3594. {
  3595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3596. "type": "tidelift"
  3597. }
  3598. ],
  3599. "time": "2022-05-24T11:49:31+00:00"
  3600. },
  3601. {
  3602. "name": "symfony/polyfill-intl-normalizer",
  3603. "version": "v1.26.0",
  3604. "source": {
  3605. "type": "git",
  3606. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3607. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  3608. },
  3609. "dist": {
  3610. "type": "zip",
  3611. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  3612. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  3613. "shasum": ""
  3614. },
  3615. "require": {
  3616. "php": ">=7.1"
  3617. },
  3618. "suggest": {
  3619. "ext-intl": "For best performance"
  3620. },
  3621. "type": "library",
  3622. "extra": {
  3623. "branch-alias": {
  3624. "dev-main": "1.26-dev"
  3625. },
  3626. "thanks": {
  3627. "name": "symfony/polyfill",
  3628. "url": "https://github.com/symfony/polyfill"
  3629. }
  3630. },
  3631. "autoload": {
  3632. "files": [
  3633. "bootstrap.php"
  3634. ],
  3635. "psr-4": {
  3636. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3637. },
  3638. "classmap": [
  3639. "Resources/stubs"
  3640. ]
  3641. },
  3642. "notification-url": "https://packagist.org/downloads/",
  3643. "license": [
  3644. "MIT"
  3645. ],
  3646. "authors": [
  3647. {
  3648. "name": "Nicolas Grekas",
  3649. "email": "p@tchwork.com"
  3650. },
  3651. {
  3652. "name": "Symfony Community",
  3653. "homepage": "https://symfony.com/contributors"
  3654. }
  3655. ],
  3656. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3657. "homepage": "https://symfony.com",
  3658. "keywords": [
  3659. "compatibility",
  3660. "intl",
  3661. "normalizer",
  3662. "polyfill",
  3663. "portable",
  3664. "shim"
  3665. ],
  3666. "support": {
  3667. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  3668. },
  3669. "funding": [
  3670. {
  3671. "url": "https://symfony.com/sponsor",
  3672. "type": "custom"
  3673. },
  3674. {
  3675. "url": "https://github.com/fabpot",
  3676. "type": "github"
  3677. },
  3678. {
  3679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3680. "type": "tidelift"
  3681. }
  3682. ],
  3683. "time": "2022-05-24T11:49:31+00:00"
  3684. },
  3685. {
  3686. "name": "symfony/polyfill-mbstring",
  3687. "version": "v1.26.0",
  3688. "source": {
  3689. "type": "git",
  3690. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3691. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  3692. },
  3693. "dist": {
  3694. "type": "zip",
  3695. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3696. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3697. "shasum": ""
  3698. },
  3699. "require": {
  3700. "php": ">=7.1"
  3701. },
  3702. "provide": {
  3703. "ext-mbstring": "*"
  3704. },
  3705. "suggest": {
  3706. "ext-mbstring": "For best performance"
  3707. },
  3708. "type": "library",
  3709. "extra": {
  3710. "branch-alias": {
  3711. "dev-main": "1.26-dev"
  3712. },
  3713. "thanks": {
  3714. "name": "symfony/polyfill",
  3715. "url": "https://github.com/symfony/polyfill"
  3716. }
  3717. },
  3718. "autoload": {
  3719. "files": [
  3720. "bootstrap.php"
  3721. ],
  3722. "psr-4": {
  3723. "Symfony\\Polyfill\\Mbstring\\": ""
  3724. }
  3725. },
  3726. "notification-url": "https://packagist.org/downloads/",
  3727. "license": [
  3728. "MIT"
  3729. ],
  3730. "authors": [
  3731. {
  3732. "name": "Nicolas Grekas",
  3733. "email": "p@tchwork.com"
  3734. },
  3735. {
  3736. "name": "Symfony Community",
  3737. "homepage": "https://symfony.com/contributors"
  3738. }
  3739. ],
  3740. "description": "Symfony polyfill for the Mbstring extension",
  3741. "homepage": "https://symfony.com",
  3742. "keywords": [
  3743. "compatibility",
  3744. "mbstring",
  3745. "polyfill",
  3746. "portable",
  3747. "shim"
  3748. ],
  3749. "support": {
  3750. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  3751. },
  3752. "funding": [
  3753. {
  3754. "url": "https://symfony.com/sponsor",
  3755. "type": "custom"
  3756. },
  3757. {
  3758. "url": "https://github.com/fabpot",
  3759. "type": "github"
  3760. },
  3761. {
  3762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3763. "type": "tidelift"
  3764. }
  3765. ],
  3766. "time": "2022-05-24T11:49:31+00:00"
  3767. },
  3768. {
  3769. "name": "symfony/polyfill-php73",
  3770. "version": "v1.26.0",
  3771. "source": {
  3772. "type": "git",
  3773. "url": "https://github.com/symfony/polyfill-php73.git",
  3774. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  3775. },
  3776. "dist": {
  3777. "type": "zip",
  3778. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3779. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3780. "shasum": ""
  3781. },
  3782. "require": {
  3783. "php": ">=7.1"
  3784. },
  3785. "type": "library",
  3786. "extra": {
  3787. "branch-alias": {
  3788. "dev-main": "1.26-dev"
  3789. },
  3790. "thanks": {
  3791. "name": "symfony/polyfill",
  3792. "url": "https://github.com/symfony/polyfill"
  3793. }
  3794. },
  3795. "autoload": {
  3796. "files": [
  3797. "bootstrap.php"
  3798. ],
  3799. "psr-4": {
  3800. "Symfony\\Polyfill\\Php73\\": ""
  3801. },
  3802. "classmap": [
  3803. "Resources/stubs"
  3804. ]
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "MIT"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "Nicolas Grekas",
  3813. "email": "p@tchwork.com"
  3814. },
  3815. {
  3816. "name": "Symfony Community",
  3817. "homepage": "https://symfony.com/contributors"
  3818. }
  3819. ],
  3820. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3821. "homepage": "https://symfony.com",
  3822. "keywords": [
  3823. "compatibility",
  3824. "polyfill",
  3825. "portable",
  3826. "shim"
  3827. ],
  3828. "support": {
  3829. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  3830. },
  3831. "funding": [
  3832. {
  3833. "url": "https://symfony.com/sponsor",
  3834. "type": "custom"
  3835. },
  3836. {
  3837. "url": "https://github.com/fabpot",
  3838. "type": "github"
  3839. },
  3840. {
  3841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3842. "type": "tidelift"
  3843. }
  3844. ],
  3845. "time": "2022-05-24T11:49:31+00:00"
  3846. },
  3847. {
  3848. "name": "symfony/polyfill-php80",
  3849. "version": "v1.26.0",
  3850. "source": {
  3851. "type": "git",
  3852. "url": "https://github.com/symfony/polyfill-php80.git",
  3853. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  3854. },
  3855. "dist": {
  3856. "type": "zip",
  3857. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3858. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3859. "shasum": ""
  3860. },
  3861. "require": {
  3862. "php": ">=7.1"
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-main": "1.26-dev"
  3868. },
  3869. "thanks": {
  3870. "name": "symfony/polyfill",
  3871. "url": "https://github.com/symfony/polyfill"
  3872. }
  3873. },
  3874. "autoload": {
  3875. "files": [
  3876. "bootstrap.php"
  3877. ],
  3878. "psr-4": {
  3879. "Symfony\\Polyfill\\Php80\\": ""
  3880. },
  3881. "classmap": [
  3882. "Resources/stubs"
  3883. ]
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "MIT"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "Ion Bazan",
  3892. "email": "ion.bazan@gmail.com"
  3893. },
  3894. {
  3895. "name": "Nicolas Grekas",
  3896. "email": "p@tchwork.com"
  3897. },
  3898. {
  3899. "name": "Symfony Community",
  3900. "homepage": "https://symfony.com/contributors"
  3901. }
  3902. ],
  3903. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3904. "homepage": "https://symfony.com",
  3905. "keywords": [
  3906. "compatibility",
  3907. "polyfill",
  3908. "portable",
  3909. "shim"
  3910. ],
  3911. "support": {
  3912. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  3913. },
  3914. "funding": [
  3915. {
  3916. "url": "https://symfony.com/sponsor",
  3917. "type": "custom"
  3918. },
  3919. {
  3920. "url": "https://github.com/fabpot",
  3921. "type": "github"
  3922. },
  3923. {
  3924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3925. "type": "tidelift"
  3926. }
  3927. ],
  3928. "time": "2022-05-10T07:21:04+00:00"
  3929. },
  3930. {
  3931. "name": "symfony/property-access",
  3932. "version": "v5.4.8",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/symfony/property-access.git",
  3936. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/symfony/property-access/zipball/fe501d498d6ec7e9efe928c90fabedf629116495",
  3941. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "php": ">=7.2.5",
  3946. "symfony/deprecation-contracts": "^2.1|^3",
  3947. "symfony/polyfill-php80": "^1.16",
  3948. "symfony/property-info": "^5.2|^6.0"
  3949. },
  3950. "require-dev": {
  3951. "symfony/cache": "^4.4|^5.0|^6.0"
  3952. },
  3953. "suggest": {
  3954. "psr/cache-implementation": "To cache access methods."
  3955. },
  3956. "type": "library",
  3957. "autoload": {
  3958. "psr-4": {
  3959. "Symfony\\Component\\PropertyAccess\\": ""
  3960. },
  3961. "exclude-from-classmap": [
  3962. "/Tests/"
  3963. ]
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Fabien Potencier",
  3972. "email": "fabien@symfony.com"
  3973. },
  3974. {
  3975. "name": "Symfony Community",
  3976. "homepage": "https://symfony.com/contributors"
  3977. }
  3978. ],
  3979. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  3980. "homepage": "https://symfony.com",
  3981. "keywords": [
  3982. "access",
  3983. "array",
  3984. "extraction",
  3985. "index",
  3986. "injection",
  3987. "object",
  3988. "property",
  3989. "property path",
  3990. "reflection"
  3991. ],
  3992. "support": {
  3993. "source": "https://github.com/symfony/property-access/tree/v5.4.8"
  3994. },
  3995. "funding": [
  3996. {
  3997. "url": "https://symfony.com/sponsor",
  3998. "type": "custom"
  3999. },
  4000. {
  4001. "url": "https://github.com/fabpot",
  4002. "type": "github"
  4003. },
  4004. {
  4005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4006. "type": "tidelift"
  4007. }
  4008. ],
  4009. "time": "2022-04-12T15:48:08+00:00"
  4010. },
  4011. {
  4012. "name": "symfony/property-info",
  4013. "version": "v5.4.10",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://github.com/symfony/property-info.git",
  4017. "reference": "924406e19365953870517eb7f63ac3f7bfb71875"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://api.github.com/repos/symfony/property-info/zipball/924406e19365953870517eb7f63ac3f7bfb71875",
  4022. "reference": "924406e19365953870517eb7f63ac3f7bfb71875",
  4023. "shasum": ""
  4024. },
  4025. "require": {
  4026. "php": ">=7.2.5",
  4027. "symfony/deprecation-contracts": "^2.1|^3",
  4028. "symfony/polyfill-php80": "^1.16",
  4029. "symfony/string": "^5.1|^6.0"
  4030. },
  4031. "conflict": {
  4032. "phpdocumentor/reflection-docblock": "<3.2.2",
  4033. "phpdocumentor/type-resolver": "<1.4.0",
  4034. "symfony/dependency-injection": "<4.4"
  4035. },
  4036. "require-dev": {
  4037. "doctrine/annotations": "^1.10.4",
  4038. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4039. "phpstan/phpdoc-parser": "^1.0",
  4040. "symfony/cache": "^4.4|^5.0|^6.0",
  4041. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4042. "symfony/serializer": "^4.4|^5.0|^6.0"
  4043. },
  4044. "suggest": {
  4045. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4046. "psr/cache-implementation": "To cache results",
  4047. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4048. "symfony/serializer": "To use Serializer metadata"
  4049. },
  4050. "type": "library",
  4051. "autoload": {
  4052. "psr-4": {
  4053. "Symfony\\Component\\PropertyInfo\\": ""
  4054. },
  4055. "exclude-from-classmap": [
  4056. "/Tests/"
  4057. ]
  4058. },
  4059. "notification-url": "https://packagist.org/downloads/",
  4060. "license": [
  4061. "MIT"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "Kévin Dunglas",
  4066. "email": "dunglas@gmail.com"
  4067. },
  4068. {
  4069. "name": "Symfony Community",
  4070. "homepage": "https://symfony.com/contributors"
  4071. }
  4072. ],
  4073. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  4074. "homepage": "https://symfony.com",
  4075. "keywords": [
  4076. "doctrine",
  4077. "phpdoc",
  4078. "property",
  4079. "symfony",
  4080. "type",
  4081. "validator"
  4082. ],
  4083. "support": {
  4084. "source": "https://github.com/symfony/property-info/tree/v5.4.10"
  4085. },
  4086. "funding": [
  4087. {
  4088. "url": "https://symfony.com/sponsor",
  4089. "type": "custom"
  4090. },
  4091. {
  4092. "url": "https://github.com/fabpot",
  4093. "type": "github"
  4094. },
  4095. {
  4096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4097. "type": "tidelift"
  4098. }
  4099. ],
  4100. "time": "2022-05-31T05:14:08+00:00"
  4101. },
  4102. {
  4103. "name": "symfony/psr-http-message-bridge",
  4104. "version": "v2.1.2",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4108. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  4113. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  4114. "shasum": ""
  4115. },
  4116. "require": {
  4117. "php": ">=7.1",
  4118. "psr/http-message": "^1.0",
  4119. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  4120. },
  4121. "require-dev": {
  4122. "nyholm/psr7": "^1.1",
  4123. "psr/log": "^1.1 || ^2 || ^3",
  4124. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  4125. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  4126. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  4127. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  4128. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  4129. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  4130. },
  4131. "suggest": {
  4132. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4133. },
  4134. "type": "symfony-bridge",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-main": "2.1-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "psr-4": {
  4142. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4143. },
  4144. "exclude-from-classmap": [
  4145. "/Tests/"
  4146. ]
  4147. },
  4148. "notification-url": "https://packagist.org/downloads/",
  4149. "license": [
  4150. "MIT"
  4151. ],
  4152. "authors": [
  4153. {
  4154. "name": "Fabien Potencier",
  4155. "email": "fabien@symfony.com"
  4156. },
  4157. {
  4158. "name": "Symfony Community",
  4159. "homepage": "http://symfony.com/contributors"
  4160. }
  4161. ],
  4162. "description": "PSR HTTP message bridge",
  4163. "homepage": "http://symfony.com",
  4164. "keywords": [
  4165. "http",
  4166. "http-message",
  4167. "psr-17",
  4168. "psr-7"
  4169. ],
  4170. "support": {
  4171. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4172. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  4173. },
  4174. "funding": [
  4175. {
  4176. "url": "https://symfony.com/sponsor",
  4177. "type": "custom"
  4178. },
  4179. {
  4180. "url": "https://github.com/fabpot",
  4181. "type": "github"
  4182. },
  4183. {
  4184. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4185. "type": "tidelift"
  4186. }
  4187. ],
  4188. "time": "2021-11-05T13:13:39+00:00"
  4189. },
  4190. {
  4191. "name": "symfony/service-contracts",
  4192. "version": "v1.1.2",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://github.com/symfony/service-contracts.git",
  4196. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4201. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4202. "shasum": ""
  4203. },
  4204. "require": {
  4205. "php": "^7.1.3"
  4206. },
  4207. "suggest": {
  4208. "psr/container": "",
  4209. "symfony/service-implementation": ""
  4210. },
  4211. "type": "library",
  4212. "extra": {
  4213. "branch-alias": {
  4214. "dev-master": "1.1-dev"
  4215. }
  4216. },
  4217. "autoload": {
  4218. "psr-4": {
  4219. "Symfony\\Contracts\\Service\\": ""
  4220. }
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "MIT"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "Nicolas Grekas",
  4229. "email": "p@tchwork.com"
  4230. },
  4231. {
  4232. "name": "Symfony Community",
  4233. "homepage": "https://symfony.com/contributors"
  4234. }
  4235. ],
  4236. "description": "Generic abstractions related to writing services",
  4237. "homepage": "https://symfony.com",
  4238. "keywords": [
  4239. "abstractions",
  4240. "contracts",
  4241. "decoupling",
  4242. "interfaces",
  4243. "interoperability",
  4244. "standards"
  4245. ],
  4246. "support": {
  4247. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  4248. },
  4249. "time": "2019-05-28T07:50:59+00:00"
  4250. },
  4251. {
  4252. "name": "symfony/string",
  4253. "version": "v5.4.10",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/symfony/string.git",
  4257. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
  4262. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
  4263. "shasum": ""
  4264. },
  4265. "require": {
  4266. "php": ">=7.2.5",
  4267. "symfony/polyfill-ctype": "~1.8",
  4268. "symfony/polyfill-intl-grapheme": "~1.0",
  4269. "symfony/polyfill-intl-normalizer": "~1.0",
  4270. "symfony/polyfill-mbstring": "~1.0",
  4271. "symfony/polyfill-php80": "~1.15"
  4272. },
  4273. "conflict": {
  4274. "symfony/translation-contracts": ">=3.0"
  4275. },
  4276. "require-dev": {
  4277. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4278. "symfony/http-client": "^4.4|^5.0|^6.0",
  4279. "symfony/translation-contracts": "^1.1|^2",
  4280. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4281. },
  4282. "type": "library",
  4283. "autoload": {
  4284. "files": [
  4285. "Resources/functions.php"
  4286. ],
  4287. "psr-4": {
  4288. "Symfony\\Component\\String\\": ""
  4289. },
  4290. "exclude-from-classmap": [
  4291. "/Tests/"
  4292. ]
  4293. },
  4294. "notification-url": "https://packagist.org/downloads/",
  4295. "license": [
  4296. "MIT"
  4297. ],
  4298. "authors": [
  4299. {
  4300. "name": "Nicolas Grekas",
  4301. "email": "p@tchwork.com"
  4302. },
  4303. {
  4304. "name": "Symfony Community",
  4305. "homepage": "https://symfony.com/contributors"
  4306. }
  4307. ],
  4308. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4309. "homepage": "https://symfony.com",
  4310. "keywords": [
  4311. "grapheme",
  4312. "i18n",
  4313. "string",
  4314. "unicode",
  4315. "utf-8",
  4316. "utf8"
  4317. ],
  4318. "support": {
  4319. "source": "https://github.com/symfony/string/tree/v5.4.10"
  4320. },
  4321. "funding": [
  4322. {
  4323. "url": "https://symfony.com/sponsor",
  4324. "type": "custom"
  4325. },
  4326. {
  4327. "url": "https://github.com/fabpot",
  4328. "type": "github"
  4329. },
  4330. {
  4331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4332. "type": "tidelift"
  4333. }
  4334. ],
  4335. "time": "2022-06-26T15:57:47+00:00"
  4336. },
  4337. {
  4338. "name": "symfony/var-exporter",
  4339. "version": "v5.4.10",
  4340. "source": {
  4341. "type": "git",
  4342. "url": "https://github.com/symfony/var-exporter.git",
  4343. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  4344. },
  4345. "dist": {
  4346. "type": "zip",
  4347. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  4348. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  4349. "shasum": ""
  4350. },
  4351. "require": {
  4352. "php": ">=7.2.5",
  4353. "symfony/polyfill-php80": "^1.16"
  4354. },
  4355. "require-dev": {
  4356. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  4357. },
  4358. "type": "library",
  4359. "autoload": {
  4360. "psr-4": {
  4361. "Symfony\\Component\\VarExporter\\": ""
  4362. },
  4363. "exclude-from-classmap": [
  4364. "/Tests/"
  4365. ]
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Nicolas Grekas",
  4374. "email": "p@tchwork.com"
  4375. },
  4376. {
  4377. "name": "Symfony Community",
  4378. "homepage": "https://symfony.com/contributors"
  4379. }
  4380. ],
  4381. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4382. "homepage": "https://symfony.com",
  4383. "keywords": [
  4384. "clone",
  4385. "construct",
  4386. "export",
  4387. "hydrate",
  4388. "instantiate",
  4389. "serialize"
  4390. ],
  4391. "support": {
  4392. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  4393. },
  4394. "funding": [
  4395. {
  4396. "url": "https://symfony.com/sponsor",
  4397. "type": "custom"
  4398. },
  4399. {
  4400. "url": "https://github.com/fabpot",
  4401. "type": "github"
  4402. },
  4403. {
  4404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4405. "type": "tidelift"
  4406. }
  4407. ],
  4408. "time": "2022-05-27T12:56:18+00:00"
  4409. },
  4410. {
  4411. "name": "symfony/yaml",
  4412. "version": "v2.8.52",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/symfony/yaml.git",
  4416. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  4421. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  4422. "shasum": ""
  4423. },
  4424. "require": {
  4425. "php": ">=5.3.9",
  4426. "symfony/polyfill-ctype": "~1.8"
  4427. },
  4428. "type": "library",
  4429. "extra": {
  4430. "branch-alias": {
  4431. "dev-master": "2.8-dev"
  4432. }
  4433. },
  4434. "autoload": {
  4435. "psr-4": {
  4436. "Symfony\\Component\\Yaml\\": ""
  4437. },
  4438. "exclude-from-classmap": [
  4439. "/Tests/"
  4440. ]
  4441. },
  4442. "notification-url": "https://packagist.org/downloads/",
  4443. "license": [
  4444. "MIT"
  4445. ],
  4446. "authors": [
  4447. {
  4448. "name": "Fabien Potencier",
  4449. "email": "fabien@symfony.com"
  4450. },
  4451. {
  4452. "name": "Symfony Community",
  4453. "homepage": "https://symfony.com/contributors"
  4454. }
  4455. ],
  4456. "description": "Symfony Yaml Component",
  4457. "homepage": "https://symfony.com",
  4458. "support": {
  4459. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  4460. },
  4461. "time": "2018-11-11T11:18:13+00:00"
  4462. },
  4463. {
  4464. "name": "topthink/framework",
  4465. "version": "v5.1.41",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/top-think/framework.git",
  4469. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/top-think/framework/zipball/7137741a323a4a60cfca334507cd1812fac91bb2",
  4474. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2",
  4475. "shasum": ""
  4476. },
  4477. "require": {
  4478. "php": ">=5.6.0",
  4479. "topthink/think-installer": "2.*"
  4480. },
  4481. "require-dev": {
  4482. "johnkary/phpunit-speedtrap": "^1.0",
  4483. "mikey179/vfsstream": "~1.6",
  4484. "phpdocumentor/reflection-docblock": "^2.0",
  4485. "phploc/phploc": "2.*",
  4486. "phpunit/phpunit": "^5.0|^6.0",
  4487. "sebastian/phpcpd": "2.*",
  4488. "squizlabs/php_codesniffer": "2.*"
  4489. },
  4490. "type": "think-framework",
  4491. "notification-url": "https://packagist.org/downloads/",
  4492. "license": [
  4493. "Apache-2.0"
  4494. ],
  4495. "authors": [
  4496. {
  4497. "name": "liu21st",
  4498. "email": "liu21st@gmail.com"
  4499. },
  4500. {
  4501. "name": "yunwuxin",
  4502. "email": "448901948@qq.com"
  4503. }
  4504. ],
  4505. "description": "the new thinkphp framework",
  4506. "homepage": "http://thinkphp.cn/",
  4507. "keywords": [
  4508. "framework",
  4509. "orm",
  4510. "thinkphp"
  4511. ],
  4512. "support": {
  4513. "issues": "https://github.com/top-think/framework/issues",
  4514. "source": "https://github.com/top-think/framework/tree/v5.1.41"
  4515. },
  4516. "time": "2021-01-11T02:51:29+00:00"
  4517. },
  4518. {
  4519. "name": "topthink/think-installer",
  4520. "version": "v2.0.5",
  4521. "source": {
  4522. "type": "git",
  4523. "url": "https://github.com/top-think/think-installer.git",
  4524. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88"
  4525. },
  4526. "dist": {
  4527. "type": "zip",
  4528. "url": "https://api.github.com/repos/top-think/think-installer/zipball/38ba647706e35d6704b5d370c06f8a160b635f88",
  4529. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88",
  4530. "shasum": ""
  4531. },
  4532. "require": {
  4533. "composer-plugin-api": "^1.0||^2.0"
  4534. },
  4535. "require-dev": {
  4536. "composer/composer": "^1.0||^2.0"
  4537. },
  4538. "type": "composer-plugin",
  4539. "extra": {
  4540. "class": "think\\composer\\Plugin"
  4541. },
  4542. "autoload": {
  4543. "psr-4": {
  4544. "think\\composer\\": "src"
  4545. }
  4546. },
  4547. "notification-url": "https://packagist.org/downloads/",
  4548. "license": [
  4549. "Apache-2.0"
  4550. ],
  4551. "authors": [
  4552. {
  4553. "name": "yunwuxin",
  4554. "email": "448901948@qq.com"
  4555. }
  4556. ],
  4557. "support": {
  4558. "issues": "https://github.com/top-think/think-installer/issues",
  4559. "source": "https://github.com/top-think/think-installer/tree/v2.0.5"
  4560. },
  4561. "time": "2021-01-14T12:12:14+00:00"
  4562. },
  4563. {
  4564. "name": "zoujingli/ip2region",
  4565. "version": "v1.0.12",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://github.com/zoujingli/ip2region.git",
  4569. "reference": "82cebc7a6be46524797454e98d3b165521065c26"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/82cebc7a6be46524797454e98d3b165521065c26",
  4574. "reference": "82cebc7a6be46524797454e98d3b165521065c26",
  4575. "shasum": ""
  4576. },
  4577. "require": {
  4578. "php": ">=5.3"
  4579. },
  4580. "type": "library",
  4581. "autoload": {
  4582. "classmap": [
  4583. "Ip2Region.php"
  4584. ]
  4585. },
  4586. "notification-url": "https://packagist.org/downloads/",
  4587. "license": [
  4588. "Apache-2.0"
  4589. ],
  4590. "authors": [
  4591. {
  4592. "name": "Anyon",
  4593. "email": "zoujingli@qq.com",
  4594. "homepage": "http://ctolog.com"
  4595. }
  4596. ],
  4597. "description": "Ip2Region for PHP",
  4598. "homepage": "https://github.com/zoujingli/Ip2Region",
  4599. "keywords": [
  4600. "Ip2Region"
  4601. ],
  4602. "support": {
  4603. "issues": "https://github.com/zoujingli/ip2region/issues",
  4604. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.12"
  4605. },
  4606. "time": "2022-03-03T10:24:30+00:00"
  4607. },
  4608. {
  4609. "name": "zoujingli/think-library",
  4610. "version": "v5.1.x-dev",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  4614. "reference": "6a5c8b7ad40d19664494522dcf9388a48df43447"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/6a5c8b7ad40d19664494522dcf9388a48df43447",
  4619. "reference": "6a5c8b7ad40d19664494522dcf9388a48df43447",
  4620. "shasum": ""
  4621. },
  4622. "require": {
  4623. "aliyuncs/oss-sdk-php": "^2.3",
  4624. "ext-curl": "*",
  4625. "ext-gd": "*",
  4626. "ext-iconv": "*",
  4627. "ext-json": "*",
  4628. "ext-openssl": "*",
  4629. "php": ">=5.5",
  4630. "qiniu/php-sdk": "^7.2",
  4631. "topthink/framework": "5.1.*"
  4632. },
  4633. "type": "library",
  4634. "autoload": {
  4635. "files": [
  4636. "src/common.php"
  4637. ],
  4638. "psr-4": {
  4639. "library\\": "src"
  4640. }
  4641. },
  4642. "notification-url": "https://packagist.org/downloads/",
  4643. "license": [
  4644. "MIT"
  4645. ],
  4646. "description": "ThinkPHP Basic Development Library",
  4647. "homepage": "http://framework.thinkadmin.top",
  4648. "support": {
  4649. "issues": "https://github.com/zoujingli/ThinkLibrary/issues",
  4650. "source": "https://github.com/zoujingli/ThinkLibrary/tree/v5.1"
  4651. },
  4652. "time": "2022-04-15T04:04:37+00:00"
  4653. },
  4654. {
  4655. "name": "zoujingli/wechat-developer",
  4656. "version": "v1.2.36",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://github.com/zoujingli/WeChatDeveloper.git",
  4660. "reference": "a598aaa2b8e2470ea2120cff514df1de88bde6df"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/a598aaa2b8e2470ea2120cff514df1de88bde6df",
  4665. "reference": "a598aaa2b8e2470ea2120cff514df1de88bde6df",
  4666. "shasum": ""
  4667. },
  4668. "require": {
  4669. "ext-bcmath": "*",
  4670. "ext-curl": "*",
  4671. "ext-json": "*",
  4672. "ext-libxml": "*",
  4673. "ext-mbstring": "*",
  4674. "ext-openssl": "*",
  4675. "ext-simplexml": "*",
  4676. "ext-xml": "*",
  4677. "php": ">=5.4"
  4678. },
  4679. "type": "library",
  4680. "autoload": {
  4681. "psr-4": {
  4682. "WePay\\": "WePay",
  4683. "AliPay\\": "AliPay",
  4684. "WeChat\\": "WeChat",
  4685. "WeMini\\": "WeMini",
  4686. "WePayV3\\": "WePayV3"
  4687. },
  4688. "classmap": [
  4689. "We.php"
  4690. ]
  4691. },
  4692. "notification-url": "https://packagist.org/downloads/",
  4693. "license": [
  4694. "MIT"
  4695. ],
  4696. "authors": [
  4697. {
  4698. "name": "Anyon",
  4699. "email": "zoujingli@qq.com",
  4700. "homepage": "https://thinkadmin.top"
  4701. }
  4702. ],
  4703. "description": "WeChat platform and WeChat payment development tools",
  4704. "homepage": "https://github.com/kentwangit/WeChatDeveloper",
  4705. "keywords": [
  4706. "WeChatDeveloper",
  4707. "WeMini",
  4708. "alipay",
  4709. "wechat",
  4710. "wechatpay",
  4711. "wepay"
  4712. ],
  4713. "support": {
  4714. "issues": "https://github.com/zoujingli/WeChatDeveloper/issues",
  4715. "source": "https://github.com/zoujingli/WeChatDeveloper/tree/v1.2.36"
  4716. },
  4717. "time": "2022-05-25T03:48:22+00:00"
  4718. },
  4719. {
  4720. "name": "zoujingli/weopen-developer",
  4721. "version": "dev-master",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://github.com/zoujingli/WeOpenDeveloper.git",
  4725. "reference": "4d0d3c064e54556621453845fc65ba52de58a880"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://api.github.com/repos/zoujingli/WeOpenDeveloper/zipball/4d0d3c064e54556621453845fc65ba52de58a880",
  4730. "reference": "4d0d3c064e54556621453845fc65ba52de58a880",
  4731. "shasum": ""
  4732. },
  4733. "require": {
  4734. "ext-curl": "*",
  4735. "ext-json": "*",
  4736. "ext-openssl": "*",
  4737. "php": ">=5.4",
  4738. "zoujingli/wechat-developer": "^1.0"
  4739. },
  4740. "default-branch": true,
  4741. "type": "library",
  4742. "autoload": {
  4743. "psr-4": {
  4744. "WeChat\\": "WeChat",
  4745. "WeMini\\": "WeMini",
  4746. "WeOpen\\": "WeOpen"
  4747. }
  4748. },
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "MIT"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "Anyon",
  4756. "email": "zoujingli@qq.com",
  4757. "homepage": "http://ctolog.com"
  4758. }
  4759. ],
  4760. "description": "WeChat Open development of SDK",
  4761. "homepage": "https://github.com/zoujingli/WeOpenDeveloper",
  4762. "keywords": [
  4763. "WeChatOpen",
  4764. "WeChatOpenDeveloper",
  4765. "wechat"
  4766. ],
  4767. "support": {
  4768. "issues": "https://github.com/zoujingli/WeOpenDeveloper/issues",
  4769. "source": "https://github.com/zoujingli/WeOpenDeveloper/tree/v1.1.4"
  4770. },
  4771. "time": "2019-10-10T10:18:05+00:00"
  4772. }
  4773. ],
  4774. "packages-dev": [],
  4775. "aliases": [],
  4776. "minimum-stability": "stable",
  4777. "stability-flags": {
  4778. "zoujingli/think-library": 20,
  4779. "zoujingli/weopen-developer": 20
  4780. },
  4781. "prefer-stable": false,
  4782. "prefer-lowest": false,
  4783. "platform": {
  4784. "php": ">=5.6",
  4785. "ext-gd": "*",
  4786. "ext-curl": "*",
  4787. "ext-json": "*",
  4788. "ext-iconv": "*",
  4789. "ext-openssl": "*",
  4790. "ext-mbstring": "*"
  4791. },
  4792. "platform-dev": [],
  4793. "plugin-api-version": "2.3.0"
  4794. }