composer.lock 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "3592ef899763b9636efbba2f547d2781",
  8. "packages": [
  9. {
  10. "name": "composer/pcre",
  11. "version": "3.3.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/pcre.git",
  15. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  20. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.4 || ^8.0"
  31. },
  32. "conflict": {
  33. "phpstan/phpstan": "<1.11.10"
  34. },
  35. "require-dev": {
  36. "phpstan/phpstan": "^1.12 || ^2",
  37. "phpstan/phpstan-strict-rules": "^1 || ^2",
  38. "phpunit/phpunit": "^8 || ^9"
  39. },
  40. "type": "library",
  41. "extra": {
  42. "branch-alias": {
  43. "dev-main": "3.x-dev"
  44. },
  45. "phpstan": {
  46. "includes": [
  47. "extension.neon"
  48. ]
  49. }
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "Composer\\Pcre\\": "src"
  54. }
  55. },
  56. "notification-url": "https://packagist.org/downloads/",
  57. "license": [
  58. "MIT"
  59. ],
  60. "authors": [
  61. {
  62. "name": "Jordi Boggiano",
  63. "email": "j.boggiano@seld.be",
  64. "homepage": "http://seld.be"
  65. }
  66. ],
  67. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  68. "keywords": [
  69. "PCRE",
  70. "preg",
  71. "regex",
  72. "regular expression"
  73. ],
  74. "support": {
  75. "issues": "https://github.com/composer/pcre/issues",
  76. "source": "https://github.com/composer/pcre/tree/3.3.2"
  77. },
  78. "funding": [
  79. {
  80. "url": "https://packagist.com",
  81. "type": "custom"
  82. },
  83. {
  84. "url": "https://github.com/composer",
  85. "type": "github"
  86. },
  87. {
  88. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  89. "type": "tidelift"
  90. }
  91. ],
  92. "time": "2024-11-12T16:29:46+00:00"
  93. },
  94. {
  95. "name": "doctrine/cache",
  96. "version": "v1.6.2",
  97. "source": {
  98. "type": "git",
  99. "url": "https://github.com/doctrine/cache.git",
  100. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  101. },
  102. "dist": {
  103. "type": "zip",
  104. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  105. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  106. "shasum": "",
  107. "mirrors": [
  108. {
  109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  110. "preferred": true
  111. }
  112. ]
  113. },
  114. "require": {
  115. "php": "~5.5|~7.0"
  116. },
  117. "conflict": {
  118. "doctrine/common": ">2.2,<2.4"
  119. },
  120. "require-dev": {
  121. "phpunit/phpunit": "~4.8|~5.0",
  122. "predis/predis": "~1.0",
  123. "satooshi/php-coveralls": "~0.6"
  124. },
  125. "type": "library",
  126. "extra": {
  127. "branch-alias": {
  128. "dev-master": "1.6.x-dev"
  129. }
  130. },
  131. "autoload": {
  132. "psr-4": {
  133. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  134. }
  135. },
  136. "notification-url": "https://packagist.org/downloads/",
  137. "license": [
  138. "MIT"
  139. ],
  140. "authors": [
  141. {
  142. "name": "Roman Borschel",
  143. "email": "roman@code-factory.org"
  144. },
  145. {
  146. "name": "Benjamin Eberlei",
  147. "email": "kontakt@beberlei.de"
  148. },
  149. {
  150. "name": "Guilherme Blanco",
  151. "email": "guilhermeblanco@gmail.com"
  152. },
  153. {
  154. "name": "Jonathan Wage",
  155. "email": "jonwage@gmail.com"
  156. },
  157. {
  158. "name": "Johannes Schmitt",
  159. "email": "schmittjoh@gmail.com"
  160. }
  161. ],
  162. "description": "Caching library offering an object-oriented API for many cache backends",
  163. "homepage": "http://www.doctrine-project.org",
  164. "keywords": [
  165. "cache",
  166. "caching"
  167. ],
  168. "support": {
  169. "issues": "https://github.com/doctrine/cache/issues",
  170. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  171. },
  172. "time": "2017-07-22T12:49:21+00:00"
  173. },
  174. {
  175. "name": "endroid/qr-code",
  176. "version": "1.9.3",
  177. "source": {
  178. "type": "git",
  179. "url": "https://github.com/endroid/qr-code.git",
  180. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93"
  181. },
  182. "dist": {
  183. "type": "zip",
  184. "url": "https://api.github.com/repos/endroid/qr-code/zipball/c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  185. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  186. "shasum": "",
  187. "mirrors": [
  188. {
  189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  190. "preferred": true
  191. }
  192. ]
  193. },
  194. "require": {
  195. "ext-gd": "*",
  196. "php": ">=5.4",
  197. "symfony/options-resolver": "^2.3|^3.0"
  198. },
  199. "require-dev": {
  200. "phpunit/phpunit": "^4.0|^5.0",
  201. "sensio/framework-extra-bundle": "^3.0",
  202. "symfony/browser-kit": "^2.3|^3.0",
  203. "symfony/framework-bundle": "^2.3|^3.0",
  204. "symfony/http-kernel": "^2.3|^3.0"
  205. },
  206. "type": "library",
  207. "extra": {
  208. "branch-alias": {
  209. "dev-master": "1.x-dev"
  210. }
  211. },
  212. "autoload": {
  213. "psr-4": {
  214. "Endroid\\QrCode\\": "src/"
  215. }
  216. },
  217. "notification-url": "https://packagist.org/downloads/",
  218. "license": [
  219. "MIT"
  220. ],
  221. "authors": [
  222. {
  223. "name": "Jeroen van den Enden",
  224. "email": "info@endroid.nl",
  225. "homepage": "http://endroid.nl/"
  226. }
  227. ],
  228. "description": "Endroid QR Code",
  229. "homepage": "https://github.com/endroid/QrCode",
  230. "keywords": [
  231. "bundle",
  232. "code",
  233. "endroid",
  234. "qr",
  235. "qrcode",
  236. "symfony"
  237. ],
  238. "support": {
  239. "issues": "https://github.com/endroid/qr-code/issues",
  240. "source": "https://github.com/endroid/qr-code/tree/1.9.3"
  241. },
  242. "time": "2017-04-08T09:13:59+00:00"
  243. },
  244. {
  245. "name": "evenement/evenement",
  246. "version": "v3.0.2",
  247. "source": {
  248. "type": "git",
  249. "url": "https://github.com/igorw/evenement.git",
  250. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  251. },
  252. "dist": {
  253. "type": "zip",
  254. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  255. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  256. "shasum": ""
  257. },
  258. "require": {
  259. "php": ">=7.0"
  260. },
  261. "require-dev": {
  262. "phpunit/phpunit": "^9 || ^6"
  263. },
  264. "type": "library",
  265. "autoload": {
  266. "psr-4": {
  267. "Evenement\\": "src/"
  268. }
  269. },
  270. "notification-url": "https://packagist.org/downloads/",
  271. "license": [
  272. "MIT"
  273. ],
  274. "authors": [
  275. {
  276. "name": "Igor Wiedler",
  277. "email": "igor@wiedler.ch"
  278. }
  279. ],
  280. "description": "Événement is a very simple event dispatching library for PHP",
  281. "keywords": [
  282. "event-dispatcher",
  283. "event-emitter"
  284. ],
  285. "support": {
  286. "issues": "https://github.com/igorw/evenement/issues",
  287. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  288. },
  289. "time": "2023-08-08T05:53:35+00:00"
  290. },
  291. {
  292. "name": "ezyang/htmlpurifier",
  293. "version": "v4.18.0",
  294. "source": {
  295. "type": "git",
  296. "url": "https://github.com/ezyang/htmlpurifier.git",
  297. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  298. },
  299. "dist": {
  300. "type": "zip",
  301. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  302. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  303. "shasum": "",
  304. "mirrors": [
  305. {
  306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  307. "preferred": true
  308. }
  309. ]
  310. },
  311. "require": {
  312. "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 || ~8.3.0 || ~8.4.0"
  313. },
  314. "require-dev": {
  315. "cerdic/css-tidy": "^1.7 || ^2.0",
  316. "simpletest/simpletest": "dev-master"
  317. },
  318. "suggest": {
  319. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  320. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  321. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  322. "ext-tidy": "Used for pretty-printing HTML"
  323. },
  324. "type": "library",
  325. "autoload": {
  326. "files": [
  327. "library/HTMLPurifier.composer.php"
  328. ],
  329. "psr-0": {
  330. "HTMLPurifier": "library/"
  331. },
  332. "exclude-from-classmap": [
  333. "/library/HTMLPurifier/Language/"
  334. ]
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "LGPL-2.1-or-later"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Edward Z. Yang",
  343. "email": "admin@htmlpurifier.org",
  344. "homepage": "http://ezyang.com"
  345. }
  346. ],
  347. "description": "Standards compliant HTML filter written in PHP",
  348. "homepage": "http://htmlpurifier.org/",
  349. "keywords": [
  350. "html"
  351. ],
  352. "support": {
  353. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  354. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  355. },
  356. "time": "2024-11-01T03:51:45+00:00"
  357. },
  358. {
  359. "name": "fenguoz/tron-php",
  360. "version": "1.3.0",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/Fenguoz/tron-php.git",
  364. "reference": "6e39e8e1fb9e7c6bd3e2f589c7eb13378d8bdf5d"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/Fenguoz/tron-php/zipball/6e39e8e1fb9e7c6bd3e2f589c7eb13378d8bdf5d",
  369. "reference": "6e39e8e1fb9e7c6bd3e2f589c7eb13378d8bdf5d",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "iexbase/tron-api": "^2.0 || ^3.0 || ^3.1",
  374. "ionux/phactor": "1.0.8",
  375. "kornrunner/keccak": "^1.0"
  376. },
  377. "require-dev": {
  378. "phpunit/phpunit": "^5.7 || ^7.5"
  379. },
  380. "type": "library",
  381. "autoload": {
  382. "psr-4": {
  383. "Tron\\": "src/"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Fenguoz",
  393. "email": "243944672@qq.com"
  394. }
  395. ],
  396. "description": "Support TRON's TRX and TRC20, which include functions such as address creation, balance query, transaction transfer, query the latest blockchain, query information based on the blockchain, and query information based on the transaction hash",
  397. "homepage": "https://github.com/Fenguoz/tron-php",
  398. "keywords": [
  399. "php",
  400. "trc20",
  401. "tron",
  402. "trx"
  403. ],
  404. "support": {
  405. "issues": "https://github.com/Fenguoz/tron-php/issues",
  406. "source": "https://github.com/Fenguoz/tron-php/tree/1.3.0"
  407. },
  408. "time": "2021-06-01T08:57:59+00:00"
  409. },
  410. {
  411. "name": "fgrosse/phpasn1",
  412. "version": "v2.5.0",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/fgrosse/PHPASN1.git",
  416. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/42060ed45344789fb9f21f9f1864fc47b9e3507b",
  421. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b",
  422. "shasum": "",
  423. "mirrors": [
  424. {
  425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  426. "preferred": true
  427. }
  428. ]
  429. },
  430. "require": {
  431. "php": "^7.1 || ^8.0"
  432. },
  433. "require-dev": {
  434. "php-coveralls/php-coveralls": "~2.0",
  435. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  436. },
  437. "suggest": {
  438. "ext-bcmath": "BCmath is the fallback extension for big integer calculations",
  439. "ext-curl": "For loading OID information from the web if they have not bee defined statically",
  440. "ext-gmp": "GMP is the preferred extension for big integer calculations",
  441. "phpseclib/bcmath_compat": "BCmath polyfill for servers where neither GMP nor BCmath is available"
  442. },
  443. "type": "library",
  444. "extra": {
  445. "branch-alias": {
  446. "dev-master": "2.0.x-dev"
  447. }
  448. },
  449. "autoload": {
  450. "psr-4": {
  451. "FG\\": "lib/"
  452. }
  453. },
  454. "notification-url": "https://packagist.org/downloads/",
  455. "license": [
  456. "MIT"
  457. ],
  458. "authors": [
  459. {
  460. "name": "Friedrich Große",
  461. "email": "friedrich.grosse@gmail.com",
  462. "homepage": "https://github.com/FGrosse",
  463. "role": "Author"
  464. },
  465. {
  466. "name": "All contributors",
  467. "homepage": "https://github.com/FGrosse/PHPASN1/contributors"
  468. }
  469. ],
  470. "description": "A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.",
  471. "homepage": "https://github.com/FGrosse/PHPASN1",
  472. "keywords": [
  473. "DER",
  474. "asn.1",
  475. "asn1",
  476. "ber",
  477. "binary",
  478. "decoding",
  479. "encoding",
  480. "x.509",
  481. "x.690",
  482. "x509",
  483. "x690"
  484. ],
  485. "support": {
  486. "issues": "https://github.com/fgrosse/PHPASN1/issues",
  487. "source": "https://github.com/fgrosse/PHPASN1/tree/v2.5.0"
  488. },
  489. "abandoned": true,
  490. "time": "2022-12-19T11:08:26+00:00"
  491. },
  492. {
  493. "name": "fig/http-message-util",
  494. "version": "1.1.5",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/php-fig/http-message-util.git",
  498. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  503. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "php": "^5.3 || ^7.0 || ^8.0"
  508. },
  509. "suggest": {
  510. "psr/http-message": "The package containing the PSR-7 interfaces"
  511. },
  512. "type": "library",
  513. "extra": {
  514. "branch-alias": {
  515. "dev-master": "1.1.x-dev"
  516. }
  517. },
  518. "autoload": {
  519. "psr-4": {
  520. "Fig\\Http\\Message\\": "src/"
  521. }
  522. },
  523. "notification-url": "https://packagist.org/downloads/",
  524. "license": [
  525. "MIT"
  526. ],
  527. "authors": [
  528. {
  529. "name": "PHP-FIG",
  530. "homepage": "https://www.php-fig.org/"
  531. }
  532. ],
  533. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  534. "keywords": [
  535. "http",
  536. "http-message",
  537. "psr",
  538. "psr-7",
  539. "request",
  540. "response"
  541. ],
  542. "support": {
  543. "issues": "https://github.com/php-fig/http-message-util/issues",
  544. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  545. },
  546. "time": "2020-11-24T22:02:12+00:00"
  547. },
  548. {
  549. "name": "guzzlehttp/guzzle",
  550. "version": "6.5.8",
  551. "source": {
  552. "type": "git",
  553. "url": "https://github.com/guzzle/guzzle.git",
  554. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  555. },
  556. "dist": {
  557. "type": "zip",
  558. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  559. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  560. "shasum": "",
  561. "mirrors": [
  562. {
  563. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  564. "preferred": true
  565. }
  566. ]
  567. },
  568. "require": {
  569. "ext-json": "*",
  570. "guzzlehttp/promises": "^1.0",
  571. "guzzlehttp/psr7": "^1.9",
  572. "php": ">=5.5",
  573. "symfony/polyfill-intl-idn": "^1.17"
  574. },
  575. "require-dev": {
  576. "ext-curl": "*",
  577. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  578. "psr/log": "^1.1"
  579. },
  580. "suggest": {
  581. "psr/log": "Required for using the Log middleware"
  582. },
  583. "type": "library",
  584. "extra": {
  585. "branch-alias": {
  586. "dev-master": "6.5-dev"
  587. }
  588. },
  589. "autoload": {
  590. "files": [
  591. "src/functions_include.php"
  592. ],
  593. "psr-4": {
  594. "GuzzleHttp\\": "src/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "Graham Campbell",
  604. "email": "hello@gjcampbell.co.uk",
  605. "homepage": "https://github.com/GrahamCampbell"
  606. },
  607. {
  608. "name": "Michael Dowling",
  609. "email": "mtdowling@gmail.com",
  610. "homepage": "https://github.com/mtdowling"
  611. },
  612. {
  613. "name": "Jeremy Lindblom",
  614. "email": "jeremeamia@gmail.com",
  615. "homepage": "https://github.com/jeremeamia"
  616. },
  617. {
  618. "name": "George Mponos",
  619. "email": "gmponos@gmail.com",
  620. "homepage": "https://github.com/gmponos"
  621. },
  622. {
  623. "name": "Tobias Nyholm",
  624. "email": "tobias.nyholm@gmail.com",
  625. "homepage": "https://github.com/Nyholm"
  626. },
  627. {
  628. "name": "Márk Sági-Kazár",
  629. "email": "mark.sagikazar@gmail.com",
  630. "homepage": "https://github.com/sagikazarmark"
  631. },
  632. {
  633. "name": "Tobias Schultze",
  634. "email": "webmaster@tubo-world.de",
  635. "homepage": "https://github.com/Tobion"
  636. }
  637. ],
  638. "description": "Guzzle is a PHP HTTP client library",
  639. "homepage": "http://guzzlephp.org/",
  640. "keywords": [
  641. "client",
  642. "curl",
  643. "framework",
  644. "http",
  645. "http client",
  646. "rest",
  647. "web service"
  648. ],
  649. "support": {
  650. "issues": "https://github.com/guzzle/guzzle/issues",
  651. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  652. },
  653. "funding": [
  654. {
  655. "url": "https://github.com/GrahamCampbell",
  656. "type": "github"
  657. },
  658. {
  659. "url": "https://github.com/Nyholm",
  660. "type": "github"
  661. },
  662. {
  663. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  664. "type": "tidelift"
  665. }
  666. ],
  667. "time": "2022-06-20T22:16:07+00:00"
  668. },
  669. {
  670. "name": "guzzlehttp/promises",
  671. "version": "1.5.3",
  672. "source": {
  673. "type": "git",
  674. "url": "https://github.com/guzzle/promises.git",
  675. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  676. },
  677. "dist": {
  678. "type": "zip",
  679. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  680. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  681. "shasum": "",
  682. "mirrors": [
  683. {
  684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  685. "preferred": true
  686. }
  687. ]
  688. },
  689. "require": {
  690. "php": ">=5.5"
  691. },
  692. "require-dev": {
  693. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  694. },
  695. "type": "library",
  696. "autoload": {
  697. "files": [
  698. "src/functions_include.php"
  699. ],
  700. "psr-4": {
  701. "GuzzleHttp\\Promise\\": "src/"
  702. }
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "MIT"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Graham Campbell",
  711. "email": "hello@gjcampbell.co.uk",
  712. "homepage": "https://github.com/GrahamCampbell"
  713. },
  714. {
  715. "name": "Michael Dowling",
  716. "email": "mtdowling@gmail.com",
  717. "homepage": "https://github.com/mtdowling"
  718. },
  719. {
  720. "name": "Tobias Nyholm",
  721. "email": "tobias.nyholm@gmail.com",
  722. "homepage": "https://github.com/Nyholm"
  723. },
  724. {
  725. "name": "Tobias Schultze",
  726. "email": "webmaster@tubo-world.de",
  727. "homepage": "https://github.com/Tobion"
  728. }
  729. ],
  730. "description": "Guzzle promises library",
  731. "keywords": [
  732. "promise"
  733. ],
  734. "support": {
  735. "issues": "https://github.com/guzzle/promises/issues",
  736. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  737. },
  738. "funding": [
  739. {
  740. "url": "https://github.com/GrahamCampbell",
  741. "type": "github"
  742. },
  743. {
  744. "url": "https://github.com/Nyholm",
  745. "type": "github"
  746. },
  747. {
  748. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  749. "type": "tidelift"
  750. }
  751. ],
  752. "time": "2023-05-21T12:31:43+00:00"
  753. },
  754. {
  755. "name": "guzzlehttp/psr7",
  756. "version": "1.9.1",
  757. "source": {
  758. "type": "git",
  759. "url": "https://github.com/guzzle/psr7.git",
  760. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  761. },
  762. "dist": {
  763. "type": "zip",
  764. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  765. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  766. "shasum": "",
  767. "mirrors": [
  768. {
  769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  770. "preferred": true
  771. }
  772. ]
  773. },
  774. "require": {
  775. "php": ">=5.4.0",
  776. "psr/http-message": "~1.0",
  777. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  778. },
  779. "provide": {
  780. "psr/http-message-implementation": "1.0"
  781. },
  782. "require-dev": {
  783. "ext-zlib": "*",
  784. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  785. },
  786. "suggest": {
  787. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  788. },
  789. "type": "library",
  790. "autoload": {
  791. "files": [
  792. "src/functions_include.php"
  793. ],
  794. "psr-4": {
  795. "GuzzleHttp\\Psr7\\": "src/"
  796. }
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "MIT"
  801. ],
  802. "authors": [
  803. {
  804. "name": "Graham Campbell",
  805. "email": "hello@gjcampbell.co.uk",
  806. "homepage": "https://github.com/GrahamCampbell"
  807. },
  808. {
  809. "name": "Michael Dowling",
  810. "email": "mtdowling@gmail.com",
  811. "homepage": "https://github.com/mtdowling"
  812. },
  813. {
  814. "name": "George Mponos",
  815. "email": "gmponos@gmail.com",
  816. "homepage": "https://github.com/gmponos"
  817. },
  818. {
  819. "name": "Tobias Nyholm",
  820. "email": "tobias.nyholm@gmail.com",
  821. "homepage": "https://github.com/Nyholm"
  822. },
  823. {
  824. "name": "Márk Sági-Kazár",
  825. "email": "mark.sagikazar@gmail.com",
  826. "homepage": "https://github.com/sagikazarmark"
  827. },
  828. {
  829. "name": "Tobias Schultze",
  830. "email": "webmaster@tubo-world.de",
  831. "homepage": "https://github.com/Tobion"
  832. }
  833. ],
  834. "description": "PSR-7 message implementation that also provides common utility methods",
  835. "keywords": [
  836. "http",
  837. "message",
  838. "psr-7",
  839. "request",
  840. "response",
  841. "stream",
  842. "uri",
  843. "url"
  844. ],
  845. "support": {
  846. "issues": "https://github.com/guzzle/psr7/issues",
  847. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  848. },
  849. "funding": [
  850. {
  851. "url": "https://github.com/GrahamCampbell",
  852. "type": "github"
  853. },
  854. {
  855. "url": "https://github.com/Nyholm",
  856. "type": "github"
  857. },
  858. {
  859. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  860. "type": "tidelift"
  861. }
  862. ],
  863. "time": "2023-04-17T16:00:37+00:00"
  864. },
  865. {
  866. "name": "iexbase/tron-api",
  867. "version": "v3.0",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/iexbase/tron-api.git",
  871. "reference": "0b286ea0fec5222e35e8a7fb32924f5de93f3500"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/iexbase/tron-api/zipball/0b286ea0fec5222e35e8a7fb32924f5de93f3500",
  876. "reference": "0b286ea0fec5222e35e8a7fb32924f5de93f3500",
  877. "shasum": "",
  878. "mirrors": [
  879. {
  880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  881. "preferred": true
  882. }
  883. ]
  884. },
  885. "require": {
  886. "guzzlehttp/guzzle": "^6.3 | ^7.0",
  887. "kornrunner/secp256k1": "^0.1.2",
  888. "php": "^7.1",
  889. "sc0vu/web3.php": "^0.1.4",
  890. "simplito/elliptic-php": "^1.0"
  891. },
  892. "require-dev": {
  893. "phpunit/phpunit": "^6.0"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "IEXBase\\TronAPI\\": "src"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Shamsudin Serderov",
  908. "email": "steein.shamsudin@gmail.com"
  909. }
  910. ],
  911. "description": "A PHP API for interacting with Tron (Trx)",
  912. "homepage": "https://github.com/iexbase/tron-api",
  913. "keywords": [
  914. "iexbase",
  915. "tron-api",
  916. "tron-lib",
  917. "tron-php",
  918. "tron-rest-api"
  919. ],
  920. "support": {
  921. "issues": "https://github.com/iexbase/tron-api/issues",
  922. "source": "https://github.com/iexbase/tron-api/tree/v3.0"
  923. },
  924. "time": "2020-09-23T14:15:08+00:00"
  925. },
  926. {
  927. "name": "ionux/phactor",
  928. "version": "v1.0.8",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/ionux/phactor.git",
  932. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/ionux/phactor/zipball/271373b65cffe75a8c28f7f8c392fe460251f4f7",
  937. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7",
  938. "shasum": ""
  939. },
  940. "require": {
  941. "ext-bcmath": "*",
  942. "ext-openssl": "*",
  943. "php": ">=5.6.0"
  944. },
  945. "require-dev": {
  946. "phpunit/phpunit": "^5.7.9"
  947. },
  948. "suggest": {
  949. "ext-gmp": "Highest performing math library and preferred for this library's Elliptic Curve calculations."
  950. },
  951. "type": "library",
  952. "autoload": {
  953. "psr-4": {
  954. "Phactor\\": "src/"
  955. }
  956. },
  957. "notification-url": "https://packagist.org/downloads/",
  958. "license": [
  959. "MIT"
  960. ],
  961. "authors": [
  962. {
  963. "name": "Rich Morgan",
  964. "email": "rich@richmorgan.me",
  965. "role": "Creator and Lead Developer"
  966. }
  967. ],
  968. "description": "Phactor is a high-performance PHP implementation of the elliptic curve math functions required to generate & verify private/public (asymmetric) EC keypairs and ECDSA signatures based on secp256k1 curve parameters. This library also includes a class to generate Service Identification Numbers (SINs) based on the published Identity Protocol v1 spec.",
  969. "homepage": "https://github.com/ionux/phactor",
  970. "keywords": [
  971. "Algorithm",
  972. "BIP",
  973. "ECDSA",
  974. "SIN",
  975. "arbitrary",
  976. "asymmetric",
  977. "base",
  978. "base58",
  979. "bcmath",
  980. "binary",
  981. "bitcoin",
  982. "calculator",
  983. "coprime",
  984. "crypto",
  985. "cryptography",
  986. "curve",
  987. "digital",
  988. "dsa",
  989. "ec",
  990. "elliptic",
  991. "encryption",
  992. "generate",
  993. "gmp",
  994. "hex",
  995. "identification",
  996. "identity",
  997. "integer",
  998. "key",
  999. "keygen",
  1000. "keypair",
  1001. "keys",
  1002. "library",
  1003. "math",
  1004. "number",
  1005. "performance",
  1006. "phactor",
  1007. "precision",
  1008. "prime",
  1009. "private",
  1010. "protocol",
  1011. "public",
  1012. "secp256k1",
  1013. "service",
  1014. "signature",
  1015. "verify"
  1016. ],
  1017. "support": {
  1018. "email": "rich@richmorgan.me",
  1019. "issues": "https://github.com/ionux/phactor/issues",
  1020. "source": "https://github.com/ionux/phactor"
  1021. },
  1022. "time": "2018-04-27T16:49:28+00:00"
  1023. },
  1024. {
  1025. "name": "karsonzhang/fastadmin-addons",
  1026. "version": "1.1.11",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/fastadminnet/fastadmin-addons.git",
  1030. "reference": "0a23d8172a652e739f1b775d34188416e060e907"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/fastadminnet/fastadmin-addons/zipball/0a23d8172a652e739f1b775d34188416e060e907",
  1035. "reference": "0a23d8172a652e739f1b775d34188416e060e907",
  1036. "shasum": "",
  1037. "mirrors": [
  1038. {
  1039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1040. "preferred": true
  1041. }
  1042. ]
  1043. },
  1044. "require": {
  1045. "php": ">=7.0.0"
  1046. },
  1047. "type": "library",
  1048. "extra": {
  1049. "think-config": {
  1050. "addons": "src/config.php"
  1051. }
  1052. },
  1053. "autoload": {
  1054. "files": [
  1055. "src/common.php"
  1056. ],
  1057. "psr-4": {
  1058. "think\\": "src/"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "Apache-2.0"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "Karson",
  1068. "email": "karson@fastadmin.net"
  1069. },
  1070. {
  1071. "name": "xiaobo.sun",
  1072. "email": "xiaobo.sun@qq.com"
  1073. }
  1074. ],
  1075. "description": "addons package for fastadmin",
  1076. "homepage": "https://github.com/karsonzhang/fastadmin-addons",
  1077. "support": {
  1078. "issues": "https://github.com/karsonzhang/fastadmin-addons/issues",
  1079. "source": "https://github.com/fastadminnet/fastadmin-addons/tree/v1.1.11"
  1080. },
  1081. "time": "2020-06-12T08:57:13+00:00"
  1082. },
  1083. {
  1084. "name": "kornrunner/keccak",
  1085. "version": "1.1.0",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/kornrunner/php-keccak.git",
  1089. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/kornrunner/php-keccak/zipball/433749d28e117fb97baf9f2631b92b5d9ab3c890",
  1094. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890",
  1095. "shasum": "",
  1096. "mirrors": [
  1097. {
  1098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1099. "preferred": true
  1100. }
  1101. ]
  1102. },
  1103. "require": {
  1104. "php": ">=7.3",
  1105. "symfony/polyfill-mbstring": "^1.8"
  1106. },
  1107. "require-dev": {
  1108. "phpunit/phpunit": "^8.2"
  1109. },
  1110. "type": "library",
  1111. "autoload": {
  1112. "psr-4": {
  1113. "kornrunner\\": "src"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "MIT"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "Boris Momcilovic",
  1123. "homepage": "https://github.com/kornrunner/php-keccak"
  1124. }
  1125. ],
  1126. "description": "Pure PHP implementation of Keccak",
  1127. "keywords": [
  1128. "keccak",
  1129. "sha-3",
  1130. "sha3-256"
  1131. ],
  1132. "support": {
  1133. "issues": "https://github.com/kornrunner/php-keccak/issues",
  1134. "source": "https://github.com/kornrunner/php-keccak/tree/1.1.0"
  1135. },
  1136. "time": "2020-12-07T15:40:44+00:00"
  1137. },
  1138. {
  1139. "name": "kornrunner/secp256k1",
  1140. "version": "0.1.2",
  1141. "source": {
  1142. "type": "git",
  1143. "url": "https://github.com/kornrunner/php-secp256k1.git",
  1144. "reference": "915f0ef1ec748606a1117b171093266de349b058"
  1145. },
  1146. "dist": {
  1147. "type": "zip",
  1148. "url": "https://api.github.com/repos/kornrunner/php-secp256k1/zipball/915f0ef1ec748606a1117b171093266de349b058",
  1149. "reference": "915f0ef1ec748606a1117b171093266de349b058",
  1150. "shasum": "",
  1151. "mirrors": [
  1152. {
  1153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1154. "preferred": true
  1155. }
  1156. ]
  1157. },
  1158. "require": {
  1159. "mdanter/ecc": "^0.5",
  1160. "php": ">=7.1"
  1161. },
  1162. "require-dev": {
  1163. "php-coveralls/php-coveralls": "^2.1",
  1164. "phpunit/phpunit": "^7"
  1165. },
  1166. "type": "library",
  1167. "autoload": {
  1168. "psr-4": {
  1169. "kornrunner\\": "src/"
  1170. }
  1171. },
  1172. "notification-url": "https://packagist.org/downloads/",
  1173. "license": [
  1174. "MIT"
  1175. ],
  1176. "authors": [
  1177. {
  1178. "name": "Boris Momčilović",
  1179. "email": "boris.momcilovic@gmail.com"
  1180. }
  1181. ],
  1182. "description": "Pure PHP secp256k1",
  1183. "keywords": [
  1184. "curve",
  1185. "ecc",
  1186. "elliptic",
  1187. "secp256k1"
  1188. ],
  1189. "support": {
  1190. "issues": "https://github.com/kornrunner/php-secp256k1/issues",
  1191. "source": "https://github.com/kornrunner/php-secp256k1/tree/master"
  1192. },
  1193. "time": "2019-01-16T17:01:51+00:00"
  1194. },
  1195. {
  1196. "name": "maennchen/zipstream-php",
  1197. "version": "2.2.6",
  1198. "source": {
  1199. "type": "git",
  1200. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1201. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  1202. },
  1203. "dist": {
  1204. "type": "zip",
  1205. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  1206. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  1207. "shasum": "",
  1208. "mirrors": [
  1209. {
  1210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1211. "preferred": true
  1212. }
  1213. ]
  1214. },
  1215. "require": {
  1216. "myclabs/php-enum": "^1.5",
  1217. "php": "^7.4 || ^8.0",
  1218. "psr/http-message": "^1.0",
  1219. "symfony/polyfill-mbstring": "^1.0"
  1220. },
  1221. "require-dev": {
  1222. "ext-zip": "*",
  1223. "friendsofphp/php-cs-fixer": "^3.9",
  1224. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  1225. "mikey179/vfsstream": "^1.6",
  1226. "php-coveralls/php-coveralls": "^2.4",
  1227. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  1228. "vimeo/psalm": "^4.1"
  1229. },
  1230. "type": "library",
  1231. "autoload": {
  1232. "psr-4": {
  1233. "ZipStream\\": "src/"
  1234. }
  1235. },
  1236. "notification-url": "https://packagist.org/downloads/",
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Paul Duncan",
  1243. "email": "pabs@pablotron.org"
  1244. },
  1245. {
  1246. "name": "Jonatan Männchen",
  1247. "email": "jonatan@maennchen.ch"
  1248. },
  1249. {
  1250. "name": "Jesse Donat",
  1251. "email": "donatj@gmail.com"
  1252. },
  1253. {
  1254. "name": "András Kolesár",
  1255. "email": "kolesar@kolesar.hu"
  1256. }
  1257. ],
  1258. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1259. "keywords": [
  1260. "stream",
  1261. "zip"
  1262. ],
  1263. "support": {
  1264. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1265. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  1266. },
  1267. "funding": [
  1268. {
  1269. "url": "https://github.com/maennchen",
  1270. "type": "github"
  1271. },
  1272. {
  1273. "url": "https://opencollective.com/zipstream",
  1274. "type": "open_collective"
  1275. }
  1276. ],
  1277. "time": "2022-11-25T18:57:19+00:00"
  1278. },
  1279. {
  1280. "name": "markbaker/complex",
  1281. "version": "3.0.2",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1285. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1290. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1291. "shasum": "",
  1292. "mirrors": [
  1293. {
  1294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1295. "preferred": true
  1296. }
  1297. ]
  1298. },
  1299. "require": {
  1300. "php": "^7.2 || ^8.0"
  1301. },
  1302. "require-dev": {
  1303. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1304. "phpcompatibility/php-compatibility": "^9.3",
  1305. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1306. "squizlabs/php_codesniffer": "^3.7"
  1307. },
  1308. "type": "library",
  1309. "autoload": {
  1310. "psr-4": {
  1311. "Complex\\": "classes/src/"
  1312. }
  1313. },
  1314. "notification-url": "https://packagist.org/downloads/",
  1315. "license": [
  1316. "MIT"
  1317. ],
  1318. "authors": [
  1319. {
  1320. "name": "Mark Baker",
  1321. "email": "mark@lange.demon.co.uk"
  1322. }
  1323. ],
  1324. "description": "PHP Class for working with complex numbers",
  1325. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1326. "keywords": [
  1327. "complex",
  1328. "mathematics"
  1329. ],
  1330. "support": {
  1331. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1332. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  1333. },
  1334. "time": "2022-12-06T16:21:08+00:00"
  1335. },
  1336. {
  1337. "name": "markbaker/matrix",
  1338. "version": "3.0.1",
  1339. "source": {
  1340. "type": "git",
  1341. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1342. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  1343. },
  1344. "dist": {
  1345. "type": "zip",
  1346. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  1347. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  1348. "shasum": "",
  1349. "mirrors": [
  1350. {
  1351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1352. "preferred": true
  1353. }
  1354. ]
  1355. },
  1356. "require": {
  1357. "php": "^7.1 || ^8.0"
  1358. },
  1359. "require-dev": {
  1360. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1361. "phpcompatibility/php-compatibility": "^9.3",
  1362. "phpdocumentor/phpdocumentor": "2.*",
  1363. "phploc/phploc": "^4.0",
  1364. "phpmd/phpmd": "2.*",
  1365. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1366. "sebastian/phpcpd": "^4.0",
  1367. "squizlabs/php_codesniffer": "^3.7"
  1368. },
  1369. "type": "library",
  1370. "autoload": {
  1371. "psr-4": {
  1372. "Matrix\\": "classes/src/"
  1373. }
  1374. },
  1375. "notification-url": "https://packagist.org/downloads/",
  1376. "license": [
  1377. "MIT"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Mark Baker",
  1382. "email": "mark@demon-angel.eu"
  1383. }
  1384. ],
  1385. "description": "PHP Class for working with matrices",
  1386. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1387. "keywords": [
  1388. "mathematics",
  1389. "matrix",
  1390. "vector"
  1391. ],
  1392. "support": {
  1393. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1394. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  1395. },
  1396. "time": "2022-12-02T22:17:43+00:00"
  1397. },
  1398. {
  1399. "name": "mdanter/ecc",
  1400. "version": "v0.5.2",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/phpecc/phpecc.git",
  1404. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/phpecc/phpecc/zipball/b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  1409. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  1410. "shasum": "",
  1411. "mirrors": [
  1412. {
  1413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1414. "preferred": true
  1415. }
  1416. ]
  1417. },
  1418. "require": {
  1419. "ext-gmp": "*",
  1420. "fgrosse/phpasn1": "^2.0",
  1421. "php": "^7.0"
  1422. },
  1423. "require-dev": {
  1424. "phpunit/phpunit": "^6.0",
  1425. "squizlabs/php_codesniffer": "^2.0",
  1426. "symfony/yaml": "^2.6|^3.0"
  1427. },
  1428. "type": "library",
  1429. "autoload": {
  1430. "psr-4": {
  1431. "Mdanter\\Ecc\\": "src/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Matyas Danter",
  1441. "homepage": "http://matejdanter.com/",
  1442. "role": "Author"
  1443. },
  1444. {
  1445. "name": "Thibaud Fabre",
  1446. "email": "thibaud@aztech.io",
  1447. "homepage": "http://aztech.io",
  1448. "role": "Maintainer"
  1449. },
  1450. {
  1451. "name": "Thomas Kerin",
  1452. "email": "afk11@users.noreply.github.com",
  1453. "role": "Maintainer"
  1454. }
  1455. ],
  1456. "description": "PHP Elliptic Curve Cryptography library",
  1457. "homepage": "https://github.com/phpecc/phpecc",
  1458. "keywords": [
  1459. "Diffie",
  1460. "ECDSA",
  1461. "Hellman",
  1462. "curve",
  1463. "ecdh",
  1464. "elliptic",
  1465. "nistp192",
  1466. "nistp224",
  1467. "nistp256",
  1468. "nistp384",
  1469. "nistp521",
  1470. "phpecc",
  1471. "secp256k1",
  1472. "secp256r1"
  1473. ],
  1474. "support": {
  1475. "issues": "https://github.com/phpecc/phpecc/issues",
  1476. "source": "https://github.com/phpecc/phpecc/tree/master"
  1477. },
  1478. "abandoned": "paragonie/ecc",
  1479. "time": "2018-12-03T18:17:01+00:00"
  1480. },
  1481. {
  1482. "name": "monolog/monolog",
  1483. "version": "1.27.1",
  1484. "source": {
  1485. "type": "git",
  1486. "url": "https://github.com/Seldaek/monolog.git",
  1487. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1"
  1488. },
  1489. "dist": {
  1490. "type": "zip",
  1491. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1",
  1492. "reference": "904713c5929655dc9b97288b69cfeedad610c9a1",
  1493. "shasum": "",
  1494. "mirrors": [
  1495. {
  1496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1497. "preferred": true
  1498. }
  1499. ]
  1500. },
  1501. "require": {
  1502. "php": ">=5.3.0",
  1503. "psr/log": "~1.0"
  1504. },
  1505. "provide": {
  1506. "psr/log-implementation": "1.0.0"
  1507. },
  1508. "require-dev": {
  1509. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1510. "doctrine/couchdb": "~1.0@dev",
  1511. "graylog2/gelf-php": "~1.0",
  1512. "php-amqplib/php-amqplib": "~2.4",
  1513. "php-console/php-console": "^3.1.3",
  1514. "phpstan/phpstan": "^0.12.59",
  1515. "phpunit/phpunit": "~4.5",
  1516. "ruflin/elastica": ">=0.90 <3.0",
  1517. "sentry/sentry": "^0.13",
  1518. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1519. },
  1520. "suggest": {
  1521. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1522. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1523. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1524. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1525. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1526. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1527. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1528. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1529. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1530. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1531. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1532. },
  1533. "type": "library",
  1534. "autoload": {
  1535. "psr-4": {
  1536. "Monolog\\": "src/Monolog"
  1537. }
  1538. },
  1539. "notification-url": "https://packagist.org/downloads/",
  1540. "license": [
  1541. "MIT"
  1542. ],
  1543. "authors": [
  1544. {
  1545. "name": "Jordi Boggiano",
  1546. "email": "j.boggiano@seld.be",
  1547. "homepage": "http://seld.be"
  1548. }
  1549. ],
  1550. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1551. "homepage": "http://github.com/Seldaek/monolog",
  1552. "keywords": [
  1553. "log",
  1554. "logging",
  1555. "psr-3"
  1556. ],
  1557. "support": {
  1558. "issues": "https://github.com/Seldaek/monolog/issues",
  1559. "source": "https://github.com/Seldaek/monolog/tree/1.27.1"
  1560. },
  1561. "funding": [
  1562. {
  1563. "url": "https://github.com/Seldaek",
  1564. "type": "github"
  1565. },
  1566. {
  1567. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1568. "type": "tidelift"
  1569. }
  1570. ],
  1571. "time": "2022-06-09T08:53:42+00:00"
  1572. },
  1573. {
  1574. "name": "mtdowling/cron-expression",
  1575. "version": "v1.2.3",
  1576. "source": {
  1577. "type": "git",
  1578. "url": "https://github.com/mtdowling/cron-expression.git",
  1579. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6"
  1580. },
  1581. "dist": {
  1582. "type": "zip",
  1583. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9be552eebcc1ceec9776378f7dcc085246cacca6",
  1584. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6",
  1585. "shasum": "",
  1586. "mirrors": [
  1587. {
  1588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1589. "preferred": true
  1590. }
  1591. ]
  1592. },
  1593. "require": {
  1594. "php": ">=5.3.2"
  1595. },
  1596. "require-dev": {
  1597. "phpunit/phpunit": "~4.0|~5.0"
  1598. },
  1599. "type": "library",
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Cron\\": "src/Cron/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Michael Dowling",
  1612. "email": "mtdowling@gmail.com",
  1613. "homepage": "https://github.com/mtdowling"
  1614. }
  1615. ],
  1616. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1617. "keywords": [
  1618. "cron",
  1619. "schedule"
  1620. ],
  1621. "support": {
  1622. "issues": "https://github.com/mtdowling/cron-expression/issues",
  1623. "source": "https://github.com/mtdowling/cron-expression/tree/v1.2.3"
  1624. },
  1625. "abandoned": "dragonmantank/cron-expression",
  1626. "time": "2019-12-28T04:23:06+00:00"
  1627. },
  1628. {
  1629. "name": "myclabs/php-enum",
  1630. "version": "1.8.4",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/myclabs/php-enum.git",
  1634. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  1639. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  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. "ext-json": "*",
  1650. "php": "^7.3 || ^8.0"
  1651. },
  1652. "require-dev": {
  1653. "phpunit/phpunit": "^9.5",
  1654. "squizlabs/php_codesniffer": "1.*",
  1655. "vimeo/psalm": "^4.6.2"
  1656. },
  1657. "type": "library",
  1658. "autoload": {
  1659. "psr-4": {
  1660. "MyCLabs\\Enum\\": "src/"
  1661. },
  1662. "classmap": [
  1663. "stubs/Stringable.php"
  1664. ]
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "PHP Enum contributors",
  1673. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1674. }
  1675. ],
  1676. "description": "PHP Enum implementation",
  1677. "homepage": "http://github.com/myclabs/php-enum",
  1678. "keywords": [
  1679. "enum"
  1680. ],
  1681. "support": {
  1682. "issues": "https://github.com/myclabs/php-enum/issues",
  1683. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  1684. },
  1685. "funding": [
  1686. {
  1687. "url": "https://github.com/mnapoli",
  1688. "type": "github"
  1689. },
  1690. {
  1691. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1692. "type": "tidelift"
  1693. }
  1694. ],
  1695. "time": "2022-08-04T09:53:51+00:00"
  1696. },
  1697. {
  1698. "name": "overtrue/pinyin",
  1699. "version": "3.0.6",
  1700. "source": {
  1701. "type": "git",
  1702. "url": "https://github.com/overtrue/pinyin.git",
  1703. "reference": "3b781d267197b74752daa32814d3a2cf5d140779"
  1704. },
  1705. "dist": {
  1706. "type": "zip",
  1707. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/3b781d267197b74752daa32814d3a2cf5d140779",
  1708. "reference": "3b781d267197b74752daa32814d3a2cf5d140779",
  1709. "shasum": "",
  1710. "mirrors": [
  1711. {
  1712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1713. "preferred": true
  1714. }
  1715. ]
  1716. },
  1717. "require": {
  1718. "php": ">=5.3"
  1719. },
  1720. "require-dev": {
  1721. "phpunit/phpunit": "~4.8"
  1722. },
  1723. "type": "library",
  1724. "autoload": {
  1725. "psr-4": {
  1726. "Overtrue\\Pinyin\\": "src/"
  1727. }
  1728. },
  1729. "notification-url": "https://packagist.org/downloads/",
  1730. "license": [
  1731. "MIT"
  1732. ],
  1733. "authors": [
  1734. {
  1735. "name": "Carlos",
  1736. "homepage": "http://github.com/overtrue"
  1737. }
  1738. ],
  1739. "description": "Chinese to pinyin translator.",
  1740. "homepage": "https://github.com/overtrue/pinyin",
  1741. "keywords": [
  1742. "Chinese",
  1743. "Pinyin",
  1744. "cn2pinyin"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/overtrue/pinyin/issues",
  1748. "source": "https://github.com/overtrue/pinyin/tree/master"
  1749. },
  1750. "time": "2017-07-10T07:20:01+00:00"
  1751. },
  1752. {
  1753. "name": "overtrue/socialite",
  1754. "version": "1.3.0",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/overtrue/socialite.git",
  1758. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  1763. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  1764. "shasum": "",
  1765. "mirrors": [
  1766. {
  1767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1768. "preferred": true
  1769. }
  1770. ]
  1771. },
  1772. "require": {
  1773. "guzzlehttp/guzzle": "~5.0|~6.0",
  1774. "php": ">=5.4.0",
  1775. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  1776. },
  1777. "require-dev": {
  1778. "mockery/mockery": "~0.9",
  1779. "phpunit/phpunit": "~4.0"
  1780. },
  1781. "type": "library",
  1782. "autoload": {
  1783. "psr-4": {
  1784. "Overtrue\\Socialite\\": "src/"
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "MIT"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "overtrue",
  1794. "email": "anzhengchao@gmail.com"
  1795. }
  1796. ],
  1797. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1798. "keywords": [
  1799. "login",
  1800. "oauth",
  1801. "qq",
  1802. "social",
  1803. "wechat",
  1804. "weibo"
  1805. ],
  1806. "support": {
  1807. "issues": "https://github.com/overtrue/socialite/issues",
  1808. "source": "https://github.com/overtrue/socialite/tree/master"
  1809. },
  1810. "time": "2017-08-04T06:28:22+00:00"
  1811. },
  1812. {
  1813. "name": "overtrue/wechat",
  1814. "version": "3.7.4",
  1815. "source": {
  1816. "type": "git",
  1817. "url": "https://github.com/w7corp/easywechat.git",
  1818. "reference": "52441161eae93c97f46d1ea2a57141c77c327adc"
  1819. },
  1820. "dist": {
  1821. "type": "zip",
  1822. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/52441161eae93c97f46d1ea2a57141c77c327adc",
  1823. "reference": "52441161eae93c97f46d1ea2a57141c77c327adc",
  1824. "shasum": "",
  1825. "mirrors": [
  1826. {
  1827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1828. "preferred": true
  1829. }
  1830. ]
  1831. },
  1832. "require": {
  1833. "doctrine/cache": "1.6.*",
  1834. "ext-openssl": "*",
  1835. "guzzlehttp/guzzle": "~6.2",
  1836. "monolog/monolog": "^1.17",
  1837. "overtrue/socialite": "^1.0.25",
  1838. "php": ">=5.5.0",
  1839. "pimple/pimple": "~3.0",
  1840. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  1841. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  1842. },
  1843. "require-dev": {
  1844. "mockery/mockery": "^0.9.9",
  1845. "overtrue/phplint": "dev-master",
  1846. "phpunit/phpunit": "~4.0"
  1847. },
  1848. "type": "library",
  1849. "autoload": {
  1850. "files": [
  1851. "src/Payment/helpers.php"
  1852. ],
  1853. "psr-4": {
  1854. "EasyWeChat\\": "src/"
  1855. }
  1856. },
  1857. "notification-url": "https://packagist.org/downloads/",
  1858. "license": [
  1859. "MIT"
  1860. ],
  1861. "authors": [
  1862. {
  1863. "name": "overtrue",
  1864. "email": "anzhengchao@gmail.com"
  1865. }
  1866. ],
  1867. "description": "微信SDK",
  1868. "keywords": [
  1869. "sdk",
  1870. "wechat",
  1871. "weixin",
  1872. "weixin-sdk"
  1873. ],
  1874. "support": {
  1875. "issues": "https://github.com/w7corp/easywechat/issues",
  1876. "source": "https://github.com/w7corp/easywechat/tree/3.7.4"
  1877. },
  1878. "funding": [
  1879. {
  1880. "url": "https://github.com/overtrue",
  1881. "type": "github"
  1882. }
  1883. ],
  1884. "abandoned": "w7corp/easywechat",
  1885. "time": "2022-07-21T06:48:12+00:00"
  1886. },
  1887. {
  1888. "name": "phpmailer/phpmailer",
  1889. "version": "v6.0.7",
  1890. "source": {
  1891. "type": "git",
  1892. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1893. "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59"
  1894. },
  1895. "dist": {
  1896. "type": "zip",
  1897. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/0c41a36d4508d470e376498c1c0c527aa36a2d59",
  1898. "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59",
  1899. "shasum": "",
  1900. "mirrors": [
  1901. {
  1902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1903. "preferred": true
  1904. }
  1905. ]
  1906. },
  1907. "require": {
  1908. "ext-ctype": "*",
  1909. "ext-filter": "*",
  1910. "php": ">=5.5.0"
  1911. },
  1912. "require-dev": {
  1913. "doctrine/annotations": "1.2.*",
  1914. "friendsofphp/php-cs-fixer": "^2.2",
  1915. "phpdocumentor/phpdocumentor": "2.*",
  1916. "phpunit/phpunit": "^4.8 || ^5.7",
  1917. "zendframework/zend-eventmanager": "3.0.*",
  1918. "zendframework/zend-i18n": "2.7.3",
  1919. "zendframework/zend-serializer": "2.7.*"
  1920. },
  1921. "suggest": {
  1922. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  1923. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  1924. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  1925. "psr/log": "For optional PSR-3 debug logging",
  1926. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  1927. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  1928. },
  1929. "type": "library",
  1930. "autoload": {
  1931. "psr-4": {
  1932. "PHPMailer\\PHPMailer\\": "src/"
  1933. }
  1934. },
  1935. "notification-url": "https://packagist.org/downloads/",
  1936. "license": [
  1937. "LGPL-2.1"
  1938. ],
  1939. "authors": [
  1940. {
  1941. "name": "Jim Jagielski",
  1942. "email": "jimjag@gmail.com"
  1943. },
  1944. {
  1945. "name": "Marcus Bointon",
  1946. "email": "phpmailer@synchromedia.co.uk"
  1947. },
  1948. {
  1949. "name": "Andy Prevost",
  1950. "email": "codeworxtech@users.sourceforge.net"
  1951. },
  1952. {
  1953. "name": "Brent R. Matzelle"
  1954. }
  1955. ],
  1956. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1957. "support": {
  1958. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  1959. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.0.7"
  1960. },
  1961. "time": "2019-02-01T15:04:28+00:00"
  1962. },
  1963. {
  1964. "name": "phpoffice/phpspreadsheet",
  1965. "version": "1.29.10",
  1966. "source": {
  1967. "type": "git",
  1968. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1969. "reference": "c80041b1628c4f18030407134fe88303661d4e4e"
  1970. },
  1971. "dist": {
  1972. "type": "zip",
  1973. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c80041b1628c4f18030407134fe88303661d4e4e",
  1974. "reference": "c80041b1628c4f18030407134fe88303661d4e4e",
  1975. "shasum": "",
  1976. "mirrors": [
  1977. {
  1978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1979. "preferred": true
  1980. }
  1981. ]
  1982. },
  1983. "require": {
  1984. "composer/pcre": "^1||^2||^3",
  1985. "ext-ctype": "*",
  1986. "ext-dom": "*",
  1987. "ext-fileinfo": "*",
  1988. "ext-gd": "*",
  1989. "ext-iconv": "*",
  1990. "ext-libxml": "*",
  1991. "ext-mbstring": "*",
  1992. "ext-simplexml": "*",
  1993. "ext-xml": "*",
  1994. "ext-xmlreader": "*",
  1995. "ext-xmlwriter": "*",
  1996. "ext-zip": "*",
  1997. "ext-zlib": "*",
  1998. "ezyang/htmlpurifier": "^4.15",
  1999. "maennchen/zipstream-php": "^2.1 || ^3.0",
  2000. "markbaker/complex": "^3.0",
  2001. "markbaker/matrix": "^3.0",
  2002. "php": "^7.4 || ^8.0",
  2003. "psr/http-client": "^1.0",
  2004. "psr/http-factory": "^1.0",
  2005. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  2006. },
  2007. "require-dev": {
  2008. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  2009. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  2010. "friendsofphp/php-cs-fixer": "^3.2",
  2011. "mitoteam/jpgraph": "^10.3",
  2012. "mpdf/mpdf": "^8.1.1",
  2013. "phpcompatibility/php-compatibility": "^9.3",
  2014. "phpstan/phpstan": "^1.1",
  2015. "phpstan/phpstan-phpunit": "^1.0",
  2016. "phpunit/phpunit": "^8.5 || ^9.0",
  2017. "squizlabs/php_codesniffer": "^3.7",
  2018. "tecnickcom/tcpdf": "^6.5"
  2019. },
  2020. "suggest": {
  2021. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2022. "ext-intl": "PHP Internationalization Functions",
  2023. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2024. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2025. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2026. },
  2027. "type": "library",
  2028. "autoload": {
  2029. "psr-4": {
  2030. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2031. }
  2032. },
  2033. "notification-url": "https://packagist.org/downloads/",
  2034. "license": [
  2035. "MIT"
  2036. ],
  2037. "authors": [
  2038. {
  2039. "name": "Maarten Balliauw",
  2040. "homepage": "https://blog.maartenballiauw.be"
  2041. },
  2042. {
  2043. "name": "Mark Baker",
  2044. "homepage": "https://markbakeruk.net"
  2045. },
  2046. {
  2047. "name": "Franck Lefevre",
  2048. "homepage": "https://rootslabs.net"
  2049. },
  2050. {
  2051. "name": "Erik Tilt"
  2052. },
  2053. {
  2054. "name": "Adrien Crivelli"
  2055. }
  2056. ],
  2057. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2058. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2059. "keywords": [
  2060. "OpenXML",
  2061. "excel",
  2062. "gnumeric",
  2063. "ods",
  2064. "php",
  2065. "spreadsheet",
  2066. "xls",
  2067. "xlsx"
  2068. ],
  2069. "support": {
  2070. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2071. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.10"
  2072. },
  2073. "time": "2025-02-08T02:56:14+00:00"
  2074. },
  2075. {
  2076. "name": "phpseclib/phpseclib",
  2077. "version": "2.0.48",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/phpseclib/phpseclib.git",
  2081. "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/eaa7be704b8b93a6913b69eb7f645a59d7731b61",
  2086. "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61",
  2087. "shasum": "",
  2088. "mirrors": [
  2089. {
  2090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2091. "preferred": true
  2092. }
  2093. ]
  2094. },
  2095. "require": {
  2096. "php": ">=5.3.3"
  2097. },
  2098. "require-dev": {
  2099. "phing/phing": "~2.7",
  2100. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  2101. "squizlabs/php_codesniffer": "~2.0"
  2102. },
  2103. "suggest": {
  2104. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  2105. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  2106. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  2107. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  2108. "ext-xml": "Install the XML extension to load XML formatted public keys."
  2109. },
  2110. "type": "library",
  2111. "autoload": {
  2112. "files": [
  2113. "phpseclib/bootstrap.php"
  2114. ],
  2115. "psr-4": {
  2116. "phpseclib\\": "phpseclib/"
  2117. }
  2118. },
  2119. "notification-url": "https://packagist.org/downloads/",
  2120. "license": [
  2121. "MIT"
  2122. ],
  2123. "authors": [
  2124. {
  2125. "name": "Jim Wigginton",
  2126. "email": "terrafrost@php.net",
  2127. "role": "Lead Developer"
  2128. },
  2129. {
  2130. "name": "Patrick Monnerat",
  2131. "email": "pm@datasphere.ch",
  2132. "role": "Developer"
  2133. },
  2134. {
  2135. "name": "Andreas Fischer",
  2136. "email": "bantu@phpbb.com",
  2137. "role": "Developer"
  2138. },
  2139. {
  2140. "name": "Hans-Jürgen Petrich",
  2141. "email": "petrich@tronic-media.com",
  2142. "role": "Developer"
  2143. },
  2144. {
  2145. "name": "Graham Campbell",
  2146. "email": "graham@alt-three.com",
  2147. "role": "Developer"
  2148. }
  2149. ],
  2150. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  2151. "homepage": "http://phpseclib.sourceforge.net",
  2152. "keywords": [
  2153. "BigInteger",
  2154. "aes",
  2155. "asn.1",
  2156. "asn1",
  2157. "blowfish",
  2158. "crypto",
  2159. "cryptography",
  2160. "encryption",
  2161. "rsa",
  2162. "security",
  2163. "sftp",
  2164. "signature",
  2165. "signing",
  2166. "ssh",
  2167. "twofish",
  2168. "x.509",
  2169. "x509"
  2170. ],
  2171. "support": {
  2172. "issues": "https://github.com/phpseclib/phpseclib/issues",
  2173. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.48"
  2174. },
  2175. "funding": [
  2176. {
  2177. "url": "https://github.com/terrafrost",
  2178. "type": "github"
  2179. },
  2180. {
  2181. "url": "https://www.patreon.com/phpseclib",
  2182. "type": "patreon"
  2183. },
  2184. {
  2185. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  2186. "type": "tidelift"
  2187. }
  2188. ],
  2189. "time": "2024-12-14T21:03:54+00:00"
  2190. },
  2191. {
  2192. "name": "pimple/pimple",
  2193. "version": "v3.5.0",
  2194. "source": {
  2195. "type": "git",
  2196. "url": "https://github.com/silexphp/Pimple.git",
  2197. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  2198. },
  2199. "dist": {
  2200. "type": "zip",
  2201. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2202. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2203. "shasum": "",
  2204. "mirrors": [
  2205. {
  2206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2207. "preferred": true
  2208. }
  2209. ]
  2210. },
  2211. "require": {
  2212. "php": ">=7.2.5",
  2213. "psr/container": "^1.1 || ^2.0"
  2214. },
  2215. "require-dev": {
  2216. "symfony/phpunit-bridge": "^5.4@dev"
  2217. },
  2218. "type": "library",
  2219. "extra": {
  2220. "branch-alias": {
  2221. "dev-master": "3.4.x-dev"
  2222. }
  2223. },
  2224. "autoload": {
  2225. "psr-0": {
  2226. "Pimple": "src/"
  2227. }
  2228. },
  2229. "notification-url": "https://packagist.org/downloads/",
  2230. "license": [
  2231. "MIT"
  2232. ],
  2233. "authors": [
  2234. {
  2235. "name": "Fabien Potencier",
  2236. "email": "fabien@symfony.com"
  2237. }
  2238. ],
  2239. "description": "Pimple, a simple Dependency Injection Container",
  2240. "homepage": "https://pimple.symfony.com",
  2241. "keywords": [
  2242. "container",
  2243. "dependency injection"
  2244. ],
  2245. "support": {
  2246. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  2247. },
  2248. "time": "2021-10-28T11:13:42+00:00"
  2249. },
  2250. {
  2251. "name": "psr/container",
  2252. "version": "2.0.2",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://github.com/php-fig/container.git",
  2256. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2261. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2262. "shasum": "",
  2263. "mirrors": [
  2264. {
  2265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2266. "preferred": true
  2267. }
  2268. ]
  2269. },
  2270. "require": {
  2271. "php": ">=7.4.0"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-master": "2.0.x-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "psr-4": {
  2281. "Psr\\Container\\": "src/"
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "PHP-FIG",
  2291. "homepage": "https://www.php-fig.org/"
  2292. }
  2293. ],
  2294. "description": "Common Container Interface (PHP FIG PSR-11)",
  2295. "homepage": "https://github.com/php-fig/container",
  2296. "keywords": [
  2297. "PSR-11",
  2298. "container",
  2299. "container-interface",
  2300. "container-interop",
  2301. "psr"
  2302. ],
  2303. "support": {
  2304. "issues": "https://github.com/php-fig/container/issues",
  2305. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2306. },
  2307. "time": "2021-11-05T16:47:00+00:00"
  2308. },
  2309. {
  2310. "name": "psr/http-client",
  2311. "version": "1.0.3",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/php-fig/http-client.git",
  2315. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2320. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2321. "shasum": "",
  2322. "mirrors": [
  2323. {
  2324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2325. "preferred": true
  2326. }
  2327. ]
  2328. },
  2329. "require": {
  2330. "php": "^7.0 || ^8.0",
  2331. "psr/http-message": "^1.0 || ^2.0"
  2332. },
  2333. "type": "library",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-master": "1.0.x-dev"
  2337. }
  2338. },
  2339. "autoload": {
  2340. "psr-4": {
  2341. "Psr\\Http\\Client\\": "src/"
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "PHP-FIG",
  2351. "homepage": "https://www.php-fig.org/"
  2352. }
  2353. ],
  2354. "description": "Common interface for HTTP clients",
  2355. "homepage": "https://github.com/php-fig/http-client",
  2356. "keywords": [
  2357. "http",
  2358. "http-client",
  2359. "psr",
  2360. "psr-18"
  2361. ],
  2362. "support": {
  2363. "source": "https://github.com/php-fig/http-client"
  2364. },
  2365. "time": "2023-09-23T14:17:50+00:00"
  2366. },
  2367. {
  2368. "name": "psr/http-factory",
  2369. "version": "1.0.2",
  2370. "source": {
  2371. "type": "git",
  2372. "url": "https://github.com/php-fig/http-factory.git",
  2373. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2374. },
  2375. "dist": {
  2376. "type": "zip",
  2377. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2378. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2379. "shasum": "",
  2380. "mirrors": [
  2381. {
  2382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2383. "preferred": true
  2384. }
  2385. ]
  2386. },
  2387. "require": {
  2388. "php": ">=7.0.0",
  2389. "psr/http-message": "^1.0 || ^2.0"
  2390. },
  2391. "type": "library",
  2392. "extra": {
  2393. "branch-alias": {
  2394. "dev-master": "1.0.x-dev"
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-4": {
  2399. "Psr\\Http\\Message\\": "src/"
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "PHP-FIG",
  2409. "homepage": "https://www.php-fig.org/"
  2410. }
  2411. ],
  2412. "description": "Common interfaces for PSR-7 HTTP message factories",
  2413. "keywords": [
  2414. "factory",
  2415. "http",
  2416. "message",
  2417. "psr",
  2418. "psr-17",
  2419. "psr-7",
  2420. "request",
  2421. "response"
  2422. ],
  2423. "support": {
  2424. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2425. },
  2426. "time": "2023-04-10T20:10:41+00:00"
  2427. },
  2428. {
  2429. "name": "psr/http-message",
  2430. "version": "1.1",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/php-fig/http-message.git",
  2434. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2439. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2440. "shasum": "",
  2441. "mirrors": [
  2442. {
  2443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2444. "preferred": true
  2445. }
  2446. ]
  2447. },
  2448. "require": {
  2449. "php": "^7.2 || ^8.0"
  2450. },
  2451. "type": "library",
  2452. "extra": {
  2453. "branch-alias": {
  2454. "dev-master": "1.1.x-dev"
  2455. }
  2456. },
  2457. "autoload": {
  2458. "psr-4": {
  2459. "Psr\\Http\\Message\\": "src/"
  2460. }
  2461. },
  2462. "notification-url": "https://packagist.org/downloads/",
  2463. "license": [
  2464. "MIT"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "PHP-FIG",
  2469. "homepage": "http://www.php-fig.org/"
  2470. }
  2471. ],
  2472. "description": "Common interface for HTTP messages",
  2473. "homepage": "https://github.com/php-fig/http-message",
  2474. "keywords": [
  2475. "http",
  2476. "http-message",
  2477. "psr",
  2478. "psr-7",
  2479. "request",
  2480. "response"
  2481. ],
  2482. "support": {
  2483. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2484. },
  2485. "time": "2023-04-04T09:50:52+00:00"
  2486. },
  2487. {
  2488. "name": "psr/log",
  2489. "version": "1.1.4",
  2490. "source": {
  2491. "type": "git",
  2492. "url": "https://github.com/php-fig/log.git",
  2493. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2494. },
  2495. "dist": {
  2496. "type": "zip",
  2497. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2498. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2499. "shasum": "",
  2500. "mirrors": [
  2501. {
  2502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2503. "preferred": true
  2504. }
  2505. ]
  2506. },
  2507. "require": {
  2508. "php": ">=5.3.0"
  2509. },
  2510. "type": "library",
  2511. "extra": {
  2512. "branch-alias": {
  2513. "dev-master": "1.1.x-dev"
  2514. }
  2515. },
  2516. "autoload": {
  2517. "psr-4": {
  2518. "Psr\\Log\\": "Psr/Log/"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "PHP-FIG",
  2528. "homepage": "https://www.php-fig.org/"
  2529. }
  2530. ],
  2531. "description": "Common interface for logging libraries",
  2532. "homepage": "https://github.com/php-fig/log",
  2533. "keywords": [
  2534. "log",
  2535. "psr",
  2536. "psr-3"
  2537. ],
  2538. "support": {
  2539. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2540. },
  2541. "time": "2021-05-03T11:20:27+00:00"
  2542. },
  2543. {
  2544. "name": "psr/simple-cache",
  2545. "version": "1.0.1",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/php-fig/simple-cache.git",
  2549. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2554. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2555. "shasum": "",
  2556. "mirrors": [
  2557. {
  2558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2559. "preferred": true
  2560. }
  2561. ]
  2562. },
  2563. "require": {
  2564. "php": ">=5.3.0"
  2565. },
  2566. "type": "library",
  2567. "extra": {
  2568. "branch-alias": {
  2569. "dev-master": "1.0.x-dev"
  2570. }
  2571. },
  2572. "autoload": {
  2573. "psr-4": {
  2574. "Psr\\SimpleCache\\": "src/"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "PHP-FIG",
  2584. "homepage": "http://www.php-fig.org/"
  2585. }
  2586. ],
  2587. "description": "Common interfaces for simple caching",
  2588. "keywords": [
  2589. "cache",
  2590. "caching",
  2591. "psr",
  2592. "psr-16",
  2593. "simple-cache"
  2594. ],
  2595. "support": {
  2596. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2597. },
  2598. "time": "2017-10-23T01:57:42+00:00"
  2599. },
  2600. {
  2601. "name": "ralouphie/getallheaders",
  2602. "version": "3.0.3",
  2603. "source": {
  2604. "type": "git",
  2605. "url": "https://github.com/ralouphie/getallheaders.git",
  2606. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2607. },
  2608. "dist": {
  2609. "type": "zip",
  2610. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2611. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2612. "shasum": "",
  2613. "mirrors": [
  2614. {
  2615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2616. "preferred": true
  2617. }
  2618. ]
  2619. },
  2620. "require": {
  2621. "php": ">=5.6"
  2622. },
  2623. "require-dev": {
  2624. "php-coveralls/php-coveralls": "^2.1",
  2625. "phpunit/phpunit": "^5 || ^6.5"
  2626. },
  2627. "type": "library",
  2628. "autoload": {
  2629. "files": [
  2630. "src/getallheaders.php"
  2631. ]
  2632. },
  2633. "notification-url": "https://packagist.org/downloads/",
  2634. "license": [
  2635. "MIT"
  2636. ],
  2637. "authors": [
  2638. {
  2639. "name": "Ralph Khattar",
  2640. "email": "ralph.khattar@gmail.com"
  2641. }
  2642. ],
  2643. "description": "A polyfill for getallheaders.",
  2644. "support": {
  2645. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2646. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2647. },
  2648. "time": "2019-03-08T08:55:37+00:00"
  2649. },
  2650. {
  2651. "name": "ratchet/pawl",
  2652. "version": "v0.4.1",
  2653. "source": {
  2654. "type": "git",
  2655. "url": "https://github.com/ratchetphp/Pawl.git",
  2656. "reference": "af70198bab77a582b31169d3cc3982bed25c161f"
  2657. },
  2658. "dist": {
  2659. "type": "zip",
  2660. "url": "https://api.github.com/repos/ratchetphp/Pawl/zipball/af70198bab77a582b31169d3cc3982bed25c161f",
  2661. "reference": "af70198bab77a582b31169d3cc3982bed25c161f",
  2662. "shasum": ""
  2663. },
  2664. "require": {
  2665. "evenement/evenement": "^3.0 || ^2.0",
  2666. "guzzlehttp/psr7": "^2.0 || ^1.7",
  2667. "php": ">=5.4",
  2668. "ratchet/rfc6455": "^0.3.1",
  2669. "react/socket": "^1.9"
  2670. },
  2671. "require-dev": {
  2672. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8"
  2673. },
  2674. "suggest": {
  2675. "reactivex/rxphp": "~2.0"
  2676. },
  2677. "type": "library",
  2678. "autoload": {
  2679. "files": [
  2680. "src/functions_include.php"
  2681. ],
  2682. "psr-4": {
  2683. "Ratchet\\Client\\": "src"
  2684. }
  2685. },
  2686. "notification-url": "https://packagist.org/downloads/",
  2687. "license": [
  2688. "MIT"
  2689. ],
  2690. "description": "Asynchronous WebSocket client",
  2691. "keywords": [
  2692. "Ratchet",
  2693. "async",
  2694. "client",
  2695. "websocket",
  2696. "websocket client"
  2697. ],
  2698. "support": {
  2699. "issues": "https://github.com/ratchetphp/Pawl/issues",
  2700. "source": "https://github.com/ratchetphp/Pawl/tree/v0.4.1"
  2701. },
  2702. "time": "2021-12-10T14:32:34+00:00"
  2703. },
  2704. {
  2705. "name": "ratchet/rfc6455",
  2706. "version": "v0.3.1",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/ratchetphp/RFC6455.git",
  2710. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  2715. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  2716. "shasum": ""
  2717. },
  2718. "require": {
  2719. "guzzlehttp/psr7": "^2 || ^1.7",
  2720. "php": ">=5.4.2"
  2721. },
  2722. "require-dev": {
  2723. "phpunit/phpunit": "^5.7",
  2724. "react/socket": "^1.3"
  2725. },
  2726. "type": "library",
  2727. "autoload": {
  2728. "psr-4": {
  2729. "Ratchet\\RFC6455\\": "src"
  2730. }
  2731. },
  2732. "notification-url": "https://packagist.org/downloads/",
  2733. "license": [
  2734. "MIT"
  2735. ],
  2736. "authors": [
  2737. {
  2738. "name": "Chris Boden",
  2739. "email": "cboden@gmail.com",
  2740. "role": "Developer"
  2741. },
  2742. {
  2743. "name": "Matt Bonneau",
  2744. "role": "Developer"
  2745. }
  2746. ],
  2747. "description": "RFC6455 WebSocket protocol handler",
  2748. "homepage": "http://socketo.me",
  2749. "keywords": [
  2750. "WebSockets",
  2751. "rfc6455",
  2752. "websocket"
  2753. ],
  2754. "support": {
  2755. "chat": "https://gitter.im/reactphp/reactphp",
  2756. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  2757. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  2758. },
  2759. "time": "2021-12-09T23:20:49+00:00"
  2760. },
  2761. {
  2762. "name": "react/async",
  2763. "version": "v3.2.0",
  2764. "source": {
  2765. "type": "git",
  2766. "url": "https://github.com/reactphp/async.git",
  2767. "reference": "bc3ef672b33e95bf814fe8377731e46888ed4b54"
  2768. },
  2769. "dist": {
  2770. "type": "zip",
  2771. "url": "https://api.github.com/repos/reactphp/async/zipball/bc3ef672b33e95bf814fe8377731e46888ed4b54",
  2772. "reference": "bc3ef672b33e95bf814fe8377731e46888ed4b54",
  2773. "shasum": ""
  2774. },
  2775. "require": {
  2776. "php": ">=7.1",
  2777. "react/event-loop": "^1.2",
  2778. "react/promise": "^3.0 || ^2.8 || ^1.2.1"
  2779. },
  2780. "require-dev": {
  2781. "phpstan/phpstan": "1.10.39 || 1.4.10",
  2782. "phpunit/phpunit": "^9.6 || ^7.5"
  2783. },
  2784. "type": "library",
  2785. "autoload": {
  2786. "files": [
  2787. "src/functions_include.php"
  2788. ]
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Christian Lück",
  2797. "email": "christian@clue.engineering",
  2798. "homepage": "https://clue.engineering/"
  2799. },
  2800. {
  2801. "name": "Cees-Jan Kiewiet",
  2802. "email": "reactphp@ceesjankiewiet.nl",
  2803. "homepage": "https://wyrihaximus.net/"
  2804. },
  2805. {
  2806. "name": "Jan Sorgalla",
  2807. "email": "jsorgalla@gmail.com",
  2808. "homepage": "https://sorgalla.com/"
  2809. },
  2810. {
  2811. "name": "Chris Boden",
  2812. "email": "cboden@gmail.com",
  2813. "homepage": "https://cboden.dev/"
  2814. }
  2815. ],
  2816. "description": "Async utilities for ReactPHP",
  2817. "keywords": [
  2818. "async",
  2819. "reactphp"
  2820. ],
  2821. "support": {
  2822. "issues": "https://github.com/reactphp/async/issues",
  2823. "source": "https://github.com/reactphp/async/tree/v3.2.0"
  2824. },
  2825. "funding": [
  2826. {
  2827. "url": "https://opencollective.com/reactphp",
  2828. "type": "open_collective"
  2829. }
  2830. ],
  2831. "time": "2023-11-22T16:21:11+00:00"
  2832. },
  2833. {
  2834. "name": "react/cache",
  2835. "version": "v1.2.0",
  2836. "source": {
  2837. "type": "git",
  2838. "url": "https://github.com/reactphp/cache.git",
  2839. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  2840. },
  2841. "dist": {
  2842. "type": "zip",
  2843. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  2844. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  2845. "shasum": ""
  2846. },
  2847. "require": {
  2848. "php": ">=5.3.0",
  2849. "react/promise": "^3.0 || ^2.0 || ^1.1"
  2850. },
  2851. "require-dev": {
  2852. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  2853. },
  2854. "type": "library",
  2855. "autoload": {
  2856. "psr-4": {
  2857. "React\\Cache\\": "src/"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "MIT"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "Christian Lück",
  2867. "email": "christian@clue.engineering",
  2868. "homepage": "https://clue.engineering/"
  2869. },
  2870. {
  2871. "name": "Cees-Jan Kiewiet",
  2872. "email": "reactphp@ceesjankiewiet.nl",
  2873. "homepage": "https://wyrihaximus.net/"
  2874. },
  2875. {
  2876. "name": "Jan Sorgalla",
  2877. "email": "jsorgalla@gmail.com",
  2878. "homepage": "https://sorgalla.com/"
  2879. },
  2880. {
  2881. "name": "Chris Boden",
  2882. "email": "cboden@gmail.com",
  2883. "homepage": "https://cboden.dev/"
  2884. }
  2885. ],
  2886. "description": "Async, Promise-based cache interface for ReactPHP",
  2887. "keywords": [
  2888. "cache",
  2889. "caching",
  2890. "promise",
  2891. "reactphp"
  2892. ],
  2893. "support": {
  2894. "issues": "https://github.com/reactphp/cache/issues",
  2895. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  2896. },
  2897. "funding": [
  2898. {
  2899. "url": "https://opencollective.com/reactphp",
  2900. "type": "open_collective"
  2901. }
  2902. ],
  2903. "time": "2022-11-30T15:59:55+00:00"
  2904. },
  2905. {
  2906. "name": "react/dns",
  2907. "version": "v1.13.0",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/reactphp/dns.git",
  2911. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  2916. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "php": ">=5.3.0",
  2921. "react/cache": "^1.0 || ^0.6 || ^0.5",
  2922. "react/event-loop": "^1.2",
  2923. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  2924. },
  2925. "require-dev": {
  2926. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  2927. "react/async": "^4.3 || ^3 || ^2",
  2928. "react/promise-timer": "^1.11"
  2929. },
  2930. "type": "library",
  2931. "autoload": {
  2932. "psr-4": {
  2933. "React\\Dns\\": "src/"
  2934. }
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Christian Lück",
  2943. "email": "christian@clue.engineering",
  2944. "homepage": "https://clue.engineering/"
  2945. },
  2946. {
  2947. "name": "Cees-Jan Kiewiet",
  2948. "email": "reactphp@ceesjankiewiet.nl",
  2949. "homepage": "https://wyrihaximus.net/"
  2950. },
  2951. {
  2952. "name": "Jan Sorgalla",
  2953. "email": "jsorgalla@gmail.com",
  2954. "homepage": "https://sorgalla.com/"
  2955. },
  2956. {
  2957. "name": "Chris Boden",
  2958. "email": "cboden@gmail.com",
  2959. "homepage": "https://cboden.dev/"
  2960. }
  2961. ],
  2962. "description": "Async DNS resolver for ReactPHP",
  2963. "keywords": [
  2964. "async",
  2965. "dns",
  2966. "dns-resolver",
  2967. "reactphp"
  2968. ],
  2969. "support": {
  2970. "issues": "https://github.com/reactphp/dns/issues",
  2971. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  2972. },
  2973. "funding": [
  2974. {
  2975. "url": "https://opencollective.com/reactphp",
  2976. "type": "open_collective"
  2977. }
  2978. ],
  2979. "time": "2024-06-13T14:18:03+00:00"
  2980. },
  2981. {
  2982. "name": "react/event-loop",
  2983. "version": "v1.5.0",
  2984. "source": {
  2985. "type": "git",
  2986. "url": "https://github.com/reactphp/event-loop.git",
  2987. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  2988. },
  2989. "dist": {
  2990. "type": "zip",
  2991. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  2992. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  2993. "shasum": ""
  2994. },
  2995. "require": {
  2996. "php": ">=5.3.0"
  2997. },
  2998. "require-dev": {
  2999. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  3000. },
  3001. "suggest": {
  3002. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  3003. },
  3004. "type": "library",
  3005. "autoload": {
  3006. "psr-4": {
  3007. "React\\EventLoop\\": "src/"
  3008. }
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "MIT"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "Christian Lück",
  3017. "email": "christian@clue.engineering",
  3018. "homepage": "https://clue.engineering/"
  3019. },
  3020. {
  3021. "name": "Cees-Jan Kiewiet",
  3022. "email": "reactphp@ceesjankiewiet.nl",
  3023. "homepage": "https://wyrihaximus.net/"
  3024. },
  3025. {
  3026. "name": "Jan Sorgalla",
  3027. "email": "jsorgalla@gmail.com",
  3028. "homepage": "https://sorgalla.com/"
  3029. },
  3030. {
  3031. "name": "Chris Boden",
  3032. "email": "cboden@gmail.com",
  3033. "homepage": "https://cboden.dev/"
  3034. }
  3035. ],
  3036. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  3037. "keywords": [
  3038. "asynchronous",
  3039. "event-loop"
  3040. ],
  3041. "support": {
  3042. "issues": "https://github.com/reactphp/event-loop/issues",
  3043. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  3044. },
  3045. "funding": [
  3046. {
  3047. "url": "https://opencollective.com/reactphp",
  3048. "type": "open_collective"
  3049. }
  3050. ],
  3051. "time": "2023-11-13T13:48:05+00:00"
  3052. },
  3053. {
  3054. "name": "react/http",
  3055. "version": "v1.11.0",
  3056. "source": {
  3057. "type": "git",
  3058. "url": "https://github.com/reactphp/http.git",
  3059. "reference": "8db02de41dcca82037367f67a2d4be365b1c4db9"
  3060. },
  3061. "dist": {
  3062. "type": "zip",
  3063. "url": "https://api.github.com/repos/reactphp/http/zipball/8db02de41dcca82037367f67a2d4be365b1c4db9",
  3064. "reference": "8db02de41dcca82037367f67a2d4be365b1c4db9",
  3065. "shasum": ""
  3066. },
  3067. "require": {
  3068. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  3069. "fig/http-message-util": "^1.1",
  3070. "php": ">=5.3.0",
  3071. "psr/http-message": "^1.0",
  3072. "react/event-loop": "^1.2",
  3073. "react/promise": "^3.2 || ^2.3 || ^1.2.1",
  3074. "react/socket": "^1.16",
  3075. "react/stream": "^1.4"
  3076. },
  3077. "require-dev": {
  3078. "clue/http-proxy-react": "^1.8",
  3079. "clue/reactphp-ssh-proxy": "^1.4",
  3080. "clue/socks-react": "^1.4",
  3081. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  3082. "react/async": "^4.2 || ^3 || ^2",
  3083. "react/promise-stream": "^1.4",
  3084. "react/promise-timer": "^1.11"
  3085. },
  3086. "type": "library",
  3087. "autoload": {
  3088. "psr-4": {
  3089. "React\\Http\\": "src/"
  3090. }
  3091. },
  3092. "notification-url": "https://packagist.org/downloads/",
  3093. "license": [
  3094. "MIT"
  3095. ],
  3096. "authors": [
  3097. {
  3098. "name": "Christian Lück",
  3099. "email": "christian@clue.engineering",
  3100. "homepage": "https://clue.engineering/"
  3101. },
  3102. {
  3103. "name": "Cees-Jan Kiewiet",
  3104. "email": "reactphp@ceesjankiewiet.nl",
  3105. "homepage": "https://wyrihaximus.net/"
  3106. },
  3107. {
  3108. "name": "Jan Sorgalla",
  3109. "email": "jsorgalla@gmail.com",
  3110. "homepage": "https://sorgalla.com/"
  3111. },
  3112. {
  3113. "name": "Chris Boden",
  3114. "email": "cboden@gmail.com",
  3115. "homepage": "https://cboden.dev/"
  3116. }
  3117. ],
  3118. "description": "Event-driven, streaming HTTP client and server implementation for ReactPHP",
  3119. "keywords": [
  3120. "async",
  3121. "client",
  3122. "event-driven",
  3123. "http",
  3124. "http client",
  3125. "http server",
  3126. "https",
  3127. "psr-7",
  3128. "reactphp",
  3129. "server",
  3130. "streaming"
  3131. ],
  3132. "support": {
  3133. "issues": "https://github.com/reactphp/http/issues",
  3134. "source": "https://github.com/reactphp/http/tree/v1.11.0"
  3135. },
  3136. "funding": [
  3137. {
  3138. "url": "https://opencollective.com/reactphp",
  3139. "type": "open_collective"
  3140. }
  3141. ],
  3142. "time": "2024-11-20T15:24:08+00:00"
  3143. },
  3144. {
  3145. "name": "react/promise",
  3146. "version": "v2.11.0",
  3147. "source": {
  3148. "type": "git",
  3149. "url": "https://github.com/reactphp/promise.git",
  3150. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  3151. },
  3152. "dist": {
  3153. "type": "zip",
  3154. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  3155. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  3156. "shasum": ""
  3157. },
  3158. "require": {
  3159. "php": ">=5.4.0"
  3160. },
  3161. "require-dev": {
  3162. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  3163. },
  3164. "type": "library",
  3165. "autoload": {
  3166. "files": [
  3167. "src/functions_include.php"
  3168. ],
  3169. "psr-4": {
  3170. "React\\Promise\\": "src/"
  3171. }
  3172. },
  3173. "notification-url": "https://packagist.org/downloads/",
  3174. "license": [
  3175. "MIT"
  3176. ],
  3177. "authors": [
  3178. {
  3179. "name": "Jan Sorgalla",
  3180. "email": "jsorgalla@gmail.com",
  3181. "homepage": "https://sorgalla.com/"
  3182. },
  3183. {
  3184. "name": "Christian Lück",
  3185. "email": "christian@clue.engineering",
  3186. "homepage": "https://clue.engineering/"
  3187. },
  3188. {
  3189. "name": "Cees-Jan Kiewiet",
  3190. "email": "reactphp@ceesjankiewiet.nl",
  3191. "homepage": "https://wyrihaximus.net/"
  3192. },
  3193. {
  3194. "name": "Chris Boden",
  3195. "email": "cboden@gmail.com",
  3196. "homepage": "https://cboden.dev/"
  3197. }
  3198. ],
  3199. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  3200. "keywords": [
  3201. "promise",
  3202. "promises"
  3203. ],
  3204. "support": {
  3205. "issues": "https://github.com/reactphp/promise/issues",
  3206. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  3207. },
  3208. "funding": [
  3209. {
  3210. "url": "https://opencollective.com/reactphp",
  3211. "type": "open_collective"
  3212. }
  3213. ],
  3214. "time": "2023-11-16T16:16:50+00:00"
  3215. },
  3216. {
  3217. "name": "react/promise-timer",
  3218. "version": "v1.11.0",
  3219. "source": {
  3220. "type": "git",
  3221. "url": "https://github.com/reactphp/promise-timer.git",
  3222. "reference": "4f70306ed66b8b44768941ca7f142092600fafc1"
  3223. },
  3224. "dist": {
  3225. "type": "zip",
  3226. "url": "https://api.github.com/repos/reactphp/promise-timer/zipball/4f70306ed66b8b44768941ca7f142092600fafc1",
  3227. "reference": "4f70306ed66b8b44768941ca7f142092600fafc1",
  3228. "shasum": ""
  3229. },
  3230. "require": {
  3231. "php": ">=5.3",
  3232. "react/event-loop": "^1.2",
  3233. "react/promise": "^3.2 || ^2.7.0 || ^1.2.1"
  3234. },
  3235. "require-dev": {
  3236. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  3237. },
  3238. "type": "library",
  3239. "autoload": {
  3240. "files": [
  3241. "src/functions_include.php"
  3242. ],
  3243. "psr-4": {
  3244. "React\\Promise\\Timer\\": "src/"
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "Christian Lück",
  3254. "email": "christian@clue.engineering",
  3255. "homepage": "https://clue.engineering/"
  3256. },
  3257. {
  3258. "name": "Cees-Jan Kiewiet",
  3259. "email": "reactphp@ceesjankiewiet.nl",
  3260. "homepage": "https://wyrihaximus.net/"
  3261. },
  3262. {
  3263. "name": "Jan Sorgalla",
  3264. "email": "jsorgalla@gmail.com",
  3265. "homepage": "https://sorgalla.com/"
  3266. },
  3267. {
  3268. "name": "Chris Boden",
  3269. "email": "cboden@gmail.com",
  3270. "homepage": "https://cboden.dev/"
  3271. }
  3272. ],
  3273. "description": "A trivial implementation of timeouts for Promises, built on top of ReactPHP.",
  3274. "homepage": "https://github.com/reactphp/promise-timer",
  3275. "keywords": [
  3276. "async",
  3277. "event-loop",
  3278. "promise",
  3279. "reactphp",
  3280. "timeout",
  3281. "timer"
  3282. ],
  3283. "support": {
  3284. "issues": "https://github.com/reactphp/promise-timer/issues",
  3285. "source": "https://github.com/reactphp/promise-timer/tree/v1.11.0"
  3286. },
  3287. "funding": [
  3288. {
  3289. "url": "https://opencollective.com/reactphp",
  3290. "type": "open_collective"
  3291. }
  3292. ],
  3293. "time": "2024-06-04T14:27:45+00:00"
  3294. },
  3295. {
  3296. "name": "react/socket",
  3297. "version": "v1.16.0",
  3298. "source": {
  3299. "type": "git",
  3300. "url": "https://github.com/reactphp/socket.git",
  3301. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  3302. },
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  3306. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  3307. "shasum": ""
  3308. },
  3309. "require": {
  3310. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  3311. "php": ">=5.3.0",
  3312. "react/dns": "^1.13",
  3313. "react/event-loop": "^1.2",
  3314. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  3315. "react/stream": "^1.4"
  3316. },
  3317. "require-dev": {
  3318. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  3319. "react/async": "^4.3 || ^3.3 || ^2",
  3320. "react/promise-stream": "^1.4",
  3321. "react/promise-timer": "^1.11"
  3322. },
  3323. "type": "library",
  3324. "autoload": {
  3325. "psr-4": {
  3326. "React\\Socket\\": "src/"
  3327. }
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "MIT"
  3332. ],
  3333. "authors": [
  3334. {
  3335. "name": "Christian Lück",
  3336. "email": "christian@clue.engineering",
  3337. "homepage": "https://clue.engineering/"
  3338. },
  3339. {
  3340. "name": "Cees-Jan Kiewiet",
  3341. "email": "reactphp@ceesjankiewiet.nl",
  3342. "homepage": "https://wyrihaximus.net/"
  3343. },
  3344. {
  3345. "name": "Jan Sorgalla",
  3346. "email": "jsorgalla@gmail.com",
  3347. "homepage": "https://sorgalla.com/"
  3348. },
  3349. {
  3350. "name": "Chris Boden",
  3351. "email": "cboden@gmail.com",
  3352. "homepage": "https://cboden.dev/"
  3353. }
  3354. ],
  3355. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  3356. "keywords": [
  3357. "Connection",
  3358. "Socket",
  3359. "async",
  3360. "reactphp",
  3361. "stream"
  3362. ],
  3363. "support": {
  3364. "issues": "https://github.com/reactphp/socket/issues",
  3365. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  3366. },
  3367. "funding": [
  3368. {
  3369. "url": "https://opencollective.com/reactphp",
  3370. "type": "open_collective"
  3371. }
  3372. ],
  3373. "time": "2024-07-26T10:38:09+00:00"
  3374. },
  3375. {
  3376. "name": "react/stream",
  3377. "version": "v1.4.0",
  3378. "source": {
  3379. "type": "git",
  3380. "url": "https://github.com/reactphp/stream.git",
  3381. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  3382. },
  3383. "dist": {
  3384. "type": "zip",
  3385. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  3386. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  3387. "shasum": ""
  3388. },
  3389. "require": {
  3390. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  3391. "php": ">=5.3.8",
  3392. "react/event-loop": "^1.2"
  3393. },
  3394. "require-dev": {
  3395. "clue/stream-filter": "~1.2",
  3396. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  3397. },
  3398. "type": "library",
  3399. "autoload": {
  3400. "psr-4": {
  3401. "React\\Stream\\": "src/"
  3402. }
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "authors": [
  3409. {
  3410. "name": "Christian Lück",
  3411. "email": "christian@clue.engineering",
  3412. "homepage": "https://clue.engineering/"
  3413. },
  3414. {
  3415. "name": "Cees-Jan Kiewiet",
  3416. "email": "reactphp@ceesjankiewiet.nl",
  3417. "homepage": "https://wyrihaximus.net/"
  3418. },
  3419. {
  3420. "name": "Jan Sorgalla",
  3421. "email": "jsorgalla@gmail.com",
  3422. "homepage": "https://sorgalla.com/"
  3423. },
  3424. {
  3425. "name": "Chris Boden",
  3426. "email": "cboden@gmail.com",
  3427. "homepage": "https://cboden.dev/"
  3428. }
  3429. ],
  3430. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  3431. "keywords": [
  3432. "event-driven",
  3433. "io",
  3434. "non-blocking",
  3435. "pipe",
  3436. "reactphp",
  3437. "readable",
  3438. "stream",
  3439. "writable"
  3440. ],
  3441. "support": {
  3442. "issues": "https://github.com/reactphp/stream/issues",
  3443. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  3444. },
  3445. "funding": [
  3446. {
  3447. "url": "https://opencollective.com/reactphp",
  3448. "type": "open_collective"
  3449. }
  3450. ],
  3451. "time": "2024-06-11T12:45:25+00:00"
  3452. },
  3453. {
  3454. "name": "sc0vu/web3.php",
  3455. "version": "0.1.4",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://github.com/sc0Vu/web3.php.git",
  3459. "reference": "1fb7762eb7763b0ccdbac1483819606e9edc6a49"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://api.github.com/repos/sc0Vu/web3.php/zipball/1fb7762eb7763b0ccdbac1483819606e9edc6a49",
  3464. "reference": "1fb7762eb7763b0ccdbac1483819606e9edc6a49",
  3465. "shasum": "",
  3466. "mirrors": [
  3467. {
  3468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3469. "preferred": true
  3470. }
  3471. ]
  3472. },
  3473. "require": {
  3474. "guzzlehttp/guzzle": "~6.0",
  3475. "kornrunner/keccak": "~1.0",
  3476. "php": "^7.1",
  3477. "phpseclib/phpseclib": "~2.0.11"
  3478. },
  3479. "require-dev": {
  3480. "phpunit/phpunit": "~6.0"
  3481. },
  3482. "type": "library",
  3483. "autoload": {
  3484. "psr-4": {
  3485. "Web3\\": "src/"
  3486. }
  3487. },
  3488. "notification-url": "https://packagist.org/downloads/",
  3489. "license": [
  3490. "MIT"
  3491. ],
  3492. "authors": [
  3493. {
  3494. "name": "sc0Vu",
  3495. "email": "alk03073135@gmail.com"
  3496. }
  3497. ],
  3498. "description": "Ethereum web3 interface.",
  3499. "support": {
  3500. "issues": "https://github.com/sc0Vu/web3.php/issues",
  3501. "source": "https://github.com/sc0Vu/web3.php/tree/master"
  3502. },
  3503. "time": "2018-06-24T14:45:20+00:00"
  3504. },
  3505. {
  3506. "name": "simplito/bigint-wrapper-php",
  3507. "version": "1.0.0",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://github.com/simplito/bigint-wrapper-php.git",
  3511. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
  3516. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
  3517. "shasum": "",
  3518. "mirrors": [
  3519. {
  3520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3521. "preferred": true
  3522. }
  3523. ]
  3524. },
  3525. "type": "library",
  3526. "autoload": {
  3527. "psr-4": {
  3528. "BI\\": "lib/"
  3529. }
  3530. },
  3531. "notification-url": "https://packagist.org/downloads/",
  3532. "license": [
  3533. "MIT"
  3534. ],
  3535. "authors": [
  3536. {
  3537. "name": "Simplito Team",
  3538. "email": "s.smyczynski@simplito.com",
  3539. "homepage": "https://simplito.com"
  3540. }
  3541. ],
  3542. "description": "Common interface for php_gmp and php_bcmath modules",
  3543. "support": {
  3544. "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
  3545. "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
  3546. },
  3547. "time": "2018-02-27T12:38:08+00:00"
  3548. },
  3549. {
  3550. "name": "simplito/bn-php",
  3551. "version": "1.1.3",
  3552. "source": {
  3553. "type": "git",
  3554. "url": "https://github.com/simplito/bn-php.git",
  3555. "reference": "189167f940cdb681288a967b0f4d66de81adcd97"
  3556. },
  3557. "dist": {
  3558. "type": "zip",
  3559. "url": "https://api.github.com/repos/simplito/bn-php/zipball/189167f940cdb681288a967b0f4d66de81adcd97",
  3560. "reference": "189167f940cdb681288a967b0f4d66de81adcd97",
  3561. "shasum": "",
  3562. "mirrors": [
  3563. {
  3564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3565. "preferred": true
  3566. }
  3567. ]
  3568. },
  3569. "require": {
  3570. "simplito/bigint-wrapper-php": "~1.0.0"
  3571. },
  3572. "require-dev": {
  3573. "phpunit/phpunit": "*"
  3574. },
  3575. "type": "library",
  3576. "autoload": {
  3577. "psr-4": {
  3578. "BN\\": "lib/"
  3579. }
  3580. },
  3581. "notification-url": "https://packagist.org/downloads/",
  3582. "license": [
  3583. "MIT"
  3584. ],
  3585. "authors": [
  3586. {
  3587. "name": "Simplito Team",
  3588. "email": "s.smyczynski@simplito.com",
  3589. "homepage": "https://simplito.com"
  3590. }
  3591. ],
  3592. "description": "Big number implementation compatible with bn.js",
  3593. "support": {
  3594. "issues": "https://github.com/simplito/bn-php/issues",
  3595. "source": "https://github.com/simplito/bn-php/tree/1.1.3"
  3596. },
  3597. "time": "2022-08-12T18:58:14+00:00"
  3598. },
  3599. {
  3600. "name": "simplito/elliptic-php",
  3601. "version": "1.0.12",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "https://github.com/simplito/elliptic-php.git",
  3605. "reference": "be321666781be2be2c89c79c43ffcac834bc8868"
  3606. },
  3607. "dist": {
  3608. "type": "zip",
  3609. "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/be321666781be2be2c89c79c43ffcac834bc8868",
  3610. "reference": "be321666781be2be2c89c79c43ffcac834bc8868",
  3611. "shasum": "",
  3612. "mirrors": [
  3613. {
  3614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3615. "preferred": true
  3616. }
  3617. ]
  3618. },
  3619. "require": {
  3620. "ext-gmp": "*",
  3621. "simplito/bn-php": "~1.1.0"
  3622. },
  3623. "require-dev": {
  3624. "phpbench/phpbench": "@dev",
  3625. "phpunit/phpunit": "*"
  3626. },
  3627. "type": "library",
  3628. "autoload": {
  3629. "psr-4": {
  3630. "Elliptic\\": "lib/"
  3631. }
  3632. },
  3633. "notification-url": "https://packagist.org/downloads/",
  3634. "license": [
  3635. "MIT"
  3636. ],
  3637. "authors": [
  3638. {
  3639. "name": "Simplito Team",
  3640. "email": "s.smyczynski@simplito.com",
  3641. "homepage": "https://simplito.com"
  3642. }
  3643. ],
  3644. "description": "Fast elliptic curve cryptography",
  3645. "homepage": "https://github.com/simplito/elliptic-php",
  3646. "keywords": [
  3647. "Curve25519",
  3648. "ECDSA",
  3649. "Ed25519",
  3650. "EdDSA",
  3651. "cryptography",
  3652. "curve",
  3653. "curve25519-weier",
  3654. "ecc",
  3655. "ecdh",
  3656. "elliptic",
  3657. "nistp192",
  3658. "nistp224",
  3659. "nistp256",
  3660. "nistp384",
  3661. "nistp521",
  3662. "secp256k1"
  3663. ],
  3664. "support": {
  3665. "issues": "https://github.com/simplito/elliptic-php/issues",
  3666. "source": "https://github.com/simplito/elliptic-php/tree/1.0.12"
  3667. },
  3668. "time": "2024-01-09T14:57:04+00:00"
  3669. },
  3670. {
  3671. "name": "symfony/http-foundation",
  3672. "version": "v3.4.47",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://github.com/symfony/http-foundation.git",
  3676. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b9885fcce6fe494201da4f70a9309770e9d13dc8",
  3681. "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8",
  3682. "shasum": "",
  3683. "mirrors": [
  3684. {
  3685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3686. "preferred": true
  3687. }
  3688. ]
  3689. },
  3690. "require": {
  3691. "php": "^5.5.9|>=7.0.8",
  3692. "symfony/polyfill-mbstring": "~1.1",
  3693. "symfony/polyfill-php70": "~1.6"
  3694. },
  3695. "require-dev": {
  3696. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3697. },
  3698. "type": "library",
  3699. "autoload": {
  3700. "psr-4": {
  3701. "Symfony\\Component\\HttpFoundation\\": ""
  3702. },
  3703. "exclude-from-classmap": [
  3704. "/Tests/"
  3705. ]
  3706. },
  3707. "notification-url": "https://packagist.org/downloads/",
  3708. "license": [
  3709. "MIT"
  3710. ],
  3711. "authors": [
  3712. {
  3713. "name": "Fabien Potencier",
  3714. "email": "fabien@symfony.com"
  3715. },
  3716. {
  3717. "name": "Symfony Community",
  3718. "homepage": "https://symfony.com/contributors"
  3719. }
  3720. ],
  3721. "description": "Symfony HttpFoundation Component",
  3722. "homepage": "https://symfony.com",
  3723. "support": {
  3724. "source": "https://github.com/symfony/http-foundation/tree/v3.4.47"
  3725. },
  3726. "funding": [
  3727. {
  3728. "url": "https://symfony.com/sponsor",
  3729. "type": "custom"
  3730. },
  3731. {
  3732. "url": "https://github.com/fabpot",
  3733. "type": "github"
  3734. },
  3735. {
  3736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3737. "type": "tidelift"
  3738. }
  3739. ],
  3740. "time": "2020-10-24T10:57:07+00:00"
  3741. },
  3742. {
  3743. "name": "symfony/options-resolver",
  3744. "version": "v3.4.47",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/symfony/options-resolver.git",
  3748. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  3753. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  3754. "shasum": "",
  3755. "mirrors": [
  3756. {
  3757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3758. "preferred": true
  3759. }
  3760. ]
  3761. },
  3762. "require": {
  3763. "php": "^5.5.9|>=7.0.8"
  3764. },
  3765. "type": "library",
  3766. "autoload": {
  3767. "psr-4": {
  3768. "Symfony\\Component\\OptionsResolver\\": ""
  3769. },
  3770. "exclude-from-classmap": [
  3771. "/Tests/"
  3772. ]
  3773. },
  3774. "notification-url": "https://packagist.org/downloads/",
  3775. "license": [
  3776. "MIT"
  3777. ],
  3778. "authors": [
  3779. {
  3780. "name": "Fabien Potencier",
  3781. "email": "fabien@symfony.com"
  3782. },
  3783. {
  3784. "name": "Symfony Community",
  3785. "homepage": "https://symfony.com/contributors"
  3786. }
  3787. ],
  3788. "description": "Symfony OptionsResolver Component",
  3789. "homepage": "https://symfony.com",
  3790. "keywords": [
  3791. "config",
  3792. "configuration",
  3793. "options"
  3794. ],
  3795. "support": {
  3796. "source": "https://github.com/symfony/options-resolver/tree/v3.4.47"
  3797. },
  3798. "funding": [
  3799. {
  3800. "url": "https://symfony.com/sponsor",
  3801. "type": "custom"
  3802. },
  3803. {
  3804. "url": "https://github.com/fabpot",
  3805. "type": "github"
  3806. },
  3807. {
  3808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3809. "type": "tidelift"
  3810. }
  3811. ],
  3812. "time": "2020-10-24T10:57:07+00:00"
  3813. },
  3814. {
  3815. "name": "symfony/polyfill-intl-idn",
  3816. "version": "v1.31.0",
  3817. "source": {
  3818. "type": "git",
  3819. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3820. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  3821. },
  3822. "dist": {
  3823. "type": "zip",
  3824. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  3825. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  3826. "shasum": "",
  3827. "mirrors": [
  3828. {
  3829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3830. "preferred": true
  3831. }
  3832. ]
  3833. },
  3834. "require": {
  3835. "php": ">=7.2",
  3836. "symfony/polyfill-intl-normalizer": "^1.10"
  3837. },
  3838. "suggest": {
  3839. "ext-intl": "For best performance"
  3840. },
  3841. "type": "library",
  3842. "extra": {
  3843. "thanks": {
  3844. "url": "https://github.com/symfony/polyfill",
  3845. "name": "symfony/polyfill"
  3846. }
  3847. },
  3848. "autoload": {
  3849. "files": [
  3850. "bootstrap.php"
  3851. ],
  3852. "psr-4": {
  3853. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3854. }
  3855. },
  3856. "notification-url": "https://packagist.org/downloads/",
  3857. "license": [
  3858. "MIT"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "Laurent Bassin",
  3863. "email": "laurent@bassin.info"
  3864. },
  3865. {
  3866. "name": "Trevor Rowbotham",
  3867. "email": "trevor.rowbotham@pm.me"
  3868. },
  3869. {
  3870. "name": "Symfony Community",
  3871. "homepage": "https://symfony.com/contributors"
  3872. }
  3873. ],
  3874. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3875. "homepage": "https://symfony.com",
  3876. "keywords": [
  3877. "compatibility",
  3878. "idn",
  3879. "intl",
  3880. "polyfill",
  3881. "portable",
  3882. "shim"
  3883. ],
  3884. "support": {
  3885. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  3886. },
  3887. "funding": [
  3888. {
  3889. "url": "https://symfony.com/sponsor",
  3890. "type": "custom"
  3891. },
  3892. {
  3893. "url": "https://github.com/fabpot",
  3894. "type": "github"
  3895. },
  3896. {
  3897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3898. "type": "tidelift"
  3899. }
  3900. ],
  3901. "time": "2024-09-09T11:45:10+00:00"
  3902. },
  3903. {
  3904. "name": "symfony/polyfill-intl-normalizer",
  3905. "version": "v1.31.0",
  3906. "source": {
  3907. "type": "git",
  3908. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3909. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  3910. },
  3911. "dist": {
  3912. "type": "zip",
  3913. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  3914. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  3915. "shasum": "",
  3916. "mirrors": [
  3917. {
  3918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3919. "preferred": true
  3920. }
  3921. ]
  3922. },
  3923. "require": {
  3924. "php": ">=7.2"
  3925. },
  3926. "suggest": {
  3927. "ext-intl": "For best performance"
  3928. },
  3929. "type": "library",
  3930. "extra": {
  3931. "thanks": {
  3932. "url": "https://github.com/symfony/polyfill",
  3933. "name": "symfony/polyfill"
  3934. }
  3935. },
  3936. "autoload": {
  3937. "files": [
  3938. "bootstrap.php"
  3939. ],
  3940. "psr-4": {
  3941. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3942. },
  3943. "classmap": [
  3944. "Resources/stubs"
  3945. ]
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "authors": [
  3952. {
  3953. "name": "Nicolas Grekas",
  3954. "email": "p@tchwork.com"
  3955. },
  3956. {
  3957. "name": "Symfony Community",
  3958. "homepage": "https://symfony.com/contributors"
  3959. }
  3960. ],
  3961. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3962. "homepage": "https://symfony.com",
  3963. "keywords": [
  3964. "compatibility",
  3965. "intl",
  3966. "normalizer",
  3967. "polyfill",
  3968. "portable",
  3969. "shim"
  3970. ],
  3971. "support": {
  3972. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  3973. },
  3974. "funding": [
  3975. {
  3976. "url": "https://symfony.com/sponsor",
  3977. "type": "custom"
  3978. },
  3979. {
  3980. "url": "https://github.com/fabpot",
  3981. "type": "github"
  3982. },
  3983. {
  3984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3985. "type": "tidelift"
  3986. }
  3987. ],
  3988. "time": "2024-09-09T11:45:10+00:00"
  3989. },
  3990. {
  3991. "name": "symfony/polyfill-mbstring",
  3992. "version": "v1.31.0",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3996. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4001. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4002. "shasum": "",
  4003. "mirrors": [
  4004. {
  4005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4006. "preferred": true
  4007. }
  4008. ]
  4009. },
  4010. "require": {
  4011. "php": ">=7.2"
  4012. },
  4013. "provide": {
  4014. "ext-mbstring": "*"
  4015. },
  4016. "suggest": {
  4017. "ext-mbstring": "For best performance"
  4018. },
  4019. "type": "library",
  4020. "extra": {
  4021. "thanks": {
  4022. "name": "symfony/polyfill",
  4023. "url": "https://github.com/symfony/polyfill"
  4024. }
  4025. },
  4026. "autoload": {
  4027. "files": [
  4028. "bootstrap.php"
  4029. ],
  4030. "psr-4": {
  4031. "Symfony\\Polyfill\\Mbstring\\": ""
  4032. }
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "Nicolas Grekas",
  4041. "email": "p@tchwork.com"
  4042. },
  4043. {
  4044. "name": "Symfony Community",
  4045. "homepage": "https://symfony.com/contributors"
  4046. }
  4047. ],
  4048. "description": "Symfony polyfill for the Mbstring extension",
  4049. "homepage": "https://symfony.com",
  4050. "keywords": [
  4051. "compatibility",
  4052. "mbstring",
  4053. "polyfill",
  4054. "portable",
  4055. "shim"
  4056. ],
  4057. "support": {
  4058. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  4059. },
  4060. "funding": [
  4061. {
  4062. "url": "https://symfony.com/sponsor",
  4063. "type": "custom"
  4064. },
  4065. {
  4066. "url": "https://github.com/fabpot",
  4067. "type": "github"
  4068. },
  4069. {
  4070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4071. "type": "tidelift"
  4072. }
  4073. ],
  4074. "time": "2024-09-09T11:45:10+00:00"
  4075. },
  4076. {
  4077. "name": "symfony/polyfill-php70",
  4078. "version": "v1.20.0",
  4079. "source": {
  4080. "type": "git",
  4081. "url": "https://github.com/symfony/polyfill-php70.git",
  4082. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644"
  4083. },
  4084. "dist": {
  4085. "type": "zip",
  4086. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644",
  4087. "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644",
  4088. "shasum": "",
  4089. "mirrors": [
  4090. {
  4091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4092. "preferred": true
  4093. }
  4094. ]
  4095. },
  4096. "require": {
  4097. "php": ">=7.1"
  4098. },
  4099. "type": "metapackage",
  4100. "extra": {
  4101. "thanks": {
  4102. "url": "https://github.com/symfony/polyfill",
  4103. "name": "symfony/polyfill"
  4104. },
  4105. "branch-alias": {
  4106. "dev-main": "1.20-dev"
  4107. }
  4108. },
  4109. "notification-url": "https://packagist.org/downloads/",
  4110. "license": [
  4111. "MIT"
  4112. ],
  4113. "authors": [
  4114. {
  4115. "name": "Nicolas Grekas",
  4116. "email": "p@tchwork.com"
  4117. },
  4118. {
  4119. "name": "Symfony Community",
  4120. "homepage": "https://symfony.com/contributors"
  4121. }
  4122. ],
  4123. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  4124. "homepage": "https://symfony.com",
  4125. "keywords": [
  4126. "compatibility",
  4127. "polyfill",
  4128. "portable",
  4129. "shim"
  4130. ],
  4131. "support": {
  4132. "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0"
  4133. },
  4134. "funding": [
  4135. {
  4136. "url": "https://symfony.com/sponsor",
  4137. "type": "custom"
  4138. },
  4139. {
  4140. "url": "https://github.com/fabpot",
  4141. "type": "github"
  4142. },
  4143. {
  4144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4145. "type": "tidelift"
  4146. }
  4147. ],
  4148. "time": "2020-10-23T14:02:19+00:00"
  4149. },
  4150. {
  4151. "name": "symfony/psr-http-message-bridge",
  4152. "version": "v1.2.0",
  4153. "source": {
  4154. "type": "git",
  4155. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4156. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  4157. },
  4158. "dist": {
  4159. "type": "zip",
  4160. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4161. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4162. "shasum": "",
  4163. "mirrors": [
  4164. {
  4165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4166. "preferred": true
  4167. }
  4168. ]
  4169. },
  4170. "require": {
  4171. "php": "^7.1",
  4172. "psr/http-message": "^1.0",
  4173. "symfony/http-foundation": "^3.4 || ^4.0"
  4174. },
  4175. "require-dev": {
  4176. "nyholm/psr7": "^1.1",
  4177. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  4178. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  4179. },
  4180. "suggest": {
  4181. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4182. },
  4183. "type": "symfony-bridge",
  4184. "extra": {
  4185. "branch-alias": {
  4186. "dev-master": "1.2-dev"
  4187. }
  4188. },
  4189. "autoload": {
  4190. "psr-4": {
  4191. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4192. },
  4193. "exclude-from-classmap": [
  4194. "/Tests/"
  4195. ]
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "MIT"
  4200. ],
  4201. "authors": [
  4202. {
  4203. "name": "Symfony Community",
  4204. "homepage": "http://symfony.com/contributors"
  4205. },
  4206. {
  4207. "name": "Fabien Potencier",
  4208. "email": "fabien@symfony.com"
  4209. }
  4210. ],
  4211. "description": "PSR HTTP message bridge",
  4212. "homepage": "http://symfony.com",
  4213. "keywords": [
  4214. "http",
  4215. "http-message",
  4216. "psr-17",
  4217. "psr-7"
  4218. ],
  4219. "support": {
  4220. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4221. "source": "https://github.com/symfony/psr-http-message-bridge/tree/master"
  4222. },
  4223. "time": "2019-03-11T18:22:33+00:00"
  4224. },
  4225. {
  4226. "name": "topthink/framework",
  4227. "version": "v5.0.25",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://github.com/top-think/framework.git",
  4231. "reference": "643c58ed1bd22a2823ce5e95b3b68a5075f9087c"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://api.github.com/repos/top-think/framework/zipball/643c58ed1bd22a2823ce5e95b3b68a5075f9087c",
  4236. "reference": "643c58ed1bd22a2823ce5e95b3b68a5075f9087c",
  4237. "shasum": "",
  4238. "mirrors": [
  4239. {
  4240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4241. "preferred": true
  4242. }
  4243. ]
  4244. },
  4245. "require": {
  4246. "php": ">=5.4.0",
  4247. "topthink/think-installer": "~1.0"
  4248. },
  4249. "require-dev": {
  4250. "johnkary/phpunit-speedtrap": "^1.0",
  4251. "mikey179/vfsstream": "~1.6",
  4252. "phpdocumentor/reflection-docblock": "^2.0",
  4253. "phploc/phploc": "2.*",
  4254. "phpunit/phpunit": "4.8.*",
  4255. "sebastian/phpcpd": "2.*"
  4256. },
  4257. "type": "think-framework",
  4258. "autoload": {
  4259. "psr-4": {
  4260. "think\\": "library/think"
  4261. }
  4262. },
  4263. "notification-url": "https://packagist.org/downloads/",
  4264. "license": [
  4265. "Apache-2.0"
  4266. ],
  4267. "authors": [
  4268. {
  4269. "name": "liu21st",
  4270. "email": "liu21st@gmail.com"
  4271. }
  4272. ],
  4273. "description": "the new thinkphp framework",
  4274. "homepage": "http://thinkphp.cn/",
  4275. "keywords": [
  4276. "framework",
  4277. "orm",
  4278. "thinkphp"
  4279. ],
  4280. "support": {
  4281. "issues": "https://github.com/top-think/framework/issues",
  4282. "source": "https://github.com/top-think/framework/tree/v5.0.25"
  4283. },
  4284. "time": "2022-10-25T14:59:38+00:00"
  4285. },
  4286. {
  4287. "name": "topthink/think-captcha",
  4288. "version": "v1.0.8",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://github.com/top-think/think-captcha.git",
  4292. "reference": "1d64363c814c92f6086c4fa5e3223fe7e23db09d"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/1d64363c814c92f6086c4fa5e3223fe7e23db09d",
  4297. "reference": "1d64363c814c92f6086c4fa5e3223fe7e23db09d",
  4298. "shasum": "",
  4299. "mirrors": [
  4300. {
  4301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4302. "preferred": true
  4303. }
  4304. ]
  4305. },
  4306. "require": {
  4307. "topthink/framework": "~5.0.0",
  4308. "topthink/think-installer": ">=1.0.10"
  4309. },
  4310. "type": "library",
  4311. "autoload": {
  4312. "files": [
  4313. "src/helper.php"
  4314. ],
  4315. "psr-4": {
  4316. "think\\captcha\\": "src/"
  4317. }
  4318. },
  4319. "notification-url": "https://packagist.org/downloads/",
  4320. "license": [
  4321. "Apache-2.0"
  4322. ],
  4323. "authors": [
  4324. {
  4325. "name": "yunwuxin",
  4326. "email": "448901948@qq.com"
  4327. }
  4328. ],
  4329. "description": "captcha package for thinkphp5",
  4330. "support": {
  4331. "issues": "https://github.com/top-think/think-captcha/issues",
  4332. "source": "https://github.com/top-think/think-captcha/tree/master"
  4333. },
  4334. "time": "2019-01-28T04:48:36+00:00"
  4335. },
  4336. {
  4337. "name": "topthink/think-installer",
  4338. "version": "v1.0.14",
  4339. "source": {
  4340. "type": "git",
  4341. "url": "https://github.com/top-think/think-installer.git",
  4342. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1"
  4343. },
  4344. "dist": {
  4345. "type": "zip",
  4346. "url": "https://api.github.com/repos/top-think/think-installer/zipball/eae1740ac264a55c06134b6685dfb9f837d004d1",
  4347. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1",
  4348. "shasum": "",
  4349. "mirrors": [
  4350. {
  4351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4352. "preferred": true
  4353. }
  4354. ]
  4355. },
  4356. "require": {
  4357. "composer-plugin-api": "^1.0||^2.0"
  4358. },
  4359. "require-dev": {
  4360. "composer/composer": "^1.0||^2.0"
  4361. },
  4362. "type": "composer-plugin",
  4363. "extra": {
  4364. "class": "think\\composer\\Plugin"
  4365. },
  4366. "autoload": {
  4367. "psr-4": {
  4368. "think\\composer\\": "src"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "Apache-2.0"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "yunwuxin",
  4378. "email": "448901948@qq.com"
  4379. }
  4380. ],
  4381. "support": {
  4382. "issues": "https://github.com/top-think/think-installer/issues",
  4383. "source": "https://github.com/top-think/think-installer/tree/v1.0.14"
  4384. },
  4385. "time": "2021-03-25T08:34:02+00:00"
  4386. },
  4387. {
  4388. "name": "web3p/ethereum-tx",
  4389. "version": "0.4.3",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://github.com/web3p/ethereum-tx.git",
  4393. "reference": "8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://api.github.com/repos/web3p/ethereum-tx/zipball/8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef",
  4398. "reference": "8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef",
  4399. "shasum": ""
  4400. },
  4401. "require": {
  4402. "kornrunner/keccak": "~1",
  4403. "php": "^7.1|^8.0",
  4404. "simplito/elliptic-php": "~1.0.6",
  4405. "web3p/ethereum-util": "~0.1.3",
  4406. "web3p/rlp": "0.3.4"
  4407. },
  4408. "require-dev": {
  4409. "phpunit/phpunit": "~7|~8.0"
  4410. },
  4411. "type": "library",
  4412. "autoload": {
  4413. "psr-4": {
  4414. "Web3p\\EthereumTx\\": "src/"
  4415. }
  4416. },
  4417. "notification-url": "https://packagist.org/downloads/",
  4418. "license": [
  4419. "MIT"
  4420. ],
  4421. "authors": [
  4422. {
  4423. "name": "sc0Vu",
  4424. "email": "alk03073135@gmail.com"
  4425. }
  4426. ],
  4427. "description": "Ethereum transaction library in PHP.",
  4428. "support": {
  4429. "issues": "https://github.com/web3p/ethereum-tx/issues",
  4430. "source": "https://github.com/web3p/ethereum-tx/tree/0.4.3"
  4431. },
  4432. "time": "2021-09-01T05:13:20+00:00"
  4433. },
  4434. {
  4435. "name": "web3p/ethereum-util",
  4436. "version": "0.1.4",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/web3p/ethereum-util.git",
  4440. "reference": "9a01f5389835d4092d338bb7b7d119017052ca68"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/web3p/ethereum-util/zipball/9a01f5389835d4092d338bb7b7d119017052ca68",
  4445. "reference": "9a01f5389835d4092d338bb7b7d119017052ca68",
  4446. "shasum": ""
  4447. },
  4448. "require": {
  4449. "kornrunner/keccak": "~1",
  4450. "php": "^7.1 | ^8.0",
  4451. "phpseclib/phpseclib": "~2.0",
  4452. "simplito/elliptic-php": "~1.0.6"
  4453. },
  4454. "require-dev": {
  4455. "phpunit/phpunit": "~7 | ~8.0"
  4456. },
  4457. "type": "library",
  4458. "autoload": {
  4459. "psr-4": {
  4460. "Web3p\\EthereumUtil\\": "src/"
  4461. }
  4462. },
  4463. "notification-url": "https://packagist.org/downloads/",
  4464. "license": [
  4465. "MIT"
  4466. ],
  4467. "authors": [
  4468. {
  4469. "name": "sc0Vu",
  4470. "email": "alk03073135@gmail.com"
  4471. }
  4472. ],
  4473. "description": "A collection of utility functions for Ethereum written in PHP.",
  4474. "support": {
  4475. "issues": "https://github.com/web3p/ethereum-util/issues",
  4476. "source": "https://github.com/web3p/ethereum-util/tree/0.1.4"
  4477. },
  4478. "time": "2022-12-18T05:42:39+00:00"
  4479. },
  4480. {
  4481. "name": "web3p/rlp",
  4482. "version": "0.3.4",
  4483. "source": {
  4484. "type": "git",
  4485. "url": "https://github.com/web3p/rlp.git",
  4486. "reference": "1653af23142863b490bdf22c6d0335bdb588c983"
  4487. },
  4488. "dist": {
  4489. "type": "zip",
  4490. "url": "https://api.github.com/repos/web3p/rlp/zipball/1653af23142863b490bdf22c6d0335bdb588c983",
  4491. "reference": "1653af23142863b490bdf22c6d0335bdb588c983",
  4492. "shasum": ""
  4493. },
  4494. "require": {
  4495. "ext-mbstring": "*",
  4496. "php": "^7.1 | ^8.0"
  4497. },
  4498. "require-dev": {
  4499. "phpunit/phpunit": "~7|~8.0"
  4500. },
  4501. "type": "library",
  4502. "autoload": {
  4503. "psr-4": {
  4504. "Web3p\\RLP\\": "src/"
  4505. }
  4506. },
  4507. "notification-url": "https://packagist.org/downloads/",
  4508. "license": [
  4509. "MIT"
  4510. ],
  4511. "authors": [
  4512. {
  4513. "name": "sc0Vu",
  4514. "email": "alk03073135@gmail.com"
  4515. }
  4516. ],
  4517. "description": "Recursive Length Prefix Encoding in PHP.",
  4518. "support": {
  4519. "issues": "https://github.com/web3p/rlp/issues",
  4520. "source": "https://github.com/web3p/rlp/tree/0.3.4"
  4521. },
  4522. "time": "2021-08-30T10:22:03+00:00"
  4523. },
  4524. {
  4525. "name": "web3p/web3.php",
  4526. "version": "0.3.2",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/web3p/web3.php.git",
  4530. "reference": "c58212af8f9849539be3d5252fbc44111cd7ca7d"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/web3p/web3.php/zipball/c58212af8f9849539be3d5252fbc44111cd7ca7d",
  4535. "reference": "c58212af8f9849539be3d5252fbc44111cd7ca7d",
  4536. "shasum": ""
  4537. },
  4538. "require": {
  4539. "ext-mbstring": "*",
  4540. "guzzlehttp/guzzle": "^6.3|^7.0",
  4541. "kornrunner/keccak": "~1.0",
  4542. "php": "^7.2|^8.0",
  4543. "phpseclib/phpseclib": "~2.0.30",
  4544. "ratchet/pawl": "^0.4.1",
  4545. "react/async": "^4.0.0|^3.1.0",
  4546. "react/event-loop": "^1.2",
  4547. "react/http": "^1.6.0",
  4548. "react/promise": "^2.9.0",
  4549. "react/promise-timer": "^1.10",
  4550. "react/socket": "^1.13"
  4551. },
  4552. "require-dev": {
  4553. "phpunit/phpunit": "~8.0|~9.0"
  4554. },
  4555. "type": "library",
  4556. "autoload": {
  4557. "psr-4": {
  4558. "Web3\\": "src/"
  4559. }
  4560. },
  4561. "notification-url": "https://packagist.org/downloads/",
  4562. "license": [
  4563. "MIT"
  4564. ],
  4565. "authors": [
  4566. {
  4567. "name": "sc0Vu",
  4568. "email": "alk03073135@gmail.com"
  4569. }
  4570. ],
  4571. "description": "Ethereum web3 interface.",
  4572. "support": {
  4573. "issues": "https://github.com/web3p/web3.php/issues",
  4574. "source": "https://github.com/web3p/web3.php/tree/0.3.2"
  4575. },
  4576. "time": "2024-01-28T07:50:04+00:00"
  4577. }
  4578. ],
  4579. "packages-dev": [],
  4580. "aliases": [],
  4581. "minimum-stability": "stable",
  4582. "stability-flags": {},
  4583. "prefer-stable": false,
  4584. "prefer-lowest": false,
  4585. "platform": {
  4586. "php": ">=7.0",
  4587. "ext-curl": "*",
  4588. "ext-gmp": "*",
  4589. "ext-bcmath": "*"
  4590. },
  4591. "platform-dev": {},
  4592. "plugin-api-version": "2.6.0"
  4593. }