installed.json 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910
  1. [
  2. {
  3. "name": "easywechat-composer/easywechat-composer",
  4. "version": "1.4.1",
  5. "version_normalized": "1.4.1.0",
  6. "dist": {
  7. "type": "zip",
  8. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  9. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  10. "shasum": ""
  11. },
  12. "require": {
  13. "composer-plugin-api": "^1.0 || ^2.0",
  14. "php": ">=7.0"
  15. },
  16. "require-dev": {
  17. "composer/composer": "^1.0 || ^2.0",
  18. "phpunit/phpunit": "^6.5 || ^7.0"
  19. },
  20. "time": "2021-07-05T04:03:22+00:00",
  21. "type": "composer-plugin",
  22. "extra": {
  23. "class": "EasyWeChatComposer\\Plugin"
  24. },
  25. "installation-source": "dist",
  26. "autoload": {
  27. "psr-4": {
  28. "EasyWeChatComposer\\": "src/"
  29. }
  30. },
  31. "notification-url": "https://packagist.org/downloads/",
  32. "license": [
  33. "MIT"
  34. ],
  35. "authors": [
  36. {
  37. "name": "张铭阳",
  38. "email": "mingyoungcheung@gmail.com"
  39. }
  40. ],
  41. "description": "The composer plugin for EasyWeChat"
  42. },
  43. {
  44. "name": "ezyang/htmlpurifier",
  45. "version": "v4.13.0",
  46. "version_normalized": "4.13.0.0",
  47. "dist": {
  48. "type": "zip",
  49. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  50. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  51. "shasum": ""
  52. },
  53. "require": {
  54. "php": ">=5.2"
  55. },
  56. "require-dev": {
  57. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  58. },
  59. "time": "2020-06-29T00:56:53+00:00",
  60. "type": "library",
  61. "installation-source": "dist",
  62. "autoload": {
  63. "psr-0": {
  64. "HTMLPurifier": "library/"
  65. },
  66. "files": [
  67. "library/HTMLPurifier.composer.php"
  68. ],
  69. "exclude-from-classmap": [
  70. "/library/HTMLPurifier/Language/"
  71. ]
  72. },
  73. "notification-url": "https://packagist.org/downloads/",
  74. "license": [
  75. "LGPL-2.1-or-later"
  76. ],
  77. "authors": [
  78. {
  79. "name": "Edward Z. Yang",
  80. "email": "admin@htmlpurifier.org",
  81. "homepage": "http://ezyang.com"
  82. }
  83. ],
  84. "description": "Standards compliant HTML filter written in PHP",
  85. "homepage": "http://htmlpurifier.org/",
  86. "keywords": [
  87. "html"
  88. ]
  89. },
  90. {
  91. "name": "guzzlehttp/guzzle",
  92. "version": "7.4.1",
  93. "version_normalized": "7.4.1.0",
  94. "dist": {
  95. "type": "zip",
  96. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  97. "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
  98. "shasum": ""
  99. },
  100. "require": {
  101. "ext-json": "*",
  102. "guzzlehttp/promises": "^1.5",
  103. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  104. "php": "^7.2.5 || ^8.0",
  105. "psr/http-client": "^1.0",
  106. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  107. },
  108. "provide": {
  109. "psr/http-client-implementation": "1.0"
  110. },
  111. "require-dev": {
  112. "bamarni/composer-bin-plugin": "^1.4.1",
  113. "ext-curl": "*",
  114. "php-http/client-integration-tests": "^3.0",
  115. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  116. "psr/log": "^1.1 || ^2.0 || ^3.0"
  117. },
  118. "suggest": {
  119. "ext-curl": "Required for CURL handler support",
  120. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  121. "psr/log": "Required for using the Log middleware"
  122. },
  123. "time": "2021-12-06T18:43:05+00:00",
  124. "type": "library",
  125. "extra": {
  126. "branch-alias": {
  127. "dev-master": "7.4-dev"
  128. }
  129. },
  130. "installation-source": "dist",
  131. "autoload": {
  132. "psr-4": {
  133. "GuzzleHttp\\": "src/"
  134. },
  135. "files": [
  136. "src/functions_include.php"
  137. ]
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "authors": [
  144. {
  145. "name": "Graham Campbell",
  146. "email": "hello@gjcampbell.co.uk",
  147. "homepage": "https://github.com/GrahamCampbell"
  148. },
  149. {
  150. "name": "Michael Dowling",
  151. "email": "mtdowling@gmail.com",
  152. "homepage": "https://github.com/mtdowling"
  153. },
  154. {
  155. "name": "Jeremy Lindblom",
  156. "email": "jeremeamia@gmail.com",
  157. "homepage": "https://github.com/jeremeamia"
  158. },
  159. {
  160. "name": "George Mponos",
  161. "email": "gmponos@gmail.com",
  162. "homepage": "https://github.com/gmponos"
  163. },
  164. {
  165. "name": "Tobias Nyholm",
  166. "email": "tobias.nyholm@gmail.com",
  167. "homepage": "https://github.com/Nyholm"
  168. },
  169. {
  170. "name": "Márk Sági-Kazár",
  171. "email": "mark.sagikazar@gmail.com",
  172. "homepage": "https://github.com/sagikazarmark"
  173. },
  174. {
  175. "name": "Tobias Schultze",
  176. "email": "webmaster@tubo-world.de",
  177. "homepage": "https://github.com/Tobion"
  178. }
  179. ],
  180. "description": "Guzzle is a PHP HTTP client library",
  181. "keywords": [
  182. "client",
  183. "curl",
  184. "framework",
  185. "http",
  186. "http client",
  187. "psr-18",
  188. "psr-7",
  189. "rest",
  190. "web service"
  191. ]
  192. },
  193. {
  194. "name": "guzzlehttp/promises",
  195. "version": "1.5.1",
  196. "version_normalized": "1.5.1.0",
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  200. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  201. "shasum": ""
  202. },
  203. "require": {
  204. "php": ">=5.5"
  205. },
  206. "require-dev": {
  207. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  208. },
  209. "time": "2021-10-22T20:56:57+00:00",
  210. "type": "library",
  211. "extra": {
  212. "branch-alias": {
  213. "dev-master": "1.5-dev"
  214. }
  215. },
  216. "installation-source": "dist",
  217. "autoload": {
  218. "psr-4": {
  219. "GuzzleHttp\\Promise\\": "src/"
  220. },
  221. "files": [
  222. "src/functions_include.php"
  223. ]
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "MIT"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Graham Campbell",
  232. "email": "hello@gjcampbell.co.uk",
  233. "homepage": "https://github.com/GrahamCampbell"
  234. },
  235. {
  236. "name": "Michael Dowling",
  237. "email": "mtdowling@gmail.com",
  238. "homepage": "https://github.com/mtdowling"
  239. },
  240. {
  241. "name": "Tobias Nyholm",
  242. "email": "tobias.nyholm@gmail.com",
  243. "homepage": "https://github.com/Nyholm"
  244. },
  245. {
  246. "name": "Tobias Schultze",
  247. "email": "webmaster@tubo-world.de",
  248. "homepage": "https://github.com/Tobion"
  249. }
  250. ],
  251. "description": "Guzzle promises library",
  252. "keywords": [
  253. "promise"
  254. ]
  255. },
  256. {
  257. "name": "guzzlehttp/psr7",
  258. "version": "2.1.0",
  259. "version_normalized": "2.1.0.0",
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  263. "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
  264. "shasum": ""
  265. },
  266. "require": {
  267. "php": "^7.2.5 || ^8.0",
  268. "psr/http-factory": "^1.0",
  269. "psr/http-message": "^1.0",
  270. "ralouphie/getallheaders": "^3.0"
  271. },
  272. "provide": {
  273. "psr/http-factory-implementation": "1.0",
  274. "psr/http-message-implementation": "1.0"
  275. },
  276. "require-dev": {
  277. "bamarni/composer-bin-plugin": "^1.4.1",
  278. "http-interop/http-factory-tests": "^0.9",
  279. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  280. },
  281. "suggest": {
  282. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  283. },
  284. "time": "2021-10-06T17:43:30+00:00",
  285. "type": "library",
  286. "extra": {
  287. "branch-alias": {
  288. "dev-master": "2.1-dev"
  289. }
  290. },
  291. "installation-source": "dist",
  292. "autoload": {
  293. "psr-4": {
  294. "GuzzleHttp\\Psr7\\": "src/"
  295. }
  296. },
  297. "notification-url": "https://packagist.org/downloads/",
  298. "license": [
  299. "MIT"
  300. ],
  301. "authors": [
  302. {
  303. "name": "Graham Campbell",
  304. "email": "hello@gjcampbell.co.uk",
  305. "homepage": "https://github.com/GrahamCampbell"
  306. },
  307. {
  308. "name": "Michael Dowling",
  309. "email": "mtdowling@gmail.com",
  310. "homepage": "https://github.com/mtdowling"
  311. },
  312. {
  313. "name": "George Mponos",
  314. "email": "gmponos@gmail.com",
  315. "homepage": "https://github.com/gmponos"
  316. },
  317. {
  318. "name": "Tobias Nyholm",
  319. "email": "tobias.nyholm@gmail.com",
  320. "homepage": "https://github.com/Nyholm"
  321. },
  322. {
  323. "name": "Márk Sági-Kazár",
  324. "email": "mark.sagikazar@gmail.com",
  325. "homepage": "https://github.com/sagikazarmark"
  326. },
  327. {
  328. "name": "Tobias Schultze",
  329. "email": "webmaster@tubo-world.de",
  330. "homepage": "https://github.com/Tobion"
  331. },
  332. {
  333. "name": "Márk Sági-Kazár",
  334. "email": "mark.sagikazar@gmail.com",
  335. "homepage": "https://sagikazarmark.hu"
  336. }
  337. ],
  338. "description": "PSR-7 message implementation that also provides common utility methods",
  339. "keywords": [
  340. "http",
  341. "message",
  342. "psr-7",
  343. "request",
  344. "response",
  345. "stream",
  346. "uri",
  347. "url"
  348. ]
  349. },
  350. {
  351. "name": "jenssegers/date",
  352. "version": "v3.5.0",
  353. "version_normalized": "3.5.0.0",
  354. "dist": {
  355. "type": "zip",
  356. "url": "https://mirrors.cloud.tencent.com/repository/composer/jenssegers/date/v3.5.0/jenssegers-date-v3.5.0.zip",
  357. "reference": "58393b0544fc2525b3fcd02aa4c989857107e05a",
  358. "shasum": ""
  359. },
  360. "require": {
  361. "nesbot/carbon": "^1.0|^2.0",
  362. "php": ">=5.6",
  363. "symfony/translation": "^2.7|^3.0|^4.0"
  364. },
  365. "require-dev": {
  366. "phpunit/phpunit": "^5.0|^6.0|^7.0",
  367. "satooshi/php-coveralls": "^2.0"
  368. },
  369. "time": "2019-03-10T08:50:58+00:00",
  370. "type": "library",
  371. "extra": {
  372. "branch-alias": {
  373. "dev-master": "3.1-dev"
  374. },
  375. "laravel": {
  376. "providers": [
  377. "Jenssegers\\Date\\DateServiceProvider"
  378. ],
  379. "aliases": {
  380. "Date": "Jenssegers\\Date\\Date"
  381. }
  382. }
  383. },
  384. "installation-source": "dist",
  385. "autoload": {
  386. "psr-4": {
  387. "Jenssegers\\Date\\": "src/"
  388. }
  389. },
  390. "license": [
  391. "MIT"
  392. ],
  393. "authors": [
  394. {
  395. "name": "Jens Segers",
  396. "homepage": "https://jenssegers.com"
  397. }
  398. ],
  399. "description": "A date library to help you work with dates in different languages",
  400. "homepage": "https://github.com/jenssegers/date",
  401. "keywords": [
  402. "carbon",
  403. "date",
  404. "datetime",
  405. "i18n",
  406. "laravel",
  407. "time",
  408. "translation"
  409. ]
  410. },
  411. {
  412. "name": "jpush/jpush",
  413. "version": "v3.6.6",
  414. "version_normalized": "3.6.6.0",
  415. "dist": {
  416. "type": "zip",
  417. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/64ff7f5919c80801f43b8332250e392b116521c6",
  418. "reference": "64ff7f5919c80801f43b8332250e392b116521c6",
  419. "shasum": ""
  420. },
  421. "require": {
  422. "ext-curl": "*",
  423. "php": ">=5.3.3"
  424. },
  425. "require-dev": {
  426. "phpunit/phpunit": "*"
  427. },
  428. "time": "2019-11-26T06:04:53+00:00",
  429. "type": "library",
  430. "installation-source": "dist",
  431. "autoload": {
  432. "psr-4": {
  433. "JPush\\": "src/JPush/"
  434. }
  435. },
  436. "notification-url": "https://packagist.org/downloads/",
  437. "license": [
  438. "MIT"
  439. ],
  440. "authors": [
  441. {
  442. "name": "JPush",
  443. "email": "support@jpush.cn",
  444. "homepage": "https://www.jpush.cn/",
  445. "role": "Developer"
  446. }
  447. ],
  448. "description": "JPush API PHP Client",
  449. "homepage": "https://github.com/jpush/jpush-api-php-client"
  450. },
  451. {
  452. "name": "maennchen/zipstream-php",
  453. "version": "2.1.0",
  454. "version_normalized": "2.1.0.0",
  455. "dist": {
  456. "type": "zip",
  457. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  458. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  459. "shasum": ""
  460. },
  461. "require": {
  462. "myclabs/php-enum": "^1.5",
  463. "php": ">= 7.1",
  464. "psr/http-message": "^1.0",
  465. "symfony/polyfill-mbstring": "^1.0"
  466. },
  467. "require-dev": {
  468. "ext-zip": "*",
  469. "guzzlehttp/guzzle": ">= 6.3",
  470. "mikey179/vfsstream": "^1.6",
  471. "phpunit/phpunit": ">= 7.5"
  472. },
  473. "time": "2020-05-30T13:11:16+00:00",
  474. "type": "library",
  475. "installation-source": "dist",
  476. "autoload": {
  477. "psr-4": {
  478. "ZipStream\\": "src/"
  479. }
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Paul Duncan",
  488. "email": "pabs@pablotron.org"
  489. },
  490. {
  491. "name": "Jonatan Männchen",
  492. "email": "jonatan@maennchen.ch"
  493. },
  494. {
  495. "name": "Jesse Donat",
  496. "email": "donatj@gmail.com"
  497. },
  498. {
  499. "name": "András Kolesár",
  500. "email": "kolesar@kolesar.hu"
  501. }
  502. ],
  503. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  504. "keywords": [
  505. "stream",
  506. "zip"
  507. ]
  508. },
  509. {
  510. "name": "markbaker/complex",
  511. "version": "2.0.0",
  512. "version_normalized": "2.0.0.0",
  513. "dist": {
  514. "type": "zip",
  515. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  516. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  517. "shasum": ""
  518. },
  519. "require": {
  520. "php": "^7.2 || ^8.0"
  521. },
  522. "require-dev": {
  523. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  524. "phpcompatibility/php-compatibility": "^9.0",
  525. "phpdocumentor/phpdocumentor": "2.*",
  526. "phploc/phploc": "^4.0",
  527. "phpmd/phpmd": "2.*",
  528. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  529. "sebastian/phpcpd": "^4.0",
  530. "squizlabs/php_codesniffer": "^3.4"
  531. },
  532. "time": "2020-08-26T10:42:07+00:00",
  533. "type": "library",
  534. "installation-source": "dist",
  535. "autoload": {
  536. "psr-4": {
  537. "Complex\\": "classes/src/"
  538. },
  539. "files": [
  540. "classes/src/functions/abs.php",
  541. "classes/src/functions/acos.php",
  542. "classes/src/functions/acosh.php",
  543. "classes/src/functions/acot.php",
  544. "classes/src/functions/acoth.php",
  545. "classes/src/functions/acsc.php",
  546. "classes/src/functions/acsch.php",
  547. "classes/src/functions/argument.php",
  548. "classes/src/functions/asec.php",
  549. "classes/src/functions/asech.php",
  550. "classes/src/functions/asin.php",
  551. "classes/src/functions/asinh.php",
  552. "classes/src/functions/atan.php",
  553. "classes/src/functions/atanh.php",
  554. "classes/src/functions/conjugate.php",
  555. "classes/src/functions/cos.php",
  556. "classes/src/functions/cosh.php",
  557. "classes/src/functions/cot.php",
  558. "classes/src/functions/coth.php",
  559. "classes/src/functions/csc.php",
  560. "classes/src/functions/csch.php",
  561. "classes/src/functions/exp.php",
  562. "classes/src/functions/inverse.php",
  563. "classes/src/functions/ln.php",
  564. "classes/src/functions/log2.php",
  565. "classes/src/functions/log10.php",
  566. "classes/src/functions/negative.php",
  567. "classes/src/functions/pow.php",
  568. "classes/src/functions/rho.php",
  569. "classes/src/functions/sec.php",
  570. "classes/src/functions/sech.php",
  571. "classes/src/functions/sin.php",
  572. "classes/src/functions/sinh.php",
  573. "classes/src/functions/sqrt.php",
  574. "classes/src/functions/tan.php",
  575. "classes/src/functions/tanh.php",
  576. "classes/src/functions/theta.php",
  577. "classes/src/operations/add.php",
  578. "classes/src/operations/subtract.php",
  579. "classes/src/operations/multiply.php",
  580. "classes/src/operations/divideby.php",
  581. "classes/src/operations/divideinto.php"
  582. ]
  583. },
  584. "notification-url": "https://packagist.org/downloads/",
  585. "license": [
  586. "MIT"
  587. ],
  588. "authors": [
  589. {
  590. "name": "Mark Baker",
  591. "email": "mark@lange.demon.co.uk"
  592. }
  593. ],
  594. "description": "PHP Class for working with complex numbers",
  595. "homepage": "https://github.com/MarkBaker/PHPComplex",
  596. "keywords": [
  597. "complex",
  598. "mathematics"
  599. ]
  600. },
  601. {
  602. "name": "markbaker/matrix",
  603. "version": "2.1.2",
  604. "version_normalized": "2.1.2.0",
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  608. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "php": "^7.1 || ^8.0"
  613. },
  614. "require-dev": {
  615. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  616. "phpcompatibility/php-compatibility": "^9.0",
  617. "phpdocumentor/phpdocumentor": "2.*",
  618. "phploc/phploc": "^4.0",
  619. "phpmd/phpmd": "2.*",
  620. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  621. "sebastian/phpcpd": "^4.0",
  622. "squizlabs/php_codesniffer": "^3.4"
  623. },
  624. "time": "2021-01-23T16:37:31+00:00",
  625. "type": "library",
  626. "installation-source": "dist",
  627. "autoload": {
  628. "psr-4": {
  629. "Matrix\\": "classes/src/"
  630. },
  631. "files": [
  632. "classes/src/Functions/adjoint.php",
  633. "classes/src/Functions/antidiagonal.php",
  634. "classes/src/Functions/cofactors.php",
  635. "classes/src/Functions/determinant.php",
  636. "classes/src/Functions/diagonal.php",
  637. "classes/src/Functions/identity.php",
  638. "classes/src/Functions/inverse.php",
  639. "classes/src/Functions/minors.php",
  640. "classes/src/Functions/trace.php",
  641. "classes/src/Functions/transpose.php",
  642. "classes/src/Operations/add.php",
  643. "classes/src/Operations/directsum.php",
  644. "classes/src/Operations/subtract.php",
  645. "classes/src/Operations/multiply.php",
  646. "classes/src/Operations/divideby.php",
  647. "classes/src/Operations/divideinto.php"
  648. ]
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "authors": [
  655. {
  656. "name": "Mark Baker",
  657. "email": "mark@demon-angel.eu"
  658. }
  659. ],
  660. "description": "PHP Class for working with matrices",
  661. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  662. "keywords": [
  663. "mathematics",
  664. "matrix",
  665. "vector"
  666. ]
  667. },
  668. {
  669. "name": "monolog/monolog",
  670. "version": "2.3.5",
  671. "version_normalized": "2.3.5.0",
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  675. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "php": ">=7.2",
  680. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  681. },
  682. "provide": {
  683. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  684. },
  685. "require-dev": {
  686. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  687. "doctrine/couchdb": "~1.0@dev",
  688. "elasticsearch/elasticsearch": "^7",
  689. "graylog2/gelf-php": "^1.4.2",
  690. "mongodb/mongodb": "^1.8",
  691. "php-amqplib/php-amqplib": "~2.4 || ^3",
  692. "php-console/php-console": "^3.1.3",
  693. "phpspec/prophecy": "^1.6.1",
  694. "phpstan/phpstan": "^0.12.91",
  695. "phpunit/phpunit": "^8.5",
  696. "predis/predis": "^1.1",
  697. "rollbar/rollbar": "^1.3",
  698. "ruflin/elastica": ">=0.90@dev",
  699. "swiftmailer/swiftmailer": "^5.3|^6.0"
  700. },
  701. "suggest": {
  702. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  703. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  704. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  705. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  706. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  707. "ext-mbstring": "Allow to work properly with unicode symbols",
  708. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  709. "ext-openssl": "Required to send log messages using SSL",
  710. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  711. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  712. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  713. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  714. "php-console/php-console": "Allow sending log messages to Google Chrome",
  715. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  716. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  717. },
  718. "time": "2021-10-01T21:08:31+00:00",
  719. "type": "library",
  720. "extra": {
  721. "branch-alias": {
  722. "dev-main": "2.x-dev"
  723. }
  724. },
  725. "installation-source": "dist",
  726. "autoload": {
  727. "psr-4": {
  728. "Monolog\\": "src/Monolog"
  729. }
  730. },
  731. "notification-url": "https://packagist.org/downloads/",
  732. "license": [
  733. "MIT"
  734. ],
  735. "authors": [
  736. {
  737. "name": "Jordi Boggiano",
  738. "email": "j.boggiano@seld.be",
  739. "homepage": "https://seld.be"
  740. }
  741. ],
  742. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  743. "homepage": "https://github.com/Seldaek/monolog",
  744. "keywords": [
  745. "log",
  746. "logging",
  747. "psr-3"
  748. ]
  749. },
  750. {
  751. "name": "mtdowling/cron-expression",
  752. "version": "v1.2.3",
  753. "version_normalized": "1.2.3.0",
  754. "dist": {
  755. "type": "zip",
  756. "url": "https://mirrors.cloud.tencent.com/repository/composer/mtdowling/cron-expression/v1.2.3/mtdowling-cron-expression-v1.2.3.zip",
  757. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6",
  758. "shasum": ""
  759. },
  760. "require": {
  761. "php": ">=5.3.2"
  762. },
  763. "require-dev": {
  764. "phpunit/phpunit": "~4.0|~5.0"
  765. },
  766. "time": "2019-12-28T04:23:06+00:00",
  767. "type": "library",
  768. "installation-source": "dist",
  769. "autoload": {
  770. "psr-4": {
  771. "Cron\\": "src/Cron/"
  772. }
  773. },
  774. "license": [
  775. "MIT"
  776. ],
  777. "authors": [
  778. {
  779. "name": "Michael Dowling",
  780. "email": "mtdowling@gmail.com",
  781. "homepage": "https://github.com/mtdowling"
  782. }
  783. ],
  784. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  785. "keywords": [
  786. "cron",
  787. "schedule"
  788. ]
  789. },
  790. {
  791. "name": "myclabs/php-enum",
  792. "version": "1.7.7",
  793. "version_normalized": "1.7.7.0",
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  797. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  798. "shasum": ""
  799. },
  800. "require": {
  801. "ext-json": "*",
  802. "php": ">=7.1"
  803. },
  804. "require-dev": {
  805. "phpunit/phpunit": "^7",
  806. "squizlabs/php_codesniffer": "1.*",
  807. "vimeo/psalm": "^3.8"
  808. },
  809. "time": "2020-11-14T18:14:52+00:00",
  810. "type": "library",
  811. "installation-source": "dist",
  812. "autoload": {
  813. "psr-4": {
  814. "MyCLabs\\Enum\\": "src/"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "PHP Enum contributors",
  824. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  825. }
  826. ],
  827. "description": "PHP Enum implementation",
  828. "homepage": "http://github.com/myclabs/php-enum",
  829. "keywords": [
  830. "enum"
  831. ]
  832. },
  833. {
  834. "name": "nesbot/carbon",
  835. "version": "2.64.0",
  836. "version_normalized": "2.64.0.0",
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://mirrors.cloud.tencent.com/repository/composer/nesbot/carbon/2.64.0/nesbot-carbon-2.64.0.zip",
  840. "reference": "889546413c97de2d05063b8cb7b193c2531ea211",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "ext-json": "*",
  845. "php": "^7.1.8 || ^8.0",
  846. "symfony/polyfill-mbstring": "^1.0",
  847. "symfony/polyfill-php80": "^1.16",
  848. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  849. },
  850. "require-dev": {
  851. "doctrine/dbal": "^2.0 || ^3.1.4",
  852. "doctrine/orm": "^2.7",
  853. "friendsofphp/php-cs-fixer": "^3.0",
  854. "kylekatarnls/multi-tester": "^2.0",
  855. "ondrejmirtes/better-reflection": "*",
  856. "phpmd/phpmd": "^2.9",
  857. "phpstan/extension-installer": "^1.0",
  858. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  859. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  860. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  861. "squizlabs/php_codesniffer": "^3.4"
  862. },
  863. "time": "2022-11-26T17:36:00+00:00",
  864. "bin": [
  865. "bin/carbon"
  866. ],
  867. "type": "library",
  868. "extra": {
  869. "branch-alias": {
  870. "dev-3.x": "3.x-dev",
  871. "dev-master": "2.x-dev"
  872. },
  873. "laravel": {
  874. "providers": [
  875. "Carbon\\Laravel\\ServiceProvider"
  876. ]
  877. },
  878. "phpstan": {
  879. "includes": [
  880. "extension.neon"
  881. ]
  882. }
  883. },
  884. "installation-source": "dist",
  885. "autoload": {
  886. "psr-4": {
  887. "Carbon\\": "src/Carbon/"
  888. }
  889. },
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Brian Nesbitt",
  896. "email": "brian@nesbot.com",
  897. "homepage": "https://markido.com"
  898. },
  899. {
  900. "name": "kylekatarnls",
  901. "homepage": "https://github.com/kylekatarnls"
  902. }
  903. ],
  904. "description": "An API extension for DateTime that supports 281 different languages.",
  905. "homepage": "https://carbon.nesbot.com",
  906. "keywords": [
  907. "date",
  908. "datetime",
  909. "time"
  910. ]
  911. },
  912. {
  913. "name": "overtrue/socialite",
  914. "version": "2.0.24",
  915. "version_normalized": "2.0.24.0",
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  919. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "ext-json": "*",
  924. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  925. "php": ">=5.6",
  926. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  927. },
  928. "require-dev": {
  929. "mockery/mockery": "~1.2",
  930. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  931. },
  932. "time": "2021-05-13T16:04:48+00:00",
  933. "type": "library",
  934. "installation-source": "dist",
  935. "autoload": {
  936. "psr-4": {
  937. "Overtrue\\Socialite\\": "src/"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "overtrue",
  947. "email": "anzhengchao@gmail.com"
  948. }
  949. ],
  950. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  951. "keywords": [
  952. "login",
  953. "oauth",
  954. "qq",
  955. "social",
  956. "wechat",
  957. "weibo"
  958. ]
  959. },
  960. {
  961. "name": "overtrue/wechat",
  962. "version": "4.4.3",
  963. "version_normalized": "4.4.3.0",
  964. "dist": {
  965. "type": "zip",
  966. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/4ec951ff1893ef5d4d798b1fe5fe5c85b77249e5",
  967. "reference": "4ec951ff1893ef5d4d798b1fe5fe5c85b77249e5",
  968. "shasum": ""
  969. },
  970. "require": {
  971. "easywechat-composer/easywechat-composer": "^1.1",
  972. "ext-fileinfo": "*",
  973. "ext-openssl": "*",
  974. "ext-simplexml": "*",
  975. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  976. "monolog/monolog": "^1.22 || ^2.0",
  977. "overtrue/socialite": "~2.0",
  978. "php": ">=7.2",
  979. "pimple/pimple": "^3.0",
  980. "psr/simple-cache": "^1.0",
  981. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  982. "symfony/event-dispatcher": "^4.3 || ^5.0",
  983. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  984. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  985. },
  986. "require-dev": {
  987. "friendsofphp/php-cs-fixer": "^2.15",
  988. "mikey179/vfsstream": "^1.6",
  989. "mockery/mockery": "^1.2.3",
  990. "phpstan/phpstan": "^0.12.0",
  991. "phpunit/phpunit": "^7.5"
  992. },
  993. "time": "2021-11-19T08:59:26+00:00",
  994. "type": "library",
  995. "installation-source": "dist",
  996. "autoload": {
  997. "psr-4": {
  998. "EasyWeChat\\": "src/"
  999. },
  1000. "files": [
  1001. "src/Kernel/Support/Helpers.php",
  1002. "src/Kernel/Helpers.php"
  1003. ]
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "overtrue",
  1012. "email": "anzhengchao@gmail.com"
  1013. }
  1014. ],
  1015. "description": "微信SDK",
  1016. "keywords": [
  1017. "easywechat",
  1018. "sdk",
  1019. "wechat",
  1020. "weixin",
  1021. "weixin-sdk"
  1022. ]
  1023. },
  1024. {
  1025. "name": "pclzip/pclzip",
  1026. "version": "2.8.2",
  1027. "version_normalized": "2.8.2.0",
  1028. "dist": {
  1029. "type": "zip",
  1030. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1031. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1032. "shasum": ""
  1033. },
  1034. "time": "2014-06-05T11:42:24+00:00",
  1035. "type": "library",
  1036. "installation-source": "dist",
  1037. "autoload": {
  1038. "classmap": [
  1039. "pclzip.lib.php"
  1040. ]
  1041. },
  1042. "notification-url": "https://packagist.org/downloads/",
  1043. "license": [
  1044. "LGPL-2.1"
  1045. ],
  1046. "authors": [
  1047. {
  1048. "name": "Vincent Blavet"
  1049. }
  1050. ],
  1051. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  1052. "homepage": "http://www.phpconcept.net/pclzip",
  1053. "keywords": [
  1054. "php",
  1055. "zip"
  1056. ]
  1057. },
  1058. {
  1059. "name": "phpoffice/common",
  1060. "version": "0.2.9",
  1061. "version_normalized": "0.2.9.0",
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/PHPOffice/Common/zipball/edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1065. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1066. "shasum": ""
  1067. },
  1068. "require": {
  1069. "pclzip/pclzip": "^2.8",
  1070. "php": ">=5.3.0"
  1071. },
  1072. "require-dev": {
  1073. "phpdocumentor/phpdocumentor": "2.*",
  1074. "phploc/phploc": "2.*",
  1075. "phpmd/phpmd": "2.*",
  1076. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1077. "sebastian/phpcpd": "2.*",
  1078. "squizlabs/php_codesniffer": "2.*"
  1079. },
  1080. "time": "2018-07-13T14:12:34+00:00",
  1081. "type": "library",
  1082. "installation-source": "dist",
  1083. "autoload": {
  1084. "psr-4": {
  1085. "PhpOffice\\Common\\": "src/Common/"
  1086. }
  1087. },
  1088. "notification-url": "https://packagist.org/downloads/",
  1089. "license": [
  1090. "LGPL"
  1091. ],
  1092. "authors": [
  1093. {
  1094. "name": "Mark Baker"
  1095. },
  1096. {
  1097. "name": "Franck Lefevre",
  1098. "homepage": "http://rootslabs.net"
  1099. }
  1100. ],
  1101. "description": "PHPOffice Common",
  1102. "homepage": "http://phpoffice.github.io",
  1103. "keywords": [
  1104. "common",
  1105. "component",
  1106. "office",
  1107. "php"
  1108. ]
  1109. },
  1110. {
  1111. "name": "phpoffice/phpspreadsheet",
  1112. "version": "1.16.0",
  1113. "version_normalized": "1.16.0.0",
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  1117. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  1118. "shasum": ""
  1119. },
  1120. "require": {
  1121. "ext-ctype": "*",
  1122. "ext-dom": "*",
  1123. "ext-fileinfo": "*",
  1124. "ext-gd": "*",
  1125. "ext-iconv": "*",
  1126. "ext-libxml": "*",
  1127. "ext-mbstring": "*",
  1128. "ext-simplexml": "*",
  1129. "ext-xml": "*",
  1130. "ext-xmlreader": "*",
  1131. "ext-xmlwriter": "*",
  1132. "ext-zip": "*",
  1133. "ext-zlib": "*",
  1134. "ezyang/htmlpurifier": "^4.13",
  1135. "maennchen/zipstream-php": "^2.1",
  1136. "markbaker/complex": "^1.5||^2.0",
  1137. "markbaker/matrix": "^1.2||^2.0",
  1138. "php": "^7.2||^8.0",
  1139. "psr/http-client": "^1.0",
  1140. "psr/http-factory": "^1.0",
  1141. "psr/simple-cache": "^1.0"
  1142. },
  1143. "require-dev": {
  1144. "dompdf/dompdf": "^0.8.5",
  1145. "friendsofphp/php-cs-fixer": "^2.16",
  1146. "jpgraph/jpgraph": "^4.0",
  1147. "mpdf/mpdf": "^8.0",
  1148. "phpcompatibility/php-compatibility": "^9.3",
  1149. "phpunit/phpunit": "^8.5||^9.3",
  1150. "squizlabs/php_codesniffer": "^3.5",
  1151. "tecnickcom/tcpdf": "^6.3"
  1152. },
  1153. "suggest": {
  1154. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  1155. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1156. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1157. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  1158. },
  1159. "time": "2020-12-31T18:03:49+00:00",
  1160. "type": "library",
  1161. "installation-source": "dist",
  1162. "autoload": {
  1163. "psr-4": {
  1164. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1165. }
  1166. },
  1167. "notification-url": "https://packagist.org/downloads/",
  1168. "license": [
  1169. "MIT"
  1170. ],
  1171. "authors": [
  1172. {
  1173. "name": "Maarten Balliauw",
  1174. "homepage": "https://blog.maartenballiauw.be"
  1175. },
  1176. {
  1177. "name": "Mark Baker",
  1178. "homepage": "https://markbakeruk.net"
  1179. },
  1180. {
  1181. "name": "Franck Lefevre",
  1182. "homepage": "https://rootslabs.net"
  1183. },
  1184. {
  1185. "name": "Erik Tilt"
  1186. },
  1187. {
  1188. "name": "Adrien Crivelli"
  1189. }
  1190. ],
  1191. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1192. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1193. "keywords": [
  1194. "OpenXML",
  1195. "excel",
  1196. "gnumeric",
  1197. "ods",
  1198. "php",
  1199. "spreadsheet",
  1200. "xls",
  1201. "xlsx"
  1202. ]
  1203. },
  1204. {
  1205. "name": "phpoffice/phpword",
  1206. "version": "0.17.0",
  1207. "version_normalized": "0.17.0.0",
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1211. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "ext-xml": "*",
  1216. "php": "^5.3.3 || ^7.0",
  1217. "phpoffice/common": "^0.2.9",
  1218. "zendframework/zend-escaper": "^2.2"
  1219. },
  1220. "require-dev": {
  1221. "dompdf/dompdf": "0.8.*",
  1222. "ext-gd": "*",
  1223. "ext-zip": "*",
  1224. "friendsofphp/php-cs-fixer": "^2.2",
  1225. "mpdf/mpdf": "5.7.4 || 6.* || 7.*",
  1226. "php-coveralls/php-coveralls": "1.1.0 || ^2.0",
  1227. "phploc/phploc": "2.* || 3.* || 4.*",
  1228. "phpmd/phpmd": "2.*",
  1229. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1230. "squizlabs/php_codesniffer": "^2.9",
  1231. "tecnickcom/tcpdf": "6.*"
  1232. },
  1233. "suggest": {
  1234. "dompdf/dompdf": "Allows writing PDF",
  1235. "ext-gd2": "Allows adding images",
  1236. "ext-xmlwriter": "Allows writing OOXML and ODF",
  1237. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  1238. "ext-zip": "Allows writing OOXML and ODF"
  1239. },
  1240. "time": "2019-10-01T20:43:33+00:00",
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-develop": "0.18-dev"
  1245. }
  1246. },
  1247. "installation-source": "dist",
  1248. "autoload": {
  1249. "psr-4": {
  1250. "PhpOffice\\PhpWord\\": "src/PhpWord"
  1251. }
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "LGPL-3.0"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "Mark Baker"
  1260. },
  1261. {
  1262. "name": "Gabriel Bull",
  1263. "email": "me@gabrielbull.com",
  1264. "homepage": "http://gabrielbull.com/"
  1265. },
  1266. {
  1267. "name": "Franck Lefevre",
  1268. "homepage": "https://rootslabs.net/blog/"
  1269. },
  1270. {
  1271. "name": "Ivan Lanin",
  1272. "homepage": "http://ivan.lanin.org"
  1273. },
  1274. {
  1275. "name": "Roman Syroeshko",
  1276. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  1277. },
  1278. {
  1279. "name": "Antoine de Troostembergh"
  1280. }
  1281. ],
  1282. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  1283. "homepage": "http://phpoffice.github.io",
  1284. "keywords": [
  1285. "ISO IEC 29500",
  1286. "OOXML",
  1287. "Office Open XML",
  1288. "OpenDocument",
  1289. "OpenXML",
  1290. "PhpOffice",
  1291. "PhpWord",
  1292. "Rich Text Format",
  1293. "WordprocessingML",
  1294. "doc",
  1295. "docx",
  1296. "html",
  1297. "odf",
  1298. "odt",
  1299. "office",
  1300. "pdf",
  1301. "php",
  1302. "reader",
  1303. "rtf",
  1304. "template",
  1305. "template processor",
  1306. "word",
  1307. "writer"
  1308. ]
  1309. },
  1310. {
  1311. "name": "pimple/pimple",
  1312. "version": "v3.5.0",
  1313. "version_normalized": "3.5.0.0",
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1317. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "php": ">=7.2.5",
  1322. "psr/container": "^1.1 || ^2.0"
  1323. },
  1324. "require-dev": {
  1325. "symfony/phpunit-bridge": "^5.4@dev"
  1326. },
  1327. "time": "2021-10-28T11:13:42+00:00",
  1328. "type": "library",
  1329. "extra": {
  1330. "branch-alias": {
  1331. "dev-master": "3.4.x-dev"
  1332. }
  1333. },
  1334. "installation-source": "dist",
  1335. "autoload": {
  1336. "psr-0": {
  1337. "Pimple": "src/"
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "Fabien Potencier",
  1347. "email": "fabien@symfony.com"
  1348. }
  1349. ],
  1350. "description": "Pimple, a simple Dependency Injection Container",
  1351. "homepage": "https://pimple.symfony.com",
  1352. "keywords": [
  1353. "container",
  1354. "dependency injection"
  1355. ]
  1356. },
  1357. {
  1358. "name": "psr/cache",
  1359. "version": "1.0.1",
  1360. "version_normalized": "1.0.1.0",
  1361. "dist": {
  1362. "type": "zip",
  1363. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1364. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1365. "shasum": ""
  1366. },
  1367. "require": {
  1368. "php": ">=5.3.0"
  1369. },
  1370. "time": "2016-08-06T20:24:11+00:00",
  1371. "type": "library",
  1372. "extra": {
  1373. "branch-alias": {
  1374. "dev-master": "1.0.x-dev"
  1375. }
  1376. },
  1377. "installation-source": "dist",
  1378. "autoload": {
  1379. "psr-4": {
  1380. "Psr\\Cache\\": "src/"
  1381. }
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "MIT"
  1386. ],
  1387. "authors": [
  1388. {
  1389. "name": "PHP-FIG",
  1390. "homepage": "http://www.php-fig.org/"
  1391. }
  1392. ],
  1393. "description": "Common interface for caching libraries",
  1394. "keywords": [
  1395. "cache",
  1396. "psr",
  1397. "psr-6"
  1398. ]
  1399. },
  1400. {
  1401. "name": "psr/container",
  1402. "version": "2.0.1",
  1403. "version_normalized": "2.0.1.0",
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/php-fig/container/zipball/2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  1407. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "php": ">=7.2.0"
  1412. },
  1413. "time": "2021-03-24T13:40:57+00:00",
  1414. "type": "library",
  1415. "extra": {
  1416. "branch-alias": {
  1417. "dev-master": "2.0.x-dev"
  1418. }
  1419. },
  1420. "installation-source": "dist",
  1421. "autoload": {
  1422. "psr-4": {
  1423. "Psr\\Container\\": "src/"
  1424. }
  1425. },
  1426. "notification-url": "https://packagist.org/downloads/",
  1427. "license": [
  1428. "MIT"
  1429. ],
  1430. "authors": [
  1431. {
  1432. "name": "PHP-FIG",
  1433. "homepage": "https://www.php-fig.org/"
  1434. }
  1435. ],
  1436. "description": "Common Container Interface (PHP FIG PSR-11)",
  1437. "homepage": "https://github.com/php-fig/container",
  1438. "keywords": [
  1439. "PSR-11",
  1440. "container",
  1441. "container-interface",
  1442. "container-interop",
  1443. "psr"
  1444. ]
  1445. },
  1446. {
  1447. "name": "psr/event-dispatcher",
  1448. "version": "1.0.0",
  1449. "version_normalized": "1.0.0.0",
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1453. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "php": ">=7.2.0"
  1458. },
  1459. "time": "2019-01-08T18:20:26+00:00",
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "1.0.x-dev"
  1464. }
  1465. },
  1466. "installation-source": "dist",
  1467. "autoload": {
  1468. "psr-4": {
  1469. "Psr\\EventDispatcher\\": "src/"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "PHP-FIG",
  1479. "homepage": "http://www.php-fig.org/"
  1480. }
  1481. ],
  1482. "description": "Standard interfaces for event handling.",
  1483. "keywords": [
  1484. "events",
  1485. "psr",
  1486. "psr-14"
  1487. ]
  1488. },
  1489. {
  1490. "name": "psr/http-client",
  1491. "version": "1.0.1",
  1492. "version_normalized": "1.0.1.0",
  1493. "dist": {
  1494. "type": "zip",
  1495. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1496. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1497. "shasum": ""
  1498. },
  1499. "require": {
  1500. "php": "^7.0 || ^8.0",
  1501. "psr/http-message": "^1.0"
  1502. },
  1503. "time": "2020-06-29T06:28:15+00:00",
  1504. "type": "library",
  1505. "extra": {
  1506. "branch-alias": {
  1507. "dev-master": "1.0.x-dev"
  1508. }
  1509. },
  1510. "installation-source": "dist",
  1511. "autoload": {
  1512. "psr-4": {
  1513. "Psr\\Http\\Client\\": "src/"
  1514. }
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "MIT"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "PHP-FIG",
  1523. "homepage": "http://www.php-fig.org/"
  1524. }
  1525. ],
  1526. "description": "Common interface for HTTP clients",
  1527. "homepage": "https://github.com/php-fig/http-client",
  1528. "keywords": [
  1529. "http",
  1530. "http-client",
  1531. "psr",
  1532. "psr-18"
  1533. ]
  1534. },
  1535. {
  1536. "name": "psr/http-factory",
  1537. "version": "1.0.1",
  1538. "version_normalized": "1.0.1.0",
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1542. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "php": ">=7.0.0",
  1547. "psr/http-message": "^1.0"
  1548. },
  1549. "time": "2019-04-30T12:38:16+00:00",
  1550. "type": "library",
  1551. "extra": {
  1552. "branch-alias": {
  1553. "dev-master": "1.0.x-dev"
  1554. }
  1555. },
  1556. "installation-source": "dist",
  1557. "autoload": {
  1558. "psr-4": {
  1559. "Psr\\Http\\Message\\": "src/"
  1560. }
  1561. },
  1562. "notification-url": "https://packagist.org/downloads/",
  1563. "license": [
  1564. "MIT"
  1565. ],
  1566. "authors": [
  1567. {
  1568. "name": "PHP-FIG",
  1569. "homepage": "http://www.php-fig.org/"
  1570. }
  1571. ],
  1572. "description": "Common interfaces for PSR-7 HTTP message factories",
  1573. "keywords": [
  1574. "factory",
  1575. "http",
  1576. "message",
  1577. "psr",
  1578. "psr-17",
  1579. "psr-7",
  1580. "request",
  1581. "response"
  1582. ]
  1583. },
  1584. {
  1585. "name": "psr/http-message",
  1586. "version": "1.0.1",
  1587. "version_normalized": "1.0.1.0",
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1591. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "php": ">=5.3.0"
  1596. },
  1597. "time": "2016-08-06T14:39:51+00:00",
  1598. "type": "library",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "1.0.x-dev"
  1602. }
  1603. },
  1604. "installation-source": "dist",
  1605. "autoload": {
  1606. "psr-4": {
  1607. "Psr\\Http\\Message\\": "src/"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "PHP-FIG",
  1617. "homepage": "http://www.php-fig.org/"
  1618. }
  1619. ],
  1620. "description": "Common interface for HTTP messages",
  1621. "homepage": "https://github.com/php-fig/http-message",
  1622. "keywords": [
  1623. "http",
  1624. "http-message",
  1625. "psr",
  1626. "psr-7",
  1627. "request",
  1628. "response"
  1629. ]
  1630. },
  1631. {
  1632. "name": "psr/log",
  1633. "version": "1.1.4",
  1634. "version_normalized": "1.1.4.0",
  1635. "dist": {
  1636. "type": "zip",
  1637. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1638. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1639. "shasum": ""
  1640. },
  1641. "require": {
  1642. "php": ">=5.3.0"
  1643. },
  1644. "time": "2021-05-03T11:20:27+00:00",
  1645. "type": "library",
  1646. "extra": {
  1647. "branch-alias": {
  1648. "dev-master": "1.1.x-dev"
  1649. }
  1650. },
  1651. "installation-source": "dist",
  1652. "autoload": {
  1653. "psr-4": {
  1654. "Psr\\Log\\": "Psr/Log/"
  1655. }
  1656. },
  1657. "notification-url": "https://packagist.org/downloads/",
  1658. "license": [
  1659. "MIT"
  1660. ],
  1661. "authors": [
  1662. {
  1663. "name": "PHP-FIG",
  1664. "homepage": "https://www.php-fig.org/"
  1665. }
  1666. ],
  1667. "description": "Common interface for logging libraries",
  1668. "homepage": "https://github.com/php-fig/log",
  1669. "keywords": [
  1670. "log",
  1671. "psr",
  1672. "psr-3"
  1673. ]
  1674. },
  1675. {
  1676. "name": "psr/simple-cache",
  1677. "version": "1.0.1",
  1678. "version_normalized": "1.0.1.0",
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1682. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1683. "shasum": ""
  1684. },
  1685. "require": {
  1686. "php": ">=5.3.0"
  1687. },
  1688. "time": "2017-10-23T01:57:42+00:00",
  1689. "type": "library",
  1690. "extra": {
  1691. "branch-alias": {
  1692. "dev-master": "1.0.x-dev"
  1693. }
  1694. },
  1695. "installation-source": "dist",
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Psr\\SimpleCache\\": "src/"
  1699. }
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "MIT"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "PHP-FIG",
  1708. "homepage": "http://www.php-fig.org/"
  1709. }
  1710. ],
  1711. "description": "Common interfaces for simple caching",
  1712. "keywords": [
  1713. "cache",
  1714. "caching",
  1715. "psr",
  1716. "psr-16",
  1717. "simple-cache"
  1718. ]
  1719. },
  1720. {
  1721. "name": "ralouphie/getallheaders",
  1722. "version": "3.0.3",
  1723. "version_normalized": "3.0.3.0",
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1727. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "php": ">=5.6"
  1732. },
  1733. "require-dev": {
  1734. "php-coveralls/php-coveralls": "^2.1",
  1735. "phpunit/phpunit": "^5 || ^6.5"
  1736. },
  1737. "time": "2019-03-08T08:55:37+00:00",
  1738. "type": "library",
  1739. "installation-source": "dist",
  1740. "autoload": {
  1741. "files": [
  1742. "src/getallheaders.php"
  1743. ]
  1744. },
  1745. "notification-url": "https://packagist.org/downloads/",
  1746. "license": [
  1747. "MIT"
  1748. ],
  1749. "authors": [
  1750. {
  1751. "name": "Ralph Khattar",
  1752. "email": "ralph.khattar@gmail.com"
  1753. }
  1754. ],
  1755. "description": "A polyfill for getallheaders."
  1756. },
  1757. {
  1758. "name": "symfony/cache",
  1759. "version": "v5.4.0",
  1760. "version_normalized": "5.4.0.0",
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/symfony/cache/zipball/d97d6d7f46cb69968f094e329abd987d5ee17c79",
  1764. "reference": "d97d6d7f46cb69968f094e329abd987d5ee17c79",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": ">=7.2.5",
  1769. "psr/cache": "^1.0|^2.0",
  1770. "psr/log": "^1.1|^2|^3",
  1771. "symfony/cache-contracts": "^1.1.7|^2",
  1772. "symfony/deprecation-contracts": "^2.1|^3",
  1773. "symfony/polyfill-php73": "^1.9",
  1774. "symfony/polyfill-php80": "^1.16",
  1775. "symfony/service-contracts": "^1.1|^2|^3",
  1776. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  1777. },
  1778. "conflict": {
  1779. "doctrine/dbal": "<2.13.1",
  1780. "symfony/dependency-injection": "<4.4",
  1781. "symfony/http-kernel": "<4.4",
  1782. "symfony/var-dumper": "<4.4"
  1783. },
  1784. "provide": {
  1785. "psr/cache-implementation": "1.0|2.0",
  1786. "psr/simple-cache-implementation": "1.0|2.0",
  1787. "symfony/cache-implementation": "1.0|2.0"
  1788. },
  1789. "require-dev": {
  1790. "cache/integration-tests": "dev-master",
  1791. "doctrine/cache": "^1.6|^2.0",
  1792. "doctrine/dbal": "^2.13.1|^3.0",
  1793. "predis/predis": "^1.1",
  1794. "psr/simple-cache": "^1.0|^2.0",
  1795. "symfony/config": "^4.4|^5.0|^6.0",
  1796. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1797. "symfony/filesystem": "^4.4|^5.0|^6.0",
  1798. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  1799. "symfony/messenger": "^4.4|^5.0|^6.0",
  1800. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  1801. },
  1802. "time": "2021-11-23T18:51:45+00:00",
  1803. "type": "library",
  1804. "installation-source": "dist",
  1805. "autoload": {
  1806. "psr-4": {
  1807. "Symfony\\Component\\Cache\\": ""
  1808. },
  1809. "exclude-from-classmap": [
  1810. "/Tests/"
  1811. ]
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "MIT"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Nicolas Grekas",
  1820. "email": "p@tchwork.com"
  1821. },
  1822. {
  1823. "name": "Symfony Community",
  1824. "homepage": "https://symfony.com/contributors"
  1825. }
  1826. ],
  1827. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  1828. "homepage": "https://symfony.com",
  1829. "keywords": [
  1830. "caching",
  1831. "psr6"
  1832. ]
  1833. },
  1834. {
  1835. "name": "symfony/cache-contracts",
  1836. "version": "v2.5.0",
  1837. "version_normalized": "2.5.0.0",
  1838. "dist": {
  1839. "type": "zip",
  1840. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ac2e168102a2e06a2624f0379bde94cd5854ced2",
  1841. "reference": "ac2e168102a2e06a2624f0379bde94cd5854ced2",
  1842. "shasum": ""
  1843. },
  1844. "require": {
  1845. "php": ">=7.2.5",
  1846. "psr/cache": "^1.0|^2.0|^3.0"
  1847. },
  1848. "suggest": {
  1849. "symfony/cache-implementation": ""
  1850. },
  1851. "time": "2021-08-17T14:20:01+00:00",
  1852. "type": "library",
  1853. "extra": {
  1854. "branch-alias": {
  1855. "dev-main": "2.5-dev"
  1856. },
  1857. "thanks": {
  1858. "name": "symfony/contracts",
  1859. "url": "https://github.com/symfony/contracts"
  1860. }
  1861. },
  1862. "installation-source": "dist",
  1863. "autoload": {
  1864. "psr-4": {
  1865. "Symfony\\Contracts\\Cache\\": ""
  1866. }
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Nicolas Grekas",
  1875. "email": "p@tchwork.com"
  1876. },
  1877. {
  1878. "name": "Symfony Community",
  1879. "homepage": "https://symfony.com/contributors"
  1880. }
  1881. ],
  1882. "description": "Generic abstractions related to caching",
  1883. "homepage": "https://symfony.com",
  1884. "keywords": [
  1885. "abstractions",
  1886. "contracts",
  1887. "decoupling",
  1888. "interfaces",
  1889. "interoperability",
  1890. "standards"
  1891. ]
  1892. },
  1893. {
  1894. "name": "symfony/deprecation-contracts",
  1895. "version": "v2.5.0",
  1896. "version_normalized": "2.5.0.0",
  1897. "dist": {
  1898. "type": "zip",
  1899. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1900. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1901. "shasum": ""
  1902. },
  1903. "require": {
  1904. "php": ">=7.1"
  1905. },
  1906. "time": "2021-07-12T14:48:14+00:00",
  1907. "type": "library",
  1908. "extra": {
  1909. "branch-alias": {
  1910. "dev-main": "2.5-dev"
  1911. },
  1912. "thanks": {
  1913. "name": "symfony/contracts",
  1914. "url": "https://github.com/symfony/contracts"
  1915. }
  1916. },
  1917. "installation-source": "dist",
  1918. "autoload": {
  1919. "files": [
  1920. "function.php"
  1921. ]
  1922. },
  1923. "notification-url": "https://packagist.org/downloads/",
  1924. "license": [
  1925. "MIT"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "Nicolas Grekas",
  1930. "email": "p@tchwork.com"
  1931. },
  1932. {
  1933. "name": "Symfony Community",
  1934. "homepage": "https://symfony.com/contributors"
  1935. }
  1936. ],
  1937. "description": "A generic function and convention to trigger deprecation notices",
  1938. "homepage": "https://symfony.com"
  1939. },
  1940. {
  1941. "name": "symfony/event-dispatcher",
  1942. "version": "v5.4.0",
  1943. "version_normalized": "5.4.0.0",
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
  1947. "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
  1948. "shasum": ""
  1949. },
  1950. "require": {
  1951. "php": ">=7.2.5",
  1952. "symfony/deprecation-contracts": "^2.1|^3",
  1953. "symfony/event-dispatcher-contracts": "^2|^3",
  1954. "symfony/polyfill-php80": "^1.16"
  1955. },
  1956. "conflict": {
  1957. "symfony/dependency-injection": "<4.4"
  1958. },
  1959. "provide": {
  1960. "psr/event-dispatcher-implementation": "1.0",
  1961. "symfony/event-dispatcher-implementation": "2.0"
  1962. },
  1963. "require-dev": {
  1964. "psr/log": "^1|^2|^3",
  1965. "symfony/config": "^4.4|^5.0|^6.0",
  1966. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1967. "symfony/error-handler": "^4.4|^5.0|^6.0",
  1968. "symfony/expression-language": "^4.4|^5.0|^6.0",
  1969. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  1970. "symfony/service-contracts": "^1.1|^2|^3",
  1971. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  1972. },
  1973. "suggest": {
  1974. "symfony/dependency-injection": "",
  1975. "symfony/http-kernel": ""
  1976. },
  1977. "time": "2021-11-23T10:19:22+00:00",
  1978. "type": "library",
  1979. "installation-source": "dist",
  1980. "autoload": {
  1981. "psr-4": {
  1982. "Symfony\\Component\\EventDispatcher\\": ""
  1983. },
  1984. "exclude-from-classmap": [
  1985. "/Tests/"
  1986. ]
  1987. },
  1988. "notification-url": "https://packagist.org/downloads/",
  1989. "license": [
  1990. "MIT"
  1991. ],
  1992. "authors": [
  1993. {
  1994. "name": "Fabien Potencier",
  1995. "email": "fabien@symfony.com"
  1996. },
  1997. {
  1998. "name": "Symfony Community",
  1999. "homepage": "https://symfony.com/contributors"
  2000. }
  2001. ],
  2002. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2003. "homepage": "https://symfony.com"
  2004. },
  2005. {
  2006. "name": "symfony/event-dispatcher-contracts",
  2007. "version": "v2.5.0",
  2008. "version_normalized": "2.5.0.0",
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  2012. "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "php": ">=7.2.5",
  2017. "psr/event-dispatcher": "^1"
  2018. },
  2019. "suggest": {
  2020. "symfony/event-dispatcher-implementation": ""
  2021. },
  2022. "time": "2021-07-12T14:48:14+00:00",
  2023. "type": "library",
  2024. "extra": {
  2025. "branch-alias": {
  2026. "dev-main": "2.5-dev"
  2027. },
  2028. "thanks": {
  2029. "name": "symfony/contracts",
  2030. "url": "https://github.com/symfony/contracts"
  2031. }
  2032. },
  2033. "installation-source": "dist",
  2034. "autoload": {
  2035. "psr-4": {
  2036. "Symfony\\Contracts\\EventDispatcher\\": ""
  2037. }
  2038. },
  2039. "notification-url": "https://packagist.org/downloads/",
  2040. "license": [
  2041. "MIT"
  2042. ],
  2043. "authors": [
  2044. {
  2045. "name": "Nicolas Grekas",
  2046. "email": "p@tchwork.com"
  2047. },
  2048. {
  2049. "name": "Symfony Community",
  2050. "homepage": "https://symfony.com/contributors"
  2051. }
  2052. ],
  2053. "description": "Generic abstractions related to dispatching event",
  2054. "homepage": "https://symfony.com",
  2055. "keywords": [
  2056. "abstractions",
  2057. "contracts",
  2058. "decoupling",
  2059. "interfaces",
  2060. "interoperability",
  2061. "standards"
  2062. ]
  2063. },
  2064. {
  2065. "name": "symfony/http-foundation",
  2066. "version": "v5.4.1",
  2067. "version_normalized": "5.4.1.0",
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5dad3780023a707f4c24beac7d57aead85c1ce3c",
  2071. "reference": "5dad3780023a707f4c24beac7d57aead85c1ce3c",
  2072. "shasum": ""
  2073. },
  2074. "require": {
  2075. "php": ">=7.2.5",
  2076. "symfony/deprecation-contracts": "^2.1|^3",
  2077. "symfony/polyfill-mbstring": "~1.1",
  2078. "symfony/polyfill-php80": "^1.16"
  2079. },
  2080. "require-dev": {
  2081. "predis/predis": "~1.0",
  2082. "symfony/cache": "^4.4|^5.0|^6.0",
  2083. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2084. "symfony/mime": "^4.4|^5.0|^6.0"
  2085. },
  2086. "suggest": {
  2087. "symfony/mime": "To use the file extension guesser"
  2088. },
  2089. "time": "2021-12-09T12:46:57+00:00",
  2090. "type": "library",
  2091. "installation-source": "dist",
  2092. "autoload": {
  2093. "psr-4": {
  2094. "Symfony\\Component\\HttpFoundation\\": ""
  2095. },
  2096. "exclude-from-classmap": [
  2097. "/Tests/"
  2098. ]
  2099. },
  2100. "notification-url": "https://packagist.org/downloads/",
  2101. "license": [
  2102. "MIT"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "Fabien Potencier",
  2107. "email": "fabien@symfony.com"
  2108. },
  2109. {
  2110. "name": "Symfony Community",
  2111. "homepage": "https://symfony.com/contributors"
  2112. }
  2113. ],
  2114. "description": "Defines an object-oriented layer for the HTTP specification",
  2115. "homepage": "https://symfony.com"
  2116. },
  2117. {
  2118. "name": "symfony/polyfill-mbstring",
  2119. "version": "v1.22.0",
  2120. "version_normalized": "1.22.0.0",
  2121. "dist": {
  2122. "type": "zip",
  2123. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  2124. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  2125. "shasum": ""
  2126. },
  2127. "require": {
  2128. "php": ">=7.1"
  2129. },
  2130. "suggest": {
  2131. "ext-mbstring": "For best performance"
  2132. },
  2133. "time": "2021-01-07T16:49:33+00:00",
  2134. "type": "library",
  2135. "extra": {
  2136. "branch-alias": {
  2137. "dev-main": "1.22-dev"
  2138. },
  2139. "thanks": {
  2140. "name": "symfony/polyfill",
  2141. "url": "https://github.com/symfony/polyfill"
  2142. }
  2143. },
  2144. "installation-source": "dist",
  2145. "autoload": {
  2146. "psr-4": {
  2147. "Symfony\\Polyfill\\Mbstring\\": ""
  2148. },
  2149. "files": [
  2150. "bootstrap.php"
  2151. ]
  2152. },
  2153. "notification-url": "https://packagist.org/downloads/",
  2154. "license": [
  2155. "MIT"
  2156. ],
  2157. "authors": [
  2158. {
  2159. "name": "Nicolas Grekas",
  2160. "email": "p@tchwork.com"
  2161. },
  2162. {
  2163. "name": "Symfony Community",
  2164. "homepage": "https://symfony.com/contributors"
  2165. }
  2166. ],
  2167. "description": "Symfony polyfill for the Mbstring extension",
  2168. "homepage": "https://symfony.com",
  2169. "keywords": [
  2170. "compatibility",
  2171. "mbstring",
  2172. "polyfill",
  2173. "portable",
  2174. "shim"
  2175. ]
  2176. },
  2177. {
  2178. "name": "symfony/polyfill-php73",
  2179. "version": "v1.23.0",
  2180. "version_normalized": "1.23.0.0",
  2181. "dist": {
  2182. "type": "zip",
  2183. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  2184. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  2185. "shasum": ""
  2186. },
  2187. "require": {
  2188. "php": ">=7.1"
  2189. },
  2190. "time": "2021-02-19T12:13:01+00:00",
  2191. "type": "library",
  2192. "extra": {
  2193. "branch-alias": {
  2194. "dev-main": "1.23-dev"
  2195. },
  2196. "thanks": {
  2197. "name": "symfony/polyfill",
  2198. "url": "https://github.com/symfony/polyfill"
  2199. }
  2200. },
  2201. "installation-source": "dist",
  2202. "autoload": {
  2203. "psr-4": {
  2204. "Symfony\\Polyfill\\Php73\\": ""
  2205. },
  2206. "files": [
  2207. "bootstrap.php"
  2208. ],
  2209. "classmap": [
  2210. "Resources/stubs"
  2211. ]
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "authors": [
  2218. {
  2219. "name": "Nicolas Grekas",
  2220. "email": "p@tchwork.com"
  2221. },
  2222. {
  2223. "name": "Symfony Community",
  2224. "homepage": "https://symfony.com/contributors"
  2225. }
  2226. ],
  2227. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2228. "homepage": "https://symfony.com",
  2229. "keywords": [
  2230. "compatibility",
  2231. "polyfill",
  2232. "portable",
  2233. "shim"
  2234. ]
  2235. },
  2236. {
  2237. "name": "symfony/polyfill-php80",
  2238. "version": "v1.23.1",
  2239. "version_normalized": "1.23.1.0",
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  2243. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "php": ">=7.1"
  2248. },
  2249. "time": "2021-07-28T13:41:28+00:00",
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-main": "1.23-dev"
  2254. },
  2255. "thanks": {
  2256. "name": "symfony/polyfill",
  2257. "url": "https://github.com/symfony/polyfill"
  2258. }
  2259. },
  2260. "installation-source": "dist",
  2261. "autoload": {
  2262. "psr-4": {
  2263. "Symfony\\Polyfill\\Php80\\": ""
  2264. },
  2265. "files": [
  2266. "bootstrap.php"
  2267. ],
  2268. "classmap": [
  2269. "Resources/stubs"
  2270. ]
  2271. },
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "MIT"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Ion Bazan",
  2279. "email": "ion.bazan@gmail.com"
  2280. },
  2281. {
  2282. "name": "Nicolas Grekas",
  2283. "email": "p@tchwork.com"
  2284. },
  2285. {
  2286. "name": "Symfony Community",
  2287. "homepage": "https://symfony.com/contributors"
  2288. }
  2289. ],
  2290. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2291. "homepage": "https://symfony.com",
  2292. "keywords": [
  2293. "compatibility",
  2294. "polyfill",
  2295. "portable",
  2296. "shim"
  2297. ]
  2298. },
  2299. {
  2300. "name": "symfony/psr-http-message-bridge",
  2301. "version": "v2.1.2",
  2302. "version_normalized": "2.1.2.0",
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  2306. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "php": ">=7.1",
  2311. "psr/http-message": "^1.0",
  2312. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  2313. },
  2314. "require-dev": {
  2315. "nyholm/psr7": "^1.1",
  2316. "psr/log": "^1.1 || ^2 || ^3",
  2317. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  2318. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  2319. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  2320. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  2321. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  2322. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  2323. },
  2324. "suggest": {
  2325. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2326. },
  2327. "time": "2021-11-05T13:13:39+00:00",
  2328. "type": "symfony-bridge",
  2329. "extra": {
  2330. "branch-alias": {
  2331. "dev-main": "2.1-dev"
  2332. }
  2333. },
  2334. "installation-source": "dist",
  2335. "autoload": {
  2336. "psr-4": {
  2337. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2338. },
  2339. "exclude-from-classmap": [
  2340. "/Tests/"
  2341. ]
  2342. },
  2343. "notification-url": "https://packagist.org/downloads/",
  2344. "license": [
  2345. "MIT"
  2346. ],
  2347. "authors": [
  2348. {
  2349. "name": "Fabien Potencier",
  2350. "email": "fabien@symfony.com"
  2351. },
  2352. {
  2353. "name": "Symfony Community",
  2354. "homepage": "http://symfony.com/contributors"
  2355. }
  2356. ],
  2357. "description": "PSR HTTP message bridge",
  2358. "homepage": "http://symfony.com",
  2359. "keywords": [
  2360. "http",
  2361. "http-message",
  2362. "psr-17",
  2363. "psr-7"
  2364. ]
  2365. },
  2366. {
  2367. "name": "symfony/service-contracts",
  2368. "version": "v1.1.2",
  2369. "version_normalized": "1.1.2.0",
  2370. "dist": {
  2371. "type": "zip",
  2372. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  2373. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  2374. "shasum": ""
  2375. },
  2376. "require": {
  2377. "php": "^7.1.3"
  2378. },
  2379. "suggest": {
  2380. "psr/container": "",
  2381. "symfony/service-implementation": ""
  2382. },
  2383. "time": "2019-05-28T07:50:59+00:00",
  2384. "type": "library",
  2385. "extra": {
  2386. "branch-alias": {
  2387. "dev-master": "1.1-dev"
  2388. }
  2389. },
  2390. "installation-source": "dist",
  2391. "autoload": {
  2392. "psr-4": {
  2393. "Symfony\\Contracts\\Service\\": ""
  2394. }
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "MIT"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "Nicolas Grekas",
  2403. "email": "p@tchwork.com"
  2404. },
  2405. {
  2406. "name": "Symfony Community",
  2407. "homepage": "https://symfony.com/contributors"
  2408. }
  2409. ],
  2410. "description": "Generic abstractions related to writing services",
  2411. "homepage": "https://symfony.com",
  2412. "keywords": [
  2413. "abstractions",
  2414. "contracts",
  2415. "decoupling",
  2416. "interfaces",
  2417. "interoperability",
  2418. "standards"
  2419. ]
  2420. },
  2421. {
  2422. "name": "symfony/translation",
  2423. "version": "v4.4.47",
  2424. "version_normalized": "4.4.47.0",
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/translation/v4.4.47/symfony-translation-v4.4.47.zip",
  2428. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": ">=7.1.3",
  2433. "symfony/polyfill-mbstring": "~1.0",
  2434. "symfony/polyfill-php80": "^1.16",
  2435. "symfony/translation-contracts": "^1.1.6|^2"
  2436. },
  2437. "conflict": {
  2438. "symfony/config": "<3.4",
  2439. "symfony/dependency-injection": "<3.4",
  2440. "symfony/http-kernel": "<4.4",
  2441. "symfony/yaml": "<3.4"
  2442. },
  2443. "provide": {
  2444. "symfony/translation-implementation": "1.0|2.0"
  2445. },
  2446. "require-dev": {
  2447. "psr/log": "^1|^2|^3",
  2448. "symfony/config": "^3.4|^4.0|^5.0",
  2449. "symfony/console": "^3.4|^4.0|^5.0",
  2450. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  2451. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  2452. "symfony/http-kernel": "^4.4",
  2453. "symfony/intl": "^3.4|^4.0|^5.0",
  2454. "symfony/service-contracts": "^1.1.2|^2",
  2455. "symfony/yaml": "^3.4|^4.0|^5.0"
  2456. },
  2457. "suggest": {
  2458. "psr/log-implementation": "To use logging capability in translator",
  2459. "symfony/config": "",
  2460. "symfony/yaml": ""
  2461. },
  2462. "time": "2022-10-03T15:15:11+00:00",
  2463. "type": "library",
  2464. "installation-source": "dist",
  2465. "autoload": {
  2466. "psr-4": {
  2467. "Symfony\\Component\\Translation\\": ""
  2468. },
  2469. "exclude-from-classmap": [
  2470. "/Tests/"
  2471. ]
  2472. },
  2473. "license": [
  2474. "MIT"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Fabien Potencier",
  2479. "email": "fabien@symfony.com"
  2480. },
  2481. {
  2482. "name": "Symfony Community",
  2483. "homepage": "https://symfony.com/contributors"
  2484. }
  2485. ],
  2486. "description": "Provides tools to internationalize your application",
  2487. "homepage": "https://symfony.com"
  2488. },
  2489. {
  2490. "name": "symfony/translation-contracts",
  2491. "version": "v2.5.2",
  2492. "version_normalized": "2.5.2.0",
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/translation-contracts/v2.5.2/symfony-translation-contracts-v2.5.2.zip",
  2496. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  2497. "shasum": ""
  2498. },
  2499. "require": {
  2500. "php": ">=7.2.5"
  2501. },
  2502. "suggest": {
  2503. "symfony/translation-implementation": ""
  2504. },
  2505. "time": "2022-06-27T16:58:25+00:00",
  2506. "type": "library",
  2507. "extra": {
  2508. "branch-alias": {
  2509. "dev-main": "2.5-dev"
  2510. },
  2511. "thanks": {
  2512. "name": "symfony/contracts",
  2513. "url": "https://github.com/symfony/contracts"
  2514. }
  2515. },
  2516. "installation-source": "dist",
  2517. "autoload": {
  2518. "psr-4": {
  2519. "Symfony\\Contracts\\Translation\\": ""
  2520. }
  2521. },
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Nicolas Grekas",
  2528. "email": "p@tchwork.com"
  2529. },
  2530. {
  2531. "name": "Symfony Community",
  2532. "homepage": "https://symfony.com/contributors"
  2533. }
  2534. ],
  2535. "description": "Generic abstractions related to translation",
  2536. "homepage": "https://symfony.com",
  2537. "keywords": [
  2538. "abstractions",
  2539. "contracts",
  2540. "decoupling",
  2541. "interfaces",
  2542. "interoperability",
  2543. "standards"
  2544. ]
  2545. },
  2546. {
  2547. "name": "symfony/var-exporter",
  2548. "version": "v5.4.0",
  2549. "version_normalized": "5.4.0.0",
  2550. "dist": {
  2551. "type": "zip",
  2552. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/d59446d6166b1643a8a3c30c2fa8e16e51cdbde7",
  2553. "reference": "d59446d6166b1643a8a3c30c2fa8e16e51cdbde7",
  2554. "shasum": ""
  2555. },
  2556. "require": {
  2557. "php": ">=7.2.5",
  2558. "symfony/polyfill-php80": "^1.16"
  2559. },
  2560. "require-dev": {
  2561. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  2562. },
  2563. "time": "2021-11-22T10:44:13+00:00",
  2564. "type": "library",
  2565. "installation-source": "dist",
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Symfony\\Component\\VarExporter\\": ""
  2569. },
  2570. "exclude-from-classmap": [
  2571. "/Tests/"
  2572. ]
  2573. },
  2574. "notification-url": "https://packagist.org/downloads/",
  2575. "license": [
  2576. "MIT"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "Nicolas Grekas",
  2581. "email": "p@tchwork.com"
  2582. },
  2583. {
  2584. "name": "Symfony Community",
  2585. "homepage": "https://symfony.com/contributors"
  2586. }
  2587. ],
  2588. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  2589. "homepage": "https://symfony.com",
  2590. "keywords": [
  2591. "clone",
  2592. "construct",
  2593. "export",
  2594. "hydrate",
  2595. "instantiate",
  2596. "serialize"
  2597. ]
  2598. },
  2599. {
  2600. "name": "topthink/framework",
  2601. "version": "v5.1.41",
  2602. "version_normalized": "5.1.41.0",
  2603. "dist": {
  2604. "type": "zip",
  2605. "url": "https://api.github.com/repos/top-think/framework/zipball/7137741a323a4a60cfca334507cd1812fac91bb2",
  2606. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2",
  2607. "shasum": ""
  2608. },
  2609. "require": {
  2610. "php": ">=5.6.0",
  2611. "topthink/think-installer": "2.*"
  2612. },
  2613. "require-dev": {
  2614. "johnkary/phpunit-speedtrap": "^1.0",
  2615. "mikey179/vfsstream": "~1.6",
  2616. "phpdocumentor/reflection-docblock": "^2.0",
  2617. "phploc/phploc": "2.*",
  2618. "phpunit/phpunit": "^5.0|^6.0",
  2619. "sebastian/phpcpd": "2.*",
  2620. "squizlabs/php_codesniffer": "2.*"
  2621. },
  2622. "time": "2021-01-11T02:51:29+00:00",
  2623. "type": "think-framework",
  2624. "installation-source": "dist",
  2625. "notification-url": "https://packagist.org/downloads/",
  2626. "license": [
  2627. "Apache-2.0"
  2628. ],
  2629. "authors": [
  2630. {
  2631. "name": "liu21st",
  2632. "email": "liu21st@gmail.com"
  2633. },
  2634. {
  2635. "name": "yunwuxin",
  2636. "email": "448901948@qq.com"
  2637. }
  2638. ],
  2639. "description": "the new thinkphp framework",
  2640. "homepage": "http://thinkphp.cn/",
  2641. "keywords": [
  2642. "framework",
  2643. "orm",
  2644. "thinkphp"
  2645. ]
  2646. },
  2647. {
  2648. "name": "topthink/think-helper",
  2649. "version": "v1.0.7",
  2650. "version_normalized": "1.0.7.0",
  2651. "dist": {
  2652. "type": "zip",
  2653. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  2654. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  2655. "shasum": ""
  2656. },
  2657. "time": "2018-10-05T00:43:21+00:00",
  2658. "type": "library",
  2659. "installation-source": "dist",
  2660. "autoload": {
  2661. "psr-4": {
  2662. "think\\helper\\": "src"
  2663. },
  2664. "files": [
  2665. "src/helper.php"
  2666. ]
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "Apache-2.0"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "yunwuxin",
  2675. "email": "448901948@qq.com"
  2676. }
  2677. ],
  2678. "description": "The ThinkPHP5 Helper Package"
  2679. },
  2680. {
  2681. "name": "topthink/think-image",
  2682. "version": "v1.0.7",
  2683. "version_normalized": "1.0.7.0",
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  2687. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  2688. "shasum": ""
  2689. },
  2690. "require": {
  2691. "ext-gd": "*"
  2692. },
  2693. "require-dev": {
  2694. "phpunit/phpunit": "4.8.*",
  2695. "topthink/framework": "^5.0"
  2696. },
  2697. "time": "2016-09-29T06:05:43+00:00",
  2698. "type": "library",
  2699. "installation-source": "dist",
  2700. "autoload": {
  2701. "psr-4": {
  2702. "think\\": "src"
  2703. }
  2704. },
  2705. "notification-url": "https://packagist.org/downloads/",
  2706. "license": [
  2707. "Apache-2.0"
  2708. ],
  2709. "authors": [
  2710. {
  2711. "name": "yunwuxin",
  2712. "email": "448901948@qq.com"
  2713. }
  2714. ],
  2715. "description": "The ThinkPHP5 Image Package"
  2716. },
  2717. {
  2718. "name": "topthink/think-installer",
  2719. "version": "v2.0.0",
  2720. "version_normalized": "2.0.0.0",
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/top-think/think-installer/zipball/f5400a12c60e513911aef41fe443fa6920952675",
  2724. "reference": "f5400a12c60e513911aef41fe443fa6920952675",
  2725. "shasum": ""
  2726. },
  2727. "require": {
  2728. "composer-plugin-api": "^1.0"
  2729. },
  2730. "require-dev": {
  2731. "composer/composer": "1.0.*@dev"
  2732. },
  2733. "time": "2018-05-11T06:45:42+00:00",
  2734. "type": "composer-plugin",
  2735. "extra": {
  2736. "class": "think\\composer\\Plugin"
  2737. },
  2738. "installation-source": "dist",
  2739. "autoload": {
  2740. "psr-4": {
  2741. "think\\composer\\": "src"
  2742. }
  2743. },
  2744. "notification-url": "https://packagist.org/downloads/",
  2745. "license": [
  2746. "Apache-2.0"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "yunwuxin",
  2751. "email": "448901948@qq.com"
  2752. }
  2753. ]
  2754. },
  2755. {
  2756. "name": "topthink/think-queue",
  2757. "version": "v2.0.4",
  2758. "version_normalized": "2.0.4.0",
  2759. "dist": {
  2760. "type": "zip",
  2761. "url": "https://api.github.com/repos/top-think/think-queue/zipball/d9b8f38c7af8ad770257b0d7db711ce8b12a6969",
  2762. "reference": "d9b8f38c7af8ad770257b0d7db711ce8b12a6969",
  2763. "shasum": ""
  2764. },
  2765. "require": {
  2766. "topthink/framework": "5.1.*",
  2767. "topthink/think-helper": ">=1.0.4",
  2768. "topthink/think-installer": "^2.0"
  2769. },
  2770. "time": "2018-05-11T06:55:55+00:00",
  2771. "type": "think-extend",
  2772. "extra": {
  2773. "think-config": {
  2774. "queue": "src/config.php"
  2775. }
  2776. },
  2777. "installation-source": "dist",
  2778. "autoload": {
  2779. "psr-4": {
  2780. "think\\": "src"
  2781. },
  2782. "files": [
  2783. "src/common.php"
  2784. ]
  2785. },
  2786. "notification-url": "https://packagist.org/downloads/",
  2787. "license": [
  2788. "Apache-2.0"
  2789. ],
  2790. "authors": [
  2791. {
  2792. "name": "yunwuxin",
  2793. "email": "448901948@qq.com"
  2794. }
  2795. ],
  2796. "description": "The ThinkPHP5 Queue Package"
  2797. },
  2798. {
  2799. "name": "workerman/gatewayclient",
  2800. "version": "v3.0.13",
  2801. "version_normalized": "3.0.13.0",
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/6f4e76f38947be5cabca2c6fee367151f248d949",
  2805. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949",
  2806. "shasum": ""
  2807. },
  2808. "time": "2018-09-15T03:03:50+00:00",
  2809. "type": "library",
  2810. "installation-source": "dist",
  2811. "autoload": {
  2812. "psr-4": {
  2813. "GatewayClient\\": "./"
  2814. }
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "homepage": "http://www.workerman.net"
  2821. },
  2822. {
  2823. "name": "yunwuxin/think-cron",
  2824. "version": "v2.0.0",
  2825. "version_normalized": "2.0.0.0",
  2826. "dist": {
  2827. "type": "zip",
  2828. "url": "https://mirrors.cloud.tencent.com/repository/composer/yunwuxin/think-cron/v2.0.0/yunwuxin-think-cron-v2.0.0.zip",
  2829. "reference": "4ac4c707073f767579e68d71d80fdbd881ecd565",
  2830. "shasum": ""
  2831. },
  2832. "require": {
  2833. "jenssegers/date": "^3.2",
  2834. "mtdowling/cron-expression": "^1.2",
  2835. "php": ">=5.6.0",
  2836. "topthink/think-installer": "^2.0"
  2837. },
  2838. "require-dev": {
  2839. "topthink/framework": "^5.1"
  2840. },
  2841. "time": "2018-09-10T09:45:23+00:00",
  2842. "type": "think-extend",
  2843. "extra": {
  2844. "think-config": {
  2845. "cron": "src/config.php"
  2846. }
  2847. },
  2848. "installation-source": "dist",
  2849. "autoload": {
  2850. "files": [
  2851. "src/helper.php"
  2852. ],
  2853. "psr-4": {
  2854. "yunwuxin\\cron\\": "src/cron"
  2855. }
  2856. },
  2857. "license": [
  2858. "Apache-2.0"
  2859. ],
  2860. "authors": [
  2861. {
  2862. "name": "yunwuxin",
  2863. "email": "448901948@qq.com"
  2864. }
  2865. ],
  2866. "description": "计划任务"
  2867. },
  2868. {
  2869. "name": "zendframework/zend-escaper",
  2870. "version": "2.6.1",
  2871. "version_normalized": "2.6.1.0",
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2875. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2876. "shasum": ""
  2877. },
  2878. "require": {
  2879. "php": "^5.6 || ^7.0"
  2880. },
  2881. "require-dev": {
  2882. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2883. "zendframework/zend-coding-standard": "~1.0.0"
  2884. },
  2885. "time": "2019-09-05T20:03:20+00:00",
  2886. "type": "library",
  2887. "extra": {
  2888. "branch-alias": {
  2889. "dev-master": "2.6.x-dev",
  2890. "dev-develop": "2.7.x-dev"
  2891. }
  2892. },
  2893. "installation-source": "dist",
  2894. "autoload": {
  2895. "psr-4": {
  2896. "Zend\\Escaper\\": "src/"
  2897. }
  2898. },
  2899. "notification-url": "https://packagist.org/downloads/",
  2900. "license": [
  2901. "BSD-3-Clause"
  2902. ],
  2903. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  2904. "keywords": [
  2905. "ZendFramework",
  2906. "escaper",
  2907. "zf"
  2908. ]
  2909. }
  2910. ]