composer.lock 90 KB

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