composer.lock 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235
  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": "589881da0871ff7101fe8a7d9c143173",
  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": "evenement/evenement",
  448. "version": "v3.0.2",
  449. "source": {
  450. "type": "git",
  451. "url": "https://github.com/igorw/evenement.git",
  452. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  453. },
  454. "dist": {
  455. "type": "zip",
  456. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  457. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  458. "shasum": ""
  459. },
  460. "require": {
  461. "php": ">=7.0"
  462. },
  463. "require-dev": {
  464. "phpunit/phpunit": "^9 || ^6"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "Evenement\\": "src/"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "MIT"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Igor Wiedler",
  479. "email": "igor@wiedler.ch"
  480. }
  481. ],
  482. "description": "Événement is a very simple event dispatching library for PHP",
  483. "keywords": [
  484. "event-dispatcher",
  485. "event-emitter"
  486. ],
  487. "support": {
  488. "issues": "https://github.com/igorw/evenement/issues",
  489. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  490. },
  491. "time": "2023-08-08T05:53:35+00:00"
  492. },
  493. {
  494. "name": "firebase/php-jwt",
  495. "version": "v6.11.1",
  496. "source": {
  497. "type": "git",
  498. "url": "https://github.com/firebase/php-jwt.git",
  499. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  500. },
  501. "dist": {
  502. "type": "zip",
  503. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  504. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  505. "shasum": ""
  506. },
  507. "require": {
  508. "php": "^8.0"
  509. },
  510. "require-dev": {
  511. "guzzlehttp/guzzle": "^7.4",
  512. "phpspec/prophecy-phpunit": "^2.0",
  513. "phpunit/phpunit": "^9.5",
  514. "psr/cache": "^2.0||^3.0",
  515. "psr/http-client": "^1.0",
  516. "psr/http-factory": "^1.0"
  517. },
  518. "suggest": {
  519. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  520. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  521. },
  522. "type": "library",
  523. "autoload": {
  524. "psr-4": {
  525. "Firebase\\JWT\\": "src"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "BSD-3-Clause"
  531. ],
  532. "authors": [
  533. {
  534. "name": "Neuman Vong",
  535. "email": "neuman+pear@twilio.com",
  536. "role": "Developer"
  537. },
  538. {
  539. "name": "Anant Narayanan",
  540. "email": "anant@php.net",
  541. "role": "Developer"
  542. }
  543. ],
  544. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  545. "homepage": "https://github.com/firebase/php-jwt",
  546. "keywords": [
  547. "jwt",
  548. "php"
  549. ],
  550. "support": {
  551. "issues": "https://github.com/firebase/php-jwt/issues",
  552. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  553. },
  554. "time": "2025-04-09T20:32:01+00:00"
  555. },
  556. {
  557. "name": "google/auth",
  558. "version": "v1.26.0",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/googleapis/google-auth-library-php.git",
  562. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  567. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  568. "shasum": ""
  569. },
  570. "require": {
  571. "firebase/php-jwt": "^5.5||^6.0",
  572. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  573. "guzzlehttp/psr7": "^1.7|^2.0",
  574. "php": "^7.1||^8.0",
  575. "psr/cache": "^1.0|^2.0|^3.0",
  576. "psr/http-message": "^1.0"
  577. },
  578. "require-dev": {
  579. "guzzlehttp/promises": "0.1.1|^1.3",
  580. "kelvinmo/simplejwt": "0.7.0",
  581. "phpseclib/phpseclib": "^2.0.31||^3.0",
  582. "phpspec/prophecy-phpunit": "^1.1||^2.0",
  583. "phpunit/phpunit": "^7.5||^9.0.0",
  584. "sebastian/comparator": ">=1.2.3",
  585. "squizlabs/php_codesniffer": "^3.5"
  586. },
  587. "suggest": {
  588. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  589. },
  590. "type": "library",
  591. "autoload": {
  592. "psr-4": {
  593. "Google\\Auth\\": "src"
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "Apache-2.0"
  599. ],
  600. "description": "Google Auth Library for PHP",
  601. "homepage": "http://github.com/google/google-auth-library-php",
  602. "keywords": [
  603. "Authentication",
  604. "google",
  605. "oauth2"
  606. ],
  607. "support": {
  608. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  609. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  610. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.26.0"
  611. },
  612. "time": "2023-04-05T15:11:57+00:00"
  613. },
  614. {
  615. "name": "google/cloud-core",
  616. "version": "v1.52.10",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  620. "reference": "5e34556498ecadee2161402fd1024bec7ce33186"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/5e34556498ecadee2161402fd1024bec7ce33186",
  625. "reference": "5e34556498ecadee2161402fd1024bec7ce33186",
  626. "shasum": ""
  627. },
  628. "require": {
  629. "google/auth": "^1.18",
  630. "guzzlehttp/guzzle": "^6.5.8|^7.4.4",
  631. "guzzlehttp/promises": "^1.4||^2.0",
  632. "guzzlehttp/psr7": "^1.7|^2.0",
  633. "monolog/monolog": "^1.1|^2.0|^3.0",
  634. "php": ">=7.4",
  635. "psr/http-message": "^1.0|^2.0",
  636. "rize/uri-template": "~0.3"
  637. },
  638. "require-dev": {
  639. "erusev/parsedown": "^1.6",
  640. "google/cloud-common-protos": "^0.4",
  641. "google/gax": "^1.24.0",
  642. "opis/closure": "^3",
  643. "phpdocumentor/reflection": "^5.0",
  644. "phpspec/prophecy-phpunit": "^2.0",
  645. "phpunit/phpunit": "^9.0",
  646. "squizlabs/php_codesniffer": "2.*"
  647. },
  648. "suggest": {
  649. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  650. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  651. },
  652. "bin": [
  653. "bin/google-cloud-batch"
  654. ],
  655. "type": "library",
  656. "extra": {
  657. "component": {
  658. "id": "cloud-core",
  659. "path": "Core",
  660. "entry": "src/ServiceBuilder.php",
  661. "target": "googleapis/google-cloud-php-core.git"
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "Google\\Cloud\\Core\\": "src"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "Apache-2.0"
  672. ],
  673. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  674. "support": {
  675. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.52.10"
  676. },
  677. "time": "2023-12-08T22:36:35+00:00"
  678. },
  679. {
  680. "name": "google/cloud-translate",
  681. "version": "v1.14.2",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/googleapis/google-cloud-php-translate.git",
  685. "reference": "e734e2a3980c06e350dba38660d0b6102fa15e34"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/googleapis/google-cloud-php-translate/zipball/e734e2a3980c06e350dba38660d0b6102fa15e34",
  690. "reference": "e734e2a3980c06e350dba38660d0b6102fa15e34",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "google/cloud-core": "^1.39",
  695. "google/gax": "^1.19.1",
  696. "php": ">=7.4"
  697. },
  698. "require-dev": {
  699. "erusev/parsedown": "^1.6",
  700. "phpdocumentor/reflection": "^5.0",
  701. "phpspec/prophecy-phpunit": "^2.0",
  702. "phpunit/phpunit": "^9.0",
  703. "squizlabs/php_codesniffer": "2.*"
  704. },
  705. "suggest": {
  706. "ext-grpc": "The gRPC extension enables use of the performant gRPC transport",
  707. "ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions."
  708. },
  709. "type": "library",
  710. "extra": {
  711. "component": {
  712. "id": "cloud-translate",
  713. "path": "Translate",
  714. "entry": "src/TranslateClient.php",
  715. "target": "googleapis/google-cloud-php-translate.git"
  716. }
  717. },
  718. "autoload": {
  719. "psr-4": {
  720. "Google\\Cloud\\Translate\\": "src",
  721. "GPBMetadata\\Google\\Cloud\\Translate\\": "metadata"
  722. }
  723. },
  724. "notification-url": "https://packagist.org/downloads/",
  725. "license": [
  726. "Apache-2.0"
  727. ],
  728. "description": "Cloud Translation Client for PHP",
  729. "support": {
  730. "source": "https://github.com/googleapis/google-cloud-php-translate/tree/v1.14.2"
  731. },
  732. "time": "2023-07-07T20:46:38+00:00"
  733. },
  734. {
  735. "name": "google/common-protos",
  736. "version": "v3.2.0",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/googleapis/common-protos-php.git",
  740. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/57d4ad36cc48cc0369123042908013ef2a86bb98",
  745. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98",
  746. "shasum": ""
  747. },
  748. "require": {
  749. "google/protobuf": "^3.6.1"
  750. },
  751. "require-dev": {
  752. "phpunit/phpunit": "^4.8.36||^8.5",
  753. "sami/sami": "*"
  754. },
  755. "type": "library",
  756. "autoload": {
  757. "psr-4": {
  758. "Google\\Api\\": "src/Api",
  759. "Google\\Iam\\": "src/Iam",
  760. "Google\\Rpc\\": "src/Rpc",
  761. "Google\\Type\\": "src/Type",
  762. "Google\\Cloud\\": "src/Cloud",
  763. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  764. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  765. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  766. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  767. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  768. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  769. }
  770. },
  771. "notification-url": "https://packagist.org/downloads/",
  772. "license": [
  773. "Apache-2.0"
  774. ],
  775. "description": "Google API Common Protos for PHP",
  776. "homepage": "https://github.com/googleapis/common-protos-php",
  777. "keywords": [
  778. "google"
  779. ],
  780. "support": {
  781. "issues": "https://github.com/googleapis/common-protos-php/issues",
  782. "source": "https://github.com/googleapis/common-protos-php/tree/v3.2.0"
  783. },
  784. "time": "2023-01-12T16:51:46+00:00"
  785. },
  786. {
  787. "name": "google/gax",
  788. "version": "v1.19.1",
  789. "source": {
  790. "type": "git",
  791. "url": "https://github.com/googleapis/gax-php.git",
  792. "reference": "30f6b307faa9858bf58d967664467098dbbc354f"
  793. },
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/30f6b307faa9858bf58d967664467098dbbc354f",
  797. "reference": "30f6b307faa9858bf58d967664467098dbbc354f",
  798. "shasum": ""
  799. },
  800. "require": {
  801. "google/auth": "1.19.1||^1.25.0",
  802. "google/common-protos": "^1.3.1||^2.0||^3.0",
  803. "google/grpc-gcp": "^0.2",
  804. "google/longrunning": "^0.2",
  805. "google/protobuf": "^3.21.4",
  806. "grpc/grpc": "^1.13",
  807. "guzzlehttp/promises": "^1.3",
  808. "guzzlehttp/psr7": "^1.7.0||^2",
  809. "php": ">=7.0"
  810. },
  811. "conflict": {
  812. "ext-protobuf": "<3.7.0"
  813. },
  814. "require-dev": {
  815. "phpspec/prophecy": "^1.10",
  816. "phpunit/phpunit": "^5.5||^8.5",
  817. "squizlabs/php_codesniffer": "3.*",
  818. "yoast/phpunit-polyfills": "^1.0"
  819. },
  820. "type": "library",
  821. "autoload": {
  822. "psr-4": {
  823. "Google\\ApiCore\\": "src",
  824. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "BSD-3-Clause"
  830. ],
  831. "description": "Google API Core for PHP",
  832. "homepage": "https://github.com/googleapis/gax-php",
  833. "keywords": [
  834. "google"
  835. ],
  836. "support": {
  837. "issues": "https://github.com/googleapis/gax-php/issues",
  838. "source": "https://github.com/googleapis/gax-php/tree/v1.19.1"
  839. },
  840. "time": "2023-03-16T19:58:19+00:00"
  841. },
  842. {
  843. "name": "google/grpc-gcp",
  844. "version": "v0.2.1",
  845. "source": {
  846. "type": "git",
  847. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  848. "reference": "899d0112812a812df7692617a59f4076f0d01719"
  849. },
  850. "dist": {
  851. "type": "zip",
  852. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/899d0112812a812df7692617a59f4076f0d01719",
  853. "reference": "899d0112812a812df7692617a59f4076f0d01719",
  854. "shasum": ""
  855. },
  856. "require": {
  857. "google/auth": "^1.3",
  858. "google/protobuf": "^v3.3.0",
  859. "grpc/grpc": "^v1.13.0",
  860. "php": ">=5.5.0",
  861. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  862. },
  863. "require-dev": {
  864. "google/cloud-spanner": "^1.7",
  865. "phpunit/phpunit": "4.8.36"
  866. },
  867. "type": "library",
  868. "autoload": {
  869. "psr-4": {
  870. "Grpc\\Gcp\\": "src/"
  871. },
  872. "classmap": [
  873. "src/generated/"
  874. ]
  875. },
  876. "notification-url": "https://packagist.org/downloads/",
  877. "license": [
  878. "Apache-2.0"
  879. ],
  880. "description": "gRPC GCP library for channel management",
  881. "support": {
  882. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  883. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.2.1"
  884. },
  885. "time": "2022-10-11T15:54:47+00:00"
  886. },
  887. {
  888. "name": "google/longrunning",
  889. "version": "v0.2.6",
  890. "source": {
  891. "type": "git",
  892. "url": "https://github.com/googleapis/php-longrunning.git",
  893. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842"
  894. },
  895. "dist": {
  896. "type": "zip",
  897. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  898. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  899. "shasum": ""
  900. },
  901. "require-dev": {
  902. "google/gax": "^1.13.0",
  903. "phpunit/phpunit": "^9.0"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "component": {
  908. "id": "longrunning",
  909. "path": "LongRunning",
  910. "entry": null,
  911. "target": "googleapis/php-longrunning"
  912. }
  913. },
  914. "autoload": {
  915. "psr-4": {
  916. "Google\\LongRunning\\": "src/LongRunning",
  917. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  918. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  919. }
  920. },
  921. "notification-url": "https://packagist.org/downloads/",
  922. "license": [
  923. "Apache-2.0"
  924. ],
  925. "description": "Google LongRunning Client for PHP",
  926. "support": {
  927. "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.6"
  928. },
  929. "time": "2023-04-21T14:12:59+00:00"
  930. },
  931. {
  932. "name": "google/protobuf",
  933. "version": "v3.25.8",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  937. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  942. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": ">=7.0.0"
  947. },
  948. "require-dev": {
  949. "phpunit/phpunit": ">=5.0.0"
  950. },
  951. "suggest": {
  952. "ext-bcmath": "Need to support JSON deserialization"
  953. },
  954. "type": "library",
  955. "autoload": {
  956. "psr-4": {
  957. "Google\\Protobuf\\": "src/Google/Protobuf",
  958. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "BSD-3-Clause"
  964. ],
  965. "description": "proto library for PHP",
  966. "homepage": "https://developers.google.com/protocol-buffers/",
  967. "keywords": [
  968. "proto"
  969. ],
  970. "support": {
  971. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.8"
  972. },
  973. "time": "2025-05-27T21:04:40+00:00"
  974. },
  975. {
  976. "name": "grpc/grpc",
  977. "version": "1.74.0",
  978. "source": {
  979. "type": "git",
  980. "url": "https://github.com/grpc/grpc-php.git",
  981. "reference": "32bf4dba256d60d395582fb6e4e8d3936bcdb713"
  982. },
  983. "dist": {
  984. "type": "zip",
  985. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/32bf4dba256d60d395582fb6e4e8d3936bcdb713",
  986. "reference": "32bf4dba256d60d395582fb6e4e8d3936bcdb713",
  987. "shasum": ""
  988. },
  989. "require": {
  990. "php": ">=7.0.0"
  991. },
  992. "require-dev": {
  993. "google/auth": "^v1.3.0"
  994. },
  995. "suggest": {
  996. "ext-protobuf": "For better performance, install the protobuf C extension.",
  997. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  998. },
  999. "type": "library",
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Grpc\\": "src/lib/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "Apache-2.0"
  1008. ],
  1009. "description": "gRPC library for PHP",
  1010. "homepage": "https://grpc.io",
  1011. "keywords": [
  1012. "rpc"
  1013. ],
  1014. "support": {
  1015. "source": "https://github.com/grpc/grpc-php/tree/v1.74.0"
  1016. },
  1017. "time": "2025-07-24T20:02:16+00:00"
  1018. },
  1019. {
  1020. "name": "guzzlehttp/command",
  1021. "version": "1.0.0",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/guzzle/command.git",
  1025. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/guzzle/command/zipball/2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  1030. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "guzzlehttp/guzzle": "^6.2",
  1035. "guzzlehttp/promises": "~1.3",
  1036. "guzzlehttp/psr7": "~1.0",
  1037. "php": ">=5.5.0"
  1038. },
  1039. "require-dev": {
  1040. "phpunit/phpunit": "~4.0|~5.0"
  1041. },
  1042. "type": "library",
  1043. "extra": {
  1044. "branch-alias": {
  1045. "dev-master": "0.9-dev"
  1046. }
  1047. },
  1048. "autoload": {
  1049. "psr-4": {
  1050. "GuzzleHttp\\Command\\": "src/"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Michael Dowling",
  1060. "email": "mtdowling@gmail.com",
  1061. "homepage": "https://github.com/mtdowling"
  1062. },
  1063. {
  1064. "name": "Jeremy Lindblom",
  1065. "email": "jeremeamia@gmail.com",
  1066. "homepage": "https://github.com/jeremeamia"
  1067. }
  1068. ],
  1069. "description": "Provides the foundation for building command-based web service clients",
  1070. "time": "2016-11-24T13:34:15+00:00"
  1071. },
  1072. {
  1073. "name": "guzzlehttp/guzzle",
  1074. "version": "6.5.8",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/guzzle/guzzle.git",
  1078. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1083. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1084. "shasum": ""
  1085. },
  1086. "require": {
  1087. "ext-json": "*",
  1088. "guzzlehttp/promises": "^1.0",
  1089. "guzzlehttp/psr7": "^1.9",
  1090. "php": ">=5.5",
  1091. "symfony/polyfill-intl-idn": "^1.17"
  1092. },
  1093. "require-dev": {
  1094. "ext-curl": "*",
  1095. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1096. "psr/log": "^1.1"
  1097. },
  1098. "suggest": {
  1099. "psr/log": "Required for using the Log middleware"
  1100. },
  1101. "type": "library",
  1102. "extra": {
  1103. "branch-alias": {
  1104. "dev-master": "6.5-dev"
  1105. }
  1106. },
  1107. "autoload": {
  1108. "files": [
  1109. "src/functions_include.php"
  1110. ],
  1111. "psr-4": {
  1112. "GuzzleHttp\\": "src/"
  1113. }
  1114. },
  1115. "notification-url": "https://packagist.org/downloads/",
  1116. "license": [
  1117. "MIT"
  1118. ],
  1119. "authors": [
  1120. {
  1121. "name": "Graham Campbell",
  1122. "email": "hello@gjcampbell.co.uk",
  1123. "homepage": "https://github.com/GrahamCampbell"
  1124. },
  1125. {
  1126. "name": "Michael Dowling",
  1127. "email": "mtdowling@gmail.com",
  1128. "homepage": "https://github.com/mtdowling"
  1129. },
  1130. {
  1131. "name": "Jeremy Lindblom",
  1132. "email": "jeremeamia@gmail.com",
  1133. "homepage": "https://github.com/jeremeamia"
  1134. },
  1135. {
  1136. "name": "George Mponos",
  1137. "email": "gmponos@gmail.com",
  1138. "homepage": "https://github.com/gmponos"
  1139. },
  1140. {
  1141. "name": "Tobias Nyholm",
  1142. "email": "tobias.nyholm@gmail.com",
  1143. "homepage": "https://github.com/Nyholm"
  1144. },
  1145. {
  1146. "name": "Márk Sági-Kazár",
  1147. "email": "mark.sagikazar@gmail.com",
  1148. "homepage": "https://github.com/sagikazarmark"
  1149. },
  1150. {
  1151. "name": "Tobias Schultze",
  1152. "email": "webmaster@tubo-world.de",
  1153. "homepage": "https://github.com/Tobion"
  1154. }
  1155. ],
  1156. "description": "Guzzle is a PHP HTTP client library",
  1157. "homepage": "http://guzzlephp.org/",
  1158. "keywords": [
  1159. "client",
  1160. "curl",
  1161. "framework",
  1162. "http",
  1163. "http client",
  1164. "rest",
  1165. "web service"
  1166. ],
  1167. "support": {
  1168. "issues": "https://github.com/guzzle/guzzle/issues",
  1169. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  1170. },
  1171. "funding": [
  1172. {
  1173. "url": "https://github.com/GrahamCampbell",
  1174. "type": "github"
  1175. },
  1176. {
  1177. "url": "https://github.com/Nyholm",
  1178. "type": "github"
  1179. },
  1180. {
  1181. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1182. "type": "tidelift"
  1183. }
  1184. ],
  1185. "time": "2022-06-20T22:16:07+00:00"
  1186. },
  1187. {
  1188. "name": "guzzlehttp/guzzle-services",
  1189. "version": "1.1.3",
  1190. "source": {
  1191. "type": "git",
  1192. "url": "https://github.com/guzzle/guzzle-services.git",
  1193. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7"
  1194. },
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/9e3abf20161cbf662d616cbb995f2811771759f7",
  1198. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "guzzlehttp/command": "~1.0",
  1203. "guzzlehttp/guzzle": "^6.2",
  1204. "php": ">=5.5"
  1205. },
  1206. "require-dev": {
  1207. "phpunit/phpunit": "~4.0"
  1208. },
  1209. "suggest": {
  1210. "gimler/guzzle-description-loader": "^0.0.4"
  1211. },
  1212. "type": "library",
  1213. "extra": {
  1214. "branch-alias": {
  1215. "dev-master": "1.0.x-dev"
  1216. }
  1217. },
  1218. "autoload": {
  1219. "psr-4": {
  1220. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1221. }
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "authors": [
  1228. {
  1229. "name": "Michael Dowling",
  1230. "email": "mtdowling@gmail.com",
  1231. "homepage": "https://github.com/mtdowling"
  1232. },
  1233. {
  1234. "name": "Jeremy Lindblom",
  1235. "email": "jeremeamia@gmail.com",
  1236. "homepage": "https://github.com/jeremeamia"
  1237. },
  1238. {
  1239. "name": "Stefano Kowalke",
  1240. "email": "blueduck@mail.org",
  1241. "homepage": "https://github.com/konafets"
  1242. }
  1243. ],
  1244. "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.",
  1245. "time": "2017-10-06T14:32:02+00:00"
  1246. },
  1247. {
  1248. "name": "guzzlehttp/promises",
  1249. "version": "1.5.3",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/guzzle/promises.git",
  1253. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1258. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1259. "shasum": ""
  1260. },
  1261. "require": {
  1262. "php": ">=5.5"
  1263. },
  1264. "require-dev": {
  1265. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1266. },
  1267. "type": "library",
  1268. "autoload": {
  1269. "files": [
  1270. "src/functions_include.php"
  1271. ],
  1272. "psr-4": {
  1273. "GuzzleHttp\\Promise\\": "src/"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "Graham Campbell",
  1283. "email": "hello@gjcampbell.co.uk",
  1284. "homepage": "https://github.com/GrahamCampbell"
  1285. },
  1286. {
  1287. "name": "Michael Dowling",
  1288. "email": "mtdowling@gmail.com",
  1289. "homepage": "https://github.com/mtdowling"
  1290. },
  1291. {
  1292. "name": "Tobias Nyholm",
  1293. "email": "tobias.nyholm@gmail.com",
  1294. "homepage": "https://github.com/Nyholm"
  1295. },
  1296. {
  1297. "name": "Tobias Schultze",
  1298. "email": "webmaster@tubo-world.de",
  1299. "homepage": "https://github.com/Tobion"
  1300. }
  1301. ],
  1302. "description": "Guzzle promises library",
  1303. "keywords": [
  1304. "promise"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/guzzle/promises/issues",
  1308. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://github.com/GrahamCampbell",
  1313. "type": "github"
  1314. },
  1315. {
  1316. "url": "https://github.com/Nyholm",
  1317. "type": "github"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2023-05-21T12:31:43+00:00"
  1325. },
  1326. {
  1327. "name": "guzzlehttp/psr7",
  1328. "version": "1.9.1",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/guzzle/psr7.git",
  1332. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1337. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": ">=5.4.0",
  1342. "psr/http-message": "~1.0",
  1343. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1344. },
  1345. "provide": {
  1346. "psr/http-message-implementation": "1.0"
  1347. },
  1348. "require-dev": {
  1349. "ext-zlib": "*",
  1350. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1351. },
  1352. "suggest": {
  1353. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "files": [
  1358. "src/functions_include.php"
  1359. ],
  1360. "psr-4": {
  1361. "GuzzleHttp\\Psr7\\": "src/"
  1362. }
  1363. },
  1364. "notification-url": "https://packagist.org/downloads/",
  1365. "license": [
  1366. "MIT"
  1367. ],
  1368. "authors": [
  1369. {
  1370. "name": "Graham Campbell",
  1371. "email": "hello@gjcampbell.co.uk",
  1372. "homepage": "https://github.com/GrahamCampbell"
  1373. },
  1374. {
  1375. "name": "Michael Dowling",
  1376. "email": "mtdowling@gmail.com",
  1377. "homepage": "https://github.com/mtdowling"
  1378. },
  1379. {
  1380. "name": "George Mponos",
  1381. "email": "gmponos@gmail.com",
  1382. "homepage": "https://github.com/gmponos"
  1383. },
  1384. {
  1385. "name": "Tobias Nyholm",
  1386. "email": "tobias.nyholm@gmail.com",
  1387. "homepage": "https://github.com/Nyholm"
  1388. },
  1389. {
  1390. "name": "Márk Sági-Kazár",
  1391. "email": "mark.sagikazar@gmail.com",
  1392. "homepage": "https://github.com/sagikazarmark"
  1393. },
  1394. {
  1395. "name": "Tobias Schultze",
  1396. "email": "webmaster@tubo-world.de",
  1397. "homepage": "https://github.com/Tobion"
  1398. }
  1399. ],
  1400. "description": "PSR-7 message implementation that also provides common utility methods",
  1401. "keywords": [
  1402. "http",
  1403. "message",
  1404. "psr-7",
  1405. "request",
  1406. "response",
  1407. "stream",
  1408. "uri",
  1409. "url"
  1410. ],
  1411. "support": {
  1412. "issues": "https://github.com/guzzle/psr7/issues",
  1413. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  1414. },
  1415. "funding": [
  1416. {
  1417. "url": "https://github.com/GrahamCampbell",
  1418. "type": "github"
  1419. },
  1420. {
  1421. "url": "https://github.com/Nyholm",
  1422. "type": "github"
  1423. },
  1424. {
  1425. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1426. "type": "tidelift"
  1427. }
  1428. ],
  1429. "time": "2023-04-17T16:00:37+00:00"
  1430. },
  1431. {
  1432. "name": "jasny/sso",
  1433. "version": "v0.3.0",
  1434. "source": {
  1435. "type": "git",
  1436. "url": "https://github.com/jasny/sso.git",
  1437. "reference": "0cb18c072e7b14db3d2d2549c051f41ca837e5e9"
  1438. },
  1439. "dist": {
  1440. "type": "zip",
  1441. "url": "https://api.github.com/repos/jasny/sso/zipball/0cb18c072e7b14db3d2d2549c051f41ca837e5e9",
  1442. "reference": "0cb18c072e7b14db3d2d2549c051f41ca837e5e9",
  1443. "shasum": ""
  1444. },
  1445. "require": {
  1446. "desarrolla2/cache": "^2.0.0",
  1447. "jasny/validation-result": "^1.0.0",
  1448. "php": ">=5.5.0"
  1449. },
  1450. "require-dev": {
  1451. "codeception/codeception": "^2.1.0",
  1452. "jasny/php-code-quality": "^1.1.0"
  1453. },
  1454. "type": "library",
  1455. "autoload": {
  1456. "psr-4": {
  1457. "Jasny\\SSO\\": "src/"
  1458. }
  1459. },
  1460. "notification-url": "https://packagist.org/downloads/",
  1461. "license": [
  1462. "MIT"
  1463. ],
  1464. "authors": [
  1465. {
  1466. "name": "Arnold Daniels",
  1467. "email": "arnold@jasny.net",
  1468. "homepage": "http://www.jasny.net"
  1469. }
  1470. ],
  1471. "description": "Simple Single Sign-On",
  1472. "homepage": "http://www.jasny.net/articles/simple-single-sign-on-for-php/",
  1473. "keywords": [
  1474. "SSO",
  1475. "auth"
  1476. ],
  1477. "time": "2017-02-24T22:44:27+00:00"
  1478. },
  1479. {
  1480. "name": "jasny/validation-result",
  1481. "version": "v1.1.2",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/jasny/validation-result.git",
  1485. "reference": "fbce54837c8414cf5af22981ac33b26eb13b2a51"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/jasny/validation-result/zipball/fbce54837c8414cf5af22981ac33b26eb13b2a51",
  1490. "reference": "fbce54837c8414cf5af22981ac33b26eb13b2a51",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "php": ">=5.6.0"
  1495. },
  1496. "require-dev": {
  1497. "jasny/php-code-quality": "^1.2"
  1498. },
  1499. "type": "library",
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Jasny\\": "src/"
  1503. }
  1504. },
  1505. "notification-url": "https://packagist.org/downloads/",
  1506. "license": [
  1507. "MIT"
  1508. ],
  1509. "authors": [
  1510. {
  1511. "name": "Arnold Daniels",
  1512. "email": "arnold@jasny.net",
  1513. "homepage": "http://www.jasny.net"
  1514. }
  1515. ],
  1516. "description": "A result object for validation",
  1517. "keywords": [
  1518. "validation"
  1519. ],
  1520. "time": "2019-02-12T12:51:58+00:00"
  1521. },
  1522. {
  1523. "name": "league/flysystem",
  1524. "version": "1.1.10",
  1525. "source": {
  1526. "type": "git",
  1527. "url": "https://github.com/thephpleague/flysystem.git",
  1528. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1529. },
  1530. "dist": {
  1531. "type": "zip",
  1532. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1533. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1534. "shasum": ""
  1535. },
  1536. "require": {
  1537. "ext-fileinfo": "*",
  1538. "league/mime-type-detection": "^1.3",
  1539. "php": "^7.2.5 || ^8.0"
  1540. },
  1541. "conflict": {
  1542. "league/flysystem-sftp": "<1.0.6"
  1543. },
  1544. "require-dev": {
  1545. "phpspec/prophecy": "^1.11.1",
  1546. "phpunit/phpunit": "^8.5.8"
  1547. },
  1548. "suggest": {
  1549. "ext-ftp": "Allows you to use FTP server storage",
  1550. "ext-openssl": "Allows you to use FTPS server storage",
  1551. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1552. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1553. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1554. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1555. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1556. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1557. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1558. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1559. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1560. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1561. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1562. },
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "1.1-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-4": {
  1571. "League\\Flysystem\\": "src/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Frank de Jonge",
  1581. "email": "info@frenky.net"
  1582. }
  1583. ],
  1584. "description": "Filesystem abstraction: Many filesystems, one API.",
  1585. "keywords": [
  1586. "Cloud Files",
  1587. "WebDAV",
  1588. "abstraction",
  1589. "aws",
  1590. "cloud",
  1591. "copy.com",
  1592. "dropbox",
  1593. "file systems",
  1594. "files",
  1595. "filesystem",
  1596. "filesystems",
  1597. "ftp",
  1598. "rackspace",
  1599. "remote",
  1600. "s3",
  1601. "sftp",
  1602. "storage"
  1603. ],
  1604. "support": {
  1605. "issues": "https://github.com/thephpleague/flysystem/issues",
  1606. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1607. },
  1608. "funding": [
  1609. {
  1610. "url": "https://offset.earth/frankdejonge",
  1611. "type": "other"
  1612. }
  1613. ],
  1614. "time": "2022-10-04T09:16:37+00:00"
  1615. },
  1616. {
  1617. "name": "league/flysystem-cached-adapter",
  1618. "version": "1.1.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1622. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1627. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "league/flysystem": "~1.0",
  1632. "psr/cache": "^1.0.0"
  1633. },
  1634. "require-dev": {
  1635. "mockery/mockery": "~0.9",
  1636. "phpspec/phpspec": "^3.4",
  1637. "phpunit/phpunit": "^5.7",
  1638. "predis/predis": "~1.0",
  1639. "tedivm/stash": "~0.12"
  1640. },
  1641. "suggest": {
  1642. "ext-phpredis": "Pure C implemented extension for PHP"
  1643. },
  1644. "type": "library",
  1645. "autoload": {
  1646. "psr-4": {
  1647. "League\\Flysystem\\Cached\\": "src/"
  1648. }
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "frankdejonge",
  1657. "email": "info@frenky.net"
  1658. }
  1659. ],
  1660. "description": "An adapter decorator to enable meta-data caching.",
  1661. "support": {
  1662. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  1663. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  1664. },
  1665. "time": "2020-07-25T15:56:04+00:00"
  1666. },
  1667. {
  1668. "name": "league/mime-type-detection",
  1669. "version": "1.16.0",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1673. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  1678. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "ext-fileinfo": "*",
  1683. "php": "^7.4 || ^8.0"
  1684. },
  1685. "require-dev": {
  1686. "friendsofphp/php-cs-fixer": "^3.2",
  1687. "phpstan/phpstan": "^0.12.68",
  1688. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1689. },
  1690. "type": "library",
  1691. "autoload": {
  1692. "psr-4": {
  1693. "League\\MimeTypeDetection\\": "src"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Frank de Jonge",
  1703. "email": "info@frankdejonge.nl"
  1704. }
  1705. ],
  1706. "description": "Mime-type detection for Flysystem",
  1707. "support": {
  1708. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1709. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  1710. },
  1711. "funding": [
  1712. {
  1713. "url": "https://github.com/frankdejonge",
  1714. "type": "github"
  1715. },
  1716. {
  1717. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1718. "type": "tidelift"
  1719. }
  1720. ],
  1721. "time": "2024-09-21T08:32:55+00:00"
  1722. },
  1723. {
  1724. "name": "liz/flysystem-qiniu",
  1725. "version": "v1.23",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/l396635210/flysystem-qiniu.git",
  1729. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/l396635210/flysystem-qiniu/zipball/24af0f95644fcf66e82cc04ce840f31f6450e026",
  1734. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "league/flysystem": "^1.0",
  1739. "php": "^7.0 || ^8.0",
  1740. "qiniu/php-sdk": "^7.2"
  1741. },
  1742. "type": "library",
  1743. "autoload": {
  1744. "psr-4": {
  1745. "Liz\\Flysystem\\QiNiu\\": "src"
  1746. }
  1747. },
  1748. "notification-url": "https://packagist.org/downloads/",
  1749. "license": [
  1750. "MIT"
  1751. ],
  1752. "authors": [
  1753. {
  1754. "name": "liz in company",
  1755. "email": "396635210@qq.com"
  1756. }
  1757. ],
  1758. "description": "QiNiu oss adapter for flysystem",
  1759. "time": "2021-01-12T12:50:38+00:00"
  1760. },
  1761. {
  1762. "name": "monolog/monolog",
  1763. "version": "2.11.0",
  1764. "source": {
  1765. "type": "git",
  1766. "url": "https://github.com/Seldaek/monolog.git",
  1767. "reference": "37308608e599f34a1a4845b16440047ec98a172a"
  1768. },
  1769. "dist": {
  1770. "type": "zip",
  1771. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/37308608e599f34a1a4845b16440047ec98a172a",
  1772. "reference": "37308608e599f34a1a4845b16440047ec98a172a",
  1773. "shasum": ""
  1774. },
  1775. "require": {
  1776. "php": ">=7.2",
  1777. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1778. },
  1779. "provide": {
  1780. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1781. },
  1782. "require-dev": {
  1783. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1784. "doctrine/couchdb": "~1.0@dev",
  1785. "elasticsearch/elasticsearch": "^7 || ^8",
  1786. "ext-json": "*",
  1787. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1788. "guzzlehttp/guzzle": "^7.4",
  1789. "guzzlehttp/psr7": "^2.2",
  1790. "mongodb/mongodb": "^1.8 || ^2.0",
  1791. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1792. "phpspec/prophecy": "^1.15",
  1793. "phpstan/phpstan": "^1.10",
  1794. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  1795. "predis/predis": "^1.1 || ^2.0",
  1796. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1797. "ruflin/elastica": "^7",
  1798. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1799. "symfony/mailer": "^5.4 || ^6",
  1800. "symfony/mime": "^5.4 || ^6"
  1801. },
  1802. "suggest": {
  1803. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1804. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1805. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1806. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1807. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1808. "ext-mbstring": "Allow to work properly with unicode symbols",
  1809. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1810. "ext-openssl": "Required to send log messages using SSL",
  1811. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1812. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1813. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1814. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1815. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1816. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1817. },
  1818. "type": "library",
  1819. "extra": {
  1820. "branch-alias": {
  1821. "dev-main": "2.x-dev"
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-4": {
  1826. "Monolog\\": "src/Monolog"
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Jordi Boggiano",
  1836. "email": "j.boggiano@seld.be",
  1837. "homepage": "https://seld.be"
  1838. }
  1839. ],
  1840. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1841. "homepage": "https://github.com/Seldaek/monolog",
  1842. "keywords": [
  1843. "log",
  1844. "logging",
  1845. "psr-3"
  1846. ],
  1847. "support": {
  1848. "issues": "https://github.com/Seldaek/monolog/issues",
  1849. "source": "https://github.com/Seldaek/monolog/tree/2.11.0"
  1850. },
  1851. "funding": [
  1852. {
  1853. "url": "https://github.com/Seldaek",
  1854. "type": "github"
  1855. },
  1856. {
  1857. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1858. "type": "tidelift"
  1859. }
  1860. ],
  1861. "time": "2026-01-01T13:05:00+00:00"
  1862. },
  1863. {
  1864. "name": "mtdowling/jmespath.php",
  1865. "version": "2.6.1",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/jmespath/jmespath.php.git",
  1869. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1874. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "php": "^5.4 || ^7.0 || ^8.0",
  1879. "symfony/polyfill-mbstring": "^1.17"
  1880. },
  1881. "require-dev": {
  1882. "composer/xdebug-handler": "^1.4 || ^2.0",
  1883. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1884. },
  1885. "bin": [
  1886. "bin/jp.php"
  1887. ],
  1888. "type": "library",
  1889. "extra": {
  1890. "branch-alias": {
  1891. "dev-master": "2.6-dev"
  1892. }
  1893. },
  1894. "autoload": {
  1895. "files": [
  1896. "src/JmesPath.php"
  1897. ],
  1898. "psr-4": {
  1899. "JmesPath\\": "src/"
  1900. }
  1901. },
  1902. "notification-url": "https://packagist.org/downloads/",
  1903. "license": [
  1904. "MIT"
  1905. ],
  1906. "authors": [
  1907. {
  1908. "name": "Michael Dowling",
  1909. "email": "mtdowling@gmail.com",
  1910. "homepage": "https://github.com/mtdowling"
  1911. }
  1912. ],
  1913. "description": "Declaratively specify how to extract elements from a JSON document",
  1914. "keywords": [
  1915. "json",
  1916. "jsonpath"
  1917. ],
  1918. "time": "2021-06-14T00:11:39+00:00"
  1919. },
  1920. {
  1921. "name": "myclabs/php-enum",
  1922. "version": "1.7.7",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/myclabs/php-enum.git",
  1926. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  1931. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  1932. "shasum": ""
  1933. },
  1934. "require": {
  1935. "ext-json": "*",
  1936. "php": ">=7.1"
  1937. },
  1938. "require-dev": {
  1939. "phpunit/phpunit": "^7",
  1940. "squizlabs/php_codesniffer": "1.*",
  1941. "vimeo/psalm": "^3.8"
  1942. },
  1943. "type": "library",
  1944. "autoload": {
  1945. "psr-4": {
  1946. "MyCLabs\\Enum\\": "src/"
  1947. }
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "PHP Enum contributors",
  1956. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1957. }
  1958. ],
  1959. "description": "PHP Enum implementation",
  1960. "homepage": "http://github.com/myclabs/php-enum",
  1961. "keywords": [
  1962. "enum"
  1963. ],
  1964. "time": "2020-11-14T18:14:52+00:00"
  1965. },
  1966. {
  1967. "name": "nesbot/carbon",
  1968. "version": "2.68.1",
  1969. "source": {
  1970. "type": "git",
  1971. "url": "https://github.com/briannesbitt/Carbon.git",
  1972. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
  1973. },
  1974. "dist": {
  1975. "type": "zip",
  1976. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  1977. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  1978. "shasum": ""
  1979. },
  1980. "require": {
  1981. "ext-json": "*",
  1982. "php": "^7.1.8 || ^8.0",
  1983. "symfony/polyfill-mbstring": "^1.0",
  1984. "symfony/polyfill-php80": "^1.16",
  1985. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1986. },
  1987. "require-dev": {
  1988. "doctrine/dbal": "^2.0 || ^3.1.4",
  1989. "doctrine/orm": "^2.7",
  1990. "friendsofphp/php-cs-fixer": "^3.0",
  1991. "kylekatarnls/multi-tester": "^2.0",
  1992. "ondrejmirtes/better-reflection": "*",
  1993. "phpmd/phpmd": "^2.9",
  1994. "phpstan/extension-installer": "^1.0",
  1995. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1996. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1997. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1998. "squizlabs/php_codesniffer": "^3.4"
  1999. },
  2000. "bin": [
  2001. "bin/carbon"
  2002. ],
  2003. "type": "library",
  2004. "extra": {
  2005. "branch-alias": {
  2006. "dev-3.x": "3.x-dev",
  2007. "dev-master": "2.x-dev"
  2008. },
  2009. "laravel": {
  2010. "providers": [
  2011. "Carbon\\Laravel\\ServiceProvider"
  2012. ]
  2013. },
  2014. "phpstan": {
  2015. "includes": [
  2016. "extension.neon"
  2017. ]
  2018. }
  2019. },
  2020. "autoload": {
  2021. "psr-4": {
  2022. "Carbon\\": "src/Carbon/"
  2023. }
  2024. },
  2025. "notification-url": "https://packagist.org/downloads/",
  2026. "license": [
  2027. "MIT"
  2028. ],
  2029. "authors": [
  2030. {
  2031. "name": "Brian Nesbitt",
  2032. "email": "brian@nesbot.com",
  2033. "homepage": "https://markido.com"
  2034. },
  2035. {
  2036. "name": "kylekatarnls",
  2037. "homepage": "https://github.com/kylekatarnls"
  2038. }
  2039. ],
  2040. "description": "An API extension for DateTime that supports 281 different languages.",
  2041. "homepage": "https://carbon.nesbot.com",
  2042. "keywords": [
  2043. "date",
  2044. "datetime",
  2045. "time"
  2046. ],
  2047. "time": "2023-06-20T18:29:04+00:00"
  2048. },
  2049. {
  2050. "name": "overtrue/flysystem-cos",
  2051. "version": "2.1.2",
  2052. "source": {
  2053. "type": "git",
  2054. "url": "https://github.com/overtrue/flysystem-cos.git",
  2055. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff"
  2056. },
  2057. "dist": {
  2058. "type": "zip",
  2059. "url": "https://api.github.com/repos/overtrue/flysystem-cos/zipball/f6985f38f3c76a9be962f404f127b7222a9b5fff",
  2060. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff",
  2061. "shasum": ""
  2062. },
  2063. "require": {
  2064. "guzzlehttp/guzzle": "^6.3|^7.0",
  2065. "league/flysystem": "^1.0",
  2066. "php": ">=7.0",
  2067. "qcloud/cos-sdk-v5": "^2.0.0"
  2068. },
  2069. "require-dev": {
  2070. "mockery/mockery": "~1.0",
  2071. "php": ">=7.1",
  2072. "phpunit/phpunit": "^8.0"
  2073. },
  2074. "type": "library",
  2075. "autoload": {
  2076. "psr-4": {
  2077. "Overtrue\\Flysystem\\Cos\\": "src"
  2078. }
  2079. },
  2080. "notification-url": "https://packagist.org/downloads/",
  2081. "license": [
  2082. "MIT"
  2083. ],
  2084. "authors": [
  2085. {
  2086. "name": "overtrue",
  2087. "email": "i@overtrue.me"
  2088. }
  2089. ],
  2090. "description": "Flysystem adapter for the QCloud COS storage.",
  2091. "time": "2020-10-22T10:28:58+00:00"
  2092. },
  2093. {
  2094. "name": "overtrue/pinyin",
  2095. "version": "4.1.0",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/overtrue/pinyin.git",
  2099. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  2104. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  2105. "shasum": ""
  2106. },
  2107. "require": {
  2108. "php": ">=7.1"
  2109. },
  2110. "require-dev": {
  2111. "brainmaestro/composer-git-hooks": "^2.7",
  2112. "friendsofphp/php-cs-fixer": "^2.16",
  2113. "phpunit/phpunit": "~8.0"
  2114. },
  2115. "type": "library",
  2116. "extra": {
  2117. "hooks": {
  2118. "pre-commit": [
  2119. "composer test",
  2120. "composer fix-style"
  2121. ],
  2122. "pre-push": [
  2123. "composer test",
  2124. "composer check-style"
  2125. ]
  2126. }
  2127. },
  2128. "autoload": {
  2129. "files": [
  2130. "src/const.php"
  2131. ],
  2132. "psr-4": {
  2133. "Overtrue\\Pinyin\\": "src/"
  2134. }
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "overtrue",
  2143. "email": "anzhengchao@gmail.com",
  2144. "homepage": "http://github.com/overtrue"
  2145. }
  2146. ],
  2147. "description": "Chinese to pinyin translator.",
  2148. "homepage": "https://github.com/overtrue/pinyin",
  2149. "keywords": [
  2150. "Chinese",
  2151. "Pinyin",
  2152. "cn2pinyin"
  2153. ],
  2154. "time": "2023-04-27T10:17:12+00:00"
  2155. },
  2156. {
  2157. "name": "php-ffmpeg/php-ffmpeg",
  2158. "version": "v1.3.2",
  2159. "source": {
  2160. "type": "git",
  2161. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  2162. "reference": "8e74bdc07ad200da7a6cfb21ec2652875e4368e0"
  2163. },
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/8e74bdc07ad200da7a6cfb21ec2652875e4368e0",
  2167. "reference": "8e74bdc07ad200da7a6cfb21ec2652875e4368e0",
  2168. "shasum": ""
  2169. },
  2170. "require": {
  2171. "evenement/evenement": "^3.0",
  2172. "php": "^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4",
  2173. "psr/log": "^1.0 || ^2.0 || ^3.0",
  2174. "spatie/temporary-directory": "^2.0",
  2175. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  2176. "symfony/process": "^5.4 || ^6.0 || ^7.0"
  2177. },
  2178. "require-dev": {
  2179. "mockery/mockery": "^1.5",
  2180. "phpunit/phpunit": "^9.5.10 || ^10.0"
  2181. },
  2182. "suggest": {
  2183. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  2184. },
  2185. "type": "library",
  2186. "autoload": {
  2187. "psr-4": {
  2188. "FFMpeg\\": "src/FFMpeg",
  2189. "Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
  2190. }
  2191. },
  2192. "notification-url": "https://packagist.org/downloads/",
  2193. "license": [
  2194. "MIT"
  2195. ],
  2196. "authors": [
  2197. {
  2198. "name": "Romain Neutron",
  2199. "email": "imprec@gmail.com",
  2200. "homepage": "http://www.lickmychip.com/"
  2201. },
  2202. {
  2203. "name": "Phraseanet Team",
  2204. "email": "info@alchemy.fr",
  2205. "homepage": "http://www.phraseanet.com/"
  2206. },
  2207. {
  2208. "name": "Patrik Karisch",
  2209. "email": "patrik@karisch.guru",
  2210. "homepage": "http://www.karisch.guru"
  2211. },
  2212. {
  2213. "name": "Romain Biard",
  2214. "email": "romain.biard@gmail.com",
  2215. "homepage": "https://www.strime.io/"
  2216. },
  2217. {
  2218. "name": "Jens Hausdorf",
  2219. "email": "hello@jens-hausdorf.de",
  2220. "homepage": "https://jens-hausdorf.de"
  2221. },
  2222. {
  2223. "name": "Pascal Baljet",
  2224. "email": "pascal@protone.media",
  2225. "homepage": "https://protone.media"
  2226. }
  2227. ],
  2228. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  2229. "keywords": [
  2230. "audio",
  2231. "audio processing",
  2232. "avconv",
  2233. "avprobe",
  2234. "ffmpeg",
  2235. "ffprobe",
  2236. "video",
  2237. "video processing"
  2238. ],
  2239. "support": {
  2240. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  2241. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v1.3.2"
  2242. },
  2243. "time": "2025-04-01T20:36:46+00:00"
  2244. },
  2245. {
  2246. "name": "psr/cache",
  2247. "version": "1.0.1",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/php-fig/cache.git",
  2251. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2256. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2257. "shasum": ""
  2258. },
  2259. "require": {
  2260. "php": ">=5.3.0"
  2261. },
  2262. "type": "library",
  2263. "extra": {
  2264. "branch-alias": {
  2265. "dev-master": "1.0.x-dev"
  2266. }
  2267. },
  2268. "autoload": {
  2269. "psr-4": {
  2270. "Psr\\Cache\\": "src/"
  2271. }
  2272. },
  2273. "notification-url": "https://packagist.org/downloads/",
  2274. "license": [
  2275. "MIT"
  2276. ],
  2277. "authors": [
  2278. {
  2279. "name": "PHP-FIG",
  2280. "homepage": "http://www.php-fig.org/"
  2281. }
  2282. ],
  2283. "description": "Common interface for caching libraries",
  2284. "keywords": [
  2285. "cache",
  2286. "psr",
  2287. "psr-6"
  2288. ],
  2289. "support": {
  2290. "source": "https://github.com/php-fig/cache/tree/master"
  2291. },
  2292. "time": "2016-08-06T20:24:11+00:00"
  2293. },
  2294. {
  2295. "name": "psr/container",
  2296. "version": "1.1.2",
  2297. "source": {
  2298. "type": "git",
  2299. "url": "https://github.com/php-fig/container.git",
  2300. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2301. },
  2302. "dist": {
  2303. "type": "zip",
  2304. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2305. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2306. "shasum": ""
  2307. },
  2308. "require": {
  2309. "php": ">=7.4.0"
  2310. },
  2311. "type": "library",
  2312. "autoload": {
  2313. "psr-4": {
  2314. "Psr\\Container\\": "src/"
  2315. }
  2316. },
  2317. "notification-url": "https://packagist.org/downloads/",
  2318. "license": [
  2319. "MIT"
  2320. ],
  2321. "authors": [
  2322. {
  2323. "name": "PHP-FIG",
  2324. "homepage": "https://www.php-fig.org/"
  2325. }
  2326. ],
  2327. "description": "Common Container Interface (PHP FIG PSR-11)",
  2328. "homepage": "https://github.com/php-fig/container",
  2329. "keywords": [
  2330. "PSR-11",
  2331. "container",
  2332. "container-interface",
  2333. "container-interop",
  2334. "psr"
  2335. ],
  2336. "support": {
  2337. "issues": "https://github.com/php-fig/container/issues",
  2338. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2339. },
  2340. "time": "2021-11-05T16:50:12+00:00"
  2341. },
  2342. {
  2343. "name": "psr/http-message",
  2344. "version": "1.1",
  2345. "source": {
  2346. "type": "git",
  2347. "url": "https://github.com/php-fig/http-message.git",
  2348. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2349. },
  2350. "dist": {
  2351. "type": "zip",
  2352. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2353. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2354. "shasum": ""
  2355. },
  2356. "require": {
  2357. "php": "^7.2 || ^8.0"
  2358. },
  2359. "type": "library",
  2360. "extra": {
  2361. "branch-alias": {
  2362. "dev-master": "1.1.x-dev"
  2363. }
  2364. },
  2365. "autoload": {
  2366. "psr-4": {
  2367. "Psr\\Http\\Message\\": "src/"
  2368. }
  2369. },
  2370. "notification-url": "https://packagist.org/downloads/",
  2371. "license": [
  2372. "MIT"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "PHP-FIG",
  2377. "homepage": "http://www.php-fig.org/"
  2378. }
  2379. ],
  2380. "description": "Common interface for HTTP messages",
  2381. "homepage": "https://github.com/php-fig/http-message",
  2382. "keywords": [
  2383. "http",
  2384. "http-message",
  2385. "psr",
  2386. "psr-7",
  2387. "request",
  2388. "response"
  2389. ],
  2390. "support": {
  2391. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2392. },
  2393. "time": "2023-04-04T09:50:52+00:00"
  2394. },
  2395. {
  2396. "name": "psr/log",
  2397. "version": "1.1.4",
  2398. "source": {
  2399. "type": "git",
  2400. "url": "https://github.com/php-fig/log.git",
  2401. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2402. },
  2403. "dist": {
  2404. "type": "zip",
  2405. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2406. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2407. "shasum": ""
  2408. },
  2409. "require": {
  2410. "php": ">=5.3.0"
  2411. },
  2412. "type": "library",
  2413. "extra": {
  2414. "branch-alias": {
  2415. "dev-master": "1.1.x-dev"
  2416. }
  2417. },
  2418. "autoload": {
  2419. "psr-4": {
  2420. "Psr\\Log\\": "Psr/Log/"
  2421. }
  2422. },
  2423. "notification-url": "https://packagist.org/downloads/",
  2424. "license": [
  2425. "MIT"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "PHP-FIG",
  2430. "homepage": "https://www.php-fig.org/"
  2431. }
  2432. ],
  2433. "description": "Common interface for logging libraries",
  2434. "homepage": "https://github.com/php-fig/log",
  2435. "keywords": [
  2436. "log",
  2437. "psr",
  2438. "psr-3"
  2439. ],
  2440. "support": {
  2441. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2442. },
  2443. "time": "2021-05-03T11:20:27+00:00"
  2444. },
  2445. {
  2446. "name": "psr/simple-cache",
  2447. "version": "1.0.1",
  2448. "source": {
  2449. "type": "git",
  2450. "url": "https://github.com/php-fig/simple-cache.git",
  2451. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2452. },
  2453. "dist": {
  2454. "type": "zip",
  2455. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2456. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2457. "shasum": ""
  2458. },
  2459. "require": {
  2460. "php": ">=5.3.0"
  2461. },
  2462. "type": "library",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-master": "1.0.x-dev"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Psr\\SimpleCache\\": "src/"
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "PHP-FIG",
  2480. "homepage": "http://www.php-fig.org/"
  2481. }
  2482. ],
  2483. "description": "Common interfaces for simple caching",
  2484. "keywords": [
  2485. "cache",
  2486. "caching",
  2487. "psr",
  2488. "psr-16",
  2489. "simple-cache"
  2490. ],
  2491. "support": {
  2492. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2493. },
  2494. "time": "2017-10-23T01:57:42+00:00"
  2495. },
  2496. {
  2497. "name": "qcloud/cos-sdk-v5",
  2498. "version": "v2.6.3",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2502. "reference": "dd1b7a096cbdcafc9de265cb2bb1b4222ac60136"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/dd1b7a096cbdcafc9de265cb2bb1b4222ac60136",
  2507. "reference": "dd1b7a096cbdcafc9de265cb2bb1b4222ac60136",
  2508. "shasum": ""
  2509. },
  2510. "require": {
  2511. "ext-curl": "*",
  2512. "ext-json": "*",
  2513. "ext-mbstring": "*",
  2514. "ext-simplexml": "*",
  2515. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  2516. "guzzlehttp/guzzle-services": "^1.1",
  2517. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  2518. "php": ">=5.6"
  2519. },
  2520. "type": "library",
  2521. "extra": {
  2522. "branch-alias": {
  2523. "dev-master": "2.4-dev"
  2524. }
  2525. },
  2526. "autoload": {
  2527. "files": [
  2528. "src/Common.php"
  2529. ],
  2530. "psr-4": {
  2531. "Qcloud\\Cos\\": "src/"
  2532. }
  2533. },
  2534. "notification-url": "https://packagist.org/downloads/",
  2535. "license": [
  2536. "MIT"
  2537. ],
  2538. "authors": [
  2539. {
  2540. "name": "yaozongyou",
  2541. "email": "yaozongyou@vip.qq.com"
  2542. },
  2543. {
  2544. "name": "lewzylu",
  2545. "email": "327874225@qq.com"
  2546. },
  2547. {
  2548. "name": "tuunalai",
  2549. "email": "550566181@qq.com"
  2550. }
  2551. ],
  2552. "description": "PHP SDK for QCloud COS",
  2553. "keywords": [
  2554. "cos",
  2555. "php",
  2556. "qcloud"
  2557. ],
  2558. "time": "2023-06-14T03:18:14+00:00"
  2559. },
  2560. {
  2561. "name": "qcloudsms/qcloudsms_php",
  2562. "version": "v0.1.4",
  2563. "source": {
  2564. "type": "git",
  2565. "url": "https://github.com/qcloudsms/qcloudsms_php.git",
  2566. "reference": "48822045772d343b93c3d505d8a187cd51153c5a"
  2567. },
  2568. "dist": {
  2569. "type": "zip",
  2570. "url": "https://mirrors.huaweicloud.com/repository/php/qcloudsms/qcloudsms_php/v0.1.4/qcloudsms-qcloudsms_php-v0.1.4.zip",
  2571. "reference": "48822045772d343b93c3d505d8a187cd51153c5a",
  2572. "shasum": ""
  2573. },
  2574. "require-dev": {
  2575. "sami/sami": "dev-master"
  2576. },
  2577. "type": "library",
  2578. "autoload": {
  2579. "psr-4": {
  2580. "Qcloud\\Sms\\": "src/"
  2581. }
  2582. },
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "description": "qcloud sms php sdk",
  2587. "keywords": [
  2588. "php",
  2589. "qcloud",
  2590. "sdk",
  2591. "sms"
  2592. ],
  2593. "time": "2018-09-19T07:19:17+00:00"
  2594. },
  2595. {
  2596. "name": "qeq66/jwt",
  2597. "version": "3.3.5",
  2598. "source": {
  2599. "type": "git",
  2600. "url": "https://github.com/qeq66/jwt.git",
  2601. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0"
  2602. },
  2603. "dist": {
  2604. "type": "zip",
  2605. "url": "https://mirrors.huaweicloud.com/repository/php/qeq66/jwt/3.3.5/qeq66-jwt-3.3.5.zip",
  2606. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0",
  2607. "shasum": ""
  2608. },
  2609. "require": {
  2610. "ext-mbstring": "*",
  2611. "ext-openssl": "*",
  2612. "php": ">=5.6"
  2613. },
  2614. "require-dev": {
  2615. "mikey179/vfsstream": "~1.5",
  2616. "phpmd/phpmd": "~2.2",
  2617. "phpunit/php-invoker": "~1.1",
  2618. "phpunit/phpunit": "^5.7 || ^7.3",
  2619. "squizlabs/php_codesniffer": "~2.3"
  2620. },
  2621. "type": "library",
  2622. "extra": {
  2623. "branch-alias": {
  2624. "dev-master": "3.1-dev"
  2625. }
  2626. },
  2627. "autoload": {
  2628. "psr-4": {
  2629. "Lcobucci\\JWT\\": "src"
  2630. }
  2631. },
  2632. "license": [
  2633. "BSD-3-Clause"
  2634. ],
  2635. "authors": [
  2636. {
  2637. "name": "Luís Otávio Cobucci Oblonczyk",
  2638. "email": "lcobucci@gmail.com",
  2639. "role": "Developer"
  2640. }
  2641. ],
  2642. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2643. "keywords": [
  2644. "JWS",
  2645. "jwt"
  2646. ],
  2647. "time": "2022-07-11T08:31:22+00:00"
  2648. },
  2649. {
  2650. "name": "qiniu/php-sdk",
  2651. "version": "v7.9.0",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://github.com/qiniu/php-sdk.git",
  2655. "reference": "3c0ebeee6a7439a0d2874f24b56dfe43545a1d2e"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/3c0ebeee6a7439a0d2874f24b56dfe43545a1d2e",
  2660. "reference": "3c0ebeee6a7439a0d2874f24b56dfe43545a1d2e",
  2661. "shasum": ""
  2662. },
  2663. "require": {
  2664. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  2665. "php": ">=5.3.3"
  2666. },
  2667. "require-dev": {
  2668. "paragonie/random_compat": ">=2",
  2669. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  2670. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  2671. },
  2672. "type": "library",
  2673. "autoload": {
  2674. "files": [
  2675. "src/Qiniu/functions.php"
  2676. ],
  2677. "psr-4": {
  2678. "Qiniu\\": "src/Qiniu"
  2679. }
  2680. },
  2681. "notification-url": "https://packagist.org/downloads/",
  2682. "license": [
  2683. "MIT"
  2684. ],
  2685. "authors": [
  2686. {
  2687. "name": "Qiniu",
  2688. "email": "sdk@qiniu.com",
  2689. "homepage": "http://www.qiniu.com"
  2690. }
  2691. ],
  2692. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2693. "homepage": "http://developer.qiniu.com/",
  2694. "keywords": [
  2695. "cloud",
  2696. "qiniu",
  2697. "sdk",
  2698. "storage"
  2699. ],
  2700. "time": "2023-05-06T04:36:16+00:00"
  2701. },
  2702. {
  2703. "name": "ralouphie/getallheaders",
  2704. "version": "3.0.3",
  2705. "source": {
  2706. "type": "git",
  2707. "url": "https://github.com/ralouphie/getallheaders.git",
  2708. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2709. },
  2710. "dist": {
  2711. "type": "zip",
  2712. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2713. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2714. "shasum": ""
  2715. },
  2716. "require": {
  2717. "php": ">=5.6"
  2718. },
  2719. "require-dev": {
  2720. "php-coveralls/php-coveralls": "^2.1",
  2721. "phpunit/phpunit": "^5 || ^6.5"
  2722. },
  2723. "type": "library",
  2724. "autoload": {
  2725. "files": [
  2726. "src/getallheaders.php"
  2727. ]
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "MIT"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "Ralph Khattar",
  2736. "email": "ralph.khattar@gmail.com"
  2737. }
  2738. ],
  2739. "description": "A polyfill for getallheaders.",
  2740. "support": {
  2741. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2742. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2743. },
  2744. "time": "2019-03-08T08:55:37+00:00"
  2745. },
  2746. {
  2747. "name": "rize/uri-template",
  2748. "version": "0.3.5",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/rize/UriTemplate.git",
  2752. "reference": "5ed4ba8ea34af84485dea815d4b6b620794d1168"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/5ed4ba8ea34af84485dea815d4b6b620794d1168",
  2757. "reference": "5ed4ba8ea34af84485dea815d4b6b620794d1168",
  2758. "shasum": ""
  2759. },
  2760. "require": {
  2761. "php": ">=5.3.0"
  2762. },
  2763. "require-dev": {
  2764. "phpunit/phpunit": "~4.8.36"
  2765. },
  2766. "type": "library",
  2767. "autoload": {
  2768. "psr-4": {
  2769. "Rize\\": "src/Rize"
  2770. }
  2771. },
  2772. "notification-url": "https://packagist.org/downloads/",
  2773. "license": [
  2774. "MIT"
  2775. ],
  2776. "authors": [
  2777. {
  2778. "name": "Marut K",
  2779. "homepage": "http://twitter.com/rezigned"
  2780. }
  2781. ],
  2782. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  2783. "keywords": [
  2784. "RFC 6570",
  2785. "template",
  2786. "uri"
  2787. ],
  2788. "support": {
  2789. "issues": "https://github.com/rize/UriTemplate/issues",
  2790. "source": "https://github.com/rize/UriTemplate/tree/0.3.5"
  2791. },
  2792. "funding": [
  2793. {
  2794. "url": "https://www.paypal.me/rezigned",
  2795. "type": "custom"
  2796. },
  2797. {
  2798. "url": "https://github.com/rezigned",
  2799. "type": "github"
  2800. },
  2801. {
  2802. "url": "https://opencollective.com/rize-uri-template",
  2803. "type": "open_collective"
  2804. }
  2805. ],
  2806. "time": "2022-10-12T17:22:51+00:00"
  2807. },
  2808. {
  2809. "name": "singka/singka-sms",
  2810. "version": "v1.6",
  2811. "source": {
  2812. "type": "git",
  2813. "url": "https://github.com/SingKa-TECH/singka-sms.git",
  2814. "reference": "8db3543dfb7f28851b94de99dfe9b762f0b9b6a4"
  2815. },
  2816. "dist": {
  2817. "type": "zip",
  2818. "url": "https://mirrors.huaweicloud.com/repository/php/singka/singka-sms/v1.6/singka-singka-sms-v1.6.zip",
  2819. "reference": "8db3543dfb7f28851b94de99dfe9b762f0b9b6a4",
  2820. "shasum": ""
  2821. },
  2822. "require": {
  2823. "alibabacloud/client": "^1.5",
  2824. "guzzlehttp/guzzle": "~6.0@dev",
  2825. "php": ">=7.0",
  2826. "qcloudsms/qcloudsms_php": "0.1.*",
  2827. "qiniu/php-sdk": "^7.2",
  2828. "singka/ucloud-sms": "^1.8"
  2829. },
  2830. "type": "library",
  2831. "extra": {
  2832. "think": {
  2833. "config": {
  2834. "sms": "config/config.php"
  2835. }
  2836. }
  2837. },
  2838. "autoload": {
  2839. "psr-4": {
  2840. "SingKa\\Sms\\": "src/"
  2841. }
  2842. },
  2843. "license": [
  2844. "MIT"
  2845. ],
  2846. "authors": [
  2847. {
  2848. "name": "宁波晟嘉网络科技有限公司 夏慧新",
  2849. "email": "shycomet@singka.email"
  2850. }
  2851. ],
  2852. "description": "适用于ThinkPHP6.0的各种短信接口集成服务,本项目集成了各大云服务厂商的短信业务平台,支持ThinkPHP5.0、ThinkPHP5.1和ThinkPHP6.0,由宁波晟嘉网络科技有限公司维护,目前支持阿里云、腾讯云、七牛云、又拍云、Ucloud和华为云。",
  2853. "time": "2020-07-02T05:07:00+00:00"
  2854. },
  2855. {
  2856. "name": "singka/ucloud-sms",
  2857. "version": "v1.8",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/SingKa-TECH/ucloud-sms.git",
  2861. "reference": "7c4ae42e9c7b26b4db7e6340ff03f68b15e3b0d8"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://mirrors.huaweicloud.com/repository/php/singka/ucloud-sms/v1.8/singka-ucloud-sms-v1.8.zip",
  2866. "reference": "7c4ae42e9c7b26b4db7e6340ff03f68b15e3b0d8",
  2867. "shasum": ""
  2868. },
  2869. "require": {
  2870. "php": ">=5.6"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "think": {
  2875. "config": {
  2876. "usms": "config/config.php"
  2877. }
  2878. }
  2879. },
  2880. "autoload": {
  2881. "psr-4": {
  2882. "Singka\\UcloudSms\\": "src/"
  2883. }
  2884. },
  2885. "license": [
  2886. "MIT"
  2887. ],
  2888. "authors": [
  2889. {
  2890. "name": "宁波晟嘉网络科技有限公司 夏慧新",
  2891. "email": "shycomet@singka.email"
  2892. }
  2893. ],
  2894. "description": "ThinkPHP系列Ucloud的短信接口,支持ThinkPHP6、ThinkPHP5.1和ThinkPHP5.0",
  2895. "time": "2020-03-24T16:24:09+00:00"
  2896. },
  2897. {
  2898. "name": "spatie/temporary-directory",
  2899. "version": "2.3.0",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/spatie/temporary-directory.git",
  2903. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  2908. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "php": "^8.0"
  2913. },
  2914. "require-dev": {
  2915. "phpunit/phpunit": "^9.5"
  2916. },
  2917. "type": "library",
  2918. "autoload": {
  2919. "psr-4": {
  2920. "Spatie\\TemporaryDirectory\\": "src"
  2921. }
  2922. },
  2923. "notification-url": "https://packagist.org/downloads/",
  2924. "license": [
  2925. "MIT"
  2926. ],
  2927. "authors": [
  2928. {
  2929. "name": "Alex Vanderbist",
  2930. "email": "alex@spatie.be",
  2931. "homepage": "https://spatie.be",
  2932. "role": "Developer"
  2933. }
  2934. ],
  2935. "description": "Easily create, use and destroy temporary directories",
  2936. "homepage": "https://github.com/spatie/temporary-directory",
  2937. "keywords": [
  2938. "php",
  2939. "spatie",
  2940. "temporary-directory"
  2941. ],
  2942. "support": {
  2943. "issues": "https://github.com/spatie/temporary-directory/issues",
  2944. "source": "https://github.com/spatie/temporary-directory/tree/2.3.0"
  2945. },
  2946. "funding": [
  2947. {
  2948. "url": "https://spatie.be/open-source/support-us",
  2949. "type": "custom"
  2950. },
  2951. {
  2952. "url": "https://github.com/spatie",
  2953. "type": "github"
  2954. }
  2955. ],
  2956. "time": "2025-01-13T13:04:43+00:00"
  2957. },
  2958. {
  2959. "name": "swiftmailer/swiftmailer",
  2960. "version": "v6.3.0",
  2961. "source": {
  2962. "type": "git",
  2963. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2964. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2965. },
  2966. "dist": {
  2967. "type": "zip",
  2968. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2969. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2970. "shasum": ""
  2971. },
  2972. "require": {
  2973. "egulias/email-validator": "^2.0|^3.1",
  2974. "php": ">=7.0.0",
  2975. "symfony/polyfill-iconv": "^1.0",
  2976. "symfony/polyfill-intl-idn": "^1.10",
  2977. "symfony/polyfill-mbstring": "^1.0"
  2978. },
  2979. "require-dev": {
  2980. "mockery/mockery": "^1.0",
  2981. "symfony/phpunit-bridge": "^4.4|^5.4"
  2982. },
  2983. "suggest": {
  2984. "ext-intl": "Needed to support internationalized email addresses"
  2985. },
  2986. "type": "library",
  2987. "extra": {
  2988. "branch-alias": {
  2989. "dev-master": "6.2-dev"
  2990. }
  2991. },
  2992. "autoload": {
  2993. "files": [
  2994. "lib/swift_required.php"
  2995. ]
  2996. },
  2997. "notification-url": "https://packagist.org/downloads/",
  2998. "license": [
  2999. "MIT"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "Chris Corbyn"
  3004. },
  3005. {
  3006. "name": "Fabien Potencier",
  3007. "email": "fabien@symfony.com"
  3008. }
  3009. ],
  3010. "description": "Swiftmailer, free feature-rich PHP mailer",
  3011. "homepage": "https://swiftmailer.symfony.com",
  3012. "keywords": [
  3013. "email",
  3014. "mail",
  3015. "mailer"
  3016. ],
  3017. "abandoned": "symfony/mailer",
  3018. "time": "2021-10-18T15:26:12+00:00"
  3019. },
  3020. {
  3021. "name": "symfony/cache",
  3022. "version": "v5.4.46",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/symfony/cache.git",
  3026. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/symfony/cache/zipball/0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  3031. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  3032. "shasum": ""
  3033. },
  3034. "require": {
  3035. "php": ">=7.2.5",
  3036. "psr/cache": "^1.0|^2.0",
  3037. "psr/log": "^1.1|^2|^3",
  3038. "symfony/cache-contracts": "^1.1.7|^2",
  3039. "symfony/deprecation-contracts": "^2.1|^3",
  3040. "symfony/polyfill-php73": "^1.9",
  3041. "symfony/polyfill-php80": "^1.16",
  3042. "symfony/service-contracts": "^1.1|^2|^3",
  3043. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  3044. },
  3045. "conflict": {
  3046. "doctrine/dbal": "<2.13.1",
  3047. "symfony/dependency-injection": "<4.4",
  3048. "symfony/http-kernel": "<4.4",
  3049. "symfony/var-dumper": "<4.4"
  3050. },
  3051. "provide": {
  3052. "psr/cache-implementation": "1.0|2.0",
  3053. "psr/simple-cache-implementation": "1.0|2.0",
  3054. "symfony/cache-implementation": "1.0|2.0"
  3055. },
  3056. "require-dev": {
  3057. "cache/integration-tests": "dev-master",
  3058. "doctrine/cache": "^1.6|^2.0",
  3059. "doctrine/dbal": "^2.13.1|^3|^4",
  3060. "predis/predis": "^1.1|^2.0",
  3061. "psr/simple-cache": "^1.0|^2.0",
  3062. "symfony/config": "^4.4|^5.0|^6.0",
  3063. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3064. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3065. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3066. "symfony/messenger": "^4.4|^5.0|^6.0",
  3067. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3068. },
  3069. "type": "library",
  3070. "autoload": {
  3071. "psr-4": {
  3072. "Symfony\\Component\\Cache\\": ""
  3073. },
  3074. "exclude-from-classmap": [
  3075. "/Tests/"
  3076. ]
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "authors": [
  3083. {
  3084. "name": "Nicolas Grekas",
  3085. "email": "p@tchwork.com"
  3086. },
  3087. {
  3088. "name": "Symfony Community",
  3089. "homepage": "https://symfony.com/contributors"
  3090. }
  3091. ],
  3092. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3093. "homepage": "https://symfony.com",
  3094. "keywords": [
  3095. "caching",
  3096. "psr6"
  3097. ],
  3098. "support": {
  3099. "source": "https://github.com/symfony/cache/tree/v5.4.46"
  3100. },
  3101. "funding": [
  3102. {
  3103. "url": "https://symfony.com/sponsor",
  3104. "type": "custom"
  3105. },
  3106. {
  3107. "url": "https://github.com/fabpot",
  3108. "type": "github"
  3109. },
  3110. {
  3111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3112. "type": "tidelift"
  3113. }
  3114. ],
  3115. "time": "2024-11-04T11:43:55+00:00"
  3116. },
  3117. {
  3118. "name": "symfony/cache-contracts",
  3119. "version": "v2.5.4",
  3120. "source": {
  3121. "type": "git",
  3122. "url": "https://github.com/symfony/cache-contracts.git",
  3123. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e"
  3124. },
  3125. "dist": {
  3126. "type": "zip",
  3127. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/517c3a3619dadfa6952c4651767fcadffb4df65e",
  3128. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e",
  3129. "shasum": ""
  3130. },
  3131. "require": {
  3132. "php": ">=7.2.5",
  3133. "psr/cache": "^1.0|^2.0|^3.0"
  3134. },
  3135. "suggest": {
  3136. "symfony/cache-implementation": ""
  3137. },
  3138. "type": "library",
  3139. "extra": {
  3140. "thanks": {
  3141. "url": "https://github.com/symfony/contracts",
  3142. "name": "symfony/contracts"
  3143. },
  3144. "branch-alias": {
  3145. "dev-main": "2.5-dev"
  3146. }
  3147. },
  3148. "autoload": {
  3149. "psr-4": {
  3150. "Symfony\\Contracts\\Cache\\": ""
  3151. }
  3152. },
  3153. "notification-url": "https://packagist.org/downloads/",
  3154. "license": [
  3155. "MIT"
  3156. ],
  3157. "authors": [
  3158. {
  3159. "name": "Nicolas Grekas",
  3160. "email": "p@tchwork.com"
  3161. },
  3162. {
  3163. "name": "Symfony Community",
  3164. "homepage": "https://symfony.com/contributors"
  3165. }
  3166. ],
  3167. "description": "Generic abstractions related to caching",
  3168. "homepage": "https://symfony.com",
  3169. "keywords": [
  3170. "abstractions",
  3171. "contracts",
  3172. "decoupling",
  3173. "interfaces",
  3174. "interoperability",
  3175. "standards"
  3176. ],
  3177. "support": {
  3178. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.4"
  3179. },
  3180. "funding": [
  3181. {
  3182. "url": "https://symfony.com/sponsor",
  3183. "type": "custom"
  3184. },
  3185. {
  3186. "url": "https://github.com/fabpot",
  3187. "type": "github"
  3188. },
  3189. {
  3190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3191. "type": "tidelift"
  3192. }
  3193. ],
  3194. "time": "2024-09-25T14:11:13+00:00"
  3195. },
  3196. {
  3197. "name": "symfony/deprecation-contracts",
  3198. "version": "v3.6.0",
  3199. "source": {
  3200. "type": "git",
  3201. "url": "https://github.com/symfony/deprecation-contracts.git",
  3202. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  3203. },
  3204. "dist": {
  3205. "type": "zip",
  3206. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3207. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  3208. "shasum": ""
  3209. },
  3210. "require": {
  3211. "php": ">=8.1"
  3212. },
  3213. "type": "library",
  3214. "extra": {
  3215. "thanks": {
  3216. "url": "https://github.com/symfony/contracts",
  3217. "name": "symfony/contracts"
  3218. },
  3219. "branch-alias": {
  3220. "dev-main": "3.6-dev"
  3221. }
  3222. },
  3223. "autoload": {
  3224. "files": [
  3225. "function.php"
  3226. ]
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Nicolas Grekas",
  3235. "email": "p@tchwork.com"
  3236. },
  3237. {
  3238. "name": "Symfony Community",
  3239. "homepage": "https://symfony.com/contributors"
  3240. }
  3241. ],
  3242. "description": "A generic function and convention to trigger deprecation notices",
  3243. "homepage": "https://symfony.com",
  3244. "support": {
  3245. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  3246. },
  3247. "funding": [
  3248. {
  3249. "url": "https://symfony.com/sponsor",
  3250. "type": "custom"
  3251. },
  3252. {
  3253. "url": "https://github.com/fabpot",
  3254. "type": "github"
  3255. },
  3256. {
  3257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3258. "type": "tidelift"
  3259. }
  3260. ],
  3261. "time": "2024-09-25T14:21:43+00:00"
  3262. },
  3263. {
  3264. "name": "symfony/polyfill-iconv",
  3265. "version": "v1.27.0",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/symfony/polyfill-iconv.git",
  3269. "reference": "927013f3aac555983a5059aada98e1907d842695"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  3274. "reference": "927013f3aac555983a5059aada98e1907d842695",
  3275. "shasum": ""
  3276. },
  3277. "require": {
  3278. "php": ">=7.1"
  3279. },
  3280. "provide": {
  3281. "ext-iconv": "*"
  3282. },
  3283. "suggest": {
  3284. "ext-iconv": "For best performance"
  3285. },
  3286. "type": "library",
  3287. "extra": {
  3288. "branch-alias": {
  3289. "dev-main": "1.27-dev"
  3290. },
  3291. "thanks": {
  3292. "name": "symfony/polyfill",
  3293. "url": "https://github.com/symfony/polyfill"
  3294. }
  3295. },
  3296. "autoload": {
  3297. "files": [
  3298. "bootstrap.php"
  3299. ],
  3300. "psr-4": {
  3301. "Symfony\\Polyfill\\Iconv\\": ""
  3302. }
  3303. },
  3304. "notification-url": "https://packagist.org/downloads/",
  3305. "license": [
  3306. "MIT"
  3307. ],
  3308. "authors": [
  3309. {
  3310. "name": "Nicolas Grekas",
  3311. "email": "p@tchwork.com"
  3312. },
  3313. {
  3314. "name": "Symfony Community",
  3315. "homepage": "https://symfony.com/contributors"
  3316. }
  3317. ],
  3318. "description": "Symfony polyfill for the Iconv extension",
  3319. "homepage": "https://symfony.com",
  3320. "keywords": [
  3321. "compatibility",
  3322. "iconv",
  3323. "polyfill",
  3324. "portable",
  3325. "shim"
  3326. ],
  3327. "time": "2022-11-03T14:55:06+00:00"
  3328. },
  3329. {
  3330. "name": "symfony/polyfill-intl-idn",
  3331. "version": "v1.33.0",
  3332. "source": {
  3333. "type": "git",
  3334. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3335. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  3336. },
  3337. "dist": {
  3338. "type": "zip",
  3339. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  3340. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  3341. "shasum": ""
  3342. },
  3343. "require": {
  3344. "php": ">=7.2",
  3345. "symfony/polyfill-intl-normalizer": "^1.10"
  3346. },
  3347. "suggest": {
  3348. "ext-intl": "For best performance"
  3349. },
  3350. "type": "library",
  3351. "extra": {
  3352. "thanks": {
  3353. "url": "https://github.com/symfony/polyfill",
  3354. "name": "symfony/polyfill"
  3355. }
  3356. },
  3357. "autoload": {
  3358. "files": [
  3359. "bootstrap.php"
  3360. ],
  3361. "psr-4": {
  3362. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3363. }
  3364. },
  3365. "notification-url": "https://packagist.org/downloads/",
  3366. "license": [
  3367. "MIT"
  3368. ],
  3369. "authors": [
  3370. {
  3371. "name": "Laurent Bassin",
  3372. "email": "laurent@bassin.info"
  3373. },
  3374. {
  3375. "name": "Trevor Rowbotham",
  3376. "email": "trevor.rowbotham@pm.me"
  3377. },
  3378. {
  3379. "name": "Symfony Community",
  3380. "homepage": "https://symfony.com/contributors"
  3381. }
  3382. ],
  3383. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3384. "homepage": "https://symfony.com",
  3385. "keywords": [
  3386. "compatibility",
  3387. "idn",
  3388. "intl",
  3389. "polyfill",
  3390. "portable",
  3391. "shim"
  3392. ],
  3393. "support": {
  3394. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  3395. },
  3396. "funding": [
  3397. {
  3398. "url": "https://symfony.com/sponsor",
  3399. "type": "custom"
  3400. },
  3401. {
  3402. "url": "https://github.com/fabpot",
  3403. "type": "github"
  3404. },
  3405. {
  3406. "url": "https://github.com/nicolas-grekas",
  3407. "type": "github"
  3408. },
  3409. {
  3410. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3411. "type": "tidelift"
  3412. }
  3413. ],
  3414. "time": "2024-09-10T14:38:51+00:00"
  3415. },
  3416. {
  3417. "name": "symfony/polyfill-intl-normalizer",
  3418. "version": "v1.33.0",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3422. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  3427. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "php": ">=7.2"
  3432. },
  3433. "suggest": {
  3434. "ext-intl": "For best performance"
  3435. },
  3436. "type": "library",
  3437. "extra": {
  3438. "thanks": {
  3439. "url": "https://github.com/symfony/polyfill",
  3440. "name": "symfony/polyfill"
  3441. }
  3442. },
  3443. "autoload": {
  3444. "files": [
  3445. "bootstrap.php"
  3446. ],
  3447. "psr-4": {
  3448. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3449. },
  3450. "classmap": [
  3451. "Resources/stubs"
  3452. ]
  3453. },
  3454. "notification-url": "https://packagist.org/downloads/",
  3455. "license": [
  3456. "MIT"
  3457. ],
  3458. "authors": [
  3459. {
  3460. "name": "Nicolas Grekas",
  3461. "email": "p@tchwork.com"
  3462. },
  3463. {
  3464. "name": "Symfony Community",
  3465. "homepage": "https://symfony.com/contributors"
  3466. }
  3467. ],
  3468. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3469. "homepage": "https://symfony.com",
  3470. "keywords": [
  3471. "compatibility",
  3472. "intl",
  3473. "normalizer",
  3474. "polyfill",
  3475. "portable",
  3476. "shim"
  3477. ],
  3478. "support": {
  3479. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  3480. },
  3481. "funding": [
  3482. {
  3483. "url": "https://symfony.com/sponsor",
  3484. "type": "custom"
  3485. },
  3486. {
  3487. "url": "https://github.com/fabpot",
  3488. "type": "github"
  3489. },
  3490. {
  3491. "url": "https://github.com/nicolas-grekas",
  3492. "type": "github"
  3493. },
  3494. {
  3495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3496. "type": "tidelift"
  3497. }
  3498. ],
  3499. "time": "2024-09-09T11:45:10+00:00"
  3500. },
  3501. {
  3502. "name": "symfony/polyfill-mbstring",
  3503. "version": "v1.33.0",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3507. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3512. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "ext-iconv": "*",
  3517. "php": ">=7.2"
  3518. },
  3519. "provide": {
  3520. "ext-mbstring": "*"
  3521. },
  3522. "suggest": {
  3523. "ext-mbstring": "For best performance"
  3524. },
  3525. "type": "library",
  3526. "extra": {
  3527. "thanks": {
  3528. "url": "https://github.com/symfony/polyfill",
  3529. "name": "symfony/polyfill"
  3530. }
  3531. },
  3532. "autoload": {
  3533. "files": [
  3534. "bootstrap.php"
  3535. ],
  3536. "psr-4": {
  3537. "Symfony\\Polyfill\\Mbstring\\": ""
  3538. }
  3539. },
  3540. "notification-url": "https://packagist.org/downloads/",
  3541. "license": [
  3542. "MIT"
  3543. ],
  3544. "authors": [
  3545. {
  3546. "name": "Nicolas Grekas",
  3547. "email": "p@tchwork.com"
  3548. },
  3549. {
  3550. "name": "Symfony Community",
  3551. "homepage": "https://symfony.com/contributors"
  3552. }
  3553. ],
  3554. "description": "Symfony polyfill for the Mbstring extension",
  3555. "homepage": "https://symfony.com",
  3556. "keywords": [
  3557. "compatibility",
  3558. "mbstring",
  3559. "polyfill",
  3560. "portable",
  3561. "shim"
  3562. ],
  3563. "support": {
  3564. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  3565. },
  3566. "funding": [
  3567. {
  3568. "url": "https://symfony.com/sponsor",
  3569. "type": "custom"
  3570. },
  3571. {
  3572. "url": "https://github.com/fabpot",
  3573. "type": "github"
  3574. },
  3575. {
  3576. "url": "https://github.com/nicolas-grekas",
  3577. "type": "github"
  3578. },
  3579. {
  3580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3581. "type": "tidelift"
  3582. }
  3583. ],
  3584. "time": "2024-12-23T08:48:59+00:00"
  3585. },
  3586. {
  3587. "name": "symfony/polyfill-php73",
  3588. "version": "v1.33.0",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/symfony/polyfill-php73.git",
  3592. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  3597. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  3598. "shasum": ""
  3599. },
  3600. "require": {
  3601. "php": ">=7.2"
  3602. },
  3603. "type": "library",
  3604. "extra": {
  3605. "thanks": {
  3606. "url": "https://github.com/symfony/polyfill",
  3607. "name": "symfony/polyfill"
  3608. }
  3609. },
  3610. "autoload": {
  3611. "files": [
  3612. "bootstrap.php"
  3613. ],
  3614. "psr-4": {
  3615. "Symfony\\Polyfill\\Php73\\": ""
  3616. },
  3617. "classmap": [
  3618. "Resources/stubs"
  3619. ]
  3620. },
  3621. "notification-url": "https://packagist.org/downloads/",
  3622. "license": [
  3623. "MIT"
  3624. ],
  3625. "authors": [
  3626. {
  3627. "name": "Nicolas Grekas",
  3628. "email": "p@tchwork.com"
  3629. },
  3630. {
  3631. "name": "Symfony Community",
  3632. "homepage": "https://symfony.com/contributors"
  3633. }
  3634. ],
  3635. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3636. "homepage": "https://symfony.com",
  3637. "keywords": [
  3638. "compatibility",
  3639. "polyfill",
  3640. "portable",
  3641. "shim"
  3642. ],
  3643. "support": {
  3644. "source": "https://github.com/symfony/polyfill-php73/tree/v1.33.0"
  3645. },
  3646. "funding": [
  3647. {
  3648. "url": "https://symfony.com/sponsor",
  3649. "type": "custom"
  3650. },
  3651. {
  3652. "url": "https://github.com/fabpot",
  3653. "type": "github"
  3654. },
  3655. {
  3656. "url": "https://github.com/nicolas-grekas",
  3657. "type": "github"
  3658. },
  3659. {
  3660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3661. "type": "tidelift"
  3662. }
  3663. ],
  3664. "time": "2024-09-09T11:45:10+00:00"
  3665. },
  3666. {
  3667. "name": "symfony/polyfill-php80",
  3668. "version": "v1.33.0",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://github.com/symfony/polyfill-php80.git",
  3672. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3677. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3678. "shasum": ""
  3679. },
  3680. "require": {
  3681. "php": ">=7.2"
  3682. },
  3683. "type": "library",
  3684. "extra": {
  3685. "thanks": {
  3686. "url": "https://github.com/symfony/polyfill",
  3687. "name": "symfony/polyfill"
  3688. }
  3689. },
  3690. "autoload": {
  3691. "files": [
  3692. "bootstrap.php"
  3693. ],
  3694. "psr-4": {
  3695. "Symfony\\Polyfill\\Php80\\": ""
  3696. },
  3697. "classmap": [
  3698. "Resources/stubs"
  3699. ]
  3700. },
  3701. "notification-url": "https://packagist.org/downloads/",
  3702. "license": [
  3703. "MIT"
  3704. ],
  3705. "authors": [
  3706. {
  3707. "name": "Ion Bazan",
  3708. "email": "ion.bazan@gmail.com"
  3709. },
  3710. {
  3711. "name": "Nicolas Grekas",
  3712. "email": "p@tchwork.com"
  3713. },
  3714. {
  3715. "name": "Symfony Community",
  3716. "homepage": "https://symfony.com/contributors"
  3717. }
  3718. ],
  3719. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3720. "homepage": "https://symfony.com",
  3721. "keywords": [
  3722. "compatibility",
  3723. "polyfill",
  3724. "portable",
  3725. "shim"
  3726. ],
  3727. "support": {
  3728. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://symfony.com/sponsor",
  3733. "type": "custom"
  3734. },
  3735. {
  3736. "url": "https://github.com/fabpot",
  3737. "type": "github"
  3738. },
  3739. {
  3740. "url": "https://github.com/nicolas-grekas",
  3741. "type": "github"
  3742. },
  3743. {
  3744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3745. "type": "tidelift"
  3746. }
  3747. ],
  3748. "time": "2025-01-02T08:10:11+00:00"
  3749. },
  3750. {
  3751. "name": "symfony/process",
  3752. "version": "v5.4.47",
  3753. "source": {
  3754. "type": "git",
  3755. "url": "https://github.com/symfony/process.git",
  3756. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  3757. },
  3758. "dist": {
  3759. "type": "zip",
  3760. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  3761. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  3762. "shasum": ""
  3763. },
  3764. "require": {
  3765. "php": ">=7.2.5",
  3766. "symfony/polyfill-php80": "^1.16"
  3767. },
  3768. "type": "library",
  3769. "autoload": {
  3770. "psr-4": {
  3771. "Symfony\\Component\\Process\\": ""
  3772. },
  3773. "exclude-from-classmap": [
  3774. "/Tests/"
  3775. ]
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Fabien Potencier",
  3784. "email": "fabien@symfony.com"
  3785. },
  3786. {
  3787. "name": "Symfony Community",
  3788. "homepage": "https://symfony.com/contributors"
  3789. }
  3790. ],
  3791. "description": "Executes commands in sub-processes",
  3792. "homepage": "https://symfony.com",
  3793. "support": {
  3794. "source": "https://github.com/symfony/process/tree/v5.4.47"
  3795. },
  3796. "funding": [
  3797. {
  3798. "url": "https://symfony.com/sponsor",
  3799. "type": "custom"
  3800. },
  3801. {
  3802. "url": "https://github.com/fabpot",
  3803. "type": "github"
  3804. },
  3805. {
  3806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3807. "type": "tidelift"
  3808. }
  3809. ],
  3810. "time": "2024-11-06T11:36:42+00:00"
  3811. },
  3812. {
  3813. "name": "symfony/service-contracts",
  3814. "version": "v3.6.1",
  3815. "source": {
  3816. "type": "git",
  3817. "url": "https://github.com/symfony/service-contracts.git",
  3818. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  3819. },
  3820. "dist": {
  3821. "type": "zip",
  3822. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  3823. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  3824. "shasum": ""
  3825. },
  3826. "require": {
  3827. "php": ">=8.1",
  3828. "psr/container": "^1.1|^2.0",
  3829. "symfony/deprecation-contracts": "^2.5|^3"
  3830. },
  3831. "conflict": {
  3832. "ext-psr": "<1.1|>=2"
  3833. },
  3834. "type": "library",
  3835. "extra": {
  3836. "thanks": {
  3837. "url": "https://github.com/symfony/contracts",
  3838. "name": "symfony/contracts"
  3839. },
  3840. "branch-alias": {
  3841. "dev-main": "3.6-dev"
  3842. }
  3843. },
  3844. "autoload": {
  3845. "psr-4": {
  3846. "Symfony\\Contracts\\Service\\": ""
  3847. },
  3848. "exclude-from-classmap": [
  3849. "/Test/"
  3850. ]
  3851. },
  3852. "notification-url": "https://packagist.org/downloads/",
  3853. "license": [
  3854. "MIT"
  3855. ],
  3856. "authors": [
  3857. {
  3858. "name": "Nicolas Grekas",
  3859. "email": "p@tchwork.com"
  3860. },
  3861. {
  3862. "name": "Symfony Community",
  3863. "homepage": "https://symfony.com/contributors"
  3864. }
  3865. ],
  3866. "description": "Generic abstractions related to writing services",
  3867. "homepage": "https://symfony.com",
  3868. "keywords": [
  3869. "abstractions",
  3870. "contracts",
  3871. "decoupling",
  3872. "interfaces",
  3873. "interoperability",
  3874. "standards"
  3875. ],
  3876. "support": {
  3877. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  3878. },
  3879. "funding": [
  3880. {
  3881. "url": "https://symfony.com/sponsor",
  3882. "type": "custom"
  3883. },
  3884. {
  3885. "url": "https://github.com/fabpot",
  3886. "type": "github"
  3887. },
  3888. {
  3889. "url": "https://github.com/nicolas-grekas",
  3890. "type": "github"
  3891. },
  3892. {
  3893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3894. "type": "tidelift"
  3895. }
  3896. ],
  3897. "time": "2025-07-15T11:30:57+00:00"
  3898. },
  3899. {
  3900. "name": "symfony/translation",
  3901. "version": "v4.4.47",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/symfony/translation.git",
  3905. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3910. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3911. "shasum": ""
  3912. },
  3913. "require": {
  3914. "php": ">=7.1.3",
  3915. "symfony/polyfill-mbstring": "~1.0",
  3916. "symfony/polyfill-php80": "^1.16",
  3917. "symfony/translation-contracts": "^1.1.6|^2"
  3918. },
  3919. "conflict": {
  3920. "symfony/config": "<3.4",
  3921. "symfony/dependency-injection": "<3.4",
  3922. "symfony/http-kernel": "<4.4",
  3923. "symfony/yaml": "<3.4"
  3924. },
  3925. "provide": {
  3926. "symfony/translation-implementation": "1.0|2.0"
  3927. },
  3928. "require-dev": {
  3929. "psr/log": "^1|^2|^3",
  3930. "symfony/config": "^3.4|^4.0|^5.0",
  3931. "symfony/console": "^3.4|^4.0|^5.0",
  3932. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3933. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  3934. "symfony/http-kernel": "^4.4",
  3935. "symfony/intl": "^3.4|^4.0|^5.0",
  3936. "symfony/service-contracts": "^1.1.2|^2",
  3937. "symfony/yaml": "^3.4|^4.0|^5.0"
  3938. },
  3939. "suggest": {
  3940. "psr/log-implementation": "To use logging capability in translator",
  3941. "symfony/config": "",
  3942. "symfony/yaml": ""
  3943. },
  3944. "type": "library",
  3945. "autoload": {
  3946. "psr-4": {
  3947. "Symfony\\Component\\Translation\\": ""
  3948. },
  3949. "exclude-from-classmap": [
  3950. "/Tests/"
  3951. ]
  3952. },
  3953. "notification-url": "https://packagist.org/downloads/",
  3954. "license": [
  3955. "MIT"
  3956. ],
  3957. "authors": [
  3958. {
  3959. "name": "Fabien Potencier",
  3960. "email": "fabien@symfony.com"
  3961. },
  3962. {
  3963. "name": "Symfony Community",
  3964. "homepage": "https://symfony.com/contributors"
  3965. }
  3966. ],
  3967. "description": "Provides tools to internationalize your application",
  3968. "homepage": "https://symfony.com",
  3969. "time": "2022-10-03T15:15:11+00:00"
  3970. },
  3971. {
  3972. "name": "symfony/translation-contracts",
  3973. "version": "v2.5.4",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/symfony/translation-contracts.git",
  3977. "reference": "450d4172653f38818657022252f9d81be89ee9a8"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8",
  3982. "reference": "450d4172653f38818657022252f9d81be89ee9a8",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "php": ">=7.2.5"
  3987. },
  3988. "suggest": {
  3989. "symfony/translation-implementation": ""
  3990. },
  3991. "type": "library",
  3992. "extra": {
  3993. "thanks": {
  3994. "url": "https://github.com/symfony/contracts",
  3995. "name": "symfony/contracts"
  3996. },
  3997. "branch-alias": {
  3998. "dev-main": "2.5-dev"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "psr-4": {
  4003. "Symfony\\Contracts\\Translation\\": ""
  4004. }
  4005. },
  4006. "notification-url": "https://packagist.org/downloads/",
  4007. "license": [
  4008. "MIT"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Nicolas Grekas",
  4013. "email": "p@tchwork.com"
  4014. },
  4015. {
  4016. "name": "Symfony Community",
  4017. "homepage": "https://symfony.com/contributors"
  4018. }
  4019. ],
  4020. "description": "Generic abstractions related to translation",
  4021. "homepage": "https://symfony.com",
  4022. "keywords": [
  4023. "abstractions",
  4024. "contracts",
  4025. "decoupling",
  4026. "interfaces",
  4027. "interoperability",
  4028. "standards"
  4029. ],
  4030. "support": {
  4031. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4"
  4032. },
  4033. "funding": [
  4034. {
  4035. "url": "https://symfony.com/sponsor",
  4036. "type": "custom"
  4037. },
  4038. {
  4039. "url": "https://github.com/fabpot",
  4040. "type": "github"
  4041. },
  4042. {
  4043. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4044. "type": "tidelift"
  4045. }
  4046. ],
  4047. "time": "2024-09-25T14:11:13+00:00"
  4048. },
  4049. {
  4050. "name": "symfony/var-exporter",
  4051. "version": "v6.4.26",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/symfony/var-exporter.git",
  4055. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  4060. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  4061. "shasum": ""
  4062. },
  4063. "require": {
  4064. "php": ">=8.1",
  4065. "symfony/deprecation-contracts": "^2.5|^3"
  4066. },
  4067. "require-dev": {
  4068. "symfony/property-access": "^6.4|^7.0",
  4069. "symfony/serializer": "^6.4|^7.0",
  4070. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4071. },
  4072. "type": "library",
  4073. "autoload": {
  4074. "psr-4": {
  4075. "Symfony\\Component\\VarExporter\\": ""
  4076. },
  4077. "exclude-from-classmap": [
  4078. "/Tests/"
  4079. ]
  4080. },
  4081. "notification-url": "https://packagist.org/downloads/",
  4082. "license": [
  4083. "MIT"
  4084. ],
  4085. "authors": [
  4086. {
  4087. "name": "Nicolas Grekas",
  4088. "email": "p@tchwork.com"
  4089. },
  4090. {
  4091. "name": "Symfony Community",
  4092. "homepage": "https://symfony.com/contributors"
  4093. }
  4094. ],
  4095. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4096. "homepage": "https://symfony.com",
  4097. "keywords": [
  4098. "clone",
  4099. "construct",
  4100. "export",
  4101. "hydrate",
  4102. "instantiate",
  4103. "lazy-loading",
  4104. "proxy",
  4105. "serialize"
  4106. ],
  4107. "support": {
  4108. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  4109. },
  4110. "funding": [
  4111. {
  4112. "url": "https://symfony.com/sponsor",
  4113. "type": "custom"
  4114. },
  4115. {
  4116. "url": "https://github.com/fabpot",
  4117. "type": "github"
  4118. },
  4119. {
  4120. "url": "https://github.com/nicolas-grekas",
  4121. "type": "github"
  4122. },
  4123. {
  4124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4125. "type": "tidelift"
  4126. }
  4127. ],
  4128. "time": "2025-09-11T09:57:09+00:00"
  4129. },
  4130. {
  4131. "name": "tcwei/imglazyload",
  4132. "version": "v1.3",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/ITzhiwei/ArticleImgLazyload.git",
  4136. "reference": "f7634e446de972a26aac6973141c39ca2ea62b89"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/ITzhiwei/ArticleImgLazyload/zipball/f7634e446de972a26aac6973141c39ca2ea62b89",
  4141. "reference": "f7634e446de972a26aac6973141c39ca2ea62b89",
  4142. "shasum": ""
  4143. },
  4144. "type": "library",
  4145. "autoload": {
  4146. "psr-4": {
  4147. "tcwei\\smallTools\\": "src/"
  4148. }
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "zhiwei",
  4157. "email": "2394599321@qq.com"
  4158. }
  4159. ],
  4160. "description": "文章图片懒加载,当文章中存在大量图片时,可使用该库进行图片懒加载,看不到的图片不进行加载,节省带宽",
  4161. "time": "2020-06-25T14:08:30+00:00"
  4162. },
  4163. {
  4164. "name": "tcwei/imgsrc",
  4165. "version": "v2.02",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://github.com/ITzhiwei/getImgSrc.git",
  4169. "reference": "832342b664fc7d84e0c6253ab90407f2b565887e"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://api.github.com/repos/ITzhiwei/getImgSrc/zipball/832342b664fc7d84e0c6253ab90407f2b565887e",
  4174. "reference": "832342b664fc7d84e0c6253ab90407f2b565887e",
  4175. "shasum": ""
  4176. },
  4177. "type": "library",
  4178. "autoload": {
  4179. "psr-4": {
  4180. "tcwei\\smallTools\\": "imgSrc/"
  4181. }
  4182. },
  4183. "notification-url": "https://packagist.org/downloads/",
  4184. "license": [
  4185. "MIT"
  4186. ],
  4187. "authors": [
  4188. {
  4189. "name": "zhiwei",
  4190. "email": "2394599321@qq.com"
  4191. }
  4192. ],
  4193. "description": "高效率字符串模式(可比正则获取快3倍)从HTML或者文章内容等字符串中提取图片的src,可指定提取第几张图片、顺数第几或逆数第几、可指定黑名单等。页面下面有使用例子:",
  4194. "time": "2021-06-16T15:07:12+00:00"
  4195. },
  4196. {
  4197. "name": "thans/thinkphp-filesystem-cloud",
  4198. "version": "v1.0.2",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://github.com/QThans/thinkphp-filesystem-cloud.git",
  4202. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://api.github.com/repos/QThans/thinkphp-filesystem-cloud/zipball/b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  4207. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  4208. "shasum": ""
  4209. },
  4210. "require": {
  4211. "liz/flysystem-qiniu": "^1.10",
  4212. "overtrue/flysystem-cos": "^2.0.0",
  4213. "php": ">=7.1.0",
  4214. "topthink/framework": "^6.0.0",
  4215. "xxtime/flysystem-aliyun-oss": "^1.4"
  4216. },
  4217. "type": "library",
  4218. "extra": {
  4219. "think": {
  4220. "services": [
  4221. "thans\\filesystem\\Service"
  4222. ]
  4223. }
  4224. },
  4225. "autoload": {
  4226. "psr-4": {
  4227. "thans\\filesystem\\": "src/"
  4228. }
  4229. },
  4230. "notification-url": "https://packagist.org/downloads/",
  4231. "license": [
  4232. "MIT"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "Thans",
  4237. "email": "360641274@qq.com"
  4238. }
  4239. ],
  4240. "description": "thinkphp6.0 filesystem,include Aliyun and Qiniu",
  4241. "time": "2019-11-29T00:57:33+00:00"
  4242. },
  4243. {
  4244. "name": "thans/tp-jwt-auth",
  4245. "version": "v1.3.1",
  4246. "source": {
  4247. "type": "git",
  4248. "url": "https://github.com/QThans/jwt-auth.git",
  4249. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba"
  4250. },
  4251. "dist": {
  4252. "type": "zip",
  4253. "url": "https://mirrors.huaweicloud.com/repository/php/thans/tp-jwt-auth/v1.3.1/thans-tp-jwt-auth-v1.3.1.zip",
  4254. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba",
  4255. "shasum": ""
  4256. },
  4257. "require": {
  4258. "php": "^7.0 || ^8.0",
  4259. "qeq66/jwt": "3.3.*",
  4260. "topthink/framework": "^5.1.10 || ^6.0.0"
  4261. },
  4262. "type": "library",
  4263. "extra": {
  4264. "think": {
  4265. "services": [
  4266. "thans\\jwt\\Service"
  4267. ],
  4268. "config": {
  4269. "jwt": "config/config.php"
  4270. }
  4271. }
  4272. },
  4273. "autoload": {
  4274. "files": [
  4275. "src/helper.php"
  4276. ],
  4277. "psr-4": {
  4278. "thans\\jwt\\": "src"
  4279. }
  4280. },
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "Thans",
  4287. "email": "360641274@qq.com"
  4288. }
  4289. ],
  4290. "description": "thinkphp jwt auth composer",
  4291. "time": "2022-11-01T02:44:23+00:00"
  4292. },
  4293. {
  4294. "name": "topthink/framework",
  4295. "version": "v6.0.15",
  4296. "source": {
  4297. "type": "git",
  4298. "url": "https://github.com/top-think/framework.git",
  4299. "reference": "0d248a0bf590a6ec5fd65de5e28448bcac0608f1"
  4300. },
  4301. "dist": {
  4302. "type": "zip",
  4303. "url": "https://api.github.com/repos/top-think/framework/zipball/0d248a0bf590a6ec5fd65de5e28448bcac0608f1",
  4304. "reference": "0d248a0bf590a6ec5fd65de5e28448bcac0608f1",
  4305. "shasum": ""
  4306. },
  4307. "require": {
  4308. "ext-json": "*",
  4309. "ext-mbstring": "*",
  4310. "league/flysystem": "^1.1.4",
  4311. "league/flysystem-cached-adapter": "^1.0",
  4312. "php": ">=7.2.5",
  4313. "psr/container": "~1.0",
  4314. "psr/http-message": "^1.0",
  4315. "psr/log": "~1.0",
  4316. "psr/simple-cache": "^1.0",
  4317. "topthink/think-helper": "^3.1.1",
  4318. "topthink/think-orm": "^2.0|^3.0"
  4319. },
  4320. "require-dev": {
  4321. "guzzlehttp/psr7": "^2.1.0",
  4322. "mikey179/vfsstream": "^1.6",
  4323. "mockery/mockery": "^1.2",
  4324. "phpunit/phpunit": "^7.0"
  4325. },
  4326. "type": "library",
  4327. "autoload": {
  4328. "files": [],
  4329. "psr-4": {
  4330. "think\\": "src/think/"
  4331. }
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "Apache-2.0"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "liu21st",
  4340. "email": "liu21st@gmail.com"
  4341. },
  4342. {
  4343. "name": "yunwuxin",
  4344. "email": "448901948@qq.com"
  4345. }
  4346. ],
  4347. "description": "The ThinkPHP Framework.",
  4348. "homepage": "http://thinkphp.cn/",
  4349. "keywords": [
  4350. "framework",
  4351. "orm",
  4352. "thinkphp"
  4353. ],
  4354. "support": {
  4355. "issues": "https://github.com/top-think/framework/issues",
  4356. "source": "https://github.com/top-think/framework/tree/v6.0.15"
  4357. },
  4358. "time": "2023-05-19T09:55:18+00:00"
  4359. },
  4360. {
  4361. "name": "topthink/think-api",
  4362. "version": "v1.0.31",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://github.com/top-think/think-api.git",
  4366. "reference": "5cf168dc93ec8e183c36a599357f67c07668f90c"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://api.github.com/repos/top-think/think-api/zipball/5cf168dc93ec8e183c36a599357f67c07668f90c",
  4371. "reference": "5cf168dc93ec8e183c36a599357f67c07668f90c",
  4372. "shasum": ""
  4373. },
  4374. "require": {
  4375. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  4376. "topthink/think-helper": "^1.0 || ^3.1"
  4377. },
  4378. "require-dev": {
  4379. "phpunit/phpunit": "^7.0"
  4380. },
  4381. "type": "library",
  4382. "autoload": {
  4383. "psr-4": {
  4384. "think\\api\\": "src"
  4385. }
  4386. },
  4387. "notification-url": "https://packagist.org/downloads/",
  4388. "license": [
  4389. "Apache-2.0"
  4390. ],
  4391. "authors": [
  4392. {
  4393. "name": "yunwuxin",
  4394. "email": "448901948@qq.com"
  4395. }
  4396. ],
  4397. "support": {
  4398. "issues": "https://github.com/top-think/think-api/issues",
  4399. "source": "https://github.com/top-think/think-api/tree/v1.0.31"
  4400. },
  4401. "time": "2024-05-24T05:23:08+00:00"
  4402. },
  4403. {
  4404. "name": "topthink/think-captcha",
  4405. "version": "v3.0.9",
  4406. "source": {
  4407. "type": "git",
  4408. "url": "https://github.com/top-think/think-captcha.git",
  4409. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b"
  4410. },
  4411. "dist": {
  4412. "type": "zip",
  4413. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/b1ef360670578214edeebcf824aaf6ab7ee0528b",
  4414. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b",
  4415. "shasum": ""
  4416. },
  4417. "require": {
  4418. "topthink/framework": "^6.0|^8.0"
  4419. },
  4420. "type": "library",
  4421. "extra": {
  4422. "think": {
  4423. "services": [
  4424. "think\\captcha\\CaptchaService"
  4425. ],
  4426. "config": {
  4427. "captcha": "src/config.php"
  4428. }
  4429. }
  4430. },
  4431. "autoload": {
  4432. "files": [
  4433. "src/helper.php"
  4434. ],
  4435. "psr-4": {
  4436. "think\\captcha\\": "src/"
  4437. }
  4438. },
  4439. "notification-url": "https://packagist.org/downloads/",
  4440. "license": [
  4441. "Apache-2.0"
  4442. ],
  4443. "authors": [
  4444. {
  4445. "name": "yunwuxin",
  4446. "email": "448901948@qq.com"
  4447. }
  4448. ],
  4449. "description": "captcha package for thinkphp",
  4450. "time": "2023-04-27T07:18:40+00:00"
  4451. },
  4452. {
  4453. "name": "topthink/think-helper",
  4454. "version": "v3.1.12",
  4455. "source": {
  4456. "type": "git",
  4457. "url": "https://github.com/top-think/think-helper.git",
  4458. "reference": "fe277121112a8f1c872e169a733ca80bb11c4acb"
  4459. },
  4460. "dist": {
  4461. "type": "zip",
  4462. "url": "https://api.github.com/repos/top-think/think-helper/zipball/fe277121112a8f1c872e169a733ca80bb11c4acb",
  4463. "reference": "fe277121112a8f1c872e169a733ca80bb11c4acb",
  4464. "shasum": ""
  4465. },
  4466. "require": {
  4467. "php": ">=7.1.0"
  4468. },
  4469. "require-dev": {
  4470. "phpunit/phpunit": "^9.5"
  4471. },
  4472. "type": "library",
  4473. "autoload": {
  4474. "files": [
  4475. "src/helper.php"
  4476. ],
  4477. "psr-4": {
  4478. "think\\": "src"
  4479. }
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "Apache-2.0"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "yunwuxin",
  4488. "email": "448901948@qq.com"
  4489. }
  4490. ],
  4491. "description": "The ThinkPHP6 Helper Package",
  4492. "support": {
  4493. "issues": "https://github.com/top-think/think-helper/issues",
  4494. "source": "https://github.com/top-think/think-helper/tree/v3.1.12"
  4495. },
  4496. "time": "2025-12-26T09:58:29+00:00"
  4497. },
  4498. {
  4499. "name": "topthink/think-multi-app",
  4500. "version": "v1.0.17",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/top-think/think-multi-app.git",
  4504. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  4509. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  4510. "shasum": ""
  4511. },
  4512. "require": {
  4513. "php": ">=7.1.0",
  4514. "topthink/framework": "^6.0|^8.0"
  4515. },
  4516. "type": "library",
  4517. "extra": {
  4518. "think": {
  4519. "services": [
  4520. "think\\app\\Service"
  4521. ]
  4522. }
  4523. },
  4524. "autoload": {
  4525. "psr-4": {
  4526. "think\\app\\": "src"
  4527. }
  4528. },
  4529. "notification-url": "https://packagist.org/downloads/",
  4530. "license": [
  4531. "Apache-2.0"
  4532. ],
  4533. "authors": [
  4534. {
  4535. "name": "liu21st",
  4536. "email": "liu21st@gmail.com"
  4537. }
  4538. ],
  4539. "description": "thinkphp multi app support",
  4540. "time": "2023-03-29T02:04:29+00:00"
  4541. },
  4542. {
  4543. "name": "topthink/think-orm",
  4544. "version": "v2.0.62",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/top-think/think-orm.git",
  4548. "reference": "e53bfea572a133039ad687077120de5521af617f"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/top-think/think-orm/zipball/e53bfea572a133039ad687077120de5521af617f",
  4553. "reference": "e53bfea572a133039ad687077120de5521af617f",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "ext-json": "*",
  4558. "ext-pdo": "*",
  4559. "php": ">=7.1.0",
  4560. "psr/log": "^1.0|^2.0",
  4561. "psr/simple-cache": "^1.0|^2.0",
  4562. "topthink/think-helper": "^3.1"
  4563. },
  4564. "require-dev": {
  4565. "phpunit/phpunit": "^7|^8|^9.5"
  4566. },
  4567. "type": "library",
  4568. "autoload": {
  4569. "files": [
  4570. "stubs/load_stubs.php"
  4571. ],
  4572. "psr-4": {
  4573. "think\\": "src"
  4574. }
  4575. },
  4576. "notification-url": "https://packagist.org/downloads/",
  4577. "license": [
  4578. "Apache-2.0"
  4579. ],
  4580. "authors": [
  4581. {
  4582. "name": "liu21st",
  4583. "email": "liu21st@gmail.com"
  4584. }
  4585. ],
  4586. "description": "think orm",
  4587. "keywords": [
  4588. "database",
  4589. "orm"
  4590. ],
  4591. "support": {
  4592. "issues": "https://github.com/top-think/think-orm/issues",
  4593. "source": "https://github.com/top-think/think-orm/tree/v2.0.62"
  4594. },
  4595. "time": "2024-09-22T06:17:47+00:00"
  4596. },
  4597. {
  4598. "name": "topthink/think-queue",
  4599. "version": "v3.0.9",
  4600. "source": {
  4601. "type": "git",
  4602. "url": "https://github.com/top-think/think-queue.git",
  4603. "reference": "654812b47dd7c708c4443deed27f212f8382e8da"
  4604. },
  4605. "dist": {
  4606. "type": "zip",
  4607. "url": "https://api.github.com/repos/top-think/think-queue/zipball/654812b47dd7c708c4443deed27f212f8382e8da",
  4608. "reference": "654812b47dd7c708c4443deed27f212f8382e8da",
  4609. "shasum": ""
  4610. },
  4611. "require": {
  4612. "ext-json": "*",
  4613. "nesbot/carbon": "^2.16",
  4614. "symfony/process": ">=4.2",
  4615. "topthink/framework": "^6.0 || ^8.0"
  4616. },
  4617. "require-dev": {
  4618. "mockery/mockery": "^1.2",
  4619. "phpunit/phpunit": "^6.2",
  4620. "topthink/think-migration": "^3.0"
  4621. },
  4622. "type": "library",
  4623. "extra": {
  4624. "think": {
  4625. "services": [
  4626. "think\\queue\\Service"
  4627. ],
  4628. "config": {
  4629. "queue": "src/config.php"
  4630. }
  4631. }
  4632. },
  4633. "autoload": {
  4634. "files": [
  4635. "src/common.php"
  4636. ],
  4637. "psr-4": {
  4638. "think\\": "src"
  4639. }
  4640. },
  4641. "notification-url": "https://packagist.org/downloads/",
  4642. "license": [
  4643. "Apache-2.0"
  4644. ],
  4645. "authors": [
  4646. {
  4647. "name": "yunwuxin",
  4648. "email": "448901948@qq.com"
  4649. }
  4650. ],
  4651. "description": "The ThinkPHP6 Queue Package",
  4652. "time": "2023-07-03T05:42:01+00:00"
  4653. },
  4654. {
  4655. "name": "topthink/think-template",
  4656. "version": "v2.0.9",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://github.com/top-think/think-template.git",
  4660. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://api.github.com/repos/top-think/think-template/zipball/6d25642ae0e306166742fd7073dc7a159e18073c",
  4665. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c",
  4666. "shasum": ""
  4667. },
  4668. "require": {
  4669. "php": ">=7.1.0",
  4670. "psr/simple-cache": "^1.0"
  4671. },
  4672. "type": "library",
  4673. "autoload": {
  4674. "psr-4": {
  4675. "think\\": "src"
  4676. }
  4677. },
  4678. "notification-url": "https://packagist.org/downloads/",
  4679. "license": [
  4680. "Apache-2.0"
  4681. ],
  4682. "authors": [
  4683. {
  4684. "name": "liu21st",
  4685. "email": "liu21st@gmail.com"
  4686. }
  4687. ],
  4688. "description": "the php template engine",
  4689. "time": "2023-02-14T10:50:39+00:00"
  4690. },
  4691. {
  4692. "name": "topthink/think-view",
  4693. "version": "v1.0.14",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/top-think/think-view.git",
  4697. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  4702. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  4703. "shasum": ""
  4704. },
  4705. "require": {
  4706. "php": ">=7.1.0",
  4707. "topthink/think-template": "^2.0"
  4708. },
  4709. "type": "library",
  4710. "autoload": {
  4711. "psr-4": {
  4712. "think\\view\\driver\\": "src"
  4713. }
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "Apache-2.0"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "liu21st",
  4722. "email": "liu21st@gmail.com"
  4723. }
  4724. ],
  4725. "description": "thinkphp template driver",
  4726. "time": "2019-11-06T11:40:13+00:00"
  4727. },
  4728. {
  4729. "name": "workerman/gateway-worker",
  4730. "version": "v3.0.28",
  4731. "source": {
  4732. "type": "git",
  4733. "url": "https://github.com/walkor/GatewayWorker.git",
  4734. "reference": "a7dffc53403133131a51b9fd3c6c6d70869cb6d3"
  4735. },
  4736. "dist": {
  4737. "type": "zip",
  4738. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/a7dffc53403133131a51b9fd3c6c6d70869cb6d3",
  4739. "reference": "a7dffc53403133131a51b9fd3c6c6d70869cb6d3",
  4740. "shasum": ""
  4741. },
  4742. "require": {
  4743. "php": ">=7.0",
  4744. "workerman/workerman": "^4.0.30"
  4745. },
  4746. "type": "library",
  4747. "autoload": {
  4748. "psr-4": {
  4749. "GatewayWorker\\": "./src"
  4750. }
  4751. },
  4752. "notification-url": "https://packagist.org/downloads/",
  4753. "license": [
  4754. "MIT"
  4755. ],
  4756. "homepage": "http://www.workerman.net",
  4757. "keywords": [
  4758. "communication",
  4759. "distributed"
  4760. ],
  4761. "time": "2023-03-24T03:56:27+00:00"
  4762. },
  4763. {
  4764. "name": "workerman/gatewayclient",
  4765. "version": "v3.0.14",
  4766. "source": {
  4767. "type": "git",
  4768. "url": "https://github.com/walkor/GatewayClient.git",
  4769. "reference": "4362468d68251015b2b385c310252afb4d6648ed"
  4770. },
  4771. "dist": {
  4772. "type": "zip",
  4773. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/4362468d68251015b2b385c310252afb4d6648ed",
  4774. "reference": "4362468d68251015b2b385c310252afb4d6648ed",
  4775. "shasum": ""
  4776. },
  4777. "type": "library",
  4778. "autoload": {
  4779. "psr-4": {
  4780. "GatewayClient\\": "./"
  4781. }
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "MIT"
  4786. ],
  4787. "homepage": "http://www.workerman.net",
  4788. "time": "2021-11-29T07:03:50+00:00"
  4789. },
  4790. {
  4791. "name": "workerman/workerman",
  4792. "version": "v4.1.10",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://github.com/walkor/workerman.git",
  4796. "reference": "e967b79f95b9251a72acb971be05623ec1a51e83"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://api.github.com/repos/walkor/workerman/zipball/e967b79f95b9251a72acb971be05623ec1a51e83",
  4801. "reference": "e967b79f95b9251a72acb971be05623ec1a51e83",
  4802. "shasum": ""
  4803. },
  4804. "require": {
  4805. "php": ">=7.0"
  4806. },
  4807. "suggest": {
  4808. "ext-event": "For better performance. "
  4809. },
  4810. "type": "library",
  4811. "autoload": {
  4812. "psr-4": {
  4813. "Workerman\\": "./"
  4814. }
  4815. },
  4816. "notification-url": "https://packagist.org/downloads/",
  4817. "license": [
  4818. "MIT"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "walkor",
  4823. "email": "walkor@workerman.net",
  4824. "homepage": "http://www.workerman.net",
  4825. "role": "Developer"
  4826. }
  4827. ],
  4828. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  4829. "homepage": "http://www.workerman.net",
  4830. "keywords": [
  4831. "asynchronous",
  4832. "event-loop"
  4833. ],
  4834. "time": "2023-05-01T02:12:20+00:00"
  4835. },
  4836. {
  4837. "name": "xiaodi/think-pinyin",
  4838. "version": "v1.0.0",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/edenleung/think-pinyin.git",
  4842. "reference": "4675515d3be42bebff712383c306ff99ef279f97"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/edenleung/think-pinyin/zipball/4675515d3be42bebff712383c306ff99ef279f97",
  4847. "reference": "4675515d3be42bebff712383c306ff99ef279f97",
  4848. "shasum": ""
  4849. },
  4850. "require": {
  4851. "overtrue/pinyin": "~4.0",
  4852. "topthink/framework": "6.0.*|5.1.*"
  4853. },
  4854. "type": "library",
  4855. "extra": {
  4856. "think": {
  4857. "services": [
  4858. "xiaodi\\ThinkPinyin\\PinyinService"
  4859. ]
  4860. }
  4861. },
  4862. "autoload": {
  4863. "psr-4": {
  4864. "xiaodi\\ThinkPinyin\\": "src/"
  4865. },
  4866. "files": [
  4867. "src/helpers.php"
  4868. ]
  4869. },
  4870. "notification-url": "https://packagist.org/downloads/",
  4871. "license": [
  4872. "MIT"
  4873. ],
  4874. "authors": [
  4875. {
  4876. "name": "xiaodi",
  4877. "email": "liangjinbiao@live.com"
  4878. }
  4879. ],
  4880. "description": "ThinkPHP 中文转拼音扩展包",
  4881. "keywords": [
  4882. "Chinese",
  4883. "Pinyin",
  4884. "thinkphp"
  4885. ],
  4886. "time": "2019-10-25T09:19:32+00:00"
  4887. },
  4888. {
  4889. "name": "xiaodi/think-pullword",
  4890. "version": "v1.2.1",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/friendsofthinkphp/think-pullword.git",
  4894. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/friendsofthinkphp/think-pullword/zipball/0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  4899. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  4900. "shasum": ""
  4901. },
  4902. "require": {
  4903. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4904. "topthink/framework": "6.0.*|5.1.*"
  4905. },
  4906. "type": "library",
  4907. "extra": {
  4908. "think": {
  4909. "services": [
  4910. "PullWord\\PullWordService"
  4911. ]
  4912. }
  4913. },
  4914. "autoload": {
  4915. "files": [
  4916. "src/helper.php"
  4917. ],
  4918. "psr-4": {
  4919. "PullWord\\": "src"
  4920. }
  4921. },
  4922. "notification-url": "https://packagist.org/downloads/",
  4923. "license": [
  4924. "MIT"
  4925. ],
  4926. "authors": [
  4927. {
  4928. "name": "xiaodi",
  4929. "email": "liangjinbiao@live.com"
  4930. }
  4931. ],
  4932. "description": "ThinkPHP 分词/抽词 扩展包",
  4933. "keywords": [
  4934. "php",
  4935. "think-extend",
  4936. "thinkphp"
  4937. ],
  4938. "time": "2021-01-05T02:48:17+00:00"
  4939. },
  4940. {
  4941. "name": "xxtime/flysystem-aliyun-oss",
  4942. "version": "1.5.0",
  4943. "source": {
  4944. "type": "git",
  4945. "url": "https://github.com/xxtime/flysystem-aliyun-oss.git",
  4946. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9"
  4947. },
  4948. "dist": {
  4949. "type": "zip",
  4950. "url": "https://api.github.com/repos/xxtime/flysystem-aliyun-oss/zipball/ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  4951. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  4952. "shasum": ""
  4953. },
  4954. "require": {
  4955. "aliyuncs/oss-sdk-php": "~2.3",
  4956. "league/flysystem": "^1.0.49",
  4957. "php": ">=5.5.0"
  4958. },
  4959. "type": "library",
  4960. "autoload": {
  4961. "psr-4": {
  4962. "Xxtime\\Flysystem\\Aliyun\\": "src/"
  4963. }
  4964. },
  4965. "notification-url": "https://packagist.org/downloads/",
  4966. "license": [
  4967. "MIT"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Joe",
  4972. "email": "joe@xxtime.com",
  4973. "homepage": "https://github.com/xxtime",
  4974. "role": "Developer"
  4975. }
  4976. ],
  4977. "description": "AliYun OSS adapter for flysystem. aliyuncs/oss-sdk-php ~2.3",
  4978. "homepage": "https://github.com/xxtime/flysystem-aliyun-oss",
  4979. "keywords": [
  4980. "Flysystem",
  4981. "aliyun-oss",
  4982. "flysystem-aliyun-oss"
  4983. ],
  4984. "time": "2019-11-12T07:57:34+00:00"
  4985. },
  4986. {
  4987. "name": "yunwuxin/think-cron",
  4988. "version": "v3.0.6",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/yunwuxin/think-cron.git",
  4992. "reference": "4013c39cea4600e05ffd10de5b63177bfb9bf480"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/yunwuxin/think-cron/zipball/4013c39cea4600e05ffd10de5b63177bfb9bf480",
  4997. "reference": "4013c39cea4600e05ffd10de5b63177bfb9bf480",
  4998. "shasum": ""
  4999. },
  5000. "require": {
  5001. "dragonmantank/cron-expression": "^3.0",
  5002. "nesbot/carbon": "^2.28",
  5003. "symfony/process": "^4.4 || ^5.0",
  5004. "topthink/framework": "^6.0 || ^8.0"
  5005. },
  5006. "require-dev": {
  5007. "topthink/think-swoole": "^4.0"
  5008. },
  5009. "type": "library",
  5010. "extra": {
  5011. "think": {
  5012. "config": {
  5013. "cron": "src/config.php"
  5014. },
  5015. "services": [
  5016. "yunwuxin\\cron\\Service"
  5017. ]
  5018. }
  5019. },
  5020. "autoload": {
  5021. "psr-4": {
  5022. "yunwuxin\\cron\\": "src/cron"
  5023. }
  5024. },
  5025. "notification-url": "https://packagist.org/downloads/",
  5026. "license": [
  5027. "Apache-2.0"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "yunwuxin",
  5032. "email": "448901948@qq.com"
  5033. }
  5034. ],
  5035. "description": "计划任务",
  5036. "time": "2023-07-01T11:10:51+00:00"
  5037. }
  5038. ],
  5039. "packages-dev": [
  5040. {
  5041. "name": "symfony/polyfill-php72",
  5042. "version": "v1.31.0",
  5043. "source": {
  5044. "type": "git",
  5045. "url": "https://github.com/symfony/polyfill-php72.git",
  5046. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  5047. },
  5048. "dist": {
  5049. "type": "zip",
  5050. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  5051. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  5052. "shasum": ""
  5053. },
  5054. "require": {
  5055. "php": ">=7.2"
  5056. },
  5057. "type": "metapackage",
  5058. "extra": {
  5059. "thanks": {
  5060. "url": "https://github.com/symfony/polyfill",
  5061. "name": "symfony/polyfill"
  5062. }
  5063. },
  5064. "notification-url": "https://packagist.org/downloads/",
  5065. "license": [
  5066. "MIT"
  5067. ],
  5068. "authors": [
  5069. {
  5070. "name": "Nicolas Grekas",
  5071. "email": "p@tchwork.com"
  5072. },
  5073. {
  5074. "name": "Symfony Community",
  5075. "homepage": "https://symfony.com/contributors"
  5076. }
  5077. ],
  5078. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5079. "homepage": "https://symfony.com",
  5080. "keywords": [
  5081. "compatibility",
  5082. "polyfill",
  5083. "portable",
  5084. "shim"
  5085. ],
  5086. "support": {
  5087. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  5088. },
  5089. "funding": [
  5090. {
  5091. "url": "https://symfony.com/sponsor",
  5092. "type": "custom"
  5093. },
  5094. {
  5095. "url": "https://github.com/fabpot",
  5096. "type": "github"
  5097. },
  5098. {
  5099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5100. "type": "tidelift"
  5101. }
  5102. ],
  5103. "time": "2024-09-09T11:45:10+00:00"
  5104. },
  5105. {
  5106. "name": "symfony/var-dumper",
  5107. "version": "v4.4.47",
  5108. "source": {
  5109. "type": "git",
  5110. "url": "https://github.com/symfony/var-dumper.git",
  5111. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  5112. },
  5113. "dist": {
  5114. "type": "zip",
  5115. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  5116. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  5117. "shasum": ""
  5118. },
  5119. "require": {
  5120. "php": ">=7.1.3",
  5121. "symfony/polyfill-mbstring": "~1.0",
  5122. "symfony/polyfill-php72": "~1.5",
  5123. "symfony/polyfill-php80": "^1.16"
  5124. },
  5125. "conflict": {
  5126. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5127. "symfony/console": "<3.4"
  5128. },
  5129. "require-dev": {
  5130. "ext-iconv": "*",
  5131. "symfony/console": "^3.4|^4.0|^5.0",
  5132. "symfony/process": "^4.4|^5.0",
  5133. "twig/twig": "^1.43|^2.13|^3.0.4"
  5134. },
  5135. "suggest": {
  5136. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5137. "ext-intl": "To show region name in time zone dump",
  5138. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5139. },
  5140. "bin": [
  5141. "Resources/bin/var-dump-server"
  5142. ],
  5143. "type": "library",
  5144. "autoload": {
  5145. "files": [
  5146. "Resources/functions/dump.php"
  5147. ],
  5148. "psr-4": {
  5149. "Symfony\\Component\\VarDumper\\": ""
  5150. },
  5151. "exclude-from-classmap": [
  5152. "/Tests/"
  5153. ]
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "MIT"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Nicolas Grekas",
  5162. "email": "p@tchwork.com"
  5163. },
  5164. {
  5165. "name": "Symfony Community",
  5166. "homepage": "https://symfony.com/contributors"
  5167. }
  5168. ],
  5169. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5170. "homepage": "https://symfony.com",
  5171. "keywords": [
  5172. "debug",
  5173. "dump"
  5174. ],
  5175. "time": "2022-10-03T15:15:11+00:00"
  5176. },
  5177. {
  5178. "name": "topthink/think-trace",
  5179. "version": "v1.6",
  5180. "source": {
  5181. "type": "git",
  5182. "url": "https://github.com/top-think/think-trace.git",
  5183. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  5184. },
  5185. "dist": {
  5186. "type": "zip",
  5187. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  5188. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  5189. "shasum": ""
  5190. },
  5191. "require": {
  5192. "php": ">=7.1.0",
  5193. "topthink/framework": "^6.0|^8.0"
  5194. },
  5195. "type": "library",
  5196. "extra": {
  5197. "think": {
  5198. "services": [
  5199. "think\\trace\\Service"
  5200. ],
  5201. "config": {
  5202. "trace": "src/config.php"
  5203. }
  5204. }
  5205. },
  5206. "autoload": {
  5207. "psr-4": {
  5208. "think\\trace\\": "src"
  5209. }
  5210. },
  5211. "notification-url": "https://packagist.org/downloads/",
  5212. "license": [
  5213. "Apache-2.0"
  5214. ],
  5215. "authors": [
  5216. {
  5217. "name": "liu21st",
  5218. "email": "liu21st@gmail.com"
  5219. }
  5220. ],
  5221. "description": "thinkphp debug trace",
  5222. "time": "2023-02-07T08:36:32+00:00"
  5223. }
  5224. ],
  5225. "aliases": [],
  5226. "minimum-stability": "stable",
  5227. "stability-flags": [],
  5228. "prefer-stable": false,
  5229. "prefer-lowest": false,
  5230. "platform": {
  5231. "php": ">=7.1.0"
  5232. },
  5233. "platform-dev": [],
  5234. "plugin-api-version": "2.3.0"
  5235. }