composer.lock 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515
  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": "841f6f8a270fc3d098c80e6dcb123208",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  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. "time": "2022-10-14T20:31:46+00:00"
  57. },
  58. {
  59. "name": "alibabacloud/client",
  60. "version": "1.5.32",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  64. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  69. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  70. "shasum": ""
  71. },
  72. "require": {
  73. "adbario/php-dot-notation": "^2.4.1",
  74. "clagiordano/weblibs-configmanager": "^1.0",
  75. "ext-curl": "*",
  76. "ext-json": "*",
  77. "ext-libxml": "*",
  78. "ext-mbstring": "*",
  79. "ext-openssl": "*",
  80. "ext-simplexml": "*",
  81. "ext-xmlwriter": "*",
  82. "guzzlehttp/guzzle": "^6.3|^7.0",
  83. "mtdowling/jmespath.php": "^2.5",
  84. "php": ">=5.5"
  85. },
  86. "require-dev": {
  87. "composer/composer": "^1.8",
  88. "drupal/coder": "^8.3",
  89. "ext-dom": "*",
  90. "ext-pcre": "*",
  91. "ext-sockets": "*",
  92. "ext-spl": "*",
  93. "league/climate": "^3.2.4",
  94. "mikey179/vfsstream": "^1.6",
  95. "monolog/monolog": "^1.24",
  96. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  97. "psr/cache": "^1.0",
  98. "symfony/dotenv": "^3.4",
  99. "symfony/var-dumper": "^3.4"
  100. },
  101. "suggest": {
  102. "ext-sockets": "To use client-side monitoring"
  103. },
  104. "type": "library",
  105. "autoload": {
  106. "files": [
  107. "src/Functions.php"
  108. ],
  109. "psr-4": {
  110. "AlibabaCloud\\Client\\": "src"
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "Apache-2.0"
  116. ],
  117. "authors": [
  118. {
  119. "name": "Alibaba Cloud SDK",
  120. "email": "sdk-team@alibabacloud.com",
  121. "homepage": "http://www.alibabacloud.com"
  122. }
  123. ],
  124. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  125. "homepage": "https://www.alibabacloud.com/",
  126. "keywords": [
  127. "alibaba",
  128. "alibabacloud",
  129. "aliyun",
  130. "client",
  131. "cloud",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "time": "2022-12-09T04:05:55+00:00"
  137. },
  138. {
  139. "name": "aliyuncs/oss-sdk-php",
  140. "version": "v2.6.0",
  141. "source": {
  142. "type": "git",
  143. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  144. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f"
  145. },
  146. "dist": {
  147. "type": "zip",
  148. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  149. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  150. "shasum": ""
  151. },
  152. "require": {
  153. "php": ">=5.3"
  154. },
  155. "require-dev": {
  156. "phpunit/phpunit": "*",
  157. "satooshi/php-coveralls": "*"
  158. },
  159. "type": "library",
  160. "autoload": {
  161. "psr-4": {
  162. "OSS\\": "src/OSS"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Aliyuncs",
  172. "homepage": "http://www.aliyun.com"
  173. }
  174. ],
  175. "description": "Aliyun OSS SDK for PHP",
  176. "homepage": "http://www.aliyun.com/product/oss/",
  177. "time": "2022-08-03T08:06:01+00:00"
  178. },
  179. {
  180. "name": "clagiordano/weblibs-configmanager",
  181. "version": "v1.2.0",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  185. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  190. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "php": ">=5.4"
  195. },
  196. "require-dev": {
  197. "clagiordano/phpunit-result-printer": "^1",
  198. "phpunit/phpunit": "^4.8"
  199. },
  200. "type": "library",
  201. "autoload": {
  202. "psr-4": {
  203. "clagiordano\\weblibs\\configmanager\\": "src/"
  204. }
  205. },
  206. "notification-url": "https://packagist.org/downloads/",
  207. "license": [
  208. "LGPL-3.0-or-later"
  209. ],
  210. "authors": [
  211. {
  212. "name": "Claudio Giordano",
  213. "email": "claudio.giordano@autistici.org",
  214. "role": "Developer"
  215. }
  216. ],
  217. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  218. "keywords": [
  219. "clagiordano",
  220. "configuration",
  221. "manager",
  222. "tool",
  223. "weblibs"
  224. ],
  225. "time": "2021-05-18T17:55:57+00:00"
  226. },
  227. {
  228. "name": "desarrolla2/cache",
  229. "version": "v2.1.3",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/desarrolla2/Cache.git",
  233. "reference": "cbc42cae703e6f8cc9e17231f083304f0038318e"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/desarrolla2/Cache/zipball/cbc42cae703e6f8cc9e17231f083304f0038318e",
  238. "reference": "cbc42cae703e6f8cc9e17231f083304f0038318e",
  239. "shasum": ""
  240. },
  241. "require": {
  242. "php": ">=5.4.0"
  243. },
  244. "require-dev": {
  245. "predis/predis": "~1.0.0"
  246. },
  247. "suggest": {
  248. "predis/predis": "Predis support"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "Desarrolla2\\Cache\\": "src/",
  254. "Desarrolla2\\Test\\Cache\\": "test/"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "MIT"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Daniel González",
  264. "homepage": "http://desarrolla2.com/"
  265. }
  266. ],
  267. "description": "Provides an cache interface for several adapters Apc, Apcu, File, Mongo, Memcache, Memcached, Mysql, Mongo, Redis is supported. New adapters is comming!",
  268. "homepage": "https://github.com/desarrolla2/Cache/",
  269. "keywords": [
  270. "apc",
  271. "apcu",
  272. "cache",
  273. "file",
  274. "memcache",
  275. "memcached",
  276. "mongo",
  277. "mysql",
  278. "redis"
  279. ],
  280. "time": "2023-05-04T14:59:36+00:00"
  281. },
  282. {
  283. "name": "doctrine/lexer",
  284. "version": "1.2.3",
  285. "source": {
  286. "type": "git",
  287. "url": "https://github.com/doctrine/lexer.git",
  288. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  289. },
  290. "dist": {
  291. "type": "zip",
  292. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  293. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  294. "shasum": ""
  295. },
  296. "require": {
  297. "php": "^7.1 || ^8.0"
  298. },
  299. "require-dev": {
  300. "doctrine/coding-standard": "^9.0",
  301. "phpstan/phpstan": "^1.3",
  302. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  303. "vimeo/psalm": "^4.11"
  304. },
  305. "type": "library",
  306. "autoload": {
  307. "psr-4": {
  308. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  309. }
  310. },
  311. "notification-url": "https://packagist.org/downloads/",
  312. "license": [
  313. "MIT"
  314. ],
  315. "authors": [
  316. {
  317. "name": "Guilherme Blanco",
  318. "email": "guilhermeblanco@gmail.com"
  319. },
  320. {
  321. "name": "Roman Borschel",
  322. "email": "roman@code-factory.org"
  323. },
  324. {
  325. "name": "Johannes Schmitt",
  326. "email": "schmittjoh@gmail.com"
  327. }
  328. ],
  329. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  330. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  331. "keywords": [
  332. "annotations",
  333. "docblock",
  334. "lexer",
  335. "parser",
  336. "php"
  337. ],
  338. "time": "2022-02-28T11:07:21+00:00"
  339. },
  340. {
  341. "name": "dragonmantank/cron-expression",
  342. "version": "v3.0.2",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/dragonmantank/cron-expression.git",
  346. "reference": "48212cdc0a79051d50d7fc2f0645c5a321caf926"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/48212cdc0a79051d50d7fc2f0645c5a321caf926",
  351. "reference": "48212cdc0a79051d50d7fc2f0645c5a321caf926",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^7.1|^8.0"
  356. },
  357. "replace": {
  358. "mtdowling/cron-expression": "^1.0"
  359. },
  360. "require-dev": {
  361. "phpstan/phpstan": "^0.11|^0.12",
  362. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  363. },
  364. "type": "library",
  365. "autoload": {
  366. "psr-4": {
  367. "Cron\\": "src/Cron/"
  368. }
  369. },
  370. "notification-url": "https://packagist.org/downloads/",
  371. "license": [
  372. "MIT"
  373. ],
  374. "authors": [
  375. {
  376. "name": "Chris Tankersley",
  377. "email": "chris@ctankersley.com",
  378. "homepage": "https://github.com/dragonmantank"
  379. }
  380. ],
  381. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  382. "keywords": [
  383. "cron",
  384. "schedule"
  385. ],
  386. "time": "2020-10-13T01:26:01+00:00"
  387. },
  388. {
  389. "name": "egulias/email-validator",
  390. "version": "2.1.25",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/egulias/EmailValidator.git",
  394. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  399. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  400. "shasum": ""
  401. },
  402. "require": {
  403. "doctrine/lexer": "^1.0.1",
  404. "php": ">=5.5",
  405. "symfony/polyfill-intl-idn": "^1.10"
  406. },
  407. "require-dev": {
  408. "dominicsayers/isemail": "^3.0.7",
  409. "phpunit/phpunit": "^4.8.36|^7.5.15",
  410. "satooshi/php-coveralls": "^1.0.1"
  411. },
  412. "suggest": {
  413. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  414. },
  415. "type": "library",
  416. "extra": {
  417. "branch-alias": {
  418. "dev-master": "2.1.x-dev"
  419. }
  420. },
  421. "autoload": {
  422. "psr-4": {
  423. "Egulias\\EmailValidator\\": "src"
  424. }
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "MIT"
  429. ],
  430. "authors": [
  431. {
  432. "name": "Eduardo Gulias Davis"
  433. }
  434. ],
  435. "description": "A library for validating emails against several RFCs",
  436. "homepage": "https://github.com/egulias/EmailValidator",
  437. "keywords": [
  438. "email",
  439. "emailvalidation",
  440. "emailvalidator",
  441. "validation",
  442. "validator"
  443. ],
  444. "time": "2020-12-29T14:50:06+00:00"
  445. },
  446. {
  447. "name": "firebase/php-jwt",
  448. "version": "v6.11.1",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/firebase/php-jwt.git",
  452. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  457. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  458. "shasum": ""
  459. },
  460. "require": {
  461. "php": "^8.0"
  462. },
  463. "require-dev": {
  464. "guzzlehttp/guzzle": "^7.4",
  465. "phpspec/prophecy-phpunit": "^2.0",
  466. "phpunit/phpunit": "^9.5",
  467. "psr/cache": "^2.0||^3.0",
  468. "psr/http-client": "^1.0",
  469. "psr/http-factory": "^1.0"
  470. },
  471. "suggest": {
  472. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  473. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  474. },
  475. "type": "library",
  476. "autoload": {
  477. "psr-4": {
  478. "Firebase\\JWT\\": "src"
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "BSD-3-Clause"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Neuman Vong",
  488. "email": "neuman+pear@twilio.com",
  489. "role": "Developer"
  490. },
  491. {
  492. "name": "Anant Narayanan",
  493. "email": "anant@php.net",
  494. "role": "Developer"
  495. }
  496. ],
  497. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  498. "homepage": "https://github.com/firebase/php-jwt",
  499. "keywords": [
  500. "jwt",
  501. "php"
  502. ],
  503. "support": {
  504. "issues": "https://github.com/firebase/php-jwt/issues",
  505. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  506. },
  507. "time": "2025-04-09T20:32:01+00:00"
  508. },
  509. {
  510. "name": "google/auth",
  511. "version": "v1.26.0",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/googleapis/google-auth-library-php.git",
  515. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  520. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "firebase/php-jwt": "^5.5||^6.0",
  525. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  526. "guzzlehttp/psr7": "^1.7|^2.0",
  527. "php": "^7.1||^8.0",
  528. "psr/cache": "^1.0|^2.0|^3.0",
  529. "psr/http-message": "^1.0"
  530. },
  531. "require-dev": {
  532. "guzzlehttp/promises": "0.1.1|^1.3",
  533. "kelvinmo/simplejwt": "0.7.0",
  534. "phpseclib/phpseclib": "^2.0.31||^3.0",
  535. "phpspec/prophecy-phpunit": "^1.1||^2.0",
  536. "phpunit/phpunit": "^7.5||^9.0.0",
  537. "sebastian/comparator": ">=1.2.3",
  538. "squizlabs/php_codesniffer": "^3.5"
  539. },
  540. "suggest": {
  541. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  542. },
  543. "type": "library",
  544. "autoload": {
  545. "psr-4": {
  546. "Google\\Auth\\": "src"
  547. }
  548. },
  549. "notification-url": "https://packagist.org/downloads/",
  550. "license": [
  551. "Apache-2.0"
  552. ],
  553. "description": "Google Auth Library for PHP",
  554. "homepage": "http://github.com/google/google-auth-library-php",
  555. "keywords": [
  556. "Authentication",
  557. "google",
  558. "oauth2"
  559. ],
  560. "support": {
  561. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  562. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  563. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.26.0"
  564. },
  565. "time": "2023-04-05T15:11:57+00:00"
  566. },
  567. {
  568. "name": "google/cloud-core",
  569. "version": "v1.52.10",
  570. "source": {
  571. "type": "git",
  572. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  573. "reference": "5e34556498ecadee2161402fd1024bec7ce33186"
  574. },
  575. "dist": {
  576. "type": "zip",
  577. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/5e34556498ecadee2161402fd1024bec7ce33186",
  578. "reference": "5e34556498ecadee2161402fd1024bec7ce33186",
  579. "shasum": ""
  580. },
  581. "require": {
  582. "google/auth": "^1.18",
  583. "guzzlehttp/guzzle": "^6.5.8|^7.4.4",
  584. "guzzlehttp/promises": "^1.4||^2.0",
  585. "guzzlehttp/psr7": "^1.7|^2.0",
  586. "monolog/monolog": "^1.1|^2.0|^3.0",
  587. "php": ">=7.4",
  588. "psr/http-message": "^1.0|^2.0",
  589. "rize/uri-template": "~0.3"
  590. },
  591. "require-dev": {
  592. "erusev/parsedown": "^1.6",
  593. "google/cloud-common-protos": "^0.4",
  594. "google/gax": "^1.24.0",
  595. "opis/closure": "^3",
  596. "phpdocumentor/reflection": "^5.0",
  597. "phpspec/prophecy-phpunit": "^2.0",
  598. "phpunit/phpunit": "^9.0",
  599. "squizlabs/php_codesniffer": "2.*"
  600. },
  601. "suggest": {
  602. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  603. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  604. },
  605. "bin": [
  606. "bin/google-cloud-batch"
  607. ],
  608. "type": "library",
  609. "extra": {
  610. "component": {
  611. "id": "cloud-core",
  612. "path": "Core",
  613. "entry": "src/ServiceBuilder.php",
  614. "target": "googleapis/google-cloud-php-core.git"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Google\\Cloud\\Core\\": "src"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "Apache-2.0"
  625. ],
  626. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  627. "support": {
  628. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.52.10"
  629. },
  630. "time": "2023-12-08T22:36:35+00:00"
  631. },
  632. {
  633. "name": "google/cloud-translate",
  634. "version": "v1.14.2",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/googleapis/google-cloud-php-translate.git",
  638. "reference": "e734e2a3980c06e350dba38660d0b6102fa15e34"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://api.github.com/repos/googleapis/google-cloud-php-translate/zipball/e734e2a3980c06e350dba38660d0b6102fa15e34",
  643. "reference": "e734e2a3980c06e350dba38660d0b6102fa15e34",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "google/cloud-core": "^1.39",
  648. "google/gax": "^1.19.1",
  649. "php": ">=7.4"
  650. },
  651. "require-dev": {
  652. "erusev/parsedown": "^1.6",
  653. "phpdocumentor/reflection": "^5.0",
  654. "phpspec/prophecy-phpunit": "^2.0",
  655. "phpunit/phpunit": "^9.0",
  656. "squizlabs/php_codesniffer": "2.*"
  657. },
  658. "suggest": {
  659. "ext-grpc": "The gRPC extension enables use of the performant gRPC transport",
  660. "ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions."
  661. },
  662. "type": "library",
  663. "extra": {
  664. "component": {
  665. "id": "cloud-translate",
  666. "path": "Translate",
  667. "entry": "src/TranslateClient.php",
  668. "target": "googleapis/google-cloud-php-translate.git"
  669. }
  670. },
  671. "autoload": {
  672. "psr-4": {
  673. "Google\\Cloud\\Translate\\": "src",
  674. "GPBMetadata\\Google\\Cloud\\Translate\\": "metadata"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "Apache-2.0"
  680. ],
  681. "description": "Cloud Translation Client for PHP",
  682. "support": {
  683. "source": "https://github.com/googleapis/google-cloud-php-translate/tree/v1.14.2"
  684. },
  685. "time": "2023-07-07T20:46:38+00:00"
  686. },
  687. {
  688. "name": "google/common-protos",
  689. "version": "v3.2.0",
  690. "source": {
  691. "type": "git",
  692. "url": "https://github.com/googleapis/common-protos-php.git",
  693. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98"
  694. },
  695. "dist": {
  696. "type": "zip",
  697. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/57d4ad36cc48cc0369123042908013ef2a86bb98",
  698. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98",
  699. "shasum": ""
  700. },
  701. "require": {
  702. "google/protobuf": "^3.6.1"
  703. },
  704. "require-dev": {
  705. "phpunit/phpunit": "^4.8.36||^8.5",
  706. "sami/sami": "*"
  707. },
  708. "type": "library",
  709. "autoload": {
  710. "psr-4": {
  711. "Google\\Api\\": "src/Api",
  712. "Google\\Iam\\": "src/Iam",
  713. "Google\\Rpc\\": "src/Rpc",
  714. "Google\\Type\\": "src/Type",
  715. "Google\\Cloud\\": "src/Cloud",
  716. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  717. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  718. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  719. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  720. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  721. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "Apache-2.0"
  727. ],
  728. "description": "Google API Common Protos for PHP",
  729. "homepage": "https://github.com/googleapis/common-protos-php",
  730. "keywords": [
  731. "google"
  732. ],
  733. "support": {
  734. "issues": "https://github.com/googleapis/common-protos-php/issues",
  735. "source": "https://github.com/googleapis/common-protos-php/tree/v3.2.0"
  736. },
  737. "time": "2023-01-12T16:51:46+00:00"
  738. },
  739. {
  740. "name": "google/gax",
  741. "version": "v1.19.1",
  742. "source": {
  743. "type": "git",
  744. "url": "https://github.com/googleapis/gax-php.git",
  745. "reference": "30f6b307faa9858bf58d967664467098dbbc354f"
  746. },
  747. "dist": {
  748. "type": "zip",
  749. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/30f6b307faa9858bf58d967664467098dbbc354f",
  750. "reference": "30f6b307faa9858bf58d967664467098dbbc354f",
  751. "shasum": ""
  752. },
  753. "require": {
  754. "google/auth": "1.19.1||^1.25.0",
  755. "google/common-protos": "^1.3.1||^2.0||^3.0",
  756. "google/grpc-gcp": "^0.2",
  757. "google/longrunning": "^0.2",
  758. "google/protobuf": "^3.21.4",
  759. "grpc/grpc": "^1.13",
  760. "guzzlehttp/promises": "^1.3",
  761. "guzzlehttp/psr7": "^1.7.0||^2",
  762. "php": ">=7.0"
  763. },
  764. "conflict": {
  765. "ext-protobuf": "<3.7.0"
  766. },
  767. "require-dev": {
  768. "phpspec/prophecy": "^1.10",
  769. "phpunit/phpunit": "^5.5||^8.5",
  770. "squizlabs/php_codesniffer": "3.*",
  771. "yoast/phpunit-polyfills": "^1.0"
  772. },
  773. "type": "library",
  774. "autoload": {
  775. "psr-4": {
  776. "Google\\ApiCore\\": "src",
  777. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "BSD-3-Clause"
  783. ],
  784. "description": "Google API Core for PHP",
  785. "homepage": "https://github.com/googleapis/gax-php",
  786. "keywords": [
  787. "google"
  788. ],
  789. "support": {
  790. "issues": "https://github.com/googleapis/gax-php/issues",
  791. "source": "https://github.com/googleapis/gax-php/tree/v1.19.1"
  792. },
  793. "time": "2023-03-16T19:58:19+00:00"
  794. },
  795. {
  796. "name": "google/grpc-gcp",
  797. "version": "v0.2.1",
  798. "source": {
  799. "type": "git",
  800. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  801. "reference": "899d0112812a812df7692617a59f4076f0d01719"
  802. },
  803. "dist": {
  804. "type": "zip",
  805. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/899d0112812a812df7692617a59f4076f0d01719",
  806. "reference": "899d0112812a812df7692617a59f4076f0d01719",
  807. "shasum": ""
  808. },
  809. "require": {
  810. "google/auth": "^1.3",
  811. "google/protobuf": "^v3.3.0",
  812. "grpc/grpc": "^v1.13.0",
  813. "php": ">=5.5.0",
  814. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  815. },
  816. "require-dev": {
  817. "google/cloud-spanner": "^1.7",
  818. "phpunit/phpunit": "4.8.36"
  819. },
  820. "type": "library",
  821. "autoload": {
  822. "psr-4": {
  823. "Grpc\\Gcp\\": "src/"
  824. },
  825. "classmap": [
  826. "src/generated/"
  827. ]
  828. },
  829. "notification-url": "https://packagist.org/downloads/",
  830. "license": [
  831. "Apache-2.0"
  832. ],
  833. "description": "gRPC GCP library for channel management",
  834. "support": {
  835. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  836. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.2.1"
  837. },
  838. "time": "2022-10-11T15:54:47+00:00"
  839. },
  840. {
  841. "name": "google/longrunning",
  842. "version": "v0.2.6",
  843. "source": {
  844. "type": "git",
  845. "url": "https://github.com/googleapis/php-longrunning.git",
  846. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842"
  847. },
  848. "dist": {
  849. "type": "zip",
  850. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  851. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  852. "shasum": ""
  853. },
  854. "require-dev": {
  855. "google/gax": "^1.13.0",
  856. "phpunit/phpunit": "^9.0"
  857. },
  858. "type": "library",
  859. "extra": {
  860. "component": {
  861. "id": "longrunning",
  862. "path": "LongRunning",
  863. "entry": null,
  864. "target": "googleapis/php-longrunning"
  865. }
  866. },
  867. "autoload": {
  868. "psr-4": {
  869. "Google\\LongRunning\\": "src/LongRunning",
  870. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  871. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  872. }
  873. },
  874. "notification-url": "https://packagist.org/downloads/",
  875. "license": [
  876. "Apache-2.0"
  877. ],
  878. "description": "Google LongRunning Client for PHP",
  879. "support": {
  880. "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.6"
  881. },
  882. "time": "2023-04-21T14:12:59+00:00"
  883. },
  884. {
  885. "name": "google/protobuf",
  886. "version": "v3.25.8",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  890. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  895. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "php": ">=7.0.0"
  900. },
  901. "require-dev": {
  902. "phpunit/phpunit": ">=5.0.0"
  903. },
  904. "suggest": {
  905. "ext-bcmath": "Need to support JSON deserialization"
  906. },
  907. "type": "library",
  908. "autoload": {
  909. "psr-4": {
  910. "Google\\Protobuf\\": "src/Google/Protobuf",
  911. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "BSD-3-Clause"
  917. ],
  918. "description": "proto library for PHP",
  919. "homepage": "https://developers.google.com/protocol-buffers/",
  920. "keywords": [
  921. "proto"
  922. ],
  923. "support": {
  924. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.8"
  925. },
  926. "time": "2025-05-27T21:04:40+00:00"
  927. },
  928. {
  929. "name": "grpc/grpc",
  930. "version": "1.74.0",
  931. "source": {
  932. "type": "git",
  933. "url": "https://github.com/grpc/grpc-php.git",
  934. "reference": "32bf4dba256d60d395582fb6e4e8d3936bcdb713"
  935. },
  936. "dist": {
  937. "type": "zip",
  938. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/32bf4dba256d60d395582fb6e4e8d3936bcdb713",
  939. "reference": "32bf4dba256d60d395582fb6e4e8d3936bcdb713",
  940. "shasum": ""
  941. },
  942. "require": {
  943. "php": ">=7.0.0"
  944. },
  945. "require-dev": {
  946. "google/auth": "^v1.3.0"
  947. },
  948. "suggest": {
  949. "ext-protobuf": "For better performance, install the protobuf C extension.",
  950. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  951. },
  952. "type": "library",
  953. "autoload": {
  954. "psr-4": {
  955. "Grpc\\": "src/lib/"
  956. }
  957. },
  958. "notification-url": "https://packagist.org/downloads/",
  959. "license": [
  960. "Apache-2.0"
  961. ],
  962. "description": "gRPC library for PHP",
  963. "homepage": "https://grpc.io",
  964. "keywords": [
  965. "rpc"
  966. ],
  967. "support": {
  968. "source": "https://github.com/grpc/grpc-php/tree/v1.74.0"
  969. },
  970. "time": "2025-07-24T20:02:16+00:00"
  971. },
  972. {
  973. "name": "guzzlehttp/command",
  974. "version": "1.0.0",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/guzzle/command.git",
  978. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/guzzle/command/zipball/2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  983. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  984. "shasum": ""
  985. },
  986. "require": {
  987. "guzzlehttp/guzzle": "^6.2",
  988. "guzzlehttp/promises": "~1.3",
  989. "guzzlehttp/psr7": "~1.0",
  990. "php": ">=5.5.0"
  991. },
  992. "require-dev": {
  993. "phpunit/phpunit": "~4.0|~5.0"
  994. },
  995. "type": "library",
  996. "extra": {
  997. "branch-alias": {
  998. "dev-master": "0.9-dev"
  999. }
  1000. },
  1001. "autoload": {
  1002. "psr-4": {
  1003. "GuzzleHttp\\Command\\": "src/"
  1004. }
  1005. },
  1006. "notification-url": "https://packagist.org/downloads/",
  1007. "license": [
  1008. "MIT"
  1009. ],
  1010. "authors": [
  1011. {
  1012. "name": "Michael Dowling",
  1013. "email": "mtdowling@gmail.com",
  1014. "homepage": "https://github.com/mtdowling"
  1015. },
  1016. {
  1017. "name": "Jeremy Lindblom",
  1018. "email": "jeremeamia@gmail.com",
  1019. "homepage": "https://github.com/jeremeamia"
  1020. }
  1021. ],
  1022. "description": "Provides the foundation for building command-based web service clients",
  1023. "time": "2016-11-24T13:34:15+00:00"
  1024. },
  1025. {
  1026. "name": "guzzlehttp/guzzle",
  1027. "version": "6.5.8",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/guzzle/guzzle.git",
  1031. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1036. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1037. "shasum": ""
  1038. },
  1039. "require": {
  1040. "ext-json": "*",
  1041. "guzzlehttp/promises": "^1.0",
  1042. "guzzlehttp/psr7": "^1.9",
  1043. "php": ">=5.5",
  1044. "symfony/polyfill-intl-idn": "^1.17"
  1045. },
  1046. "require-dev": {
  1047. "ext-curl": "*",
  1048. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1049. "psr/log": "^1.1"
  1050. },
  1051. "suggest": {
  1052. "psr/log": "Required for using the Log middleware"
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "branch-alias": {
  1057. "dev-master": "6.5-dev"
  1058. }
  1059. },
  1060. "autoload": {
  1061. "files": [
  1062. "src/functions_include.php"
  1063. ],
  1064. "psr-4": {
  1065. "GuzzleHttp\\": "src/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "Graham Campbell",
  1075. "email": "hello@gjcampbell.co.uk",
  1076. "homepage": "https://github.com/GrahamCampbell"
  1077. },
  1078. {
  1079. "name": "Michael Dowling",
  1080. "email": "mtdowling@gmail.com",
  1081. "homepage": "https://github.com/mtdowling"
  1082. },
  1083. {
  1084. "name": "Jeremy Lindblom",
  1085. "email": "jeremeamia@gmail.com",
  1086. "homepage": "https://github.com/jeremeamia"
  1087. },
  1088. {
  1089. "name": "George Mponos",
  1090. "email": "gmponos@gmail.com",
  1091. "homepage": "https://github.com/gmponos"
  1092. },
  1093. {
  1094. "name": "Tobias Nyholm",
  1095. "email": "tobias.nyholm@gmail.com",
  1096. "homepage": "https://github.com/Nyholm"
  1097. },
  1098. {
  1099. "name": "Márk Sági-Kazár",
  1100. "email": "mark.sagikazar@gmail.com",
  1101. "homepage": "https://github.com/sagikazarmark"
  1102. },
  1103. {
  1104. "name": "Tobias Schultze",
  1105. "email": "webmaster@tubo-world.de",
  1106. "homepage": "https://github.com/Tobion"
  1107. }
  1108. ],
  1109. "description": "Guzzle is a PHP HTTP client library",
  1110. "homepage": "http://guzzlephp.org/",
  1111. "keywords": [
  1112. "client",
  1113. "curl",
  1114. "framework",
  1115. "http",
  1116. "http client",
  1117. "rest",
  1118. "web service"
  1119. ],
  1120. "support": {
  1121. "issues": "https://github.com/guzzle/guzzle/issues",
  1122. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  1123. },
  1124. "funding": [
  1125. {
  1126. "url": "https://github.com/GrahamCampbell",
  1127. "type": "github"
  1128. },
  1129. {
  1130. "url": "https://github.com/Nyholm",
  1131. "type": "github"
  1132. },
  1133. {
  1134. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1135. "type": "tidelift"
  1136. }
  1137. ],
  1138. "time": "2022-06-20T22:16:07+00:00"
  1139. },
  1140. {
  1141. "name": "guzzlehttp/guzzle-services",
  1142. "version": "1.1.3",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "https://github.com/guzzle/guzzle-services.git",
  1146. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/9e3abf20161cbf662d616cbb995f2811771759f7",
  1151. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7",
  1152. "shasum": ""
  1153. },
  1154. "require": {
  1155. "guzzlehttp/command": "~1.0",
  1156. "guzzlehttp/guzzle": "^6.2",
  1157. "php": ">=5.5"
  1158. },
  1159. "require-dev": {
  1160. "phpunit/phpunit": "~4.0"
  1161. },
  1162. "suggest": {
  1163. "gimler/guzzle-description-loader": "^0.0.4"
  1164. },
  1165. "type": "library",
  1166. "extra": {
  1167. "branch-alias": {
  1168. "dev-master": "1.0.x-dev"
  1169. }
  1170. },
  1171. "autoload": {
  1172. "psr-4": {
  1173. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1174. }
  1175. },
  1176. "notification-url": "https://packagist.org/downloads/",
  1177. "license": [
  1178. "MIT"
  1179. ],
  1180. "authors": [
  1181. {
  1182. "name": "Michael Dowling",
  1183. "email": "mtdowling@gmail.com",
  1184. "homepage": "https://github.com/mtdowling"
  1185. },
  1186. {
  1187. "name": "Jeremy Lindblom",
  1188. "email": "jeremeamia@gmail.com",
  1189. "homepage": "https://github.com/jeremeamia"
  1190. },
  1191. {
  1192. "name": "Stefano Kowalke",
  1193. "email": "blueduck@mail.org",
  1194. "homepage": "https://github.com/konafets"
  1195. }
  1196. ],
  1197. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  1198. "time": "2017-10-06T14:32:02+00:00"
  1199. },
  1200. {
  1201. "name": "guzzlehttp/promises",
  1202. "version": "1.5.3",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/guzzle/promises.git",
  1206. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1211. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "php": ">=5.5"
  1216. },
  1217. "require-dev": {
  1218. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1219. },
  1220. "type": "library",
  1221. "autoload": {
  1222. "files": [
  1223. "src/functions_include.php"
  1224. ],
  1225. "psr-4": {
  1226. "GuzzleHttp\\Promise\\": "src/"
  1227. }
  1228. },
  1229. "notification-url": "https://packagist.org/downloads/",
  1230. "license": [
  1231. "MIT"
  1232. ],
  1233. "authors": [
  1234. {
  1235. "name": "Graham Campbell",
  1236. "email": "hello@gjcampbell.co.uk",
  1237. "homepage": "https://github.com/GrahamCampbell"
  1238. },
  1239. {
  1240. "name": "Michael Dowling",
  1241. "email": "mtdowling@gmail.com",
  1242. "homepage": "https://github.com/mtdowling"
  1243. },
  1244. {
  1245. "name": "Tobias Nyholm",
  1246. "email": "tobias.nyholm@gmail.com",
  1247. "homepage": "https://github.com/Nyholm"
  1248. },
  1249. {
  1250. "name": "Tobias Schultze",
  1251. "email": "webmaster@tubo-world.de",
  1252. "homepage": "https://github.com/Tobion"
  1253. }
  1254. ],
  1255. "description": "Guzzle promises library",
  1256. "keywords": [
  1257. "promise"
  1258. ],
  1259. "support": {
  1260. "issues": "https://github.com/guzzle/promises/issues",
  1261. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  1262. },
  1263. "funding": [
  1264. {
  1265. "url": "https://github.com/GrahamCampbell",
  1266. "type": "github"
  1267. },
  1268. {
  1269. "url": "https://github.com/Nyholm",
  1270. "type": "github"
  1271. },
  1272. {
  1273. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1274. "type": "tidelift"
  1275. }
  1276. ],
  1277. "time": "2023-05-21T12:31:43+00:00"
  1278. },
  1279. {
  1280. "name": "guzzlehttp/psr7",
  1281. "version": "1.9.1",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/guzzle/psr7.git",
  1285. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1290. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1291. "shasum": ""
  1292. },
  1293. "require": {
  1294. "php": ">=5.4.0",
  1295. "psr/http-message": "~1.0",
  1296. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1297. },
  1298. "provide": {
  1299. "psr/http-message-implementation": "1.0"
  1300. },
  1301. "require-dev": {
  1302. "ext-zlib": "*",
  1303. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1304. },
  1305. "suggest": {
  1306. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1307. },
  1308. "type": "library",
  1309. "autoload": {
  1310. "files": [
  1311. "src/functions_include.php"
  1312. ],
  1313. "psr-4": {
  1314. "GuzzleHttp\\Psr7\\": "src/"
  1315. }
  1316. },
  1317. "notification-url": "https://packagist.org/downloads/",
  1318. "license": [
  1319. "MIT"
  1320. ],
  1321. "authors": [
  1322. {
  1323. "name": "Graham Campbell",
  1324. "email": "hello@gjcampbell.co.uk",
  1325. "homepage": "https://github.com/GrahamCampbell"
  1326. },
  1327. {
  1328. "name": "Michael Dowling",
  1329. "email": "mtdowling@gmail.com",
  1330. "homepage": "https://github.com/mtdowling"
  1331. },
  1332. {
  1333. "name": "George Mponos",
  1334. "email": "gmponos@gmail.com",
  1335. "homepage": "https://github.com/gmponos"
  1336. },
  1337. {
  1338. "name": "Tobias Nyholm",
  1339. "email": "tobias.nyholm@gmail.com",
  1340. "homepage": "https://github.com/Nyholm"
  1341. },
  1342. {
  1343. "name": "Márk Sági-Kazár",
  1344. "email": "mark.sagikazar@gmail.com",
  1345. "homepage": "https://github.com/sagikazarmark"
  1346. },
  1347. {
  1348. "name": "Tobias Schultze",
  1349. "email": "webmaster@tubo-world.de",
  1350. "homepage": "https://github.com/Tobion"
  1351. }
  1352. ],
  1353. "description": "PSR-7 message implementation that also provides common utility methods",
  1354. "keywords": [
  1355. "http",
  1356. "message",
  1357. "psr-7",
  1358. "request",
  1359. "response",
  1360. "stream",
  1361. "uri",
  1362. "url"
  1363. ],
  1364. "support": {
  1365. "issues": "https://github.com/guzzle/psr7/issues",
  1366. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  1367. },
  1368. "funding": [
  1369. {
  1370. "url": "https://github.com/GrahamCampbell",
  1371. "type": "github"
  1372. },
  1373. {
  1374. "url": "https://github.com/Nyholm",
  1375. "type": "github"
  1376. },
  1377. {
  1378. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1379. "type": "tidelift"
  1380. }
  1381. ],
  1382. "time": "2023-04-17T16:00:37+00:00"
  1383. },
  1384. {
  1385. "name": "jasny/sso",
  1386. "version": "v0.3.0",
  1387. "source": {
  1388. "type": "git",
  1389. "url": "https://github.com/jasny/sso.git",
  1390. "reference": "0cb18c072e7b14db3d2d2549c051f41ca837e5e9"
  1391. },
  1392. "dist": {
  1393. "type": "zip",
  1394. "url": "https://api.github.com/repos/jasny/sso/zipball/0cb18c072e7b14db3d2d2549c051f41ca837e5e9",
  1395. "reference": "0cb18c072e7b14db3d2d2549c051f41ca837e5e9",
  1396. "shasum": ""
  1397. },
  1398. "require": {
  1399. "desarrolla2/cache": "^2.0.0",
  1400. "jasny/validation-result": "^1.0.0",
  1401. "php": ">=5.5.0"
  1402. },
  1403. "require-dev": {
  1404. "codeception/codeception": "^2.1.0",
  1405. "jasny/php-code-quality": "^1.1.0"
  1406. },
  1407. "type": "library",
  1408. "autoload": {
  1409. "psr-4": {
  1410. "Jasny\\SSO\\": "src/"
  1411. }
  1412. },
  1413. "notification-url": "https://packagist.org/downloads/",
  1414. "license": [
  1415. "MIT"
  1416. ],
  1417. "authors": [
  1418. {
  1419. "name": "Arnold Daniels",
  1420. "email": "arnold@jasny.net",
  1421. "homepage": "http://www.jasny.net"
  1422. }
  1423. ],
  1424. "description": "Simple Single Sign-On",
  1425. "homepage": "http://www.jasny.net/articles/simple-single-sign-on-for-php/",
  1426. "keywords": [
  1427. "SSO",
  1428. "auth"
  1429. ],
  1430. "time": "2017-02-24T22:44:27+00:00"
  1431. },
  1432. {
  1433. "name": "jasny/validation-result",
  1434. "version": "v1.1.2",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/jasny/validation-result.git",
  1438. "reference": "fbce54837c8414cf5af22981ac33b26eb13b2a51"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/jasny/validation-result/zipball/fbce54837c8414cf5af22981ac33b26eb13b2a51",
  1443. "reference": "fbce54837c8414cf5af22981ac33b26eb13b2a51",
  1444. "shasum": ""
  1445. },
  1446. "require": {
  1447. "php": ">=5.6.0"
  1448. },
  1449. "require-dev": {
  1450. "jasny/php-code-quality": "^1.2"
  1451. },
  1452. "type": "library",
  1453. "autoload": {
  1454. "psr-4": {
  1455. "Jasny\\": "src/"
  1456. }
  1457. },
  1458. "notification-url": "https://packagist.org/downloads/",
  1459. "license": [
  1460. "MIT"
  1461. ],
  1462. "authors": [
  1463. {
  1464. "name": "Arnold Daniels",
  1465. "email": "arnold@jasny.net",
  1466. "homepage": "http://www.jasny.net"
  1467. }
  1468. ],
  1469. "description": "A result object for validation",
  1470. "keywords": [
  1471. "validation"
  1472. ],
  1473. "time": "2019-02-12T12:51:58+00:00"
  1474. },
  1475. {
  1476. "name": "league/flysystem",
  1477. "version": "1.1.10",
  1478. "source": {
  1479. "type": "git",
  1480. "url": "https://github.com/thephpleague/flysystem.git",
  1481. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1482. },
  1483. "dist": {
  1484. "type": "zip",
  1485. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1486. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1487. "shasum": ""
  1488. },
  1489. "require": {
  1490. "ext-fileinfo": "*",
  1491. "league/mime-type-detection": "^1.3",
  1492. "php": "^7.2.5 || ^8.0"
  1493. },
  1494. "conflict": {
  1495. "league/flysystem-sftp": "<1.0.6"
  1496. },
  1497. "require-dev": {
  1498. "phpspec/prophecy": "^1.11.1",
  1499. "phpunit/phpunit": "^8.5.8"
  1500. },
  1501. "suggest": {
  1502. "ext-ftp": "Allows you to use FTP server storage",
  1503. "ext-openssl": "Allows you to use FTPS server storage",
  1504. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1505. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1506. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1507. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1508. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1509. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1510. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1511. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1512. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1513. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1514. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1515. },
  1516. "type": "library",
  1517. "extra": {
  1518. "branch-alias": {
  1519. "dev-master": "1.1-dev"
  1520. }
  1521. },
  1522. "autoload": {
  1523. "psr-4": {
  1524. "League\\Flysystem\\": "src/"
  1525. }
  1526. },
  1527. "notification-url": "https://packagist.org/downloads/",
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "Frank de Jonge",
  1534. "email": "info@frenky.net"
  1535. }
  1536. ],
  1537. "description": "Filesystem abstraction: Many filesystems, one API.",
  1538. "keywords": [
  1539. "Cloud Files",
  1540. "WebDAV",
  1541. "abstraction",
  1542. "aws",
  1543. "cloud",
  1544. "copy.com",
  1545. "dropbox",
  1546. "file systems",
  1547. "files",
  1548. "filesystem",
  1549. "filesystems",
  1550. "ftp",
  1551. "rackspace",
  1552. "remote",
  1553. "s3",
  1554. "sftp",
  1555. "storage"
  1556. ],
  1557. "support": {
  1558. "issues": "https://github.com/thephpleague/flysystem/issues",
  1559. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1560. },
  1561. "funding": [
  1562. {
  1563. "url": "https://offset.earth/frankdejonge",
  1564. "type": "other"
  1565. }
  1566. ],
  1567. "time": "2022-10-04T09:16:37+00:00"
  1568. },
  1569. {
  1570. "name": "league/flysystem-cached-adapter",
  1571. "version": "1.1.0",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1575. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1580. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1581. "shasum": ""
  1582. },
  1583. "require": {
  1584. "league/flysystem": "~1.0",
  1585. "psr/cache": "^1.0.0"
  1586. },
  1587. "require-dev": {
  1588. "mockery/mockery": "~0.9",
  1589. "phpspec/phpspec": "^3.4",
  1590. "phpunit/phpunit": "^5.7",
  1591. "predis/predis": "~1.0",
  1592. "tedivm/stash": "~0.12"
  1593. },
  1594. "suggest": {
  1595. "ext-phpredis": "Pure C implemented extension for PHP"
  1596. },
  1597. "type": "library",
  1598. "autoload": {
  1599. "psr-4": {
  1600. "League\\Flysystem\\Cached\\": "src/"
  1601. }
  1602. },
  1603. "notification-url": "https://packagist.org/downloads/",
  1604. "license": [
  1605. "MIT"
  1606. ],
  1607. "authors": [
  1608. {
  1609. "name": "frankdejonge",
  1610. "email": "info@frenky.net"
  1611. }
  1612. ],
  1613. "description": "An adapter decorator to enable meta-data caching.",
  1614. "support": {
  1615. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  1616. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  1617. },
  1618. "time": "2020-07-25T15:56:04+00:00"
  1619. },
  1620. {
  1621. "name": "league/mime-type-detection",
  1622. "version": "1.16.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1626. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  1631. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  1632. "shasum": ""
  1633. },
  1634. "require": {
  1635. "ext-fileinfo": "*",
  1636. "php": "^7.4 || ^8.0"
  1637. },
  1638. "require-dev": {
  1639. "friendsofphp/php-cs-fixer": "^3.2",
  1640. "phpstan/phpstan": "^0.12.68",
  1641. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1642. },
  1643. "type": "library",
  1644. "autoload": {
  1645. "psr-4": {
  1646. "League\\MimeTypeDetection\\": "src"
  1647. }
  1648. },
  1649. "notification-url": "https://packagist.org/downloads/",
  1650. "license": [
  1651. "MIT"
  1652. ],
  1653. "authors": [
  1654. {
  1655. "name": "Frank de Jonge",
  1656. "email": "info@frankdejonge.nl"
  1657. }
  1658. ],
  1659. "description": "Mime-type detection for Flysystem",
  1660. "support": {
  1661. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1662. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://github.com/frankdejonge",
  1667. "type": "github"
  1668. },
  1669. {
  1670. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1671. "type": "tidelift"
  1672. }
  1673. ],
  1674. "time": "2024-09-21T08:32:55+00:00"
  1675. },
  1676. {
  1677. "name": "liz/flysystem-qiniu",
  1678. "version": "v1.23",
  1679. "source": {
  1680. "type": "git",
  1681. "url": "https://github.com/l396635210/flysystem-qiniu.git",
  1682. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026"
  1683. },
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://api.github.com/repos/l396635210/flysystem-qiniu/zipball/24af0f95644fcf66e82cc04ce840f31f6450e026",
  1687. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026",
  1688. "shasum": ""
  1689. },
  1690. "require": {
  1691. "league/flysystem": "^1.0",
  1692. "php": "^7.0 || ^8.0",
  1693. "qiniu/php-sdk": "^7.2"
  1694. },
  1695. "type": "library",
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Liz\\Flysystem\\QiNiu\\": "src"
  1699. }
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "MIT"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "liz in company",
  1708. "email": "396635210@qq.com"
  1709. }
  1710. ],
  1711. "description": "QiNiu oss adapter for flysystem",
  1712. "time": "2021-01-12T12:50:38+00:00"
  1713. },
  1714. {
  1715. "name": "monolog/monolog",
  1716. "version": "2.11.0",
  1717. "source": {
  1718. "type": "git",
  1719. "url": "https://github.com/Seldaek/monolog.git",
  1720. "reference": "37308608e599f34a1a4845b16440047ec98a172a"
  1721. },
  1722. "dist": {
  1723. "type": "zip",
  1724. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/37308608e599f34a1a4845b16440047ec98a172a",
  1725. "reference": "37308608e599f34a1a4845b16440047ec98a172a",
  1726. "shasum": ""
  1727. },
  1728. "require": {
  1729. "php": ">=7.2",
  1730. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1731. },
  1732. "provide": {
  1733. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1734. },
  1735. "require-dev": {
  1736. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1737. "doctrine/couchdb": "~1.0@dev",
  1738. "elasticsearch/elasticsearch": "^7 || ^8",
  1739. "ext-json": "*",
  1740. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1741. "guzzlehttp/guzzle": "^7.4",
  1742. "guzzlehttp/psr7": "^2.2",
  1743. "mongodb/mongodb": "^1.8 || ^2.0",
  1744. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1745. "phpspec/prophecy": "^1.15",
  1746. "phpstan/phpstan": "^1.10",
  1747. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  1748. "predis/predis": "^1.1 || ^2.0",
  1749. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1750. "ruflin/elastica": "^7",
  1751. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1752. "symfony/mailer": "^5.4 || ^6",
  1753. "symfony/mime": "^5.4 || ^6"
  1754. },
  1755. "suggest": {
  1756. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1757. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1758. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1759. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1760. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1761. "ext-mbstring": "Allow to work properly with unicode symbols",
  1762. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1763. "ext-openssl": "Required to send log messages using SSL",
  1764. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1765. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1766. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1767. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1768. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1769. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-main": "2.x-dev"
  1775. }
  1776. },
  1777. "autoload": {
  1778. "psr-4": {
  1779. "Monolog\\": "src/Monolog"
  1780. }
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "Jordi Boggiano",
  1789. "email": "j.boggiano@seld.be",
  1790. "homepage": "https://seld.be"
  1791. }
  1792. ],
  1793. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1794. "homepage": "https://github.com/Seldaek/monolog",
  1795. "keywords": [
  1796. "log",
  1797. "logging",
  1798. "psr-3"
  1799. ],
  1800. "support": {
  1801. "issues": "https://github.com/Seldaek/monolog/issues",
  1802. "source": "https://github.com/Seldaek/monolog/tree/2.11.0"
  1803. },
  1804. "funding": [
  1805. {
  1806. "url": "https://github.com/Seldaek",
  1807. "type": "github"
  1808. },
  1809. {
  1810. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1811. "type": "tidelift"
  1812. }
  1813. ],
  1814. "time": "2026-01-01T13:05:00+00:00"
  1815. },
  1816. {
  1817. "name": "mtdowling/jmespath.php",
  1818. "version": "2.6.1",
  1819. "source": {
  1820. "type": "git",
  1821. "url": "https://github.com/jmespath/jmespath.php.git",
  1822. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1823. },
  1824. "dist": {
  1825. "type": "zip",
  1826. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1827. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1828. "shasum": ""
  1829. },
  1830. "require": {
  1831. "php": "^5.4 || ^7.0 || ^8.0",
  1832. "symfony/polyfill-mbstring": "^1.17"
  1833. },
  1834. "require-dev": {
  1835. "composer/xdebug-handler": "^1.4 || ^2.0",
  1836. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1837. },
  1838. "bin": [
  1839. "bin/jp.php"
  1840. ],
  1841. "type": "library",
  1842. "extra": {
  1843. "branch-alias": {
  1844. "dev-master": "2.6-dev"
  1845. }
  1846. },
  1847. "autoload": {
  1848. "files": [
  1849. "src/JmesPath.php"
  1850. ],
  1851. "psr-4": {
  1852. "JmesPath\\": "src/"
  1853. }
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "MIT"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "Michael Dowling",
  1862. "email": "mtdowling@gmail.com",
  1863. "homepage": "https://github.com/mtdowling"
  1864. }
  1865. ],
  1866. "description": "Declaratively specify how to extract elements from a JSON document",
  1867. "keywords": [
  1868. "json",
  1869. "jsonpath"
  1870. ],
  1871. "time": "2021-06-14T00:11:39+00:00"
  1872. },
  1873. {
  1874. "name": "myclabs/php-enum",
  1875. "version": "1.7.7",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/myclabs/php-enum.git",
  1879. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  1884. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "ext-json": "*",
  1889. "php": ">=7.1"
  1890. },
  1891. "require-dev": {
  1892. "phpunit/phpunit": "^7",
  1893. "squizlabs/php_codesniffer": "1.*",
  1894. "vimeo/psalm": "^3.8"
  1895. },
  1896. "type": "library",
  1897. "autoload": {
  1898. "psr-4": {
  1899. "MyCLabs\\Enum\\": "src/"
  1900. }
  1901. },
  1902. "notification-url": "https://packagist.org/downloads/",
  1903. "license": [
  1904. "MIT"
  1905. ],
  1906. "authors": [
  1907. {
  1908. "name": "PHP Enum contributors",
  1909. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1910. }
  1911. ],
  1912. "description": "PHP Enum implementation",
  1913. "homepage": "http://github.com/myclabs/php-enum",
  1914. "keywords": [
  1915. "enum"
  1916. ],
  1917. "time": "2020-11-14T18:14:52+00:00"
  1918. },
  1919. {
  1920. "name": "nesbot/carbon",
  1921. "version": "2.68.1",
  1922. "source": {
  1923. "type": "git",
  1924. "url": "https://github.com/briannesbitt/Carbon.git",
  1925. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
  1926. },
  1927. "dist": {
  1928. "type": "zip",
  1929. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  1930. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  1931. "shasum": ""
  1932. },
  1933. "require": {
  1934. "ext-json": "*",
  1935. "php": "^7.1.8 || ^8.0",
  1936. "symfony/polyfill-mbstring": "^1.0",
  1937. "symfony/polyfill-php80": "^1.16",
  1938. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1939. },
  1940. "require-dev": {
  1941. "doctrine/dbal": "^2.0 || ^3.1.4",
  1942. "doctrine/orm": "^2.7",
  1943. "friendsofphp/php-cs-fixer": "^3.0",
  1944. "kylekatarnls/multi-tester": "^2.0",
  1945. "ondrejmirtes/better-reflection": "*",
  1946. "phpmd/phpmd": "^2.9",
  1947. "phpstan/extension-installer": "^1.0",
  1948. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1949. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1950. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1951. "squizlabs/php_codesniffer": "^3.4"
  1952. },
  1953. "bin": [
  1954. "bin/carbon"
  1955. ],
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-3.x": "3.x-dev",
  1960. "dev-master": "2.x-dev"
  1961. },
  1962. "laravel": {
  1963. "providers": [
  1964. "Carbon\\Laravel\\ServiceProvider"
  1965. ]
  1966. },
  1967. "phpstan": {
  1968. "includes": [
  1969. "extension.neon"
  1970. ]
  1971. }
  1972. },
  1973. "autoload": {
  1974. "psr-4": {
  1975. "Carbon\\": "src/Carbon/"
  1976. }
  1977. },
  1978. "notification-url": "https://packagist.org/downloads/",
  1979. "license": [
  1980. "MIT"
  1981. ],
  1982. "authors": [
  1983. {
  1984. "name": "Brian Nesbitt",
  1985. "email": "brian@nesbot.com",
  1986. "homepage": "https://markido.com"
  1987. },
  1988. {
  1989. "name": "kylekatarnls",
  1990. "homepage": "https://github.com/kylekatarnls"
  1991. }
  1992. ],
  1993. "description": "An API extension for DateTime that supports 281 different languages.",
  1994. "homepage": "https://carbon.nesbot.com",
  1995. "keywords": [
  1996. "date",
  1997. "datetime",
  1998. "time"
  1999. ],
  2000. "time": "2023-06-20T18:29:04+00:00"
  2001. },
  2002. {
  2003. "name": "overtrue/flysystem-cos",
  2004. "version": "2.1.2",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/overtrue/flysystem-cos.git",
  2008. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/overtrue/flysystem-cos/zipball/f6985f38f3c76a9be962f404f127b7222a9b5fff",
  2013. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "guzzlehttp/guzzle": "^6.3|^7.0",
  2018. "league/flysystem": "^1.0",
  2019. "php": ">=7.0",
  2020. "qcloud/cos-sdk-v5": "^2.0.0"
  2021. },
  2022. "require-dev": {
  2023. "mockery/mockery": "~1.0",
  2024. "php": ">=7.1",
  2025. "phpunit/phpunit": "^8.0"
  2026. },
  2027. "type": "library",
  2028. "autoload": {
  2029. "psr-4": {
  2030. "Overtrue\\Flysystem\\Cos\\": "src"
  2031. }
  2032. },
  2033. "notification-url": "https://packagist.org/downloads/",
  2034. "license": [
  2035. "MIT"
  2036. ],
  2037. "authors": [
  2038. {
  2039. "name": "overtrue",
  2040. "email": "i@overtrue.me"
  2041. }
  2042. ],
  2043. "description": "Flysystem adapter for the QCloud COS storage.",
  2044. "time": "2020-10-22T10:28:58+00:00"
  2045. },
  2046. {
  2047. "name": "overtrue/pinyin",
  2048. "version": "4.1.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/overtrue/pinyin.git",
  2052. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  2057. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "php": ">=7.1"
  2062. },
  2063. "require-dev": {
  2064. "brainmaestro/composer-git-hooks": "^2.7",
  2065. "friendsofphp/php-cs-fixer": "^2.16",
  2066. "phpunit/phpunit": "~8.0"
  2067. },
  2068. "type": "library",
  2069. "extra": {
  2070. "hooks": {
  2071. "pre-commit": [
  2072. "composer test",
  2073. "composer fix-style"
  2074. ],
  2075. "pre-push": [
  2076. "composer test",
  2077. "composer check-style"
  2078. ]
  2079. }
  2080. },
  2081. "autoload": {
  2082. "files": [
  2083. "src/const.php"
  2084. ],
  2085. "psr-4": {
  2086. "Overtrue\\Pinyin\\": "src/"
  2087. }
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "MIT"
  2092. ],
  2093. "authors": [
  2094. {
  2095. "name": "overtrue",
  2096. "email": "anzhengchao@gmail.com",
  2097. "homepage": "http://github.com/overtrue"
  2098. }
  2099. ],
  2100. "description": "Chinese to pinyin translator.",
  2101. "homepage": "https://github.com/overtrue/pinyin",
  2102. "keywords": [
  2103. "Chinese",
  2104. "Pinyin",
  2105. "cn2pinyin"
  2106. ],
  2107. "time": "2023-04-27T10:17:12+00:00"
  2108. },
  2109. {
  2110. "name": "psr/cache",
  2111. "version": "1.0.1",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/php-fig/cache.git",
  2115. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2120. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2121. "shasum": ""
  2122. },
  2123. "require": {
  2124. "php": ">=5.3.0"
  2125. },
  2126. "type": "library",
  2127. "extra": {
  2128. "branch-alias": {
  2129. "dev-master": "1.0.x-dev"
  2130. }
  2131. },
  2132. "autoload": {
  2133. "psr-4": {
  2134. "Psr\\Cache\\": "src/"
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "PHP-FIG",
  2144. "homepage": "http://www.php-fig.org/"
  2145. }
  2146. ],
  2147. "description": "Common interface for caching libraries",
  2148. "keywords": [
  2149. "cache",
  2150. "psr",
  2151. "psr-6"
  2152. ],
  2153. "support": {
  2154. "source": "https://github.com/php-fig/cache/tree/master"
  2155. },
  2156. "time": "2016-08-06T20:24:11+00:00"
  2157. },
  2158. {
  2159. "name": "psr/container",
  2160. "version": "1.1.2",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/php-fig/container.git",
  2164. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2169. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2170. "shasum": ""
  2171. },
  2172. "require": {
  2173. "php": ">=7.4.0"
  2174. },
  2175. "type": "library",
  2176. "autoload": {
  2177. "psr-4": {
  2178. "Psr\\Container\\": "src/"
  2179. }
  2180. },
  2181. "notification-url": "https://packagist.org/downloads/",
  2182. "license": [
  2183. "MIT"
  2184. ],
  2185. "authors": [
  2186. {
  2187. "name": "PHP-FIG",
  2188. "homepage": "https://www.php-fig.org/"
  2189. }
  2190. ],
  2191. "description": "Common Container Interface (PHP FIG PSR-11)",
  2192. "homepage": "https://github.com/php-fig/container",
  2193. "keywords": [
  2194. "PSR-11",
  2195. "container",
  2196. "container-interface",
  2197. "container-interop",
  2198. "psr"
  2199. ],
  2200. "support": {
  2201. "issues": "https://github.com/php-fig/container/issues",
  2202. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2203. },
  2204. "time": "2021-11-05T16:50:12+00:00"
  2205. },
  2206. {
  2207. "name": "psr/http-message",
  2208. "version": "1.1",
  2209. "source": {
  2210. "type": "git",
  2211. "url": "https://github.com/php-fig/http-message.git",
  2212. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2213. },
  2214. "dist": {
  2215. "type": "zip",
  2216. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2217. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2218. "shasum": ""
  2219. },
  2220. "require": {
  2221. "php": "^7.2 || ^8.0"
  2222. },
  2223. "type": "library",
  2224. "extra": {
  2225. "branch-alias": {
  2226. "dev-master": "1.1.x-dev"
  2227. }
  2228. },
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Psr\\Http\\Message\\": "src/"
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "PHP-FIG",
  2241. "homepage": "http://www.php-fig.org/"
  2242. }
  2243. ],
  2244. "description": "Common interface for HTTP messages",
  2245. "homepage": "https://github.com/php-fig/http-message",
  2246. "keywords": [
  2247. "http",
  2248. "http-message",
  2249. "psr",
  2250. "psr-7",
  2251. "request",
  2252. "response"
  2253. ],
  2254. "support": {
  2255. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2256. },
  2257. "time": "2023-04-04T09:50:52+00:00"
  2258. },
  2259. {
  2260. "name": "psr/log",
  2261. "version": "1.1.4",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/php-fig/log.git",
  2265. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2270. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": ">=5.3.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "1.1.x-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Psr\\Log\\": "Psr/Log/"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "PHP-FIG",
  2294. "homepage": "https://www.php-fig.org/"
  2295. }
  2296. ],
  2297. "description": "Common interface for logging libraries",
  2298. "homepage": "https://github.com/php-fig/log",
  2299. "keywords": [
  2300. "log",
  2301. "psr",
  2302. "psr-3"
  2303. ],
  2304. "support": {
  2305. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2306. },
  2307. "time": "2021-05-03T11:20:27+00:00"
  2308. },
  2309. {
  2310. "name": "psr/simple-cache",
  2311. "version": "1.0.1",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/php-fig/simple-cache.git",
  2315. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2320. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "php": ">=5.3.0"
  2325. },
  2326. "type": "library",
  2327. "extra": {
  2328. "branch-alias": {
  2329. "dev-master": "1.0.x-dev"
  2330. }
  2331. },
  2332. "autoload": {
  2333. "psr-4": {
  2334. "Psr\\SimpleCache\\": "src/"
  2335. }
  2336. },
  2337. "notification-url": "https://packagist.org/downloads/",
  2338. "license": [
  2339. "MIT"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "PHP-FIG",
  2344. "homepage": "http://www.php-fig.org/"
  2345. }
  2346. ],
  2347. "description": "Common interfaces for simple caching",
  2348. "keywords": [
  2349. "cache",
  2350. "caching",
  2351. "psr",
  2352. "psr-16",
  2353. "simple-cache"
  2354. ],
  2355. "support": {
  2356. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2357. },
  2358. "time": "2017-10-23T01:57:42+00:00"
  2359. },
  2360. {
  2361. "name": "qcloud/cos-sdk-v5",
  2362. "version": "v2.6.3",
  2363. "source": {
  2364. "type": "git",
  2365. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2366. "reference": "dd1b7a096cbdcafc9de265cb2bb1b4222ac60136"
  2367. },
  2368. "dist": {
  2369. "type": "zip",
  2370. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/dd1b7a096cbdcafc9de265cb2bb1b4222ac60136",
  2371. "reference": "dd1b7a096cbdcafc9de265cb2bb1b4222ac60136",
  2372. "shasum": ""
  2373. },
  2374. "require": {
  2375. "ext-curl": "*",
  2376. "ext-json": "*",
  2377. "ext-mbstring": "*",
  2378. "ext-simplexml": "*",
  2379. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  2380. "guzzlehttp/guzzle-services": "^1.1",
  2381. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  2382. "php": ">=5.6"
  2383. },
  2384. "type": "library",
  2385. "extra": {
  2386. "branch-alias": {
  2387. "dev-master": "2.4-dev"
  2388. }
  2389. },
  2390. "autoload": {
  2391. "files": [
  2392. "src/Common.php"
  2393. ],
  2394. "psr-4": {
  2395. "Qcloud\\Cos\\": "src/"
  2396. }
  2397. },
  2398. "notification-url": "https://packagist.org/downloads/",
  2399. "license": [
  2400. "MIT"
  2401. ],
  2402. "authors": [
  2403. {
  2404. "name": "yaozongyou",
  2405. "email": "yaozongyou@vip.qq.com"
  2406. },
  2407. {
  2408. "name": "lewzylu",
  2409. "email": "327874225@qq.com"
  2410. },
  2411. {
  2412. "name": "tuunalai",
  2413. "email": "550566181@qq.com"
  2414. }
  2415. ],
  2416. "description": "PHP SDK for QCloud COS",
  2417. "keywords": [
  2418. "cos",
  2419. "php",
  2420. "qcloud"
  2421. ],
  2422. "time": "2023-06-14T03:18:14+00:00"
  2423. },
  2424. {
  2425. "name": "qcloudsms/qcloudsms_php",
  2426. "version": "v0.1.4",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/qcloudsms/qcloudsms_php.git",
  2430. "reference": "48822045772d343b93c3d505d8a187cd51153c5a"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://mirrors.huaweicloud.com/repository/php/qcloudsms/qcloudsms_php/v0.1.4/qcloudsms-qcloudsms_php-v0.1.4.zip",
  2435. "reference": "48822045772d343b93c3d505d8a187cd51153c5a",
  2436. "shasum": ""
  2437. },
  2438. "require-dev": {
  2439. "sami/sami": "dev-master"
  2440. },
  2441. "type": "library",
  2442. "autoload": {
  2443. "psr-4": {
  2444. "Qcloud\\Sms\\": "src/"
  2445. }
  2446. },
  2447. "license": [
  2448. "MIT"
  2449. ],
  2450. "description": "qcloud sms php sdk",
  2451. "keywords": [
  2452. "php",
  2453. "qcloud",
  2454. "sdk",
  2455. "sms"
  2456. ],
  2457. "time": "2018-09-19T07:19:17+00:00"
  2458. },
  2459. {
  2460. "name": "qeq66/jwt",
  2461. "version": "3.3.5",
  2462. "source": {
  2463. "type": "git",
  2464. "url": "https://github.com/qeq66/jwt.git",
  2465. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0"
  2466. },
  2467. "dist": {
  2468. "type": "zip",
  2469. "url": "https://mirrors.huaweicloud.com/repository/php/qeq66/jwt/3.3.5/qeq66-jwt-3.3.5.zip",
  2470. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0",
  2471. "shasum": ""
  2472. },
  2473. "require": {
  2474. "ext-mbstring": "*",
  2475. "ext-openssl": "*",
  2476. "php": ">=5.6"
  2477. },
  2478. "require-dev": {
  2479. "mikey179/vfsstream": "~1.5",
  2480. "phpmd/phpmd": "~2.2",
  2481. "phpunit/php-invoker": "~1.1",
  2482. "phpunit/phpunit": "^5.7 || ^7.3",
  2483. "squizlabs/php_codesniffer": "~2.3"
  2484. },
  2485. "type": "library",
  2486. "extra": {
  2487. "branch-alias": {
  2488. "dev-master": "3.1-dev"
  2489. }
  2490. },
  2491. "autoload": {
  2492. "psr-4": {
  2493. "Lcobucci\\JWT\\": "src"
  2494. }
  2495. },
  2496. "license": [
  2497. "BSD-3-Clause"
  2498. ],
  2499. "authors": [
  2500. {
  2501. "name": "Luís Otávio Cobucci Oblonczyk",
  2502. "email": "lcobucci@gmail.com",
  2503. "role": "Developer"
  2504. }
  2505. ],
  2506. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2507. "keywords": [
  2508. "JWS",
  2509. "jwt"
  2510. ],
  2511. "time": "2022-07-11T08:31:22+00:00"
  2512. },
  2513. {
  2514. "name": "qiniu/php-sdk",
  2515. "version": "v7.9.0",
  2516. "source": {
  2517. "type": "git",
  2518. "url": "https://github.com/qiniu/php-sdk.git",
  2519. "reference": "3c0ebeee6a7439a0d2874f24b56dfe43545a1d2e"
  2520. },
  2521. "dist": {
  2522. "type": "zip",
  2523. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/3c0ebeee6a7439a0d2874f24b56dfe43545a1d2e",
  2524. "reference": "3c0ebeee6a7439a0d2874f24b56dfe43545a1d2e",
  2525. "shasum": ""
  2526. },
  2527. "require": {
  2528. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  2529. "php": ">=5.3.3"
  2530. },
  2531. "require-dev": {
  2532. "paragonie/random_compat": ">=2",
  2533. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  2534. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  2535. },
  2536. "type": "library",
  2537. "autoload": {
  2538. "files": [
  2539. "src/Qiniu/functions.php"
  2540. ],
  2541. "psr-4": {
  2542. "Qiniu\\": "src/Qiniu"
  2543. }
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Qiniu",
  2552. "email": "sdk@qiniu.com",
  2553. "homepage": "http://www.qiniu.com"
  2554. }
  2555. ],
  2556. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2557. "homepage": "http://developer.qiniu.com/",
  2558. "keywords": [
  2559. "cloud",
  2560. "qiniu",
  2561. "sdk",
  2562. "storage"
  2563. ],
  2564. "time": "2023-05-06T04:36:16+00:00"
  2565. },
  2566. {
  2567. "name": "ralouphie/getallheaders",
  2568. "version": "3.0.3",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/ralouphie/getallheaders.git",
  2572. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2577. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "php": ">=5.6"
  2582. },
  2583. "require-dev": {
  2584. "php-coveralls/php-coveralls": "^2.1",
  2585. "phpunit/phpunit": "^5 || ^6.5"
  2586. },
  2587. "type": "library",
  2588. "autoload": {
  2589. "files": [
  2590. "src/getallheaders.php"
  2591. ]
  2592. },
  2593. "notification-url": "https://packagist.org/downloads/",
  2594. "license": [
  2595. "MIT"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "Ralph Khattar",
  2600. "email": "ralph.khattar@gmail.com"
  2601. }
  2602. ],
  2603. "description": "A polyfill for getallheaders.",
  2604. "support": {
  2605. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2606. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2607. },
  2608. "time": "2019-03-08T08:55:37+00:00"
  2609. },
  2610. {
  2611. "name": "rize/uri-template",
  2612. "version": "0.4.1",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/rize/UriTemplate.git",
  2616. "reference": "abb53c8b73a5b6c24e11f49036ab842f560cad33"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/abb53c8b73a5b6c24e11f49036ab842f560cad33",
  2621. "reference": "abb53c8b73a5b6c24e11f49036ab842f560cad33",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "php": ">=8.1"
  2626. },
  2627. "require-dev": {
  2628. "friendsofphp/php-cs-fixer": "^3.63",
  2629. "phpstan/phpstan": "^1.12",
  2630. "phpunit/phpunit": "~10.0"
  2631. },
  2632. "type": "library",
  2633. "autoload": {
  2634. "psr-4": {
  2635. "Rize\\": "src/Rize"
  2636. }
  2637. },
  2638. "notification-url": "https://packagist.org/downloads/",
  2639. "license": [
  2640. "MIT"
  2641. ],
  2642. "authors": [
  2643. {
  2644. "name": "Marut K",
  2645. "homepage": "http://twitter.com/rezigned"
  2646. }
  2647. ],
  2648. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  2649. "keywords": [
  2650. "RFC 6570",
  2651. "template",
  2652. "uri"
  2653. ],
  2654. "support": {
  2655. "issues": "https://github.com/rize/UriTemplate/issues",
  2656. "source": "https://github.com/rize/UriTemplate/tree/0.4.1"
  2657. },
  2658. "funding": [
  2659. {
  2660. "url": "https://www.paypal.me/rezigned",
  2661. "type": "custom"
  2662. },
  2663. {
  2664. "url": "https://github.com/rezigned",
  2665. "type": "github"
  2666. },
  2667. {
  2668. "url": "https://opencollective.com/rize-uri-template",
  2669. "type": "open_collective"
  2670. }
  2671. ],
  2672. "time": "2025-12-02T15:19:04+00:00"
  2673. },
  2674. {
  2675. "name": "singka/singka-sms",
  2676. "version": "v1.6",
  2677. "source": {
  2678. "type": "git",
  2679. "url": "https://github.com/SingKa-TECH/singka-sms.git",
  2680. "reference": "8db3543dfb7f28851b94de99dfe9b762f0b9b6a4"
  2681. },
  2682. "dist": {
  2683. "type": "zip",
  2684. "url": "https://mirrors.huaweicloud.com/repository/php/singka/singka-sms/v1.6/singka-singka-sms-v1.6.zip",
  2685. "reference": "8db3543dfb7f28851b94de99dfe9b762f0b9b6a4",
  2686. "shasum": ""
  2687. },
  2688. "require": {
  2689. "alibabacloud/client": "^1.5",
  2690. "guzzlehttp/guzzle": "~6.0@dev",
  2691. "php": ">=7.0",
  2692. "qcloudsms/qcloudsms_php": "0.1.*",
  2693. "qiniu/php-sdk": "^7.2",
  2694. "singka/ucloud-sms": "^1.8"
  2695. },
  2696. "type": "library",
  2697. "extra": {
  2698. "think": {
  2699. "config": {
  2700. "sms": "config/config.php"
  2701. }
  2702. }
  2703. },
  2704. "autoload": {
  2705. "psr-4": {
  2706. "SingKa\\Sms\\": "src/"
  2707. }
  2708. },
  2709. "license": [
  2710. "MIT"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "宁波晟嘉网络科技有限公司 夏慧新",
  2715. "email": "shycomet@singka.email"
  2716. }
  2717. ],
  2718. "description": "适用于ThinkPHP6.0的各种短信接口集成服务,本项目集成了各大云服务厂商的短信业务平台,支持ThinkPHP5.0、ThinkPHP5.1和ThinkPHP6.0,由宁波晟嘉网络科技有限公司维护,目前支持阿里云、腾讯云、七牛云、又拍云、Ucloud和华为云。",
  2719. "time": "2020-07-02T05:07:00+00:00"
  2720. },
  2721. {
  2722. "name": "singka/ucloud-sms",
  2723. "version": "v1.8",
  2724. "source": {
  2725. "type": "git",
  2726. "url": "https://github.com/SingKa-TECH/ucloud-sms.git",
  2727. "reference": "7c4ae42e9c7b26b4db7e6340ff03f68b15e3b0d8"
  2728. },
  2729. "dist": {
  2730. "type": "zip",
  2731. "url": "https://mirrors.huaweicloud.com/repository/php/singka/ucloud-sms/v1.8/singka-ucloud-sms-v1.8.zip",
  2732. "reference": "7c4ae42e9c7b26b4db7e6340ff03f68b15e3b0d8",
  2733. "shasum": ""
  2734. },
  2735. "require": {
  2736. "php": ">=5.6"
  2737. },
  2738. "type": "library",
  2739. "extra": {
  2740. "think": {
  2741. "config": {
  2742. "usms": "config/config.php"
  2743. }
  2744. }
  2745. },
  2746. "autoload": {
  2747. "psr-4": {
  2748. "Singka\\UcloudSms\\": "src/"
  2749. }
  2750. },
  2751. "license": [
  2752. "MIT"
  2753. ],
  2754. "authors": [
  2755. {
  2756. "name": "宁波晟嘉网络科技有限公司 夏慧新",
  2757. "email": "shycomet@singka.email"
  2758. }
  2759. ],
  2760. "description": "ThinkPHP系列Ucloud的短信接口,支持ThinkPHP6、ThinkPHP5.1和ThinkPHP5.0",
  2761. "time": "2020-03-24T16:24:09+00:00"
  2762. },
  2763. {
  2764. "name": "swiftmailer/swiftmailer",
  2765. "version": "v6.3.0",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2769. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2774. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "egulias/email-validator": "^2.0|^3.1",
  2779. "php": ">=7.0.0",
  2780. "symfony/polyfill-iconv": "^1.0",
  2781. "symfony/polyfill-intl-idn": "^1.10",
  2782. "symfony/polyfill-mbstring": "^1.0"
  2783. },
  2784. "require-dev": {
  2785. "mockery/mockery": "^1.0",
  2786. "symfony/phpunit-bridge": "^4.4|^5.4"
  2787. },
  2788. "suggest": {
  2789. "ext-intl": "Needed to support internationalized email addresses"
  2790. },
  2791. "type": "library",
  2792. "extra": {
  2793. "branch-alias": {
  2794. "dev-master": "6.2-dev"
  2795. }
  2796. },
  2797. "autoload": {
  2798. "files": [
  2799. "lib/swift_required.php"
  2800. ]
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "authors": [
  2807. {
  2808. "name": "Chris Corbyn"
  2809. },
  2810. {
  2811. "name": "Fabien Potencier",
  2812. "email": "fabien@symfony.com"
  2813. }
  2814. ],
  2815. "description": "Swiftmailer, free feature-rich PHP mailer",
  2816. "homepage": "https://swiftmailer.symfony.com",
  2817. "keywords": [
  2818. "email",
  2819. "mail",
  2820. "mailer"
  2821. ],
  2822. "abandoned": "symfony/mailer",
  2823. "time": "2021-10-18T15:26:12+00:00"
  2824. },
  2825. {
  2826. "name": "symfony/polyfill-iconv",
  2827. "version": "v1.27.0",
  2828. "source": {
  2829. "type": "git",
  2830. "url": "https://github.com/symfony/polyfill-iconv.git",
  2831. "reference": "927013f3aac555983a5059aada98e1907d842695"
  2832. },
  2833. "dist": {
  2834. "type": "zip",
  2835. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  2836. "reference": "927013f3aac555983a5059aada98e1907d842695",
  2837. "shasum": ""
  2838. },
  2839. "require": {
  2840. "php": ">=7.1"
  2841. },
  2842. "provide": {
  2843. "ext-iconv": "*"
  2844. },
  2845. "suggest": {
  2846. "ext-iconv": "For best performance"
  2847. },
  2848. "type": "library",
  2849. "extra": {
  2850. "branch-alias": {
  2851. "dev-main": "1.27-dev"
  2852. },
  2853. "thanks": {
  2854. "name": "symfony/polyfill",
  2855. "url": "https://github.com/symfony/polyfill"
  2856. }
  2857. },
  2858. "autoload": {
  2859. "files": [
  2860. "bootstrap.php"
  2861. ],
  2862. "psr-4": {
  2863. "Symfony\\Polyfill\\Iconv\\": ""
  2864. }
  2865. },
  2866. "notification-url": "https://packagist.org/downloads/",
  2867. "license": [
  2868. "MIT"
  2869. ],
  2870. "authors": [
  2871. {
  2872. "name": "Nicolas Grekas",
  2873. "email": "p@tchwork.com"
  2874. },
  2875. {
  2876. "name": "Symfony Community",
  2877. "homepage": "https://symfony.com/contributors"
  2878. }
  2879. ],
  2880. "description": "Symfony polyfill for the Iconv extension",
  2881. "homepage": "https://symfony.com",
  2882. "keywords": [
  2883. "compatibility",
  2884. "iconv",
  2885. "polyfill",
  2886. "portable",
  2887. "shim"
  2888. ],
  2889. "time": "2022-11-03T14:55:06+00:00"
  2890. },
  2891. {
  2892. "name": "symfony/polyfill-intl-idn",
  2893. "version": "v1.33.0",
  2894. "source": {
  2895. "type": "git",
  2896. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2897. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  2898. },
  2899. "dist": {
  2900. "type": "zip",
  2901. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  2902. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  2903. "shasum": ""
  2904. },
  2905. "require": {
  2906. "php": ">=7.2",
  2907. "symfony/polyfill-intl-normalizer": "^1.10"
  2908. },
  2909. "suggest": {
  2910. "ext-intl": "For best performance"
  2911. },
  2912. "type": "library",
  2913. "extra": {
  2914. "thanks": {
  2915. "url": "https://github.com/symfony/polyfill",
  2916. "name": "symfony/polyfill"
  2917. }
  2918. },
  2919. "autoload": {
  2920. "files": [
  2921. "bootstrap.php"
  2922. ],
  2923. "psr-4": {
  2924. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2925. }
  2926. },
  2927. "notification-url": "https://packagist.org/downloads/",
  2928. "license": [
  2929. "MIT"
  2930. ],
  2931. "authors": [
  2932. {
  2933. "name": "Laurent Bassin",
  2934. "email": "laurent@bassin.info"
  2935. },
  2936. {
  2937. "name": "Trevor Rowbotham",
  2938. "email": "trevor.rowbotham@pm.me"
  2939. },
  2940. {
  2941. "name": "Symfony Community",
  2942. "homepage": "https://symfony.com/contributors"
  2943. }
  2944. ],
  2945. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2946. "homepage": "https://symfony.com",
  2947. "keywords": [
  2948. "compatibility",
  2949. "idn",
  2950. "intl",
  2951. "polyfill",
  2952. "portable",
  2953. "shim"
  2954. ],
  2955. "support": {
  2956. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  2957. },
  2958. "funding": [
  2959. {
  2960. "url": "https://symfony.com/sponsor",
  2961. "type": "custom"
  2962. },
  2963. {
  2964. "url": "https://github.com/fabpot",
  2965. "type": "github"
  2966. },
  2967. {
  2968. "url": "https://github.com/nicolas-grekas",
  2969. "type": "github"
  2970. },
  2971. {
  2972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2973. "type": "tidelift"
  2974. }
  2975. ],
  2976. "time": "2024-09-10T14:38:51+00:00"
  2977. },
  2978. {
  2979. "name": "symfony/polyfill-intl-normalizer",
  2980. "version": "v1.33.0",
  2981. "source": {
  2982. "type": "git",
  2983. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2984. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  2985. },
  2986. "dist": {
  2987. "type": "zip",
  2988. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  2989. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  2990. "shasum": ""
  2991. },
  2992. "require": {
  2993. "php": ">=7.2"
  2994. },
  2995. "suggest": {
  2996. "ext-intl": "For best performance"
  2997. },
  2998. "type": "library",
  2999. "extra": {
  3000. "thanks": {
  3001. "url": "https://github.com/symfony/polyfill",
  3002. "name": "symfony/polyfill"
  3003. }
  3004. },
  3005. "autoload": {
  3006. "files": [
  3007. "bootstrap.php"
  3008. ],
  3009. "psr-4": {
  3010. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3011. },
  3012. "classmap": [
  3013. "Resources/stubs"
  3014. ]
  3015. },
  3016. "notification-url": "https://packagist.org/downloads/",
  3017. "license": [
  3018. "MIT"
  3019. ],
  3020. "authors": [
  3021. {
  3022. "name": "Nicolas Grekas",
  3023. "email": "p@tchwork.com"
  3024. },
  3025. {
  3026. "name": "Symfony Community",
  3027. "homepage": "https://symfony.com/contributors"
  3028. }
  3029. ],
  3030. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3031. "homepage": "https://symfony.com",
  3032. "keywords": [
  3033. "compatibility",
  3034. "intl",
  3035. "normalizer",
  3036. "polyfill",
  3037. "portable",
  3038. "shim"
  3039. ],
  3040. "support": {
  3041. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  3042. },
  3043. "funding": [
  3044. {
  3045. "url": "https://symfony.com/sponsor",
  3046. "type": "custom"
  3047. },
  3048. {
  3049. "url": "https://github.com/fabpot",
  3050. "type": "github"
  3051. },
  3052. {
  3053. "url": "https://github.com/nicolas-grekas",
  3054. "type": "github"
  3055. },
  3056. {
  3057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3058. "type": "tidelift"
  3059. }
  3060. ],
  3061. "time": "2024-09-09T11:45:10+00:00"
  3062. },
  3063. {
  3064. "name": "symfony/polyfill-mbstring",
  3065. "version": "v1.33.0",
  3066. "source": {
  3067. "type": "git",
  3068. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3069. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  3070. },
  3071. "dist": {
  3072. "type": "zip",
  3073. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3074. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3075. "shasum": ""
  3076. },
  3077. "require": {
  3078. "ext-iconv": "*",
  3079. "php": ">=7.2"
  3080. },
  3081. "provide": {
  3082. "ext-mbstring": "*"
  3083. },
  3084. "suggest": {
  3085. "ext-mbstring": "For best performance"
  3086. },
  3087. "type": "library",
  3088. "extra": {
  3089. "thanks": {
  3090. "url": "https://github.com/symfony/polyfill",
  3091. "name": "symfony/polyfill"
  3092. }
  3093. },
  3094. "autoload": {
  3095. "files": [
  3096. "bootstrap.php"
  3097. ],
  3098. "psr-4": {
  3099. "Symfony\\Polyfill\\Mbstring\\": ""
  3100. }
  3101. },
  3102. "notification-url": "https://packagist.org/downloads/",
  3103. "license": [
  3104. "MIT"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Nicolas Grekas",
  3109. "email": "p@tchwork.com"
  3110. },
  3111. {
  3112. "name": "Symfony Community",
  3113. "homepage": "https://symfony.com/contributors"
  3114. }
  3115. ],
  3116. "description": "Symfony polyfill for the Mbstring extension",
  3117. "homepage": "https://symfony.com",
  3118. "keywords": [
  3119. "compatibility",
  3120. "mbstring",
  3121. "polyfill",
  3122. "portable",
  3123. "shim"
  3124. ],
  3125. "support": {
  3126. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  3127. },
  3128. "funding": [
  3129. {
  3130. "url": "https://symfony.com/sponsor",
  3131. "type": "custom"
  3132. },
  3133. {
  3134. "url": "https://github.com/fabpot",
  3135. "type": "github"
  3136. },
  3137. {
  3138. "url": "https://github.com/nicolas-grekas",
  3139. "type": "github"
  3140. },
  3141. {
  3142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3143. "type": "tidelift"
  3144. }
  3145. ],
  3146. "time": "2024-12-23T08:48:59+00:00"
  3147. },
  3148. {
  3149. "name": "symfony/polyfill-php80",
  3150. "version": "v1.33.0",
  3151. "source": {
  3152. "type": "git",
  3153. "url": "https://github.com/symfony/polyfill-php80.git",
  3154. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  3155. },
  3156. "dist": {
  3157. "type": "zip",
  3158. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3159. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3160. "shasum": ""
  3161. },
  3162. "require": {
  3163. "php": ">=7.2"
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "thanks": {
  3168. "url": "https://github.com/symfony/polyfill",
  3169. "name": "symfony/polyfill"
  3170. }
  3171. },
  3172. "autoload": {
  3173. "files": [
  3174. "bootstrap.php"
  3175. ],
  3176. "psr-4": {
  3177. "Symfony\\Polyfill\\Php80\\": ""
  3178. },
  3179. "classmap": [
  3180. "Resources/stubs"
  3181. ]
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "MIT"
  3186. ],
  3187. "authors": [
  3188. {
  3189. "name": "Ion Bazan",
  3190. "email": "ion.bazan@gmail.com"
  3191. },
  3192. {
  3193. "name": "Nicolas Grekas",
  3194. "email": "p@tchwork.com"
  3195. },
  3196. {
  3197. "name": "Symfony Community",
  3198. "homepage": "https://symfony.com/contributors"
  3199. }
  3200. ],
  3201. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3202. "homepage": "https://symfony.com",
  3203. "keywords": [
  3204. "compatibility",
  3205. "polyfill",
  3206. "portable",
  3207. "shim"
  3208. ],
  3209. "support": {
  3210. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  3211. },
  3212. "funding": [
  3213. {
  3214. "url": "https://symfony.com/sponsor",
  3215. "type": "custom"
  3216. },
  3217. {
  3218. "url": "https://github.com/fabpot",
  3219. "type": "github"
  3220. },
  3221. {
  3222. "url": "https://github.com/nicolas-grekas",
  3223. "type": "github"
  3224. },
  3225. {
  3226. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3227. "type": "tidelift"
  3228. }
  3229. ],
  3230. "time": "2025-01-02T08:10:11+00:00"
  3231. },
  3232. {
  3233. "name": "symfony/process",
  3234. "version": "v4.4.44",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/symfony/process.git",
  3238. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3243. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "php": ">=7.1.3",
  3248. "symfony/polyfill-php80": "^1.16"
  3249. },
  3250. "type": "library",
  3251. "autoload": {
  3252. "psr-4": {
  3253. "Symfony\\Component\\Process\\": ""
  3254. },
  3255. "exclude-from-classmap": [
  3256. "/Tests/"
  3257. ]
  3258. },
  3259. "notification-url": "https://packagist.org/downloads/",
  3260. "license": [
  3261. "MIT"
  3262. ],
  3263. "authors": [
  3264. {
  3265. "name": "Fabien Potencier",
  3266. "email": "fabien@symfony.com"
  3267. },
  3268. {
  3269. "name": "Symfony Community",
  3270. "homepage": "https://symfony.com/contributors"
  3271. }
  3272. ],
  3273. "description": "Executes commands in sub-processes",
  3274. "homepage": "https://symfony.com",
  3275. "time": "2022-06-27T13:16:42+00:00"
  3276. },
  3277. {
  3278. "name": "symfony/translation",
  3279. "version": "v4.4.47",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/symfony/translation.git",
  3283. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3288. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3289. "shasum": ""
  3290. },
  3291. "require": {
  3292. "php": ">=7.1.3",
  3293. "symfony/polyfill-mbstring": "~1.0",
  3294. "symfony/polyfill-php80": "^1.16",
  3295. "symfony/translation-contracts": "^1.1.6|^2"
  3296. },
  3297. "conflict": {
  3298. "symfony/config": "<3.4",
  3299. "symfony/dependency-injection": "<3.4",
  3300. "symfony/http-kernel": "<4.4",
  3301. "symfony/yaml": "<3.4"
  3302. },
  3303. "provide": {
  3304. "symfony/translation-implementation": "1.0|2.0"
  3305. },
  3306. "require-dev": {
  3307. "psr/log": "^1|^2|^3",
  3308. "symfony/config": "^3.4|^4.0|^5.0",
  3309. "symfony/console": "^3.4|^4.0|^5.0",
  3310. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3311. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  3312. "symfony/http-kernel": "^4.4",
  3313. "symfony/intl": "^3.4|^4.0|^5.0",
  3314. "symfony/service-contracts": "^1.1.2|^2",
  3315. "symfony/yaml": "^3.4|^4.0|^5.0"
  3316. },
  3317. "suggest": {
  3318. "psr/log-implementation": "To use logging capability in translator",
  3319. "symfony/config": "",
  3320. "symfony/yaml": ""
  3321. },
  3322. "type": "library",
  3323. "autoload": {
  3324. "psr-4": {
  3325. "Symfony\\Component\\Translation\\": ""
  3326. },
  3327. "exclude-from-classmap": [
  3328. "/Tests/"
  3329. ]
  3330. },
  3331. "notification-url": "https://packagist.org/downloads/",
  3332. "license": [
  3333. "MIT"
  3334. ],
  3335. "authors": [
  3336. {
  3337. "name": "Fabien Potencier",
  3338. "email": "fabien@symfony.com"
  3339. },
  3340. {
  3341. "name": "Symfony Community",
  3342. "homepage": "https://symfony.com/contributors"
  3343. }
  3344. ],
  3345. "description": "Provides tools to internationalize your application",
  3346. "homepage": "https://symfony.com",
  3347. "time": "2022-10-03T15:15:11+00:00"
  3348. },
  3349. {
  3350. "name": "symfony/translation-contracts",
  3351. "version": "v1.1.13",
  3352. "source": {
  3353. "type": "git",
  3354. "url": "https://github.com/symfony/translation-contracts.git",
  3355. "reference": "7462e5c4cb8b9cd152f992e8f10963b5641921f6"
  3356. },
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/7462e5c4cb8b9cd152f992e8f10963b5641921f6",
  3360. "reference": "7462e5c4cb8b9cd152f992e8f10963b5641921f6",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=7.1.3"
  3365. },
  3366. "suggest": {
  3367. "symfony/translation-implementation": ""
  3368. },
  3369. "type": "library",
  3370. "extra": {
  3371. "branch-alias": {
  3372. "dev-main": "1.1-dev"
  3373. },
  3374. "thanks": {
  3375. "name": "symfony/contracts",
  3376. "url": "https://github.com/symfony/contracts"
  3377. }
  3378. },
  3379. "autoload": {
  3380. "psr-4": {
  3381. "Symfony\\Contracts\\Translation\\": ""
  3382. }
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "MIT"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Nicolas Grekas",
  3391. "email": "p@tchwork.com"
  3392. },
  3393. {
  3394. "name": "Symfony Community",
  3395. "homepage": "https://symfony.com/contributors"
  3396. }
  3397. ],
  3398. "description": "Generic abstractions related to translation",
  3399. "homepage": "https://symfony.com",
  3400. "keywords": [
  3401. "abstractions",
  3402. "contracts",
  3403. "decoupling",
  3404. "interfaces",
  3405. "interoperability",
  3406. "standards"
  3407. ],
  3408. "time": "2022-06-27T13:16:42+00:00"
  3409. },
  3410. {
  3411. "name": "tcwei/imglazyload",
  3412. "version": "v1.3",
  3413. "source": {
  3414. "type": "git",
  3415. "url": "https://github.com/ITzhiwei/ArticleImgLazyload.git",
  3416. "reference": "f7634e446de972a26aac6973141c39ca2ea62b89"
  3417. },
  3418. "dist": {
  3419. "type": "zip",
  3420. "url": "https://api.github.com/repos/ITzhiwei/ArticleImgLazyload/zipball/f7634e446de972a26aac6973141c39ca2ea62b89",
  3421. "reference": "f7634e446de972a26aac6973141c39ca2ea62b89",
  3422. "shasum": ""
  3423. },
  3424. "type": "library",
  3425. "autoload": {
  3426. "psr-4": {
  3427. "tcwei\\smallTools\\": "src/"
  3428. }
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "zhiwei",
  3437. "email": "2394599321@qq.com"
  3438. }
  3439. ],
  3440. "description": "文章图片懒加载,当文章中存在大量图片时,可使用该库进行图片懒加载,看不到的图片不进行加载,节省带宽",
  3441. "time": "2020-06-25T14:08:30+00:00"
  3442. },
  3443. {
  3444. "name": "tcwei/imgsrc",
  3445. "version": "v2.02",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/ITzhiwei/getImgSrc.git",
  3449. "reference": "832342b664fc7d84e0c6253ab90407f2b565887e"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/ITzhiwei/getImgSrc/zipball/832342b664fc7d84e0c6253ab90407f2b565887e",
  3454. "reference": "832342b664fc7d84e0c6253ab90407f2b565887e",
  3455. "shasum": ""
  3456. },
  3457. "type": "library",
  3458. "autoload": {
  3459. "psr-4": {
  3460. "tcwei\\smallTools\\": "imgSrc/"
  3461. }
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "MIT"
  3466. ],
  3467. "authors": [
  3468. {
  3469. "name": "zhiwei",
  3470. "email": "2394599321@qq.com"
  3471. }
  3472. ],
  3473. "description": "高效率字符串模式(可比正则获取快3倍)从HTML或者文章内容等字符串中提取图片的src,可指定提取第几张图片、顺数第几或逆数第几、可指定黑名单等。页面下面有使用例子:",
  3474. "time": "2021-06-16T15:07:12+00:00"
  3475. },
  3476. {
  3477. "name": "thans/thinkphp-filesystem-cloud",
  3478. "version": "v1.0.2",
  3479. "source": {
  3480. "type": "git",
  3481. "url": "https://github.com/QThans/thinkphp-filesystem-cloud.git",
  3482. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2"
  3483. },
  3484. "dist": {
  3485. "type": "zip",
  3486. "url": "https://api.github.com/repos/QThans/thinkphp-filesystem-cloud/zipball/b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  3487. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  3488. "shasum": ""
  3489. },
  3490. "require": {
  3491. "liz/flysystem-qiniu": "^1.10",
  3492. "overtrue/flysystem-cos": "^2.0.0",
  3493. "php": ">=7.1.0",
  3494. "topthink/framework": "^6.0.0",
  3495. "xxtime/flysystem-aliyun-oss": "^1.4"
  3496. },
  3497. "type": "library",
  3498. "extra": {
  3499. "think": {
  3500. "services": [
  3501. "thans\\filesystem\\Service"
  3502. ]
  3503. }
  3504. },
  3505. "autoload": {
  3506. "psr-4": {
  3507. "thans\\filesystem\\": "src/"
  3508. }
  3509. },
  3510. "notification-url": "https://packagist.org/downloads/",
  3511. "license": [
  3512. "MIT"
  3513. ],
  3514. "authors": [
  3515. {
  3516. "name": "Thans",
  3517. "email": "360641274@qq.com"
  3518. }
  3519. ],
  3520. "description": "thinkphp6.0 filesystem,include Aliyun and Qiniu",
  3521. "time": "2019-11-29T00:57:33+00:00"
  3522. },
  3523. {
  3524. "name": "thans/tp-jwt-auth",
  3525. "version": "v1.3.1",
  3526. "source": {
  3527. "type": "git",
  3528. "url": "https://github.com/QThans/jwt-auth.git",
  3529. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba"
  3530. },
  3531. "dist": {
  3532. "type": "zip",
  3533. "url": "https://mirrors.huaweicloud.com/repository/php/thans/tp-jwt-auth/v1.3.1/thans-tp-jwt-auth-v1.3.1.zip",
  3534. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba",
  3535. "shasum": ""
  3536. },
  3537. "require": {
  3538. "php": "^7.0 || ^8.0",
  3539. "qeq66/jwt": "3.3.*",
  3540. "topthink/framework": "^5.1.10 || ^6.0.0"
  3541. },
  3542. "type": "library",
  3543. "extra": {
  3544. "think": {
  3545. "services": [
  3546. "thans\\jwt\\Service"
  3547. ],
  3548. "config": {
  3549. "jwt": "config/config.php"
  3550. }
  3551. }
  3552. },
  3553. "autoload": {
  3554. "files": [
  3555. "src/helper.php"
  3556. ],
  3557. "psr-4": {
  3558. "thans\\jwt\\": "src"
  3559. }
  3560. },
  3561. "license": [
  3562. "MIT"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Thans",
  3567. "email": "360641274@qq.com"
  3568. }
  3569. ],
  3570. "description": "thinkphp jwt auth composer",
  3571. "time": "2022-11-01T02:44:23+00:00"
  3572. },
  3573. {
  3574. "name": "topthink/framework",
  3575. "version": "v6.0.15",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://github.com/top-think/framework.git",
  3579. "reference": "0d248a0bf590a6ec5fd65de5e28448bcac0608f1"
  3580. },
  3581. "dist": {
  3582. "type": "zip",
  3583. "url": "https://api.github.com/repos/top-think/framework/zipball/0d248a0bf590a6ec5fd65de5e28448bcac0608f1",
  3584. "reference": "0d248a0bf590a6ec5fd65de5e28448bcac0608f1",
  3585. "shasum": ""
  3586. },
  3587. "require": {
  3588. "ext-json": "*",
  3589. "ext-mbstring": "*",
  3590. "league/flysystem": "^1.1.4",
  3591. "league/flysystem-cached-adapter": "^1.0",
  3592. "php": ">=7.2.5",
  3593. "psr/container": "~1.0",
  3594. "psr/http-message": "^1.0",
  3595. "psr/log": "~1.0",
  3596. "psr/simple-cache": "^1.0",
  3597. "topthink/think-helper": "^3.1.1",
  3598. "topthink/think-orm": "^2.0|^3.0"
  3599. },
  3600. "require-dev": {
  3601. "guzzlehttp/psr7": "^2.1.0",
  3602. "mikey179/vfsstream": "^1.6",
  3603. "mockery/mockery": "^1.2",
  3604. "phpunit/phpunit": "^7.0"
  3605. },
  3606. "type": "library",
  3607. "autoload": {
  3608. "files": [],
  3609. "psr-4": {
  3610. "think\\": "src/think/"
  3611. }
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "Apache-2.0"
  3616. ],
  3617. "authors": [
  3618. {
  3619. "name": "liu21st",
  3620. "email": "liu21st@gmail.com"
  3621. },
  3622. {
  3623. "name": "yunwuxin",
  3624. "email": "448901948@qq.com"
  3625. }
  3626. ],
  3627. "description": "The ThinkPHP Framework.",
  3628. "homepage": "http://thinkphp.cn/",
  3629. "keywords": [
  3630. "framework",
  3631. "orm",
  3632. "thinkphp"
  3633. ],
  3634. "support": {
  3635. "issues": "https://github.com/top-think/framework/issues",
  3636. "source": "https://github.com/top-think/framework/tree/v6.0.15"
  3637. },
  3638. "time": "2023-05-19T09:55:18+00:00"
  3639. },
  3640. {
  3641. "name": "topthink/think-api",
  3642. "version": "v1.0.31",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/top-think/think-api.git",
  3646. "reference": "5cf168dc93ec8e183c36a599357f67c07668f90c"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/top-think/think-api/zipball/5cf168dc93ec8e183c36a599357f67c07668f90c",
  3651. "reference": "5cf168dc93ec8e183c36a599357f67c07668f90c",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3656. "topthink/think-helper": "^1.0 || ^3.1"
  3657. },
  3658. "require-dev": {
  3659. "phpunit/phpunit": "^7.0"
  3660. },
  3661. "type": "library",
  3662. "autoload": {
  3663. "psr-4": {
  3664. "think\\api\\": "src"
  3665. }
  3666. },
  3667. "notification-url": "https://packagist.org/downloads/",
  3668. "license": [
  3669. "Apache-2.0"
  3670. ],
  3671. "authors": [
  3672. {
  3673. "name": "yunwuxin",
  3674. "email": "448901948@qq.com"
  3675. }
  3676. ],
  3677. "support": {
  3678. "issues": "https://github.com/top-think/think-api/issues",
  3679. "source": "https://github.com/top-think/think-api/tree/v1.0.31"
  3680. },
  3681. "time": "2024-05-24T05:23:08+00:00"
  3682. },
  3683. {
  3684. "name": "topthink/think-captcha",
  3685. "version": "v3.0.9",
  3686. "source": {
  3687. "type": "git",
  3688. "url": "https://github.com/top-think/think-captcha.git",
  3689. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b"
  3690. },
  3691. "dist": {
  3692. "type": "zip",
  3693. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/b1ef360670578214edeebcf824aaf6ab7ee0528b",
  3694. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b",
  3695. "shasum": ""
  3696. },
  3697. "require": {
  3698. "topthink/framework": "^6.0|^8.0"
  3699. },
  3700. "type": "library",
  3701. "extra": {
  3702. "think": {
  3703. "services": [
  3704. "think\\captcha\\CaptchaService"
  3705. ],
  3706. "config": {
  3707. "captcha": "src/config.php"
  3708. }
  3709. }
  3710. },
  3711. "autoload": {
  3712. "files": [
  3713. "src/helper.php"
  3714. ],
  3715. "psr-4": {
  3716. "think\\captcha\\": "src/"
  3717. }
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "Apache-2.0"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "yunwuxin",
  3726. "email": "448901948@qq.com"
  3727. }
  3728. ],
  3729. "description": "captcha package for thinkphp",
  3730. "time": "2023-04-27T07:18:40+00:00"
  3731. },
  3732. {
  3733. "name": "topthink/think-helper",
  3734. "version": "v3.1.12",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/top-think/think-helper.git",
  3738. "reference": "fe277121112a8f1c872e169a733ca80bb11c4acb"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/top-think/think-helper/zipball/fe277121112a8f1c872e169a733ca80bb11c4acb",
  3743. "reference": "fe277121112a8f1c872e169a733ca80bb11c4acb",
  3744. "shasum": ""
  3745. },
  3746. "require": {
  3747. "php": ">=7.1.0"
  3748. },
  3749. "require-dev": {
  3750. "phpunit/phpunit": "^9.5"
  3751. },
  3752. "type": "library",
  3753. "autoload": {
  3754. "files": [
  3755. "src/helper.php"
  3756. ],
  3757. "psr-4": {
  3758. "think\\": "src"
  3759. }
  3760. },
  3761. "notification-url": "https://packagist.org/downloads/",
  3762. "license": [
  3763. "Apache-2.0"
  3764. ],
  3765. "authors": [
  3766. {
  3767. "name": "yunwuxin",
  3768. "email": "448901948@qq.com"
  3769. }
  3770. ],
  3771. "description": "The ThinkPHP6 Helper Package",
  3772. "support": {
  3773. "issues": "https://github.com/top-think/think-helper/issues",
  3774. "source": "https://github.com/top-think/think-helper/tree/v3.1.12"
  3775. },
  3776. "time": "2025-12-26T09:58:29+00:00"
  3777. },
  3778. {
  3779. "name": "topthink/think-multi-app",
  3780. "version": "v1.0.17",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/top-think/think-multi-app.git",
  3784. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  3789. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "php": ">=7.1.0",
  3794. "topthink/framework": "^6.0|^8.0"
  3795. },
  3796. "type": "library",
  3797. "extra": {
  3798. "think": {
  3799. "services": [
  3800. "think\\app\\Service"
  3801. ]
  3802. }
  3803. },
  3804. "autoload": {
  3805. "psr-4": {
  3806. "think\\app\\": "src"
  3807. }
  3808. },
  3809. "notification-url": "https://packagist.org/downloads/",
  3810. "license": [
  3811. "Apache-2.0"
  3812. ],
  3813. "authors": [
  3814. {
  3815. "name": "liu21st",
  3816. "email": "liu21st@gmail.com"
  3817. }
  3818. ],
  3819. "description": "thinkphp multi app support",
  3820. "time": "2023-03-29T02:04:29+00:00"
  3821. },
  3822. {
  3823. "name": "topthink/think-orm",
  3824. "version": "v2.0.62",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://github.com/top-think/think-orm.git",
  3828. "reference": "e53bfea572a133039ad687077120de5521af617f"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://api.github.com/repos/top-think/think-orm/zipball/e53bfea572a133039ad687077120de5521af617f",
  3833. "reference": "e53bfea572a133039ad687077120de5521af617f",
  3834. "shasum": ""
  3835. },
  3836. "require": {
  3837. "ext-json": "*",
  3838. "ext-pdo": "*",
  3839. "php": ">=7.1.0",
  3840. "psr/log": "^1.0|^2.0",
  3841. "psr/simple-cache": "^1.0|^2.0",
  3842. "topthink/think-helper": "^3.1"
  3843. },
  3844. "require-dev": {
  3845. "phpunit/phpunit": "^7|^8|^9.5"
  3846. },
  3847. "type": "library",
  3848. "autoload": {
  3849. "files": [
  3850. "stubs/load_stubs.php"
  3851. ],
  3852. "psr-4": {
  3853. "think\\": "src"
  3854. }
  3855. },
  3856. "notification-url": "https://packagist.org/downloads/",
  3857. "license": [
  3858. "Apache-2.0"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "liu21st",
  3863. "email": "liu21st@gmail.com"
  3864. }
  3865. ],
  3866. "description": "think orm",
  3867. "keywords": [
  3868. "database",
  3869. "orm"
  3870. ],
  3871. "support": {
  3872. "issues": "https://github.com/top-think/think-orm/issues",
  3873. "source": "https://github.com/top-think/think-orm/tree/v2.0.62"
  3874. },
  3875. "time": "2024-09-22T06:17:47+00:00"
  3876. },
  3877. {
  3878. "name": "topthink/think-queue",
  3879. "version": "v3.0.9",
  3880. "source": {
  3881. "type": "git",
  3882. "url": "https://github.com/top-think/think-queue.git",
  3883. "reference": "654812b47dd7c708c4443deed27f212f8382e8da"
  3884. },
  3885. "dist": {
  3886. "type": "zip",
  3887. "url": "https://api.github.com/repos/top-think/think-queue/zipball/654812b47dd7c708c4443deed27f212f8382e8da",
  3888. "reference": "654812b47dd7c708c4443deed27f212f8382e8da",
  3889. "shasum": ""
  3890. },
  3891. "require": {
  3892. "ext-json": "*",
  3893. "nesbot/carbon": "^2.16",
  3894. "symfony/process": ">=4.2",
  3895. "topthink/framework": "^6.0 || ^8.0"
  3896. },
  3897. "require-dev": {
  3898. "mockery/mockery": "^1.2",
  3899. "phpunit/phpunit": "^6.2",
  3900. "topthink/think-migration": "^3.0"
  3901. },
  3902. "type": "library",
  3903. "extra": {
  3904. "think": {
  3905. "services": [
  3906. "think\\queue\\Service"
  3907. ],
  3908. "config": {
  3909. "queue": "src/config.php"
  3910. }
  3911. }
  3912. },
  3913. "autoload": {
  3914. "files": [
  3915. "src/common.php"
  3916. ],
  3917. "psr-4": {
  3918. "think\\": "src"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "Apache-2.0"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "yunwuxin",
  3928. "email": "448901948@qq.com"
  3929. }
  3930. ],
  3931. "description": "The ThinkPHP6 Queue Package",
  3932. "time": "2023-07-03T05:42:01+00:00"
  3933. },
  3934. {
  3935. "name": "topthink/think-template",
  3936. "version": "v2.0.9",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://github.com/top-think/think-template.git",
  3940. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://api.github.com/repos/top-think/think-template/zipball/6d25642ae0e306166742fd7073dc7a159e18073c",
  3945. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c",
  3946. "shasum": ""
  3947. },
  3948. "require": {
  3949. "php": ">=7.1.0",
  3950. "psr/simple-cache": "^1.0"
  3951. },
  3952. "type": "library",
  3953. "autoload": {
  3954. "psr-4": {
  3955. "think\\": "src"
  3956. }
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "Apache-2.0"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "liu21st",
  3965. "email": "liu21st@gmail.com"
  3966. }
  3967. ],
  3968. "description": "the php template engine",
  3969. "time": "2023-02-14T10:50:39+00:00"
  3970. },
  3971. {
  3972. "name": "topthink/think-view",
  3973. "version": "v1.0.14",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/top-think/think-view.git",
  3977. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3982. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "php": ">=7.1.0",
  3987. "topthink/think-template": "^2.0"
  3988. },
  3989. "type": "library",
  3990. "autoload": {
  3991. "psr-4": {
  3992. "think\\view\\driver\\": "src"
  3993. }
  3994. },
  3995. "notification-url": "https://packagist.org/downloads/",
  3996. "license": [
  3997. "Apache-2.0"
  3998. ],
  3999. "authors": [
  4000. {
  4001. "name": "liu21st",
  4002. "email": "liu21st@gmail.com"
  4003. }
  4004. ],
  4005. "description": "thinkphp template driver",
  4006. "time": "2019-11-06T11:40:13+00:00"
  4007. },
  4008. {
  4009. "name": "workerman/gateway-worker",
  4010. "version": "v3.0.28",
  4011. "source": {
  4012. "type": "git",
  4013. "url": "https://github.com/walkor/GatewayWorker.git",
  4014. "reference": "a7dffc53403133131a51b9fd3c6c6d70869cb6d3"
  4015. },
  4016. "dist": {
  4017. "type": "zip",
  4018. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/a7dffc53403133131a51b9fd3c6c6d70869cb6d3",
  4019. "reference": "a7dffc53403133131a51b9fd3c6c6d70869cb6d3",
  4020. "shasum": ""
  4021. },
  4022. "require": {
  4023. "php": ">=7.0",
  4024. "workerman/workerman": "^4.0.30"
  4025. },
  4026. "type": "library",
  4027. "autoload": {
  4028. "psr-4": {
  4029. "GatewayWorker\\": "./src"
  4030. }
  4031. },
  4032. "notification-url": "https://packagist.org/downloads/",
  4033. "license": [
  4034. "MIT"
  4035. ],
  4036. "homepage": "http://www.workerman.net",
  4037. "keywords": [
  4038. "communication",
  4039. "distributed"
  4040. ],
  4041. "time": "2023-03-24T03:56:27+00:00"
  4042. },
  4043. {
  4044. "name": "workerman/gatewayclient",
  4045. "version": "v3.0.14",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/walkor/GatewayClient.git",
  4049. "reference": "4362468d68251015b2b385c310252afb4d6648ed"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/4362468d68251015b2b385c310252afb4d6648ed",
  4054. "reference": "4362468d68251015b2b385c310252afb4d6648ed",
  4055. "shasum": ""
  4056. },
  4057. "type": "library",
  4058. "autoload": {
  4059. "psr-4": {
  4060. "GatewayClient\\": "./"
  4061. }
  4062. },
  4063. "notification-url": "https://packagist.org/downloads/",
  4064. "license": [
  4065. "MIT"
  4066. ],
  4067. "homepage": "http://www.workerman.net",
  4068. "time": "2021-11-29T07:03:50+00:00"
  4069. },
  4070. {
  4071. "name": "workerman/workerman",
  4072. "version": "v4.1.10",
  4073. "source": {
  4074. "type": "git",
  4075. "url": "https://github.com/walkor/workerman.git",
  4076. "reference": "e967b79f95b9251a72acb971be05623ec1a51e83"
  4077. },
  4078. "dist": {
  4079. "type": "zip",
  4080. "url": "https://api.github.com/repos/walkor/workerman/zipball/e967b79f95b9251a72acb971be05623ec1a51e83",
  4081. "reference": "e967b79f95b9251a72acb971be05623ec1a51e83",
  4082. "shasum": ""
  4083. },
  4084. "require": {
  4085. "php": ">=7.0"
  4086. },
  4087. "suggest": {
  4088. "ext-event": "For better performance. "
  4089. },
  4090. "type": "library",
  4091. "autoload": {
  4092. "psr-4": {
  4093. "Workerman\\": "./"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "walkor",
  4103. "email": "walkor@workerman.net",
  4104. "homepage": "http://www.workerman.net",
  4105. "role": "Developer"
  4106. }
  4107. ],
  4108. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  4109. "homepage": "http://www.workerman.net",
  4110. "keywords": [
  4111. "asynchronous",
  4112. "event-loop"
  4113. ],
  4114. "time": "2023-05-01T02:12:20+00:00"
  4115. },
  4116. {
  4117. "name": "xiaodi/think-pinyin",
  4118. "version": "v1.0.0",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/edenleung/think-pinyin.git",
  4122. "reference": "4675515d3be42bebff712383c306ff99ef279f97"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/edenleung/think-pinyin/zipball/4675515d3be42bebff712383c306ff99ef279f97",
  4127. "reference": "4675515d3be42bebff712383c306ff99ef279f97",
  4128. "shasum": ""
  4129. },
  4130. "require": {
  4131. "overtrue/pinyin": "~4.0",
  4132. "topthink/framework": "6.0.*|5.1.*"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "think": {
  4137. "services": [
  4138. "xiaodi\\ThinkPinyin\\PinyinService"
  4139. ]
  4140. }
  4141. },
  4142. "autoload": {
  4143. "psr-4": {
  4144. "xiaodi\\ThinkPinyin\\": "src/"
  4145. },
  4146. "files": [
  4147. "src/helpers.php"
  4148. ]
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "xiaodi",
  4157. "email": "liangjinbiao@live.com"
  4158. }
  4159. ],
  4160. "description": "ThinkPHP 中文转拼音扩展包",
  4161. "keywords": [
  4162. "Chinese",
  4163. "Pinyin",
  4164. "thinkphp"
  4165. ],
  4166. "time": "2019-10-25T09:19:32+00:00"
  4167. },
  4168. {
  4169. "name": "xiaodi/think-pullword",
  4170. "version": "v1.2.1",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://github.com/friendsofthinkphp/think-pullword.git",
  4174. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://api.github.com/repos/friendsofthinkphp/think-pullword/zipball/0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  4179. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  4180. "shasum": ""
  4181. },
  4182. "require": {
  4183. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4184. "topthink/framework": "6.0.*|5.1.*"
  4185. },
  4186. "type": "library",
  4187. "extra": {
  4188. "think": {
  4189. "services": [
  4190. "PullWord\\PullWordService"
  4191. ]
  4192. }
  4193. },
  4194. "autoload": {
  4195. "files": [
  4196. "src/helper.php"
  4197. ],
  4198. "psr-4": {
  4199. "PullWord\\": "src"
  4200. }
  4201. },
  4202. "notification-url": "https://packagist.org/downloads/",
  4203. "license": [
  4204. "MIT"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "xiaodi",
  4209. "email": "liangjinbiao@live.com"
  4210. }
  4211. ],
  4212. "description": "ThinkPHP 分词/抽词 扩展包",
  4213. "keywords": [
  4214. "php",
  4215. "think-extend",
  4216. "thinkphp"
  4217. ],
  4218. "time": "2021-01-05T02:48:17+00:00"
  4219. },
  4220. {
  4221. "name": "xxtime/flysystem-aliyun-oss",
  4222. "version": "1.5.0",
  4223. "source": {
  4224. "type": "git",
  4225. "url": "https://github.com/xxtime/flysystem-aliyun-oss.git",
  4226. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9"
  4227. },
  4228. "dist": {
  4229. "type": "zip",
  4230. "url": "https://api.github.com/repos/xxtime/flysystem-aliyun-oss/zipball/ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  4231. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  4232. "shasum": ""
  4233. },
  4234. "require": {
  4235. "aliyuncs/oss-sdk-php": "~2.3",
  4236. "league/flysystem": "^1.0.49",
  4237. "php": ">=5.5.0"
  4238. },
  4239. "type": "library",
  4240. "autoload": {
  4241. "psr-4": {
  4242. "Xxtime\\Flysystem\\Aliyun\\": "src/"
  4243. }
  4244. },
  4245. "notification-url": "https://packagist.org/downloads/",
  4246. "license": [
  4247. "MIT"
  4248. ],
  4249. "authors": [
  4250. {
  4251. "name": "Joe",
  4252. "email": "joe@xxtime.com",
  4253. "homepage": "https://github.com/xxtime",
  4254. "role": "Developer"
  4255. }
  4256. ],
  4257. "description": "AliYun OSS adapter for flysystem. aliyuncs/oss-sdk-php ~2.3",
  4258. "homepage": "https://github.com/xxtime/flysystem-aliyun-oss",
  4259. "keywords": [
  4260. "Flysystem",
  4261. "aliyun-oss",
  4262. "flysystem-aliyun-oss"
  4263. ],
  4264. "time": "2019-11-12T07:57:34+00:00"
  4265. },
  4266. {
  4267. "name": "yunwuxin/think-cron",
  4268. "version": "v3.0.6",
  4269. "source": {
  4270. "type": "git",
  4271. "url": "https://github.com/yunwuxin/think-cron.git",
  4272. "reference": "4013c39cea4600e05ffd10de5b63177bfb9bf480"
  4273. },
  4274. "dist": {
  4275. "type": "zip",
  4276. "url": "https://api.github.com/repos/yunwuxin/think-cron/zipball/4013c39cea4600e05ffd10de5b63177bfb9bf480",
  4277. "reference": "4013c39cea4600e05ffd10de5b63177bfb9bf480",
  4278. "shasum": ""
  4279. },
  4280. "require": {
  4281. "dragonmantank/cron-expression": "^3.0",
  4282. "nesbot/carbon": "^2.28",
  4283. "symfony/process": "^4.4 || ^5.0",
  4284. "topthink/framework": "^6.0 || ^8.0"
  4285. },
  4286. "require-dev": {
  4287. "topthink/think-swoole": "^4.0"
  4288. },
  4289. "type": "library",
  4290. "extra": {
  4291. "think": {
  4292. "config": {
  4293. "cron": "src/config.php"
  4294. },
  4295. "services": [
  4296. "yunwuxin\\cron\\Service"
  4297. ]
  4298. }
  4299. },
  4300. "autoload": {
  4301. "psr-4": {
  4302. "yunwuxin\\cron\\": "src/cron"
  4303. }
  4304. },
  4305. "notification-url": "https://packagist.org/downloads/",
  4306. "license": [
  4307. "Apache-2.0"
  4308. ],
  4309. "authors": [
  4310. {
  4311. "name": "yunwuxin",
  4312. "email": "448901948@qq.com"
  4313. }
  4314. ],
  4315. "description": "计划任务",
  4316. "time": "2023-07-01T11:10:51+00:00"
  4317. }
  4318. ],
  4319. "packages-dev": [
  4320. {
  4321. "name": "symfony/polyfill-php72",
  4322. "version": "v1.31.0",
  4323. "source": {
  4324. "type": "git",
  4325. "url": "https://github.com/symfony/polyfill-php72.git",
  4326. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  4327. },
  4328. "dist": {
  4329. "type": "zip",
  4330. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  4331. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  4332. "shasum": ""
  4333. },
  4334. "require": {
  4335. "php": ">=7.2"
  4336. },
  4337. "type": "metapackage",
  4338. "extra": {
  4339. "thanks": {
  4340. "url": "https://github.com/symfony/polyfill",
  4341. "name": "symfony/polyfill"
  4342. }
  4343. },
  4344. "notification-url": "https://packagist.org/downloads/",
  4345. "license": [
  4346. "MIT"
  4347. ],
  4348. "authors": [
  4349. {
  4350. "name": "Nicolas Grekas",
  4351. "email": "p@tchwork.com"
  4352. },
  4353. {
  4354. "name": "Symfony Community",
  4355. "homepage": "https://symfony.com/contributors"
  4356. }
  4357. ],
  4358. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4359. "homepage": "https://symfony.com",
  4360. "keywords": [
  4361. "compatibility",
  4362. "polyfill",
  4363. "portable",
  4364. "shim"
  4365. ],
  4366. "support": {
  4367. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  4368. },
  4369. "funding": [
  4370. {
  4371. "url": "https://symfony.com/sponsor",
  4372. "type": "custom"
  4373. },
  4374. {
  4375. "url": "https://github.com/fabpot",
  4376. "type": "github"
  4377. },
  4378. {
  4379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4380. "type": "tidelift"
  4381. }
  4382. ],
  4383. "time": "2024-09-09T11:45:10+00:00"
  4384. },
  4385. {
  4386. "name": "symfony/var-dumper",
  4387. "version": "v4.4.47",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/symfony/var-dumper.git",
  4391. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  4396. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  4397. "shasum": ""
  4398. },
  4399. "require": {
  4400. "php": ">=7.1.3",
  4401. "symfony/polyfill-mbstring": "~1.0",
  4402. "symfony/polyfill-php72": "~1.5",
  4403. "symfony/polyfill-php80": "^1.16"
  4404. },
  4405. "conflict": {
  4406. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4407. "symfony/console": "<3.4"
  4408. },
  4409. "require-dev": {
  4410. "ext-iconv": "*",
  4411. "symfony/console": "^3.4|^4.0|^5.0",
  4412. "symfony/process": "^4.4|^5.0",
  4413. "twig/twig": "^1.43|^2.13|^3.0.4"
  4414. },
  4415. "suggest": {
  4416. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4417. "ext-intl": "To show region name in time zone dump",
  4418. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4419. },
  4420. "bin": [
  4421. "Resources/bin/var-dump-server"
  4422. ],
  4423. "type": "library",
  4424. "autoload": {
  4425. "files": [
  4426. "Resources/functions/dump.php"
  4427. ],
  4428. "psr-4": {
  4429. "Symfony\\Component\\VarDumper\\": ""
  4430. },
  4431. "exclude-from-classmap": [
  4432. "/Tests/"
  4433. ]
  4434. },
  4435. "notification-url": "https://packagist.org/downloads/",
  4436. "license": [
  4437. "MIT"
  4438. ],
  4439. "authors": [
  4440. {
  4441. "name": "Nicolas Grekas",
  4442. "email": "p@tchwork.com"
  4443. },
  4444. {
  4445. "name": "Symfony Community",
  4446. "homepage": "https://symfony.com/contributors"
  4447. }
  4448. ],
  4449. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4450. "homepage": "https://symfony.com",
  4451. "keywords": [
  4452. "debug",
  4453. "dump"
  4454. ],
  4455. "time": "2022-10-03T15:15:11+00:00"
  4456. },
  4457. {
  4458. "name": "topthink/think-trace",
  4459. "version": "v1.6",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://github.com/top-think/think-trace.git",
  4463. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4468. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4469. "shasum": ""
  4470. },
  4471. "require": {
  4472. "php": ">=7.1.0",
  4473. "topthink/framework": "^6.0|^8.0"
  4474. },
  4475. "type": "library",
  4476. "extra": {
  4477. "think": {
  4478. "services": [
  4479. "think\\trace\\Service"
  4480. ],
  4481. "config": {
  4482. "trace": "src/config.php"
  4483. }
  4484. }
  4485. },
  4486. "autoload": {
  4487. "psr-4": {
  4488. "think\\trace\\": "src"
  4489. }
  4490. },
  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. "description": "thinkphp debug trace",
  4502. "time": "2023-02-07T08:36:32+00:00"
  4503. }
  4504. ],
  4505. "aliases": [],
  4506. "minimum-stability": "stable",
  4507. "stability-flags": [],
  4508. "prefer-stable": false,
  4509. "prefer-lowest": false,
  4510. "platform": {
  4511. "php": ">=7.1.0"
  4512. },
  4513. "platform-dev": [],
  4514. "plugin-api-version": "2.3.0"
  4515. }