composer.lock 120 KB

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