composer.lock 197 KB

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