installed.json 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. [
  2. {
  3. "name": "cakephp/cache",
  4. "version": "3.7.7",
  5. "version_normalized": "3.7.7.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/cakephp/cache.git",
  9. "reference": "a354c07ba284508d119d0a05e2f9583b592a2e64"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/cakephp/cache/zipball/a354c07ba284508d119d0a05e2f9583b592a2e64",
  14. "reference": "a354c07ba284508d119d0a05e2f9583b592a2e64",
  15. "shasum": "",
  16. "mirrors": [
  17. {
  18. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  19. "preferred": true
  20. }
  21. ]
  22. },
  23. "require": {
  24. "cakephp/core": "^3.6.0",
  25. "php": ">=5.6.0",
  26. "psr/simple-cache": "^1.0.0"
  27. },
  28. "time": "2019-04-17T01:27:05+00:00",
  29. "type": "library",
  30. "installation-source": "dist",
  31. "autoload": {
  32. "psr-4": {
  33. "Cake\\Cache\\": "."
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "CakePHP Community",
  43. "homepage": "https://github.com/cakephp/cache/graphs/contributors"
  44. }
  45. ],
  46. "description": "Easy to use Caching library with support for multiple caching backends",
  47. "homepage": "https://cakephp.org",
  48. "keywords": [
  49. "cache",
  50. "caching",
  51. "cakephp"
  52. ]
  53. },
  54. {
  55. "name": "cakephp/collection",
  56. "version": "3.7.7",
  57. "version_normalized": "3.7.7.0",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/cakephp/collection.git",
  61. "reference": "4c3b790d4703cc88cb75815b0e7f02a1a82b8d57"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/cakephp/collection/zipball/4c3b790d4703cc88cb75815b0e7f02a1a82b8d57",
  66. "reference": "4c3b790d4703cc88cb75815b0e7f02a1a82b8d57",
  67. "shasum": "",
  68. "mirrors": [
  69. {
  70. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  71. "preferred": true
  72. }
  73. ]
  74. },
  75. "require": {
  76. "php": ">=5.6.0"
  77. },
  78. "time": "2019-01-08T15:11:44+00:00",
  79. "type": "library",
  80. "installation-source": "dist",
  81. "autoload": {
  82. "psr-4": {
  83. "Cake\\Collection\\": "."
  84. },
  85. "files": [
  86. "functions.php"
  87. ]
  88. },
  89. "notification-url": "https://packagist.org/downloads/",
  90. "license": [
  91. "MIT"
  92. ],
  93. "authors": [
  94. {
  95. "name": "CakePHP Community",
  96. "homepage": "https://github.com/cakephp/collection/graphs/contributors"
  97. }
  98. ],
  99. "description": "Work easily with arrays and iterators by having a battery of utility traversal methods",
  100. "homepage": "https://cakephp.org",
  101. "keywords": [
  102. "arrays",
  103. "cakephp",
  104. "collections",
  105. "iterators"
  106. ]
  107. },
  108. {
  109. "name": "cakephp/core",
  110. "version": "3.7.7",
  111. "version_normalized": "3.7.7.0",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/cakephp/core.git",
  115. "reference": "f9d9823439e3c82fdb3f69d2c9210bab67e721af"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/cakephp/core/zipball/f9d9823439e3c82fdb3f69d2c9210bab67e721af",
  120. "reference": "f9d9823439e3c82fdb3f69d2c9210bab67e721af",
  121. "shasum": "",
  122. "mirrors": [
  123. {
  124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  125. "preferred": true
  126. }
  127. ]
  128. },
  129. "require": {
  130. "cakephp/utility": "^3.6.0",
  131. "php": ">=5.6.0"
  132. },
  133. "suggest": {
  134. "cakephp/cache": "To use Configure::store() and restore().",
  135. "cakephp/event": "To use PluginApplicationInterface or plugin applications."
  136. },
  137. "time": "2019-04-15T14:21:39+00:00",
  138. "type": "library",
  139. "installation-source": "dist",
  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. },
  166. {
  167. "name": "cakephp/database",
  168. "version": "3.7.7",
  169. "version_normalized": "3.7.7.0",
  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. "time": "2019-03-04T17:27:24+00:00",
  195. "type": "library",
  196. "installation-source": "dist",
  197. "autoload": {
  198. "psr-4": {
  199. "Cake\\Database\\": "."
  200. }
  201. },
  202. "notification-url": "https://packagist.org/downloads/",
  203. "license": [
  204. "MIT"
  205. ],
  206. "authors": [
  207. {
  208. "name": "CakePHP Community",
  209. "homepage": "https://github.com/cakephp/database/graphs/contributors"
  210. }
  211. ],
  212. "description": "Flexible and powerful Database abstraction library with a familiar PDO-like API",
  213. "homepage": "https://cakephp.org",
  214. "keywords": [
  215. "abstraction",
  216. "cakephp",
  217. "database",
  218. "database abstraction",
  219. "pdo"
  220. ]
  221. },
  222. {
  223. "name": "cakephp/datasource",
  224. "version": "3.7.7",
  225. "version_normalized": "3.7.7.0",
  226. "source": {
  227. "type": "git",
  228. "url": "https://github.com/cakephp/datasource.git",
  229. "reference": "08b5367426f4ee0388bd598fcf2bb994cd0f92c4"
  230. },
  231. "dist": {
  232. "type": "zip",
  233. "url": "https://api.github.com/repos/cakephp/datasource/zipball/08b5367426f4ee0388bd598fcf2bb994cd0f92c4",
  234. "reference": "08b5367426f4ee0388bd598fcf2bb994cd0f92c4",
  235. "shasum": "",
  236. "mirrors": [
  237. {
  238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  239. "preferred": true
  240. }
  241. ]
  242. },
  243. "require": {
  244. "cakephp/core": "^3.6.0",
  245. "php": ">=5.6.0"
  246. },
  247. "suggest": {
  248. "cakephp/cache": "If you decide to use Query caching.",
  249. "cakephp/collection": "If you decide to use ResultSetInterface.",
  250. "cakephp/utility": "If you decide to use EntityTrait."
  251. },
  252. "time": "2019-02-14T16:36:35+00:00",
  253. "type": "library",
  254. "installation-source": "dist",
  255. "autoload": {
  256. "psr-4": {
  257. "Cake\\Datasource\\": "."
  258. }
  259. },
  260. "notification-url": "https://packagist.org/downloads/",
  261. "license": [
  262. "MIT"
  263. ],
  264. "authors": [
  265. {
  266. "name": "CakePHP Community",
  267. "homepage": "https://github.com/cakephp/datasource/graphs/contributors"
  268. }
  269. ],
  270. "description": "Provides connection managing and traits for Entities and Queries that can be reused for different datastores",
  271. "homepage": "https://cakephp.org",
  272. "keywords": [
  273. "cakephp",
  274. "connection management",
  275. "datasource",
  276. "entity",
  277. "query"
  278. ]
  279. },
  280. {
  281. "name": "cakephp/log",
  282. "version": "3.7.7",
  283. "version_normalized": "3.7.7.0",
  284. "source": {
  285. "type": "git",
  286. "url": "https://github.com/cakephp/log.git",
  287. "reference": "f2132d585e848f5273a36ca1b62dfbd56c1557b9"
  288. },
  289. "dist": {
  290. "type": "zip",
  291. "url": "https://api.github.com/repos/cakephp/log/zipball/f2132d585e848f5273a36ca1b62dfbd56c1557b9",
  292. "reference": "f2132d585e848f5273a36ca1b62dfbd56c1557b9",
  293. "shasum": "",
  294. "mirrors": [
  295. {
  296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  297. "preferred": true
  298. }
  299. ]
  300. },
  301. "require": {
  302. "cakephp/core": "^3.6.0",
  303. "php": ">=5.6.0",
  304. "psr/log": "^1.0.0"
  305. },
  306. "time": "2019-02-05T13:29:41+00:00",
  307. "type": "library",
  308. "installation-source": "dist",
  309. "autoload": {
  310. "psr-4": {
  311. "Cake\\Log\\": "."
  312. }
  313. },
  314. "notification-url": "https://packagist.org/downloads/",
  315. "license": [
  316. "MIT"
  317. ],
  318. "authors": [
  319. {
  320. "name": "CakePHP Community",
  321. "homepage": "https://github.com/cakephp/log/graphs/contributors"
  322. }
  323. ],
  324. "description": "CakePHP logging library with support for multiple different streams",
  325. "homepage": "https://cakephp.org",
  326. "keywords": [
  327. "Streams",
  328. "cakephp",
  329. "log",
  330. "logging"
  331. ]
  332. },
  333. {
  334. "name": "cakephp/utility",
  335. "version": "3.7.7",
  336. "version_normalized": "3.7.7.0",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/cakephp/utility.git",
  340. "reference": "329654495c4cf966ac75832e502ec939542928fb"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/cakephp/utility/zipball/329654495c4cf966ac75832e502ec939542928fb",
  345. "reference": "329654495c4cf966ac75832e502ec939542928fb",
  346. "shasum": "",
  347. "mirrors": [
  348. {
  349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  350. "preferred": true
  351. }
  352. ]
  353. },
  354. "require": {
  355. "cakephp/core": "^3.6.0",
  356. "php": ">=5.6.0"
  357. },
  358. "suggest": {
  359. "ext-intl": "To use Text::transliterate() or Text::slug()",
  360. "lib-ICU": "To use Text::transliterate() or Text::slug()"
  361. },
  362. "time": "2019-03-14T14:41:29+00:00",
  363. "type": "library",
  364. "installation-source": "dist",
  365. "autoload": {
  366. "psr-4": {
  367. "Cake\\Utility\\": "."
  368. },
  369. "files": [
  370. "bootstrap.php"
  371. ]
  372. },
  373. "notification-url": "https://packagist.org/downloads/",
  374. "license": [
  375. "MIT"
  376. ],
  377. "authors": [
  378. {
  379. "name": "CakePHP Community",
  380. "homepage": "https://github.com/cakephp/utility/graphs/contributors"
  381. }
  382. ],
  383. "description": "CakePHP Utility classes such as Inflector, String, Hash, and Security",
  384. "homepage": "https://cakephp.org",
  385. "keywords": [
  386. "cakephp",
  387. "hash",
  388. "inflector",
  389. "security",
  390. "string",
  391. "utility"
  392. ]
  393. },
  394. {
  395. "name": "firebase/php-jwt",
  396. "version": "v5.2.0",
  397. "version_normalized": "5.2.0.0",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/firebase/php-jwt.git",
  401. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/feb0e820b8436873675fd3aca04f3728eb2185cb",
  406. "reference": "feb0e820b8436873675fd3aca04f3728eb2185cb",
  407. "shasum": "",
  408. "mirrors": [
  409. {
  410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  411. "preferred": true
  412. }
  413. ]
  414. },
  415. "require": {
  416. "php": ">=5.3.0"
  417. },
  418. "require-dev": {
  419. "phpunit/phpunit": ">=4.8 <=9"
  420. },
  421. "time": "2020-03-25T18:49:23+00:00",
  422. "type": "library",
  423. "installation-source": "dist",
  424. "autoload": {
  425. "psr-4": {
  426. "Firebase\\JWT\\": "src"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "BSD-3-Clause"
  432. ],
  433. "authors": [
  434. {
  435. "name": "Neuman Vong",
  436. "email": "neuman+pear@twilio.com",
  437. "role": "Developer"
  438. },
  439. {
  440. "name": "Anant Narayanan",
  441. "email": "anant@php.net",
  442. "role": "Developer"
  443. }
  444. ],
  445. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  446. "homepage": "https://github.com/firebase/php-jwt",
  447. "keywords": [
  448. "jwt",
  449. "php"
  450. ]
  451. },
  452. {
  453. "name": "guzzlehttp/guzzle",
  454. "version": "7.2.0",
  455. "version_normalized": "7.2.0.0",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/guzzle/guzzle.git",
  459. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  464. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  465. "shasum": "",
  466. "mirrors": [
  467. {
  468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  469. "preferred": true
  470. }
  471. ]
  472. },
  473. "require": {
  474. "ext-json": "*",
  475. "guzzlehttp/promises": "^1.4",
  476. "guzzlehttp/psr7": "^1.7",
  477. "php": "^7.2.5 || ^8.0",
  478. "psr/http-client": "^1.0"
  479. },
  480. "provide": {
  481. "psr/http-client-implementation": "1.0"
  482. },
  483. "require-dev": {
  484. "ext-curl": "*",
  485. "php-http/client-integration-tests": "^3.0",
  486. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  487. "psr/log": "^1.1"
  488. },
  489. "suggest": {
  490. "ext-curl": "Required for CURL handler support",
  491. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  492. "psr/log": "Required for using the Log middleware"
  493. },
  494. "time": "2020-10-10T11:47:56+00:00",
  495. "type": "library",
  496. "extra": {
  497. "branch-alias": {
  498. "dev-master": "7.1-dev"
  499. }
  500. },
  501. "installation-source": "dist",
  502. "autoload": {
  503. "psr-4": {
  504. "GuzzleHttp\\": "src/"
  505. },
  506. "files": [
  507. "src/functions_include.php"
  508. ]
  509. },
  510. "notification-url": "https://packagist.org/downloads/",
  511. "license": [
  512. "MIT"
  513. ],
  514. "authors": [
  515. {
  516. "name": "Michael Dowling",
  517. "email": "mtdowling@gmail.com",
  518. "homepage": "https://github.com/mtdowling"
  519. },
  520. {
  521. "name": "Márk Sági-Kazár",
  522. "email": "mark.sagikazar@gmail.com",
  523. "homepage": "https://sagikazarmark.hu"
  524. }
  525. ],
  526. "description": "Guzzle is a PHP HTTP client library",
  527. "homepage": "http://guzzlephp.org/",
  528. "keywords": [
  529. "client",
  530. "curl",
  531. "framework",
  532. "http",
  533. "http client",
  534. "psr-18",
  535. "psr-7",
  536. "rest",
  537. "web service"
  538. ],
  539. "funding": [
  540. {
  541. "url": "https://github.com/GrahamCampbell",
  542. "type": "github"
  543. },
  544. {
  545. "url": "https://github.com/Nyholm",
  546. "type": "github"
  547. },
  548. {
  549. "url": "https://github.com/alexeyshockov",
  550. "type": "github"
  551. },
  552. {
  553. "url": "https://github.com/gmponos",
  554. "type": "github"
  555. }
  556. ]
  557. },
  558. {
  559. "name": "guzzlehttp/promises",
  560. "version": "1.4.0",
  561. "version_normalized": "1.4.0.0",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/guzzle/promises.git",
  565. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  570. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  571. "shasum": "",
  572. "mirrors": [
  573. {
  574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  575. "preferred": true
  576. }
  577. ]
  578. },
  579. "require": {
  580. "php": ">=5.5"
  581. },
  582. "require-dev": {
  583. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  584. },
  585. "time": "2020-09-30T07:37:28+00:00",
  586. "type": "library",
  587. "extra": {
  588. "branch-alias": {
  589. "dev-master": "1.4-dev"
  590. }
  591. },
  592. "installation-source": "dist",
  593. "autoload": {
  594. "psr-4": {
  595. "GuzzleHttp\\Promise\\": "src/"
  596. },
  597. "files": [
  598. "src/functions_include.php"
  599. ]
  600. },
  601. "notification-url": "https://packagist.org/downloads/",
  602. "license": [
  603. "MIT"
  604. ],
  605. "authors": [
  606. {
  607. "name": "Michael Dowling",
  608. "email": "mtdowling@gmail.com",
  609. "homepage": "https://github.com/mtdowling"
  610. }
  611. ],
  612. "description": "Guzzle promises library",
  613. "keywords": [
  614. "promise"
  615. ]
  616. },
  617. {
  618. "name": "guzzlehttp/psr7",
  619. "version": "1.7.0",
  620. "version_normalized": "1.7.0.0",
  621. "source": {
  622. "type": "git",
  623. "url": "https://github.com/guzzle/psr7.git",
  624. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  625. },
  626. "dist": {
  627. "type": "zip",
  628. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  629. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  630. "shasum": "",
  631. "mirrors": [
  632. {
  633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  634. "preferred": true
  635. }
  636. ]
  637. },
  638. "require": {
  639. "php": ">=5.4.0",
  640. "psr/http-message": "~1.0",
  641. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  642. },
  643. "provide": {
  644. "psr/http-message-implementation": "1.0"
  645. },
  646. "require-dev": {
  647. "ext-zlib": "*",
  648. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  649. },
  650. "suggest": {
  651. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  652. },
  653. "time": "2020-09-30T07:37:11+00:00",
  654. "type": "library",
  655. "extra": {
  656. "branch-alias": {
  657. "dev-master": "1.7-dev"
  658. }
  659. },
  660. "installation-source": "dist",
  661. "autoload": {
  662. "psr-4": {
  663. "GuzzleHttp\\Psr7\\": "src/"
  664. },
  665. "files": [
  666. "src/functions_include.php"
  667. ]
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Michael Dowling",
  676. "email": "mtdowling@gmail.com",
  677. "homepage": "https://github.com/mtdowling"
  678. },
  679. {
  680. "name": "Tobias Schultze",
  681. "homepage": "https://github.com/Tobion"
  682. }
  683. ],
  684. "description": "PSR-7 message implementation that also provides common utility methods",
  685. "keywords": [
  686. "http",
  687. "message",
  688. "psr-7",
  689. "request",
  690. "response",
  691. "stream",
  692. "uri",
  693. "url"
  694. ]
  695. },
  696. {
  697. "name": "psr/http-client",
  698. "version": "1.0.1",
  699. "version_normalized": "1.0.1.0",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/php-fig/http-client.git",
  703. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  708. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  709. "shasum": "",
  710. "mirrors": [
  711. {
  712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  713. "preferred": true
  714. }
  715. ]
  716. },
  717. "require": {
  718. "php": "^7.0 || ^8.0",
  719. "psr/http-message": "^1.0"
  720. },
  721. "time": "2020-06-29T06:28:15+00:00",
  722. "type": "library",
  723. "extra": {
  724. "branch-alias": {
  725. "dev-master": "1.0.x-dev"
  726. }
  727. },
  728. "installation-source": "dist",
  729. "autoload": {
  730. "psr-4": {
  731. "Psr\\Http\\Client\\": "src/"
  732. }
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "MIT"
  737. ],
  738. "authors": [
  739. {
  740. "name": "PHP-FIG",
  741. "homepage": "http://www.php-fig.org/"
  742. }
  743. ],
  744. "description": "Common interface for HTTP clients",
  745. "homepage": "https://github.com/php-fig/http-client",
  746. "keywords": [
  747. "http",
  748. "http-client",
  749. "psr",
  750. "psr-18"
  751. ]
  752. },
  753. {
  754. "name": "psr/http-message",
  755. "version": "1.0.1",
  756. "version_normalized": "1.0.1.0",
  757. "source": {
  758. "type": "git",
  759. "url": "https://github.com/php-fig/http-message.git",
  760. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  761. },
  762. "dist": {
  763. "type": "zip",
  764. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  765. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  766. "shasum": "",
  767. "mirrors": [
  768. {
  769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  770. "preferred": true
  771. }
  772. ]
  773. },
  774. "require": {
  775. "php": ">=5.3.0"
  776. },
  777. "time": "2016-08-06T14:39:51+00:00",
  778. "type": "library",
  779. "extra": {
  780. "branch-alias": {
  781. "dev-master": "1.0.x-dev"
  782. }
  783. },
  784. "installation-source": "dist",
  785. "autoload": {
  786. "psr-4": {
  787. "Psr\\Http\\Message\\": "src/"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "MIT"
  793. ],
  794. "authors": [
  795. {
  796. "name": "PHP-FIG",
  797. "homepage": "http://www.php-fig.org/"
  798. }
  799. ],
  800. "description": "Common interface for HTTP messages",
  801. "homepage": "https://github.com/php-fig/http-message",
  802. "keywords": [
  803. "http",
  804. "http-message",
  805. "psr",
  806. "psr-7",
  807. "request",
  808. "response"
  809. ]
  810. },
  811. {
  812. "name": "psr/log",
  813. "version": "1.1.0",
  814. "version_normalized": "1.1.0.0",
  815. "source": {
  816. "type": "git",
  817. "url": "https://github.com/php-fig/log.git",
  818. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  819. },
  820. "dist": {
  821. "type": "zip",
  822. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  823. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  824. "shasum": "",
  825. "mirrors": [
  826. {
  827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  828. "preferred": true
  829. }
  830. ]
  831. },
  832. "require": {
  833. "php": ">=5.3.0"
  834. },
  835. "time": "2018-11-20T15:27:04+00:00",
  836. "type": "library",
  837. "extra": {
  838. "branch-alias": {
  839. "dev-master": "1.0.x-dev"
  840. }
  841. },
  842. "installation-source": "dist",
  843. "autoload": {
  844. "psr-4": {
  845. "Psr\\Log\\": "Psr/Log/"
  846. }
  847. },
  848. "notification-url": "https://packagist.org/downloads/",
  849. "license": [
  850. "MIT"
  851. ],
  852. "authors": [
  853. {
  854. "name": "PHP-FIG",
  855. "homepage": "http://www.php-fig.org/"
  856. }
  857. ],
  858. "description": "Common interface for logging libraries",
  859. "homepage": "https://github.com/php-fig/log",
  860. "keywords": [
  861. "log",
  862. "psr",
  863. "psr-3"
  864. ]
  865. },
  866. {
  867. "name": "psr/simple-cache",
  868. "version": "1.0.1",
  869. "version_normalized": "1.0.1.0",
  870. "source": {
  871. "type": "git",
  872. "url": "https://github.com/php-fig/simple-cache.git",
  873. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  874. },
  875. "dist": {
  876. "type": "zip",
  877. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  878. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  879. "shasum": "",
  880. "mirrors": [
  881. {
  882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  883. "preferred": true
  884. }
  885. ]
  886. },
  887. "require": {
  888. "php": ">=5.3.0"
  889. },
  890. "time": "2017-10-23T01:57:42+00:00",
  891. "type": "library",
  892. "extra": {
  893. "branch-alias": {
  894. "dev-master": "1.0.x-dev"
  895. }
  896. },
  897. "installation-source": "dist",
  898. "autoload": {
  899. "psr-4": {
  900. "Psr\\SimpleCache\\": "src/"
  901. }
  902. },
  903. "notification-url": "https://packagist.org/downloads/",
  904. "license": [
  905. "MIT"
  906. ],
  907. "authors": [
  908. {
  909. "name": "PHP-FIG",
  910. "homepage": "http://www.php-fig.org/"
  911. }
  912. ],
  913. "description": "Common interfaces for simple caching",
  914. "keywords": [
  915. "cache",
  916. "caching",
  917. "psr",
  918. "psr-16",
  919. "simple-cache"
  920. ]
  921. },
  922. {
  923. "name": "ralouphie/getallheaders",
  924. "version": "3.0.3",
  925. "version_normalized": "3.0.3.0",
  926. "source": {
  927. "type": "git",
  928. "url": "https://github.com/ralouphie/getallheaders.git",
  929. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  930. },
  931. "dist": {
  932. "type": "zip",
  933. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  934. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  935. "shasum": "",
  936. "mirrors": [
  937. {
  938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  939. "preferred": true
  940. }
  941. ]
  942. },
  943. "require": {
  944. "php": ">=5.6"
  945. },
  946. "require-dev": {
  947. "php-coveralls/php-coveralls": "^2.1",
  948. "phpunit/phpunit": "^5 || ^6.5"
  949. },
  950. "time": "2019-03-08T08:55:37+00:00",
  951. "type": "library",
  952. "installation-source": "dist",
  953. "autoload": {
  954. "files": [
  955. "src/getallheaders.php"
  956. ]
  957. },
  958. "notification-url": "https://packagist.org/downloads/",
  959. "license": [
  960. "MIT"
  961. ],
  962. "authors": [
  963. {
  964. "name": "Ralph Khattar",
  965. "email": "ralph.khattar@gmail.com"
  966. }
  967. ],
  968. "description": "A polyfill for getallheaders."
  969. },
  970. {
  971. "name": "roave/security-advisories",
  972. "version": "dev-master",
  973. "version_normalized": "9999999-dev",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/Roave/SecurityAdvisories.git",
  977. "reference": "676668eda60bb8a32bd2a4efcb12c96d6e1c4bc6"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/676668eda60bb8a32bd2a4efcb12c96d6e1c4bc6",
  982. "reference": "676668eda60bb8a32bd2a4efcb12c96d6e1c4bc6",
  983. "shasum": "",
  984. "mirrors": [
  985. {
  986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  987. "preferred": true
  988. }
  989. ]
  990. },
  991. "conflict": {
  992. "3f/pygmentize": "<1.2",
  993. "adodb/adodb-php": "<5.20.12",
  994. "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
  995. "amphp/artax": "<1.0.6|>=2,<2.0.6",
  996. "amphp/http": "<1.0.1",
  997. "amphp/http-client": ">=4,<4.4",
  998. "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6",
  999. "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99",
  1000. "aws/aws-sdk-php": ">=3,<3.2.1",
  1001. "bagisto/bagisto": "<0.1.5",
  1002. "barrelstrength/sprout-base-email": "<1.2.7",
  1003. "barrelstrength/sprout-forms": "<3.9",
  1004. "baserproject/basercms": ">=4,<=4.3.6|>=4.4,<4.4.1",
  1005. "bolt/bolt": "<3.7.1",
  1006. "brightlocal/phpwhois": "<=4.2.5",
  1007. "buddypress/buddypress": "<5.1.2",
  1008. "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
  1009. "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",
  1010. "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
  1011. "cartalyst/sentry": "<=2.1.6",
  1012. "centreon/centreon": "<18.10.8|>=19,<19.4.5",
  1013. "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
  1014. "codeigniter/framework": "<=3.0.6",
  1015. "composer/composer": "<=1-alpha.11",
  1016. "contao-components/mediaelement": ">=2.14.2,<2.21.1",
  1017. "contao/core": ">=2,<3.5.39",
  1018. "contao/core-bundle": ">=4,<4.4.52|>=4.5,<4.9.6|= 4.10.0",
  1019. "contao/listing-bundle": ">=4,<4.4.8",
  1020. "datadog/dd-trace": ">=0.30,<0.30.2",
  1021. "david-garcia/phpwhois": "<=4.3.1",
  1022. "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1",
  1023. "doctrine/annotations": ">=1,<1.2.7",
  1024. "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
  1025. "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1",
  1026. "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2",
  1027. "doctrine/doctrine-bundle": "<1.5.2",
  1028. "doctrine/doctrine-module": "<=0.7.1",
  1029. "doctrine/mongodb-odm": ">=1,<1.0.2",
  1030. "doctrine/mongodb-odm-bundle": ">=2,<3.0.1",
  1031. "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1",
  1032. "dolibarr/dolibarr": "<11.0.4",
  1033. "dompdf/dompdf": ">=0.6,<0.6.2",
  1034. "drupal/core": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8",
  1035. "drupal/drupal": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8",
  1036. "endroid/qr-code-bundle": "<3.4.2",
  1037. "enshrined/svg-sanitize": "<0.13.1",
  1038. "erusev/parsedown": "<1.7.2",
  1039. "ezsystems/demobundle": ">=5.4,<5.4.6.1",
  1040. "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
  1041. "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1",
  1042. "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1",
  1043. "ezsystems/ezplatform": ">=1.7,<1.7.9.1|>=1.13,<1.13.5.1|>=2.5,<2.5.4",
  1044. "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6",
  1045. "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
  1046. "ezsystems/ezplatform-kernel": ">=1,<1.0.2.1",
  1047. "ezsystems/ezplatform-user": ">=1,<1.0.1",
  1048. "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",
  1049. "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",
  1050. "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
  1051. "ezsystems/repository-forms": ">=2.3,<2.3.2.1",
  1052. "ezyang/htmlpurifier": "<4.1.1",
  1053. "firebase/php-jwt": "<2",
  1054. "fooman/tcpdf": "<6.2.22",
  1055. "fossar/tcpdf-parser": "<6.2.22",
  1056. "friendsofsymfony/oauth2-php": "<1.3",
  1057. "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
  1058. "friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
  1059. "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
  1060. "fuel/core": "<1.8.1",
  1061. "getgrav/grav": "<1.7-beta.8",
  1062. "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
  1063. "gree/jose": "<=2.2",
  1064. "gregwar/rst": "<1.0.3",
  1065. "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1",
  1066. "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",
  1067. "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",
  1068. "illuminate/database": ">=4,<4.0.99|>=4.1,<4.1.29|>=5.5,<=5.5.44|>=6,<6.18.34|>=7,<7.23.2",
  1069. "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",
  1070. "illuminate/view": ">=7,<7.1.2",
  1071. "ivankristianto/phpwhois": "<=4.3",
  1072. "james-heinrich/getid3": "<1.9.9",
  1073. "joomla/session": "<1.3.1",
  1074. "jsmitty12/phpwhois": "<5.1",
  1075. "kazist/phpwhois": "<=4.2.6",
  1076. "kitodo/presentation": "<3.1.2",
  1077. "kreait/firebase-php": ">=3.2,<3.8.1",
  1078. "la-haute-societe/tcpdf": "<6.2.22",
  1079. "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",
  1080. "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10",
  1081. "league/commonmark": "<0.18.3",
  1082. "librenms/librenms": "<1.53",
  1083. "livewire/livewire": ">2.2.4,<2.2.6",
  1084. "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3",
  1085. "magento/magento1ce": "<1.9.4.3",
  1086. "magento/magento1ee": ">=1,<1.14.4.3",
  1087. "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2",
  1088. "marcwillmann/turn": "<0.3.3",
  1089. "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",
  1090. "mittwald/typo3_forum": "<1.2.1",
  1091. "monolog/monolog": ">=1.8,<1.12",
  1092. "namshi/jose": "<2.2",
  1093. "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",
  1094. "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
  1095. "nystudio107/craft-seomatic": "<3.3",
  1096. "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
  1097. "october/backend": ">=1.0.319,<1.0.470",
  1098. "october/cms": "= 1.0.469|>=1.0.319,<1.0.469",
  1099. "october/october": ">=1.0.319,<1.0.466",
  1100. "october/rain": ">=1.0.319,<1.0.468",
  1101. "onelogin/php-saml": "<2.10.4",
  1102. "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
  1103. "openid/php-openid": "<2.3",
  1104. "openmage/magento-lts": "<19.4.8|>=20,<20.0.4",
  1105. "orchid/platform": ">=9,<9.4.4",
  1106. "oro/crm": ">=1.7,<1.7.4",
  1107. "oro/platform": ">=1.7,<1.7.4",
  1108. "padraic/humbug_get_contents": "<1.1.2",
  1109. "pagarme/pagarme-php": ">=0,<3",
  1110. "paragonie/random_compat": "<2",
  1111. "passbolt/passbolt_api": "<2.11",
  1112. "paypal/merchant-sdk-php": "<3.12",
  1113. "pear/archive_tar": "<1.4.11",
  1114. "personnummer/personnummer": "<3.0.2",
  1115. "phpfastcache/phpfastcache": ">=5,<5.0.13",
  1116. "phpmailer/phpmailer": "<6.1.6",
  1117. "phpmussel/phpmussel": ">=1,<1.6",
  1118. "phpmyadmin/phpmyadmin": "<4.9.6|>=5,<5.0.3",
  1119. "phpoffice/phpexcel": "<1.8.2",
  1120. "phpoffice/phpspreadsheet": "<1.8",
  1121. "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
  1122. "phpwhois/phpwhois": "<=4.2.5",
  1123. "phpxmlrpc/extras": "<0.6.1",
  1124. "pimcore/pimcore": "<6.3",
  1125. "pocketmine/pocketmine-mp": "<3.15.4",
  1126. "prestashop/autoupgrade": ">=4,<4.10.1",
  1127. "prestashop/contactform": ">1.0.1,<4.3",
  1128. "prestashop/gamification": "<2.3.2",
  1129. "prestashop/productcomments": ">=4,<4.2",
  1130. "prestashop/ps_facetedsearch": "<3.4.1",
  1131. "privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2",
  1132. "propel/propel": ">=2-alpha.1,<=2-alpha.7",
  1133. "propel/propel1": ">=1,<=1.7.1",
  1134. "pterodactyl/panel": "<0.7.19|>=1-rc.0,<=1-rc.6",
  1135. "pusher/pusher-php-server": "<2.2.1",
  1136. "rainlab/debugbar-plugin": "<3.1",
  1137. "robrichards/xmlseclibs": "<3.0.4",
  1138. "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",
  1139. "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9",
  1140. "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11",
  1141. "sensiolabs/connect": "<4.2.3",
  1142. "serluck/phpwhois": "<=4.2.6",
  1143. "shopware/core": "<=6.3.2",
  1144. "shopware/platform": "<=6.3.2",
  1145. "shopware/shopware": "<5.6.9",
  1146. "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1",
  1147. "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2",
  1148. "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4",
  1149. "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
  1150. "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
  1151. "silverstripe/framework": "<4.4.7|>=4.5,<4.5.4",
  1152. "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2|>=3.2,<3.2.4",
  1153. "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
  1154. "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",
  1155. "silverstripe/subsites": ">=2,<2.1.1",
  1156. "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
  1157. "silverstripe/userforms": "<3",
  1158. "simple-updates/phpwhois": "<=1",
  1159. "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4",
  1160. "simplesamlphp/simplesamlphp": "<1.18.6",
  1161. "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
  1162. "simplito/elliptic-php": "<1.0.6",
  1163. "slim/slim": "<2.6",
  1164. "smarty/smarty": "<3.1.33",
  1165. "socalnick/scn-social-auth": "<1.15.2",
  1166. "spoonity/tcpdf": "<6.2.22",
  1167. "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
  1168. "ssddanbrown/bookstack": "<0.29.2",
  1169. "stormpath/sdk": ">=0,<9.9.99",
  1170. "studio-42/elfinder": "<2.1.49",
  1171. "sulu/sulu": "<1.6.34|>=2,<2.0.10|>=2.1,<2.1.1",
  1172. "swiftmailer/swiftmailer": ">=4,<5.4.5",
  1173. "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
  1174. "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",
  1175. "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",
  1176. "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
  1177. "sylius/sylius": "<1.6.9|>=1.7,<1.7.9|>=1.8,<1.8.3",
  1178. "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99",
  1179. "symbiote/silverstripe-versionedfiles": "<=2.0.3",
  1180. "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
  1181. "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",
  1182. "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
  1183. "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",
  1184. "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",
  1185. "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",
  1186. "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5",
  1187. "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
  1188. "symfony/mime": ">=4.3,<4.3.8",
  1189. "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
  1190. "symfony/polyfill": ">=1,<1.10",
  1191. "symfony/polyfill-php55": ">=1,<1.10",
  1192. "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",
  1193. "symfony/routing": ">=2,<2.0.19",
  1194. "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",
  1195. "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",
  1196. "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",
  1197. "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",
  1198. "symfony/security-guard": ">=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
  1199. "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",
  1200. "symfony/serializer": ">=2,<2.0.11",
  1201. "symfony/symfony": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5",
  1202. "symfony/translation": ">=2,<2.0.17",
  1203. "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3",
  1204. "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
  1205. "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
  1206. "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7",
  1207. "t3g/svg-sanitizer": "<1.0.3",
  1208. "tecnickcom/tcpdf": "<6.2.22",
  1209. "thelia/backoffice-default-template": ">=2.1,<2.1.2",
  1210. "thelia/thelia": ">=2.1-beta.1,<2.1.3",
  1211. "theonedemon/phpwhois": "<=4.2.5",
  1212. "titon/framework": ">=0,<9.9.99",
  1213. "truckersmp/phpwhois": "<=4.3.1",
  1214. "twig/twig": "<1.38|>=2,<2.7",
  1215. "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10",
  1216. "typo3/cms-core": ">=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10",
  1217. "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",
  1218. "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4",
  1219. "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
  1220. "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",
  1221. "ua-parser/uap-php": "<3.8",
  1222. "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
  1223. "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4",
  1224. "wallabag/tcpdf": "<6.2.22",
  1225. "willdurand/js-translation-bundle": "<2.1.1",
  1226. "yii2mod/yii2-cms": "<1.9.2",
  1227. "yiisoft/yii": ">=1.1.14,<1.1.15",
  1228. "yiisoft/yii2": "<2.0.38",
  1229. "yiisoft/yii2-bootstrap": "<2.0.4",
  1230. "yiisoft/yii2-dev": "<2.0.15",
  1231. "yiisoft/yii2-elasticsearch": "<2.0.5",
  1232. "yiisoft/yii2-gii": "<2.0.4",
  1233. "yiisoft/yii2-jui": "<2.0.4",
  1234. "yiisoft/yii2-redis": "<2.0.8",
  1235. "yourls/yourls": "<1.7.4",
  1236. "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
  1237. "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
  1238. "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
  1239. "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5",
  1240. "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
  1241. "zendframework/zend-diactoros": ">=1,<1.8.4",
  1242. "zendframework/zend-feed": ">=1,<2.10.3",
  1243. "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
  1244. "zendframework/zend-http": ">=1,<2.8.1",
  1245. "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
  1246. "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
  1247. "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2",
  1248. "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
  1249. "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4",
  1250. "zendframework/zend-validator": ">=2.3,<2.3.6",
  1251. "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
  1252. "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
  1253. "zendframework/zendframework": "<2.5.1",
  1254. "zendframework/zendframework1": "<1.12.20",
  1255. "zendframework/zendopenid": ">=2,<2.0.2",
  1256. "zendframework/zendxml": ">=1,<1.0.1",
  1257. "zetacomponents/mail": "<1.8.2",
  1258. "zf-commons/zfc-user": "<1.2.2",
  1259. "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
  1260. "zfr/zfr-oauth2-server-module": "<0.1.2"
  1261. },
  1262. "time": "2020-12-02T06:02:50+00:00",
  1263. "type": "metapackage",
  1264. "notification-url": "https://packagist.org/downloads/",
  1265. "license": [
  1266. "MIT"
  1267. ],
  1268. "authors": [
  1269. {
  1270. "name": "Marco Pivetta",
  1271. "email": "ocramius@gmail.com",
  1272. "role": "maintainer"
  1273. },
  1274. {
  1275. "name": "Ilya Tribusean",
  1276. "email": "slash3b@gmail.com",
  1277. "role": "maintainer"
  1278. }
  1279. ],
  1280. "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
  1281. "funding": [
  1282. {
  1283. "url": "https://github.com/Ocramius",
  1284. "type": "github"
  1285. },
  1286. {
  1287. "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
  1288. "type": "tidelift"
  1289. }
  1290. ]
  1291. },
  1292. {
  1293. "name": "robmorgan/phinx",
  1294. "version": "0.10.7",
  1295. "version_normalized": "0.10.7.0",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/cakephp/phinx.git",
  1299. "reference": "ba2dae98bb69d39531311e8fd72dd51e8e06ff32"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/cakephp/phinx/zipball/ba2dae98bb69d39531311e8fd72dd51e8e06ff32",
  1304. "reference": "ba2dae98bb69d39531311e8fd72dd51e8e06ff32",
  1305. "shasum": "",
  1306. "mirrors": [
  1307. {
  1308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1309. "preferred": true
  1310. }
  1311. ]
  1312. },
  1313. "require": {
  1314. "cakephp/collection": "^3.6",
  1315. "cakephp/database": "^3.6",
  1316. "php": ">=5.6",
  1317. "symfony/config": "^2.8|^3.0|^4.0",
  1318. "symfony/console": "^2.8|^3.0|^4.0",
  1319. "symfony/yaml": "^2.8|^3.0|^4.0"
  1320. },
  1321. "require-dev": {
  1322. "cakephp/cakephp-codesniffer": "^3.0",
  1323. "phpunit/phpunit": ">=5.7,<7.0",
  1324. "sebastian/comparator": ">=1.2.3"
  1325. },
  1326. "time": "2019-04-25T09:12:16+00:00",
  1327. "bin": [
  1328. "bin/phinx"
  1329. ],
  1330. "type": "library",
  1331. "installation-source": "dist",
  1332. "autoload": {
  1333. "psr-4": {
  1334. "Phinx\\": "src/Phinx/"
  1335. }
  1336. },
  1337. "notification-url": "https://packagist.org/downloads/",
  1338. "license": [
  1339. "MIT"
  1340. ],
  1341. "authors": [
  1342. {
  1343. "name": "Woody Gilk",
  1344. "email": "woody.gilk@gmail.com",
  1345. "homepage": "http://shadowhand.me",
  1346. "role": "Developer"
  1347. },
  1348. {
  1349. "name": "Rob Morgan",
  1350. "email": "robbym@gmail.com",
  1351. "homepage": "https://robmorgan.id.au",
  1352. "role": "Lead Developer"
  1353. },
  1354. {
  1355. "name": "Richard Quadling",
  1356. "email": "rquadling@gmail.com",
  1357. "role": "Developer"
  1358. },
  1359. {
  1360. "name": "CakePHP Community",
  1361. "homepage": "https://github.com/cakephp/phinx/graphs/contributors"
  1362. }
  1363. ],
  1364. "description": "Phinx makes it ridiculously easy to manage the database migrations for your PHP app.",
  1365. "homepage": "https://phinx.org",
  1366. "keywords": [
  1367. "database",
  1368. "database migrations",
  1369. "db",
  1370. "migrations",
  1371. "phinx"
  1372. ]
  1373. },
  1374. {
  1375. "name": "symfony/config",
  1376. "version": "v4.2.8",
  1377. "version_normalized": "4.2.8.0",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/symfony/config.git",
  1381. "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/symfony/config/zipball/0e745ead307d5dcd4e163e94a47ec04b1428943f",
  1386. "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f",
  1387. "shasum": "",
  1388. "mirrors": [
  1389. {
  1390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1391. "preferred": true
  1392. }
  1393. ]
  1394. },
  1395. "require": {
  1396. "php": "^7.1.3",
  1397. "symfony/filesystem": "~3.4|~4.0",
  1398. "symfony/polyfill-ctype": "~1.8"
  1399. },
  1400. "conflict": {
  1401. "symfony/finder": "<3.4"
  1402. },
  1403. "require-dev": {
  1404. "symfony/dependency-injection": "~3.4|~4.0",
  1405. "symfony/event-dispatcher": "~3.4|~4.0",
  1406. "symfony/finder": "~3.4|~4.0",
  1407. "symfony/yaml": "~3.4|~4.0"
  1408. },
  1409. "suggest": {
  1410. "symfony/yaml": "To use the yaml reference dumper"
  1411. },
  1412. "time": "2019-04-01T14:03:25+00:00",
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-master": "4.2-dev"
  1417. }
  1418. },
  1419. "installation-source": "dist",
  1420. "autoload": {
  1421. "psr-4": {
  1422. "Symfony\\Component\\Config\\": ""
  1423. },
  1424. "exclude-from-classmap": [
  1425. "/Tests/"
  1426. ]
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "MIT"
  1431. ],
  1432. "authors": [
  1433. {
  1434. "name": "Fabien Potencier",
  1435. "email": "fabien@symfony.com"
  1436. },
  1437. {
  1438. "name": "Symfony Community",
  1439. "homepage": "https://symfony.com/contributors"
  1440. }
  1441. ],
  1442. "description": "Symfony Config Component",
  1443. "homepage": "https://symfony.com"
  1444. },
  1445. {
  1446. "name": "symfony/console",
  1447. "version": "v4.2.8",
  1448. "version_normalized": "4.2.8.0",
  1449. "source": {
  1450. "type": "git",
  1451. "url": "https://github.com/symfony/console.git",
  1452. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81"
  1453. },
  1454. "dist": {
  1455. "type": "zip",
  1456. "url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  1457. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  1458. "shasum": "",
  1459. "mirrors": [
  1460. {
  1461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1462. "preferred": true
  1463. }
  1464. ]
  1465. },
  1466. "require": {
  1467. "php": "^7.1.3",
  1468. "symfony/contracts": "^1.0",
  1469. "symfony/polyfill-mbstring": "~1.0"
  1470. },
  1471. "conflict": {
  1472. "symfony/dependency-injection": "<3.4",
  1473. "symfony/process": "<3.3"
  1474. },
  1475. "provide": {
  1476. "psr/log-implementation": "1.0"
  1477. },
  1478. "require-dev": {
  1479. "psr/log": "~1.0",
  1480. "symfony/config": "~3.4|~4.0",
  1481. "symfony/dependency-injection": "~3.4|~4.0",
  1482. "symfony/event-dispatcher": "~3.4|~4.0",
  1483. "symfony/lock": "~3.4|~4.0",
  1484. "symfony/process": "~3.4|~4.0"
  1485. },
  1486. "suggest": {
  1487. "psr/log": "For using the console logger",
  1488. "symfony/event-dispatcher": "",
  1489. "symfony/lock": "",
  1490. "symfony/process": ""
  1491. },
  1492. "time": "2019-04-08T14:23:48+00:00",
  1493. "type": "library",
  1494. "extra": {
  1495. "branch-alias": {
  1496. "dev-master": "4.2-dev"
  1497. }
  1498. },
  1499. "installation-source": "dist",
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Symfony\\Component\\Console\\": ""
  1503. },
  1504. "exclude-from-classmap": [
  1505. "/Tests/"
  1506. ]
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Fabien Potencier",
  1515. "email": "fabien@symfony.com"
  1516. },
  1517. {
  1518. "name": "Symfony Community",
  1519. "homepage": "https://symfony.com/contributors"
  1520. }
  1521. ],
  1522. "description": "Symfony Console Component",
  1523. "homepage": "https://symfony.com"
  1524. },
  1525. {
  1526. "name": "symfony/contracts",
  1527. "version": "v1.1.0",
  1528. "version_normalized": "1.1.0.0",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/symfony/contracts.git",
  1532. "reference": "d3636025e8253c6144358ec0a62773cae588395b"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/symfony/contracts/zipball/d3636025e8253c6144358ec0a62773cae588395b",
  1537. "reference": "d3636025e8253c6144358ec0a62773cae588395b",
  1538. "shasum": "",
  1539. "mirrors": [
  1540. {
  1541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1542. "preferred": true
  1543. }
  1544. ]
  1545. },
  1546. "require": {
  1547. "php": "^7.1.3"
  1548. },
  1549. "require-dev": {
  1550. "psr/cache": "^1.0",
  1551. "psr/container": "^1.0",
  1552. "symfony/polyfill-intl-idn": "^1.10"
  1553. },
  1554. "suggest": {
  1555. "psr/cache": "When using the Cache contracts",
  1556. "psr/container": "When using the Service contracts",
  1557. "symfony/cache-contracts-implementation": "",
  1558. "symfony/event-dispatcher-implementation": "",
  1559. "symfony/http-client-contracts-implementation": "",
  1560. "symfony/service-contracts-implementation": "",
  1561. "symfony/translation-contracts-implementation": ""
  1562. },
  1563. "time": "2019-04-27T14:29:50+00:00",
  1564. "type": "library",
  1565. "extra": {
  1566. "branch-alias": {
  1567. "dev-master": "1.1-dev"
  1568. }
  1569. },
  1570. "installation-source": "dist",
  1571. "autoload": {
  1572. "psr-4": {
  1573. "Symfony\\Contracts\\": ""
  1574. },
  1575. "exclude-from-classmap": [
  1576. "**/Tests/"
  1577. ]
  1578. },
  1579. "notification-url": "https://packagist.org/downloads/",
  1580. "license": [
  1581. "MIT"
  1582. ],
  1583. "authors": [
  1584. {
  1585. "name": "Nicolas Grekas",
  1586. "email": "p@tchwork.com"
  1587. },
  1588. {
  1589. "name": "Symfony Community",
  1590. "homepage": "https://symfony.com/contributors"
  1591. }
  1592. ],
  1593. "description": "A set of abstractions extracted out of the Symfony components",
  1594. "homepage": "https://symfony.com",
  1595. "keywords": [
  1596. "abstractions",
  1597. "contracts",
  1598. "decoupling",
  1599. "interfaces",
  1600. "interoperability",
  1601. "standards"
  1602. ]
  1603. },
  1604. {
  1605. "name": "symfony/filesystem",
  1606. "version": "v4.2.8",
  1607. "version_normalized": "4.2.8.0",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/symfony/filesystem.git",
  1611. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/symfony/filesystem/zipball/e16b9e471703b2c60b95f14d31c1239f68f11601",
  1616. "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601",
  1617. "shasum": "",
  1618. "mirrors": [
  1619. {
  1620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1621. "preferred": true
  1622. }
  1623. ]
  1624. },
  1625. "require": {
  1626. "php": "^7.1.3",
  1627. "symfony/polyfill-ctype": "~1.8"
  1628. },
  1629. "time": "2019-02-07T11:40:08+00:00",
  1630. "type": "library",
  1631. "extra": {
  1632. "branch-alias": {
  1633. "dev-master": "4.2-dev"
  1634. }
  1635. },
  1636. "installation-source": "dist",
  1637. "autoload": {
  1638. "psr-4": {
  1639. "Symfony\\Component\\Filesystem\\": ""
  1640. },
  1641. "exclude-from-classmap": [
  1642. "/Tests/"
  1643. ]
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Fabien Potencier",
  1652. "email": "fabien@symfony.com"
  1653. },
  1654. {
  1655. "name": "Symfony Community",
  1656. "homepage": "https://symfony.com/contributors"
  1657. }
  1658. ],
  1659. "description": "Symfony Filesystem Component",
  1660. "homepage": "https://symfony.com"
  1661. },
  1662. {
  1663. "name": "symfony/polyfill-ctype",
  1664. "version": "v1.11.0",
  1665. "version_normalized": "1.11.0.0",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/symfony/polyfill-ctype.git",
  1669. "reference": "82ebae02209c21113908c229e9883c419720738a"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  1674. "reference": "82ebae02209c21113908c229e9883c419720738a",
  1675. "shasum": "",
  1676. "mirrors": [
  1677. {
  1678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1679. "preferred": true
  1680. }
  1681. ]
  1682. },
  1683. "require": {
  1684. "php": ">=5.3.3"
  1685. },
  1686. "suggest": {
  1687. "ext-ctype": "For best performance"
  1688. },
  1689. "time": "2019-02-06T07:57:58+00:00",
  1690. "type": "library",
  1691. "extra": {
  1692. "branch-alias": {
  1693. "dev-master": "1.11-dev"
  1694. }
  1695. },
  1696. "installation-source": "dist",
  1697. "autoload": {
  1698. "psr-4": {
  1699. "Symfony\\Polyfill\\Ctype\\": ""
  1700. },
  1701. "files": [
  1702. "bootstrap.php"
  1703. ]
  1704. },
  1705. "notification-url": "https://packagist.org/downloads/",
  1706. "license": [
  1707. "MIT"
  1708. ],
  1709. "authors": [
  1710. {
  1711. "name": "Symfony Community",
  1712. "homepage": "https://symfony.com/contributors"
  1713. },
  1714. {
  1715. "name": "Gert de Pagter",
  1716. "email": "BackEndTea@gmail.com"
  1717. }
  1718. ],
  1719. "description": "Symfony polyfill for ctype functions",
  1720. "homepage": "https://symfony.com",
  1721. "keywords": [
  1722. "compatibility",
  1723. "ctype",
  1724. "polyfill",
  1725. "portable"
  1726. ]
  1727. },
  1728. {
  1729. "name": "symfony/polyfill-mbstring",
  1730. "version": "v1.11.0",
  1731. "version_normalized": "1.11.0.0",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1735. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  1740. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  1741. "shasum": "",
  1742. "mirrors": [
  1743. {
  1744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1745. "preferred": true
  1746. }
  1747. ]
  1748. },
  1749. "require": {
  1750. "php": ">=5.3.3"
  1751. },
  1752. "suggest": {
  1753. "ext-mbstring": "For best performance"
  1754. },
  1755. "time": "2019-02-06T07:57:58+00:00",
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-master": "1.11-dev"
  1760. }
  1761. },
  1762. "installation-source": "dist",
  1763. "autoload": {
  1764. "psr-4": {
  1765. "Symfony\\Polyfill\\Mbstring\\": ""
  1766. },
  1767. "files": [
  1768. "bootstrap.php"
  1769. ]
  1770. },
  1771. "notification-url": "https://packagist.org/downloads/",
  1772. "license": [
  1773. "MIT"
  1774. ],
  1775. "authors": [
  1776. {
  1777. "name": "Nicolas Grekas",
  1778. "email": "p@tchwork.com"
  1779. },
  1780. {
  1781. "name": "Symfony Community",
  1782. "homepage": "https://symfony.com/contributors"
  1783. }
  1784. ],
  1785. "description": "Symfony polyfill for the Mbstring extension",
  1786. "homepage": "https://symfony.com",
  1787. "keywords": [
  1788. "compatibility",
  1789. "mbstring",
  1790. "polyfill",
  1791. "portable",
  1792. "shim"
  1793. ]
  1794. },
  1795. {
  1796. "name": "symfony/yaml",
  1797. "version": "v4.2.8",
  1798. "version_normalized": "4.2.8.0",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/symfony/yaml.git",
  1802. "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/symfony/yaml/zipball/6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
  1807. "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
  1808. "shasum": "",
  1809. "mirrors": [
  1810. {
  1811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1812. "preferred": true
  1813. }
  1814. ]
  1815. },
  1816. "require": {
  1817. "php": "^7.1.3",
  1818. "symfony/polyfill-ctype": "~1.8"
  1819. },
  1820. "conflict": {
  1821. "symfony/console": "<3.4"
  1822. },
  1823. "require-dev": {
  1824. "symfony/console": "~3.4|~4.0"
  1825. },
  1826. "suggest": {
  1827. "symfony/console": "For validating YAML files using the lint command"
  1828. },
  1829. "time": "2019-03-30T15:58:42+00:00",
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "4.2-dev"
  1834. }
  1835. },
  1836. "installation-source": "dist",
  1837. "autoload": {
  1838. "psr-4": {
  1839. "Symfony\\Component\\Yaml\\": ""
  1840. },
  1841. "exclude-from-classmap": [
  1842. "/Tests/"
  1843. ]
  1844. },
  1845. "notification-url": "https://packagist.org/downloads/",
  1846. "license": [
  1847. "MIT"
  1848. ],
  1849. "authors": [
  1850. {
  1851. "name": "Fabien Potencier",
  1852. "email": "fabien@symfony.com"
  1853. },
  1854. {
  1855. "name": "Symfony Community",
  1856. "homepage": "https://symfony.com/contributors"
  1857. }
  1858. ],
  1859. "description": "Symfony Yaml Component",
  1860. "homepage": "https://symfony.com"
  1861. },
  1862. {
  1863. "name": "topthink/framework",
  1864. "version": "v5.1.37",
  1865. "version_normalized": "5.1.37.0",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/top-think/framework.git",
  1869. "reference": "c434854cbb5e680ecaf4c7191ddb7e672059d286"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/top-think/framework/zipball/c434854cbb5e680ecaf4c7191ddb7e672059d286",
  1874. "reference": "c434854cbb5e680ecaf4c7191ddb7e672059d286",
  1875. "shasum": "",
  1876. "mirrors": [
  1877. {
  1878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1879. "preferred": true
  1880. }
  1881. ]
  1882. },
  1883. "require": {
  1884. "php": ">=5.6.0",
  1885. "topthink/think-installer": "2.*"
  1886. },
  1887. "require-dev": {
  1888. "johnkary/phpunit-speedtrap": "^1.0",
  1889. "mikey179/vfsstream": "~1.6",
  1890. "phpdocumentor/reflection-docblock": "^2.0",
  1891. "phploc/phploc": "2.*",
  1892. "phpunit/phpunit": "^5.0|^6.0",
  1893. "sebastian/phpcpd": "2.*",
  1894. "squizlabs/php_codesniffer": "2.*"
  1895. },
  1896. "time": "2019-05-24T03:04:09+00:00",
  1897. "type": "think-framework",
  1898. "installation-source": "dist",
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "Apache-2.0"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "liu21st",
  1906. "email": "liu21st@gmail.com"
  1907. },
  1908. {
  1909. "name": "yunwuxin",
  1910. "email": "448901948@qq.com"
  1911. }
  1912. ],
  1913. "description": "the new thinkphp framework",
  1914. "homepage": "http://thinkphp.cn/",
  1915. "keywords": [
  1916. "framework",
  1917. "orm",
  1918. "thinkphp"
  1919. ]
  1920. },
  1921. {
  1922. "name": "topthink/think-installer",
  1923. "version": "v2.0.0",
  1924. "version_normalized": "2.0.0.0",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/top-think/think-installer.git",
  1928. "reference": "f5400a12c60e513911aef41fe443fa6920952675"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/top-think/think-installer/zipball/f5400a12c60e513911aef41fe443fa6920952675",
  1933. "reference": "f5400a12c60e513911aef41fe443fa6920952675",
  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. "composer-plugin-api": "^1.0"
  1944. },
  1945. "require-dev": {
  1946. "composer/composer": "1.0.*@dev"
  1947. },
  1948. "time": "2018-05-11T06:45:42+00:00",
  1949. "type": "composer-plugin",
  1950. "extra": {
  1951. "class": "think\\composer\\Plugin"
  1952. },
  1953. "installation-source": "dist",
  1954. "autoload": {
  1955. "psr-4": {
  1956. "think\\composer\\": "src"
  1957. }
  1958. },
  1959. "notification-url": "https://packagist.org/downloads/",
  1960. "license": [
  1961. "Apache-2.0"
  1962. ],
  1963. "authors": [
  1964. {
  1965. "name": "yunwuxin",
  1966. "email": "448901948@qq.com"
  1967. }
  1968. ]
  1969. }
  1970. ]