composer.lock 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "986dc097b70d0e781873f865500c14f7",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.7.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/ce5d34dae9868237a32248788ea175c7e9da14b1",
  20. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "*",
  28. "phpunit/phpunit": "*"
  29. },
  30. "type": "library",
  31. "autoload": {
  32. "psr-4": {
  33. "OSS\\": "src/OSS"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Aliyuncs",
  43. "homepage": "http://www.aliyun.com"
  44. }
  45. ],
  46. "description": "Aliyun OSS SDK for PHP",
  47. "homepage": "http://www.aliyun.com/product/oss/",
  48. "support": {
  49. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  50. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.1"
  51. },
  52. "time": "2024-02-28T11:22:18+00:00"
  53. },
  54. {
  55. "name": "bacon/bacon-qr-code",
  56. "version": "2.0.8",
  57. "source": {
  58. "type": "git",
  59. "url": "https://github.com/Bacon/BaconQrCode.git",
  60. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  61. },
  62. "dist": {
  63. "type": "zip",
  64. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  65. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  66. "shasum": ""
  67. },
  68. "require": {
  69. "dasprid/enum": "^1.0.3",
  70. "ext-iconv": "*",
  71. "php": "^7.1 || ^8.0"
  72. },
  73. "require-dev": {
  74. "phly/keep-a-changelog": "^2.1",
  75. "phpunit/phpunit": "^7 | ^8 | ^9",
  76. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  77. "squizlabs/php_codesniffer": "^3.4"
  78. },
  79. "suggest": {
  80. "ext-imagick": "to generate QR code images"
  81. },
  82. "type": "library",
  83. "autoload": {
  84. "psr-4": {
  85. "BaconQrCode\\": "src/"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "BSD-2-Clause"
  91. ],
  92. "authors": [
  93. {
  94. "name": "Ben Scholzen 'DASPRiD'",
  95. "email": "mail@dasprids.de",
  96. "homepage": "https://dasprids.de/",
  97. "role": "Developer"
  98. }
  99. ],
  100. "description": "BaconQrCode is a QR code generator for PHP.",
  101. "homepage": "https://github.com/Bacon/BaconQrCode",
  102. "support": {
  103. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  104. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  105. },
  106. "time": "2022-12-07T17:46:57+00:00"
  107. },
  108. {
  109. "name": "brick/math",
  110. "version": "0.9.3",
  111. "source": {
  112. "type": "git",
  113. "url": "https://github.com/brick/math.git",
  114. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  115. },
  116. "dist": {
  117. "type": "zip",
  118. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  119. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  120. "shasum": ""
  121. },
  122. "require": {
  123. "ext-json": "*",
  124. "php": "^7.1 || ^8.0"
  125. },
  126. "require-dev": {
  127. "php-coveralls/php-coveralls": "^2.2",
  128. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  129. "vimeo/psalm": "4.9.2"
  130. },
  131. "type": "library",
  132. "autoload": {
  133. "psr-4": {
  134. "Brick\\Math\\": "src/"
  135. }
  136. },
  137. "notification-url": "https://packagist.org/downloads/",
  138. "license": [
  139. "MIT"
  140. ],
  141. "description": "Arbitrary-precision arithmetic library",
  142. "keywords": [
  143. "Arbitrary-precision",
  144. "BigInteger",
  145. "BigRational",
  146. "arithmetic",
  147. "bigdecimal",
  148. "bignum",
  149. "brick",
  150. "math"
  151. ],
  152. "support": {
  153. "issues": "https://github.com/brick/math/issues",
  154. "source": "https://github.com/brick/math/tree/0.9.3"
  155. },
  156. "funding": [
  157. {
  158. "url": "https://github.com/BenMorel",
  159. "type": "github"
  160. },
  161. {
  162. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  163. "type": "tidelift"
  164. }
  165. ],
  166. "time": "2021-08-15T20:50:18+00:00"
  167. },
  168. {
  169. "name": "dasprid/enum",
  170. "version": "1.0.6",
  171. "source": {
  172. "type": "git",
  173. "url": "https://github.com/DASPRiD/Enum.git",
  174. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  175. },
  176. "dist": {
  177. "type": "zip",
  178. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  179. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  180. "shasum": ""
  181. },
  182. "require": {
  183. "php": ">=7.1 <9.0"
  184. },
  185. "require-dev": {
  186. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  187. "squizlabs/php_codesniffer": "*"
  188. },
  189. "type": "library",
  190. "autoload": {
  191. "psr-4": {
  192. "DASPRiD\\Enum\\": "src/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "BSD-2-Clause"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Ben Scholzen 'DASPRiD'",
  202. "email": "mail@dasprids.de",
  203. "homepage": "https://dasprids.de/",
  204. "role": "Developer"
  205. }
  206. ],
  207. "description": "PHP 7.1 enum implementation",
  208. "keywords": [
  209. "enum",
  210. "map"
  211. ],
  212. "support": {
  213. "issues": "https://github.com/DASPRiD/Enum/issues",
  214. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  215. },
  216. "time": "2024-08-09T14:30:48+00:00"
  217. },
  218. {
  219. "name": "endroid/qr-code",
  220. "version": "4.6.1",
  221. "source": {
  222. "type": "git",
  223. "url": "https://github.com/endroid/qr-code.git",
  224. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184"
  225. },
  226. "dist": {
  227. "type": "zip",
  228. "url": "https://api.github.com/repos/endroid/qr-code/zipball/a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  229. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  230. "shasum": ""
  231. },
  232. "require": {
  233. "bacon/bacon-qr-code": "^2.0.5",
  234. "php": "^7.4||^8.0"
  235. },
  236. "require-dev": {
  237. "endroid/quality": "dev-master",
  238. "ext-gd": "*",
  239. "khanamiryan/qrcode-detector-decoder": "^1.0.4",
  240. "setasign/fpdf": "^1.8.2"
  241. },
  242. "suggest": {
  243. "ext-gd": "Enables you to write PNG images",
  244. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  245. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  246. "setasign/fpdf": "Enables you to use the PDF writer"
  247. },
  248. "type": "library",
  249. "extra": {
  250. "branch-alias": {
  251. "dev-master": "4.x-dev"
  252. }
  253. },
  254. "autoload": {
  255. "psr-4": {
  256. "Endroid\\QrCode\\": "src/"
  257. }
  258. },
  259. "notification-url": "https://packagist.org/downloads/",
  260. "license": [
  261. "MIT"
  262. ],
  263. "authors": [
  264. {
  265. "name": "Jeroen van den Enden",
  266. "email": "info@endroid.nl"
  267. }
  268. ],
  269. "description": "Endroid QR Code",
  270. "homepage": "https://github.com/endroid/qr-code",
  271. "keywords": [
  272. "code",
  273. "endroid",
  274. "php",
  275. "qr",
  276. "qrcode"
  277. ],
  278. "support": {
  279. "issues": "https://github.com/endroid/qr-code/issues",
  280. "source": "https://github.com/endroid/qr-code/tree/4.6.1"
  281. },
  282. "funding": [
  283. {
  284. "url": "https://github.com/endroid",
  285. "type": "github"
  286. }
  287. ],
  288. "time": "2022-10-26T08:48:17+00:00"
  289. },
  290. {
  291. "name": "ezyang/htmlpurifier",
  292. "version": "v4.17.0",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/ezyang/htmlpurifier.git",
  296. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  301. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "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"
  306. },
  307. "require-dev": {
  308. "cerdic/css-tidy": "^1.7 || ^2.0",
  309. "simpletest/simpletest": "dev-master"
  310. },
  311. "suggest": {
  312. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  313. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  314. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  315. "ext-tidy": "Used for pretty-printing HTML"
  316. },
  317. "type": "library",
  318. "autoload": {
  319. "files": [
  320. "library/HTMLPurifier.composer.php"
  321. ],
  322. "psr-0": {
  323. "HTMLPurifier": "library/"
  324. },
  325. "exclude-from-classmap": [
  326. "/library/HTMLPurifier/Language/"
  327. ]
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "LGPL-2.1-or-later"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Edward Z. Yang",
  336. "email": "admin@htmlpurifier.org",
  337. "homepage": "http://ezyang.com"
  338. }
  339. ],
  340. "description": "Standards compliant HTML filter written in PHP",
  341. "homepage": "http://htmlpurifier.org/",
  342. "keywords": [
  343. "html"
  344. ],
  345. "support": {
  346. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  347. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  348. },
  349. "time": "2023-11-17T15:01:25+00:00"
  350. },
  351. {
  352. "name": "firebase/php-jwt",
  353. "version": "v6.10.0",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/firebase/php-jwt.git",
  357. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  362. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.4||^8.0"
  367. },
  368. "require-dev": {
  369. "guzzlehttp/guzzle": "^6.5||^7.4",
  370. "phpspec/prophecy-phpunit": "^2.0",
  371. "phpunit/phpunit": "^9.5",
  372. "psr/cache": "^1.0||^2.0",
  373. "psr/http-client": "^1.0",
  374. "psr/http-factory": "^1.0"
  375. },
  376. "suggest": {
  377. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  378. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  379. },
  380. "type": "library",
  381. "autoload": {
  382. "psr-4": {
  383. "Firebase\\JWT\\": "src"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "BSD-3-Clause"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Neuman Vong",
  393. "email": "neuman+pear@twilio.com",
  394. "role": "Developer"
  395. },
  396. {
  397. "name": "Anant Narayanan",
  398. "email": "anant@php.net",
  399. "role": "Developer"
  400. }
  401. ],
  402. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  403. "homepage": "https://github.com/firebase/php-jwt",
  404. "keywords": [
  405. "jwt",
  406. "php"
  407. ],
  408. "support": {
  409. "issues": "https://github.com/firebase/php-jwt/issues",
  410. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  411. },
  412. "time": "2023-12-01T16:26:39+00:00"
  413. },
  414. {
  415. "name": "google/auth",
  416. "version": "v1.37.1",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/googleapis/google-auth-library-php.git",
  420. "reference": "1a7de77b72e6ac60dccf0e6478c4c1005bb0ff46"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/1a7de77b72e6ac60dccf0e6478c4c1005bb0ff46",
  425. "reference": "1a7de77b72e6ac60dccf0e6478c4c1005bb0ff46",
  426. "shasum": ""
  427. },
  428. "require": {
  429. "firebase/php-jwt": "^6.0",
  430. "guzzlehttp/guzzle": "^6.5.8||^7.4.5",
  431. "guzzlehttp/psr7": "^2.4.5",
  432. "php": "^7.4||^8.0",
  433. "psr/cache": "^1.0||^2.0||^3.0",
  434. "psr/http-message": "^1.1||^2.0"
  435. },
  436. "require-dev": {
  437. "guzzlehttp/promises": "^2.0",
  438. "kelvinmo/simplejwt": "0.7.1",
  439. "phpseclib/phpseclib": "^3.0",
  440. "phpspec/prophecy-phpunit": "^2.0",
  441. "phpunit/phpunit": "^9.0.0",
  442. "sebastian/comparator": ">=1.2.3",
  443. "squizlabs/php_codesniffer": "^3.5"
  444. },
  445. "suggest": {
  446. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  447. },
  448. "type": "library",
  449. "autoload": {
  450. "psr-4": {
  451. "Google\\Auth\\": "src"
  452. }
  453. },
  454. "notification-url": "https://packagist.org/downloads/",
  455. "license": [
  456. "Apache-2.0"
  457. ],
  458. "description": "Google Auth Library for PHP",
  459. "homepage": "http://github.com/google/google-auth-library-php",
  460. "keywords": [
  461. "Authentication",
  462. "google",
  463. "oauth2"
  464. ],
  465. "support": {
  466. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  467. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  468. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.37.1"
  469. },
  470. "time": "2024-04-03T18:41:12+00:00"
  471. },
  472. {
  473. "name": "google/cloud-core",
  474. "version": "v1.56.0",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  478. "reference": "35ca0fd74685c635a4c027c871de9d716c504933"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/35ca0fd74685c635a4c027c871de9d716c504933",
  483. "reference": "35ca0fd74685c635a4c027c871de9d716c504933",
  484. "shasum": ""
  485. },
  486. "require": {
  487. "google/auth": "^1.34",
  488. "google/gax": "^1.27.0",
  489. "guzzlehttp/guzzle": "^6.5.8|^7.4.4",
  490. "guzzlehttp/promises": "^1.4||^2.0",
  491. "guzzlehttp/psr7": "^2.6",
  492. "monolog/monolog": "^2.9|^3.0",
  493. "php": ">=7.4",
  494. "psr/http-message": "^1.0|^2.0",
  495. "rize/uri-template": "~0.3"
  496. },
  497. "require-dev": {
  498. "erusev/parsedown": "^1.6",
  499. "google/cloud-common-protos": "~0.5",
  500. "opis/closure": "^3",
  501. "phpdocumentor/reflection": "^5.3.3",
  502. "phpdocumentor/reflection-docblock": "^5.3",
  503. "phpspec/prophecy-phpunit": "^2.0",
  504. "phpunit/phpunit": "^9.0",
  505. "squizlabs/php_codesniffer": "2.*"
  506. },
  507. "suggest": {
  508. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  509. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  510. },
  511. "bin": [
  512. "bin/google-cloud-batch"
  513. ],
  514. "type": "library",
  515. "extra": {
  516. "component": {
  517. "id": "cloud-core",
  518. "target": "googleapis/google-cloud-php-core.git",
  519. "path": "Core",
  520. "entry": "src/ServiceBuilder.php"
  521. }
  522. },
  523. "autoload": {
  524. "psr-4": {
  525. "Google\\Cloud\\Core\\": "src"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "Apache-2.0"
  531. ],
  532. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  533. "support": {
  534. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.56.0"
  535. },
  536. "time": "2024-02-23T23:49:35+00:00"
  537. },
  538. {
  539. "name": "google/cloud-storage",
  540. "version": "v1.39.0",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/googleapis/google-cloud-php-storage.git",
  544. "reference": "2425a167578084af5c9b87fac6eb59b09b33b8f5"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/2425a167578084af5c9b87fac6eb59b09b33b8f5",
  549. "reference": "2425a167578084af5c9b87fac6eb59b09b33b8f5",
  550. "shasum": ""
  551. },
  552. "require": {
  553. "google/cloud-core": "^1.55",
  554. "php": ">=7.4",
  555. "ramsey/uuid": "^4.2.3"
  556. },
  557. "require-dev": {
  558. "erusev/parsedown": "^1.6",
  559. "google/cloud-pubsub": "^1.0",
  560. "phpdocumentor/reflection": "^5.3.3",
  561. "phpdocumentor/reflection-docblock": "^5.3",
  562. "phpseclib/phpseclib": "^2.0||^3.0",
  563. "phpspec/prophecy-phpunit": "^2.0",
  564. "phpunit/phpunit": "^9.0",
  565. "squizlabs/php_codesniffer": "2.*"
  566. },
  567. "suggest": {
  568. "google/cloud-pubsub": "May be used to register a topic to receive bucket notifications.",
  569. "phpseclib/phpseclib": "May be used in place of OpenSSL for creating signed Cloud Storage URLs. Please require version ^2."
  570. },
  571. "type": "library",
  572. "extra": {
  573. "component": {
  574. "id": "cloud-storage",
  575. "target": "googleapis/google-cloud-php-storage.git",
  576. "path": "Storage",
  577. "entry": "src/StorageClient.php"
  578. }
  579. },
  580. "autoload": {
  581. "psr-4": {
  582. "Google\\Cloud\\Storage\\": "src"
  583. }
  584. },
  585. "notification-url": "https://packagist.org/downloads/",
  586. "license": [
  587. "Apache-2.0"
  588. ],
  589. "description": "Cloud Storage Client for PHP",
  590. "support": {
  591. "source": "https://github.com/googleapis/google-cloud-php-storage/tree/v1.39.0"
  592. },
  593. "time": "2024-02-23T23:49:35+00:00"
  594. },
  595. {
  596. "name": "google/common-protos",
  597. "version": "v4.5.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/googleapis/common-protos-php.git",
  601. "reference": "dfc232e90823cedca107b56e7371f2e2f35b9427"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/dfc232e90823cedca107b56e7371f2e2f35b9427",
  606. "reference": "dfc232e90823cedca107b56e7371f2e2f35b9427",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "google/protobuf": "^3.6.1",
  611. "php": ">=7.4"
  612. },
  613. "require-dev": {
  614. "phpunit/phpunit": "^9.0"
  615. },
  616. "type": "library",
  617. "autoload": {
  618. "psr-4": {
  619. "Google\\Api\\": "src/Api",
  620. "Google\\Iam\\": "src/Iam",
  621. "Google\\Rpc\\": "src/Rpc",
  622. "Google\\Type\\": "src/Type",
  623. "Google\\Cloud\\": "src/Cloud",
  624. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  625. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  626. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  627. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  628. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  629. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "Apache-2.0"
  635. ],
  636. "description": "Google API Common Protos for PHP",
  637. "homepage": "https://github.com/googleapis/common-protos-php",
  638. "keywords": [
  639. "google"
  640. ],
  641. "support": {
  642. "issues": "https://github.com/googleapis/common-protos-php/issues",
  643. "source": "https://github.com/googleapis/common-protos-php/tree/v4.5.0"
  644. },
  645. "time": "2023-11-29T21:08:16+00:00"
  646. },
  647. {
  648. "name": "google/gax",
  649. "version": "v1.29.1",
  650. "source": {
  651. "type": "git",
  652. "url": "https://github.com/googleapis/gax-php.git",
  653. "reference": "54a863e63ee318308637adb283f6157ccc3aabbb"
  654. },
  655. "dist": {
  656. "type": "zip",
  657. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/54a863e63ee318308637adb283f6157ccc3aabbb",
  658. "reference": "54a863e63ee318308637adb283f6157ccc3aabbb",
  659. "shasum": ""
  660. },
  661. "require": {
  662. "google/auth": "^1.34.0",
  663. "google/common-protos": "^4.4",
  664. "google/grpc-gcp": "^0.2||^0.3",
  665. "google/longrunning": "~0.2",
  666. "google/protobuf": "^3.22",
  667. "grpc/grpc": "^1.13",
  668. "guzzlehttp/promises": "^1.4||^2.0",
  669. "guzzlehttp/psr7": "^2.0",
  670. "php": ">=7.4"
  671. },
  672. "conflict": {
  673. "ext-protobuf": "<3.7.0"
  674. },
  675. "require-dev": {
  676. "phpspec/prophecy-phpunit": "^2.0",
  677. "phpunit/phpunit": "^9.0",
  678. "squizlabs/php_codesniffer": "3.*"
  679. },
  680. "type": "library",
  681. "autoload": {
  682. "psr-4": {
  683. "Google\\ApiCore\\": "src",
  684. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "BSD-3-Clause"
  690. ],
  691. "description": "Google API Core for PHP",
  692. "homepage": "https://github.com/googleapis/gax-php",
  693. "keywords": [
  694. "google"
  695. ],
  696. "support": {
  697. "issues": "https://github.com/googleapis/gax-php/issues",
  698. "source": "https://github.com/googleapis/gax-php/tree/v1.29.1"
  699. },
  700. "time": "2024-02-26T19:15:41+00:00"
  701. },
  702. {
  703. "name": "google/grpc-gcp",
  704. "version": "v0.3.0",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  708. "reference": "4d8b455a45a89f57e1552cadc41a43bc34c40456"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/4d8b455a45a89f57e1552cadc41a43bc34c40456",
  713. "reference": "4d8b455a45a89f57e1552cadc41a43bc34c40456",
  714. "shasum": ""
  715. },
  716. "require": {
  717. "google/auth": "^1.3",
  718. "google/protobuf": "^v3.3.0",
  719. "grpc/grpc": "^v1.13.0",
  720. "php": "^7.4||^8.0",
  721. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  722. },
  723. "require-dev": {
  724. "google/cloud-spanner": "^1.7",
  725. "phpunit/phpunit": "^9.0"
  726. },
  727. "type": "library",
  728. "autoload": {
  729. "psr-4": {
  730. "Grpc\\Gcp\\": "src/"
  731. },
  732. "classmap": [
  733. "src/generated/"
  734. ]
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "Apache-2.0"
  739. ],
  740. "description": "gRPC GCP library for channel management",
  741. "support": {
  742. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  743. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.3.0"
  744. },
  745. "time": "2023-04-24T14:37:29+00:00"
  746. },
  747. {
  748. "name": "google/longrunning",
  749. "version": "0.4.3",
  750. "source": {
  751. "type": "git",
  752. "url": "https://github.com/googleapis/php-longrunning.git",
  753. "reference": "ed718a735e407826c3332b7197a44602eb03e608"
  754. },
  755. "dist": {
  756. "type": "zip",
  757. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/ed718a735e407826c3332b7197a44602eb03e608",
  758. "reference": "ed718a735e407826c3332b7197a44602eb03e608",
  759. "shasum": ""
  760. },
  761. "require-dev": {
  762. "google/gax": "^1.34.0",
  763. "phpunit/phpunit": "^9.0"
  764. },
  765. "type": "library",
  766. "extra": {
  767. "component": {
  768. "id": "longrunning",
  769. "path": "LongRunning",
  770. "entry": null,
  771. "target": "googleapis/php-longrunning"
  772. }
  773. },
  774. "autoload": {
  775. "psr-4": {
  776. "Google\\LongRunning\\": "src/LongRunning",
  777. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  778. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  779. }
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "Apache-2.0"
  784. ],
  785. "description": "Google LongRunning Client for PHP",
  786. "support": {
  787. "source": "https://github.com/googleapis/php-longrunning/tree/v0.4.3"
  788. },
  789. "time": "2024-06-01T03:14:01+00:00"
  790. },
  791. {
  792. "name": "google/protobuf",
  793. "version": "v3.25.5",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  797. "reference": "dd2cf3f7b577dced3851c2ea76c3daa9f8aa0ff4"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/dd2cf3f7b577dced3851c2ea76c3daa9f8aa0ff4",
  802. "reference": "dd2cf3f7b577dced3851c2ea76c3daa9f8aa0ff4",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "php": ">=7.0.0"
  807. },
  808. "require-dev": {
  809. "phpunit/phpunit": ">=5.0.0"
  810. },
  811. "suggest": {
  812. "ext-bcmath": "Need to support JSON deserialization"
  813. },
  814. "type": "library",
  815. "autoload": {
  816. "psr-4": {
  817. "Google\\Protobuf\\": "src/Google/Protobuf",
  818. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  819. }
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "BSD-3-Clause"
  824. ],
  825. "description": "proto library for PHP",
  826. "homepage": "https://developers.google.com/protocol-buffers/",
  827. "keywords": [
  828. "proto"
  829. ],
  830. "support": {
  831. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.5"
  832. },
  833. "time": "2024-09-18T22:04:15+00:00"
  834. },
  835. {
  836. "name": "grpc/grpc",
  837. "version": "1.57.0",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/grpc/grpc-php.git",
  841. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/b610c42022ed3a22f831439cb93802f2a4502fdf",
  846. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "php": ">=7.0.0"
  851. },
  852. "require-dev": {
  853. "google/auth": "^v1.3.0"
  854. },
  855. "suggest": {
  856. "ext-protobuf": "For better performance, install the protobuf C extension.",
  857. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  858. },
  859. "type": "library",
  860. "autoload": {
  861. "psr-4": {
  862. "Grpc\\": "src/lib/"
  863. }
  864. },
  865. "notification-url": "https://packagist.org/downloads/",
  866. "license": [
  867. "Apache-2.0"
  868. ],
  869. "description": "gRPC library for PHP",
  870. "homepage": "https://grpc.io",
  871. "keywords": [
  872. "rpc"
  873. ],
  874. "support": {
  875. "source": "https://github.com/grpc/grpc-php/tree/v1.57.0"
  876. },
  877. "time": "2023-08-14T23:57:54+00:00"
  878. },
  879. {
  880. "name": "guzzlehttp/command",
  881. "version": "1.3.1",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/guzzle/command.git",
  885. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/guzzle/command/zipball/0eebc653784f4902b3272e826fe8e88743d14e77",
  890. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "guzzlehttp/guzzle": "^7.8",
  895. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  896. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  897. "php": "^7.2.5 || ^8.0"
  898. },
  899. "require-dev": {
  900. "bamarni/composer-bin-plugin": "^1.8.2",
  901. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  902. },
  903. "type": "library",
  904. "extra": {
  905. "bamarni-bin": {
  906. "bin-links": true,
  907. "forward-command": false
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "GuzzleHttp\\Command\\": "src/"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Graham Campbell",
  922. "email": "hello@gjcampbell.co.uk",
  923. "homepage": "https://github.com/GrahamCampbell"
  924. },
  925. {
  926. "name": "Michael Dowling",
  927. "email": "mtdowling@gmail.com",
  928. "homepage": "https://github.com/mtdowling"
  929. },
  930. {
  931. "name": "Jeremy Lindblom",
  932. "email": "jeremeamia@gmail.com",
  933. "homepage": "https://github.com/jeremeamia"
  934. },
  935. {
  936. "name": "Tobias Nyholm",
  937. "email": "tobias.nyholm@gmail.com",
  938. "homepage": "https://github.com/Nyholm"
  939. }
  940. ],
  941. "description": "Provides the foundation for building command-based web service clients",
  942. "support": {
  943. "issues": "https://github.com/guzzle/command/issues",
  944. "source": "https://github.com/guzzle/command/tree/1.3.1"
  945. },
  946. "funding": [
  947. {
  948. "url": "https://github.com/GrahamCampbell",
  949. "type": "github"
  950. },
  951. {
  952. "url": "https://github.com/Nyholm",
  953. "type": "github"
  954. },
  955. {
  956. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  957. "type": "tidelift"
  958. }
  959. ],
  960. "time": "2023-12-03T20:46:20+00:00"
  961. },
  962. {
  963. "name": "guzzlehttp/guzzle",
  964. "version": "7.9.2",
  965. "source": {
  966. "type": "git",
  967. "url": "https://github.com/guzzle/guzzle.git",
  968. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  969. },
  970. "dist": {
  971. "type": "zip",
  972. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  973. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  974. "shasum": ""
  975. },
  976. "require": {
  977. "ext-json": "*",
  978. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  979. "guzzlehttp/psr7": "^2.7.0",
  980. "php": "^7.2.5 || ^8.0",
  981. "psr/http-client": "^1.0",
  982. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  983. },
  984. "provide": {
  985. "psr/http-client-implementation": "1.0"
  986. },
  987. "require-dev": {
  988. "bamarni/composer-bin-plugin": "^1.8.2",
  989. "ext-curl": "*",
  990. "guzzle/client-integration-tests": "3.0.2",
  991. "php-http/message-factory": "^1.1",
  992. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  993. "psr/log": "^1.1 || ^2.0 || ^3.0"
  994. },
  995. "suggest": {
  996. "ext-curl": "Required for CURL handler support",
  997. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  998. "psr/log": "Required for using the Log middleware"
  999. },
  1000. "type": "library",
  1001. "extra": {
  1002. "bamarni-bin": {
  1003. "bin-links": true,
  1004. "forward-command": false
  1005. }
  1006. },
  1007. "autoload": {
  1008. "files": [
  1009. "src/functions_include.php"
  1010. ],
  1011. "psr-4": {
  1012. "GuzzleHttp\\": "src/"
  1013. }
  1014. },
  1015. "notification-url": "https://packagist.org/downloads/",
  1016. "license": [
  1017. "MIT"
  1018. ],
  1019. "authors": [
  1020. {
  1021. "name": "Graham Campbell",
  1022. "email": "hello@gjcampbell.co.uk",
  1023. "homepage": "https://github.com/GrahamCampbell"
  1024. },
  1025. {
  1026. "name": "Michael Dowling",
  1027. "email": "mtdowling@gmail.com",
  1028. "homepage": "https://github.com/mtdowling"
  1029. },
  1030. {
  1031. "name": "Jeremy Lindblom",
  1032. "email": "jeremeamia@gmail.com",
  1033. "homepage": "https://github.com/jeremeamia"
  1034. },
  1035. {
  1036. "name": "George Mponos",
  1037. "email": "gmponos@gmail.com",
  1038. "homepage": "https://github.com/gmponos"
  1039. },
  1040. {
  1041. "name": "Tobias Nyholm",
  1042. "email": "tobias.nyholm@gmail.com",
  1043. "homepage": "https://github.com/Nyholm"
  1044. },
  1045. {
  1046. "name": "Márk Sági-Kazár",
  1047. "email": "mark.sagikazar@gmail.com",
  1048. "homepage": "https://github.com/sagikazarmark"
  1049. },
  1050. {
  1051. "name": "Tobias Schultze",
  1052. "email": "webmaster@tubo-world.de",
  1053. "homepage": "https://github.com/Tobion"
  1054. }
  1055. ],
  1056. "description": "Guzzle is a PHP HTTP client library",
  1057. "keywords": [
  1058. "client",
  1059. "curl",
  1060. "framework",
  1061. "http",
  1062. "http client",
  1063. "psr-18",
  1064. "psr-7",
  1065. "rest",
  1066. "web service"
  1067. ],
  1068. "support": {
  1069. "issues": "https://github.com/guzzle/guzzle/issues",
  1070. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1071. },
  1072. "funding": [
  1073. {
  1074. "url": "https://github.com/GrahamCampbell",
  1075. "type": "github"
  1076. },
  1077. {
  1078. "url": "https://github.com/Nyholm",
  1079. "type": "github"
  1080. },
  1081. {
  1082. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1083. "type": "tidelift"
  1084. }
  1085. ],
  1086. "time": "2024-07-24T11:22:20+00:00"
  1087. },
  1088. {
  1089. "name": "guzzlehttp/guzzle-services",
  1090. "version": "1.4.1",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/guzzle/guzzle-services.git",
  1094. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/bcab7c0d61672b606510a6fe5af3039d04968c0f",
  1099. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "guzzlehttp/command": "^1.3.1",
  1104. "guzzlehttp/guzzle": "^7.8",
  1105. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1106. "guzzlehttp/uri-template": "^1.0.1",
  1107. "php": "^7.2.5 || ^8.0"
  1108. },
  1109. "require-dev": {
  1110. "bamarni/composer-bin-plugin": "^1.8.2",
  1111. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1112. },
  1113. "suggest": {
  1114. "gimler/guzzle-description-loader": "^0.0.4"
  1115. },
  1116. "type": "library",
  1117. "extra": {
  1118. "bamarni-bin": {
  1119. "bin-links": true,
  1120. "forward-command": false
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-4": {
  1125. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Graham Campbell",
  1135. "email": "hello@gjcampbell.co.uk",
  1136. "homepage": "https://github.com/GrahamCampbell"
  1137. },
  1138. {
  1139. "name": "Michael Dowling",
  1140. "email": "mtdowling@gmail.com",
  1141. "homepage": "https://github.com/mtdowling"
  1142. },
  1143. {
  1144. "name": "Stefano Kowalke",
  1145. "email": "blueduck@mail.org",
  1146. "homepage": "https://github.com/Konafets"
  1147. },
  1148. {
  1149. "name": "Tobias Nyholm",
  1150. "email": "tobias.nyholm@gmail.com",
  1151. "homepage": "https://github.com/Nyholm"
  1152. }
  1153. ],
  1154. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  1155. "support": {
  1156. "issues": "https://github.com/guzzle/guzzle-services/issues",
  1157. "source": "https://github.com/guzzle/guzzle-services/tree/1.4.1"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://github.com/GrahamCampbell",
  1162. "type": "github"
  1163. },
  1164. {
  1165. "url": "https://github.com/Nyholm",
  1166. "type": "github"
  1167. },
  1168. {
  1169. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  1170. "type": "tidelift"
  1171. }
  1172. ],
  1173. "time": "2023-12-03T20:48:14+00:00"
  1174. },
  1175. {
  1176. "name": "guzzlehttp/promises",
  1177. "version": "2.0.3",
  1178. "source": {
  1179. "type": "git",
  1180. "url": "https://github.com/guzzle/promises.git",
  1181. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  1182. },
  1183. "dist": {
  1184. "type": "zip",
  1185. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1186. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1187. "shasum": ""
  1188. },
  1189. "require": {
  1190. "php": "^7.2.5 || ^8.0"
  1191. },
  1192. "require-dev": {
  1193. "bamarni/composer-bin-plugin": "^1.8.2",
  1194. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1195. },
  1196. "type": "library",
  1197. "extra": {
  1198. "bamarni-bin": {
  1199. "bin-links": true,
  1200. "forward-command": false
  1201. }
  1202. },
  1203. "autoload": {
  1204. "psr-4": {
  1205. "GuzzleHttp\\Promise\\": "src/"
  1206. }
  1207. },
  1208. "notification-url": "https://packagist.org/downloads/",
  1209. "license": [
  1210. "MIT"
  1211. ],
  1212. "authors": [
  1213. {
  1214. "name": "Graham Campbell",
  1215. "email": "hello@gjcampbell.co.uk",
  1216. "homepage": "https://github.com/GrahamCampbell"
  1217. },
  1218. {
  1219. "name": "Michael Dowling",
  1220. "email": "mtdowling@gmail.com",
  1221. "homepage": "https://github.com/mtdowling"
  1222. },
  1223. {
  1224. "name": "Tobias Nyholm",
  1225. "email": "tobias.nyholm@gmail.com",
  1226. "homepage": "https://github.com/Nyholm"
  1227. },
  1228. {
  1229. "name": "Tobias Schultze",
  1230. "email": "webmaster@tubo-world.de",
  1231. "homepage": "https://github.com/Tobion"
  1232. }
  1233. ],
  1234. "description": "Guzzle promises library",
  1235. "keywords": [
  1236. "promise"
  1237. ],
  1238. "support": {
  1239. "issues": "https://github.com/guzzle/promises/issues",
  1240. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  1241. },
  1242. "funding": [
  1243. {
  1244. "url": "https://github.com/GrahamCampbell",
  1245. "type": "github"
  1246. },
  1247. {
  1248. "url": "https://github.com/Nyholm",
  1249. "type": "github"
  1250. },
  1251. {
  1252. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1253. "type": "tidelift"
  1254. }
  1255. ],
  1256. "time": "2024-07-18T10:29:17+00:00"
  1257. },
  1258. {
  1259. "name": "guzzlehttp/psr7",
  1260. "version": "2.7.0",
  1261. "source": {
  1262. "type": "git",
  1263. "url": "https://github.com/guzzle/psr7.git",
  1264. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1265. },
  1266. "dist": {
  1267. "type": "zip",
  1268. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1269. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1270. "shasum": ""
  1271. },
  1272. "require": {
  1273. "php": "^7.2.5 || ^8.0",
  1274. "psr/http-factory": "^1.0",
  1275. "psr/http-message": "^1.1 || ^2.0",
  1276. "ralouphie/getallheaders": "^3.0"
  1277. },
  1278. "provide": {
  1279. "psr/http-factory-implementation": "1.0",
  1280. "psr/http-message-implementation": "1.0"
  1281. },
  1282. "require-dev": {
  1283. "bamarni/composer-bin-plugin": "^1.8.2",
  1284. "http-interop/http-factory-tests": "0.9.0",
  1285. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1286. },
  1287. "suggest": {
  1288. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "bamarni-bin": {
  1293. "bin-links": true,
  1294. "forward-command": false
  1295. }
  1296. },
  1297. "autoload": {
  1298. "psr-4": {
  1299. "GuzzleHttp\\Psr7\\": "src/"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Graham Campbell",
  1309. "email": "hello@gjcampbell.co.uk",
  1310. "homepage": "https://github.com/GrahamCampbell"
  1311. },
  1312. {
  1313. "name": "Michael Dowling",
  1314. "email": "mtdowling@gmail.com",
  1315. "homepage": "https://github.com/mtdowling"
  1316. },
  1317. {
  1318. "name": "George Mponos",
  1319. "email": "gmponos@gmail.com",
  1320. "homepage": "https://github.com/gmponos"
  1321. },
  1322. {
  1323. "name": "Tobias Nyholm",
  1324. "email": "tobias.nyholm@gmail.com",
  1325. "homepage": "https://github.com/Nyholm"
  1326. },
  1327. {
  1328. "name": "Márk Sági-Kazár",
  1329. "email": "mark.sagikazar@gmail.com",
  1330. "homepage": "https://github.com/sagikazarmark"
  1331. },
  1332. {
  1333. "name": "Tobias Schultze",
  1334. "email": "webmaster@tubo-world.de",
  1335. "homepage": "https://github.com/Tobion"
  1336. },
  1337. {
  1338. "name": "Márk Sági-Kazár",
  1339. "email": "mark.sagikazar@gmail.com",
  1340. "homepage": "https://sagikazarmark.hu"
  1341. }
  1342. ],
  1343. "description": "PSR-7 message implementation that also provides common utility methods",
  1344. "keywords": [
  1345. "http",
  1346. "message",
  1347. "psr-7",
  1348. "request",
  1349. "response",
  1350. "stream",
  1351. "uri",
  1352. "url"
  1353. ],
  1354. "support": {
  1355. "issues": "https://github.com/guzzle/psr7/issues",
  1356. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1357. },
  1358. "funding": [
  1359. {
  1360. "url": "https://github.com/GrahamCampbell",
  1361. "type": "github"
  1362. },
  1363. {
  1364. "url": "https://github.com/Nyholm",
  1365. "type": "github"
  1366. },
  1367. {
  1368. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1369. "type": "tidelift"
  1370. }
  1371. ],
  1372. "time": "2024-07-18T11:15:46+00:00"
  1373. },
  1374. {
  1375. "name": "guzzlehttp/uri-template",
  1376. "version": "v1.0.3",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/guzzle/uri-template.git",
  1380. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1385. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "php": "^7.2.5 || ^8.0",
  1390. "symfony/polyfill-php80": "^1.24"
  1391. },
  1392. "require-dev": {
  1393. "bamarni/composer-bin-plugin": "^1.8.2",
  1394. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1395. "uri-template/tests": "1.0.0"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "bamarni-bin": {
  1400. "bin-links": true,
  1401. "forward-command": false
  1402. }
  1403. },
  1404. "autoload": {
  1405. "psr-4": {
  1406. "GuzzleHttp\\UriTemplate\\": "src"
  1407. }
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "MIT"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Graham Campbell",
  1416. "email": "hello@gjcampbell.co.uk",
  1417. "homepage": "https://github.com/GrahamCampbell"
  1418. },
  1419. {
  1420. "name": "Michael Dowling",
  1421. "email": "mtdowling@gmail.com",
  1422. "homepage": "https://github.com/mtdowling"
  1423. },
  1424. {
  1425. "name": "George Mponos",
  1426. "email": "gmponos@gmail.com",
  1427. "homepage": "https://github.com/gmponos"
  1428. },
  1429. {
  1430. "name": "Tobias Nyholm",
  1431. "email": "tobias.nyholm@gmail.com",
  1432. "homepage": "https://github.com/Nyholm"
  1433. }
  1434. ],
  1435. "description": "A polyfill class for uri_template of PHP",
  1436. "keywords": [
  1437. "guzzlehttp",
  1438. "uri-template"
  1439. ],
  1440. "support": {
  1441. "issues": "https://github.com/guzzle/uri-template/issues",
  1442. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1443. },
  1444. "funding": [
  1445. {
  1446. "url": "https://github.com/GrahamCampbell",
  1447. "type": "github"
  1448. },
  1449. {
  1450. "url": "https://github.com/Nyholm",
  1451. "type": "github"
  1452. },
  1453. {
  1454. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1455. "type": "tidelift"
  1456. }
  1457. ],
  1458. "time": "2023-12-03T19:50:20+00:00"
  1459. },
  1460. {
  1461. "name": "kosinix/grafika",
  1462. "version": "dev-master",
  1463. "source": {
  1464. "type": "git",
  1465. "url": "https://github.com/kosinix/grafika.git",
  1466. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee"
  1467. },
  1468. "dist": {
  1469. "type": "zip",
  1470. "url": "https://api.github.com/repos/kosinix/grafika/zipball/211f61fc334b8b36616b23e8af7c5727971d96ee",
  1471. "reference": "211f61fc334b8b36616b23e8af7c5727971d96ee",
  1472. "shasum": ""
  1473. },
  1474. "require": {
  1475. "php": ">=5.3"
  1476. },
  1477. "default-branch": true,
  1478. "type": "library",
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Grafika\\": "src/Grafika"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT",
  1487. "GPL-2.0+"
  1488. ],
  1489. "authors": [
  1490. {
  1491. "name": "Nico Amarilla",
  1492. "homepage": "https://www.kosinix.com"
  1493. }
  1494. ],
  1495. "description": "An image manipulation library for PHP.",
  1496. "homepage": "http://kosinix.github.io/grafika",
  1497. "keywords": [
  1498. "grafika"
  1499. ],
  1500. "support": {
  1501. "issues": "https://github.com/kosinix/grafika/issues",
  1502. "source": "https://github.com/kosinix/grafika/tree/2.0.8"
  1503. },
  1504. "time": "2017-06-20T03:13:49+00:00"
  1505. },
  1506. {
  1507. "name": "league/flysystem",
  1508. "version": "2.5.0",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/thephpleague/flysystem.git",
  1512. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  1517. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "ext-json": "*",
  1522. "league/mime-type-detection": "^1.0.0",
  1523. "php": "^7.2 || ^8.0"
  1524. },
  1525. "conflict": {
  1526. "guzzlehttp/ringphp": "<1.1.1"
  1527. },
  1528. "require-dev": {
  1529. "async-aws/s3": "^1.5",
  1530. "async-aws/simple-s3": "^1.0",
  1531. "aws/aws-sdk-php": "^3.132.4",
  1532. "composer/semver": "^3.0",
  1533. "ext-fileinfo": "*",
  1534. "ext-ftp": "*",
  1535. "friendsofphp/php-cs-fixer": "^3.2",
  1536. "google/cloud-storage": "^1.23",
  1537. "phpseclib/phpseclib": "^2.0",
  1538. "phpstan/phpstan": "^0.12.26",
  1539. "phpunit/phpunit": "^8.5 || ^9.4",
  1540. "sabre/dav": "^4.1"
  1541. },
  1542. "type": "library",
  1543. "autoload": {
  1544. "psr-4": {
  1545. "League\\Flysystem\\": "src"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Frank de Jonge",
  1555. "email": "info@frankdejonge.nl"
  1556. }
  1557. ],
  1558. "description": "File storage abstraction for PHP",
  1559. "keywords": [
  1560. "WebDAV",
  1561. "aws",
  1562. "cloud",
  1563. "file",
  1564. "files",
  1565. "filesystem",
  1566. "filesystems",
  1567. "ftp",
  1568. "s3",
  1569. "sftp",
  1570. "storage"
  1571. ],
  1572. "support": {
  1573. "issues": "https://github.com/thephpleague/flysystem/issues",
  1574. "source": "https://github.com/thephpleague/flysystem/tree/2.5.0"
  1575. },
  1576. "funding": [
  1577. {
  1578. "url": "https://ecologi.com/frankdejonge",
  1579. "type": "custom"
  1580. },
  1581. {
  1582. "url": "https://github.com/frankdejonge",
  1583. "type": "github"
  1584. },
  1585. {
  1586. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1587. "type": "tidelift"
  1588. }
  1589. ],
  1590. "time": "2022-09-17T21:02:32+00:00"
  1591. },
  1592. {
  1593. "name": "league/mime-type-detection",
  1594. "version": "1.16.0",
  1595. "source": {
  1596. "type": "git",
  1597. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1598. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  1599. },
  1600. "dist": {
  1601. "type": "zip",
  1602. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  1603. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  1604. "shasum": ""
  1605. },
  1606. "require": {
  1607. "ext-fileinfo": "*",
  1608. "php": "^7.4 || ^8.0"
  1609. },
  1610. "require-dev": {
  1611. "friendsofphp/php-cs-fixer": "^3.2",
  1612. "phpstan/phpstan": "^0.12.68",
  1613. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1614. },
  1615. "type": "library",
  1616. "autoload": {
  1617. "psr-4": {
  1618. "League\\MimeTypeDetection\\": "src"
  1619. }
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Frank de Jonge",
  1628. "email": "info@frankdejonge.nl"
  1629. }
  1630. ],
  1631. "description": "Mime-type detection for Flysystem",
  1632. "support": {
  1633. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1634. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  1635. },
  1636. "funding": [
  1637. {
  1638. "url": "https://github.com/frankdejonge",
  1639. "type": "github"
  1640. },
  1641. {
  1642. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1643. "type": "tidelift"
  1644. }
  1645. ],
  1646. "time": "2024-09-21T08:32:55+00:00"
  1647. },
  1648. {
  1649. "name": "lvht/geohash",
  1650. "version": "v1.1.0",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/lvht/geohash.git",
  1654. "reference": "bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/lvht/geohash/zipball/bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29",
  1659. "reference": "bbba3e1b487f0ec2e5e666c1bc9d1d4277990a29",
  1660. "shasum": ""
  1661. },
  1662. "require": {
  1663. "php": ">=5.4.0"
  1664. },
  1665. "type": "library",
  1666. "autoload": {
  1667. "psr-4": {
  1668. "Lvht\\": "src"
  1669. }
  1670. },
  1671. "notification-url": "https://packagist.org/downloads/",
  1672. "license": [
  1673. "MIT"
  1674. ],
  1675. "authors": [
  1676. {
  1677. "name": "吕海涛",
  1678. "email": "git@lvht.net",
  1679. "homepage": "https://github.com/lvht"
  1680. }
  1681. ],
  1682. "description": "geohash like python-geohash",
  1683. "homepage": "http://github.com/lvht/geohash",
  1684. "keywords": [
  1685. "geohash"
  1686. ],
  1687. "support": {
  1688. "issues": "https://github.com/lvht/geohash/issues",
  1689. "source": "https://github.com/lvht/geohash/tree/master"
  1690. },
  1691. "time": "2017-08-24T11:05:30+00:00"
  1692. },
  1693. {
  1694. "name": "maennchen/zipstream-php",
  1695. "version": "2.2.6",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1699. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  1704. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  1705. "shasum": ""
  1706. },
  1707. "require": {
  1708. "myclabs/php-enum": "^1.5",
  1709. "php": "^7.4 || ^8.0",
  1710. "psr/http-message": "^1.0",
  1711. "symfony/polyfill-mbstring": "^1.0"
  1712. },
  1713. "require-dev": {
  1714. "ext-zip": "*",
  1715. "friendsofphp/php-cs-fixer": "^3.9",
  1716. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  1717. "mikey179/vfsstream": "^1.6",
  1718. "php-coveralls/php-coveralls": "^2.4",
  1719. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  1720. "vimeo/psalm": "^4.1"
  1721. },
  1722. "type": "library",
  1723. "autoload": {
  1724. "psr-4": {
  1725. "ZipStream\\": "src/"
  1726. }
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "Paul Duncan",
  1735. "email": "pabs@pablotron.org"
  1736. },
  1737. {
  1738. "name": "Jonatan Männchen",
  1739. "email": "jonatan@maennchen.ch"
  1740. },
  1741. {
  1742. "name": "Jesse Donat",
  1743. "email": "donatj@gmail.com"
  1744. },
  1745. {
  1746. "name": "András Kolesár",
  1747. "email": "kolesar@kolesar.hu"
  1748. }
  1749. ],
  1750. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1751. "keywords": [
  1752. "stream",
  1753. "zip"
  1754. ],
  1755. "support": {
  1756. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1757. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://github.com/maennchen",
  1762. "type": "github"
  1763. },
  1764. {
  1765. "url": "https://opencollective.com/zipstream",
  1766. "type": "open_collective"
  1767. }
  1768. ],
  1769. "time": "2022-11-25T18:57:19+00:00"
  1770. },
  1771. {
  1772. "name": "markbaker/complex",
  1773. "version": "3.0.2",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1777. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1782. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "php": "^7.2 || ^8.0"
  1787. },
  1788. "require-dev": {
  1789. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1790. "phpcompatibility/php-compatibility": "^9.3",
  1791. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1792. "squizlabs/php_codesniffer": "^3.7"
  1793. },
  1794. "type": "library",
  1795. "autoload": {
  1796. "psr-4": {
  1797. "Complex\\": "classes/src/"
  1798. }
  1799. },
  1800. "notification-url": "https://packagist.org/downloads/",
  1801. "license": [
  1802. "MIT"
  1803. ],
  1804. "authors": [
  1805. {
  1806. "name": "Mark Baker",
  1807. "email": "mark@lange.demon.co.uk"
  1808. }
  1809. ],
  1810. "description": "PHP Class for working with complex numbers",
  1811. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1812. "keywords": [
  1813. "complex",
  1814. "mathematics"
  1815. ],
  1816. "support": {
  1817. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1818. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  1819. },
  1820. "time": "2022-12-06T16:21:08+00:00"
  1821. },
  1822. {
  1823. "name": "markbaker/matrix",
  1824. "version": "3.0.1",
  1825. "source": {
  1826. "type": "git",
  1827. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1828. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  1829. },
  1830. "dist": {
  1831. "type": "zip",
  1832. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  1833. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  1834. "shasum": ""
  1835. },
  1836. "require": {
  1837. "php": "^7.1 || ^8.0"
  1838. },
  1839. "require-dev": {
  1840. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1841. "phpcompatibility/php-compatibility": "^9.3",
  1842. "phpdocumentor/phpdocumentor": "2.*",
  1843. "phploc/phploc": "^4.0",
  1844. "phpmd/phpmd": "2.*",
  1845. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1846. "sebastian/phpcpd": "^4.0",
  1847. "squizlabs/php_codesniffer": "^3.7"
  1848. },
  1849. "type": "library",
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Matrix\\": "classes/src/"
  1853. }
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "MIT"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "Mark Baker",
  1862. "email": "mark@demon-angel.eu"
  1863. }
  1864. ],
  1865. "description": "PHP Class for working with matrices",
  1866. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1867. "keywords": [
  1868. "mathematics",
  1869. "matrix",
  1870. "vector"
  1871. ],
  1872. "support": {
  1873. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1874. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  1875. },
  1876. "time": "2022-12-02T22:17:43+00:00"
  1877. },
  1878. {
  1879. "name": "monolog/monolog",
  1880. "version": "2.9.3",
  1881. "source": {
  1882. "type": "git",
  1883. "url": "https://github.com/Seldaek/monolog.git",
  1884. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215"
  1885. },
  1886. "dist": {
  1887. "type": "zip",
  1888. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a30bfe2e142720dfa990d0a7e573997f5d884215",
  1889. "reference": "a30bfe2e142720dfa990d0a7e573997f5d884215",
  1890. "shasum": ""
  1891. },
  1892. "require": {
  1893. "php": ">=7.2",
  1894. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1895. },
  1896. "provide": {
  1897. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1898. },
  1899. "require-dev": {
  1900. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1901. "doctrine/couchdb": "~1.0@dev",
  1902. "elasticsearch/elasticsearch": "^7 || ^8",
  1903. "ext-json": "*",
  1904. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1905. "guzzlehttp/guzzle": "^7.4",
  1906. "guzzlehttp/psr7": "^2.2",
  1907. "mongodb/mongodb": "^1.8",
  1908. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1909. "phpspec/prophecy": "^1.15",
  1910. "phpstan/phpstan": "^1.10",
  1911. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  1912. "predis/predis": "^1.1 || ^2.0",
  1913. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1914. "ruflin/elastica": "^7",
  1915. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1916. "symfony/mailer": "^5.4 || ^6",
  1917. "symfony/mime": "^5.4 || ^6"
  1918. },
  1919. "suggest": {
  1920. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1921. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1922. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1923. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1924. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1925. "ext-mbstring": "Allow to work properly with unicode symbols",
  1926. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1927. "ext-openssl": "Required to send log messages using SSL",
  1928. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1929. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1930. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1931. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1932. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1933. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1934. },
  1935. "type": "library",
  1936. "extra": {
  1937. "branch-alias": {
  1938. "dev-main": "2.x-dev"
  1939. }
  1940. },
  1941. "autoload": {
  1942. "psr-4": {
  1943. "Monolog\\": "src/Monolog"
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Jordi Boggiano",
  1953. "email": "j.boggiano@seld.be",
  1954. "homepage": "https://seld.be"
  1955. }
  1956. ],
  1957. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1958. "homepage": "https://github.com/Seldaek/monolog",
  1959. "keywords": [
  1960. "log",
  1961. "logging",
  1962. "psr-3"
  1963. ],
  1964. "support": {
  1965. "issues": "https://github.com/Seldaek/monolog/issues",
  1966. "source": "https://github.com/Seldaek/monolog/tree/2.9.3"
  1967. },
  1968. "funding": [
  1969. {
  1970. "url": "https://github.com/Seldaek",
  1971. "type": "github"
  1972. },
  1973. {
  1974. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1975. "type": "tidelift"
  1976. }
  1977. ],
  1978. "time": "2024-04-12T20:52:51+00:00"
  1979. },
  1980. {
  1981. "name": "myclabs/php-enum",
  1982. "version": "1.8.4",
  1983. "source": {
  1984. "type": "git",
  1985. "url": "https://github.com/myclabs/php-enum.git",
  1986. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  1987. },
  1988. "dist": {
  1989. "type": "zip",
  1990. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  1991. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  1992. "shasum": ""
  1993. },
  1994. "require": {
  1995. "ext-json": "*",
  1996. "php": "^7.3 || ^8.0"
  1997. },
  1998. "require-dev": {
  1999. "phpunit/phpunit": "^9.5",
  2000. "squizlabs/php_codesniffer": "1.*",
  2001. "vimeo/psalm": "^4.6.2"
  2002. },
  2003. "type": "library",
  2004. "autoload": {
  2005. "psr-4": {
  2006. "MyCLabs\\Enum\\": "src/"
  2007. },
  2008. "classmap": [
  2009. "stubs/Stringable.php"
  2010. ]
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "MIT"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "PHP Enum contributors",
  2019. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2020. }
  2021. ],
  2022. "description": "PHP Enum implementation",
  2023. "homepage": "http://github.com/myclabs/php-enum",
  2024. "keywords": [
  2025. "enum"
  2026. ],
  2027. "support": {
  2028. "issues": "https://github.com/myclabs/php-enum/issues",
  2029. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2030. },
  2031. "funding": [
  2032. {
  2033. "url": "https://github.com/mnapoli",
  2034. "type": "github"
  2035. },
  2036. {
  2037. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2038. "type": "tidelift"
  2039. }
  2040. ],
  2041. "time": "2022-08-04T09:53:51+00:00"
  2042. },
  2043. {
  2044. "name": "overtrue/easy-sms",
  2045. "version": "2.7.1",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/overtrue/easy-sms.git",
  2049. "reference": "d71d32f6631dda4c0da09c2831ff110a1c19873c"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/d71d32f6631dda4c0da09c2831ff110a1c19873c",
  2054. "reference": "d71d32f6631dda4c0da09c2831ff110a1c19873c",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "ext-json": "*",
  2059. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2060. "php": ">=5.6"
  2061. },
  2062. "require-dev": {
  2063. "brainmaestro/composer-git-hooks": "^2.8",
  2064. "jetbrains/phpstorm-attributes": "^1.0",
  2065. "mockery/mockery": "~1.3.3 || ^1.4.2",
  2066. "phpunit/phpunit": "^5.7 || ^7.5 || ^8.5.19 || ^9.5.8"
  2067. },
  2068. "type": "library",
  2069. "extra": {
  2070. "hooks": {
  2071. "pre-commit": [
  2072. "composer check-style",
  2073. "composer psalm",
  2074. "composer test"
  2075. ],
  2076. "pre-push": [
  2077. "composer check-style"
  2078. ]
  2079. }
  2080. },
  2081. "autoload": {
  2082. "psr-4": {
  2083. "Overtrue\\EasySms\\": "src"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "authors": [
  2091. {
  2092. "name": "overtrue",
  2093. "email": "i@overtrue.me"
  2094. }
  2095. ],
  2096. "description": "The easiest way to send short message.",
  2097. "support": {
  2098. "issues": "https://github.com/overtrue/easy-sms/issues",
  2099. "source": "https://github.com/overtrue/easy-sms/tree/2.7.1"
  2100. },
  2101. "funding": [
  2102. {
  2103. "url": "https://github.com/overtrue",
  2104. "type": "github"
  2105. }
  2106. ],
  2107. "time": "2024-04-17T07:10:05+00:00"
  2108. },
  2109. {
  2110. "name": "paypal/rest-api-sdk-php",
  2111. "version": "1.14.0",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/paypal/PayPal-PHP-SDK.git",
  2115. "reference": "72e2f2466975bf128a31e02b15110180f059fc04"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
  2120. "reference": "72e2f2466975bf128a31e02b15110180f059fc04",
  2121. "shasum": ""
  2122. },
  2123. "require": {
  2124. "ext-curl": "*",
  2125. "ext-json": "*",
  2126. "php": ">=5.3.0",
  2127. "psr/log": "^1.0.0"
  2128. },
  2129. "require-dev": {
  2130. "phpunit/phpunit": "^4.8.35"
  2131. },
  2132. "type": "library",
  2133. "autoload": {
  2134. "psr-0": {
  2135. "PayPal": "lib/"
  2136. }
  2137. },
  2138. "notification-url": "https://packagist.org/downloads/",
  2139. "license": [
  2140. "Apache-2.0"
  2141. ],
  2142. "authors": [
  2143. {
  2144. "name": "PayPal",
  2145. "homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
  2146. }
  2147. ],
  2148. "description": "PayPal's PHP SDK for REST APIs",
  2149. "homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
  2150. "keywords": [
  2151. "payments",
  2152. "paypal",
  2153. "rest",
  2154. "sdk"
  2155. ],
  2156. "support": {
  2157. "issues": "https://github.com/paypal/PayPal-PHP-SDK/issues",
  2158. "source": "https://github.com/paypal/PayPal-PHP-SDK/tree/master"
  2159. },
  2160. "abandoned": true,
  2161. "time": "2019-01-04T20:04:25+00:00"
  2162. },
  2163. {
  2164. "name": "phpmailer/phpmailer",
  2165. "version": "v6.9.2",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/PHPMailer/PHPMailer.git",
  2169. "reference": "a7b17b42fa4887c92146243f3d2f4ccb962af17c"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/a7b17b42fa4887c92146243f3d2f4ccb962af17c",
  2174. "reference": "a7b17b42fa4887c92146243f3d2f4ccb962af17c",
  2175. "shasum": ""
  2176. },
  2177. "require": {
  2178. "ext-ctype": "*",
  2179. "ext-filter": "*",
  2180. "ext-hash": "*",
  2181. "php": ">=5.5.0"
  2182. },
  2183. "require-dev": {
  2184. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  2185. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  2186. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  2187. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  2188. "phpcompatibility/php-compatibility": "^9.3.5",
  2189. "roave/security-advisories": "dev-latest",
  2190. "squizlabs/php_codesniffer": "^3.7.2",
  2191. "yoast/phpunit-polyfills": "^1.0.4"
  2192. },
  2193. "suggest": {
  2194. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  2195. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  2196. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  2197. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  2198. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  2199. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  2200. "psr/log": "For optional PSR-3 debug logging",
  2201. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  2202. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  2203. },
  2204. "type": "library",
  2205. "autoload": {
  2206. "psr-4": {
  2207. "PHPMailer\\PHPMailer\\": "src/"
  2208. }
  2209. },
  2210. "notification-url": "https://packagist.org/downloads/",
  2211. "license": [
  2212. "LGPL-2.1-only"
  2213. ],
  2214. "authors": [
  2215. {
  2216. "name": "Marcus Bointon",
  2217. "email": "phpmailer@synchromedia.co.uk"
  2218. },
  2219. {
  2220. "name": "Jim Jagielski",
  2221. "email": "jimjag@gmail.com"
  2222. },
  2223. {
  2224. "name": "Andy Prevost",
  2225. "email": "codeworxtech@users.sourceforge.net"
  2226. },
  2227. {
  2228. "name": "Brent R. Matzelle"
  2229. }
  2230. ],
  2231. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  2232. "support": {
  2233. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  2234. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.2"
  2235. },
  2236. "funding": [
  2237. {
  2238. "url": "https://github.com/Synchro",
  2239. "type": "github"
  2240. }
  2241. ],
  2242. "time": "2024-10-09T10:07:50+00:00"
  2243. },
  2244. {
  2245. "name": "phpoffice/phpspreadsheet",
  2246. "version": "1.29.2",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2250. "reference": "3a5a818d7d3e4b5bd2e56fb9de44dbded6eae07f"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/3a5a818d7d3e4b5bd2e56fb9de44dbded6eae07f",
  2255. "reference": "3a5a818d7d3e4b5bd2e56fb9de44dbded6eae07f",
  2256. "shasum": ""
  2257. },
  2258. "require": {
  2259. "ext-ctype": "*",
  2260. "ext-dom": "*",
  2261. "ext-fileinfo": "*",
  2262. "ext-gd": "*",
  2263. "ext-iconv": "*",
  2264. "ext-libxml": "*",
  2265. "ext-mbstring": "*",
  2266. "ext-simplexml": "*",
  2267. "ext-xml": "*",
  2268. "ext-xmlreader": "*",
  2269. "ext-xmlwriter": "*",
  2270. "ext-zip": "*",
  2271. "ext-zlib": "*",
  2272. "ezyang/htmlpurifier": "^4.15",
  2273. "maennchen/zipstream-php": "^2.1 || ^3.0",
  2274. "markbaker/complex": "^3.0",
  2275. "markbaker/matrix": "^3.0",
  2276. "php": "^7.4 || ^8.0",
  2277. "psr/http-client": "^1.0",
  2278. "psr/http-factory": "^1.0",
  2279. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  2280. },
  2281. "require-dev": {
  2282. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  2283. "dompdf/dompdf": "^1.0 || ^2.0",
  2284. "friendsofphp/php-cs-fixer": "^3.2",
  2285. "mitoteam/jpgraph": "^10.3",
  2286. "mpdf/mpdf": "^8.1.1",
  2287. "phpcompatibility/php-compatibility": "^9.3",
  2288. "phpstan/phpstan": "^1.1",
  2289. "phpstan/phpstan-phpunit": "^1.0",
  2290. "phpunit/phpunit": "^8.5 || ^9.0",
  2291. "squizlabs/php_codesniffer": "^3.7",
  2292. "tecnickcom/tcpdf": "^6.5"
  2293. },
  2294. "suggest": {
  2295. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2296. "ext-intl": "PHP Internationalization Functions",
  2297. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2298. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2299. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2300. },
  2301. "type": "library",
  2302. "autoload": {
  2303. "psr-4": {
  2304. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2305. }
  2306. },
  2307. "notification-url": "https://packagist.org/downloads/",
  2308. "license": [
  2309. "MIT"
  2310. ],
  2311. "authors": [
  2312. {
  2313. "name": "Maarten Balliauw",
  2314. "homepage": "https://blog.maartenballiauw.be"
  2315. },
  2316. {
  2317. "name": "Mark Baker",
  2318. "homepage": "https://markbakeruk.net"
  2319. },
  2320. {
  2321. "name": "Franck Lefevre",
  2322. "homepage": "https://rootslabs.net"
  2323. },
  2324. {
  2325. "name": "Erik Tilt"
  2326. },
  2327. {
  2328. "name": "Adrien Crivelli"
  2329. }
  2330. ],
  2331. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2332. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2333. "keywords": [
  2334. "OpenXML",
  2335. "excel",
  2336. "gnumeric",
  2337. "ods",
  2338. "php",
  2339. "spreadsheet",
  2340. "xls",
  2341. "xlsx"
  2342. ],
  2343. "support": {
  2344. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2345. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.2"
  2346. },
  2347. "time": "2024-09-29T07:04:47+00:00"
  2348. },
  2349. {
  2350. "name": "psr/cache",
  2351. "version": "1.0.1",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/php-fig/cache.git",
  2355. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2360. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": ">=5.3.0"
  2365. },
  2366. "type": "library",
  2367. "extra": {
  2368. "branch-alias": {
  2369. "dev-master": "1.0.x-dev"
  2370. }
  2371. },
  2372. "autoload": {
  2373. "psr-4": {
  2374. "Psr\\Cache\\": "src/"
  2375. }
  2376. },
  2377. "notification-url": "https://packagist.org/downloads/",
  2378. "license": [
  2379. "MIT"
  2380. ],
  2381. "authors": [
  2382. {
  2383. "name": "PHP-FIG",
  2384. "homepage": "http://www.php-fig.org/"
  2385. }
  2386. ],
  2387. "description": "Common interface for caching libraries",
  2388. "keywords": [
  2389. "cache",
  2390. "psr",
  2391. "psr-6"
  2392. ],
  2393. "support": {
  2394. "source": "https://github.com/php-fig/cache/tree/master"
  2395. },
  2396. "time": "2016-08-06T20:24:11+00:00"
  2397. },
  2398. {
  2399. "name": "psr/container",
  2400. "version": "1.1.2",
  2401. "source": {
  2402. "type": "git",
  2403. "url": "https://github.com/php-fig/container.git",
  2404. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2405. },
  2406. "dist": {
  2407. "type": "zip",
  2408. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2409. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2410. "shasum": ""
  2411. },
  2412. "require": {
  2413. "php": ">=7.4.0"
  2414. },
  2415. "type": "library",
  2416. "autoload": {
  2417. "psr-4": {
  2418. "Psr\\Container\\": "src/"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "MIT"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "PHP-FIG",
  2428. "homepage": "https://www.php-fig.org/"
  2429. }
  2430. ],
  2431. "description": "Common Container Interface (PHP FIG PSR-11)",
  2432. "homepage": "https://github.com/php-fig/container",
  2433. "keywords": [
  2434. "PSR-11",
  2435. "container",
  2436. "container-interface",
  2437. "container-interop",
  2438. "psr"
  2439. ],
  2440. "support": {
  2441. "issues": "https://github.com/php-fig/container/issues",
  2442. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2443. },
  2444. "time": "2021-11-05T16:50:12+00:00"
  2445. },
  2446. {
  2447. "name": "psr/http-client",
  2448. "version": "1.0.3",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/php-fig/http-client.git",
  2452. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2457. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "php": "^7.0 || ^8.0",
  2462. "psr/http-message": "^1.0 || ^2.0"
  2463. },
  2464. "type": "library",
  2465. "extra": {
  2466. "branch-alias": {
  2467. "dev-master": "1.0.x-dev"
  2468. }
  2469. },
  2470. "autoload": {
  2471. "psr-4": {
  2472. "Psr\\Http\\Client\\": "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 interface for HTTP clients",
  2486. "homepage": "https://github.com/php-fig/http-client",
  2487. "keywords": [
  2488. "http",
  2489. "http-client",
  2490. "psr",
  2491. "psr-18"
  2492. ],
  2493. "support": {
  2494. "source": "https://github.com/php-fig/http-client"
  2495. },
  2496. "time": "2023-09-23T14:17:50+00:00"
  2497. },
  2498. {
  2499. "name": "psr/http-factory",
  2500. "version": "1.1.0",
  2501. "source": {
  2502. "type": "git",
  2503. "url": "https://github.com/php-fig/http-factory.git",
  2504. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2505. },
  2506. "dist": {
  2507. "type": "zip",
  2508. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2509. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2510. "shasum": ""
  2511. },
  2512. "require": {
  2513. "php": ">=7.1",
  2514. "psr/http-message": "^1.0 || ^2.0"
  2515. },
  2516. "type": "library",
  2517. "extra": {
  2518. "branch-alias": {
  2519. "dev-master": "1.0.x-dev"
  2520. }
  2521. },
  2522. "autoload": {
  2523. "psr-4": {
  2524. "Psr\\Http\\Message\\": "src/"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "PHP-FIG",
  2534. "homepage": "https://www.php-fig.org/"
  2535. }
  2536. ],
  2537. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2538. "keywords": [
  2539. "factory",
  2540. "http",
  2541. "message",
  2542. "psr",
  2543. "psr-17",
  2544. "psr-7",
  2545. "request",
  2546. "response"
  2547. ],
  2548. "support": {
  2549. "source": "https://github.com/php-fig/http-factory"
  2550. },
  2551. "time": "2024-04-15T12:06:14+00:00"
  2552. },
  2553. {
  2554. "name": "psr/http-message",
  2555. "version": "1.1",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/php-fig/http-message.git",
  2559. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2564. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "php": "^7.2 || ^8.0"
  2569. },
  2570. "type": "library",
  2571. "extra": {
  2572. "branch-alias": {
  2573. "dev-master": "1.1.x-dev"
  2574. }
  2575. },
  2576. "autoload": {
  2577. "psr-4": {
  2578. "Psr\\Http\\Message\\": "src/"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "MIT"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "PHP-FIG",
  2588. "homepage": "http://www.php-fig.org/"
  2589. }
  2590. ],
  2591. "description": "Common interface for HTTP messages",
  2592. "homepage": "https://github.com/php-fig/http-message",
  2593. "keywords": [
  2594. "http",
  2595. "http-message",
  2596. "psr",
  2597. "psr-7",
  2598. "request",
  2599. "response"
  2600. ],
  2601. "support": {
  2602. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2603. },
  2604. "time": "2023-04-04T09:50:52+00:00"
  2605. },
  2606. {
  2607. "name": "psr/log",
  2608. "version": "1.1.4",
  2609. "source": {
  2610. "type": "git",
  2611. "url": "https://github.com/php-fig/log.git",
  2612. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2613. },
  2614. "dist": {
  2615. "type": "zip",
  2616. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2617. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2618. "shasum": ""
  2619. },
  2620. "require": {
  2621. "php": ">=5.3.0"
  2622. },
  2623. "type": "library",
  2624. "extra": {
  2625. "branch-alias": {
  2626. "dev-master": "1.1.x-dev"
  2627. }
  2628. },
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Psr\\Log\\": "Psr/Log/"
  2632. }
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "MIT"
  2637. ],
  2638. "authors": [
  2639. {
  2640. "name": "PHP-FIG",
  2641. "homepage": "https://www.php-fig.org/"
  2642. }
  2643. ],
  2644. "description": "Common interface for logging libraries",
  2645. "homepage": "https://github.com/php-fig/log",
  2646. "keywords": [
  2647. "log",
  2648. "psr",
  2649. "psr-3"
  2650. ],
  2651. "support": {
  2652. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2653. },
  2654. "time": "2021-05-03T11:20:27+00:00"
  2655. },
  2656. {
  2657. "name": "psr/simple-cache",
  2658. "version": "1.0.1",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/php-fig/simple-cache.git",
  2662. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2667. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2668. "shasum": ""
  2669. },
  2670. "require": {
  2671. "php": ">=5.3.0"
  2672. },
  2673. "type": "library",
  2674. "extra": {
  2675. "branch-alias": {
  2676. "dev-master": "1.0.x-dev"
  2677. }
  2678. },
  2679. "autoload": {
  2680. "psr-4": {
  2681. "Psr\\SimpleCache\\": "src/"
  2682. }
  2683. },
  2684. "notification-url": "https://packagist.org/downloads/",
  2685. "license": [
  2686. "MIT"
  2687. ],
  2688. "authors": [
  2689. {
  2690. "name": "PHP-FIG",
  2691. "homepage": "http://www.php-fig.org/"
  2692. }
  2693. ],
  2694. "description": "Common interfaces for simple caching",
  2695. "keywords": [
  2696. "cache",
  2697. "caching",
  2698. "psr",
  2699. "psr-16",
  2700. "simple-cache"
  2701. ],
  2702. "support": {
  2703. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2704. },
  2705. "time": "2017-10-23T01:57:42+00:00"
  2706. },
  2707. {
  2708. "name": "qcloud/cos-sdk-v5",
  2709. "version": "v2.6.14",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2713. "reference": "f59af74e7a45de259786e378e6b45cc61039caa3"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/f59af74e7a45de259786e378e6b45cc61039caa3",
  2718. "reference": "f59af74e7a45de259786e378e6b45cc61039caa3",
  2719. "shasum": ""
  2720. },
  2721. "require": {
  2722. "ext-curl": "*",
  2723. "ext-json": "*",
  2724. "ext-libxml": "*",
  2725. "ext-mbstring": "*",
  2726. "ext-simplexml": "*",
  2727. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  2728. "guzzlehttp/guzzle-services": "^1.1",
  2729. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  2730. "php": ">=5.6"
  2731. },
  2732. "type": "library",
  2733. "extra": {
  2734. "branch-alias": {
  2735. "dev-master": "2.4-dev"
  2736. }
  2737. },
  2738. "autoload": {
  2739. "files": [
  2740. "src/Common.php"
  2741. ],
  2742. "psr-4": {
  2743. "Qcloud\\Cos\\": "src/"
  2744. }
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "MIT"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "yaozongyou",
  2753. "email": "yaozongyou@vip.qq.com"
  2754. },
  2755. {
  2756. "name": "lewzylu",
  2757. "email": "327874225@qq.com"
  2758. },
  2759. {
  2760. "name": "tuunalai",
  2761. "email": "550566181@qq.com"
  2762. }
  2763. ],
  2764. "description": "PHP SDK for QCloud COS",
  2765. "keywords": [
  2766. "cos",
  2767. "php",
  2768. "qcloud"
  2769. ],
  2770. "support": {
  2771. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  2772. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.6.14"
  2773. },
  2774. "time": "2024-07-29T14:10:31+00:00"
  2775. },
  2776. {
  2777. "name": "qiniu/php-sdk",
  2778. "version": "v7.13.0",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/qiniu/php-sdk.git",
  2782. "reference": "a9b6716ca6f31c9ac9d2c732a38a638caa2828d9"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/a9b6716ca6f31c9ac9d2c732a38a638caa2828d9",
  2787. "reference": "a9b6716ca6f31c9ac9d2c732a38a638caa2828d9",
  2788. "shasum": ""
  2789. },
  2790. "require": {
  2791. "ext-curl": "*",
  2792. "ext-xml": "*",
  2793. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  2794. "php": ">=5.3.3"
  2795. },
  2796. "require-dev": {
  2797. "paragonie/random_compat": ">=2",
  2798. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  2799. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  2800. },
  2801. "type": "library",
  2802. "autoload": {
  2803. "files": [
  2804. "src/Qiniu/functions.php",
  2805. "src/Qiniu/Http/Middleware/Middleware.php"
  2806. ],
  2807. "psr-4": {
  2808. "Qiniu\\": "src/Qiniu"
  2809. }
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Qiniu",
  2818. "email": "sdk@qiniu.com",
  2819. "homepage": "http://www.qiniu.com"
  2820. }
  2821. ],
  2822. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2823. "homepage": "http://developer.qiniu.com/",
  2824. "keywords": [
  2825. "cloud",
  2826. "qiniu",
  2827. "sdk",
  2828. "storage"
  2829. ],
  2830. "support": {
  2831. "issues": "https://github.com/qiniu/php-sdk/issues",
  2832. "source": "https://github.com/qiniu/php-sdk/tree/v7.13.0"
  2833. },
  2834. "time": "2024-09-20T14:00:46+00:00"
  2835. },
  2836. {
  2837. "name": "ralouphie/getallheaders",
  2838. "version": "3.0.3",
  2839. "source": {
  2840. "type": "git",
  2841. "url": "https://github.com/ralouphie/getallheaders.git",
  2842. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2843. },
  2844. "dist": {
  2845. "type": "zip",
  2846. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2847. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2848. "shasum": ""
  2849. },
  2850. "require": {
  2851. "php": ">=5.6"
  2852. },
  2853. "require-dev": {
  2854. "php-coveralls/php-coveralls": "^2.1",
  2855. "phpunit/phpunit": "^5 || ^6.5"
  2856. },
  2857. "type": "library",
  2858. "autoload": {
  2859. "files": [
  2860. "src/getallheaders.php"
  2861. ]
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "Ralph Khattar",
  2870. "email": "ralph.khattar@gmail.com"
  2871. }
  2872. ],
  2873. "description": "A polyfill for getallheaders.",
  2874. "support": {
  2875. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2876. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2877. },
  2878. "time": "2019-03-08T08:55:37+00:00"
  2879. },
  2880. {
  2881. "name": "ramsey/collection",
  2882. "version": "1.3.0",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/ramsey/collection.git",
  2886. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2891. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  2892. "shasum": ""
  2893. },
  2894. "require": {
  2895. "php": "^7.4 || ^8.0",
  2896. "symfony/polyfill-php81": "^1.23"
  2897. },
  2898. "require-dev": {
  2899. "captainhook/plugin-composer": "^5.3",
  2900. "ergebnis/composer-normalize": "^2.28.3",
  2901. "fakerphp/faker": "^1.21",
  2902. "hamcrest/hamcrest-php": "^2.0",
  2903. "jangregor/phpstan-prophecy": "^1.0",
  2904. "mockery/mockery": "^1.5",
  2905. "php-parallel-lint/php-console-highlighter": "^1.0",
  2906. "php-parallel-lint/php-parallel-lint": "^1.3",
  2907. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2908. "phpspec/prophecy-phpunit": "^2.0",
  2909. "phpstan/extension-installer": "^1.2",
  2910. "phpstan/phpstan": "^1.9",
  2911. "phpstan/phpstan-mockery": "^1.1",
  2912. "phpstan/phpstan-phpunit": "^1.3",
  2913. "phpunit/phpunit": "^9.5",
  2914. "psalm/plugin-mockery": "^1.1",
  2915. "psalm/plugin-phpunit": "^0.18.4",
  2916. "ramsey/coding-standard": "^2.0.3",
  2917. "ramsey/conventional-commits": "^1.3",
  2918. "vimeo/psalm": "^5.4"
  2919. },
  2920. "type": "library",
  2921. "extra": {
  2922. "captainhook": {
  2923. "force-install": true
  2924. },
  2925. "ramsey/conventional-commits": {
  2926. "configFile": "conventional-commits.json"
  2927. }
  2928. },
  2929. "autoload": {
  2930. "psr-4": {
  2931. "Ramsey\\Collection\\": "src/"
  2932. }
  2933. },
  2934. "notification-url": "https://packagist.org/downloads/",
  2935. "license": [
  2936. "MIT"
  2937. ],
  2938. "authors": [
  2939. {
  2940. "name": "Ben Ramsey",
  2941. "email": "ben@benramsey.com",
  2942. "homepage": "https://benramsey.com"
  2943. }
  2944. ],
  2945. "description": "A PHP library for representing and manipulating collections.",
  2946. "keywords": [
  2947. "array",
  2948. "collection",
  2949. "hash",
  2950. "map",
  2951. "queue",
  2952. "set"
  2953. ],
  2954. "support": {
  2955. "issues": "https://github.com/ramsey/collection/issues",
  2956. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  2957. },
  2958. "funding": [
  2959. {
  2960. "url": "https://github.com/ramsey",
  2961. "type": "github"
  2962. },
  2963. {
  2964. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2965. "type": "tidelift"
  2966. }
  2967. ],
  2968. "time": "2022-12-27T19:12:24+00:00"
  2969. },
  2970. {
  2971. "name": "ramsey/uuid",
  2972. "version": "4.2.3",
  2973. "source": {
  2974. "type": "git",
  2975. "url": "https://github.com/ramsey/uuid.git",
  2976. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2977. },
  2978. "dist": {
  2979. "type": "zip",
  2980. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2981. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2982. "shasum": ""
  2983. },
  2984. "require": {
  2985. "brick/math": "^0.8 || ^0.9",
  2986. "ext-json": "*",
  2987. "php": "^7.2 || ^8.0",
  2988. "ramsey/collection": "^1.0",
  2989. "symfony/polyfill-ctype": "^1.8",
  2990. "symfony/polyfill-php80": "^1.14"
  2991. },
  2992. "replace": {
  2993. "rhumsaa/uuid": "self.version"
  2994. },
  2995. "require-dev": {
  2996. "captainhook/captainhook": "^5.10",
  2997. "captainhook/plugin-composer": "^5.3",
  2998. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2999. "doctrine/annotations": "^1.8",
  3000. "ergebnis/composer-normalize": "^2.15",
  3001. "mockery/mockery": "^1.3",
  3002. "moontoast/math": "^1.1",
  3003. "paragonie/random-lib": "^2",
  3004. "php-mock/php-mock": "^2.2",
  3005. "php-mock/php-mock-mockery": "^1.3",
  3006. "php-parallel-lint/php-parallel-lint": "^1.1",
  3007. "phpbench/phpbench": "^1.0",
  3008. "phpstan/extension-installer": "^1.0",
  3009. "phpstan/phpstan": "^0.12",
  3010. "phpstan/phpstan-mockery": "^0.12",
  3011. "phpstan/phpstan-phpunit": "^0.12",
  3012. "phpunit/phpunit": "^8.5 || ^9",
  3013. "slevomat/coding-standard": "^7.0",
  3014. "squizlabs/php_codesniffer": "^3.5",
  3015. "vimeo/psalm": "^4.9"
  3016. },
  3017. "suggest": {
  3018. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3019. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3020. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3021. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3022. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3023. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3024. },
  3025. "type": "library",
  3026. "extra": {
  3027. "branch-alias": {
  3028. "dev-main": "4.x-dev"
  3029. },
  3030. "captainhook": {
  3031. "force-install": true
  3032. }
  3033. },
  3034. "autoload": {
  3035. "files": [
  3036. "src/functions.php"
  3037. ],
  3038. "psr-4": {
  3039. "Ramsey\\Uuid\\": "src/"
  3040. }
  3041. },
  3042. "notification-url": "https://packagist.org/downloads/",
  3043. "license": [
  3044. "MIT"
  3045. ],
  3046. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3047. "keywords": [
  3048. "guid",
  3049. "identifier",
  3050. "uuid"
  3051. ],
  3052. "support": {
  3053. "issues": "https://github.com/ramsey/uuid/issues",
  3054. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  3055. },
  3056. "funding": [
  3057. {
  3058. "url": "https://github.com/ramsey",
  3059. "type": "github"
  3060. },
  3061. {
  3062. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3063. "type": "tidelift"
  3064. }
  3065. ],
  3066. "time": "2021-09-25T23:10:38+00:00"
  3067. },
  3068. {
  3069. "name": "rize/uri-template",
  3070. "version": "0.3.8",
  3071. "source": {
  3072. "type": "git",
  3073. "url": "https://github.com/rize/UriTemplate.git",
  3074. "reference": "34a5b96d0b65a5dddb7d20f09b6527a43faede24"
  3075. },
  3076. "dist": {
  3077. "type": "zip",
  3078. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/34a5b96d0b65a5dddb7d20f09b6527a43faede24",
  3079. "reference": "34a5b96d0b65a5dddb7d20f09b6527a43faede24",
  3080. "shasum": ""
  3081. },
  3082. "require": {
  3083. "php": ">=5.3.0"
  3084. },
  3085. "require-dev": {
  3086. "phpunit/phpunit": "~4.8.36"
  3087. },
  3088. "type": "library",
  3089. "autoload": {
  3090. "psr-4": {
  3091. "Rize\\": "src/Rize"
  3092. }
  3093. },
  3094. "notification-url": "https://packagist.org/downloads/",
  3095. "license": [
  3096. "MIT"
  3097. ],
  3098. "authors": [
  3099. {
  3100. "name": "Marut K",
  3101. "homepage": "http://twitter.com/rezigned"
  3102. }
  3103. ],
  3104. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  3105. "keywords": [
  3106. "RFC 6570",
  3107. "template",
  3108. "uri"
  3109. ],
  3110. "support": {
  3111. "issues": "https://github.com/rize/UriTemplate/issues",
  3112. "source": "https://github.com/rize/UriTemplate/tree/0.3.8"
  3113. },
  3114. "funding": [
  3115. {
  3116. "url": "https://www.paypal.me/rezigned",
  3117. "type": "custom"
  3118. },
  3119. {
  3120. "url": "https://github.com/rezigned",
  3121. "type": "github"
  3122. },
  3123. {
  3124. "url": "https://opencollective.com/rize-uri-template",
  3125. "type": "open_collective"
  3126. }
  3127. ],
  3128. "time": "2024-08-30T07:09:40+00:00"
  3129. },
  3130. {
  3131. "name": "symfony/deprecation-contracts",
  3132. "version": "v2.5.3",
  3133. "source": {
  3134. "type": "git",
  3135. "url": "https://github.com/symfony/deprecation-contracts.git",
  3136. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  3137. },
  3138. "dist": {
  3139. "type": "zip",
  3140. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  3141. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  3142. "shasum": ""
  3143. },
  3144. "require": {
  3145. "php": ">=7.1"
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-main": "2.5-dev"
  3151. },
  3152. "thanks": {
  3153. "name": "symfony/contracts",
  3154. "url": "https://github.com/symfony/contracts"
  3155. }
  3156. },
  3157. "autoload": {
  3158. "files": [
  3159. "function.php"
  3160. ]
  3161. },
  3162. "notification-url": "https://packagist.org/downloads/",
  3163. "license": [
  3164. "MIT"
  3165. ],
  3166. "authors": [
  3167. {
  3168. "name": "Nicolas Grekas",
  3169. "email": "p@tchwork.com"
  3170. },
  3171. {
  3172. "name": "Symfony Community",
  3173. "homepage": "https://symfony.com/contributors"
  3174. }
  3175. ],
  3176. "description": "A generic function and convention to trigger deprecation notices",
  3177. "homepage": "https://symfony.com",
  3178. "support": {
  3179. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  3180. },
  3181. "funding": [
  3182. {
  3183. "url": "https://symfony.com/sponsor",
  3184. "type": "custom"
  3185. },
  3186. {
  3187. "url": "https://github.com/fabpot",
  3188. "type": "github"
  3189. },
  3190. {
  3191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3192. "type": "tidelift"
  3193. }
  3194. ],
  3195. "time": "2023-01-24T14:02:46+00:00"
  3196. },
  3197. {
  3198. "name": "symfony/polyfill-ctype",
  3199. "version": "v1.31.0",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/symfony/polyfill-ctype.git",
  3203. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  3208. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  3209. "shasum": ""
  3210. },
  3211. "require": {
  3212. "php": ">=7.2"
  3213. },
  3214. "provide": {
  3215. "ext-ctype": "*"
  3216. },
  3217. "suggest": {
  3218. "ext-ctype": "For best performance"
  3219. },
  3220. "type": "library",
  3221. "extra": {
  3222. "thanks": {
  3223. "name": "symfony/polyfill",
  3224. "url": "https://github.com/symfony/polyfill"
  3225. }
  3226. },
  3227. "autoload": {
  3228. "files": [
  3229. "bootstrap.php"
  3230. ],
  3231. "psr-4": {
  3232. "Symfony\\Polyfill\\Ctype\\": ""
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "MIT"
  3238. ],
  3239. "authors": [
  3240. {
  3241. "name": "Gert de Pagter",
  3242. "email": "BackEndTea@gmail.com"
  3243. },
  3244. {
  3245. "name": "Symfony Community",
  3246. "homepage": "https://symfony.com/contributors"
  3247. }
  3248. ],
  3249. "description": "Symfony polyfill for ctype functions",
  3250. "homepage": "https://symfony.com",
  3251. "keywords": [
  3252. "compatibility",
  3253. "ctype",
  3254. "polyfill",
  3255. "portable"
  3256. ],
  3257. "support": {
  3258. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  3259. },
  3260. "funding": [
  3261. {
  3262. "url": "https://symfony.com/sponsor",
  3263. "type": "custom"
  3264. },
  3265. {
  3266. "url": "https://github.com/fabpot",
  3267. "type": "github"
  3268. },
  3269. {
  3270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3271. "type": "tidelift"
  3272. }
  3273. ],
  3274. "time": "2024-09-09T11:45:10+00:00"
  3275. },
  3276. {
  3277. "name": "symfony/polyfill-mbstring",
  3278. "version": "v1.31.0",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3282. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  3287. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "php": ">=7.2"
  3292. },
  3293. "provide": {
  3294. "ext-mbstring": "*"
  3295. },
  3296. "suggest": {
  3297. "ext-mbstring": "For best performance"
  3298. },
  3299. "type": "library",
  3300. "extra": {
  3301. "thanks": {
  3302. "name": "symfony/polyfill",
  3303. "url": "https://github.com/symfony/polyfill"
  3304. }
  3305. },
  3306. "autoload": {
  3307. "files": [
  3308. "bootstrap.php"
  3309. ],
  3310. "psr-4": {
  3311. "Symfony\\Polyfill\\Mbstring\\": ""
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "Nicolas Grekas",
  3321. "email": "p@tchwork.com"
  3322. },
  3323. {
  3324. "name": "Symfony Community",
  3325. "homepage": "https://symfony.com/contributors"
  3326. }
  3327. ],
  3328. "description": "Symfony polyfill for the Mbstring extension",
  3329. "homepage": "https://symfony.com",
  3330. "keywords": [
  3331. "compatibility",
  3332. "mbstring",
  3333. "polyfill",
  3334. "portable",
  3335. "shim"
  3336. ],
  3337. "support": {
  3338. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  3339. },
  3340. "funding": [
  3341. {
  3342. "url": "https://symfony.com/sponsor",
  3343. "type": "custom"
  3344. },
  3345. {
  3346. "url": "https://github.com/fabpot",
  3347. "type": "github"
  3348. },
  3349. {
  3350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3351. "type": "tidelift"
  3352. }
  3353. ],
  3354. "time": "2024-09-09T11:45:10+00:00"
  3355. },
  3356. {
  3357. "name": "symfony/polyfill-php80",
  3358. "version": "v1.31.0",
  3359. "source": {
  3360. "type": "git",
  3361. "url": "https://github.com/symfony/polyfill-php80.git",
  3362. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  3363. },
  3364. "dist": {
  3365. "type": "zip",
  3366. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  3367. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  3368. "shasum": ""
  3369. },
  3370. "require": {
  3371. "php": ">=7.2"
  3372. },
  3373. "type": "library",
  3374. "extra": {
  3375. "thanks": {
  3376. "name": "symfony/polyfill",
  3377. "url": "https://github.com/symfony/polyfill"
  3378. }
  3379. },
  3380. "autoload": {
  3381. "files": [
  3382. "bootstrap.php"
  3383. ],
  3384. "psr-4": {
  3385. "Symfony\\Polyfill\\Php80\\": ""
  3386. },
  3387. "classmap": [
  3388. "Resources/stubs"
  3389. ]
  3390. },
  3391. "notification-url": "https://packagist.org/downloads/",
  3392. "license": [
  3393. "MIT"
  3394. ],
  3395. "authors": [
  3396. {
  3397. "name": "Ion Bazan",
  3398. "email": "ion.bazan@gmail.com"
  3399. },
  3400. {
  3401. "name": "Nicolas Grekas",
  3402. "email": "p@tchwork.com"
  3403. },
  3404. {
  3405. "name": "Symfony Community",
  3406. "homepage": "https://symfony.com/contributors"
  3407. }
  3408. ],
  3409. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3410. "homepage": "https://symfony.com",
  3411. "keywords": [
  3412. "compatibility",
  3413. "polyfill",
  3414. "portable",
  3415. "shim"
  3416. ],
  3417. "support": {
  3418. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  3419. },
  3420. "funding": [
  3421. {
  3422. "url": "https://symfony.com/sponsor",
  3423. "type": "custom"
  3424. },
  3425. {
  3426. "url": "https://github.com/fabpot",
  3427. "type": "github"
  3428. },
  3429. {
  3430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3431. "type": "tidelift"
  3432. }
  3433. ],
  3434. "time": "2024-09-09T11:45:10+00:00"
  3435. },
  3436. {
  3437. "name": "symfony/polyfill-php81",
  3438. "version": "v1.31.0",
  3439. "source": {
  3440. "type": "git",
  3441. "url": "https://github.com/symfony/polyfill-php81.git",
  3442. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  3443. },
  3444. "dist": {
  3445. "type": "zip",
  3446. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  3447. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  3448. "shasum": ""
  3449. },
  3450. "require": {
  3451. "php": ">=7.2"
  3452. },
  3453. "type": "library",
  3454. "extra": {
  3455. "thanks": {
  3456. "name": "symfony/polyfill",
  3457. "url": "https://github.com/symfony/polyfill"
  3458. }
  3459. },
  3460. "autoload": {
  3461. "files": [
  3462. "bootstrap.php"
  3463. ],
  3464. "psr-4": {
  3465. "Symfony\\Polyfill\\Php81\\": ""
  3466. },
  3467. "classmap": [
  3468. "Resources/stubs"
  3469. ]
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "Nicolas Grekas",
  3478. "email": "p@tchwork.com"
  3479. },
  3480. {
  3481. "name": "Symfony Community",
  3482. "homepage": "https://symfony.com/contributors"
  3483. }
  3484. ],
  3485. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  3486. "homepage": "https://symfony.com",
  3487. "keywords": [
  3488. "compatibility",
  3489. "polyfill",
  3490. "portable",
  3491. "shim"
  3492. ],
  3493. "support": {
  3494. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  3495. },
  3496. "funding": [
  3497. {
  3498. "url": "https://symfony.com/sponsor",
  3499. "type": "custom"
  3500. },
  3501. {
  3502. "url": "https://github.com/fabpot",
  3503. "type": "github"
  3504. },
  3505. {
  3506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3507. "type": "tidelift"
  3508. }
  3509. ],
  3510. "time": "2024-09-09T11:45:10+00:00"
  3511. },
  3512. {
  3513. "name": "topthink/framework",
  3514. "version": "v6.1.5",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/top-think/framework.git",
  3518. "reference": "57d1950a1844ef8d3098ea290032aeb92e2e32c3"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/top-think/framework/zipball/57d1950a1844ef8d3098ea290032aeb92e2e32c3",
  3523. "reference": "57d1950a1844ef8d3098ea290032aeb92e2e32c3",
  3524. "shasum": ""
  3525. },
  3526. "require": {
  3527. "ext-json": "*",
  3528. "ext-mbstring": "*",
  3529. "php": ">=7.2.5",
  3530. "psr/container": "~1.0",
  3531. "psr/http-message": "^1.0",
  3532. "psr/log": "~1.0",
  3533. "psr/simple-cache": "^1.0",
  3534. "topthink/think-helper": "^3.1.1",
  3535. "topthink/think-orm": "^2.0|^3.0"
  3536. },
  3537. "require-dev": {
  3538. "guzzlehttp/psr7": "^2.1.0",
  3539. "mikey179/vfsstream": "^1.6",
  3540. "mockery/mockery": "^1.2",
  3541. "phpunit/phpunit": "^7.0"
  3542. },
  3543. "type": "library",
  3544. "autoload": {
  3545. "files": [],
  3546. "psr-4": {
  3547. "think\\": "src/think/"
  3548. }
  3549. },
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "Apache-2.0"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "liu21st",
  3557. "email": "liu21st@gmail.com"
  3558. },
  3559. {
  3560. "name": "yunwuxin",
  3561. "email": "448901948@qq.com"
  3562. }
  3563. ],
  3564. "description": "The ThinkPHP Framework.",
  3565. "homepage": "http://thinkphp.cn/",
  3566. "keywords": [
  3567. "framework",
  3568. "orm",
  3569. "thinkphp"
  3570. ],
  3571. "support": {
  3572. "issues": "https://github.com/top-think/framework/issues",
  3573. "source": "https://github.com/top-think/framework/tree/v6.1.5"
  3574. },
  3575. "time": "2024-04-16T02:01:19+00:00"
  3576. },
  3577. {
  3578. "name": "topthink/think-filesystem",
  3579. "version": "v2.0.2",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/top-think/think-filesystem.git",
  3583. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  3588. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  3589. "shasum": ""
  3590. },
  3591. "require": {
  3592. "league/flysystem": "^2.0",
  3593. "topthink/framework": "^6.1|^8.0"
  3594. },
  3595. "require-dev": {
  3596. "mikey179/vfsstream": "^1.6",
  3597. "mockery/mockery": "^1.2",
  3598. "phpunit/phpunit": "^8.0"
  3599. },
  3600. "type": "library",
  3601. "autoload": {
  3602. "psr-4": {
  3603. "think\\": "src"
  3604. }
  3605. },
  3606. "notification-url": "https://packagist.org/downloads/",
  3607. "license": [
  3608. "Apache-2.0"
  3609. ],
  3610. "authors": [
  3611. {
  3612. "name": "yunwuxin",
  3613. "email": "448901948@qq.com"
  3614. }
  3615. ],
  3616. "description": "The ThinkPHP6.1 Filesystem Package",
  3617. "support": {
  3618. "issues": "https://github.com/top-think/think-filesystem/issues",
  3619. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.2"
  3620. },
  3621. "time": "2023-02-08T01:23:42+00:00"
  3622. },
  3623. {
  3624. "name": "topthink/think-helper",
  3625. "version": "v3.1.8",
  3626. "source": {
  3627. "type": "git",
  3628. "url": "https://github.com/top-think/think-helper.git",
  3629. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5"
  3630. },
  3631. "dist": {
  3632. "type": "zip",
  3633. "url": "https://api.github.com/repos/top-think/think-helper/zipball/612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  3634. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  3635. "shasum": ""
  3636. },
  3637. "require": {
  3638. "php": ">=7.1.0"
  3639. },
  3640. "require-dev": {
  3641. "phpunit/phpunit": "^9.5"
  3642. },
  3643. "type": "library",
  3644. "autoload": {
  3645. "files": [
  3646. "src/helper.php"
  3647. ],
  3648. "psr-4": {
  3649. "think\\": "src"
  3650. }
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "Apache-2.0"
  3655. ],
  3656. "authors": [
  3657. {
  3658. "name": "yunwuxin",
  3659. "email": "448901948@qq.com"
  3660. }
  3661. ],
  3662. "description": "The ThinkPHP6 Helper Package",
  3663. "support": {
  3664. "issues": "https://github.com/top-think/think-helper/issues",
  3665. "source": "https://github.com/top-think/think-helper/tree/v3.1.8"
  3666. },
  3667. "time": "2024-08-26T15:07:58+00:00"
  3668. },
  3669. {
  3670. "name": "topthink/think-multi-app",
  3671. "version": "v1.0.17",
  3672. "source": {
  3673. "type": "git",
  3674. "url": "https://github.com/top-think/think-multi-app.git",
  3675. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c"
  3676. },
  3677. "dist": {
  3678. "type": "zip",
  3679. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  3680. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  3681. "shasum": ""
  3682. },
  3683. "require": {
  3684. "php": ">=7.1.0",
  3685. "topthink/framework": "^6.0|^8.0"
  3686. },
  3687. "type": "library",
  3688. "extra": {
  3689. "think": {
  3690. "services": [
  3691. "think\\app\\Service"
  3692. ]
  3693. }
  3694. },
  3695. "autoload": {
  3696. "psr-4": {
  3697. "think\\app\\": "src"
  3698. }
  3699. },
  3700. "notification-url": "https://packagist.org/downloads/",
  3701. "license": [
  3702. "Apache-2.0"
  3703. ],
  3704. "authors": [
  3705. {
  3706. "name": "liu21st",
  3707. "email": "liu21st@gmail.com"
  3708. }
  3709. ],
  3710. "description": "thinkphp multi app support",
  3711. "support": {
  3712. "issues": "https://github.com/top-think/think-multi-app/issues",
  3713. "source": "https://github.com/top-think/think-multi-app/tree/v1.0.17"
  3714. },
  3715. "time": "2023-03-29T02:04:29+00:00"
  3716. },
  3717. {
  3718. "name": "topthink/think-orm",
  3719. "version": "v2.0.61",
  3720. "source": {
  3721. "type": "git",
  3722. "url": "https://github.com/top-think/think-orm.git",
  3723. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6"
  3724. },
  3725. "dist": {
  3726. "type": "zip",
  3727. "url": "https://api.github.com/repos/top-think/think-orm/zipball/10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  3728. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  3729. "shasum": ""
  3730. },
  3731. "require": {
  3732. "ext-json": "*",
  3733. "ext-pdo": "*",
  3734. "php": ">=7.1.0",
  3735. "psr/log": "^1.0|^2.0",
  3736. "psr/simple-cache": "^1.0|^2.0",
  3737. "topthink/think-helper": "^3.1"
  3738. },
  3739. "require-dev": {
  3740. "phpunit/phpunit": "^7|^8|^9.5"
  3741. },
  3742. "type": "library",
  3743. "autoload": {
  3744. "files": [
  3745. "stubs/load_stubs.php"
  3746. ],
  3747. "psr-4": {
  3748. "think\\": "src"
  3749. }
  3750. },
  3751. "notification-url": "https://packagist.org/downloads/",
  3752. "license": [
  3753. "Apache-2.0"
  3754. ],
  3755. "authors": [
  3756. {
  3757. "name": "liu21st",
  3758. "email": "liu21st@gmail.com"
  3759. }
  3760. ],
  3761. "description": "think orm",
  3762. "keywords": [
  3763. "database",
  3764. "orm"
  3765. ],
  3766. "support": {
  3767. "issues": "https://github.com/top-think/think-orm/issues",
  3768. "source": "https://github.com/top-think/think-orm/tree/v2.0.61"
  3769. },
  3770. "time": "2023-04-20T14:27:51+00:00"
  3771. },
  3772. {
  3773. "name": "topthink/think-template",
  3774. "version": "v2.0.10",
  3775. "source": {
  3776. "type": "git",
  3777. "url": "https://github.com/top-think/think-template.git",
  3778. "reference": "2b28c9f787c94f6c22312c9fe97dd3d926c03e1c"
  3779. },
  3780. "dist": {
  3781. "type": "zip",
  3782. "url": "https://api.github.com/repos/top-think/think-template/zipball/2b28c9f787c94f6c22312c9fe97dd3d926c03e1c",
  3783. "reference": "2b28c9f787c94f6c22312c9fe97dd3d926c03e1c",
  3784. "shasum": ""
  3785. },
  3786. "require": {
  3787. "php": ">=7.1.0",
  3788. "psr/simple-cache": "^1.0"
  3789. },
  3790. "type": "library",
  3791. "autoload": {
  3792. "psr-4": {
  3793. "think\\": "src"
  3794. }
  3795. },
  3796. "notification-url": "https://packagist.org/downloads/",
  3797. "license": [
  3798. "Apache-2.0"
  3799. ],
  3800. "authors": [
  3801. {
  3802. "name": "liu21st",
  3803. "email": "liu21st@gmail.com"
  3804. }
  3805. ],
  3806. "description": "the php template engine",
  3807. "support": {
  3808. "issues": "https://github.com/top-think/think-template/issues",
  3809. "source": "https://github.com/top-think/think-template/tree/v2.0.10"
  3810. },
  3811. "time": "2024-08-12T05:48:57+00:00"
  3812. },
  3813. {
  3814. "name": "topthink/think-view",
  3815. "version": "v1.0.14",
  3816. "source": {
  3817. "type": "git",
  3818. "url": "https://github.com/top-think/think-view.git",
  3819. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  3820. },
  3821. "dist": {
  3822. "type": "zip",
  3823. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3824. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3825. "shasum": ""
  3826. },
  3827. "require": {
  3828. "php": ">=7.1.0",
  3829. "topthink/think-template": "^2.0"
  3830. },
  3831. "type": "library",
  3832. "autoload": {
  3833. "psr-4": {
  3834. "think\\view\\driver\\": "src"
  3835. }
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "Apache-2.0"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "liu21st",
  3844. "email": "liu21st@gmail.com"
  3845. }
  3846. ],
  3847. "description": "thinkphp template driver",
  3848. "support": {
  3849. "issues": "https://github.com/top-think/think-view/issues",
  3850. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  3851. },
  3852. "time": "2019-11-06T11:40:13+00:00"
  3853. },
  3854. {
  3855. "name": "topthink/think-worker",
  3856. "version": "v3.0.7",
  3857. "source": {
  3858. "type": "git",
  3859. "url": "https://github.com/top-think/think-worker.git",
  3860. "reference": "9ba54333f337ee2c3f06054bb896bba9696d926c"
  3861. },
  3862. "dist": {
  3863. "type": "zip",
  3864. "url": "https://api.github.com/repos/top-think/think-worker/zipball/9ba54333f337ee2c3f06054bb896bba9696d926c",
  3865. "reference": "9ba54333f337ee2c3f06054bb896bba9696d926c",
  3866. "shasum": ""
  3867. },
  3868. "require": {
  3869. "ext-fileinfo": "*",
  3870. "topthink/framework": "^6.0",
  3871. "workerman/gateway-worker": "^3.0.0",
  3872. "workerman/workerman": "^3.5.23"
  3873. },
  3874. "type": "library",
  3875. "extra": {
  3876. "think": {
  3877. "services": [
  3878. "think\\worker\\Service"
  3879. ],
  3880. "config": {
  3881. "worker": "src/config/worker.php",
  3882. "worker_server": "src/config/server.php",
  3883. "gateway_worker": "src/config/gateway.php"
  3884. }
  3885. }
  3886. },
  3887. "autoload": {
  3888. "psr-4": {
  3889. "think\\worker\\": "src"
  3890. }
  3891. },
  3892. "notification-url": "https://packagist.org/downloads/",
  3893. "license": [
  3894. "Apache-2.0"
  3895. ],
  3896. "authors": [
  3897. {
  3898. "name": "liu21st",
  3899. "email": "liu21st@gmail.com"
  3900. }
  3901. ],
  3902. "description": "workerman extend for thinkphp6.0",
  3903. "support": {
  3904. "issues": "https://github.com/top-think/think-worker/issues",
  3905. "source": "https://github.com/top-think/think-worker/tree/v3.0.7"
  3906. },
  3907. "time": "2022-10-26T08:04:08+00:00"
  3908. },
  3909. {
  3910. "name": "workerman/gateway-worker",
  3911. "version": "v3.0.22",
  3912. "source": {
  3913. "type": "git",
  3914. "url": "https://github.com/walkor/GatewayWorker.git",
  3915. "reference": "a615036c482d11f68b693998575e804752ef9068"
  3916. },
  3917. "dist": {
  3918. "type": "zip",
  3919. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/a615036c482d11f68b693998575e804752ef9068",
  3920. "reference": "a615036c482d11f68b693998575e804752ef9068",
  3921. "shasum": ""
  3922. },
  3923. "require": {
  3924. "workerman/workerman": ">=3.5.0"
  3925. },
  3926. "type": "library",
  3927. "autoload": {
  3928. "psr-4": {
  3929. "GatewayWorker\\": "./src"
  3930. }
  3931. },
  3932. "notification-url": "https://packagist.org/downloads/",
  3933. "license": [
  3934. "MIT"
  3935. ],
  3936. "homepage": "http://www.workerman.net",
  3937. "keywords": [
  3938. "communication",
  3939. "distributed"
  3940. ],
  3941. "support": {
  3942. "issues": "https://github.com/walkor/GatewayWorker/issues",
  3943. "source": "https://github.com/walkor/GatewayWorker/tree/v3.0.22"
  3944. },
  3945. "funding": [
  3946. {
  3947. "url": "https://opencollective.com/walkor",
  3948. "type": "open_collective"
  3949. },
  3950. {
  3951. "url": "https://www.patreon.com/walkor",
  3952. "type": "patreon"
  3953. }
  3954. ],
  3955. "time": "2021-12-23T13:13:09+00:00"
  3956. },
  3957. {
  3958. "name": "workerman/workerman",
  3959. "version": "v3.5.35",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://github.com/walkor/workerman.git",
  3963. "reference": "3cc0adae51ba36db38b11e7996c64250d356dbe7"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://api.github.com/repos/walkor/workerman/zipball/3cc0adae51ba36db38b11e7996c64250d356dbe7",
  3968. "reference": "3cc0adae51ba36db38b11e7996c64250d356dbe7",
  3969. "shasum": ""
  3970. },
  3971. "require": {
  3972. "php": "^5.3||^7.0"
  3973. },
  3974. "suggest": {
  3975. "ext-event": "For better performance. "
  3976. },
  3977. "type": "library",
  3978. "autoload": {
  3979. "psr-4": {
  3980. "Workerman\\": "./"
  3981. }
  3982. },
  3983. "notification-url": "https://packagist.org/downloads/",
  3984. "license": [
  3985. "MIT"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "walkor",
  3990. "email": "walkor@workerman.net",
  3991. "homepage": "http://www.workerman.net",
  3992. "role": "Developer"
  3993. }
  3994. ],
  3995. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  3996. "homepage": "http://www.workerman.net",
  3997. "keywords": [
  3998. "asynchronous",
  3999. "event-loop"
  4000. ],
  4001. "support": {
  4002. "email": "walkor@workerman.net",
  4003. "forum": "http://wenda.workerman.net/",
  4004. "issues": "https://github.com/walkor/workerman/issues",
  4005. "source": "https://github.com/walkor/workerman",
  4006. "wiki": "http://doc.workerman.net/"
  4007. },
  4008. "funding": [
  4009. {
  4010. "url": "https://opencollective.com/workerman",
  4011. "type": "open_collective"
  4012. },
  4013. {
  4014. "url": "https://www.patreon.com/walkor",
  4015. "type": "patreon"
  4016. }
  4017. ],
  4018. "time": "2023-09-13T14:30:13+00:00"
  4019. },
  4020. {
  4021. "name": "yiovo/tp6-cache",
  4022. "version": "v1.0.1",
  4023. "source": {
  4024. "type": "git",
  4025. "url": "https://github.com/yiovo/tp6-cache.git",
  4026. "reference": "31e0b5aaa1315ef85d7e68ed189bdb68406becfe"
  4027. },
  4028. "dist": {
  4029. "type": "zip",
  4030. "url": "https://api.github.com/repos/yiovo/tp6-cache/zipball/31e0b5aaa1315ef85d7e68ed189bdb68406becfe",
  4031. "reference": "31e0b5aaa1315ef85d7e68ed189bdb68406becfe",
  4032. "shasum": ""
  4033. },
  4034. "require": {
  4035. "php": ">=7.1.0",
  4036. "topthink/framework": "^6.0.0"
  4037. },
  4038. "type": "library",
  4039. "autoload": {
  4040. "psr-4": {
  4041. "yiovo\\cache\\": "src"
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "Apache-2.0"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "yiovo",
  4051. "email": "developer@yiovo.com"
  4052. }
  4053. ],
  4054. "description": "tp6-cache",
  4055. "homepage": "https://github.com/yiovo/tp6-captcha",
  4056. "support": {
  4057. "issues": "https://github.com/yiovo/tp6-cache/issues",
  4058. "source": "https://github.com/yiovo/tp6-cache/tree/v1.0.1"
  4059. },
  4060. "time": "2021-11-27T18:53:07+00:00"
  4061. },
  4062. {
  4063. "name": "yiovo/tp6-captcha",
  4064. "version": "v1.1.4",
  4065. "source": {
  4066. "type": "git",
  4067. "url": "https://github.com/yiovo/tp6-captcha.git",
  4068. "reference": "ad04954c2c3de274f5bd7549788094ee96e4160e"
  4069. },
  4070. "dist": {
  4071. "type": "zip",
  4072. "url": "https://api.github.com/repos/yiovo/tp6-captcha/zipball/ad04954c2c3de274f5bd7549788094ee96e4160e",
  4073. "reference": "ad04954c2c3de274f5bd7549788094ee96e4160e",
  4074. "shasum": ""
  4075. },
  4076. "require": {
  4077. "ext-gd": "*",
  4078. "ext-mbstring": "*",
  4079. "php": ">=7.1.0",
  4080. "topthink/framework": "^6.0.0",
  4081. "yiovo/tp6-cache": "^1.0"
  4082. },
  4083. "type": "library",
  4084. "extra": {
  4085. "think": {
  4086. "config": {
  4087. "captcha": "src/config.php"
  4088. }
  4089. }
  4090. },
  4091. "autoload": {
  4092. "psr-4": {
  4093. "yiovo\\captcha\\": "src/"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "Apache-2.0"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "yiovo",
  4103. "email": "developer@yiovo.com"
  4104. }
  4105. ],
  4106. "description": "tp6-captcha",
  4107. "homepage": "https://github.com/yiovo/tp6-captcha",
  4108. "support": {
  4109. "source": "https://github.com/yiovo/tp6-captcha/tree/v1.1.4"
  4110. },
  4111. "time": "2022-04-12T14:26:54+00:00"
  4112. }
  4113. ],
  4114. "packages-dev": [
  4115. {
  4116. "name": "symfony/polyfill-php72",
  4117. "version": "v1.31.0",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://github.com/symfony/polyfill-php72.git",
  4121. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  4126. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  4127. "shasum": ""
  4128. },
  4129. "require": {
  4130. "php": ">=7.2"
  4131. },
  4132. "type": "metapackage",
  4133. "extra": {
  4134. "thanks": {
  4135. "name": "symfony/polyfill",
  4136. "url": "https://github.com/symfony/polyfill"
  4137. }
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "Nicolas Grekas",
  4146. "email": "p@tchwork.com"
  4147. },
  4148. {
  4149. "name": "Symfony Community",
  4150. "homepage": "https://symfony.com/contributors"
  4151. }
  4152. ],
  4153. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4154. "homepage": "https://symfony.com",
  4155. "keywords": [
  4156. "compatibility",
  4157. "polyfill",
  4158. "portable",
  4159. "shim"
  4160. ],
  4161. "support": {
  4162. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  4163. },
  4164. "funding": [
  4165. {
  4166. "url": "https://symfony.com/sponsor",
  4167. "type": "custom"
  4168. },
  4169. {
  4170. "url": "https://github.com/fabpot",
  4171. "type": "github"
  4172. },
  4173. {
  4174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4175. "type": "tidelift"
  4176. }
  4177. ],
  4178. "time": "2024-09-09T11:45:10+00:00"
  4179. },
  4180. {
  4181. "name": "symfony/var-dumper",
  4182. "version": "v4.4.47",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/symfony/var-dumper.git",
  4186. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  4191. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  4192. "shasum": ""
  4193. },
  4194. "require": {
  4195. "php": ">=7.1.3",
  4196. "symfony/polyfill-mbstring": "~1.0",
  4197. "symfony/polyfill-php72": "~1.5",
  4198. "symfony/polyfill-php80": "^1.16"
  4199. },
  4200. "conflict": {
  4201. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4202. "symfony/console": "<3.4"
  4203. },
  4204. "require-dev": {
  4205. "ext-iconv": "*",
  4206. "symfony/console": "^3.4|^4.0|^5.0",
  4207. "symfony/process": "^4.4|^5.0",
  4208. "twig/twig": "^1.43|^2.13|^3.0.4"
  4209. },
  4210. "suggest": {
  4211. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4212. "ext-intl": "To show region name in time zone dump",
  4213. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4214. },
  4215. "bin": [
  4216. "Resources/bin/var-dump-server"
  4217. ],
  4218. "type": "library",
  4219. "autoload": {
  4220. "files": [
  4221. "Resources/functions/dump.php"
  4222. ],
  4223. "psr-4": {
  4224. "Symfony\\Component\\VarDumper\\": ""
  4225. },
  4226. "exclude-from-classmap": [
  4227. "/Tests/"
  4228. ]
  4229. },
  4230. "notification-url": "https://packagist.org/downloads/",
  4231. "license": [
  4232. "MIT"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "Nicolas Grekas",
  4237. "email": "p@tchwork.com"
  4238. },
  4239. {
  4240. "name": "Symfony Community",
  4241. "homepage": "https://symfony.com/contributors"
  4242. }
  4243. ],
  4244. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4245. "homepage": "https://symfony.com",
  4246. "keywords": [
  4247. "debug",
  4248. "dump"
  4249. ],
  4250. "support": {
  4251. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  4252. },
  4253. "funding": [
  4254. {
  4255. "url": "https://symfony.com/sponsor",
  4256. "type": "custom"
  4257. },
  4258. {
  4259. "url": "https://github.com/fabpot",
  4260. "type": "github"
  4261. },
  4262. {
  4263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4264. "type": "tidelift"
  4265. }
  4266. ],
  4267. "time": "2022-10-03T15:15:11+00:00"
  4268. },
  4269. {
  4270. "name": "topthink/think-trace",
  4271. "version": "v1.6",
  4272. "source": {
  4273. "type": "git",
  4274. "url": "https://github.com/top-think/think-trace.git",
  4275. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  4276. },
  4277. "dist": {
  4278. "type": "zip",
  4279. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4280. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4281. "shasum": ""
  4282. },
  4283. "require": {
  4284. "php": ">=7.1.0",
  4285. "topthink/framework": "^6.0|^8.0"
  4286. },
  4287. "type": "library",
  4288. "extra": {
  4289. "think": {
  4290. "services": [
  4291. "think\\trace\\Service"
  4292. ],
  4293. "config": {
  4294. "trace": "src/config.php"
  4295. }
  4296. }
  4297. },
  4298. "autoload": {
  4299. "psr-4": {
  4300. "think\\trace\\": "src"
  4301. }
  4302. },
  4303. "notification-url": "https://packagist.org/downloads/",
  4304. "license": [
  4305. "Apache-2.0"
  4306. ],
  4307. "authors": [
  4308. {
  4309. "name": "liu21st",
  4310. "email": "liu21st@gmail.com"
  4311. }
  4312. ],
  4313. "description": "thinkphp debug trace",
  4314. "support": {
  4315. "issues": "https://github.com/top-think/think-trace/issues",
  4316. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  4317. },
  4318. "time": "2023-02-07T08:36:32+00:00"
  4319. }
  4320. ],
  4321. "aliases": [],
  4322. "minimum-stability": "stable",
  4323. "stability-flags": {
  4324. "kosinix/grafika": 20
  4325. },
  4326. "prefer-stable": false,
  4327. "prefer-lowest": false,
  4328. "platform": {
  4329. "php": ">=7.2.0",
  4330. "ext-gd": "*",
  4331. "ext-curl": "*",
  4332. "ext-bcmath": "*",
  4333. "ext-json": "*",
  4334. "ext-pdo": "*",
  4335. "ext-openssl": "*",
  4336. "ext-libxml": "*",
  4337. "ext-simplexml": "*"
  4338. },
  4339. "platform-dev": [],
  4340. "plugin-api-version": "2.3.0"
  4341. }