installed.json 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161
  1. {
  2. "packages": [
  3. {
  4. "name": "bacon/bacon-qr-code",
  5. "version": "2.0.8",
  6. "version_normalized": "2.0.8.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/Bacon/BaconQrCode.git",
  10. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  15. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "dasprid/enum": "^1.0.3",
  26. "ext-iconv": "*",
  27. "php": "^7.1 || ^8.0"
  28. },
  29. "require-dev": {
  30. "phly/keep-a-changelog": "^2.1",
  31. "phpunit/phpunit": "^7 | ^8 | ^9",
  32. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  33. "squizlabs/php_codesniffer": "^3.4"
  34. },
  35. "suggest": {
  36. "ext-imagick": "to generate QR code images"
  37. },
  38. "time": "2022-12-07T17:46:57+00:00",
  39. "type": "library",
  40. "installation-source": "dist",
  41. "autoload": {
  42. "psr-4": {
  43. "BaconQrCode\\": "src/"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "BSD-2-Clause"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Ben Scholzen 'DASPRiD'",
  53. "email": "mail@dasprids.de",
  54. "homepage": "https://dasprids.de/",
  55. "role": "Developer"
  56. }
  57. ],
  58. "description": "BaconQrCode is a QR code generator for PHP.",
  59. "homepage": "https://github.com/Bacon/BaconQrCode",
  60. "support": {
  61. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  62. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  63. },
  64. "install-path": "../bacon/bacon-qr-code"
  65. },
  66. {
  67. "name": "dasprid/enum",
  68. "version": "1.0.4",
  69. "version_normalized": "1.0.4.0",
  70. "source": {
  71. "type": "git",
  72. "url": "https://github.com/DASPRiD/Enum.git",
  73. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
  74. },
  75. "dist": {
  76. "type": "zip",
  77. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  78. "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
  79. "shasum": "",
  80. "mirrors": [
  81. {
  82. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  83. "preferred": true
  84. }
  85. ]
  86. },
  87. "require": {
  88. "php": ">=7.1 <9.0"
  89. },
  90. "require-dev": {
  91. "phpunit/phpunit": "^7 | ^8 | ^9",
  92. "squizlabs/php_codesniffer": "*"
  93. },
  94. "time": "2023-03-01T18:44:03+00:00",
  95. "type": "library",
  96. "installation-source": "dist",
  97. "autoload": {
  98. "psr-4": {
  99. "DASPRiD\\Enum\\": "src/"
  100. }
  101. },
  102. "notification-url": "https://packagist.org/downloads/",
  103. "license": [
  104. "BSD-2-Clause"
  105. ],
  106. "authors": [
  107. {
  108. "name": "Ben Scholzen 'DASPRiD'",
  109. "email": "mail@dasprids.de",
  110. "homepage": "https://dasprids.de/",
  111. "role": "Developer"
  112. }
  113. ],
  114. "description": "PHP 7.1 enum implementation",
  115. "keywords": [
  116. "enum",
  117. "map"
  118. ],
  119. "support": {
  120. "issues": "https://github.com/DASPRiD/Enum/issues",
  121. "source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
  122. },
  123. "install-path": "../dasprid/enum"
  124. },
  125. {
  126. "name": "easywechat-composer/easywechat-composer",
  127. "version": "1.4.1",
  128. "version_normalized": "1.4.1.0",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/mingyoung/easywechat-composer.git",
  132. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  137. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  138. "shasum": "",
  139. "mirrors": [
  140. {
  141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  142. "preferred": true
  143. }
  144. ]
  145. },
  146. "require": {
  147. "composer-plugin-api": "^1.0 || ^2.0",
  148. "php": ">=7.0"
  149. },
  150. "require-dev": {
  151. "composer/composer": "^1.0 || ^2.0",
  152. "phpunit/phpunit": "^6.5 || ^7.0"
  153. },
  154. "time": "2021-07-05T04:03:22+00:00",
  155. "type": "composer-plugin",
  156. "extra": {
  157. "class": "EasyWeChatComposer\\Plugin"
  158. },
  159. "installation-source": "dist",
  160. "autoload": {
  161. "psr-4": {
  162. "EasyWeChatComposer\\": "src/"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "张铭阳",
  172. "email": "mingyoungcheung@gmail.com"
  173. }
  174. ],
  175. "description": "The composer plugin for EasyWeChat",
  176. "support": {
  177. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  178. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  179. },
  180. "install-path": "../easywechat-composer/easywechat-composer"
  181. },
  182. {
  183. "name": "endroid/qr-code",
  184. "version": "4.3.5",
  185. "version_normalized": "4.3.5.0",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/endroid/qr-code.git",
  189. "reference": "5630e192948b466d418608ecce697465d20260af"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/endroid/qr-code/zipball/5630e192948b466d418608ecce697465d20260af",
  194. "reference": "5630e192948b466d418608ecce697465d20260af",
  195. "shasum": "",
  196. "mirrors": [
  197. {
  198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  199. "preferred": true
  200. }
  201. ]
  202. },
  203. "require": {
  204. "bacon/bacon-qr-code": "^2.0",
  205. "php": "^7.3||^8.0"
  206. },
  207. "require-dev": {
  208. "endroid/quality": "dev-master",
  209. "ext-gd": "*",
  210. "khanamiryan/qrcode-detector-decoder": "^1.0.4",
  211. "setasign/fpdf": "^1.8.2"
  212. },
  213. "suggest": {
  214. "ext-gd": "Enables you to write PNG images",
  215. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  216. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  217. "setasign/fpdf": "Enables you to use the PDF writer"
  218. },
  219. "time": "2021-09-17T07:50:43+00:00",
  220. "type": "library",
  221. "extra": {
  222. "branch-alias": {
  223. "dev-master": "4.x-dev"
  224. }
  225. },
  226. "installation-source": "dist",
  227. "autoload": {
  228. "psr-4": {
  229. "Endroid\\QrCode\\": "src/"
  230. }
  231. },
  232. "notification-url": "https://packagist.org/downloads/",
  233. "license": [
  234. "MIT"
  235. ],
  236. "authors": [
  237. {
  238. "name": "Jeroen van den Enden",
  239. "email": "info@endroid.nl"
  240. }
  241. ],
  242. "description": "Endroid QR Code",
  243. "homepage": "https://github.com/endroid/qr-code",
  244. "keywords": [
  245. "code",
  246. "endroid",
  247. "php",
  248. "qr",
  249. "qrcode"
  250. ],
  251. "support": {
  252. "issues": "https://github.com/endroid/qr-code/issues",
  253. "source": "https://github.com/endroid/qr-code/tree/4.3.5"
  254. },
  255. "funding": [
  256. {
  257. "url": "https://github.com/endroid",
  258. "type": "github"
  259. }
  260. ],
  261. "install-path": "../endroid/qr-code"
  262. },
  263. {
  264. "name": "guzzlehttp/guzzle",
  265. "version": "6.5.8",
  266. "version_normalized": "6.5.8.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/guzzle/guzzle.git",
  270. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  275. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  276. "shasum": "",
  277. "mirrors": [
  278. {
  279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  280. "preferred": true
  281. }
  282. ]
  283. },
  284. "require": {
  285. "ext-json": "*",
  286. "guzzlehttp/promises": "^1.0",
  287. "guzzlehttp/psr7": "^1.9",
  288. "php": ">=5.5",
  289. "symfony/polyfill-intl-idn": "^1.17"
  290. },
  291. "require-dev": {
  292. "ext-curl": "*",
  293. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  294. "psr/log": "^1.1"
  295. },
  296. "suggest": {
  297. "psr/log": "Required for using the Log middleware"
  298. },
  299. "time": "2022-06-20T22:16:07+00:00",
  300. "type": "library",
  301. "extra": {
  302. "branch-alias": {
  303. "dev-master": "6.5-dev"
  304. }
  305. },
  306. "installation-source": "dist",
  307. "autoload": {
  308. "files": [
  309. "src/functions_include.php"
  310. ],
  311. "psr-4": {
  312. "GuzzleHttp\\": "src/"
  313. }
  314. },
  315. "notification-url": "https://packagist.org/downloads/",
  316. "license": [
  317. "MIT"
  318. ],
  319. "authors": [
  320. {
  321. "name": "Graham Campbell",
  322. "email": "hello@gjcampbell.co.uk",
  323. "homepage": "https://github.com/GrahamCampbell"
  324. },
  325. {
  326. "name": "Michael Dowling",
  327. "email": "mtdowling@gmail.com",
  328. "homepage": "https://github.com/mtdowling"
  329. },
  330. {
  331. "name": "Jeremy Lindblom",
  332. "email": "jeremeamia@gmail.com",
  333. "homepage": "https://github.com/jeremeamia"
  334. },
  335. {
  336. "name": "George Mponos",
  337. "email": "gmponos@gmail.com",
  338. "homepage": "https://github.com/gmponos"
  339. },
  340. {
  341. "name": "Tobias Nyholm",
  342. "email": "tobias.nyholm@gmail.com",
  343. "homepage": "https://github.com/Nyholm"
  344. },
  345. {
  346. "name": "Márk Sági-Kazár",
  347. "email": "mark.sagikazar@gmail.com",
  348. "homepage": "https://github.com/sagikazarmark"
  349. },
  350. {
  351. "name": "Tobias Schultze",
  352. "email": "webmaster@tubo-world.de",
  353. "homepage": "https://github.com/Tobion"
  354. }
  355. ],
  356. "description": "Guzzle is a PHP HTTP client library",
  357. "homepage": "http://guzzlephp.org/",
  358. "keywords": [
  359. "client",
  360. "curl",
  361. "framework",
  362. "http",
  363. "http client",
  364. "rest",
  365. "web service"
  366. ],
  367. "support": {
  368. "issues": "https://github.com/guzzle/guzzle/issues",
  369. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  370. },
  371. "funding": [
  372. {
  373. "url": "https://github.com/GrahamCampbell",
  374. "type": "github"
  375. },
  376. {
  377. "url": "https://github.com/Nyholm",
  378. "type": "github"
  379. },
  380. {
  381. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  382. "type": "tidelift"
  383. }
  384. ],
  385. "install-path": "../guzzlehttp/guzzle"
  386. },
  387. {
  388. "name": "guzzlehttp/promises",
  389. "version": "1.5.2",
  390. "version_normalized": "1.5.2.0",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/guzzle/promises.git",
  394. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  399. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  400. "shasum": "",
  401. "mirrors": [
  402. {
  403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  404. "preferred": true
  405. }
  406. ]
  407. },
  408. "require": {
  409. "php": ">=5.5"
  410. },
  411. "require-dev": {
  412. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  413. },
  414. "time": "2022-08-28T14:55:35+00:00",
  415. "type": "library",
  416. "extra": {
  417. "branch-alias": {
  418. "dev-master": "1.5-dev"
  419. }
  420. },
  421. "installation-source": "dist",
  422. "autoload": {
  423. "files": [
  424. "src/functions_include.php"
  425. ],
  426. "psr-4": {
  427. "GuzzleHttp\\Promise\\": "src/"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "MIT"
  433. ],
  434. "authors": [
  435. {
  436. "name": "Graham Campbell",
  437. "email": "hello@gjcampbell.co.uk",
  438. "homepage": "https://github.com/GrahamCampbell"
  439. },
  440. {
  441. "name": "Michael Dowling",
  442. "email": "mtdowling@gmail.com",
  443. "homepage": "https://github.com/mtdowling"
  444. },
  445. {
  446. "name": "Tobias Nyholm",
  447. "email": "tobias.nyholm@gmail.com",
  448. "homepage": "https://github.com/Nyholm"
  449. },
  450. {
  451. "name": "Tobias Schultze",
  452. "email": "webmaster@tubo-world.de",
  453. "homepage": "https://github.com/Tobion"
  454. }
  455. ],
  456. "description": "Guzzle promises library",
  457. "keywords": [
  458. "promise"
  459. ],
  460. "support": {
  461. "issues": "https://github.com/guzzle/promises/issues",
  462. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  463. },
  464. "funding": [
  465. {
  466. "url": "https://github.com/GrahamCampbell",
  467. "type": "github"
  468. },
  469. {
  470. "url": "https://github.com/Nyholm",
  471. "type": "github"
  472. },
  473. {
  474. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  475. "type": "tidelift"
  476. }
  477. ],
  478. "install-path": "../guzzlehttp/promises"
  479. },
  480. {
  481. "name": "guzzlehttp/psr7",
  482. "version": "1.9.0",
  483. "version_normalized": "1.9.0.0",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/guzzle/psr7.git",
  487. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  492. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  493. "shasum": "",
  494. "mirrors": [
  495. {
  496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  497. "preferred": true
  498. }
  499. ]
  500. },
  501. "require": {
  502. "php": ">=5.4.0",
  503. "psr/http-message": "~1.0",
  504. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  505. },
  506. "provide": {
  507. "psr/http-message-implementation": "1.0"
  508. },
  509. "require-dev": {
  510. "ext-zlib": "*",
  511. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  512. },
  513. "suggest": {
  514. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  515. },
  516. "time": "2022-06-20T21:43:03+00:00",
  517. "type": "library",
  518. "extra": {
  519. "branch-alias": {
  520. "dev-master": "1.9-dev"
  521. }
  522. },
  523. "installation-source": "dist",
  524. "autoload": {
  525. "files": [
  526. "src/functions_include.php"
  527. ],
  528. "psr-4": {
  529. "GuzzleHttp\\Psr7\\": "src/"
  530. }
  531. },
  532. "notification-url": "https://packagist.org/downloads/",
  533. "license": [
  534. "MIT"
  535. ],
  536. "authors": [
  537. {
  538. "name": "Graham Campbell",
  539. "email": "hello@gjcampbell.co.uk",
  540. "homepage": "https://github.com/GrahamCampbell"
  541. },
  542. {
  543. "name": "Michael Dowling",
  544. "email": "mtdowling@gmail.com",
  545. "homepage": "https://github.com/mtdowling"
  546. },
  547. {
  548. "name": "George Mponos",
  549. "email": "gmponos@gmail.com",
  550. "homepage": "https://github.com/gmponos"
  551. },
  552. {
  553. "name": "Tobias Nyholm",
  554. "email": "tobias.nyholm@gmail.com",
  555. "homepage": "https://github.com/Nyholm"
  556. },
  557. {
  558. "name": "Márk Sági-Kazár",
  559. "email": "mark.sagikazar@gmail.com",
  560. "homepage": "https://github.com/sagikazarmark"
  561. },
  562. {
  563. "name": "Tobias Schultze",
  564. "email": "webmaster@tubo-world.de",
  565. "homepage": "https://github.com/Tobion"
  566. }
  567. ],
  568. "description": "PSR-7 message implementation that also provides common utility methods",
  569. "keywords": [
  570. "http",
  571. "message",
  572. "psr-7",
  573. "request",
  574. "response",
  575. "stream",
  576. "uri",
  577. "url"
  578. ],
  579. "support": {
  580. "issues": "https://github.com/guzzle/psr7/issues",
  581. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  582. },
  583. "funding": [
  584. {
  585. "url": "https://github.com/GrahamCampbell",
  586. "type": "github"
  587. },
  588. {
  589. "url": "https://github.com/Nyholm",
  590. "type": "github"
  591. },
  592. {
  593. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  594. "type": "tidelift"
  595. }
  596. ],
  597. "install-path": "../guzzlehttp/psr7"
  598. },
  599. {
  600. "name": "guzzlehttp/uri-template",
  601. "version": "v1.0.1",
  602. "version_normalized": "1.0.1.0",
  603. "source": {
  604. "type": "git",
  605. "url": "https://github.com/guzzle/uri-template.git",
  606. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  607. },
  608. "dist": {
  609. "type": "zip",
  610. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  611. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  612. "shasum": "",
  613. "mirrors": [
  614. {
  615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  616. "preferred": true
  617. }
  618. ]
  619. },
  620. "require": {
  621. "php": "^7.2.5 || ^8.0",
  622. "symfony/polyfill-php80": "^1.17"
  623. },
  624. "require-dev": {
  625. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  626. "uri-template/tests": "1.0.0"
  627. },
  628. "time": "2021-10-07T12:57:01+00:00",
  629. "type": "library",
  630. "extra": {
  631. "branch-alias": {
  632. "dev-master": "1.0-dev"
  633. }
  634. },
  635. "installation-source": "dist",
  636. "autoload": {
  637. "psr-4": {
  638. "GuzzleHttp\\UriTemplate\\": "src"
  639. }
  640. },
  641. "notification-url": "https://packagist.org/downloads/",
  642. "license": [
  643. "MIT"
  644. ],
  645. "authors": [
  646. {
  647. "name": "Graham Campbell",
  648. "email": "hello@gjcampbell.co.uk",
  649. "homepage": "https://github.com/GrahamCampbell"
  650. },
  651. {
  652. "name": "Michael Dowling",
  653. "email": "mtdowling@gmail.com",
  654. "homepage": "https://github.com/mtdowling"
  655. },
  656. {
  657. "name": "George Mponos",
  658. "email": "gmponos@gmail.com",
  659. "homepage": "https://github.com/gmponos"
  660. },
  661. {
  662. "name": "Tobias Nyholm",
  663. "email": "tobias.nyholm@gmail.com",
  664. "homepage": "https://github.com/Nyholm"
  665. }
  666. ],
  667. "description": "A polyfill class for uri_template of PHP",
  668. "keywords": [
  669. "guzzlehttp",
  670. "uri-template"
  671. ],
  672. "support": {
  673. "issues": "https://github.com/guzzle/uri-template/issues",
  674. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  675. },
  676. "funding": [
  677. {
  678. "url": "https://github.com/GrahamCampbell",
  679. "type": "github"
  680. },
  681. {
  682. "url": "https://github.com/Nyholm",
  683. "type": "github"
  684. },
  685. {
  686. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  687. "type": "tidelift"
  688. }
  689. ],
  690. "install-path": "../guzzlehttp/uri-template"
  691. },
  692. {
  693. "name": "karsonzhang/fastadmin-addons",
  694. "version": "1.3.3",
  695. "version_normalized": "1.3.3.0",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/karsonzhang/fastadmin-addons.git",
  699. "reference": "f5bb4dabda55271b08371a8ae9355a205be48c56"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/karsonzhang/fastadmin-addons/zipball/f5bb4dabda55271b08371a8ae9355a205be48c56",
  704. "reference": "f5bb4dabda55271b08371a8ae9355a205be48c56",
  705. "shasum": "",
  706. "mirrors": [
  707. {
  708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  709. "preferred": true
  710. }
  711. ]
  712. },
  713. "require": {
  714. "nelexa/zip": "^3.3",
  715. "php": ">=7.0.0",
  716. "symfony/var-exporter": "^4.4.13"
  717. },
  718. "time": "2022-05-27T09:30:12+00:00",
  719. "type": "library",
  720. "extra": {
  721. "think-config": {
  722. "addons": "src/config.php"
  723. }
  724. },
  725. "installation-source": "dist",
  726. "autoload": {
  727. "files": [
  728. "src/common.php"
  729. ],
  730. "psr-4": {
  731. "think\\": "src/"
  732. }
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "Apache-2.0"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Karson",
  741. "email": "karson@fastadmin.net"
  742. },
  743. {
  744. "name": "xiaobo.sun",
  745. "email": "xiaobo.sun@qq.com"
  746. }
  747. ],
  748. "description": "addons package for fastadmin",
  749. "homepage": "https://github.com/karsonzhang/fastadmin-addons",
  750. "support": {
  751. "issues": "https://github.com/karsonzhang/fastadmin-addons/issues",
  752. "source": "https://github.com/karsonzhang/fastadmin-addons/tree/v1.3.3"
  753. },
  754. "install-path": "../karsonzhang/fastadmin-addons"
  755. },
  756. {
  757. "name": "markbaker/complex",
  758. "version": "1.5.0",
  759. "version_normalized": "1.5.0.0",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/MarkBaker/PHPComplex.git",
  763. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  768. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  769. "shasum": "",
  770. "mirrors": [
  771. {
  772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  773. "preferred": true
  774. }
  775. ]
  776. },
  777. "require": {
  778. "php": "^5.6.0|^7.0"
  779. },
  780. "require-dev": {
  781. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  782. "phpcompatibility/php-compatibility": "^9.0",
  783. "phpdocumentor/phpdocumentor": "2.*",
  784. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  785. "phpmd/phpmd": "2.*",
  786. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  787. "sebastian/phpcpd": "2.*",
  788. "squizlabs/php_codesniffer": "^3.4.0"
  789. },
  790. "time": "2020-08-26T19:47:57+00:00",
  791. "type": "library",
  792. "installation-source": "dist",
  793. "autoload": {
  794. "files": [
  795. "classes/src/functions/abs.php",
  796. "classes/src/functions/acos.php",
  797. "classes/src/functions/acosh.php",
  798. "classes/src/functions/acot.php",
  799. "classes/src/functions/acoth.php",
  800. "classes/src/functions/acsc.php",
  801. "classes/src/functions/acsch.php",
  802. "classes/src/functions/argument.php",
  803. "classes/src/functions/asec.php",
  804. "classes/src/functions/asech.php",
  805. "classes/src/functions/asin.php",
  806. "classes/src/functions/asinh.php",
  807. "classes/src/functions/atan.php",
  808. "classes/src/functions/atanh.php",
  809. "classes/src/functions/conjugate.php",
  810. "classes/src/functions/cos.php",
  811. "classes/src/functions/cosh.php",
  812. "classes/src/functions/cot.php",
  813. "classes/src/functions/coth.php",
  814. "classes/src/functions/csc.php",
  815. "classes/src/functions/csch.php",
  816. "classes/src/functions/exp.php",
  817. "classes/src/functions/inverse.php",
  818. "classes/src/functions/ln.php",
  819. "classes/src/functions/log2.php",
  820. "classes/src/functions/log10.php",
  821. "classes/src/functions/negative.php",
  822. "classes/src/functions/pow.php",
  823. "classes/src/functions/rho.php",
  824. "classes/src/functions/sec.php",
  825. "classes/src/functions/sech.php",
  826. "classes/src/functions/sin.php",
  827. "classes/src/functions/sinh.php",
  828. "classes/src/functions/sqrt.php",
  829. "classes/src/functions/tan.php",
  830. "classes/src/functions/tanh.php",
  831. "classes/src/functions/theta.php",
  832. "classes/src/operations/add.php",
  833. "classes/src/operations/subtract.php",
  834. "classes/src/operations/multiply.php",
  835. "classes/src/operations/divideby.php",
  836. "classes/src/operations/divideinto.php"
  837. ],
  838. "psr-4": {
  839. "Complex\\": "classes/src/"
  840. }
  841. },
  842. "notification-url": "https://packagist.org/downloads/",
  843. "license": [
  844. "MIT"
  845. ],
  846. "authors": [
  847. {
  848. "name": "Mark Baker",
  849. "email": "mark@lange.demon.co.uk"
  850. }
  851. ],
  852. "description": "PHP Class for working with complex numbers",
  853. "homepage": "https://github.com/MarkBaker/PHPComplex",
  854. "keywords": [
  855. "complex",
  856. "mathematics"
  857. ],
  858. "support": {
  859. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  860. "source": "https://github.com/MarkBaker/PHPComplex/tree/1.5.0"
  861. },
  862. "install-path": "../markbaker/complex"
  863. },
  864. {
  865. "name": "markbaker/matrix",
  866. "version": "1.2.3",
  867. "version_normalized": "1.2.3.0",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  871. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d",
  876. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d",
  877. "shasum": "",
  878. "mirrors": [
  879. {
  880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  881. "preferred": true
  882. }
  883. ]
  884. },
  885. "require": {
  886. "php": "^5.6.0|^7.0.0"
  887. },
  888. "require-dev": {
  889. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  890. "phpcompatibility/php-compatibility": "dev-master",
  891. "phploc/phploc": "^4",
  892. "phpmd/phpmd": "dev-master",
  893. "phpunit/phpunit": "^5.7|^6.0|7.0",
  894. "sebastian/phpcpd": "^3.0",
  895. "squizlabs/php_codesniffer": "^3.0@dev"
  896. },
  897. "time": "2021-01-26T14:36:01+00:00",
  898. "type": "library",
  899. "installation-source": "dist",
  900. "autoload": {
  901. "files": [
  902. "classes/src/Functions/adjoint.php",
  903. "classes/src/Functions/antidiagonal.php",
  904. "classes/src/Functions/cofactors.php",
  905. "classes/src/Functions/determinant.php",
  906. "classes/src/Functions/diagonal.php",
  907. "classes/src/Functions/identity.php",
  908. "classes/src/Functions/inverse.php",
  909. "classes/src/Functions/minors.php",
  910. "classes/src/Functions/trace.php",
  911. "classes/src/Functions/transpose.php",
  912. "classes/src/Operations/add.php",
  913. "classes/src/Operations/directsum.php",
  914. "classes/src/Operations/subtract.php",
  915. "classes/src/Operations/multiply.php",
  916. "classes/src/Operations/divideby.php",
  917. "classes/src/Operations/divideinto.php"
  918. ],
  919. "psr-4": {
  920. "Matrix\\": "classes/src/"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Mark Baker",
  930. "email": "mark@lange.demon.co.uk"
  931. }
  932. ],
  933. "description": "PHP Class for working with matrices",
  934. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  935. "keywords": [
  936. "mathematics",
  937. "matrix",
  938. "vector"
  939. ],
  940. "support": {
  941. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  942. "source": "https://github.com/MarkBaker/PHPMatrix/tree/1.2.3"
  943. },
  944. "install-path": "../markbaker/matrix"
  945. },
  946. {
  947. "name": "monolog/monolog",
  948. "version": "2.8.0",
  949. "version_normalized": "2.8.0.0",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/Seldaek/monolog.git",
  953. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  958. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  959. "shasum": "",
  960. "mirrors": [
  961. {
  962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  963. "preferred": true
  964. }
  965. ]
  966. },
  967. "require": {
  968. "php": ">=7.2",
  969. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  970. },
  971. "provide": {
  972. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  973. },
  974. "require-dev": {
  975. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  976. "doctrine/couchdb": "~1.0@dev",
  977. "elasticsearch/elasticsearch": "^7 || ^8",
  978. "ext-json": "*",
  979. "graylog2/gelf-php": "^1.4.2",
  980. "guzzlehttp/guzzle": "^7.4",
  981. "guzzlehttp/psr7": "^2.2",
  982. "mongodb/mongodb": "^1.8",
  983. "php-amqplib/php-amqplib": "~2.4 || ^3",
  984. "phpspec/prophecy": "^1.15",
  985. "phpstan/phpstan": "^0.12.91",
  986. "phpunit/phpunit": "^8.5.14",
  987. "predis/predis": "^1.1 || ^2.0",
  988. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  989. "ruflin/elastica": "^7",
  990. "swiftmailer/swiftmailer": "^5.3|^6.0",
  991. "symfony/mailer": "^5.4 || ^6",
  992. "symfony/mime": "^5.4 || ^6"
  993. },
  994. "suggest": {
  995. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  996. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  997. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  998. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  999. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1000. "ext-mbstring": "Allow to work properly with unicode symbols",
  1001. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1002. "ext-openssl": "Required to send log messages using SSL",
  1003. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1004. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1005. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1006. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1007. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1008. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1009. },
  1010. "time": "2022-07-24T11:55:47+00:00",
  1011. "type": "library",
  1012. "extra": {
  1013. "branch-alias": {
  1014. "dev-main": "2.x-dev"
  1015. }
  1016. },
  1017. "installation-source": "dist",
  1018. "autoload": {
  1019. "psr-4": {
  1020. "Monolog\\": "src/Monolog"
  1021. }
  1022. },
  1023. "notification-url": "https://packagist.org/downloads/",
  1024. "license": [
  1025. "MIT"
  1026. ],
  1027. "authors": [
  1028. {
  1029. "name": "Jordi Boggiano",
  1030. "email": "j.boggiano@seld.be",
  1031. "homepage": "https://seld.be"
  1032. }
  1033. ],
  1034. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1035. "homepage": "https://github.com/Seldaek/monolog",
  1036. "keywords": [
  1037. "log",
  1038. "logging",
  1039. "psr-3"
  1040. ],
  1041. "support": {
  1042. "issues": "https://github.com/Seldaek/monolog/issues",
  1043. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  1044. },
  1045. "funding": [
  1046. {
  1047. "url": "https://github.com/Seldaek",
  1048. "type": "github"
  1049. },
  1050. {
  1051. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1052. "type": "tidelift"
  1053. }
  1054. ],
  1055. "install-path": "../monolog/monolog"
  1056. },
  1057. {
  1058. "name": "nelexa/zip",
  1059. "version": "3.3.3",
  1060. "version_normalized": "3.3.3.0",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/Ne-Lexa/php-zip.git",
  1064. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/Ne-Lexa/php-zip/zipball/501b52f6fc393a599b44ff348a42740e1eaac7c6",
  1069. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6",
  1070. "shasum": "",
  1071. "mirrors": [
  1072. {
  1073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1074. "preferred": true
  1075. }
  1076. ]
  1077. },
  1078. "require": {
  1079. "ext-zlib": "*",
  1080. "paragonie/random_compat": "*",
  1081. "php": "^5.5.9 || ^7.0",
  1082. "psr/http-message": "^1.0",
  1083. "symfony/finder": "^3.0|^4.0|^5.0"
  1084. },
  1085. "require-dev": {
  1086. "ext-bz2": "*",
  1087. "ext-fileinfo": "*",
  1088. "ext-openssl": "*",
  1089. "ext-xml": "*",
  1090. "guzzlehttp/psr7": "^1.6",
  1091. "phpunit/phpunit": "^4.8|^5.7",
  1092. "symfony/var-dumper": "^3.0|^4.0|^5.0"
  1093. },
  1094. "suggest": {
  1095. "ext-bz2": "Needed to support BZIP2 compression",
  1096. "ext-fileinfo": "Needed to get mime-type file",
  1097. "ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
  1098. "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
  1099. },
  1100. "time": "2020-07-11T21:01:42+00:00",
  1101. "type": "library",
  1102. "installation-source": "dist",
  1103. "autoload": {
  1104. "psr-4": {
  1105. "PhpZip\\": "src/"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Ne-Lexa",
  1115. "email": "alexey@nelexa.ru",
  1116. "role": "Developer"
  1117. }
  1118. ],
  1119. "description": "PhpZip is a php-library for extended work with ZIP-archives. Open, create, update, delete, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, ZipAlign tool, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
  1120. "homepage": "https://github.com/Ne-Lexa/php-zip",
  1121. "keywords": [
  1122. "archive",
  1123. "extract",
  1124. "unzip",
  1125. "winzip",
  1126. "zip",
  1127. "zipalign",
  1128. "ziparchive"
  1129. ],
  1130. "support": {
  1131. "issues": "https://github.com/Ne-Lexa/php-zip/issues",
  1132. "source": "https://github.com/Ne-Lexa/php-zip/tree/3.3.3"
  1133. },
  1134. "install-path": "../nelexa/zip"
  1135. },
  1136. {
  1137. "name": "nesbot/carbon",
  1138. "version": "2.65.0",
  1139. "version_normalized": "2.65.0.0",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/briannesbitt/Carbon.git",
  1143. "reference": "09acf64155c16dc6f580f36569ae89344e9734a3"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/09acf64155c16dc6f580f36569ae89344e9734a3",
  1148. "reference": "09acf64155c16dc6f580f36569ae89344e9734a3",
  1149. "shasum": "",
  1150. "mirrors": [
  1151. {
  1152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1153. "preferred": true
  1154. }
  1155. ]
  1156. },
  1157. "require": {
  1158. "ext-json": "*",
  1159. "php": "^7.1.8 || ^8.0",
  1160. "symfony/polyfill-mbstring": "^1.0",
  1161. "symfony/polyfill-php80": "^1.16",
  1162. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1163. },
  1164. "require-dev": {
  1165. "doctrine/dbal": "^2.0 || ^3.1.4",
  1166. "doctrine/orm": "^2.7",
  1167. "friendsofphp/php-cs-fixer": "^3.0",
  1168. "kylekatarnls/multi-tester": "^2.0",
  1169. "ondrejmirtes/better-reflection": "*",
  1170. "phpmd/phpmd": "^2.9",
  1171. "phpstan/extension-installer": "^1.0",
  1172. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1173. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1174. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1175. "squizlabs/php_codesniffer": "^3.4"
  1176. },
  1177. "time": "2023-01-06T15:55:01+00:00",
  1178. "bin": [
  1179. "bin/carbon"
  1180. ],
  1181. "type": "library",
  1182. "extra": {
  1183. "branch-alias": {
  1184. "dev-3.x": "3.x-dev",
  1185. "dev-master": "2.x-dev"
  1186. },
  1187. "laravel": {
  1188. "providers": [
  1189. "Carbon\\Laravel\\ServiceProvider"
  1190. ]
  1191. },
  1192. "phpstan": {
  1193. "includes": [
  1194. "extension.neon"
  1195. ]
  1196. }
  1197. },
  1198. "installation-source": "dist",
  1199. "autoload": {
  1200. "psr-4": {
  1201. "Carbon\\": "src/Carbon/"
  1202. }
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "authors": [
  1209. {
  1210. "name": "Brian Nesbitt",
  1211. "email": "brian@nesbot.com",
  1212. "homepage": "https://markido.com"
  1213. },
  1214. {
  1215. "name": "kylekatarnls",
  1216. "homepage": "https://github.com/kylekatarnls"
  1217. }
  1218. ],
  1219. "description": "An API extension for DateTime that supports 281 different languages.",
  1220. "homepage": "https://carbon.nesbot.com",
  1221. "keywords": [
  1222. "date",
  1223. "datetime",
  1224. "time"
  1225. ],
  1226. "support": {
  1227. "docs": "https://carbon.nesbot.com/docs",
  1228. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1229. "source": "https://github.com/briannesbitt/Carbon"
  1230. },
  1231. "funding": [
  1232. {
  1233. "url": "https://github.com/sponsors/kylekatarnls",
  1234. "type": "github"
  1235. },
  1236. {
  1237. "url": "https://opencollective.com/Carbon#sponsor",
  1238. "type": "opencollective"
  1239. },
  1240. {
  1241. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1242. "type": "tidelift"
  1243. }
  1244. ],
  1245. "install-path": "../nesbot/carbon"
  1246. },
  1247. {
  1248. "name": "overtrue/pinyin",
  1249. "version": "3.0.6",
  1250. "version_normalized": "3.0.6.0",
  1251. "source": {
  1252. "type": "git",
  1253. "url": "https://github.com/overtrue/pinyin.git",
  1254. "reference": "3b781d267197b74752daa32814d3a2cf5d140779"
  1255. },
  1256. "dist": {
  1257. "type": "zip",
  1258. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/3b781d267197b74752daa32814d3a2cf5d140779",
  1259. "reference": "3b781d267197b74752daa32814d3a2cf5d140779",
  1260. "shasum": "",
  1261. "mirrors": [
  1262. {
  1263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1264. "preferred": true
  1265. }
  1266. ]
  1267. },
  1268. "require": {
  1269. "php": ">=5.3"
  1270. },
  1271. "require-dev": {
  1272. "phpunit/phpunit": "~4.8"
  1273. },
  1274. "time": "2017-07-10T07:20:01+00:00",
  1275. "type": "library",
  1276. "installation-source": "dist",
  1277. "autoload": {
  1278. "psr-4": {
  1279. "Overtrue\\Pinyin\\": "src/"
  1280. }
  1281. },
  1282. "notification-url": "https://packagist.org/downloads/",
  1283. "license": [
  1284. "MIT"
  1285. ],
  1286. "authors": [
  1287. {
  1288. "name": "Carlos",
  1289. "homepage": "http://github.com/overtrue"
  1290. }
  1291. ],
  1292. "description": "Chinese to pinyin translator.",
  1293. "homepage": "https://github.com/overtrue/pinyin",
  1294. "keywords": [
  1295. "Chinese",
  1296. "Pinyin",
  1297. "cn2pinyin"
  1298. ],
  1299. "support": {
  1300. "issues": "https://github.com/overtrue/pinyin/issues",
  1301. "source": "https://github.com/overtrue/pinyin/tree/master"
  1302. },
  1303. "install-path": "../overtrue/pinyin"
  1304. },
  1305. {
  1306. "name": "overtrue/socialite",
  1307. "version": "2.0.24",
  1308. "version_normalized": "2.0.24.0",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/overtrue/socialite.git",
  1312. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1317. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1318. "shasum": "",
  1319. "mirrors": [
  1320. {
  1321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1322. "preferred": true
  1323. }
  1324. ]
  1325. },
  1326. "require": {
  1327. "ext-json": "*",
  1328. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  1329. "php": ">=5.6",
  1330. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  1331. },
  1332. "require-dev": {
  1333. "mockery/mockery": "~1.2",
  1334. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  1335. },
  1336. "time": "2021-05-13T16:04:48+00:00",
  1337. "type": "library",
  1338. "installation-source": "dist",
  1339. "autoload": {
  1340. "psr-4": {
  1341. "Overtrue\\Socialite\\": "src/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "overtrue",
  1351. "email": "anzhengchao@gmail.com"
  1352. }
  1353. ],
  1354. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1355. "keywords": [
  1356. "login",
  1357. "oauth",
  1358. "qq",
  1359. "social",
  1360. "wechat",
  1361. "weibo"
  1362. ],
  1363. "support": {
  1364. "issues": "https://github.com/overtrue/socialite/issues",
  1365. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  1366. },
  1367. "funding": [
  1368. {
  1369. "url": "https://www.patreon.com/overtrue",
  1370. "type": "patreon"
  1371. }
  1372. ],
  1373. "install-path": "../overtrue/socialite"
  1374. },
  1375. {
  1376. "name": "overtrue/wechat",
  1377. "version": "4.2.11",
  1378. "version_normalized": "4.2.11.0",
  1379. "source": {
  1380. "type": "git",
  1381. "url": "https://github.com/w7corp/easywechat.git",
  1382. "reference": "853e0772e6aa53a71edf1b5d251c7ff1e6b2a2bf"
  1383. },
  1384. "dist": {
  1385. "type": "zip",
  1386. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/853e0772e6aa53a71edf1b5d251c7ff1e6b2a2bf",
  1387. "reference": "853e0772e6aa53a71edf1b5d251c7ff1e6b2a2bf",
  1388. "shasum": "",
  1389. "mirrors": [
  1390. {
  1391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1392. "preferred": true
  1393. }
  1394. ]
  1395. },
  1396. "require": {
  1397. "easywechat-composer/easywechat-composer": "^1.1",
  1398. "ext-fileinfo": "*",
  1399. "ext-openssl": "*",
  1400. "ext-simplexml": "*",
  1401. "guzzlehttp/guzzle": "^6.2",
  1402. "monolog/monolog": "^1.22 || ^2.0",
  1403. "overtrue/socialite": "~2.0",
  1404. "php": ">=7.1",
  1405. "pimple/pimple": "^3.0",
  1406. "psr/simple-cache": "^1.0",
  1407. "symfony/cache": "^3.3 || ^4.3",
  1408. "symfony/event-dispatcher": "^4.3",
  1409. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0",
  1410. "symfony/psr-http-message-bridge": "^0.3 || ^1.0"
  1411. },
  1412. "require-dev": {
  1413. "friendsofphp/php-cs-fixer": "^2.15",
  1414. "mikey179/vfsstream": "^1.6",
  1415. "mockery/mockery": "^1.2.3",
  1416. "phpstan/phpstan": "^0.11.12",
  1417. "phpunit/phpunit": "^7.5"
  1418. },
  1419. "time": "2019-11-27T16:38:00+00:00",
  1420. "type": "library",
  1421. "installation-source": "dist",
  1422. "autoload": {
  1423. "files": [
  1424. "src/Kernel/Support/Helpers.php",
  1425. "src/Kernel/Helpers.php"
  1426. ],
  1427. "psr-4": {
  1428. "EasyWeChat\\": "src/"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "overtrue",
  1438. "email": "anzhengchao@gmail.com"
  1439. }
  1440. ],
  1441. "description": "微信SDK",
  1442. "keywords": [
  1443. "sdk",
  1444. "wechat",
  1445. "weixin",
  1446. "weixin-sdk"
  1447. ],
  1448. "support": {
  1449. "issues": "https://github.com/w7corp/easywechat/issues",
  1450. "source": "https://github.com/w7corp/easywechat/tree/4.2.11"
  1451. },
  1452. "abandoned": "w7corp/easywechat",
  1453. "install-path": "../overtrue/wechat"
  1454. },
  1455. {
  1456. "name": "paragonie/random_compat",
  1457. "version": "v9.99.100",
  1458. "version_normalized": "9.99.100.0",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/paragonie/random_compat.git",
  1462. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1467. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1468. "shasum": "",
  1469. "mirrors": [
  1470. {
  1471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1472. "preferred": true
  1473. }
  1474. ]
  1475. },
  1476. "require": {
  1477. "php": ">= 7"
  1478. },
  1479. "require-dev": {
  1480. "phpunit/phpunit": "4.*|5.*",
  1481. "vimeo/psalm": "^1"
  1482. },
  1483. "suggest": {
  1484. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1485. },
  1486. "time": "2020-10-15T08:29:30+00:00",
  1487. "type": "library",
  1488. "installation-source": "dist",
  1489. "notification-url": "https://packagist.org/downloads/",
  1490. "license": [
  1491. "MIT"
  1492. ],
  1493. "authors": [
  1494. {
  1495. "name": "Paragon Initiative Enterprises",
  1496. "email": "security@paragonie.com",
  1497. "homepage": "https://paragonie.com"
  1498. }
  1499. ],
  1500. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1501. "keywords": [
  1502. "csprng",
  1503. "polyfill",
  1504. "pseudorandom",
  1505. "random"
  1506. ],
  1507. "support": {
  1508. "email": "info@paragonie.com",
  1509. "issues": "https://github.com/paragonie/random_compat/issues",
  1510. "source": "https://github.com/paragonie/random_compat"
  1511. },
  1512. "install-path": "../paragonie/random_compat"
  1513. },
  1514. {
  1515. "name": "phpoffice/phpspreadsheet",
  1516. "version": "1.12.0",
  1517. "version_normalized": "1.12.0.0",
  1518. "source": {
  1519. "type": "git",
  1520. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1521. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd"
  1522. },
  1523. "dist": {
  1524. "type": "zip",
  1525. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  1526. "reference": "f79611d6dc1f6b7e8e30b738fc371b392001dbfd",
  1527. "shasum": "",
  1528. "mirrors": [
  1529. {
  1530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1531. "preferred": true
  1532. }
  1533. ]
  1534. },
  1535. "require": {
  1536. "ext-ctype": "*",
  1537. "ext-dom": "*",
  1538. "ext-fileinfo": "*",
  1539. "ext-gd": "*",
  1540. "ext-iconv": "*",
  1541. "ext-libxml": "*",
  1542. "ext-mbstring": "*",
  1543. "ext-simplexml": "*",
  1544. "ext-xml": "*",
  1545. "ext-xmlreader": "*",
  1546. "ext-xmlwriter": "*",
  1547. "ext-zip": "*",
  1548. "ext-zlib": "*",
  1549. "markbaker/complex": "^1.4",
  1550. "markbaker/matrix": "^1.2",
  1551. "php": "^7.1",
  1552. "psr/simple-cache": "^1.0"
  1553. },
  1554. "require-dev": {
  1555. "dompdf/dompdf": "^0.8.3",
  1556. "friendsofphp/php-cs-fixer": "^2.16",
  1557. "jpgraph/jpgraph": "^4.0",
  1558. "mpdf/mpdf": "^8.0",
  1559. "phpcompatibility/php-compatibility": "^9.3",
  1560. "phpunit/phpunit": "^7.5",
  1561. "squizlabs/php_codesniffer": "^3.5",
  1562. "tecnickcom/tcpdf": "^6.3"
  1563. },
  1564. "suggest": {
  1565. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  1566. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1567. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1568. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  1569. },
  1570. "time": "2020-04-27T08:12:48+00:00",
  1571. "type": "library",
  1572. "installation-source": "dist",
  1573. "autoload": {
  1574. "psr-4": {
  1575. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1576. }
  1577. },
  1578. "notification-url": "https://packagist.org/downloads/",
  1579. "license": [
  1580. "MIT"
  1581. ],
  1582. "authors": [
  1583. {
  1584. "name": "Maarten Balliauw",
  1585. "homepage": "https://blog.maartenballiauw.be"
  1586. },
  1587. {
  1588. "name": "Mark Baker",
  1589. "homepage": "https://markbakeruk.net"
  1590. },
  1591. {
  1592. "name": "Franck Lefevre",
  1593. "homepage": "https://rootslabs.net"
  1594. },
  1595. {
  1596. "name": "Erik Tilt"
  1597. },
  1598. {
  1599. "name": "Adrien Crivelli"
  1600. }
  1601. ],
  1602. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1603. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1604. "keywords": [
  1605. "OpenXML",
  1606. "excel",
  1607. "gnumeric",
  1608. "ods",
  1609. "php",
  1610. "spreadsheet",
  1611. "xls",
  1612. "xlsx"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  1616. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.12.0"
  1617. },
  1618. "install-path": "../phpoffice/phpspreadsheet"
  1619. },
  1620. {
  1621. "name": "pimple/pimple",
  1622. "version": "v3.5.0",
  1623. "version_normalized": "3.5.0.0",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/silexphp/Pimple.git",
  1627. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1632. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1633. "shasum": "",
  1634. "mirrors": [
  1635. {
  1636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1637. "preferred": true
  1638. }
  1639. ]
  1640. },
  1641. "require": {
  1642. "php": ">=7.2.5",
  1643. "psr/container": "^1.1 || ^2.0"
  1644. },
  1645. "require-dev": {
  1646. "symfony/phpunit-bridge": "^5.4@dev"
  1647. },
  1648. "time": "2021-10-28T11:13:42+00:00",
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "3.4.x-dev"
  1653. }
  1654. },
  1655. "installation-source": "dist",
  1656. "autoload": {
  1657. "psr-0": {
  1658. "Pimple": "src/"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Fabien Potencier",
  1668. "email": "fabien@symfony.com"
  1669. }
  1670. ],
  1671. "description": "Pimple, a simple Dependency Injection Container",
  1672. "homepage": "https://pimple.symfony.com",
  1673. "keywords": [
  1674. "container",
  1675. "dependency injection"
  1676. ],
  1677. "support": {
  1678. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1679. },
  1680. "install-path": "../pimple/pimple"
  1681. },
  1682. {
  1683. "name": "psr/cache",
  1684. "version": "1.0.1",
  1685. "version_normalized": "1.0.1.0",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/php-fig/cache.git",
  1689. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1694. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1695. "shasum": "",
  1696. "mirrors": [
  1697. {
  1698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1699. "preferred": true
  1700. }
  1701. ]
  1702. },
  1703. "require": {
  1704. "php": ">=5.3.0"
  1705. },
  1706. "time": "2016-08-06T20:24:11+00:00",
  1707. "type": "library",
  1708. "extra": {
  1709. "branch-alias": {
  1710. "dev-master": "1.0.x-dev"
  1711. }
  1712. },
  1713. "installation-source": "dist",
  1714. "autoload": {
  1715. "psr-4": {
  1716. "Psr\\Cache\\": "src/"
  1717. }
  1718. },
  1719. "notification-url": "https://packagist.org/downloads/",
  1720. "license": [
  1721. "MIT"
  1722. ],
  1723. "authors": [
  1724. {
  1725. "name": "PHP-FIG",
  1726. "homepage": "http://www.php-fig.org/"
  1727. }
  1728. ],
  1729. "description": "Common interface for caching libraries",
  1730. "keywords": [
  1731. "cache",
  1732. "psr",
  1733. "psr-6"
  1734. ],
  1735. "support": {
  1736. "source": "https://github.com/php-fig/cache/tree/master"
  1737. },
  1738. "install-path": "../psr/cache"
  1739. },
  1740. {
  1741. "name": "psr/container",
  1742. "version": "2.0.1",
  1743. "version_normalized": "2.0.1.0",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/php-fig/container.git",
  1747. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/php-fig/container/zipball/2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  1752. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  1753. "shasum": "",
  1754. "mirrors": [
  1755. {
  1756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1757. "preferred": true
  1758. }
  1759. ]
  1760. },
  1761. "require": {
  1762. "php": ">=7.2.0"
  1763. },
  1764. "time": "2021-03-24T13:40:57+00:00",
  1765. "type": "library",
  1766. "extra": {
  1767. "branch-alias": {
  1768. "dev-master": "2.0.x-dev"
  1769. }
  1770. },
  1771. "installation-source": "dist",
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Psr\\Container\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "PHP-FIG",
  1784. "homepage": "https://www.php-fig.org/"
  1785. }
  1786. ],
  1787. "description": "Common Container Interface (PHP FIG PSR-11)",
  1788. "homepage": "https://github.com/php-fig/container",
  1789. "keywords": [
  1790. "PSR-11",
  1791. "container",
  1792. "container-interface",
  1793. "container-interop",
  1794. "psr"
  1795. ],
  1796. "support": {
  1797. "issues": "https://github.com/php-fig/container/issues",
  1798. "source": "https://github.com/php-fig/container/tree/2.0.1"
  1799. },
  1800. "install-path": "../psr/container"
  1801. },
  1802. {
  1803. "name": "psr/http-message",
  1804. "version": "1.0.1",
  1805. "version_normalized": "1.0.1.0",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/php-fig/http-message.git",
  1809. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1814. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1815. "shasum": "",
  1816. "mirrors": [
  1817. {
  1818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1819. "preferred": true
  1820. }
  1821. ]
  1822. },
  1823. "require": {
  1824. "php": ">=5.3.0"
  1825. },
  1826. "time": "2016-08-06T14:39:51+00:00",
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "1.0.x-dev"
  1831. }
  1832. },
  1833. "installation-source": "dist",
  1834. "autoload": {
  1835. "psr-4": {
  1836. "Psr\\Http\\Message\\": "src/"
  1837. }
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT"
  1842. ],
  1843. "authors": [
  1844. {
  1845. "name": "PHP-FIG",
  1846. "homepage": "http://www.php-fig.org/"
  1847. }
  1848. ],
  1849. "description": "Common interface for HTTP messages",
  1850. "homepage": "https://github.com/php-fig/http-message",
  1851. "keywords": [
  1852. "http",
  1853. "http-message",
  1854. "psr",
  1855. "psr-7",
  1856. "request",
  1857. "response"
  1858. ],
  1859. "support": {
  1860. "source": "https://github.com/php-fig/http-message/tree/master"
  1861. },
  1862. "install-path": "../psr/http-message"
  1863. },
  1864. {
  1865. "name": "psr/log",
  1866. "version": "1.1.4",
  1867. "version_normalized": "1.1.4.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/php-fig/log.git",
  1871. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1876. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1877. "shasum": "",
  1878. "mirrors": [
  1879. {
  1880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1881. "preferred": true
  1882. }
  1883. ]
  1884. },
  1885. "require": {
  1886. "php": ">=5.3.0"
  1887. },
  1888. "time": "2021-05-03T11:20:27+00:00",
  1889. "type": "library",
  1890. "extra": {
  1891. "branch-alias": {
  1892. "dev-master": "1.1.x-dev"
  1893. }
  1894. },
  1895. "installation-source": "dist",
  1896. "autoload": {
  1897. "psr-4": {
  1898. "Psr\\Log\\": "Psr/Log/"
  1899. }
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "MIT"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "PHP-FIG",
  1908. "homepage": "https://www.php-fig.org/"
  1909. }
  1910. ],
  1911. "description": "Common interface for logging libraries",
  1912. "homepage": "https://github.com/php-fig/log",
  1913. "keywords": [
  1914. "log",
  1915. "psr",
  1916. "psr-3"
  1917. ],
  1918. "support": {
  1919. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1920. },
  1921. "install-path": "../psr/log"
  1922. },
  1923. {
  1924. "name": "psr/simple-cache",
  1925. "version": "1.0.1",
  1926. "version_normalized": "1.0.1.0",
  1927. "source": {
  1928. "type": "git",
  1929. "url": "https://github.com/php-fig/simple-cache.git",
  1930. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1931. },
  1932. "dist": {
  1933. "type": "zip",
  1934. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1935. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1936. "shasum": "",
  1937. "mirrors": [
  1938. {
  1939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1940. "preferred": true
  1941. }
  1942. ]
  1943. },
  1944. "require": {
  1945. "php": ">=5.3.0"
  1946. },
  1947. "time": "2017-10-23T01:57:42+00:00",
  1948. "type": "library",
  1949. "extra": {
  1950. "branch-alias": {
  1951. "dev-master": "1.0.x-dev"
  1952. }
  1953. },
  1954. "installation-source": "dist",
  1955. "autoload": {
  1956. "psr-4": {
  1957. "Psr\\SimpleCache\\": "src/"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "PHP-FIG",
  1967. "homepage": "http://www.php-fig.org/"
  1968. }
  1969. ],
  1970. "description": "Common interfaces for simple caching",
  1971. "keywords": [
  1972. "cache",
  1973. "caching",
  1974. "psr",
  1975. "psr-16",
  1976. "simple-cache"
  1977. ],
  1978. "support": {
  1979. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1980. },
  1981. "install-path": "../psr/simple-cache"
  1982. },
  1983. {
  1984. "name": "ralouphie/getallheaders",
  1985. "version": "3.0.3",
  1986. "version_normalized": "3.0.3.0",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/ralouphie/getallheaders.git",
  1990. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1995. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1996. "shasum": "",
  1997. "mirrors": [
  1998. {
  1999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2000. "preferred": true
  2001. }
  2002. ]
  2003. },
  2004. "require": {
  2005. "php": ">=5.6"
  2006. },
  2007. "require-dev": {
  2008. "php-coveralls/php-coveralls": "^2.1",
  2009. "phpunit/phpunit": "^5 || ^6.5"
  2010. },
  2011. "time": "2019-03-08T08:55:37+00:00",
  2012. "type": "library",
  2013. "installation-source": "dist",
  2014. "autoload": {
  2015. "files": [
  2016. "src/getallheaders.php"
  2017. ]
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Ralph Khattar",
  2026. "email": "ralph.khattar@gmail.com"
  2027. }
  2028. ],
  2029. "description": "A polyfill for getallheaders.",
  2030. "support": {
  2031. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2032. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2033. },
  2034. "install-path": "../ralouphie/getallheaders"
  2035. },
  2036. {
  2037. "name": "symfony/cache",
  2038. "version": "v4.4.48",
  2039. "version_normalized": "4.4.48.0",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/symfony/cache.git",
  2043. "reference": "3b98ed664887ad197b8ede3da2432787212eb915"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/symfony/cache/zipball/3b98ed664887ad197b8ede3da2432787212eb915",
  2048. "reference": "3b98ed664887ad197b8ede3da2432787212eb915",
  2049. "shasum": "",
  2050. "mirrors": [
  2051. {
  2052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2053. "preferred": true
  2054. }
  2055. ]
  2056. },
  2057. "require": {
  2058. "php": ">=7.1.3",
  2059. "psr/cache": "^1.0|^2.0",
  2060. "psr/log": "^1|^2|^3",
  2061. "symfony/cache-contracts": "^1.1.7|^2",
  2062. "symfony/polyfill-php73": "^1.9",
  2063. "symfony/polyfill-php80": "^1.16",
  2064. "symfony/service-contracts": "^1.1|^2",
  2065. "symfony/var-exporter": "^4.2|^5.0"
  2066. },
  2067. "conflict": {
  2068. "doctrine/dbal": "<2.7",
  2069. "symfony/dependency-injection": "<3.4",
  2070. "symfony/http-kernel": "<4.4|>=5.0",
  2071. "symfony/var-dumper": "<4.4"
  2072. },
  2073. "provide": {
  2074. "psr/cache-implementation": "1.0|2.0",
  2075. "psr/simple-cache-implementation": "1.0|2.0",
  2076. "symfony/cache-implementation": "1.0|2.0"
  2077. },
  2078. "require-dev": {
  2079. "cache/integration-tests": "dev-master",
  2080. "doctrine/cache": "^1.6|^2.0",
  2081. "doctrine/dbal": "^2.7|^3.0",
  2082. "predis/predis": "^1.1",
  2083. "psr/simple-cache": "^1.0|^2.0",
  2084. "symfony/config": "^4.2|^5.0",
  2085. "symfony/dependency-injection": "^3.4|^4.1|^5.0",
  2086. "symfony/filesystem": "^4.4|^5.0",
  2087. "symfony/http-kernel": "^4.4",
  2088. "symfony/var-dumper": "^4.4|^5.0"
  2089. },
  2090. "time": "2022-10-17T20:21:54+00:00",
  2091. "type": "library",
  2092. "installation-source": "dist",
  2093. "autoload": {
  2094. "psr-4": {
  2095. "Symfony\\Component\\Cache\\": ""
  2096. },
  2097. "exclude-from-classmap": [
  2098. "/Tests/"
  2099. ]
  2100. },
  2101. "notification-url": "https://packagist.org/downloads/",
  2102. "license": [
  2103. "MIT"
  2104. ],
  2105. "authors": [
  2106. {
  2107. "name": "Nicolas Grekas",
  2108. "email": "p@tchwork.com"
  2109. },
  2110. {
  2111. "name": "Symfony Community",
  2112. "homepage": "https://symfony.com/contributors"
  2113. }
  2114. ],
  2115. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2116. "homepage": "https://symfony.com",
  2117. "keywords": [
  2118. "caching",
  2119. "psr6"
  2120. ],
  2121. "support": {
  2122. "source": "https://github.com/symfony/cache/tree/v4.4.48"
  2123. },
  2124. "funding": [
  2125. {
  2126. "url": "https://symfony.com/sponsor",
  2127. "type": "custom"
  2128. },
  2129. {
  2130. "url": "https://github.com/fabpot",
  2131. "type": "github"
  2132. },
  2133. {
  2134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2135. "type": "tidelift"
  2136. }
  2137. ],
  2138. "install-path": "../symfony/cache"
  2139. },
  2140. {
  2141. "name": "symfony/cache-contracts",
  2142. "version": "v2.5.2",
  2143. "version_normalized": "2.5.2.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://github.com/symfony/cache-contracts.git",
  2147. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2152. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2153. "shasum": "",
  2154. "mirrors": [
  2155. {
  2156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2157. "preferred": true
  2158. }
  2159. ]
  2160. },
  2161. "require": {
  2162. "php": ">=7.2.5",
  2163. "psr/cache": "^1.0|^2.0|^3.0"
  2164. },
  2165. "suggest": {
  2166. "symfony/cache-implementation": ""
  2167. },
  2168. "time": "2022-01-02T09:53:40+00:00",
  2169. "type": "library",
  2170. "extra": {
  2171. "branch-alias": {
  2172. "dev-main": "2.5-dev"
  2173. },
  2174. "thanks": {
  2175. "name": "symfony/contracts",
  2176. "url": "https://github.com/symfony/contracts"
  2177. }
  2178. },
  2179. "installation-source": "dist",
  2180. "autoload": {
  2181. "psr-4": {
  2182. "Symfony\\Contracts\\Cache\\": ""
  2183. }
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "Nicolas Grekas",
  2192. "email": "p@tchwork.com"
  2193. },
  2194. {
  2195. "name": "Symfony Community",
  2196. "homepage": "https://symfony.com/contributors"
  2197. }
  2198. ],
  2199. "description": "Generic abstractions related to caching",
  2200. "homepage": "https://symfony.com",
  2201. "keywords": [
  2202. "abstractions",
  2203. "contracts",
  2204. "decoupling",
  2205. "interfaces",
  2206. "interoperability",
  2207. "standards"
  2208. ],
  2209. "support": {
  2210. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  2211. },
  2212. "funding": [
  2213. {
  2214. "url": "https://symfony.com/sponsor",
  2215. "type": "custom"
  2216. },
  2217. {
  2218. "url": "https://github.com/fabpot",
  2219. "type": "github"
  2220. },
  2221. {
  2222. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2223. "type": "tidelift"
  2224. }
  2225. ],
  2226. "install-path": "../symfony/cache-contracts"
  2227. },
  2228. {
  2229. "name": "symfony/deprecation-contracts",
  2230. "version": "v2.5.2",
  2231. "version_normalized": "2.5.2.0",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/symfony/deprecation-contracts.git",
  2235. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2240. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2241. "shasum": "",
  2242. "mirrors": [
  2243. {
  2244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2245. "preferred": true
  2246. }
  2247. ]
  2248. },
  2249. "require": {
  2250. "php": ">=7.1"
  2251. },
  2252. "time": "2022-01-02T09:53:40+00:00",
  2253. "type": "library",
  2254. "extra": {
  2255. "branch-alias": {
  2256. "dev-main": "2.5-dev"
  2257. },
  2258. "thanks": {
  2259. "name": "symfony/contracts",
  2260. "url": "https://github.com/symfony/contracts"
  2261. }
  2262. },
  2263. "installation-source": "dist",
  2264. "autoload": {
  2265. "files": [
  2266. "function.php"
  2267. ]
  2268. },
  2269. "notification-url": "https://packagist.org/downloads/",
  2270. "license": [
  2271. "MIT"
  2272. ],
  2273. "authors": [
  2274. {
  2275. "name": "Nicolas Grekas",
  2276. "email": "p@tchwork.com"
  2277. },
  2278. {
  2279. "name": "Symfony Community",
  2280. "homepage": "https://symfony.com/contributors"
  2281. }
  2282. ],
  2283. "description": "A generic function and convention to trigger deprecation notices",
  2284. "homepage": "https://symfony.com",
  2285. "support": {
  2286. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2287. },
  2288. "funding": [
  2289. {
  2290. "url": "https://symfony.com/sponsor",
  2291. "type": "custom"
  2292. },
  2293. {
  2294. "url": "https://github.com/fabpot",
  2295. "type": "github"
  2296. },
  2297. {
  2298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2299. "type": "tidelift"
  2300. }
  2301. ],
  2302. "install-path": "../symfony/deprecation-contracts"
  2303. },
  2304. {
  2305. "name": "symfony/event-dispatcher",
  2306. "version": "v4.4.44",
  2307. "version_normalized": "4.4.44.0",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/symfony/event-dispatcher.git",
  2311. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2316. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  2317. "shasum": "",
  2318. "mirrors": [
  2319. {
  2320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2321. "preferred": true
  2322. }
  2323. ]
  2324. },
  2325. "require": {
  2326. "php": ">=7.1.3",
  2327. "symfony/event-dispatcher-contracts": "^1.1",
  2328. "symfony/polyfill-php80": "^1.16"
  2329. },
  2330. "conflict": {
  2331. "symfony/dependency-injection": "<3.4"
  2332. },
  2333. "provide": {
  2334. "psr/event-dispatcher-implementation": "1.0",
  2335. "symfony/event-dispatcher-implementation": "1.1"
  2336. },
  2337. "require-dev": {
  2338. "psr/log": "^1|^2|^3",
  2339. "symfony/config": "^3.4|^4.0|^5.0",
  2340. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2341. "symfony/error-handler": "~3.4|~4.4",
  2342. "symfony/expression-language": "^3.4|^4.0|^5.0",
  2343. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  2344. "symfony/service-contracts": "^1.1|^2",
  2345. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  2346. },
  2347. "suggest": {
  2348. "symfony/dependency-injection": "",
  2349. "symfony/http-kernel": ""
  2350. },
  2351. "time": "2022-07-20T09:59:04+00:00",
  2352. "type": "library",
  2353. "installation-source": "dist",
  2354. "autoload": {
  2355. "psr-4": {
  2356. "Symfony\\Component\\EventDispatcher\\": ""
  2357. },
  2358. "exclude-from-classmap": [
  2359. "/Tests/"
  2360. ]
  2361. },
  2362. "notification-url": "https://packagist.org/downloads/",
  2363. "license": [
  2364. "MIT"
  2365. ],
  2366. "authors": [
  2367. {
  2368. "name": "Fabien Potencier",
  2369. "email": "fabien@symfony.com"
  2370. },
  2371. {
  2372. "name": "Symfony Community",
  2373. "homepage": "https://symfony.com/contributors"
  2374. }
  2375. ],
  2376. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2377. "homepage": "https://symfony.com",
  2378. "support": {
  2379. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  2380. },
  2381. "funding": [
  2382. {
  2383. "url": "https://symfony.com/sponsor",
  2384. "type": "custom"
  2385. },
  2386. {
  2387. "url": "https://github.com/fabpot",
  2388. "type": "github"
  2389. },
  2390. {
  2391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2392. "type": "tidelift"
  2393. }
  2394. ],
  2395. "install-path": "../symfony/event-dispatcher"
  2396. },
  2397. {
  2398. "name": "symfony/event-dispatcher-contracts",
  2399. "version": "v1.1.13",
  2400. "version_normalized": "1.1.13.0",
  2401. "source": {
  2402. "type": "git",
  2403. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2404. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  2405. },
  2406. "dist": {
  2407. "type": "zip",
  2408. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  2409. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  2410. "shasum": "",
  2411. "mirrors": [
  2412. {
  2413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2414. "preferred": true
  2415. }
  2416. ]
  2417. },
  2418. "require": {
  2419. "php": ">=7.1.3"
  2420. },
  2421. "suggest": {
  2422. "psr/event-dispatcher": "",
  2423. "symfony/event-dispatcher-implementation": ""
  2424. },
  2425. "time": "2022-01-02T09:41:36+00:00",
  2426. "type": "library",
  2427. "extra": {
  2428. "branch-alias": {
  2429. "dev-main": "1.1-dev"
  2430. },
  2431. "thanks": {
  2432. "name": "symfony/contracts",
  2433. "url": "https://github.com/symfony/contracts"
  2434. }
  2435. },
  2436. "installation-source": "dist",
  2437. "autoload": {
  2438. "psr-4": {
  2439. "Symfony\\Contracts\\EventDispatcher\\": ""
  2440. }
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "MIT"
  2445. ],
  2446. "authors": [
  2447. {
  2448. "name": "Nicolas Grekas",
  2449. "email": "p@tchwork.com"
  2450. },
  2451. {
  2452. "name": "Symfony Community",
  2453. "homepage": "https://symfony.com/contributors"
  2454. }
  2455. ],
  2456. "description": "Generic abstractions related to dispatching event",
  2457. "homepage": "https://symfony.com",
  2458. "keywords": [
  2459. "abstractions",
  2460. "contracts",
  2461. "decoupling",
  2462. "interfaces",
  2463. "interoperability",
  2464. "standards"
  2465. ],
  2466. "support": {
  2467. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  2468. },
  2469. "funding": [
  2470. {
  2471. "url": "https://symfony.com/sponsor",
  2472. "type": "custom"
  2473. },
  2474. {
  2475. "url": "https://github.com/fabpot",
  2476. "type": "github"
  2477. },
  2478. {
  2479. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2480. "type": "tidelift"
  2481. }
  2482. ],
  2483. "install-path": "../symfony/event-dispatcher-contracts"
  2484. },
  2485. {
  2486. "name": "symfony/finder",
  2487. "version": "v5.4.17",
  2488. "version_normalized": "5.4.17.0",
  2489. "source": {
  2490. "type": "git",
  2491. "url": "https://github.com/symfony/finder.git",
  2492. "reference": "40c08632019838dfb3350f18cf5563b8080055fc"
  2493. },
  2494. "dist": {
  2495. "type": "zip",
  2496. "url": "https://api.github.com/repos/symfony/finder/zipball/40c08632019838dfb3350f18cf5563b8080055fc",
  2497. "reference": "40c08632019838dfb3350f18cf5563b8080055fc",
  2498. "shasum": "",
  2499. "mirrors": [
  2500. {
  2501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2502. "preferred": true
  2503. }
  2504. ]
  2505. },
  2506. "require": {
  2507. "php": ">=7.2.5",
  2508. "symfony/deprecation-contracts": "^2.1|^3",
  2509. "symfony/polyfill-php80": "^1.16"
  2510. },
  2511. "time": "2022-12-22T10:31:03+00:00",
  2512. "type": "library",
  2513. "installation-source": "dist",
  2514. "autoload": {
  2515. "psr-4": {
  2516. "Symfony\\Component\\Finder\\": ""
  2517. },
  2518. "exclude-from-classmap": [
  2519. "/Tests/"
  2520. ]
  2521. },
  2522. "notification-url": "https://packagist.org/downloads/",
  2523. "license": [
  2524. "MIT"
  2525. ],
  2526. "authors": [
  2527. {
  2528. "name": "Fabien Potencier",
  2529. "email": "fabien@symfony.com"
  2530. },
  2531. {
  2532. "name": "Symfony Community",
  2533. "homepage": "https://symfony.com/contributors"
  2534. }
  2535. ],
  2536. "description": "Finds files and directories via an intuitive fluent interface",
  2537. "homepage": "https://symfony.com",
  2538. "support": {
  2539. "source": "https://github.com/symfony/finder/tree/v5.4.17"
  2540. },
  2541. "funding": [
  2542. {
  2543. "url": "https://symfony.com/sponsor",
  2544. "type": "custom"
  2545. },
  2546. {
  2547. "url": "https://github.com/fabpot",
  2548. "type": "github"
  2549. },
  2550. {
  2551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2552. "type": "tidelift"
  2553. }
  2554. ],
  2555. "install-path": "../symfony/finder"
  2556. },
  2557. {
  2558. "name": "symfony/http-foundation",
  2559. "version": "v4.4.49",
  2560. "version_normalized": "4.4.49.0",
  2561. "source": {
  2562. "type": "git",
  2563. "url": "https://github.com/symfony/http-foundation.git",
  2564. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  2565. },
  2566. "dist": {
  2567. "type": "zip",
  2568. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  2569. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  2570. "shasum": "",
  2571. "mirrors": [
  2572. {
  2573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2574. "preferred": true
  2575. }
  2576. ]
  2577. },
  2578. "require": {
  2579. "php": ">=7.1.3",
  2580. "symfony/mime": "^4.3|^5.0",
  2581. "symfony/polyfill-mbstring": "~1.1",
  2582. "symfony/polyfill-php80": "^1.16"
  2583. },
  2584. "require-dev": {
  2585. "predis/predis": "~1.0",
  2586. "symfony/expression-language": "^3.4|^4.0|^5.0"
  2587. },
  2588. "time": "2022-11-04T16:17:57+00:00",
  2589. "type": "library",
  2590. "installation-source": "dist",
  2591. "autoload": {
  2592. "psr-4": {
  2593. "Symfony\\Component\\HttpFoundation\\": ""
  2594. },
  2595. "exclude-from-classmap": [
  2596. "/Tests/"
  2597. ]
  2598. },
  2599. "notification-url": "https://packagist.org/downloads/",
  2600. "license": [
  2601. "MIT"
  2602. ],
  2603. "authors": [
  2604. {
  2605. "name": "Fabien Potencier",
  2606. "email": "fabien@symfony.com"
  2607. },
  2608. {
  2609. "name": "Symfony Community",
  2610. "homepage": "https://symfony.com/contributors"
  2611. }
  2612. ],
  2613. "description": "Defines an object-oriented layer for the HTTP specification",
  2614. "homepage": "https://symfony.com",
  2615. "support": {
  2616. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  2617. },
  2618. "funding": [
  2619. {
  2620. "url": "https://symfony.com/sponsor",
  2621. "type": "custom"
  2622. },
  2623. {
  2624. "url": "https://github.com/fabpot",
  2625. "type": "github"
  2626. },
  2627. {
  2628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2629. "type": "tidelift"
  2630. }
  2631. ],
  2632. "install-path": "../symfony/http-foundation"
  2633. },
  2634. {
  2635. "name": "symfony/mime",
  2636. "version": "v5.4.17",
  2637. "version_normalized": "5.4.17.0",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://github.com/symfony/mime.git",
  2641. "reference": "2a83d82efc91c3f03a23c8b47a896df168aa5c63"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://api.github.com/repos/symfony/mime/zipball/2a83d82efc91c3f03a23c8b47a896df168aa5c63",
  2646. "reference": "2a83d82efc91c3f03a23c8b47a896df168aa5c63",
  2647. "shasum": "",
  2648. "mirrors": [
  2649. {
  2650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2651. "preferred": true
  2652. }
  2653. ]
  2654. },
  2655. "require": {
  2656. "php": ">=7.2.5",
  2657. "symfony/deprecation-contracts": "^2.1|^3",
  2658. "symfony/polyfill-intl-idn": "^1.10",
  2659. "symfony/polyfill-mbstring": "^1.0",
  2660. "symfony/polyfill-php80": "^1.16"
  2661. },
  2662. "conflict": {
  2663. "egulias/email-validator": "~3.0.0",
  2664. "phpdocumentor/reflection-docblock": "<3.2.2",
  2665. "phpdocumentor/type-resolver": "<1.4.0",
  2666. "symfony/mailer": "<4.4",
  2667. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  2668. },
  2669. "require-dev": {
  2670. "egulias/email-validator": "^2.1.10|^3.1",
  2671. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  2672. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2673. "symfony/property-access": "^4.4|^5.1|^6.0",
  2674. "symfony/property-info": "^4.4|^5.1|^6.0",
  2675. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  2676. },
  2677. "time": "2022-12-13T09:59:55+00:00",
  2678. "type": "library",
  2679. "installation-source": "dist",
  2680. "autoload": {
  2681. "psr-4": {
  2682. "Symfony\\Component\\Mime\\": ""
  2683. },
  2684. "exclude-from-classmap": [
  2685. "/Tests/"
  2686. ]
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "MIT"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "Fabien Potencier",
  2695. "email": "fabien@symfony.com"
  2696. },
  2697. {
  2698. "name": "Symfony Community",
  2699. "homepage": "https://symfony.com/contributors"
  2700. }
  2701. ],
  2702. "description": "Allows manipulating MIME messages",
  2703. "homepage": "https://symfony.com",
  2704. "keywords": [
  2705. "mime",
  2706. "mime-type"
  2707. ],
  2708. "support": {
  2709. "source": "https://github.com/symfony/mime/tree/v5.4.17"
  2710. },
  2711. "funding": [
  2712. {
  2713. "url": "https://symfony.com/sponsor",
  2714. "type": "custom"
  2715. },
  2716. {
  2717. "url": "https://github.com/fabpot",
  2718. "type": "github"
  2719. },
  2720. {
  2721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2722. "type": "tidelift"
  2723. }
  2724. ],
  2725. "install-path": "../symfony/mime"
  2726. },
  2727. {
  2728. "name": "symfony/polyfill-intl-idn",
  2729. "version": "v1.27.0",
  2730. "version_normalized": "1.27.0.0",
  2731. "source": {
  2732. "type": "git",
  2733. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2734. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  2735. },
  2736. "dist": {
  2737. "type": "zip",
  2738. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  2739. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  2740. "shasum": "",
  2741. "mirrors": [
  2742. {
  2743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2744. "preferred": true
  2745. }
  2746. ]
  2747. },
  2748. "require": {
  2749. "php": ">=7.1",
  2750. "symfony/polyfill-intl-normalizer": "^1.10",
  2751. "symfony/polyfill-php72": "^1.10"
  2752. },
  2753. "suggest": {
  2754. "ext-intl": "For best performance"
  2755. },
  2756. "time": "2022-11-03T14:55:06+00:00",
  2757. "type": "library",
  2758. "extra": {
  2759. "branch-alias": {
  2760. "dev-main": "1.27-dev"
  2761. },
  2762. "thanks": {
  2763. "name": "symfony/polyfill",
  2764. "url": "https://github.com/symfony/polyfill"
  2765. }
  2766. },
  2767. "installation-source": "dist",
  2768. "autoload": {
  2769. "files": [
  2770. "bootstrap.php"
  2771. ],
  2772. "psr-4": {
  2773. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2774. }
  2775. },
  2776. "notification-url": "https://packagist.org/downloads/",
  2777. "license": [
  2778. "MIT"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "Laurent Bassin",
  2783. "email": "laurent@bassin.info"
  2784. },
  2785. {
  2786. "name": "Trevor Rowbotham",
  2787. "email": "trevor.rowbotham@pm.me"
  2788. },
  2789. {
  2790. "name": "Symfony Community",
  2791. "homepage": "https://symfony.com/contributors"
  2792. }
  2793. ],
  2794. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2795. "homepage": "https://symfony.com",
  2796. "keywords": [
  2797. "compatibility",
  2798. "idn",
  2799. "intl",
  2800. "polyfill",
  2801. "portable",
  2802. "shim"
  2803. ],
  2804. "support": {
  2805. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  2806. },
  2807. "funding": [
  2808. {
  2809. "url": "https://symfony.com/sponsor",
  2810. "type": "custom"
  2811. },
  2812. {
  2813. "url": "https://github.com/fabpot",
  2814. "type": "github"
  2815. },
  2816. {
  2817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2818. "type": "tidelift"
  2819. }
  2820. ],
  2821. "install-path": "../symfony/polyfill-intl-idn"
  2822. },
  2823. {
  2824. "name": "symfony/polyfill-intl-normalizer",
  2825. "version": "v1.27.0",
  2826. "version_normalized": "1.27.0.0",
  2827. "source": {
  2828. "type": "git",
  2829. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2830. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  2831. },
  2832. "dist": {
  2833. "type": "zip",
  2834. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  2835. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  2836. "shasum": "",
  2837. "mirrors": [
  2838. {
  2839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2840. "preferred": true
  2841. }
  2842. ]
  2843. },
  2844. "require": {
  2845. "php": ">=7.1"
  2846. },
  2847. "suggest": {
  2848. "ext-intl": "For best performance"
  2849. },
  2850. "time": "2022-11-03T14:55:06+00:00",
  2851. "type": "library",
  2852. "extra": {
  2853. "branch-alias": {
  2854. "dev-main": "1.27-dev"
  2855. },
  2856. "thanks": {
  2857. "name": "symfony/polyfill",
  2858. "url": "https://github.com/symfony/polyfill"
  2859. }
  2860. },
  2861. "installation-source": "dist",
  2862. "autoload": {
  2863. "files": [
  2864. "bootstrap.php"
  2865. ],
  2866. "psr-4": {
  2867. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2868. },
  2869. "classmap": [
  2870. "Resources/stubs"
  2871. ]
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Nicolas Grekas",
  2880. "email": "p@tchwork.com"
  2881. },
  2882. {
  2883. "name": "Symfony Community",
  2884. "homepage": "https://symfony.com/contributors"
  2885. }
  2886. ],
  2887. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2888. "homepage": "https://symfony.com",
  2889. "keywords": [
  2890. "compatibility",
  2891. "intl",
  2892. "normalizer",
  2893. "polyfill",
  2894. "portable",
  2895. "shim"
  2896. ],
  2897. "support": {
  2898. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  2899. },
  2900. "funding": [
  2901. {
  2902. "url": "https://symfony.com/sponsor",
  2903. "type": "custom"
  2904. },
  2905. {
  2906. "url": "https://github.com/fabpot",
  2907. "type": "github"
  2908. },
  2909. {
  2910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2911. "type": "tidelift"
  2912. }
  2913. ],
  2914. "install-path": "../symfony/polyfill-intl-normalizer"
  2915. },
  2916. {
  2917. "name": "symfony/polyfill-mbstring",
  2918. "version": "v1.27.0",
  2919. "version_normalized": "1.27.0.0",
  2920. "source": {
  2921. "type": "git",
  2922. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2923. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  2924. },
  2925. "dist": {
  2926. "type": "zip",
  2927. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2928. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2929. "shasum": "",
  2930. "mirrors": [
  2931. {
  2932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2933. "preferred": true
  2934. }
  2935. ]
  2936. },
  2937. "require": {
  2938. "php": ">=7.1"
  2939. },
  2940. "provide": {
  2941. "ext-mbstring": "*"
  2942. },
  2943. "suggest": {
  2944. "ext-mbstring": "For best performance"
  2945. },
  2946. "time": "2022-11-03T14:55:06+00:00",
  2947. "type": "library",
  2948. "extra": {
  2949. "branch-alias": {
  2950. "dev-main": "1.27-dev"
  2951. },
  2952. "thanks": {
  2953. "name": "symfony/polyfill",
  2954. "url": "https://github.com/symfony/polyfill"
  2955. }
  2956. },
  2957. "installation-source": "dist",
  2958. "autoload": {
  2959. "files": [
  2960. "bootstrap.php"
  2961. ],
  2962. "psr-4": {
  2963. "Symfony\\Polyfill\\Mbstring\\": ""
  2964. }
  2965. },
  2966. "notification-url": "https://packagist.org/downloads/",
  2967. "license": [
  2968. "MIT"
  2969. ],
  2970. "authors": [
  2971. {
  2972. "name": "Nicolas Grekas",
  2973. "email": "p@tchwork.com"
  2974. },
  2975. {
  2976. "name": "Symfony Community",
  2977. "homepage": "https://symfony.com/contributors"
  2978. }
  2979. ],
  2980. "description": "Symfony polyfill for the Mbstring extension",
  2981. "homepage": "https://symfony.com",
  2982. "keywords": [
  2983. "compatibility",
  2984. "mbstring",
  2985. "polyfill",
  2986. "portable",
  2987. "shim"
  2988. ],
  2989. "support": {
  2990. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  2991. },
  2992. "funding": [
  2993. {
  2994. "url": "https://symfony.com/sponsor",
  2995. "type": "custom"
  2996. },
  2997. {
  2998. "url": "https://github.com/fabpot",
  2999. "type": "github"
  3000. },
  3001. {
  3002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3003. "type": "tidelift"
  3004. }
  3005. ],
  3006. "install-path": "../symfony/polyfill-mbstring"
  3007. },
  3008. {
  3009. "name": "symfony/polyfill-php72",
  3010. "version": "v1.27.0",
  3011. "version_normalized": "1.27.0.0",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/symfony/polyfill-php72.git",
  3015. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  3020. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  3021. "shasum": "",
  3022. "mirrors": [
  3023. {
  3024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3025. "preferred": true
  3026. }
  3027. ]
  3028. },
  3029. "require": {
  3030. "php": ">=7.1"
  3031. },
  3032. "time": "2022-11-03T14:55:06+00:00",
  3033. "type": "library",
  3034. "extra": {
  3035. "branch-alias": {
  3036. "dev-main": "1.27-dev"
  3037. },
  3038. "thanks": {
  3039. "name": "symfony/polyfill",
  3040. "url": "https://github.com/symfony/polyfill"
  3041. }
  3042. },
  3043. "installation-source": "dist",
  3044. "autoload": {
  3045. "files": [
  3046. "bootstrap.php"
  3047. ],
  3048. "psr-4": {
  3049. "Symfony\\Polyfill\\Php72\\": ""
  3050. }
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "MIT"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "Nicolas Grekas",
  3059. "email": "p@tchwork.com"
  3060. },
  3061. {
  3062. "name": "Symfony Community",
  3063. "homepage": "https://symfony.com/contributors"
  3064. }
  3065. ],
  3066. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3067. "homepage": "https://symfony.com",
  3068. "keywords": [
  3069. "compatibility",
  3070. "polyfill",
  3071. "portable",
  3072. "shim"
  3073. ],
  3074. "support": {
  3075. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  3076. },
  3077. "funding": [
  3078. {
  3079. "url": "https://symfony.com/sponsor",
  3080. "type": "custom"
  3081. },
  3082. {
  3083. "url": "https://github.com/fabpot",
  3084. "type": "github"
  3085. },
  3086. {
  3087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3088. "type": "tidelift"
  3089. }
  3090. ],
  3091. "install-path": "../symfony/polyfill-php72"
  3092. },
  3093. {
  3094. "name": "symfony/polyfill-php73",
  3095. "version": "v1.27.0",
  3096. "version_normalized": "1.27.0.0",
  3097. "source": {
  3098. "type": "git",
  3099. "url": "https://github.com/symfony/polyfill-php73.git",
  3100. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  3101. },
  3102. "dist": {
  3103. "type": "zip",
  3104. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  3105. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  3106. "shasum": "",
  3107. "mirrors": [
  3108. {
  3109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3110. "preferred": true
  3111. }
  3112. ]
  3113. },
  3114. "require": {
  3115. "php": ">=7.1"
  3116. },
  3117. "time": "2022-11-03T14:55:06+00:00",
  3118. "type": "library",
  3119. "extra": {
  3120. "branch-alias": {
  3121. "dev-main": "1.27-dev"
  3122. },
  3123. "thanks": {
  3124. "name": "symfony/polyfill",
  3125. "url": "https://github.com/symfony/polyfill"
  3126. }
  3127. },
  3128. "installation-source": "dist",
  3129. "autoload": {
  3130. "files": [
  3131. "bootstrap.php"
  3132. ],
  3133. "psr-4": {
  3134. "Symfony\\Polyfill\\Php73\\": ""
  3135. },
  3136. "classmap": [
  3137. "Resources/stubs"
  3138. ]
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Nicolas Grekas",
  3147. "email": "p@tchwork.com"
  3148. },
  3149. {
  3150. "name": "Symfony Community",
  3151. "homepage": "https://symfony.com/contributors"
  3152. }
  3153. ],
  3154. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3155. "homepage": "https://symfony.com",
  3156. "keywords": [
  3157. "compatibility",
  3158. "polyfill",
  3159. "portable",
  3160. "shim"
  3161. ],
  3162. "support": {
  3163. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  3164. },
  3165. "funding": [
  3166. {
  3167. "url": "https://symfony.com/sponsor",
  3168. "type": "custom"
  3169. },
  3170. {
  3171. "url": "https://github.com/fabpot",
  3172. "type": "github"
  3173. },
  3174. {
  3175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3176. "type": "tidelift"
  3177. }
  3178. ],
  3179. "install-path": "../symfony/polyfill-php73"
  3180. },
  3181. {
  3182. "name": "symfony/polyfill-php80",
  3183. "version": "v1.27.0",
  3184. "version_normalized": "1.27.0.0",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/symfony/polyfill-php80.git",
  3188. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  3193. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  3194. "shasum": "",
  3195. "mirrors": [
  3196. {
  3197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3198. "preferred": true
  3199. }
  3200. ]
  3201. },
  3202. "require": {
  3203. "php": ">=7.1"
  3204. },
  3205. "time": "2022-11-03T14:55:06+00:00",
  3206. "type": "library",
  3207. "extra": {
  3208. "branch-alias": {
  3209. "dev-main": "1.27-dev"
  3210. },
  3211. "thanks": {
  3212. "name": "symfony/polyfill",
  3213. "url": "https://github.com/symfony/polyfill"
  3214. }
  3215. },
  3216. "installation-source": "dist",
  3217. "autoload": {
  3218. "files": [
  3219. "bootstrap.php"
  3220. ],
  3221. "psr-4": {
  3222. "Symfony\\Polyfill\\Php80\\": ""
  3223. },
  3224. "classmap": [
  3225. "Resources/stubs"
  3226. ]
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Ion Bazan",
  3235. "email": "ion.bazan@gmail.com"
  3236. },
  3237. {
  3238. "name": "Nicolas Grekas",
  3239. "email": "p@tchwork.com"
  3240. },
  3241. {
  3242. "name": "Symfony Community",
  3243. "homepage": "https://symfony.com/contributors"
  3244. }
  3245. ],
  3246. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3247. "homepage": "https://symfony.com",
  3248. "keywords": [
  3249. "compatibility",
  3250. "polyfill",
  3251. "portable",
  3252. "shim"
  3253. ],
  3254. "support": {
  3255. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  3256. },
  3257. "funding": [
  3258. {
  3259. "url": "https://symfony.com/sponsor",
  3260. "type": "custom"
  3261. },
  3262. {
  3263. "url": "https://github.com/fabpot",
  3264. "type": "github"
  3265. },
  3266. {
  3267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3268. "type": "tidelift"
  3269. }
  3270. ],
  3271. "install-path": "../symfony/polyfill-php80"
  3272. },
  3273. {
  3274. "name": "symfony/psr-http-message-bridge",
  3275. "version": "v1.3.0",
  3276. "version_normalized": "1.3.0.0",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3280. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9d3e80d54d9ae747ad573cad796e8e247df7b796",
  3285. "reference": "9d3e80d54d9ae747ad573cad796e8e247df7b796",
  3286. "shasum": "",
  3287. "mirrors": [
  3288. {
  3289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3290. "preferred": true
  3291. }
  3292. ]
  3293. },
  3294. "require": {
  3295. "php": "^7.1",
  3296. "psr/http-message": "^1.0",
  3297. "symfony/http-foundation": "^4.4 || ^5.0"
  3298. },
  3299. "require-dev": {
  3300. "nyholm/psr7": "^1.1",
  3301. "symfony/phpunit-bridge": "^4.4 || ^5.0",
  3302. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  3303. },
  3304. "suggest": {
  3305. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3306. },
  3307. "time": "2019-11-25T19:33:50+00:00",
  3308. "type": "symfony-bridge",
  3309. "extra": {
  3310. "branch-alias": {
  3311. "dev-master": "1.3-dev"
  3312. }
  3313. },
  3314. "installation-source": "dist",
  3315. "autoload": {
  3316. "psr-4": {
  3317. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3318. },
  3319. "exclude-from-classmap": [
  3320. "/Tests/"
  3321. ]
  3322. },
  3323. "notification-url": "https://packagist.org/downloads/",
  3324. "license": [
  3325. "MIT"
  3326. ],
  3327. "authors": [
  3328. {
  3329. "name": "Fabien Potencier",
  3330. "email": "fabien@symfony.com"
  3331. },
  3332. {
  3333. "name": "Symfony Community",
  3334. "homepage": "http://symfony.com/contributors"
  3335. }
  3336. ],
  3337. "description": "PSR HTTP message bridge",
  3338. "homepage": "http://symfony.com",
  3339. "keywords": [
  3340. "http",
  3341. "http-message",
  3342. "psr-17",
  3343. "psr-7"
  3344. ],
  3345. "support": {
  3346. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  3347. "source": "https://github.com/symfony/psr-http-message-bridge/tree/master"
  3348. },
  3349. "install-path": "../symfony/psr-http-message-bridge"
  3350. },
  3351. {
  3352. "name": "symfony/service-contracts",
  3353. "version": "v1.1.2",
  3354. "version_normalized": "1.1.2.0",
  3355. "source": {
  3356. "type": "git",
  3357. "url": "https://github.com/symfony/service-contracts.git",
  3358. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  3359. },
  3360. "dist": {
  3361. "type": "zip",
  3362. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  3363. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  3364. "shasum": "",
  3365. "mirrors": [
  3366. {
  3367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3368. "preferred": true
  3369. }
  3370. ]
  3371. },
  3372. "require": {
  3373. "php": "^7.1.3"
  3374. },
  3375. "suggest": {
  3376. "psr/container": "",
  3377. "symfony/service-implementation": ""
  3378. },
  3379. "time": "2019-05-28T07:50:59+00:00",
  3380. "type": "library",
  3381. "extra": {
  3382. "branch-alias": {
  3383. "dev-master": "1.1-dev"
  3384. }
  3385. },
  3386. "installation-source": "dist",
  3387. "autoload": {
  3388. "psr-4": {
  3389. "Symfony\\Contracts\\Service\\": ""
  3390. }
  3391. },
  3392. "notification-url": "https://packagist.org/downloads/",
  3393. "license": [
  3394. "MIT"
  3395. ],
  3396. "authors": [
  3397. {
  3398. "name": "Nicolas Grekas",
  3399. "email": "p@tchwork.com"
  3400. },
  3401. {
  3402. "name": "Symfony Community",
  3403. "homepage": "https://symfony.com/contributors"
  3404. }
  3405. ],
  3406. "description": "Generic abstractions related to writing services",
  3407. "homepage": "https://symfony.com",
  3408. "keywords": [
  3409. "abstractions",
  3410. "contracts",
  3411. "decoupling",
  3412. "interfaces",
  3413. "interoperability",
  3414. "standards"
  3415. ],
  3416. "support": {
  3417. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  3418. },
  3419. "install-path": "../symfony/service-contracts"
  3420. },
  3421. {
  3422. "name": "symfony/translation",
  3423. "version": "v5.4.14",
  3424. "version_normalized": "5.4.14.0",
  3425. "source": {
  3426. "type": "git",
  3427. "url": "https://github.com/symfony/translation.git",
  3428. "reference": "f0ed07675863aa6e3939df8b1bc879450b585cab"
  3429. },
  3430. "dist": {
  3431. "type": "zip",
  3432. "url": "https://api.github.com/repos/symfony/translation/zipball/f0ed07675863aa6e3939df8b1bc879450b585cab",
  3433. "reference": "f0ed07675863aa6e3939df8b1bc879450b585cab",
  3434. "shasum": "",
  3435. "mirrors": [
  3436. {
  3437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3438. "preferred": true
  3439. }
  3440. ]
  3441. },
  3442. "require": {
  3443. "php": ">=7.2.5",
  3444. "symfony/deprecation-contracts": "^2.1|^3",
  3445. "symfony/polyfill-mbstring": "~1.0",
  3446. "symfony/polyfill-php80": "^1.16",
  3447. "symfony/translation-contracts": "^2.3"
  3448. },
  3449. "conflict": {
  3450. "symfony/config": "<4.4",
  3451. "symfony/console": "<5.3",
  3452. "symfony/dependency-injection": "<5.0",
  3453. "symfony/http-kernel": "<5.0",
  3454. "symfony/twig-bundle": "<5.0",
  3455. "symfony/yaml": "<4.4"
  3456. },
  3457. "provide": {
  3458. "symfony/translation-implementation": "2.3"
  3459. },
  3460. "require-dev": {
  3461. "psr/log": "^1|^2|^3",
  3462. "symfony/config": "^4.4|^5.0|^6.0",
  3463. "symfony/console": "^5.4|^6.0",
  3464. "symfony/dependency-injection": "^5.0|^6.0",
  3465. "symfony/finder": "^4.4|^5.0|^6.0",
  3466. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  3467. "symfony/http-kernel": "^5.0|^6.0",
  3468. "symfony/intl": "^4.4|^5.0|^6.0",
  3469. "symfony/polyfill-intl-icu": "^1.21",
  3470. "symfony/service-contracts": "^1.1.2|^2|^3",
  3471. "symfony/yaml": "^4.4|^5.0|^6.0"
  3472. },
  3473. "suggest": {
  3474. "psr/log-implementation": "To use logging capability in translator",
  3475. "symfony/config": "",
  3476. "symfony/yaml": ""
  3477. },
  3478. "time": "2022-10-07T08:01:20+00:00",
  3479. "type": "library",
  3480. "installation-source": "dist",
  3481. "autoload": {
  3482. "files": [
  3483. "Resources/functions.php"
  3484. ],
  3485. "psr-4": {
  3486. "Symfony\\Component\\Translation\\": ""
  3487. },
  3488. "exclude-from-classmap": [
  3489. "/Tests/"
  3490. ]
  3491. },
  3492. "notification-url": "https://packagist.org/downloads/",
  3493. "license": [
  3494. "MIT"
  3495. ],
  3496. "authors": [
  3497. {
  3498. "name": "Fabien Potencier",
  3499. "email": "fabien@symfony.com"
  3500. },
  3501. {
  3502. "name": "Symfony Community",
  3503. "homepage": "https://symfony.com/contributors"
  3504. }
  3505. ],
  3506. "description": "Provides tools to internationalize your application",
  3507. "homepage": "https://symfony.com",
  3508. "support": {
  3509. "source": "https://github.com/symfony/translation/tree/v5.4.14"
  3510. },
  3511. "funding": [
  3512. {
  3513. "url": "https://symfony.com/sponsor",
  3514. "type": "custom"
  3515. },
  3516. {
  3517. "url": "https://github.com/fabpot",
  3518. "type": "github"
  3519. },
  3520. {
  3521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3522. "type": "tidelift"
  3523. }
  3524. ],
  3525. "install-path": "../symfony/translation"
  3526. },
  3527. {
  3528. "name": "symfony/translation-contracts",
  3529. "version": "v2.5.2",
  3530. "version_normalized": "2.5.2.0",
  3531. "source": {
  3532. "type": "git",
  3533. "url": "https://github.com/symfony/translation-contracts.git",
  3534. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  3535. },
  3536. "dist": {
  3537. "type": "zip",
  3538. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  3539. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  3540. "shasum": "",
  3541. "mirrors": [
  3542. {
  3543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3544. "preferred": true
  3545. }
  3546. ]
  3547. },
  3548. "require": {
  3549. "php": ">=7.2.5"
  3550. },
  3551. "suggest": {
  3552. "symfony/translation-implementation": ""
  3553. },
  3554. "time": "2022-06-27T16:58:25+00:00",
  3555. "type": "library",
  3556. "extra": {
  3557. "branch-alias": {
  3558. "dev-main": "2.5-dev"
  3559. },
  3560. "thanks": {
  3561. "name": "symfony/contracts",
  3562. "url": "https://github.com/symfony/contracts"
  3563. }
  3564. },
  3565. "installation-source": "dist",
  3566. "autoload": {
  3567. "psr-4": {
  3568. "Symfony\\Contracts\\Translation\\": ""
  3569. }
  3570. },
  3571. "notification-url": "https://packagist.org/downloads/",
  3572. "license": [
  3573. "MIT"
  3574. ],
  3575. "authors": [
  3576. {
  3577. "name": "Nicolas Grekas",
  3578. "email": "p@tchwork.com"
  3579. },
  3580. {
  3581. "name": "Symfony Community",
  3582. "homepage": "https://symfony.com/contributors"
  3583. }
  3584. ],
  3585. "description": "Generic abstractions related to translation",
  3586. "homepage": "https://symfony.com",
  3587. "keywords": [
  3588. "abstractions",
  3589. "contracts",
  3590. "decoupling",
  3591. "interfaces",
  3592. "interoperability",
  3593. "standards"
  3594. ],
  3595. "support": {
  3596. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  3597. },
  3598. "funding": [
  3599. {
  3600. "url": "https://symfony.com/sponsor",
  3601. "type": "custom"
  3602. },
  3603. {
  3604. "url": "https://github.com/fabpot",
  3605. "type": "github"
  3606. },
  3607. {
  3608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3609. "type": "tidelift"
  3610. }
  3611. ],
  3612. "install-path": "../symfony/translation-contracts"
  3613. },
  3614. {
  3615. "name": "symfony/var-exporter",
  3616. "version": "v4.4.43",
  3617. "version_normalized": "4.4.43.0",
  3618. "source": {
  3619. "type": "git",
  3620. "url": "https://github.com/symfony/var-exporter.git",
  3621. "reference": "4a7a3a3d55c471d396e6d28011368b7b83cb518b"
  3622. },
  3623. "dist": {
  3624. "type": "zip",
  3625. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/4a7a3a3d55c471d396e6d28011368b7b83cb518b",
  3626. "reference": "4a7a3a3d55c471d396e6d28011368b7b83cb518b",
  3627. "shasum": "",
  3628. "mirrors": [
  3629. {
  3630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3631. "preferred": true
  3632. }
  3633. ]
  3634. },
  3635. "require": {
  3636. "php": ">=7.1.3",
  3637. "symfony/polyfill-php80": "^1.16"
  3638. },
  3639. "require-dev": {
  3640. "symfony/var-dumper": "^4.4.9|^5.0.9"
  3641. },
  3642. "time": "2022-05-27T11:44:32+00:00",
  3643. "type": "library",
  3644. "installation-source": "dist",
  3645. "autoload": {
  3646. "psr-4": {
  3647. "Symfony\\Component\\VarExporter\\": ""
  3648. },
  3649. "exclude-from-classmap": [
  3650. "/Tests/"
  3651. ]
  3652. },
  3653. "notification-url": "https://packagist.org/downloads/",
  3654. "license": [
  3655. "MIT"
  3656. ],
  3657. "authors": [
  3658. {
  3659. "name": "Nicolas Grekas",
  3660. "email": "p@tchwork.com"
  3661. },
  3662. {
  3663. "name": "Symfony Community",
  3664. "homepage": "https://symfony.com/contributors"
  3665. }
  3666. ],
  3667. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3668. "homepage": "https://symfony.com",
  3669. "keywords": [
  3670. "clone",
  3671. "construct",
  3672. "export",
  3673. "hydrate",
  3674. "instantiate",
  3675. "serialize"
  3676. ],
  3677. "support": {
  3678. "source": "https://github.com/symfony/var-exporter/tree/v4.4.43"
  3679. },
  3680. "funding": [
  3681. {
  3682. "url": "https://symfony.com/sponsor",
  3683. "type": "custom"
  3684. },
  3685. {
  3686. "url": "https://github.com/fabpot",
  3687. "type": "github"
  3688. },
  3689. {
  3690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3691. "type": "tidelift"
  3692. }
  3693. ],
  3694. "install-path": "../symfony/var-exporter"
  3695. },
  3696. {
  3697. "name": "tencentcloud/tencentcloud-sdk-php",
  3698. "version": "3.0.865",
  3699. "version_normalized": "3.0.865.0",
  3700. "source": {
  3701. "type": "git",
  3702. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  3703. "reference": "931caf531c95e207dd63aaf8950c0a06a2561944"
  3704. },
  3705. "dist": {
  3706. "type": "zip",
  3707. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/931caf531c95e207dd63aaf8950c0a06a2561944",
  3708. "reference": "931caf531c95e207dd63aaf8950c0a06a2561944",
  3709. "shasum": "",
  3710. "mirrors": [
  3711. {
  3712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3713. "preferred": true
  3714. }
  3715. ]
  3716. },
  3717. "require": {
  3718. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  3719. "php": ">=5.6.0"
  3720. },
  3721. "require-dev": {
  3722. "phpunit/phpunit": "^9.5"
  3723. },
  3724. "time": "2023-04-13T00:03:08+00:00",
  3725. "type": "library",
  3726. "installation-source": "dist",
  3727. "autoload": {
  3728. "psr-4": {
  3729. "TencentCloud\\": "./src/TencentCloud"
  3730. },
  3731. "classmap": [
  3732. "src/QcloudApi/QcloudApi.php"
  3733. ]
  3734. },
  3735. "notification-url": "https://packagist.org/downloads/",
  3736. "license": [
  3737. "Apache-2.0"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "coolli",
  3742. "email": "tencentcloudapi@tencent.com",
  3743. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  3744. "role": "Developer"
  3745. }
  3746. ],
  3747. "description": "TencentCloudApi php sdk",
  3748. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  3749. "support": {
  3750. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  3751. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.865"
  3752. },
  3753. "install-path": "../tencentcloud/tencentcloud-sdk-php"
  3754. },
  3755. {
  3756. "name": "topthink/framework",
  3757. "version": "dev-master",
  3758. "version_normalized": "dev-master",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://gitee.com/fastadminnet/framework.git",
  3762. "reference": "096811899433eb0eb0988f1fe1db56ebb521bf34"
  3763. },
  3764. "require": {
  3765. "php": ">=7.1.0",
  3766. "topthink/think-installer": "~1.0"
  3767. },
  3768. "require-dev": {
  3769. "johnkary/phpunit-speedtrap": "^1.0",
  3770. "mikey179/vfsstream": "~1.6",
  3771. "phpdocumentor/reflection-docblock": "^2.0",
  3772. "phploc/phploc": "2.*",
  3773. "phpunit/phpunit": "4.8.*",
  3774. "sebastian/phpcpd": "2.*"
  3775. },
  3776. "time": "2022-12-19T02:13:42+00:00",
  3777. "default-branch": true,
  3778. "type": "think-framework",
  3779. "installation-source": "source",
  3780. "autoload": {
  3781. "psr-4": {
  3782. "think\\": "library/think"
  3783. }
  3784. },
  3785. "license": [
  3786. "Apache-2.0"
  3787. ],
  3788. "authors": [
  3789. {
  3790. "name": "liu21st",
  3791. "email": "liu21st@gmail.com"
  3792. }
  3793. ],
  3794. "description": "the new thinkphp framework",
  3795. "homepage": "http://thinkphp.cn/",
  3796. "keywords": [
  3797. "ORM",
  3798. "framework",
  3799. "thinkphp"
  3800. ],
  3801. "install-path": "../../thinkphp"
  3802. },
  3803. {
  3804. "name": "topthink/think-captcha",
  3805. "version": "v1.0.7",
  3806. "version_normalized": "1.0.7.0",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://github.com/top-think/think-captcha.git",
  3810. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/0c55455df26a1626a60d0dc35d2d89002b741d44",
  3815. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44",
  3816. "shasum": "",
  3817. "mirrors": [
  3818. {
  3819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3820. "preferred": true
  3821. }
  3822. ]
  3823. },
  3824. "time": "2016-07-06T01:47:11+00:00",
  3825. "type": "library",
  3826. "installation-source": "dist",
  3827. "autoload": {
  3828. "files": [
  3829. "src/helper.php"
  3830. ],
  3831. "psr-4": {
  3832. "think\\captcha\\": "src/"
  3833. }
  3834. },
  3835. "notification-url": "https://packagist.org/downloads/",
  3836. "license": [
  3837. "Apache-2.0"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "yunwuxin",
  3842. "email": "448901948@qq.com"
  3843. }
  3844. ],
  3845. "description": "captcha package for thinkphp5",
  3846. "support": {
  3847. "issues": "https://github.com/top-think/think-captcha/issues",
  3848. "source": "https://github.com/top-think/think-captcha/tree/master"
  3849. },
  3850. "install-path": "../topthink/think-captcha"
  3851. },
  3852. {
  3853. "name": "topthink/think-helper",
  3854. "version": "v1.0.7",
  3855. "version_normalized": "1.0.7.0",
  3856. "source": {
  3857. "type": "git",
  3858. "url": "https://github.com/top-think/think-helper.git",
  3859. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  3860. },
  3861. "dist": {
  3862. "type": "zip",
  3863. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  3864. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  3865. "shasum": "",
  3866. "mirrors": [
  3867. {
  3868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3869. "preferred": true
  3870. }
  3871. ]
  3872. },
  3873. "time": "2018-10-05T00:43:21+00:00",
  3874. "type": "library",
  3875. "installation-source": "dist",
  3876. "autoload": {
  3877. "files": [
  3878. "src/helper.php"
  3879. ],
  3880. "psr-4": {
  3881. "think\\helper\\": "src"
  3882. }
  3883. },
  3884. "notification-url": "https://packagist.org/downloads/",
  3885. "license": [
  3886. "Apache-2.0"
  3887. ],
  3888. "authors": [
  3889. {
  3890. "name": "yunwuxin",
  3891. "email": "448901948@qq.com"
  3892. }
  3893. ],
  3894. "description": "The ThinkPHP5 Helper Package",
  3895. "support": {
  3896. "issues": "https://github.com/top-think/think-helper/issues",
  3897. "source": "https://github.com/top-think/think-helper/tree/master"
  3898. },
  3899. "install-path": "../topthink/think-helper"
  3900. },
  3901. {
  3902. "name": "topthink/think-installer",
  3903. "version": "v1.0.14",
  3904. "version_normalized": "1.0.14.0",
  3905. "source": {
  3906. "type": "git",
  3907. "url": "https://github.com/top-think/think-installer.git",
  3908. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1"
  3909. },
  3910. "dist": {
  3911. "type": "zip",
  3912. "url": "https://api.github.com/repos/top-think/think-installer/zipball/eae1740ac264a55c06134b6685dfb9f837d004d1",
  3913. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1",
  3914. "shasum": "",
  3915. "mirrors": [
  3916. {
  3917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3918. "preferred": true
  3919. }
  3920. ]
  3921. },
  3922. "require": {
  3923. "composer-plugin-api": "^1.0||^2.0"
  3924. },
  3925. "require-dev": {
  3926. "composer/composer": "^1.0||^2.0"
  3927. },
  3928. "time": "2021-03-25T08:34:02+00:00",
  3929. "type": "composer-plugin",
  3930. "extra": {
  3931. "class": "think\\composer\\Plugin"
  3932. },
  3933. "installation-source": "dist",
  3934. "autoload": {
  3935. "psr-4": {
  3936. "think\\composer\\": "src"
  3937. }
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "Apache-2.0"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "yunwuxin",
  3946. "email": "448901948@qq.com"
  3947. }
  3948. ],
  3949. "support": {
  3950. "issues": "https://github.com/top-think/think-installer/issues",
  3951. "source": "https://github.com/top-think/think-installer/tree/v1.0.14"
  3952. },
  3953. "install-path": "../topthink/think-installer"
  3954. },
  3955. {
  3956. "name": "topthink/think-queue",
  3957. "version": "v1.1.6",
  3958. "version_normalized": "1.1.6.0",
  3959. "source": {
  3960. "type": "git",
  3961. "url": "https://github.com/top-think/think-queue.git",
  3962. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245"
  3963. },
  3964. "dist": {
  3965. "type": "zip",
  3966. "url": "https://api.github.com/repos/top-think/think-queue/zipball/250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  3967. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  3968. "shasum": "",
  3969. "mirrors": [
  3970. {
  3971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3972. "preferred": true
  3973. }
  3974. ]
  3975. },
  3976. "require": {
  3977. "topthink/think-helper": ">=1.0.4",
  3978. "topthink/think-installer": ">=1.0.10"
  3979. },
  3980. "require-dev": {
  3981. "topthink/framework": "~5.0.0"
  3982. },
  3983. "time": "2018-10-15T10:16:55+00:00",
  3984. "type": "think-extend",
  3985. "extra": {
  3986. "think-config": {
  3987. "queue": "src/config.php"
  3988. }
  3989. },
  3990. "installation-source": "dist",
  3991. "autoload": {
  3992. "files": [
  3993. "src/common.php"
  3994. ],
  3995. "psr-4": {
  3996. "think\\": "src"
  3997. }
  3998. },
  3999. "notification-url": "https://packagist.org/downloads/",
  4000. "license": [
  4001. "Apache-2.0"
  4002. ],
  4003. "authors": [
  4004. {
  4005. "name": "yunwuxin",
  4006. "email": "448901948@qq.com"
  4007. }
  4008. ],
  4009. "description": "The ThinkPHP5 Queue Package",
  4010. "support": {
  4011. "issues": "https://github.com/top-think/think-queue/issues",
  4012. "source": "https://github.com/top-think/think-queue/tree/master"
  4013. },
  4014. "install-path": "../topthink/think-queue"
  4015. },
  4016. {
  4017. "name": "txthinking/mailer",
  4018. "version": "v2.0.1",
  4019. "version_normalized": "2.0.1.0",
  4020. "source": {
  4021. "type": "git",
  4022. "url": "https://github.com/txthinking/Mailer.git",
  4023. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9"
  4024. },
  4025. "dist": {
  4026. "type": "zip",
  4027. "url": "https://api.github.com/repos/txthinking/Mailer/zipball/09013cf9dad3aac195f66ae5309e8c3343c018e9",
  4028. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9",
  4029. "shasum": "",
  4030. "mirrors": [
  4031. {
  4032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4033. "preferred": true
  4034. }
  4035. ]
  4036. },
  4037. "require": {
  4038. "php": ">=5.3.2",
  4039. "psr/log": "~1.0"
  4040. },
  4041. "require-dev": {
  4042. "monolog/monolog": "~1.13",
  4043. "phpunit/phpunit": "~4.0"
  4044. },
  4045. "time": "2018-10-09T10:47:23+00:00",
  4046. "type": "library",
  4047. "installation-source": "dist",
  4048. "autoload": {
  4049. "psr-4": {
  4050. "Tx\\": "src/"
  4051. }
  4052. },
  4053. "notification-url": "https://packagist.org/downloads/",
  4054. "license": [
  4055. "MIT"
  4056. ],
  4057. "authors": [
  4058. {
  4059. "name": "Cloud",
  4060. "email": "cloud@txthinking.com",
  4061. "homepage": "http://www.txthinking.com",
  4062. "role": "Thinker"
  4063. },
  4064. {
  4065. "name": "Matt Sowers",
  4066. "email": "msowers@erblearn.org"
  4067. }
  4068. ],
  4069. "description": "A very lightweight PHP SMTP mail sender",
  4070. "homepage": "http://github.com/txthinking/Mailer",
  4071. "keywords": [
  4072. "mail",
  4073. "smtp"
  4074. ],
  4075. "support": {
  4076. "issues": "https://github.com/txthinking/Mailer/issues",
  4077. "source": "https://github.com/txthinking/Mailer/tree/master"
  4078. },
  4079. "install-path": "../txthinking/mailer"
  4080. },
  4081. {
  4082. "name": "wechatpay/wechatpay",
  4083. "version": "1.4.8",
  4084. "version_normalized": "1.4.8.0",
  4085. "source": {
  4086. "type": "git",
  4087. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  4088. "reference": "fbe8d7c2b3b367e42bf98caa0cce582b3205d427"
  4089. },
  4090. "dist": {
  4091. "type": "zip",
  4092. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/fbe8d7c2b3b367e42bf98caa0cce582b3205d427",
  4093. "reference": "fbe8d7c2b3b367e42bf98caa0cce582b3205d427",
  4094. "shasum": "",
  4095. "mirrors": [
  4096. {
  4097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4098. "preferred": true
  4099. }
  4100. ]
  4101. },
  4102. "require": {
  4103. "ext-curl": "*",
  4104. "ext-libxml": "*",
  4105. "ext-openssl": "*",
  4106. "ext-simplexml": "*",
  4107. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  4108. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  4109. "php": ">=7.1.2"
  4110. },
  4111. "require-dev": {
  4112. "phpstan/phpstan": "^0.12.89 || ^1.0",
  4113. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  4114. },
  4115. "time": "2023-01-05T03:50:12+00:00",
  4116. "bin": [
  4117. "bin/CertificateDownloader.php"
  4118. ],
  4119. "type": "library",
  4120. "installation-source": "dist",
  4121. "autoload": {
  4122. "psr-4": {
  4123. "WeChatPay\\": "src/"
  4124. }
  4125. },
  4126. "notification-url": "https://packagist.org/downloads/",
  4127. "license": [
  4128. "Apache-2.0"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "James ZHANG",
  4133. "homepage": "https://github.com/TheNorthMemory"
  4134. },
  4135. {
  4136. "name": "WeChatPay Community",
  4137. "homepage": "https://developers.weixin.qq.com/community/pay"
  4138. }
  4139. ],
  4140. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  4141. "homepage": "https://pay.weixin.qq.com/",
  4142. "keywords": [
  4143. "AES-GCM",
  4144. "aes-ecb",
  4145. "openapi-chainable",
  4146. "rsa-oaep",
  4147. "wechatpay",
  4148. "xml-builder",
  4149. "xml-parser"
  4150. ],
  4151. "support": {
  4152. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  4153. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.8"
  4154. },
  4155. "install-path": "../wechatpay/wechatpay"
  4156. }
  4157. ],
  4158. "dev": true,
  4159. "dev-package-names": []
  4160. }