composer.lock 192 KB

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