installed.json 188 KB

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