installed.json 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607
  1. {
  2. "packages": [
  3. {
  4. "name": "aliyuncs/oss-sdk-php",
  5. "version": "v2.4.1",
  6. "version_normalized": "2.4.1.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  10. "reference": "492866331b7bafaac09506cf42f351b7e9e63766"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/492866331b7bafaac09506cf42f351b7e9e63766",
  15. "reference": "492866331b7bafaac09506cf42f351b7e9e63766",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "php": ">=5.3"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "~4.0",
  29. "satooshi/php-coveralls": "~1.0"
  30. },
  31. "time": "2020-09-29T06:23:57+00:00",
  32. "type": "library",
  33. "installation-source": "dist",
  34. "autoload": {
  35. "psr-4": {
  36. "OSS\\": "src/OSS"
  37. }
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "MIT"
  42. ],
  43. "authors": [
  44. {
  45. "name": "Aliyuncs",
  46. "homepage": "http://www.aliyun.com"
  47. }
  48. ],
  49. "description": "Aliyun OSS SDK for PHP",
  50. "homepage": "http://www.aliyun.com/product/oss/",
  51. "support": {
  52. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  53. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.1"
  54. },
  55. "install-path": "../aliyuncs/oss-sdk-php"
  56. },
  57. {
  58. "name": "cebe/markdown",
  59. "version": "1.2.1",
  60. "version_normalized": "1.2.1.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/cebe/markdown.git",
  64. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  69. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  70. "shasum": "",
  71. "mirrors": [
  72. {
  73. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  74. "preferred": true
  75. }
  76. ]
  77. },
  78. "require": {
  79. "lib-pcre": "*",
  80. "php": ">=5.4.0"
  81. },
  82. "require-dev": {
  83. "cebe/indent": "*",
  84. "facebook/xhprof": "*@dev",
  85. "phpunit/phpunit": "4.1.*"
  86. },
  87. "time": "2018-03-26T11:24:36+00:00",
  88. "bin": [
  89. "bin/markdown"
  90. ],
  91. "type": "library",
  92. "extra": {
  93. "branch-alias": {
  94. "dev-master": "1.2.x-dev"
  95. }
  96. },
  97. "installation-source": "dist",
  98. "autoload": {
  99. "psr-4": {
  100. "cebe\\markdown\\": ""
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "authors": [
  108. {
  109. "name": "Carsten Brandt",
  110. "email": "mail@cebe.cc",
  111. "homepage": "http://cebe.cc/",
  112. "role": "Creator"
  113. }
  114. ],
  115. "description": "A super fast, highly extensible markdown parser for PHP",
  116. "homepage": "https://github.com/cebe/markdown#readme",
  117. "keywords": [
  118. "extensible",
  119. "fast",
  120. "gfm",
  121. "markdown",
  122. "markdown-extra"
  123. ],
  124. "support": {
  125. "issues": "https://github.com/cebe/markdown/issues",
  126. "source": "https://github.com/cebe/markdown"
  127. },
  128. "install-path": "../cebe/markdown"
  129. },
  130. {
  131. "name": "doctrine/lexer",
  132. "version": "1.2.1",
  133. "version_normalized": "1.2.1.0",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/doctrine/lexer.git",
  137. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  142. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  143. "shasum": "",
  144. "mirrors": [
  145. {
  146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  147. "preferred": true
  148. }
  149. ]
  150. },
  151. "require": {
  152. "php": "^7.2 || ^8.0"
  153. },
  154. "require-dev": {
  155. "doctrine/coding-standard": "^6.0",
  156. "phpstan/phpstan": "^0.11.8",
  157. "phpunit/phpunit": "^8.2"
  158. },
  159. "time": "2020-05-25T17:44:05+00:00",
  160. "type": "library",
  161. "extra": {
  162. "branch-alias": {
  163. "dev-master": "1.2.x-dev"
  164. }
  165. },
  166. "installation-source": "dist",
  167. "autoload": {
  168. "psr-4": {
  169. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "MIT"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Guilherme Blanco",
  179. "email": "guilhermeblanco@gmail.com"
  180. },
  181. {
  182. "name": "Roman Borschel",
  183. "email": "roman@code-factory.org"
  184. },
  185. {
  186. "name": "Johannes Schmitt",
  187. "email": "schmittjoh@gmail.com"
  188. }
  189. ],
  190. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  191. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  192. "keywords": [
  193. "annotations",
  194. "docblock",
  195. "lexer",
  196. "parser",
  197. "php"
  198. ],
  199. "support": {
  200. "issues": "https://github.com/doctrine/lexer/issues",
  201. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  202. },
  203. "funding": [
  204. {
  205. "url": "https://www.doctrine-project.org/sponsorship.html",
  206. "type": "custom"
  207. },
  208. {
  209. "url": "https://www.patreon.com/phpdoctrine",
  210. "type": "patreon"
  211. },
  212. {
  213. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  214. "type": "tidelift"
  215. }
  216. ],
  217. "install-path": "../doctrine/lexer"
  218. },
  219. {
  220. "name": "egulias/email-validator",
  221. "version": "3.1.0",
  222. "version_normalized": "3.1.0.0",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/egulias/EmailValidator.git",
  226. "reference": "62c3b73c581c834885acf6e120b412b76acc495a"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/62c3b73c581c834885acf6e120b412b76acc495a",
  231. "reference": "62c3b73c581c834885acf6e120b412b76acc495a",
  232. "shasum": "",
  233. "mirrors": [
  234. {
  235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  236. "preferred": true
  237. }
  238. ]
  239. },
  240. "require": {
  241. "doctrine/lexer": "^1.2",
  242. "php": ">=7.2",
  243. "symfony/polyfill-intl-idn": "^1.15"
  244. },
  245. "require-dev": {
  246. "php-coveralls/php-coveralls": "^2.2",
  247. "phpunit/phpunit": "^8.5.8|^9.3.3",
  248. "vimeo/psalm": "^4"
  249. },
  250. "suggest": {
  251. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  252. },
  253. "time": "2021-03-07T14:33:28+00:00",
  254. "type": "library",
  255. "extra": {
  256. "branch-alias": {
  257. "dev-master": "3.0.x-dev"
  258. }
  259. },
  260. "installation-source": "dist",
  261. "autoload": {
  262. "psr-4": {
  263. "Egulias\\EmailValidator\\": "src"
  264. }
  265. },
  266. "notification-url": "https://packagist.org/downloads/",
  267. "license": [
  268. "MIT"
  269. ],
  270. "authors": [
  271. {
  272. "name": "Eduardo Gulias Davis"
  273. }
  274. ],
  275. "description": "A library for validating emails against several RFCs",
  276. "homepage": "https://github.com/egulias/EmailValidator",
  277. "keywords": [
  278. "email",
  279. "emailvalidation",
  280. "emailvalidator",
  281. "validation",
  282. "validator"
  283. ],
  284. "support": {
  285. "issues": "https://github.com/egulias/EmailValidator/issues",
  286. "source": "https://github.com/egulias/EmailValidator/tree/3.1.0"
  287. },
  288. "funding": [
  289. {
  290. "url": "https://github.com/egulias",
  291. "type": "github"
  292. }
  293. ],
  294. "install-path": "../egulias/email-validator"
  295. },
  296. {
  297. "name": "ezyang/htmlpurifier",
  298. "version": "v4.13.0",
  299. "version_normalized": "4.13.0.0",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/ezyang/htmlpurifier.git",
  303. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  308. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  309. "shasum": "",
  310. "mirrors": [
  311. {
  312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  313. "preferred": true
  314. }
  315. ]
  316. },
  317. "require": {
  318. "php": ">=5.2"
  319. },
  320. "require-dev": {
  321. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  322. },
  323. "time": "2020-06-29T00:56:53+00:00",
  324. "type": "library",
  325. "installation-source": "dist",
  326. "autoload": {
  327. "psr-0": {
  328. "HTMLPurifier": "library/"
  329. },
  330. "files": [
  331. "library/HTMLPurifier.composer.php"
  332. ],
  333. "exclude-from-classmap": [
  334. "/library/HTMLPurifier/Language/"
  335. ]
  336. },
  337. "notification-url": "https://packagist.org/downloads/",
  338. "license": [
  339. "LGPL-2.1-or-later"
  340. ],
  341. "authors": [
  342. {
  343. "name": "Edward Z. Yang",
  344. "email": "admin@htmlpurifier.org",
  345. "homepage": "http://ezyang.com"
  346. }
  347. ],
  348. "description": "Standards compliant HTML filter written in PHP",
  349. "homepage": "http://htmlpurifier.org/",
  350. "keywords": [
  351. "html"
  352. ],
  353. "support": {
  354. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  355. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  356. },
  357. "install-path": "../ezyang/htmlpurifier"
  358. },
  359. {
  360. "name": "imagine/imagine",
  361. "version": "1.2.4",
  362. "version_normalized": "1.2.4.0",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/avalanche123/Imagine.git",
  366. "reference": "d2e18be6e930ca169e4f921ef73ebfc061bf55d8"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/d2e18be6e930ca169e4f921ef73ebfc061bf55d8",
  371. "reference": "d2e18be6e930ca169e4f921ef73ebfc061bf55d8",
  372. "shasum": "",
  373. "mirrors": [
  374. {
  375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  376. "preferred": true
  377. }
  378. ]
  379. },
  380. "require": {
  381. "php": ">=5.3.2"
  382. },
  383. "require-dev": {
  384. "friendsofphp/php-cs-fixer": "^2.2",
  385. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4 || ^9.3"
  386. },
  387. "suggest": {
  388. "ext-gd": "to use the GD implementation",
  389. "ext-gmagick": "to use the Gmagick implementation",
  390. "ext-imagick": "to use the Imagick implementation"
  391. },
  392. "time": "2020-11-03T22:35:03+00:00",
  393. "type": "library",
  394. "extra": {
  395. "branch-alias": {
  396. "dev-develop": "0.7-dev"
  397. }
  398. },
  399. "installation-source": "dist",
  400. "autoload": {
  401. "psr-4": {
  402. "Imagine\\": "src/"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Bulat Shakirzyanov",
  412. "email": "mallluhuct@gmail.com",
  413. "homepage": "http://avalanche123.com"
  414. }
  415. ],
  416. "description": "Image processing for PHP 5.3",
  417. "homepage": "http://imagine.readthedocs.org/",
  418. "keywords": [
  419. "drawing",
  420. "graphics",
  421. "image manipulation",
  422. "image processing"
  423. ],
  424. "support": {
  425. "issues": "https://github.com/avalanche123/Imagine/issues",
  426. "source": "https://github.com/avalanche123/Imagine/tree/1.2.4"
  427. },
  428. "install-path": "../imagine/imagine"
  429. },
  430. {
  431. "name": "markbaker/complex",
  432. "version": "1.5.0",
  433. "version_normalized": "1.5.0.0",
  434. "source": {
  435. "type": "git",
  436. "url": "https://github.com/MarkBaker/PHPComplex.git",
  437. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  438. },
  439. "dist": {
  440. "type": "zip",
  441. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  442. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  443. "shasum": "",
  444. "mirrors": [
  445. {
  446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  447. "preferred": true
  448. }
  449. ]
  450. },
  451. "require": {
  452. "php": "^5.6.0|^7.0"
  453. },
  454. "require-dev": {
  455. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  456. "phpcompatibility/php-compatibility": "^9.0",
  457. "phpdocumentor/phpdocumentor": "2.*",
  458. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  459. "phpmd/phpmd": "2.*",
  460. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  461. "sebastian/phpcpd": "2.*",
  462. "squizlabs/php_codesniffer": "^3.4.0"
  463. },
  464. "time": "2020-08-26T19:47:57+00:00",
  465. "type": "library",
  466. "installation-source": "dist",
  467. "autoload": {
  468. "psr-4": {
  469. "Complex\\": "classes/src/"
  470. },
  471. "files": [
  472. "classes/src/functions/abs.php",
  473. "classes/src/functions/acos.php",
  474. "classes/src/functions/acosh.php",
  475. "classes/src/functions/acot.php",
  476. "classes/src/functions/acoth.php",
  477. "classes/src/functions/acsc.php",
  478. "classes/src/functions/acsch.php",
  479. "classes/src/functions/argument.php",
  480. "classes/src/functions/asec.php",
  481. "classes/src/functions/asech.php",
  482. "classes/src/functions/asin.php",
  483. "classes/src/functions/asinh.php",
  484. "classes/src/functions/atan.php",
  485. "classes/src/functions/atanh.php",
  486. "classes/src/functions/conjugate.php",
  487. "classes/src/functions/cos.php",
  488. "classes/src/functions/cosh.php",
  489. "classes/src/functions/cot.php",
  490. "classes/src/functions/coth.php",
  491. "classes/src/functions/csc.php",
  492. "classes/src/functions/csch.php",
  493. "classes/src/functions/exp.php",
  494. "classes/src/functions/inverse.php",
  495. "classes/src/functions/ln.php",
  496. "classes/src/functions/log2.php",
  497. "classes/src/functions/log10.php",
  498. "classes/src/functions/negative.php",
  499. "classes/src/functions/pow.php",
  500. "classes/src/functions/rho.php",
  501. "classes/src/functions/sec.php",
  502. "classes/src/functions/sech.php",
  503. "classes/src/functions/sin.php",
  504. "classes/src/functions/sinh.php",
  505. "classes/src/functions/sqrt.php",
  506. "classes/src/functions/tan.php",
  507. "classes/src/functions/tanh.php",
  508. "classes/src/functions/theta.php",
  509. "classes/src/operations/add.php",
  510. "classes/src/operations/subtract.php",
  511. "classes/src/operations/multiply.php",
  512. "classes/src/operations/divideby.php",
  513. "classes/src/operations/divideinto.php"
  514. ]
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Mark Baker",
  523. "email": "mark@lange.demon.co.uk"
  524. }
  525. ],
  526. "description": "PHP Class for working with complex numbers",
  527. "homepage": "https://github.com/MarkBaker/PHPComplex",
  528. "keywords": [
  529. "complex",
  530. "mathematics"
  531. ],
  532. "support": {
  533. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  534. "source": "https://github.com/MarkBaker/PHPComplex/tree/1.5.0"
  535. },
  536. "install-path": "../markbaker/complex"
  537. },
  538. {
  539. "name": "markbaker/matrix",
  540. "version": "1.2.3",
  541. "version_normalized": "1.2.3.0",
  542. "source": {
  543. "type": "git",
  544. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  545. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d"
  546. },
  547. "dist": {
  548. "type": "zip",
  549. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d",
  550. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d",
  551. "shasum": "",
  552. "mirrors": [
  553. {
  554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  555. "preferred": true
  556. }
  557. ]
  558. },
  559. "require": {
  560. "php": "^5.6.0|^7.0.0"
  561. },
  562. "require-dev": {
  563. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  564. "phpcompatibility/php-compatibility": "dev-master",
  565. "phploc/phploc": "^4",
  566. "phpmd/phpmd": "dev-master",
  567. "phpunit/phpunit": "^5.7|^6.0|7.0",
  568. "sebastian/phpcpd": "^3.0",
  569. "squizlabs/php_codesniffer": "^3.0@dev"
  570. },
  571. "time": "2021-01-26T14:36:01+00:00",
  572. "type": "library",
  573. "installation-source": "dist",
  574. "autoload": {
  575. "psr-4": {
  576. "Matrix\\": "classes/src/"
  577. },
  578. "files": [
  579. "classes/src/Functions/adjoint.php",
  580. "classes/src/Functions/antidiagonal.php",
  581. "classes/src/Functions/cofactors.php",
  582. "classes/src/Functions/determinant.php",
  583. "classes/src/Functions/diagonal.php",
  584. "classes/src/Functions/identity.php",
  585. "classes/src/Functions/inverse.php",
  586. "classes/src/Functions/minors.php",
  587. "classes/src/Functions/trace.php",
  588. "classes/src/Functions/transpose.php",
  589. "classes/src/Operations/add.php",
  590. "classes/src/Operations/directsum.php",
  591. "classes/src/Operations/subtract.php",
  592. "classes/src/Operations/multiply.php",
  593. "classes/src/Operations/divideby.php",
  594. "classes/src/Operations/divideinto.php"
  595. ]
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "Mark Baker",
  604. "email": "mark@lange.demon.co.uk"
  605. }
  606. ],
  607. "description": "PHP Class for working with matrices",
  608. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  609. "keywords": [
  610. "mathematics",
  611. "matrix",
  612. "vector"
  613. ],
  614. "support": {
  615. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  616. "source": "https://github.com/MarkBaker/PHPMatrix/tree/1.2.3"
  617. },
  618. "install-path": "../markbaker/matrix"
  619. },
  620. {
  621. "name": "phpoffice/phpspreadsheet",
  622. "version": "1.11.0",
  623. "version_normalized": "1.11.0.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  627. "reference": "c2a205e82f9cf1cc9fab86b79e808d86dd680470"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c2a205e82f9cf1cc9fab86b79e808d86dd680470",
  632. "reference": "c2a205e82f9cf1cc9fab86b79e808d86dd680470",
  633. "shasum": "",
  634. "mirrors": [
  635. {
  636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  637. "preferred": true
  638. }
  639. ]
  640. },
  641. "require": {
  642. "ext-ctype": "*",
  643. "ext-dom": "*",
  644. "ext-fileinfo": "*",
  645. "ext-gd": "*",
  646. "ext-iconv": "*",
  647. "ext-libxml": "*",
  648. "ext-mbstring": "*",
  649. "ext-simplexml": "*",
  650. "ext-xml": "*",
  651. "ext-xmlreader": "*",
  652. "ext-xmlwriter": "*",
  653. "ext-zip": "*",
  654. "ext-zlib": "*",
  655. "markbaker/complex": "^1.4",
  656. "markbaker/matrix": "^1.2",
  657. "php": "^7.1",
  658. "psr/simple-cache": "^1.0"
  659. },
  660. "require-dev": {
  661. "dompdf/dompdf": "^0.8.3",
  662. "friendsofphp/php-cs-fixer": "^2.16",
  663. "jpgraph/jpgraph": "^4.0",
  664. "mpdf/mpdf": "^8.0",
  665. "phpcompatibility/php-compatibility": "^9.3",
  666. "phpunit/phpunit": "^7.5",
  667. "squizlabs/php_codesniffer": "^3.5",
  668. "tecnickcom/tcpdf": "^6.3"
  669. },
  670. "suggest": {
  671. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  672. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  673. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  674. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  675. },
  676. "time": "2020-03-02T13:09:03+00:00",
  677. "type": "library",
  678. "installation-source": "dist",
  679. "autoload": {
  680. "psr-4": {
  681. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  682. }
  683. },
  684. "notification-url": "https://packagist.org/downloads/",
  685. "license": [
  686. "MIT"
  687. ],
  688. "authors": [
  689. {
  690. "name": "Maarten Balliauw",
  691. "homepage": "https://blog.maartenballiauw.be"
  692. },
  693. {
  694. "name": "Mark Baker",
  695. "homepage": "https://markbakeruk.net"
  696. },
  697. {
  698. "name": "Franck Lefevre",
  699. "homepage": "https://rootslabs.net"
  700. },
  701. {
  702. "name": "Erik Tilt"
  703. },
  704. {
  705. "name": "Adrien Crivelli"
  706. }
  707. ],
  708. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  709. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  710. "keywords": [
  711. "OpenXML",
  712. "excel",
  713. "gnumeric",
  714. "ods",
  715. "php",
  716. "spreadsheet",
  717. "xls",
  718. "xlsx"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  722. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.11.0"
  723. },
  724. "install-path": "../phpoffice/phpspreadsheet"
  725. },
  726. {
  727. "name": "psr/event-dispatcher",
  728. "version": "1.0.0",
  729. "version_normalized": "1.0.0.0",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/php-fig/event-dispatcher.git",
  733. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  738. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  739. "shasum": "",
  740. "mirrors": [
  741. {
  742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  743. "preferred": true
  744. }
  745. ]
  746. },
  747. "require": {
  748. "php": ">=7.2.0"
  749. },
  750. "time": "2019-01-08T18:20:26+00:00",
  751. "type": "library",
  752. "extra": {
  753. "branch-alias": {
  754. "dev-master": "1.0.x-dev"
  755. }
  756. },
  757. "installation-source": "dist",
  758. "autoload": {
  759. "psr-4": {
  760. "Psr\\EventDispatcher\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "PHP-FIG",
  770. "homepage": "http://www.php-fig.org/"
  771. }
  772. ],
  773. "description": "Standard interfaces for event handling.",
  774. "keywords": [
  775. "events",
  776. "psr",
  777. "psr-14"
  778. ],
  779. "support": {
  780. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  781. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  782. },
  783. "install-path": "../psr/event-dispatcher"
  784. },
  785. {
  786. "name": "psr/http-client",
  787. "version": "1.0.1",
  788. "version_normalized": "1.0.1.0",
  789. "source": {
  790. "type": "git",
  791. "url": "https://github.com/php-fig/http-client.git",
  792. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  793. },
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  797. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  798. "shasum": "",
  799. "mirrors": [
  800. {
  801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  802. "preferred": true
  803. }
  804. ]
  805. },
  806. "require": {
  807. "php": "^7.0 || ^8.0",
  808. "psr/http-message": "^1.0"
  809. },
  810. "time": "2020-06-29T06:28:15+00:00",
  811. "type": "library",
  812. "extra": {
  813. "branch-alias": {
  814. "dev-master": "1.0.x-dev"
  815. }
  816. },
  817. "installation-source": "dist",
  818. "autoload": {
  819. "psr-4": {
  820. "Psr\\Http\\Client\\": "src/"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "PHP-FIG",
  830. "homepage": "http://www.php-fig.org/"
  831. }
  832. ],
  833. "description": "Common interface for HTTP clients",
  834. "homepage": "https://github.com/php-fig/http-client",
  835. "keywords": [
  836. "http",
  837. "http-client",
  838. "psr",
  839. "psr-18"
  840. ],
  841. "support": {
  842. "source": "https://github.com/php-fig/http-client/tree/master"
  843. },
  844. "install-path": "../psr/http-client"
  845. },
  846. {
  847. "name": "psr/http-factory",
  848. "version": "1.0.1",
  849. "version_normalized": "1.0.1.0",
  850. "source": {
  851. "type": "git",
  852. "url": "https://github.com/php-fig/http-factory.git",
  853. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  854. },
  855. "dist": {
  856. "type": "zip",
  857. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  858. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  859. "shasum": "",
  860. "mirrors": [
  861. {
  862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  863. "preferred": true
  864. }
  865. ]
  866. },
  867. "require": {
  868. "php": ">=7.0.0",
  869. "psr/http-message": "^1.0"
  870. },
  871. "time": "2019-04-30T12:38:16+00:00",
  872. "type": "library",
  873. "extra": {
  874. "branch-alias": {
  875. "dev-master": "1.0.x-dev"
  876. }
  877. },
  878. "installation-source": "dist",
  879. "autoload": {
  880. "psr-4": {
  881. "Psr\\Http\\Message\\": "src/"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "MIT"
  887. ],
  888. "authors": [
  889. {
  890. "name": "PHP-FIG",
  891. "homepage": "http://www.php-fig.org/"
  892. }
  893. ],
  894. "description": "Common interfaces for PSR-7 HTTP message factories",
  895. "keywords": [
  896. "factory",
  897. "http",
  898. "message",
  899. "psr",
  900. "psr-17",
  901. "psr-7",
  902. "request",
  903. "response"
  904. ],
  905. "support": {
  906. "source": "https://github.com/php-fig/http-factory/tree/master"
  907. },
  908. "install-path": "../psr/http-factory"
  909. },
  910. {
  911. "name": "psr/http-message",
  912. "version": "1.0.1",
  913. "version_normalized": "1.0.1.0",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/php-fig/http-message.git",
  917. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  922. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  923. "shasum": "",
  924. "mirrors": [
  925. {
  926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  927. "preferred": true
  928. }
  929. ]
  930. },
  931. "require": {
  932. "php": ">=5.3.0"
  933. },
  934. "time": "2016-08-06T14:39:51+00:00",
  935. "type": "library",
  936. "extra": {
  937. "branch-alias": {
  938. "dev-master": "1.0.x-dev"
  939. }
  940. },
  941. "installation-source": "dist",
  942. "autoload": {
  943. "psr-4": {
  944. "Psr\\Http\\Message\\": "src/"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "MIT"
  950. ],
  951. "authors": [
  952. {
  953. "name": "PHP-FIG",
  954. "homepage": "http://www.php-fig.org/"
  955. }
  956. ],
  957. "description": "Common interface for HTTP messages",
  958. "homepage": "https://github.com/php-fig/http-message",
  959. "keywords": [
  960. "http",
  961. "http-message",
  962. "psr",
  963. "psr-7",
  964. "request",
  965. "response"
  966. ],
  967. "support": {
  968. "source": "https://github.com/php-fig/http-message/tree/master"
  969. },
  970. "install-path": "../psr/http-message"
  971. },
  972. {
  973. "name": "psr/simple-cache",
  974. "version": "1.0.1",
  975. "version_normalized": "1.0.1.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/php-fig/simple-cache.git",
  979. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  984. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  985. "shasum": "",
  986. "mirrors": [
  987. {
  988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  989. "preferred": true
  990. }
  991. ]
  992. },
  993. "require": {
  994. "php": ">=5.3.0"
  995. },
  996. "time": "2017-10-23T01:57:42+00:00",
  997. "type": "library",
  998. "extra": {
  999. "branch-alias": {
  1000. "dev-master": "1.0.x-dev"
  1001. }
  1002. },
  1003. "installation-source": "dist",
  1004. "autoload": {
  1005. "psr-4": {
  1006. "Psr\\SimpleCache\\": "src/"
  1007. }
  1008. },
  1009. "notification-url": "https://packagist.org/downloads/",
  1010. "license": [
  1011. "MIT"
  1012. ],
  1013. "authors": [
  1014. {
  1015. "name": "PHP-FIG",
  1016. "homepage": "http://www.php-fig.org/"
  1017. }
  1018. ],
  1019. "description": "Common interfaces for simple caching",
  1020. "keywords": [
  1021. "cache",
  1022. "caching",
  1023. "psr",
  1024. "psr-16",
  1025. "simple-cache"
  1026. ],
  1027. "support": {
  1028. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1029. },
  1030. "install-path": "../psr/simple-cache"
  1031. },
  1032. {
  1033. "name": "solarium/solarium",
  1034. "version": "5.2.0",
  1035. "version_normalized": "5.2.0.0",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/solariumphp/solarium.git",
  1039. "reference": "9208b615cb2ed6f306be6e696431b6b71e4d42db"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/9208b615cb2ed6f306be6e696431b6b71e4d42db",
  1044. "reference": "9208b615cb2ed6f306be6e696431b6b71e4d42db",
  1045. "shasum": "",
  1046. "mirrors": [
  1047. {
  1048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1049. "preferred": true
  1050. }
  1051. ]
  1052. },
  1053. "require": {
  1054. "ext-json": "*",
  1055. "php": "^7.1.3",
  1056. "psr/http-client": "^1.0",
  1057. "psr/http-factory": "^1.0",
  1058. "symfony/event-dispatcher": "^4.3 || ^5.0"
  1059. },
  1060. "require-dev": {
  1061. "friendsofphp/php-cs-fixer": "^2.16",
  1062. "guzzlehttp/guzzle": "^3.8 || ^6.2",
  1063. "nyholm/psr7": "^1.2",
  1064. "php-coveralls/php-coveralls": "^2.1",
  1065. "php-http/guzzle6-adapter": "^2.0",
  1066. "phpunit/phpunit": "^8.0",
  1067. "squizlabs/php_codesniffer": "^3.4",
  1068. "symfony/phpunit-bridge": "^5.0",
  1069. "zendframework/zend-http": "^2.8"
  1070. },
  1071. "suggest": {
  1072. "minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling"
  1073. },
  1074. "time": "2020-04-03T22:16:30+00:00",
  1075. "type": "library",
  1076. "installation-source": "dist",
  1077. "autoload": {
  1078. "psr-4": {
  1079. "Solarium\\": "src/"
  1080. }
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "BSD-3-Clause"
  1085. ],
  1086. "authors": [
  1087. {
  1088. "name": "See GitHub contributors",
  1089. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  1090. }
  1091. ],
  1092. "description": "PHP Solr client",
  1093. "homepage": "http://www.solarium-project.org",
  1094. "keywords": [
  1095. "php",
  1096. "search",
  1097. "solr"
  1098. ],
  1099. "support": {
  1100. "issues": "https://github.com/solariumphp/solarium/issues",
  1101. "source": "https://github.com/solariumphp/solarium/tree/5.x"
  1102. },
  1103. "install-path": "../solarium/solarium"
  1104. },
  1105. {
  1106. "name": "swiftmailer/swiftmailer",
  1107. "version": "v6.2.7",
  1108. "version_normalized": "6.2.7.0",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1112. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  1117. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  1118. "shasum": "",
  1119. "mirrors": [
  1120. {
  1121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1122. "preferred": true
  1123. }
  1124. ]
  1125. },
  1126. "require": {
  1127. "egulias/email-validator": "^2.0|^3.1",
  1128. "php": ">=7.0.0",
  1129. "symfony/polyfill-iconv": "^1.0",
  1130. "symfony/polyfill-intl-idn": "^1.10",
  1131. "symfony/polyfill-mbstring": "^1.0"
  1132. },
  1133. "require-dev": {
  1134. "mockery/mockery": "^1.0",
  1135. "symfony/phpunit-bridge": "^4.4|^5.0"
  1136. },
  1137. "suggest": {
  1138. "ext-intl": "Needed to support internationalized email addresses"
  1139. },
  1140. "time": "2021-03-09T12:30:35+00:00",
  1141. "type": "library",
  1142. "extra": {
  1143. "branch-alias": {
  1144. "dev-master": "6.2-dev"
  1145. }
  1146. },
  1147. "installation-source": "dist",
  1148. "autoload": {
  1149. "files": [
  1150. "lib/swift_required.php"
  1151. ]
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Chris Corbyn"
  1160. },
  1161. {
  1162. "name": "Fabien Potencier",
  1163. "email": "fabien@symfony.com"
  1164. }
  1165. ],
  1166. "description": "Swiftmailer, free feature-rich PHP mailer",
  1167. "homepage": "https://swiftmailer.symfony.com",
  1168. "keywords": [
  1169. "email",
  1170. "mail",
  1171. "mailer"
  1172. ],
  1173. "support": {
  1174. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  1175. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  1176. },
  1177. "funding": [
  1178. {
  1179. "url": "https://github.com/fabpot",
  1180. "type": "github"
  1181. },
  1182. {
  1183. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  1184. "type": "tidelift"
  1185. }
  1186. ],
  1187. "install-path": "../swiftmailer/swiftmailer"
  1188. },
  1189. {
  1190. "name": "symfony/deprecation-contracts",
  1191. "version": "v2.2.0",
  1192. "version_normalized": "2.2.0.0",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/symfony/deprecation-contracts.git",
  1196. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  1201. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  1202. "shasum": "",
  1203. "mirrors": [
  1204. {
  1205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1206. "preferred": true
  1207. }
  1208. ]
  1209. },
  1210. "require": {
  1211. "php": ">=7.1"
  1212. },
  1213. "time": "2020-09-07T11:33:47+00:00",
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "2.2-dev"
  1218. },
  1219. "thanks": {
  1220. "name": "symfony/contracts",
  1221. "url": "https://github.com/symfony/contracts"
  1222. }
  1223. },
  1224. "installation-source": "dist",
  1225. "autoload": {
  1226. "files": [
  1227. "function.php"
  1228. ]
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "MIT"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "Nicolas Grekas",
  1237. "email": "p@tchwork.com"
  1238. },
  1239. {
  1240. "name": "Symfony Community",
  1241. "homepage": "https://symfony.com/contributors"
  1242. }
  1243. ],
  1244. "description": "A generic function and convention to trigger deprecation notices",
  1245. "homepage": "https://symfony.com",
  1246. "support": {
  1247. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  1248. },
  1249. "funding": [
  1250. {
  1251. "url": "https://symfony.com/sponsor",
  1252. "type": "custom"
  1253. },
  1254. {
  1255. "url": "https://github.com/fabpot",
  1256. "type": "github"
  1257. },
  1258. {
  1259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1260. "type": "tidelift"
  1261. }
  1262. ],
  1263. "install-path": "../symfony/deprecation-contracts"
  1264. },
  1265. {
  1266. "name": "symfony/event-dispatcher",
  1267. "version": "v5.2.4",
  1268. "version_normalized": "5.2.4.0",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/symfony/event-dispatcher.git",
  1272. "reference": "d08d6ec121a425897951900ab692b612a61d6240"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d08d6ec121a425897951900ab692b612a61d6240",
  1277. "reference": "d08d6ec121a425897951900ab692b612a61d6240",
  1278. "shasum": "",
  1279. "mirrors": [
  1280. {
  1281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1282. "preferred": true
  1283. }
  1284. ]
  1285. },
  1286. "require": {
  1287. "php": ">=7.2.5",
  1288. "symfony/deprecation-contracts": "^2.1",
  1289. "symfony/event-dispatcher-contracts": "^2",
  1290. "symfony/polyfill-php80": "^1.15"
  1291. },
  1292. "conflict": {
  1293. "symfony/dependency-injection": "<4.4"
  1294. },
  1295. "provide": {
  1296. "psr/event-dispatcher-implementation": "1.0",
  1297. "symfony/event-dispatcher-implementation": "2.0"
  1298. },
  1299. "require-dev": {
  1300. "psr/log": "~1.0",
  1301. "symfony/config": "^4.4|^5.0",
  1302. "symfony/dependency-injection": "^4.4|^5.0",
  1303. "symfony/error-handler": "^4.4|^5.0",
  1304. "symfony/expression-language": "^4.4|^5.0",
  1305. "symfony/http-foundation": "^4.4|^5.0",
  1306. "symfony/service-contracts": "^1.1|^2",
  1307. "symfony/stopwatch": "^4.4|^5.0"
  1308. },
  1309. "suggest": {
  1310. "symfony/dependency-injection": "",
  1311. "symfony/http-kernel": ""
  1312. },
  1313. "time": "2021-02-18T17:12:37+00:00",
  1314. "type": "library",
  1315. "installation-source": "dist",
  1316. "autoload": {
  1317. "psr-4": {
  1318. "Symfony\\Component\\EventDispatcher\\": ""
  1319. },
  1320. "exclude-from-classmap": [
  1321. "/Tests/"
  1322. ]
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "MIT"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Fabien Potencier",
  1331. "email": "fabien@symfony.com"
  1332. },
  1333. {
  1334. "name": "Symfony Community",
  1335. "homepage": "https://symfony.com/contributors"
  1336. }
  1337. ],
  1338. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  1339. "homepage": "https://symfony.com",
  1340. "support": {
  1341. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.4"
  1342. },
  1343. "funding": [
  1344. {
  1345. "url": "https://symfony.com/sponsor",
  1346. "type": "custom"
  1347. },
  1348. {
  1349. "url": "https://github.com/fabpot",
  1350. "type": "github"
  1351. },
  1352. {
  1353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1354. "type": "tidelift"
  1355. }
  1356. ],
  1357. "install-path": "../symfony/event-dispatcher"
  1358. },
  1359. {
  1360. "name": "symfony/event-dispatcher-contracts",
  1361. "version": "v2.2.0",
  1362. "version_normalized": "2.2.0.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1366. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  1371. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  1372. "shasum": "",
  1373. "mirrors": [
  1374. {
  1375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1376. "preferred": true
  1377. }
  1378. ]
  1379. },
  1380. "require": {
  1381. "php": ">=7.2.5",
  1382. "psr/event-dispatcher": "^1"
  1383. },
  1384. "suggest": {
  1385. "symfony/event-dispatcher-implementation": ""
  1386. },
  1387. "time": "2020-09-07T11:33:47+00:00",
  1388. "type": "library",
  1389. "extra": {
  1390. "branch-alias": {
  1391. "dev-master": "2.2-dev"
  1392. },
  1393. "thanks": {
  1394. "name": "symfony/contracts",
  1395. "url": "https://github.com/symfony/contracts"
  1396. }
  1397. },
  1398. "installation-source": "dist",
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Symfony\\Contracts\\EventDispatcher\\": ""
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "MIT"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Nicolas Grekas",
  1411. "email": "p@tchwork.com"
  1412. },
  1413. {
  1414. "name": "Symfony Community",
  1415. "homepage": "https://symfony.com/contributors"
  1416. }
  1417. ],
  1418. "description": "Generic abstractions related to dispatching event",
  1419. "homepage": "https://symfony.com",
  1420. "keywords": [
  1421. "abstractions",
  1422. "contracts",
  1423. "decoupling",
  1424. "interfaces",
  1425. "interoperability",
  1426. "standards"
  1427. ],
  1428. "support": {
  1429. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  1430. },
  1431. "funding": [
  1432. {
  1433. "url": "https://symfony.com/sponsor",
  1434. "type": "custom"
  1435. },
  1436. {
  1437. "url": "https://github.com/fabpot",
  1438. "type": "github"
  1439. },
  1440. {
  1441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1442. "type": "tidelift"
  1443. }
  1444. ],
  1445. "install-path": "../symfony/event-dispatcher-contracts"
  1446. },
  1447. {
  1448. "name": "symfony/polyfill-iconv",
  1449. "version": "v1.22.1",
  1450. "version_normalized": "1.22.1.0",
  1451. "source": {
  1452. "type": "git",
  1453. "url": "https://github.com/symfony/polyfill-iconv.git",
  1454. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342"
  1455. },
  1456. "dist": {
  1457. "type": "zip",
  1458. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  1459. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  1460. "shasum": "",
  1461. "mirrors": [
  1462. {
  1463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1464. "preferred": true
  1465. }
  1466. ]
  1467. },
  1468. "require": {
  1469. "php": ">=7.1"
  1470. },
  1471. "suggest": {
  1472. "ext-iconv": "For best performance"
  1473. },
  1474. "time": "2021-01-22T09:19:47+00:00",
  1475. "type": "library",
  1476. "extra": {
  1477. "branch-alias": {
  1478. "dev-main": "1.22-dev"
  1479. },
  1480. "thanks": {
  1481. "name": "symfony/polyfill",
  1482. "url": "https://github.com/symfony/polyfill"
  1483. }
  1484. },
  1485. "installation-source": "dist",
  1486. "autoload": {
  1487. "psr-4": {
  1488. "Symfony\\Polyfill\\Iconv\\": ""
  1489. },
  1490. "files": [
  1491. "bootstrap.php"
  1492. ]
  1493. },
  1494. "notification-url": "https://packagist.org/downloads/",
  1495. "license": [
  1496. "MIT"
  1497. ],
  1498. "authors": [
  1499. {
  1500. "name": "Nicolas Grekas",
  1501. "email": "p@tchwork.com"
  1502. },
  1503. {
  1504. "name": "Symfony Community",
  1505. "homepage": "https://symfony.com/contributors"
  1506. }
  1507. ],
  1508. "description": "Symfony polyfill for the Iconv extension",
  1509. "homepage": "https://symfony.com",
  1510. "keywords": [
  1511. "compatibility",
  1512. "iconv",
  1513. "polyfill",
  1514. "portable",
  1515. "shim"
  1516. ],
  1517. "support": {
  1518. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1"
  1519. },
  1520. "funding": [
  1521. {
  1522. "url": "https://symfony.com/sponsor",
  1523. "type": "custom"
  1524. },
  1525. {
  1526. "url": "https://github.com/fabpot",
  1527. "type": "github"
  1528. },
  1529. {
  1530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1531. "type": "tidelift"
  1532. }
  1533. ],
  1534. "install-path": "../symfony/polyfill-iconv"
  1535. },
  1536. {
  1537. "name": "symfony/polyfill-intl-idn",
  1538. "version": "v1.22.1",
  1539. "version_normalized": "1.22.1.0",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1543. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  1548. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  1549. "shasum": "",
  1550. "mirrors": [
  1551. {
  1552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1553. "preferred": true
  1554. }
  1555. ]
  1556. },
  1557. "require": {
  1558. "php": ">=7.1",
  1559. "symfony/polyfill-intl-normalizer": "^1.10",
  1560. "symfony/polyfill-php72": "^1.10"
  1561. },
  1562. "suggest": {
  1563. "ext-intl": "For best performance"
  1564. },
  1565. "time": "2021-01-22T09:19:47+00:00",
  1566. "type": "library",
  1567. "extra": {
  1568. "branch-alias": {
  1569. "dev-main": "1.22-dev"
  1570. },
  1571. "thanks": {
  1572. "name": "symfony/polyfill",
  1573. "url": "https://github.com/symfony/polyfill"
  1574. }
  1575. },
  1576. "installation-source": "dist",
  1577. "autoload": {
  1578. "psr-4": {
  1579. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1580. },
  1581. "files": [
  1582. "bootstrap.php"
  1583. ]
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "Laurent Bassin",
  1592. "email": "laurent@bassin.info"
  1593. },
  1594. {
  1595. "name": "Trevor Rowbotham",
  1596. "email": "trevor.rowbotham@pm.me"
  1597. },
  1598. {
  1599. "name": "Symfony Community",
  1600. "homepage": "https://symfony.com/contributors"
  1601. }
  1602. ],
  1603. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1604. "homepage": "https://symfony.com",
  1605. "keywords": [
  1606. "compatibility",
  1607. "idn",
  1608. "intl",
  1609. "polyfill",
  1610. "portable",
  1611. "shim"
  1612. ],
  1613. "support": {
  1614. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  1615. },
  1616. "funding": [
  1617. {
  1618. "url": "https://symfony.com/sponsor",
  1619. "type": "custom"
  1620. },
  1621. {
  1622. "url": "https://github.com/fabpot",
  1623. "type": "github"
  1624. },
  1625. {
  1626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1627. "type": "tidelift"
  1628. }
  1629. ],
  1630. "install-path": "../symfony/polyfill-intl-idn"
  1631. },
  1632. {
  1633. "name": "symfony/polyfill-intl-normalizer",
  1634. "version": "v1.22.1",
  1635. "version_normalized": "1.22.1.0",
  1636. "source": {
  1637. "type": "git",
  1638. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1639. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  1640. },
  1641. "dist": {
  1642. "type": "zip",
  1643. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  1644. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  1645. "shasum": "",
  1646. "mirrors": [
  1647. {
  1648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1649. "preferred": true
  1650. }
  1651. ]
  1652. },
  1653. "require": {
  1654. "php": ">=7.1"
  1655. },
  1656. "suggest": {
  1657. "ext-intl": "For best performance"
  1658. },
  1659. "time": "2021-01-22T09:19:47+00:00",
  1660. "type": "library",
  1661. "extra": {
  1662. "branch-alias": {
  1663. "dev-main": "1.22-dev"
  1664. },
  1665. "thanks": {
  1666. "name": "symfony/polyfill",
  1667. "url": "https://github.com/symfony/polyfill"
  1668. }
  1669. },
  1670. "installation-source": "dist",
  1671. "autoload": {
  1672. "psr-4": {
  1673. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1674. },
  1675. "files": [
  1676. "bootstrap.php"
  1677. ],
  1678. "classmap": [
  1679. "Resources/stubs"
  1680. ]
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "authors": [
  1687. {
  1688. "name": "Nicolas Grekas",
  1689. "email": "p@tchwork.com"
  1690. },
  1691. {
  1692. "name": "Symfony Community",
  1693. "homepage": "https://symfony.com/contributors"
  1694. }
  1695. ],
  1696. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1697. "homepage": "https://symfony.com",
  1698. "keywords": [
  1699. "compatibility",
  1700. "intl",
  1701. "normalizer",
  1702. "polyfill",
  1703. "portable",
  1704. "shim"
  1705. ],
  1706. "support": {
  1707. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  1708. },
  1709. "funding": [
  1710. {
  1711. "url": "https://symfony.com/sponsor",
  1712. "type": "custom"
  1713. },
  1714. {
  1715. "url": "https://github.com/fabpot",
  1716. "type": "github"
  1717. },
  1718. {
  1719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1720. "type": "tidelift"
  1721. }
  1722. ],
  1723. "install-path": "../symfony/polyfill-intl-normalizer"
  1724. },
  1725. {
  1726. "name": "symfony/polyfill-mbstring",
  1727. "version": "v1.22.1",
  1728. "version_normalized": "1.22.1.0",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1732. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  1737. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  1738. "shasum": "",
  1739. "mirrors": [
  1740. {
  1741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1742. "preferred": true
  1743. }
  1744. ]
  1745. },
  1746. "require": {
  1747. "php": ">=7.1"
  1748. },
  1749. "suggest": {
  1750. "ext-mbstring": "For best performance"
  1751. },
  1752. "time": "2021-01-22T09:19:47+00:00",
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-main": "1.22-dev"
  1757. },
  1758. "thanks": {
  1759. "name": "symfony/polyfill",
  1760. "url": "https://github.com/symfony/polyfill"
  1761. }
  1762. },
  1763. "installation-source": "dist",
  1764. "autoload": {
  1765. "psr-4": {
  1766. "Symfony\\Polyfill\\Mbstring\\": ""
  1767. },
  1768. "files": [
  1769. "bootstrap.php"
  1770. ]
  1771. },
  1772. "notification-url": "https://packagist.org/downloads/",
  1773. "license": [
  1774. "MIT"
  1775. ],
  1776. "authors": [
  1777. {
  1778. "name": "Nicolas Grekas",
  1779. "email": "p@tchwork.com"
  1780. },
  1781. {
  1782. "name": "Symfony Community",
  1783. "homepage": "https://symfony.com/contributors"
  1784. }
  1785. ],
  1786. "description": "Symfony polyfill for the Mbstring extension",
  1787. "homepage": "https://symfony.com",
  1788. "keywords": [
  1789. "compatibility",
  1790. "mbstring",
  1791. "polyfill",
  1792. "portable",
  1793. "shim"
  1794. ],
  1795. "support": {
  1796. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  1797. },
  1798. "funding": [
  1799. {
  1800. "url": "https://symfony.com/sponsor",
  1801. "type": "custom"
  1802. },
  1803. {
  1804. "url": "https://github.com/fabpot",
  1805. "type": "github"
  1806. },
  1807. {
  1808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1809. "type": "tidelift"
  1810. }
  1811. ],
  1812. "install-path": "../symfony/polyfill-mbstring"
  1813. },
  1814. {
  1815. "name": "symfony/polyfill-php72",
  1816. "version": "v1.22.1",
  1817. "version_normalized": "1.22.1.0",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/symfony/polyfill-php72.git",
  1821. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  1826. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  1827. "shasum": "",
  1828. "mirrors": [
  1829. {
  1830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1831. "preferred": true
  1832. }
  1833. ]
  1834. },
  1835. "require": {
  1836. "php": ">=7.1"
  1837. },
  1838. "time": "2021-01-07T16:49:33+00:00",
  1839. "type": "library",
  1840. "extra": {
  1841. "branch-alias": {
  1842. "dev-main": "1.22-dev"
  1843. },
  1844. "thanks": {
  1845. "name": "symfony/polyfill",
  1846. "url": "https://github.com/symfony/polyfill"
  1847. }
  1848. },
  1849. "installation-source": "dist",
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Symfony\\Polyfill\\Php72\\": ""
  1853. },
  1854. "files": [
  1855. "bootstrap.php"
  1856. ]
  1857. },
  1858. "notification-url": "https://packagist.org/downloads/",
  1859. "license": [
  1860. "MIT"
  1861. ],
  1862. "authors": [
  1863. {
  1864. "name": "Nicolas Grekas",
  1865. "email": "p@tchwork.com"
  1866. },
  1867. {
  1868. "name": "Symfony Community",
  1869. "homepage": "https://symfony.com/contributors"
  1870. }
  1871. ],
  1872. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1873. "homepage": "https://symfony.com",
  1874. "keywords": [
  1875. "compatibility",
  1876. "polyfill",
  1877. "portable",
  1878. "shim"
  1879. ],
  1880. "support": {
  1881. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  1882. },
  1883. "funding": [
  1884. {
  1885. "url": "https://symfony.com/sponsor",
  1886. "type": "custom"
  1887. },
  1888. {
  1889. "url": "https://github.com/fabpot",
  1890. "type": "github"
  1891. },
  1892. {
  1893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1894. "type": "tidelift"
  1895. }
  1896. ],
  1897. "install-path": "../symfony/polyfill-php72"
  1898. },
  1899. {
  1900. "name": "symfony/polyfill-php80",
  1901. "version": "v1.22.1",
  1902. "version_normalized": "1.22.1.0",
  1903. "source": {
  1904. "type": "git",
  1905. "url": "https://github.com/symfony/polyfill-php80.git",
  1906. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  1907. },
  1908. "dist": {
  1909. "type": "zip",
  1910. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  1911. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  1912. "shasum": "",
  1913. "mirrors": [
  1914. {
  1915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1916. "preferred": true
  1917. }
  1918. ]
  1919. },
  1920. "require": {
  1921. "php": ">=7.1"
  1922. },
  1923. "time": "2021-01-07T16:49:33+00:00",
  1924. "type": "library",
  1925. "extra": {
  1926. "branch-alias": {
  1927. "dev-main": "1.22-dev"
  1928. },
  1929. "thanks": {
  1930. "name": "symfony/polyfill",
  1931. "url": "https://github.com/symfony/polyfill"
  1932. }
  1933. },
  1934. "installation-source": "dist",
  1935. "autoload": {
  1936. "psr-4": {
  1937. "Symfony\\Polyfill\\Php80\\": ""
  1938. },
  1939. "files": [
  1940. "bootstrap.php"
  1941. ],
  1942. "classmap": [
  1943. "Resources/stubs"
  1944. ]
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Ion Bazan",
  1953. "email": "ion.bazan@gmail.com"
  1954. },
  1955. {
  1956. "name": "Nicolas Grekas",
  1957. "email": "p@tchwork.com"
  1958. },
  1959. {
  1960. "name": "Symfony Community",
  1961. "homepage": "https://symfony.com/contributors"
  1962. }
  1963. ],
  1964. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1965. "homepage": "https://symfony.com",
  1966. "keywords": [
  1967. "compatibility",
  1968. "polyfill",
  1969. "portable",
  1970. "shim"
  1971. ],
  1972. "support": {
  1973. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  1974. },
  1975. "funding": [
  1976. {
  1977. "url": "https://symfony.com/sponsor",
  1978. "type": "custom"
  1979. },
  1980. {
  1981. "url": "https://github.com/fabpot",
  1982. "type": "github"
  1983. },
  1984. {
  1985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1986. "type": "tidelift"
  1987. }
  1988. ],
  1989. "install-path": "../symfony/polyfill-php80"
  1990. },
  1991. {
  1992. "name": "tecnickcom/tcpdf",
  1993. "version": "6.3.5",
  1994. "version_normalized": "6.3.5.0",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/tecnickcom/TCPDF.git",
  1998. "reference": "19a535eaa7fb1c1cac499109deeb1a7a201b4549"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/19a535eaa7fb1c1cac499109deeb1a7a201b4549",
  2003. "reference": "19a535eaa7fb1c1cac499109deeb1a7a201b4549",
  2004. "shasum": "",
  2005. "mirrors": [
  2006. {
  2007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2008. "preferred": true
  2009. }
  2010. ]
  2011. },
  2012. "require": {
  2013. "php": ">=5.3.0"
  2014. },
  2015. "time": "2020-02-14T14:20:12+00:00",
  2016. "type": "library",
  2017. "installation-source": "dist",
  2018. "autoload": {
  2019. "classmap": [
  2020. "config",
  2021. "include",
  2022. "tcpdf.php",
  2023. "tcpdf_parser.php",
  2024. "tcpdf_import.php",
  2025. "tcpdf_barcodes_1d.php",
  2026. "tcpdf_barcodes_2d.php",
  2027. "include/tcpdf_colors.php",
  2028. "include/tcpdf_filters.php",
  2029. "include/tcpdf_font_data.php",
  2030. "include/tcpdf_fonts.php",
  2031. "include/tcpdf_images.php",
  2032. "include/tcpdf_static.php",
  2033. "include/barcodes/datamatrix.php",
  2034. "include/barcodes/pdf417.php",
  2035. "include/barcodes/qrcode.php"
  2036. ]
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "LGPL-3.0-only"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Nicola Asuni",
  2045. "email": "info@tecnick.com",
  2046. "role": "lead"
  2047. }
  2048. ],
  2049. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  2050. "homepage": "http://www.tcpdf.org/",
  2051. "keywords": [
  2052. "PDFD32000-2008",
  2053. "TCPDF",
  2054. "barcodes",
  2055. "datamatrix",
  2056. "pdf",
  2057. "pdf417",
  2058. "qrcode"
  2059. ],
  2060. "support": {
  2061. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  2062. "source": "https://github.com/tecnickcom/TCPDF/tree/6.3.5"
  2063. },
  2064. "install-path": "../tecnickcom/tcpdf"
  2065. },
  2066. {
  2067. "name": "yiisoft/yii2",
  2068. "version": "2.0.41.1",
  2069. "version_normalized": "2.0.41.1",
  2070. "source": {
  2071. "type": "git",
  2072. "url": "https://github.com/yiisoft/yii2-framework.git",
  2073. "reference": "2ad0894a2ccbd3912b33de4419ad1ae3df0595c4"
  2074. },
  2075. "dist": {
  2076. "type": "zip",
  2077. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/2ad0894a2ccbd3912b33de4419ad1ae3df0595c4",
  2078. "reference": "2ad0894a2ccbd3912b33de4419ad1ae3df0595c4",
  2079. "shasum": "",
  2080. "mirrors": [
  2081. {
  2082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2083. "preferred": true
  2084. }
  2085. ]
  2086. },
  2087. "require": {
  2088. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  2089. "bower-asset/jquery": "3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  2090. "bower-asset/punycode": "1.3.*",
  2091. "bower-asset/yii2-pjax": "~2.0.1",
  2092. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  2093. "ext-ctype": "*",
  2094. "ext-mbstring": "*",
  2095. "ezyang/htmlpurifier": "~4.6",
  2096. "lib-pcre": "*",
  2097. "php": ">=5.4.0",
  2098. "yiisoft/yii2-composer": "~2.0.4"
  2099. },
  2100. "time": "2021-03-04T15:45:04+00:00",
  2101. "bin": [
  2102. "yii"
  2103. ],
  2104. "type": "library",
  2105. "extra": {
  2106. "branch-alias": {
  2107. "dev-master": "2.0.x-dev"
  2108. }
  2109. },
  2110. "installation-source": "dist",
  2111. "autoload": {
  2112. "psr-4": {
  2113. "yii\\": ""
  2114. }
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "BSD-3-Clause"
  2119. ],
  2120. "authors": [
  2121. {
  2122. "name": "Qiang Xue",
  2123. "email": "qiang.xue@gmail.com",
  2124. "homepage": "http://www.yiiframework.com/",
  2125. "role": "Founder and project lead"
  2126. },
  2127. {
  2128. "name": "Alexander Makarov",
  2129. "email": "sam@rmcreative.ru",
  2130. "homepage": "http://rmcreative.ru/",
  2131. "role": "Core framework development"
  2132. },
  2133. {
  2134. "name": "Maurizio Domba",
  2135. "homepage": "http://mdomba.info/",
  2136. "role": "Core framework development"
  2137. },
  2138. {
  2139. "name": "Carsten Brandt",
  2140. "email": "mail@cebe.cc",
  2141. "homepage": "http://cebe.cc/",
  2142. "role": "Core framework development"
  2143. },
  2144. {
  2145. "name": "Timur Ruziev",
  2146. "email": "resurtm@gmail.com",
  2147. "homepage": "http://resurtm.com/",
  2148. "role": "Core framework development"
  2149. },
  2150. {
  2151. "name": "Paul Klimov",
  2152. "email": "klimov.paul@gmail.com",
  2153. "role": "Core framework development"
  2154. },
  2155. {
  2156. "name": "Dmitry Naumenko",
  2157. "email": "d.naumenko.a@gmail.com",
  2158. "role": "Core framework development"
  2159. },
  2160. {
  2161. "name": "Boudewijn Vahrmeijer",
  2162. "email": "info@dynasource.eu",
  2163. "homepage": "http://dynasource.eu",
  2164. "role": "Core framework development"
  2165. }
  2166. ],
  2167. "description": "Yii PHP Framework Version 2",
  2168. "homepage": "http://www.yiiframework.com/",
  2169. "keywords": [
  2170. "framework",
  2171. "yii2"
  2172. ],
  2173. "support": {
  2174. "forum": "http://www.yiiframework.com/forum/",
  2175. "irc": "irc://irc.freenode.net/yii",
  2176. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  2177. "source": "https://github.com/yiisoft/yii2",
  2178. "wiki": "http://www.yiiframework.com/wiki/"
  2179. },
  2180. "funding": [
  2181. {
  2182. "url": "https://github.com/yiisoft",
  2183. "type": "github"
  2184. },
  2185. {
  2186. "url": "https://opencollective.com/yiisoft",
  2187. "type": "open_collective"
  2188. },
  2189. {
  2190. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  2191. "type": "tidelift"
  2192. }
  2193. ],
  2194. "install-path": "../yiisoft/yii2"
  2195. },
  2196. {
  2197. "name": "yiisoft/yii2-composer",
  2198. "version": "2.0.10",
  2199. "version_normalized": "2.0.10.0",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/yiisoft/yii2-composer.git",
  2203. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/94bb3f66e779e2774f8776d6e1bdeab402940510",
  2208. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  2209. "shasum": "",
  2210. "mirrors": [
  2211. {
  2212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2213. "preferred": true
  2214. }
  2215. ]
  2216. },
  2217. "require": {
  2218. "composer-plugin-api": "^1.0 | ^2.0"
  2219. },
  2220. "require-dev": {
  2221. "composer/composer": "^1.0 | ^2.0@dev",
  2222. "phpunit/phpunit": "<7"
  2223. },
  2224. "time": "2020-06-24T00:04:01+00:00",
  2225. "type": "composer-plugin",
  2226. "extra": {
  2227. "class": "yii\\composer\\Plugin",
  2228. "branch-alias": {
  2229. "dev-master": "2.0.x-dev"
  2230. }
  2231. },
  2232. "installation-source": "dist",
  2233. "autoload": {
  2234. "psr-4": {
  2235. "yii\\composer\\": ""
  2236. }
  2237. },
  2238. "notification-url": "https://packagist.org/downloads/",
  2239. "license": [
  2240. "BSD-3-Clause"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Qiang Xue",
  2245. "email": "qiang.xue@gmail.com"
  2246. },
  2247. {
  2248. "name": "Carsten Brandt",
  2249. "email": "mail@cebe.cc"
  2250. }
  2251. ],
  2252. "description": "The composer plugin for Yii extension installer",
  2253. "keywords": [
  2254. "composer",
  2255. "extension installer",
  2256. "yii2"
  2257. ],
  2258. "support": {
  2259. "forum": "http://www.yiiframework.com/forum/",
  2260. "irc": "irc://irc.freenode.net/yii",
  2261. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  2262. "source": "https://github.com/yiisoft/yii2-composer",
  2263. "wiki": "http://www.yiiframework.com/wiki/"
  2264. },
  2265. "funding": [
  2266. {
  2267. "url": "https://github.com/yiisoft",
  2268. "type": "github"
  2269. },
  2270. {
  2271. "url": "https://opencollective.com/yiisoft",
  2272. "type": "open_collective"
  2273. },
  2274. {
  2275. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  2276. "type": "tidelift"
  2277. }
  2278. ],
  2279. "install-path": "../yiisoft/yii2-composer"
  2280. },
  2281. {
  2282. "name": "yiisoft/yii2-imagine",
  2283. "version": "2.3.0",
  2284. "version_normalized": "2.3.0.0",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/yiisoft/yii2-imagine.git",
  2288. "reference": "b103b1b1deb786d4d5fe955898ec866dbee5c1b4"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/b103b1b1deb786d4d5fe955898ec866dbee5c1b4",
  2293. "reference": "b103b1b1deb786d4d5fe955898ec866dbee5c1b4",
  2294. "shasum": "",
  2295. "mirrors": [
  2296. {
  2297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2298. "preferred": true
  2299. }
  2300. ]
  2301. },
  2302. "require": {
  2303. "imagine/imagine": "^1.0",
  2304. "yiisoft/yii2": "~2.0.0"
  2305. },
  2306. "require-dev": {
  2307. "cweagans/composer-patches": "^1.7",
  2308. "phpunit/phpunit": "4.8.34"
  2309. },
  2310. "time": "2020-12-23T17:16:36+00:00",
  2311. "type": "yii2-extension",
  2312. "extra": {
  2313. "branch-alias": {
  2314. "dev-master": "2.0.x-dev"
  2315. },
  2316. "composer-exit-on-patch-failure": true,
  2317. "patches": {
  2318. "phpunit/phpunit-mock-objects": {
  2319. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2320. },
  2321. "phpunit/phpunit": {
  2322. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2323. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2324. }
  2325. }
  2326. },
  2327. "installation-source": "dist",
  2328. "autoload": {
  2329. "psr-4": {
  2330. "yii\\imagine\\": "src"
  2331. }
  2332. },
  2333. "notification-url": "https://packagist.org/downloads/",
  2334. "license": [
  2335. "BSD-3-Clause"
  2336. ],
  2337. "authors": [
  2338. {
  2339. "name": "Antonio Ramirez",
  2340. "email": "amigo.cobos@gmail.com"
  2341. }
  2342. ],
  2343. "description": "The Imagine integration for the Yii framework",
  2344. "keywords": [
  2345. "helper",
  2346. "image",
  2347. "imagine",
  2348. "yii2"
  2349. ],
  2350. "support": {
  2351. "forum": "http://www.yiiframework.com/forum/",
  2352. "irc": "irc://irc.freenode.net/yii",
  2353. "issues": "https://github.com/yiisoft/yii2-imagine/issues",
  2354. "source": "https://github.com/yiisoft/yii2-imagine",
  2355. "wiki": "http://www.yiiframework.com/wiki/"
  2356. },
  2357. "funding": [
  2358. {
  2359. "url": "https://github.com/yiisoft",
  2360. "type": "github"
  2361. },
  2362. {
  2363. "url": "https://opencollective.com/yiisoft",
  2364. "type": "open_collective"
  2365. },
  2366. {
  2367. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-imagine",
  2368. "type": "tidelift"
  2369. }
  2370. ],
  2371. "install-path": "../yiisoft/yii2-imagine"
  2372. },
  2373. {
  2374. "name": "yiisoft/yii2-mongodb",
  2375. "version": "2.1.11",
  2376. "version_normalized": "2.1.11.0",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/yiisoft/yii2-mongodb.git",
  2380. "reference": "37cfd145ef10bcb116219fbed984086a379aea55"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/yiisoft/yii2-mongodb/zipball/37cfd145ef10bcb116219fbed984086a379aea55",
  2385. "reference": "37cfd145ef10bcb116219fbed984086a379aea55",
  2386. "shasum": "",
  2387. "mirrors": [
  2388. {
  2389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2390. "preferred": true
  2391. }
  2392. ]
  2393. },
  2394. "require": {
  2395. "ext-mongodb": ">=1.0.0",
  2396. "yiisoft/yii2": "~2.0.39"
  2397. },
  2398. "require-dev": {
  2399. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  2400. },
  2401. "time": "2020-12-23T16:58:04+00:00",
  2402. "type": "yii2-extension",
  2403. "extra": {
  2404. "branch-alias": {
  2405. "dev-master": "2.1.x-dev"
  2406. }
  2407. },
  2408. "installation-source": "dist",
  2409. "autoload": {
  2410. "psr-4": {
  2411. "yii\\mongodb\\": "src"
  2412. }
  2413. },
  2414. "notification-url": "https://packagist.org/downloads/",
  2415. "license": [
  2416. "BSD-3-Clause"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "Paul Klimov",
  2421. "email": "klimov.paul@gmail.com"
  2422. }
  2423. ],
  2424. "description": "MongoDB extension for the Yii framework",
  2425. "keywords": [
  2426. "GridFS",
  2427. "active-record",
  2428. "mongo",
  2429. "mongodb",
  2430. "yii2"
  2431. ],
  2432. "support": {
  2433. "forum": "http://www.yiiframework.com/forum/",
  2434. "irc": "irc://irc.freenode.net/yii",
  2435. "issues": "https://github.com/yiisoft/yii2-mongodb/issues",
  2436. "source": "https://github.com/yiisoft/yii2-mongodb",
  2437. "wiki": "http://www.yiiframework.com/wiki/"
  2438. },
  2439. "funding": [
  2440. {
  2441. "url": "https://github.com/yiisoft",
  2442. "type": "github"
  2443. },
  2444. {
  2445. "url": "https://opencollective.com/yiisoft",
  2446. "type": "open_collective"
  2447. },
  2448. {
  2449. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-mongodb",
  2450. "type": "tidelift"
  2451. }
  2452. ],
  2453. "install-path": "../yiisoft/yii2-mongodb"
  2454. },
  2455. {
  2456. "name": "yiisoft/yii2-redis",
  2457. "version": "2.0.14",
  2458. "version_normalized": "2.0.14.0",
  2459. "source": {
  2460. "type": "git",
  2461. "url": "https://github.com/yiisoft/yii2-redis.git",
  2462. "reference": "1cbc7b2138ec9b6ffdc08929f8dc1f41848596aa"
  2463. },
  2464. "dist": {
  2465. "type": "zip",
  2466. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/1cbc7b2138ec9b6ffdc08929f8dc1f41848596aa",
  2467. "reference": "1cbc7b2138ec9b6ffdc08929f8dc1f41848596aa",
  2468. "shasum": "",
  2469. "mirrors": [
  2470. {
  2471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2472. "preferred": true
  2473. }
  2474. ]
  2475. },
  2476. "require": {
  2477. "ext-openssl": "*",
  2478. "yiisoft/yii2": "~2.0.39"
  2479. },
  2480. "require-dev": {
  2481. "phpunit/phpunit": "<7",
  2482. "yiisoft/yii2-dev": "~2.0.39"
  2483. },
  2484. "time": "2020-11-10T11:53:29+00:00",
  2485. "type": "yii2-extension",
  2486. "extra": {
  2487. "branch-alias": {
  2488. "dev-master": "2.0.x-dev"
  2489. }
  2490. },
  2491. "installation-source": "dist",
  2492. "autoload": {
  2493. "psr-4": {
  2494. "yii\\redis\\": "src"
  2495. }
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "BSD-3-Clause"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "Carsten Brandt",
  2504. "email": "mail@cebe.cc"
  2505. }
  2506. ],
  2507. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  2508. "keywords": [
  2509. "active-record",
  2510. "cache",
  2511. "redis",
  2512. "session",
  2513. "yii2"
  2514. ],
  2515. "support": {
  2516. "forum": "http://www.yiiframework.com/forum/",
  2517. "irc": "irc://irc.freenode.net/yii",
  2518. "issues": "https://github.com/yiisoft/yii2-redis/issues",
  2519. "source": "https://github.com/yiisoft/yii2-redis",
  2520. "wiki": "http://www.yiiframework.com/wiki/"
  2521. },
  2522. "funding": [
  2523. {
  2524. "url": "https://github.com/yiisoft",
  2525. "type": "github"
  2526. },
  2527. {
  2528. "url": "https://opencollective.com/yiisoft",
  2529. "type": "open_collective"
  2530. },
  2531. {
  2532. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-redis",
  2533. "type": "tidelift"
  2534. }
  2535. ],
  2536. "install-path": "../yiisoft/yii2-redis"
  2537. },
  2538. {
  2539. "name": "yiisoft/yii2-swiftmailer",
  2540. "version": "2.1.2",
  2541. "version_normalized": "2.1.2.0",
  2542. "source": {
  2543. "type": "git",
  2544. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  2545. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994"
  2546. },
  2547. "dist": {
  2548. "type": "zip",
  2549. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/09659a55959f9e64b8178d842b64a9ffae42b994",
  2550. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994",
  2551. "shasum": "",
  2552. "mirrors": [
  2553. {
  2554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2555. "preferred": true
  2556. }
  2557. ]
  2558. },
  2559. "require": {
  2560. "swiftmailer/swiftmailer": "~6.0",
  2561. "yiisoft/yii2": ">=2.0.4"
  2562. },
  2563. "time": "2018-09-23T22:00:47+00:00",
  2564. "type": "yii2-extension",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "2.1.x-dev"
  2568. }
  2569. },
  2570. "installation-source": "dist",
  2571. "autoload": {
  2572. "psr-4": {
  2573. "yii\\swiftmailer\\": "src"
  2574. }
  2575. },
  2576. "notification-url": "https://packagist.org/downloads/",
  2577. "license": [
  2578. "BSD-3-Clause"
  2579. ],
  2580. "authors": [
  2581. {
  2582. "name": "Paul Klimov",
  2583. "email": "klimov.paul@gmail.com"
  2584. }
  2585. ],
  2586. "description": "The SwiftMailer integration for the Yii framework",
  2587. "keywords": [
  2588. "email",
  2589. "mail",
  2590. "mailer",
  2591. "swift",
  2592. "swiftmailer",
  2593. "yii2"
  2594. ],
  2595. "support": {
  2596. "forum": "http://www.yiiframework.com/forum/",
  2597. "irc": "irc://irc.freenode.net/yii",
  2598. "issues": "https://github.com/yiisoft/yii2-swiftmailer/issues",
  2599. "source": "https://github.com/yiisoft/yii2-swiftmailer",
  2600. "wiki": "http://www.yiiframework.com/wiki/"
  2601. },
  2602. "install-path": "../yiisoft/yii2-swiftmailer"
  2603. }
  2604. ],
  2605. "dev": true,
  2606. "dev-package-names": []
  2607. }