installed.json 239 KB

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