composer.lock 127 KB

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