composer.lock 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463
  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": "7a392cde7baec35d94efbca236b944c9",
  8. "packages": [
  9. {
  10. "name": "cakephp/cache",
  11. "version": "3.7.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/cakephp/cache.git",
  15. "reference": "a354c07ba284508d119d0a05e2f9583b592a2e64"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/cakephp/cache/zipball/a354c07ba284508d119d0a05e2f9583b592a2e64",
  20. "reference": "a354c07ba284508d119d0a05e2f9583b592a2e64",
  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. "cakephp/core": "^3.6.0",
  31. "php": ">=5.6.0",
  32. "psr/simple-cache": "^1.0.0"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Cake\\Cache\\": "."
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "CakePHP Community",
  47. "homepage": "https://github.com/cakephp/cache/graphs/contributors"
  48. }
  49. ],
  50. "description": "Easy to use Caching library with support for multiple caching backends",
  51. "homepage": "https://cakephp.org",
  52. "keywords": [
  53. "cache",
  54. "caching",
  55. "cakephp"
  56. ],
  57. "time": "2019-04-17T01:27:05+00:00"
  58. },
  59. {
  60. "name": "cakephp/collection",
  61. "version": "3.7.7",
  62. "source": {
  63. "type": "git",
  64. "url": "https://github.com/cakephp/collection.git",
  65. "reference": "4c3b790d4703cc88cb75815b0e7f02a1a82b8d57"
  66. },
  67. "dist": {
  68. "type": "zip",
  69. "url": "https://api.github.com/repos/cakephp/collection/zipball/4c3b790d4703cc88cb75815b0e7f02a1a82b8d57",
  70. "reference": "4c3b790d4703cc88cb75815b0e7f02a1a82b8d57",
  71. "shasum": "",
  72. "mirrors": [
  73. {
  74. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  75. "preferred": true
  76. }
  77. ]
  78. },
  79. "require": {
  80. "php": ">=5.6.0"
  81. },
  82. "type": "library",
  83. "autoload": {
  84. "psr-4": {
  85. "Cake\\Collection\\": "."
  86. },
  87. "files": [
  88. "functions.php"
  89. ]
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "authors": [
  96. {
  97. "name": "CakePHP Community",
  98. "homepage": "https://github.com/cakephp/collection/graphs/contributors"
  99. }
  100. ],
  101. "description": "Work easily with arrays and iterators by having a battery of utility traversal methods",
  102. "homepage": "https://cakephp.org",
  103. "keywords": [
  104. "arrays",
  105. "cakephp",
  106. "collections",
  107. "iterators"
  108. ],
  109. "time": "2019-01-08T15:11:44+00:00"
  110. },
  111. {
  112. "name": "cakephp/core",
  113. "version": "3.7.7",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/cakephp/core.git",
  117. "reference": "f9d9823439e3c82fdb3f69d2c9210bab67e721af"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/cakephp/core/zipball/f9d9823439e3c82fdb3f69d2c9210bab67e721af",
  122. "reference": "f9d9823439e3c82fdb3f69d2c9210bab67e721af",
  123. "shasum": "",
  124. "mirrors": [
  125. {
  126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  127. "preferred": true
  128. }
  129. ]
  130. },
  131. "require": {
  132. "cakephp/utility": "^3.6.0",
  133. "php": ">=5.6.0"
  134. },
  135. "suggest": {
  136. "cakephp/cache": "To use Configure::store() and restore().",
  137. "cakephp/event": "To use PluginApplicationInterface or plugin applications."
  138. },
  139. "type": "library",
  140. "autoload": {
  141. "psr-4": {
  142. "Cake\\Core\\": "."
  143. },
  144. "files": [
  145. "functions.php"
  146. ]
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "CakePHP Community",
  155. "homepage": "https://github.com/cakephp/core/graphs/contributors"
  156. }
  157. ],
  158. "description": "CakePHP Framework Core classes",
  159. "homepage": "https://cakephp.org",
  160. "keywords": [
  161. "cakephp",
  162. "core",
  163. "framework"
  164. ],
  165. "time": "2019-04-15T14:21:39+00:00"
  166. },
  167. {
  168. "name": "cakephp/database",
  169. "version": "3.7.7",
  170. "source": {
  171. "type": "git",
  172. "url": "https://github.com/cakephp/database.git",
  173. "reference": "9347f2edfbc98426e1cd8a9f94a6c879a03d2cb7"
  174. },
  175. "dist": {
  176. "type": "zip",
  177. "url": "https://api.github.com/repos/cakephp/database/zipball/9347f2edfbc98426e1cd8a9f94a6c879a03d2cb7",
  178. "reference": "9347f2edfbc98426e1cd8a9f94a6c879a03d2cb7",
  179. "shasum": "",
  180. "mirrors": [
  181. {
  182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  183. "preferred": true
  184. }
  185. ]
  186. },
  187. "require": {
  188. "cakephp/cache": "^3.6.0",
  189. "cakephp/core": "^3.6.0",
  190. "cakephp/datasource": "^3.6.0",
  191. "cakephp/log": "^3.6.0",
  192. "php": ">=5.6.0"
  193. },
  194. "type": "library",
  195. "autoload": {
  196. "psr-4": {
  197. "Cake\\Database\\": "."
  198. }
  199. },
  200. "notification-url": "https://packagist.org/downloads/",
  201. "license": [
  202. "MIT"
  203. ],
  204. "authors": [
  205. {
  206. "name": "CakePHP Community",
  207. "homepage": "https://github.com/cakephp/database/graphs/contributors"
  208. }
  209. ],
  210. "description": "Flexible and powerful Database abstraction library with a familiar PDO-like API",
  211. "homepage": "https://cakephp.org",
  212. "keywords": [
  213. "abstraction",
  214. "cakephp",
  215. "database",
  216. "database abstraction",
  217. "pdo"
  218. ],
  219. "time": "2019-03-04T17:27:24+00:00"
  220. },
  221. {
  222. "name": "cakephp/datasource",
  223. "version": "3.7.7",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/cakephp/datasource.git",
  227. "reference": "08b5367426f4ee0388bd598fcf2bb994cd0f92c4"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/cakephp/datasource/zipball/08b5367426f4ee0388bd598fcf2bb994cd0f92c4",
  232. "reference": "08b5367426f4ee0388bd598fcf2bb994cd0f92c4",
  233. "shasum": "",
  234. "mirrors": [
  235. {
  236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  237. "preferred": true
  238. }
  239. ]
  240. },
  241. "require": {
  242. "cakephp/core": "^3.6.0",
  243. "php": ">=5.6.0"
  244. },
  245. "suggest": {
  246. "cakephp/cache": "If you decide to use Query caching.",
  247. "cakephp/collection": "If you decide to use ResultSetInterface.",
  248. "cakephp/utility": "If you decide to use EntityTrait."
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "Cake\\Datasource\\": "."
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "MIT"
  259. ],
  260. "authors": [
  261. {
  262. "name": "CakePHP Community",
  263. "homepage": "https://github.com/cakephp/datasource/graphs/contributors"
  264. }
  265. ],
  266. "description": "Provides connection managing and traits for Entities and Queries that can be reused for different datastores",
  267. "homepage": "https://cakephp.org",
  268. "keywords": [
  269. "cakephp",
  270. "connection management",
  271. "datasource",
  272. "entity",
  273. "query"
  274. ],
  275. "time": "2019-02-14T16:36:35+00:00"
  276. },
  277. {
  278. "name": "cakephp/log",
  279. "version": "3.7.7",
  280. "source": {
  281. "type": "git",
  282. "url": "https://github.com/cakephp/log.git",
  283. "reference": "f2132d585e848f5273a36ca1b62dfbd56c1557b9"
  284. },
  285. "dist": {
  286. "type": "zip",
  287. "url": "https://api.github.com/repos/cakephp/log/zipball/f2132d585e848f5273a36ca1b62dfbd56c1557b9",
  288. "reference": "f2132d585e848f5273a36ca1b62dfbd56c1557b9",
  289. "shasum": "",
  290. "mirrors": [
  291. {
  292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  293. "preferred": true
  294. }
  295. ]
  296. },
  297. "require": {
  298. "cakephp/core": "^3.6.0",
  299. "php": ">=5.6.0",
  300. "psr/log": "^1.0.0"
  301. },
  302. "type": "library",
  303. "autoload": {
  304. "psr-4": {
  305. "Cake\\Log\\": "."
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "CakePHP Community",
  315. "homepage": "https://github.com/cakephp/log/graphs/contributors"
  316. }
  317. ],
  318. "description": "CakePHP logging library with support for multiple different streams",
  319. "homepage": "https://cakephp.org",
  320. "keywords": [
  321. "Streams",
  322. "cakephp",
  323. "log",
  324. "logging"
  325. ],
  326. "time": "2019-02-05T13:29:41+00:00"
  327. },
  328. {
  329. "name": "cakephp/utility",
  330. "version": "3.7.7",
  331. "source": {
  332. "type": "git",
  333. "url": "https://github.com/cakephp/utility.git",
  334. "reference": "329654495c4cf966ac75832e502ec939542928fb"
  335. },
  336. "dist": {
  337. "type": "zip",
  338. "url": "https://api.github.com/repos/cakephp/utility/zipball/329654495c4cf966ac75832e502ec939542928fb",
  339. "reference": "329654495c4cf966ac75832e502ec939542928fb",
  340. "shasum": "",
  341. "mirrors": [
  342. {
  343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  344. "preferred": true
  345. }
  346. ]
  347. },
  348. "require": {
  349. "cakephp/core": "^3.6.0",
  350. "php": ">=5.6.0"
  351. },
  352. "suggest": {
  353. "ext-intl": "To use Text::transliterate() or Text::slug()",
  354. "lib-ICU": "To use Text::transliterate() or Text::slug()"
  355. },
  356. "type": "library",
  357. "autoload": {
  358. "psr-4": {
  359. "Cake\\Utility\\": "."
  360. },
  361. "files": [
  362. "bootstrap.php"
  363. ]
  364. },
  365. "notification-url": "https://packagist.org/downloads/",
  366. "license": [
  367. "MIT"
  368. ],
  369. "authors": [
  370. {
  371. "name": "CakePHP Community",
  372. "homepage": "https://github.com/cakephp/utility/graphs/contributors"
  373. }
  374. ],
  375. "description": "CakePHP Utility classes such as Inflector, String, Hash, and Security",
  376. "homepage": "https://cakephp.org",
  377. "keywords": [
  378. "cakephp",
  379. "hash",
  380. "inflector",
  381. "security",
  382. "string",
  383. "utility"
  384. ],
  385. "time": "2019-03-14T14:41:29+00:00"
  386. },
  387. {
  388. "name": "doctrine/annotations",
  389. "version": "1.11.1",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/doctrine/annotations.git",
  393. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  398. "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad",
  399. "shasum": "",
  400. "mirrors": [
  401. {
  402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  403. "preferred": true
  404. }
  405. ]
  406. },
  407. "require": {
  408. "doctrine/lexer": "1.*",
  409. "ext-tokenizer": "*",
  410. "php": "^7.1 || ^8.0"
  411. },
  412. "require-dev": {
  413. "doctrine/cache": "1.*",
  414. "doctrine/coding-standard": "^6.0 || ^8.1",
  415. "phpstan/phpstan": "^0.12.20",
  416. "phpunit/phpunit": "^7.5 || ^9.1.5"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "dev-master": "1.11.x-dev"
  422. }
  423. },
  424. "autoload": {
  425. "psr-4": {
  426. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "MIT"
  432. ],
  433. "authors": [
  434. {
  435. "name": "Guilherme Blanco",
  436. "email": "guilhermeblanco@gmail.com"
  437. },
  438. {
  439. "name": "Roman Borschel",
  440. "email": "roman@code-factory.org"
  441. },
  442. {
  443. "name": "Benjamin Eberlei",
  444. "email": "kontakt@beberlei.de"
  445. },
  446. {
  447. "name": "Jonathan Wage",
  448. "email": "jonwage@gmail.com"
  449. },
  450. {
  451. "name": "Johannes Schmitt",
  452. "email": "schmittjoh@gmail.com"
  453. }
  454. ],
  455. "description": "Docblock Annotations Parser",
  456. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  457. "keywords": [
  458. "annotations",
  459. "docblock",
  460. "parser"
  461. ],
  462. "time": "2020-10-26T10:28:16+00:00"
  463. },
  464. {
  465. "name": "doctrine/lexer",
  466. "version": "1.2.1",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/doctrine/lexer.git",
  470. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  475. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  476. "shasum": "",
  477. "mirrors": [
  478. {
  479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  480. "preferred": true
  481. }
  482. ]
  483. },
  484. "require": {
  485. "php": "^7.2 || ^8.0"
  486. },
  487. "require-dev": {
  488. "doctrine/coding-standard": "^6.0",
  489. "phpstan/phpstan": "^0.11.8",
  490. "phpunit/phpunit": "^8.2"
  491. },
  492. "type": "library",
  493. "extra": {
  494. "branch-alias": {
  495. "dev-master": "1.2.x-dev"
  496. }
  497. },
  498. "autoload": {
  499. "psr-4": {
  500. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "authors": [
  508. {
  509. "name": "Guilherme Blanco",
  510. "email": "guilhermeblanco@gmail.com"
  511. },
  512. {
  513. "name": "Roman Borschel",
  514. "email": "roman@code-factory.org"
  515. },
  516. {
  517. "name": "Johannes Schmitt",
  518. "email": "schmittjoh@gmail.com"
  519. }
  520. ],
  521. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  522. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  523. "keywords": [
  524. "annotations",
  525. "docblock",
  526. "lexer",
  527. "parser",
  528. "php"
  529. ],
  530. "funding": [
  531. {
  532. "url": "https://www.doctrine-project.org/sponsorship.html",
  533. "type": "custom"
  534. },
  535. {
  536. "url": "https://www.patreon.com/phpdoctrine",
  537. "type": "patreon"
  538. },
  539. {
  540. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  541. "type": "tidelift"
  542. }
  543. ],
  544. "time": "2020-05-25T17:44:05+00:00"
  545. },
  546. {
  547. "name": "firebase/php-jwt",
  548. "version": "v5.2.0",
  549. "source": {
  550. "type": "git",
  551. "url": "https://github.com/firebase/php-jwt.git",
  552. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb"
  553. },
  554. "dist": {
  555. "type": "zip",
  556. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb",
  557. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb",
  558. "shasum": "",
  559. "mirrors": [
  560. {
  561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  562. "preferred": true
  563. }
  564. ]
  565. },
  566. "require": {
  567. "php": ">=5.3.0"
  568. },
  569. "require-dev": {
  570. "phpunit/phpunit": ">=4.8 <=9"
  571. },
  572. "type": "library",
  573. "autoload": {
  574. "psr-4": {
  575. "Firebase\\JWT\\": "src"
  576. }
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "BSD-3-Clause"
  581. ],
  582. "authors": [
  583. {
  584. "name": "Neuman Vong",
  585. "email": "neuman+pear@twilio.com",
  586. "role": "Developer"
  587. },
  588. {
  589. "name": "Anant Narayanan",
  590. "email": "anant@php.net",
  591. "role": "Developer"
  592. }
  593. ],
  594. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  595. "homepage": "https://github.com/firebase/php-jwt",
  596. "keywords": [
  597. "jwt",
  598. "php"
  599. ],
  600. "time": "2020-03-25T18:49:23+00:00"
  601. },
  602. {
  603. "name": "guzzlehttp/guzzle",
  604. "version": "6.5.5",
  605. "source": {
  606. "type": "git",
  607. "url": "https://github.com/guzzle/guzzle.git",
  608. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  609. },
  610. "dist": {
  611. "type": "zip",
  612. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  613. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  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-json": "*",
  624. "guzzlehttp/promises": "^1.0",
  625. "guzzlehttp/psr7": "^1.6.1",
  626. "php": ">=5.5",
  627. "symfony/polyfill-intl-idn": "^1.17.0"
  628. },
  629. "require-dev": {
  630. "ext-curl": "*",
  631. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  632. "psr/log": "^1.1"
  633. },
  634. "suggest": {
  635. "psr/log": "Required for using the Log middleware"
  636. },
  637. "type": "library",
  638. "extra": {
  639. "branch-alias": {
  640. "dev-master": "6.5-dev"
  641. }
  642. },
  643. "autoload": {
  644. "psr-4": {
  645. "GuzzleHttp\\": "src/"
  646. },
  647. "files": [
  648. "src/functions_include.php"
  649. ]
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "authors": [
  656. {
  657. "name": "Michael Dowling",
  658. "email": "mtdowling@gmail.com",
  659. "homepage": "https://github.com/mtdowling"
  660. }
  661. ],
  662. "description": "Guzzle is a PHP HTTP client library",
  663. "homepage": "http://guzzlephp.org/",
  664. "keywords": [
  665. "client",
  666. "curl",
  667. "framework",
  668. "http",
  669. "http client",
  670. "rest",
  671. "web service"
  672. ],
  673. "time": "2020-06-16T21:01:06+00:00"
  674. },
  675. {
  676. "name": "guzzlehttp/promises",
  677. "version": "1.4.0",
  678. "source": {
  679. "type": "git",
  680. "url": "https://github.com/guzzle/promises.git",
  681. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  682. },
  683. "dist": {
  684. "type": "zip",
  685. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  686. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  687. "shasum": "",
  688. "mirrors": [
  689. {
  690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  691. "preferred": true
  692. }
  693. ]
  694. },
  695. "require": {
  696. "php": ">=5.5"
  697. },
  698. "require-dev": {
  699. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  700. },
  701. "type": "library",
  702. "extra": {
  703. "branch-alias": {
  704. "dev-master": "1.4-dev"
  705. }
  706. },
  707. "autoload": {
  708. "psr-4": {
  709. "GuzzleHttp\\Promise\\": "src/"
  710. },
  711. "files": [
  712. "src/functions_include.php"
  713. ]
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Michael Dowling",
  722. "email": "mtdowling@gmail.com",
  723. "homepage": "https://github.com/mtdowling"
  724. }
  725. ],
  726. "description": "Guzzle promises library",
  727. "keywords": [
  728. "promise"
  729. ],
  730. "time": "2020-09-30T07:37:28+00:00"
  731. },
  732. {
  733. "name": "guzzlehttp/psr7",
  734. "version": "1.7.0",
  735. "source": {
  736. "type": "git",
  737. "url": "https://github.com/guzzle/psr7.git",
  738. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  739. },
  740. "dist": {
  741. "type": "zip",
  742. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  743. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  744. "shasum": "",
  745. "mirrors": [
  746. {
  747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  748. "preferred": true
  749. }
  750. ]
  751. },
  752. "require": {
  753. "php": ">=5.4.0",
  754. "psr/http-message": "~1.0",
  755. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  756. },
  757. "provide": {
  758. "psr/http-message-implementation": "1.0"
  759. },
  760. "require-dev": {
  761. "ext-zlib": "*",
  762. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  763. },
  764. "suggest": {
  765. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  766. },
  767. "type": "library",
  768. "extra": {
  769. "branch-alias": {
  770. "dev-master": "1.7-dev"
  771. }
  772. },
  773. "autoload": {
  774. "psr-4": {
  775. "GuzzleHttp\\Psr7\\": "src/"
  776. },
  777. "files": [
  778. "src/functions_include.php"
  779. ]
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "MIT"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Michael Dowling",
  788. "email": "mtdowling@gmail.com",
  789. "homepage": "https://github.com/mtdowling"
  790. },
  791. {
  792. "name": "Tobias Schultze",
  793. "homepage": "https://github.com/Tobion"
  794. }
  795. ],
  796. "description": "PSR-7 message implementation that also provides common utility methods",
  797. "keywords": [
  798. "http",
  799. "message",
  800. "psr-7",
  801. "request",
  802. "response",
  803. "stream",
  804. "uri",
  805. "url"
  806. ],
  807. "time": "2020-09-30T07:37:11+00:00"
  808. },
  809. {
  810. "name": "psr/http-message",
  811. "version": "1.0.1",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/php-fig/http-message.git",
  815. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  820. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  821. "shasum": "",
  822. "mirrors": [
  823. {
  824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  825. "preferred": true
  826. }
  827. ]
  828. },
  829. "require": {
  830. "php": ">=5.3.0"
  831. },
  832. "type": "library",
  833. "extra": {
  834. "branch-alias": {
  835. "dev-master": "1.0.x-dev"
  836. }
  837. },
  838. "autoload": {
  839. "psr-4": {
  840. "Psr\\Http\\Message\\": "src/"
  841. }
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "MIT"
  846. ],
  847. "authors": [
  848. {
  849. "name": "PHP-FIG",
  850. "homepage": "http://www.php-fig.org/"
  851. }
  852. ],
  853. "description": "Common interface for HTTP messages",
  854. "homepage": "https://github.com/php-fig/http-message",
  855. "keywords": [
  856. "http",
  857. "http-message",
  858. "psr",
  859. "psr-7",
  860. "request",
  861. "response"
  862. ],
  863. "time": "2016-08-06T14:39:51+00:00"
  864. },
  865. {
  866. "name": "psr/log",
  867. "version": "1.1.0",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/php-fig/log.git",
  871. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  876. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  877. "shasum": "",
  878. "mirrors": [
  879. {
  880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  881. "preferred": true
  882. }
  883. ]
  884. },
  885. "require": {
  886. "php": ">=5.3.0"
  887. },
  888. "type": "library",
  889. "extra": {
  890. "branch-alias": {
  891. "dev-master": "1.0.x-dev"
  892. }
  893. },
  894. "autoload": {
  895. "psr-4": {
  896. "Psr\\Log\\": "Psr/Log/"
  897. }
  898. },
  899. "notification-url": "https://packagist.org/downloads/",
  900. "license": [
  901. "MIT"
  902. ],
  903. "authors": [
  904. {
  905. "name": "PHP-FIG",
  906. "homepage": "http://www.php-fig.org/"
  907. }
  908. ],
  909. "description": "Common interface for logging libraries",
  910. "homepage": "https://github.com/php-fig/log",
  911. "keywords": [
  912. "log",
  913. "psr",
  914. "psr-3"
  915. ],
  916. "time": "2018-11-20T15:27:04+00:00"
  917. },
  918. {
  919. "name": "psr/simple-cache",
  920. "version": "1.0.1",
  921. "source": {
  922. "type": "git",
  923. "url": "https://github.com/php-fig/simple-cache.git",
  924. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  925. },
  926. "dist": {
  927. "type": "zip",
  928. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  929. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  930. "shasum": "",
  931. "mirrors": [
  932. {
  933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  934. "preferred": true
  935. }
  936. ]
  937. },
  938. "require": {
  939. "php": ">=5.3.0"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "branch-alias": {
  944. "dev-master": "1.0.x-dev"
  945. }
  946. },
  947. "autoload": {
  948. "psr-4": {
  949. "Psr\\SimpleCache\\": "src/"
  950. }
  951. },
  952. "notification-url": "https://packagist.org/downloads/",
  953. "license": [
  954. "MIT"
  955. ],
  956. "authors": [
  957. {
  958. "name": "PHP-FIG",
  959. "homepage": "http://www.php-fig.org/"
  960. }
  961. ],
  962. "description": "Common interfaces for simple caching",
  963. "keywords": [
  964. "cache",
  965. "caching",
  966. "psr",
  967. "psr-16",
  968. "simple-cache"
  969. ],
  970. "time": "2017-10-23T01:57:42+00:00"
  971. },
  972. {
  973. "name": "ralouphie/getallheaders",
  974. "version": "3.0.3",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/ralouphie/getallheaders.git",
  978. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  983. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  984. "shasum": "",
  985. "mirrors": [
  986. {
  987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  988. "preferred": true
  989. }
  990. ]
  991. },
  992. "require": {
  993. "php": ">=5.6"
  994. },
  995. "require-dev": {
  996. "php-coveralls/php-coveralls": "^2.1",
  997. "phpunit/phpunit": "^5 || ^6.5"
  998. },
  999. "type": "library",
  1000. "autoload": {
  1001. "files": [
  1002. "src/getallheaders.php"
  1003. ]
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "Ralph Khattar",
  1012. "email": "ralph.khattar@gmail.com"
  1013. }
  1014. ],
  1015. "description": "A polyfill for getallheaders.",
  1016. "time": "2019-03-08T08:55:37+00:00"
  1017. },
  1018. {
  1019. "name": "robmorgan/phinx",
  1020. "version": "0.10.7",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/cakephp/phinx.git",
  1024. "reference": "ba2dae98bb69d39531311e8fd72dd51e8e06ff32"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/cakephp/phinx/zipball/ba2dae98bb69d39531311e8fd72dd51e8e06ff32",
  1029. "reference": "ba2dae98bb69d39531311e8fd72dd51e8e06ff32",
  1030. "shasum": "",
  1031. "mirrors": [
  1032. {
  1033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1034. "preferred": true
  1035. }
  1036. ]
  1037. },
  1038. "require": {
  1039. "cakephp/collection": "^3.6",
  1040. "cakephp/database": "^3.6",
  1041. "php": ">=5.6",
  1042. "symfony/config": "^2.8|^3.0|^4.0",
  1043. "symfony/console": "^2.8|^3.0|^4.0",
  1044. "symfony/yaml": "^2.8|^3.0|^4.0"
  1045. },
  1046. "require-dev": {
  1047. "cakephp/cakephp-codesniffer": "^3.0",
  1048. "phpunit/phpunit": ">=5.7,<7.0",
  1049. "sebastian/comparator": ">=1.2.3"
  1050. },
  1051. "bin": [
  1052. "bin/phinx"
  1053. ],
  1054. "type": "library",
  1055. "autoload": {
  1056. "psr-4": {
  1057. "Phinx\\": "src/Phinx/"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "Woody Gilk",
  1067. "email": "woody.gilk@gmail.com",
  1068. "homepage": "http://shadowhand.me",
  1069. "role": "Developer"
  1070. },
  1071. {
  1072. "name": "Rob Morgan",
  1073. "email": "robbym@gmail.com",
  1074. "homepage": "https://robmorgan.id.au",
  1075. "role": "Lead Developer"
  1076. },
  1077. {
  1078. "name": "Richard Quadling",
  1079. "email": "rquadling@gmail.com",
  1080. "role": "Developer"
  1081. },
  1082. {
  1083. "name": "CakePHP Community",
  1084. "homepage": "https://github.com/cakephp/phinx/graphs/contributors"
  1085. }
  1086. ],
  1087. "description": "Phinx makes it ridiculously easy to manage the database migrations for your PHP app.",
  1088. "homepage": "https://phinx.org",
  1089. "keywords": [
  1090. "database",
  1091. "database migrations",
  1092. "db",
  1093. "migrations",
  1094. "phinx"
  1095. ],
  1096. "time": "2019-04-25T09:12:16+00:00"
  1097. },
  1098. {
  1099. "name": "symfony/config",
  1100. "version": "v4.2.8",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/symfony/config.git",
  1104. "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/symfony/config/zipball/0e745ead307d5dcd4e163e94a47ec04b1428943f",
  1109. "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f",
  1110. "shasum": "",
  1111. "mirrors": [
  1112. {
  1113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1114. "preferred": true
  1115. }
  1116. ]
  1117. },
  1118. "require": {
  1119. "php": "^7.1.3",
  1120. "symfony/filesystem": "~3.4|~4.0",
  1121. "symfony/polyfill-ctype": "~1.8"
  1122. },
  1123. "conflict": {
  1124. "symfony/finder": "<3.4"
  1125. },
  1126. "require-dev": {
  1127. "symfony/dependency-injection": "~3.4|~4.0",
  1128. "symfony/event-dispatcher": "~3.4|~4.0",
  1129. "symfony/finder": "~3.4|~4.0",
  1130. "symfony/yaml": "~3.4|~4.0"
  1131. },
  1132. "suggest": {
  1133. "symfony/yaml": "To use the yaml reference dumper"
  1134. },
  1135. "type": "library",
  1136. "extra": {
  1137. "branch-alias": {
  1138. "dev-master": "4.2-dev"
  1139. }
  1140. },
  1141. "autoload": {
  1142. "psr-4": {
  1143. "Symfony\\Component\\Config\\": ""
  1144. },
  1145. "exclude-from-classmap": [
  1146. "/Tests/"
  1147. ]
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "MIT"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "Fabien Potencier",
  1156. "email": "fabien@symfony.com"
  1157. },
  1158. {
  1159. "name": "Symfony Community",
  1160. "homepage": "https://symfony.com/contributors"
  1161. }
  1162. ],
  1163. "description": "Symfony Config Component",
  1164. "homepage": "https://symfony.com",
  1165. "time": "2019-04-01T14:03:25+00:00"
  1166. },
  1167. {
  1168. "name": "symfony/console",
  1169. "version": "v4.2.8",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/symfony/console.git",
  1173. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  1178. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  1179. "shasum": "",
  1180. "mirrors": [
  1181. {
  1182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1183. "preferred": true
  1184. }
  1185. ]
  1186. },
  1187. "require": {
  1188. "php": "^7.1.3",
  1189. "symfony/contracts": "^1.0",
  1190. "symfony/polyfill-mbstring": "~1.0"
  1191. },
  1192. "conflict": {
  1193. "symfony/dependency-injection": "<3.4",
  1194. "symfony/process": "<3.3"
  1195. },
  1196. "provide": {
  1197. "psr/log-implementation": "1.0"
  1198. },
  1199. "require-dev": {
  1200. "psr/log": "~1.0",
  1201. "symfony/config": "~3.4|~4.0",
  1202. "symfony/dependency-injection": "~3.4|~4.0",
  1203. "symfony/event-dispatcher": "~3.4|~4.0",
  1204. "symfony/lock": "~3.4|~4.0",
  1205. "symfony/process": "~3.4|~4.0"
  1206. },
  1207. "suggest": {
  1208. "psr/log": "For using the console logger",
  1209. "symfony/event-dispatcher": "",
  1210. "symfony/lock": "",
  1211. "symfony/process": ""
  1212. },
  1213. "type": "library",
  1214. "extra": {
  1215. "branch-alias": {
  1216. "dev-master": "4.2-dev"
  1217. }
  1218. },
  1219. "autoload": {
  1220. "psr-4": {
  1221. "Symfony\\Component\\Console\\": ""
  1222. },
  1223. "exclude-from-classmap": [
  1224. "/Tests/"
  1225. ]
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "authors": [
  1232. {
  1233. "name": "Fabien Potencier",
  1234. "email": "fabien@symfony.com"
  1235. },
  1236. {
  1237. "name": "Symfony Community",
  1238. "homepage": "https://symfony.com/contributors"
  1239. }
  1240. ],
  1241. "description": "Symfony Console Component",
  1242. "homepage": "https://symfony.com",
  1243. "time": "2019-04-08T14:23:48+00:00"
  1244. },
  1245. {
  1246. "name": "symfony/contracts",
  1247. "version": "v1.1.0",
  1248. "source": {
  1249. "type": "git",
  1250. "url": "https://github.com/symfony/contracts.git",
  1251. "reference": "d3636025e8253c6144358ec0a62773cae588395b"
  1252. },
  1253. "dist": {
  1254. "type": "zip",
  1255. "url": "https://api.github.com/repos/symfony/contracts/zipball/d3636025e8253c6144358ec0a62773cae588395b",
  1256. "reference": "d3636025e8253c6144358ec0a62773cae588395b",
  1257. "shasum": "",
  1258. "mirrors": [
  1259. {
  1260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1261. "preferred": true
  1262. }
  1263. ]
  1264. },
  1265. "require": {
  1266. "php": "^7.1.3"
  1267. },
  1268. "require-dev": {
  1269. "psr/cache": "^1.0",
  1270. "psr/container": "^1.0",
  1271. "symfony/polyfill-intl-idn": "^1.10"
  1272. },
  1273. "suggest": {
  1274. "psr/cache": "When using the Cache contracts",
  1275. "psr/container": "When using the Service contracts",
  1276. "symfony/cache-contracts-implementation": "",
  1277. "symfony/event-dispatcher-implementation": "",
  1278. "symfony/http-client-contracts-implementation": "",
  1279. "symfony/service-contracts-implementation": "",
  1280. "symfony/translation-contracts-implementation": ""
  1281. },
  1282. "type": "library",
  1283. "extra": {
  1284. "branch-alias": {
  1285. "dev-master": "1.1-dev"
  1286. }
  1287. },
  1288. "autoload": {
  1289. "psr-4": {
  1290. "Symfony\\Contracts\\": ""
  1291. },
  1292. "exclude-from-classmap": [
  1293. "**/Tests/"
  1294. ]
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "authors": [
  1301. {
  1302. "name": "Nicolas Grekas",
  1303. "email": "p@tchwork.com"
  1304. },
  1305. {
  1306. "name": "Symfony Community",
  1307. "homepage": "https://symfony.com/contributors"
  1308. }
  1309. ],
  1310. "description": "A set of abstractions extracted out of the Symfony components",
  1311. "homepage": "https://symfony.com",
  1312. "keywords": [
  1313. "abstractions",
  1314. "contracts",
  1315. "decoupling",
  1316. "interfaces",
  1317. "interoperability",
  1318. "standards"
  1319. ],
  1320. "time": "2019-04-27T14:29:50+00:00"
  1321. },
  1322. {
  1323. "name": "symfony/filesystem",
  1324. "version": "v4.2.8",
  1325. "source": {
  1326. "type": "git",
  1327. "url": "https://github.com/symfony/filesystem.git",
  1328. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601"
  1329. },
  1330. "dist": {
  1331. "type": "zip",
  1332. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e16b9e471703b2c60b95f14d31c1239f68f11601",
  1333. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601",
  1334. "shasum": "",
  1335. "mirrors": [
  1336. {
  1337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1338. "preferred": true
  1339. }
  1340. ]
  1341. },
  1342. "require": {
  1343. "php": "^7.1.3",
  1344. "symfony/polyfill-ctype": "~1.8"
  1345. },
  1346. "type": "library",
  1347. "extra": {
  1348. "branch-alias": {
  1349. "dev-master": "4.2-dev"
  1350. }
  1351. },
  1352. "autoload": {
  1353. "psr-4": {
  1354. "Symfony\\Component\\Filesystem\\": ""
  1355. },
  1356. "exclude-from-classmap": [
  1357. "/Tests/"
  1358. ]
  1359. },
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "authors": [
  1365. {
  1366. "name": "Fabien Potencier",
  1367. "email": "fabien@symfony.com"
  1368. },
  1369. {
  1370. "name": "Symfony Community",
  1371. "homepage": "https://symfony.com/contributors"
  1372. }
  1373. ],
  1374. "description": "Symfony Filesystem Component",
  1375. "homepage": "https://symfony.com",
  1376. "time": "2019-02-07T11:40:08+00:00"
  1377. },
  1378. {
  1379. "name": "symfony/finder",
  1380. "version": "v5.2.0",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/symfony/finder.git",
  1384. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://api.github.com/repos/symfony/finder/zipball/fd8305521692f27eae3263895d1ef1571c71a78d",
  1389. "reference": "fd8305521692f27eae3263895d1ef1571c71a78d",
  1390. "shasum": "",
  1391. "mirrors": [
  1392. {
  1393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1394. "preferred": true
  1395. }
  1396. ]
  1397. },
  1398. "require": {
  1399. "php": ">=7.2.5"
  1400. },
  1401. "type": "library",
  1402. "autoload": {
  1403. "psr-4": {
  1404. "Symfony\\Component\\Finder\\": ""
  1405. },
  1406. "exclude-from-classmap": [
  1407. "/Tests/"
  1408. ]
  1409. },
  1410. "notification-url": "https://packagist.org/downloads/",
  1411. "license": [
  1412. "MIT"
  1413. ],
  1414. "authors": [
  1415. {
  1416. "name": "Fabien Potencier",
  1417. "email": "fabien@symfony.com"
  1418. },
  1419. {
  1420. "name": "Symfony Community",
  1421. "homepage": "https://symfony.com/contributors"
  1422. }
  1423. ],
  1424. "description": "Symfony Finder Component",
  1425. "homepage": "https://symfony.com",
  1426. "funding": [
  1427. {
  1428. "url": "https://symfony.com/sponsor",
  1429. "type": "custom"
  1430. },
  1431. {
  1432. "url": "https://github.com/fabpot",
  1433. "type": "github"
  1434. },
  1435. {
  1436. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1437. "type": "tidelift"
  1438. }
  1439. ],
  1440. "time": "2020-11-18T09:42:36+00:00"
  1441. },
  1442. {
  1443. "name": "symfony/polyfill-ctype",
  1444. "version": "v1.11.0",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/symfony/polyfill-ctype.git",
  1448. "reference": "82ebae02209c21113908c229e9883c419720738a"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  1453. "reference": "82ebae02209c21113908c229e9883c419720738a",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": ">=5.3.3"
  1464. },
  1465. "suggest": {
  1466. "ext-ctype": "For best performance"
  1467. },
  1468. "type": "library",
  1469. "extra": {
  1470. "branch-alias": {
  1471. "dev-master": "1.11-dev"
  1472. }
  1473. },
  1474. "autoload": {
  1475. "psr-4": {
  1476. "Symfony\\Polyfill\\Ctype\\": ""
  1477. },
  1478. "files": [
  1479. "bootstrap.php"
  1480. ]
  1481. },
  1482. "notification-url": "https://packagist.org/downloads/",
  1483. "license": [
  1484. "MIT"
  1485. ],
  1486. "authors": [
  1487. {
  1488. "name": "Symfony Community",
  1489. "homepage": "https://symfony.com/contributors"
  1490. },
  1491. {
  1492. "name": "Gert de Pagter",
  1493. "email": "BackEndTea@gmail.com"
  1494. }
  1495. ],
  1496. "description": "Symfony polyfill for ctype functions",
  1497. "homepage": "https://symfony.com",
  1498. "keywords": [
  1499. "compatibility",
  1500. "ctype",
  1501. "polyfill",
  1502. "portable"
  1503. ],
  1504. "time": "2019-02-06T07:57:58+00:00"
  1505. },
  1506. {
  1507. "name": "symfony/polyfill-intl-idn",
  1508. "version": "v1.20.0",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1512. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  1517. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  1518. "shasum": "",
  1519. "mirrors": [
  1520. {
  1521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1522. "preferred": true
  1523. }
  1524. ]
  1525. },
  1526. "require": {
  1527. "php": ">=7.1",
  1528. "symfony/polyfill-intl-normalizer": "^1.10",
  1529. "symfony/polyfill-php72": "^1.10"
  1530. },
  1531. "suggest": {
  1532. "ext-intl": "For best performance"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-main": "1.20-dev"
  1538. },
  1539. "thanks": {
  1540. "name": "symfony/polyfill",
  1541. "url": "https://github.com/symfony/polyfill"
  1542. }
  1543. },
  1544. "autoload": {
  1545. "psr-4": {
  1546. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1547. },
  1548. "files": [
  1549. "bootstrap.php"
  1550. ]
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "MIT"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Laurent Bassin",
  1559. "email": "laurent@bassin.info"
  1560. },
  1561. {
  1562. "name": "Trevor Rowbotham",
  1563. "email": "trevor.rowbotham@pm.me"
  1564. },
  1565. {
  1566. "name": "Symfony Community",
  1567. "homepage": "https://symfony.com/contributors"
  1568. }
  1569. ],
  1570. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1571. "homepage": "https://symfony.com",
  1572. "keywords": [
  1573. "compatibility",
  1574. "idn",
  1575. "intl",
  1576. "polyfill",
  1577. "portable",
  1578. "shim"
  1579. ],
  1580. "funding": [
  1581. {
  1582. "url": "https://symfony.com/sponsor",
  1583. "type": "custom"
  1584. },
  1585. {
  1586. "url": "https://github.com/fabpot",
  1587. "type": "github"
  1588. },
  1589. {
  1590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1591. "type": "tidelift"
  1592. }
  1593. ],
  1594. "time": "2020-10-23T14:02:19+00:00"
  1595. },
  1596. {
  1597. "name": "symfony/polyfill-intl-normalizer",
  1598. "version": "v1.20.0",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1602. "reference": "727d1096295d807c309fb01a851577302394c897"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  1607. "reference": "727d1096295d807c309fb01a851577302394c897",
  1608. "shasum": "",
  1609. "mirrors": [
  1610. {
  1611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1612. "preferred": true
  1613. }
  1614. ]
  1615. },
  1616. "require": {
  1617. "php": ">=7.1"
  1618. },
  1619. "suggest": {
  1620. "ext-intl": "For best performance"
  1621. },
  1622. "type": "library",
  1623. "extra": {
  1624. "branch-alias": {
  1625. "dev-main": "1.20-dev"
  1626. },
  1627. "thanks": {
  1628. "name": "symfony/polyfill",
  1629. "url": "https://github.com/symfony/polyfill"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "psr-4": {
  1634. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1635. },
  1636. "files": [
  1637. "bootstrap.php"
  1638. ],
  1639. "classmap": [
  1640. "Resources/stubs"
  1641. ]
  1642. },
  1643. "notification-url": "https://packagist.org/downloads/",
  1644. "license": [
  1645. "MIT"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "Nicolas Grekas",
  1650. "email": "p@tchwork.com"
  1651. },
  1652. {
  1653. "name": "Symfony Community",
  1654. "homepage": "https://symfony.com/contributors"
  1655. }
  1656. ],
  1657. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1658. "homepage": "https://symfony.com",
  1659. "keywords": [
  1660. "compatibility",
  1661. "intl",
  1662. "normalizer",
  1663. "polyfill",
  1664. "portable",
  1665. "shim"
  1666. ],
  1667. "funding": [
  1668. {
  1669. "url": "https://symfony.com/sponsor",
  1670. "type": "custom"
  1671. },
  1672. {
  1673. "url": "https://github.com/fabpot",
  1674. "type": "github"
  1675. },
  1676. {
  1677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1678. "type": "tidelift"
  1679. }
  1680. ],
  1681. "time": "2020-10-23T14:02:19+00:00"
  1682. },
  1683. {
  1684. "name": "symfony/polyfill-mbstring",
  1685. "version": "v1.11.0",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1689. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  1694. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  1695. "shasum": "",
  1696. "mirrors": [
  1697. {
  1698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1699. "preferred": true
  1700. }
  1701. ]
  1702. },
  1703. "require": {
  1704. "php": ">=5.3.3"
  1705. },
  1706. "suggest": {
  1707. "ext-mbstring": "For best performance"
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "1.11-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "Symfony\\Polyfill\\Mbstring\\": ""
  1718. },
  1719. "files": [
  1720. "bootstrap.php"
  1721. ]
  1722. },
  1723. "notification-url": "https://packagist.org/downloads/",
  1724. "license": [
  1725. "MIT"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "Nicolas Grekas",
  1730. "email": "p@tchwork.com"
  1731. },
  1732. {
  1733. "name": "Symfony Community",
  1734. "homepage": "https://symfony.com/contributors"
  1735. }
  1736. ],
  1737. "description": "Symfony polyfill for the Mbstring extension",
  1738. "homepage": "https://symfony.com",
  1739. "keywords": [
  1740. "compatibility",
  1741. "mbstring",
  1742. "polyfill",
  1743. "portable",
  1744. "shim"
  1745. ],
  1746. "time": "2019-02-06T07:57:58+00:00"
  1747. },
  1748. {
  1749. "name": "symfony/polyfill-php72",
  1750. "version": "v1.20.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/symfony/polyfill-php72.git",
  1754. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  1759. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  1760. "shasum": "",
  1761. "mirrors": [
  1762. {
  1763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1764. "preferred": true
  1765. }
  1766. ]
  1767. },
  1768. "require": {
  1769. "php": ">=7.1"
  1770. },
  1771. "type": "library",
  1772. "extra": {
  1773. "branch-alias": {
  1774. "dev-main": "1.20-dev"
  1775. },
  1776. "thanks": {
  1777. "name": "symfony/polyfill",
  1778. "url": "https://github.com/symfony/polyfill"
  1779. }
  1780. },
  1781. "autoload": {
  1782. "psr-4": {
  1783. "Symfony\\Polyfill\\Php72\\": ""
  1784. },
  1785. "files": [
  1786. "bootstrap.php"
  1787. ]
  1788. },
  1789. "notification-url": "https://packagist.org/downloads/",
  1790. "license": [
  1791. "MIT"
  1792. ],
  1793. "authors": [
  1794. {
  1795. "name": "Nicolas Grekas",
  1796. "email": "p@tchwork.com"
  1797. },
  1798. {
  1799. "name": "Symfony Community",
  1800. "homepage": "https://symfony.com/contributors"
  1801. }
  1802. ],
  1803. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1804. "homepage": "https://symfony.com",
  1805. "keywords": [
  1806. "compatibility",
  1807. "polyfill",
  1808. "portable",
  1809. "shim"
  1810. ],
  1811. "funding": [
  1812. {
  1813. "url": "https://symfony.com/sponsor",
  1814. "type": "custom"
  1815. },
  1816. {
  1817. "url": "https://github.com/fabpot",
  1818. "type": "github"
  1819. },
  1820. {
  1821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1822. "type": "tidelift"
  1823. }
  1824. ],
  1825. "time": "2020-10-23T14:02:19+00:00"
  1826. },
  1827. {
  1828. "name": "symfony/yaml",
  1829. "version": "v4.2.8",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/symfony/yaml.git",
  1833. "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/symfony/yaml/zipball/6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
  1838. "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
  1839. "shasum": "",
  1840. "mirrors": [
  1841. {
  1842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1843. "preferred": true
  1844. }
  1845. ]
  1846. },
  1847. "require": {
  1848. "php": "^7.1.3",
  1849. "symfony/polyfill-ctype": "~1.8"
  1850. },
  1851. "conflict": {
  1852. "symfony/console": "<3.4"
  1853. },
  1854. "require-dev": {
  1855. "symfony/console": "~3.4|~4.0"
  1856. },
  1857. "suggest": {
  1858. "symfony/console": "For validating YAML files using the lint command"
  1859. },
  1860. "type": "library",
  1861. "extra": {
  1862. "branch-alias": {
  1863. "dev-master": "4.2-dev"
  1864. }
  1865. },
  1866. "autoload": {
  1867. "psr-4": {
  1868. "Symfony\\Component\\Yaml\\": ""
  1869. },
  1870. "exclude-from-classmap": [
  1871. "/Tests/"
  1872. ]
  1873. },
  1874. "notification-url": "https://packagist.org/downloads/",
  1875. "license": [
  1876. "MIT"
  1877. ],
  1878. "authors": [
  1879. {
  1880. "name": "Fabien Potencier",
  1881. "email": "fabien@symfony.com"
  1882. },
  1883. {
  1884. "name": "Symfony Community",
  1885. "homepage": "https://symfony.com/contributors"
  1886. }
  1887. ],
  1888. "description": "Symfony Yaml Component",
  1889. "homepage": "https://symfony.com",
  1890. "time": "2019-03-30T15:58:42+00:00"
  1891. },
  1892. {
  1893. "name": "topthink/framework",
  1894. "version": "v5.1.40",
  1895. "source": {
  1896. "type": "git",
  1897. "url": "https://github.com/top-think/framework.git",
  1898. "reference": "df0f92d58c70207c9ce9526fa7743eeff0831328"
  1899. },
  1900. "dist": {
  1901. "type": "zip",
  1902. "url": "https://api.github.com/repos/top-think/framework/zipball/df0f92d58c70207c9ce9526fa7743eeff0831328",
  1903. "reference": "df0f92d58c70207c9ce9526fa7743eeff0831328",
  1904. "shasum": "",
  1905. "mirrors": [
  1906. {
  1907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1908. "preferred": true
  1909. }
  1910. ]
  1911. },
  1912. "require": {
  1913. "php": ">=5.6.0",
  1914. "topthink/think-installer": "2.*"
  1915. },
  1916. "require-dev": {
  1917. "johnkary/phpunit-speedtrap": "^1.0",
  1918. "mikey179/vfsstream": "~1.6",
  1919. "phpdocumentor/reflection-docblock": "^2.0",
  1920. "phploc/phploc": "2.*",
  1921. "phpunit/phpunit": "^5.0|^6.0",
  1922. "sebastian/phpcpd": "2.*",
  1923. "squizlabs/php_codesniffer": "2.*"
  1924. },
  1925. "type": "think-framework",
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "Apache-2.0"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "liu21st",
  1933. "email": "liu21st@gmail.com"
  1934. },
  1935. {
  1936. "name": "yunwuxin",
  1937. "email": "448901948@qq.com"
  1938. }
  1939. ],
  1940. "description": "the new thinkphp framework",
  1941. "homepage": "http://thinkphp.cn/",
  1942. "keywords": [
  1943. "framework",
  1944. "orm",
  1945. "thinkphp"
  1946. ],
  1947. "time": "2020-10-09T07:36:44+00:00"
  1948. },
  1949. {
  1950. "name": "topthink/think-installer",
  1951. "version": "v2.0.0",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://github.com/top-think/think-installer.git",
  1955. "reference": "f5400a12c60e513911aef41fe443fa6920952675"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://api.github.com/repos/top-think/think-installer/zipball/f5400a12c60e513911aef41fe443fa6920952675",
  1960. "reference": "f5400a12c60e513911aef41fe443fa6920952675",
  1961. "shasum": "",
  1962. "mirrors": [
  1963. {
  1964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1965. "preferred": true
  1966. }
  1967. ]
  1968. },
  1969. "require": {
  1970. "composer-plugin-api": "^1.0"
  1971. },
  1972. "require-dev": {
  1973. "composer/composer": "1.0.*@dev"
  1974. },
  1975. "type": "composer-plugin",
  1976. "extra": {
  1977. "class": "think\\composer\\Plugin"
  1978. },
  1979. "autoload": {
  1980. "psr-4": {
  1981. "think\\composer\\": "src"
  1982. }
  1983. },
  1984. "notification-url": "https://packagist.org/downloads/",
  1985. "license": [
  1986. "Apache-2.0"
  1987. ],
  1988. "authors": [
  1989. {
  1990. "name": "yunwuxin",
  1991. "email": "448901948@qq.com"
  1992. }
  1993. ],
  1994. "time": "2018-05-11T06:45:42+00:00"
  1995. },
  1996. {
  1997. "name": "zircote/swagger-php",
  1998. "version": "3.1.0",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/zircote/swagger-php.git",
  2002. "reference": "9d172471e56433b5c7061006b9a766f262a3edfd"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/9d172471e56433b5c7061006b9a766f262a3edfd",
  2007. "reference": "9d172471e56433b5c7061006b9a766f262a3edfd",
  2008. "shasum": "",
  2009. "mirrors": [
  2010. {
  2011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2012. "preferred": true
  2013. }
  2014. ]
  2015. },
  2016. "require": {
  2017. "doctrine/annotations": "*",
  2018. "ext-json": "*",
  2019. "php": ">=7.2",
  2020. "symfony/finder": ">=2.2",
  2021. "symfony/yaml": ">=3.3"
  2022. },
  2023. "require-dev": {
  2024. "friendsofphp/php-cs-fixer": "^2.16",
  2025. "phpunit/phpunit": ">=8"
  2026. },
  2027. "bin": [
  2028. "bin/openapi"
  2029. ],
  2030. "type": "library",
  2031. "autoload": {
  2032. "psr-4": {
  2033. "OpenApi\\": "src"
  2034. },
  2035. "files": [
  2036. "src/functions.php"
  2037. ]
  2038. },
  2039. "notification-url": "https://packagist.org/downloads/",
  2040. "license": [
  2041. "Apache-2.0"
  2042. ],
  2043. "authors": [
  2044. {
  2045. "name": "Robert Allen",
  2046. "email": "zircote@gmail.com"
  2047. },
  2048. {
  2049. "name": "Bob Fanger",
  2050. "email": "bfanger@gmail.com",
  2051. "homepage": "https://bfanger.nl"
  2052. },
  2053. {
  2054. "name": "Martin Rademacher",
  2055. "email": "mano@radebatz.net",
  2056. "homepage": "https://radebatz.net"
  2057. }
  2058. ],
  2059. "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations",
  2060. "homepage": "https://github.com/zircote/swagger-php/",
  2061. "keywords": [
  2062. "api",
  2063. "json",
  2064. "rest",
  2065. "service discovery"
  2066. ],
  2067. "time": "2020-09-03T20:18:43+00:00"
  2068. }
  2069. ],
  2070. "packages-dev": [
  2071. {
  2072. "name": "psr/http-client",
  2073. "version": "1.0.1",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/php-fig/http-client.git",
  2077. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2082. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2083. "shasum": "",
  2084. "mirrors": [
  2085. {
  2086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2087. "preferred": true
  2088. }
  2089. ]
  2090. },
  2091. "require": {
  2092. "php": "^7.0 || ^8.0",
  2093. "psr/http-message": "^1.0"
  2094. },
  2095. "type": "library",
  2096. "extra": {
  2097. "branch-alias": {
  2098. "dev-master": "1.0.x-dev"
  2099. }
  2100. },
  2101. "autoload": {
  2102. "psr-4": {
  2103. "Psr\\Http\\Client\\": "src/"
  2104. }
  2105. },
  2106. "notification-url": "https://packagist.org/downloads/",
  2107. "license": [
  2108. "MIT"
  2109. ],
  2110. "authors": [
  2111. {
  2112. "name": "PHP-FIG",
  2113. "homepage": "http://www.php-fig.org/"
  2114. }
  2115. ],
  2116. "description": "Common interface for HTTP clients",
  2117. "homepage": "https://github.com/php-fig/http-client",
  2118. "keywords": [
  2119. "http",
  2120. "http-client",
  2121. "psr",
  2122. "psr-18"
  2123. ],
  2124. "time": "2020-06-29T06:28:15+00:00"
  2125. },
  2126. {
  2127. "name": "roave/security-advisories",
  2128. "version": "dev-master",
  2129. "source": {
  2130. "type": "git",
  2131. "url": "https://github.com/Roave/SecurityAdvisories.git",
  2132. "reference": "676668eda60bb8a32bd2a4efcb12c96d6e1c4bc6"
  2133. },
  2134. "dist": {
  2135. "type": "zip",
  2136. "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/676668eda60bb8a32bd2a4efcb12c96d6e1c4bc6",
  2137. "reference": "676668eda60bb8a32bd2a4efcb12c96d6e1c4bc6",
  2138. "shasum": "",
  2139. "mirrors": [
  2140. {
  2141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2142. "preferred": true
  2143. }
  2144. ]
  2145. },
  2146. "conflict": {
  2147. "3f/pygmentize": "<1.2",
  2148. "adodb/adodb-php": "<5.20.12",
  2149. "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
  2150. "amphp/artax": "<1.0.6|>=2,<2.0.6",
  2151. "amphp/http": "<1.0.1",
  2152. "amphp/http-client": ">=4,<4.4",
  2153. "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6",
  2154. "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99",
  2155. "aws/aws-sdk-php": ">=3,<3.2.1",
  2156. "bagisto/bagisto": "<0.1.5",
  2157. "barrelstrength/sprout-base-email": "<1.2.7",
  2158. "barrelstrength/sprout-forms": "<3.9",
  2159. "baserproject/basercms": ">=4,<=4.3.6|>=4.4,<4.4.1",
  2160. "bolt/bolt": "<3.7.1",
  2161. "brightlocal/phpwhois": "<=4.2.5",
  2162. "buddypress/buddypress": "<5.1.2",
  2163. "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
  2164. "cakephp/cakephp": ">=1.3,<1.3.18|>=2,<2.4.99|>=2.5,<2.5.99|>=2.6,<2.6.12|>=2.7,<2.7.6|>=3,<3.5.18|>=3.6,<3.6.15|>=3.7,<3.7.7",
  2165. "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
  2166. "cartalyst/sentry": "<=2.1.6",
  2167. "centreon/centreon": "<18.10.8|>=19,<19.4.5",
  2168. "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
  2169. "codeigniter/framework": "<=3.0.6",
  2170. "composer/composer": "<=1-alpha.11",
  2171. "contao-components/mediaelement": ">=2.14.2,<2.21.1",
  2172. "contao/core": ">=2,<3.5.39",
  2173. "contao/core-bundle": ">=4,<4.4.52|>=4.5,<4.9.6|= 4.10.0",
  2174. "contao/listing-bundle": ">=4,<4.4.8",
  2175. "datadog/dd-trace": ">=0.30,<0.30.2",
  2176. "david-garcia/phpwhois": "<=4.3.1",
  2177. "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1",
  2178. "doctrine/annotations": ">=1,<1.2.7",
  2179. "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
  2180. "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1",
  2181. "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2",
  2182. "doctrine/doctrine-bundle": "<1.5.2",
  2183. "doctrine/doctrine-module": "<=0.7.1",
  2184. "doctrine/mongodb-odm": ">=1,<1.0.2",
  2185. "doctrine/mongodb-odm-bundle": ">=2,<3.0.1",
  2186. "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1",
  2187. "dolibarr/dolibarr": "<11.0.4",
  2188. "dompdf/dompdf": ">=0.6,<0.6.2",
  2189. "drupal/core": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8",
  2190. "drupal/drupal": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8",
  2191. "endroid/qr-code-bundle": "<3.4.2",
  2192. "enshrined/svg-sanitize": "<0.13.1",
  2193. "erusev/parsedown": "<1.7.2",
  2194. "ezsystems/demobundle": ">=5.4,<5.4.6.1",
  2195. "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
  2196. "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1",
  2197. "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1",
  2198. "ezsystems/ezplatform": ">=1.7,<1.7.9.1|>=1.13,<1.13.5.1|>=2.5,<2.5.4",
  2199. "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6",
  2200. "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
  2201. "ezsystems/ezplatform-kernel": ">=1,<1.0.2.1",
  2202. "ezsystems/ezplatform-user": ">=1,<1.0.1",
  2203. "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.14.2|>=6,<6.7.9.1|>=6.8,<6.13.6.3|>=7,<7.2.4.1|>=7.3,<7.3.2.1|>=7.5,<7.5.7.1",
  2204. "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.14.2|>=2011,<2017.12.7.3|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3|>=2019.3,<2019.3.5.1",
  2205. "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
  2206. "ezsystems/repository-forms": ">=2.3,<2.3.2.1",
  2207. "ezyang/htmlpurifier": "<4.1.1",
  2208. "firebase/php-jwt": "<2",
  2209. "fooman/tcpdf": "<6.2.22",
  2210. "fossar/tcpdf-parser": "<6.2.22",
  2211. "friendsofsymfony/oauth2-php": "<1.3",
  2212. "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
  2213. "friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
  2214. "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
  2215. "fuel/core": "<1.8.1",
  2216. "getgrav/grav": "<1.7-beta.8",
  2217. "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
  2218. "gree/jose": "<=2.2",
  2219. "gregwar/rst": "<1.0.3",
  2220. "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1",
  2221. "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10",
  2222. "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4",
  2223. "illuminate/database": ">=4,<4.0.99|>=4.1,<4.1.29|>=5.5,<=5.5.44|>=6,<6.18.34|>=7,<7.23.2",
  2224. "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
  2225. "illuminate/view": ">=7,<7.1.2",
  2226. "ivankristianto/phpwhois": "<=4.3",
  2227. "james-heinrich/getid3": "<1.9.9",
  2228. "joomla/session": "<1.3.1",
  2229. "jsmitty12/phpwhois": "<5.1",
  2230. "kazist/phpwhois": "<=4.2.6",
  2231. "kitodo/presentation": "<3.1.2",
  2232. "kreait/firebase-php": ">=3.2,<3.8.1",
  2233. "la-haute-societe/tcpdf": "<6.2.22",
  2234. "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.34|>=7,<7.23.2",
  2235. "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
  2236. "league/commonmark": "<0.18.3",
  2237. "librenms/librenms": "<1.53",
  2238. "livewire/livewire": ">2.2.4,<2.2.6",
  2239. "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3",
  2240. "magento/magento1ce": "<1.9.4.3",
  2241. "magento/magento1ee": ">=1,<1.14.4.3",
  2242. "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2",
  2243. "marcwillmann/turn": "<0.3.3",
  2244. "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35",
  2245. "mittwald/typo3_forum": "<1.2.1",
  2246. "monolog/monolog": ">=1.8,<1.12",
  2247. "namshi/jose": "<2.2",
  2248. "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
  2249. "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
  2250. "nystudio107/craft-seomatic": "<3.3",
  2251. "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
  2252. "october/backend": ">=1.0.319,<1.0.470",
  2253. "october/cms": "= 1.0.469|>=1.0.319,<1.0.469",
  2254. "october/october": ">=1.0.319,<1.0.466",
  2255. "october/rain": ">=1.0.319,<1.0.468",
  2256. "onelogin/php-saml": "<2.10.4",
  2257. "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
  2258. "openid/php-openid": "<2.3",
  2259. "openmage/magento-lts": "<19.4.8|>=20,<20.0.4",
  2260. "orchid/platform": ">=9,<9.4.4",
  2261. "oro/crm": ">=1.7,<1.7.4",
  2262. "oro/platform": ">=1.7,<1.7.4",
  2263. "padraic/humbug_get_contents": "<1.1.2",
  2264. "pagarme/pagarme-php": ">=0,<3",
  2265. "paragonie/random_compat": "<2",
  2266. "passbolt/passbolt_api": "<2.11",
  2267. "paypal/merchant-sdk-php": "<3.12",
  2268. "pear/archive_tar": "<1.4.11",
  2269. "personnummer/personnummer": "<3.0.2",
  2270. "phpfastcache/phpfastcache": ">=5,<5.0.13",
  2271. "phpmailer/phpmailer": "<6.1.6",
  2272. "phpmussel/phpmussel": ">=1,<1.6",
  2273. "phpmyadmin/phpmyadmin": "<4.9.6|>=5,<5.0.3",
  2274. "phpoffice/phpexcel": "<1.8.2",
  2275. "phpoffice/phpspreadsheet": "<1.8",
  2276. "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
  2277. "phpwhois/phpwhois": "<=4.2.5",
  2278. "phpxmlrpc/extras": "<0.6.1",
  2279. "pimcore/pimcore": "<6.3",
  2280. "pocketmine/pocketmine-mp": "<3.15.4",
  2281. "prestashop/autoupgrade": ">=4,<4.10.1",
  2282. "prestashop/contactform": ">1.0.1,<4.3",
  2283. "prestashop/gamification": "<2.3.2",
  2284. "prestashop/productcomments": ">=4,<4.2",
  2285. "prestashop/ps_facetedsearch": "<3.4.1",
  2286. "privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2",
  2287. "propel/propel": ">=2-alpha.1,<=2-alpha.7",
  2288. "propel/propel1": ">=1,<=1.7.1",
  2289. "pterodactyl/panel": "<0.7.19|>=1-rc.0,<=1-rc.6",
  2290. "pusher/pusher-php-server": "<2.2.1",
  2291. "rainlab/debugbar-plugin": "<3.1",
  2292. "robrichards/xmlseclibs": "<3.0.4",
  2293. "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
  2294. "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9",
  2295. "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11",
  2296. "sensiolabs/connect": "<4.2.3",
  2297. "serluck/phpwhois": "<=4.2.6",
  2298. "shopware/core": "<=6.3.2",
  2299. "shopware/platform": "<=6.3.2",
  2300. "shopware/shopware": "<5.6.9",
  2301. "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1",
  2302. "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2",
  2303. "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4",
  2304. "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
  2305. "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
  2306. "silverstripe/framework": "<4.4.7|>=4.5,<4.5.4",
  2307. "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2|>=3.2,<3.2.4",
  2308. "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
  2309. "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",
  2310. "silverstripe/subsites": ">=2,<2.1.1",
  2311. "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
  2312. "silverstripe/userforms": "<3",
  2313. "simple-updates/phpwhois": "<=1",
  2314. "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4",
  2315. "simplesamlphp/simplesamlphp": "<1.18.6",
  2316. "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
  2317. "simplito/elliptic-php": "<1.0.6",
  2318. "slim/slim": "<2.6",
  2319. "smarty/smarty": "<3.1.33",
  2320. "socalnick/scn-social-auth": "<1.15.2",
  2321. "spoonity/tcpdf": "<6.2.22",
  2322. "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
  2323. "ssddanbrown/bookstack": "<0.29.2",
  2324. "stormpath/sdk": ">=0,<9.9.99",
  2325. "studio-42/elfinder": "<2.1.49",
  2326. "sulu/sulu": "<1.6.34|>=2,<2.0.10|>=2.1,<2.1.1",
  2327. "swiftmailer/swiftmailer": ">=4,<5.4.5",
  2328. "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
  2329. "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
  2330. "sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
  2331. "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
  2332. "sylius/sylius": "<1.6.9|>=1.7,<1.7.9|>=1.8,<1.8.3",
  2333. "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
  2334. "symbiote/silverstripe-versionedfiles": "<=2.0.3",
  2335. "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
  2336. "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  2337. "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
  2338. "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
  2339. "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  2340. "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
  2341. "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5",
  2342. "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
  2343. "symfony/mime": ">=4.3,<4.3.8",
  2344. "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  2345. "symfony/polyfill": ">=1,<1.10",
  2346. "symfony/polyfill-php55": ">=1,<1.10",
  2347. "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  2348. "symfony/routing": ">=2,<2.0.19",
  2349. "symfony/security": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=4.4,<4.4.7|>=5,<5.0.7",
  2350. "symfony/security-bundle": ">=2,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
  2351. "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<2.8.37|>=3,<3.3.17|>=3.4,<3.4.7|>=4,<4.0.7",
  2352. "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
  2353. "symfony/security-guard": ">=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
  2354. "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7",
  2355. "symfony/serializer": ">=2,<2.0.11",
  2356. "symfony/symfony": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5",
  2357. "symfony/translation": ">=2,<2.0.17",
  2358. "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",
  2359. "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
  2360. "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
  2361. "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
  2362. "t3g/svg-sanitizer": "<1.0.3",
  2363. "tecnickcom/tcpdf": "<6.2.22",
  2364. "thelia/backoffice-default-template": ">=2.1,<2.1.2",
  2365. "thelia/thelia": ">=2.1-beta.1,<2.1.3",
  2366. "theonedemon/phpwhois": "<=4.2.5",
  2367. "titon/framework": ">=0,<9.9.99",
  2368. "truckersmp/phpwhois": "<=4.3.1",
  2369. "twig/twig": "<1.38|>=2,<2.7",
  2370. "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10",
  2371. "typo3/cms-core": ">=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10",
  2372. "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.10|>=3.1,<3.1.7|>=3.2,<3.2.7|>=3.3,<3.3.5",
  2373. "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4",
  2374. "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
  2375. "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
  2376. "ua-parser/uap-php": "<3.8",
  2377. "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
  2378. "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4",
  2379. "wallabag/tcpdf": "<6.2.22",
  2380. "willdurand/js-translation-bundle": "<2.1.1",
  2381. "yii2mod/yii2-cms": "<1.9.2",
  2382. "yiisoft/yii": ">=1.1.14,<1.1.15",
  2383. "yiisoft/yii2": "<2.0.38",
  2384. "yiisoft/yii2-bootstrap": "<2.0.4",
  2385. "yiisoft/yii2-dev": "<2.0.15",
  2386. "yiisoft/yii2-elasticsearch": "<2.0.5",
  2387. "yiisoft/yii2-gii": "<2.0.4",
  2388. "yiisoft/yii2-jui": "<2.0.4",
  2389. "yiisoft/yii2-redis": "<2.0.8",
  2390. "yourls/yourls": "<1.7.4",
  2391. "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
  2392. "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
  2393. "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
  2394. "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5",
  2395. "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
  2396. "zendframework/zend-diactoros": ">=1,<1.8.4",
  2397. "zendframework/zend-feed": ">=1,<2.10.3",
  2398. "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
  2399. "zendframework/zend-http": ">=1,<2.8.1",
  2400. "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
  2401. "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
  2402. "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2",
  2403. "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
  2404. "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",
  2405. "zendframework/zend-validator": ">=2.3,<2.3.6",
  2406. "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
  2407. "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
  2408. "zendframework/zendframework": "<2.5.1",
  2409. "zendframework/zendframework1": "<1.12.20",
  2410. "zendframework/zendopenid": ">=2,<2.0.2",
  2411. "zendframework/zendxml": ">=1,<1.0.1",
  2412. "zetacomponents/mail": "<1.8.2",
  2413. "zf-commons/zfc-user": "<1.2.2",
  2414. "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
  2415. "zfr/zfr-oauth2-server-module": "<0.1.2"
  2416. },
  2417. "type": "metapackage",
  2418. "notification-url": "https://packagist.org/downloads/",
  2419. "license": [
  2420. "MIT"
  2421. ],
  2422. "authors": [
  2423. {
  2424. "name": "Marco Pivetta",
  2425. "email": "ocramius@gmail.com",
  2426. "role": "maintainer"
  2427. },
  2428. {
  2429. "name": "Ilya Tribusean",
  2430. "email": "slash3b@gmail.com",
  2431. "role": "maintainer"
  2432. }
  2433. ],
  2434. "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
  2435. "funding": [
  2436. {
  2437. "url": "https://github.com/Ocramius",
  2438. "type": "github"
  2439. },
  2440. {
  2441. "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
  2442. "type": "tidelift"
  2443. }
  2444. ],
  2445. "time": "2020-12-02T06:02:50+00:00"
  2446. }
  2447. ],
  2448. "aliases": [],
  2449. "minimum-stability": "stable",
  2450. "stability-flags": {
  2451. "roave/security-advisories": 20
  2452. },
  2453. "prefer-stable": false,
  2454. "prefer-lowest": false,
  2455. "platform": {
  2456. "php": ">=7.0.0",
  2457. "ext-curl": "*",
  2458. "ext-json": "*"
  2459. },
  2460. "platform-dev": [],
  2461. "plugin-api-version": "1.1.0"
  2462. }