installed.json 189 KB

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