installed.json 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. [
  2. {
  3. "name": "antoligy/dom-string-iterators",
  4. "version": "v1.0.1",
  5. "version_normalized": "1.0.1.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/antoligy/dom-string-iterators.git",
  9. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/antoligy/dom-string-iterators/zipball/fae88f66e1970d68c5585fc42db44f1217bf74e6",
  14. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "php": ">=5.3.0"
  19. },
  20. "time": "2018-02-03T16:01:11+00:00",
  21. "type": "library",
  22. "installation-source": "dist",
  23. "autoload": {
  24. "psr-4": {
  25. "": "src/"
  26. }
  27. },
  28. "notification-url": "https://packagist.org/downloads/",
  29. "license": [
  30. "CC0-1.0"
  31. ],
  32. "authors": [
  33. {
  34. "name": "Alex Wilson",
  35. "email": "a@ax.gy"
  36. },
  37. {
  38. "name": "Kornel Lesinski",
  39. "email": "pornel@pornel.net"
  40. },
  41. {
  42. "name": "Patrick Galbraith",
  43. "email": "patrick.j.galbraith@gmail.com"
  44. }
  45. ],
  46. "description": "Composer package for DOMWordsIterator and DOMLettersIterator"
  47. },
  48. {
  49. "name": "composer/ca-bundle",
  50. "version": "1.1.1",
  51. "version_normalized": "1.1.1.0",
  52. "source": {
  53. "type": "git",
  54. "url": "https://github.com/composer/ca-bundle.git",
  55. "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169"
  56. },
  57. "dist": {
  58. "type": "zip",
  59. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d2c0a83b7533d6912e8d516756ebd34f893e9169",
  60. "reference": "d2c0a83b7533d6912e8d516756ebd34f893e9169",
  61. "shasum": ""
  62. },
  63. "require": {
  64. "ext-openssl": "*",
  65. "ext-pcre": "*",
  66. "php": "^5.3.2 || ^7.0"
  67. },
  68. "require-dev": {
  69. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  70. "psr/log": "^1.0",
  71. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  72. },
  73. "time": "2018-03-29T19:57:20+00:00",
  74. "type": "library",
  75. "extra": {
  76. "branch-alias": {
  77. "dev-master": "1.x-dev"
  78. }
  79. },
  80. "installation-source": "dist",
  81. "autoload": {
  82. "psr-4": {
  83. "Composer\\CaBundle\\": "src"
  84. }
  85. },
  86. "notification-url": "https://packagist.org/downloads/",
  87. "license": [
  88. "MIT"
  89. ],
  90. "authors": [
  91. {
  92. "name": "Jordi Boggiano",
  93. "email": "j.boggiano@seld.be",
  94. "homepage": "http://seld.be"
  95. }
  96. ],
  97. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  98. "keywords": [
  99. "cabundle",
  100. "cacert",
  101. "certificate",
  102. "ssl",
  103. "tls"
  104. ]
  105. },
  106. {
  107. "name": "doctrine/cache",
  108. "version": "v1.6.2",
  109. "version_normalized": "1.6.2.0",
  110. "source": {
  111. "type": "git",
  112. "url": "https://github.com/doctrine/cache.git",
  113. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  114. },
  115. "dist": {
  116. "type": "zip",
  117. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  118. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  119. "shasum": ""
  120. },
  121. "require": {
  122. "php": "~5.5|~7.0"
  123. },
  124. "conflict": {
  125. "doctrine/common": ">2.2,<2.4"
  126. },
  127. "require-dev": {
  128. "phpunit/phpunit": "~4.8|~5.0",
  129. "predis/predis": "~1.0",
  130. "satooshi/php-coveralls": "~0.6"
  131. },
  132. "time": "2017-07-22T12:49:21+00:00",
  133. "type": "library",
  134. "extra": {
  135. "branch-alias": {
  136. "dev-master": "1.6.x-dev"
  137. }
  138. },
  139. "installation-source": "dist",
  140. "autoload": {
  141. "psr-4": {
  142. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  143. }
  144. },
  145. "notification-url": "https://packagist.org/downloads/",
  146. "license": [
  147. "MIT"
  148. ],
  149. "authors": [
  150. {
  151. "name": "Roman Borschel",
  152. "email": "roman@code-factory.org"
  153. },
  154. {
  155. "name": "Benjamin Eberlei",
  156. "email": "kontakt@beberlei.de"
  157. },
  158. {
  159. "name": "Guilherme Blanco",
  160. "email": "guilhermeblanco@gmail.com"
  161. },
  162. {
  163. "name": "Jonathan Wage",
  164. "email": "jonwage@gmail.com"
  165. },
  166. {
  167. "name": "Johannes Schmitt",
  168. "email": "schmittjoh@gmail.com"
  169. }
  170. ],
  171. "description": "Caching library offering an object-oriented API for many cache backends",
  172. "homepage": "http://www.doctrine-project.org",
  173. "keywords": [
  174. "cache",
  175. "caching"
  176. ]
  177. },
  178. {
  179. "name": "doctrine/collections",
  180. "version": "v1.3.0",
  181. "version_normalized": "1.3.0.0",
  182. "source": {
  183. "type": "git",
  184. "url": "https://github.com/doctrine/collections.git",
  185. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  190. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "php": ">=5.3.2"
  195. },
  196. "require-dev": {
  197. "phpunit/phpunit": "~4.0"
  198. },
  199. "time": "2015-04-14T22:21:58+00:00",
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-master": "1.2.x-dev"
  204. }
  205. },
  206. "installation-source": "dist",
  207. "autoload": {
  208. "psr-0": {
  209. "Doctrine\\Common\\Collections\\": "lib/"
  210. }
  211. },
  212. "notification-url": "https://packagist.org/downloads/",
  213. "license": [
  214. "MIT"
  215. ],
  216. "authors": [
  217. {
  218. "name": "Roman Borschel",
  219. "email": "roman@code-factory.org"
  220. },
  221. {
  222. "name": "Benjamin Eberlei",
  223. "email": "kontakt@beberlei.de"
  224. },
  225. {
  226. "name": "Guilherme Blanco",
  227. "email": "guilhermeblanco@gmail.com"
  228. },
  229. {
  230. "name": "Jonathan Wage",
  231. "email": "jonwage@gmail.com"
  232. },
  233. {
  234. "name": "Johannes Schmitt",
  235. "email": "schmittjoh@gmail.com"
  236. }
  237. ],
  238. "description": "Collections Abstraction library",
  239. "homepage": "http://www.doctrine-project.org",
  240. "keywords": [
  241. "array",
  242. "collections",
  243. "iterator"
  244. ]
  245. },
  246. {
  247. "name": "donatj/phpuseragentparser",
  248. "version": "v0.9.0",
  249. "version_normalized": "0.9.0.0",
  250. "source": {
  251. "type": "git",
  252. "url": "https://github.com/donatj/PhpUserAgent.git",
  253. "reference": "ea79de6a18e52285e62cd75cf1cebe276ecaf503"
  254. },
  255. "dist": {
  256. "type": "zip",
  257. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/ea79de6a18e52285e62cd75cf1cebe276ecaf503",
  258. "reference": "ea79de6a18e52285e62cd75cf1cebe276ecaf503",
  259. "shasum": ""
  260. },
  261. "require": {
  262. "php": ">=5.3.0"
  263. },
  264. "require-dev": {
  265. "camspiers/json-pretty": "0.1.*",
  266. "donatj/drop": "*",
  267. "phpunit/phpunit": "~4.8"
  268. },
  269. "time": "2017-10-23T16:52:52+00:00",
  270. "type": "library",
  271. "installation-source": "dist",
  272. "autoload": {
  273. "files": [
  274. "Source/UserAgentParser.php"
  275. ]
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Jesse G. Donat",
  284. "email": "donatj@gmail.com",
  285. "homepage": "http://donatstudios.com",
  286. "role": "Developer"
  287. }
  288. ],
  289. "description": "Simple, streamlined PHP user-agent parser",
  290. "homepage": "http://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  291. "keywords": [
  292. "browser",
  293. "browser detection",
  294. "parser",
  295. "user agent",
  296. "useragent"
  297. ]
  298. },
  299. {
  300. "name": "erusev/parsedown",
  301. "version": "1.6.4",
  302. "version_normalized": "1.6.4.0",
  303. "source": {
  304. "type": "git",
  305. "url": "https://github.com/erusev/parsedown.git",
  306. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548"
  307. },
  308. "dist": {
  309. "type": "zip",
  310. "url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548",
  311. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548",
  312. "shasum": ""
  313. },
  314. "require": {
  315. "php": ">=5.3.0"
  316. },
  317. "require-dev": {
  318. "phpunit/phpunit": "^4.8.35"
  319. },
  320. "time": "2017-11-14T20:44:03+00:00",
  321. "type": "library",
  322. "installation-source": "dist",
  323. "autoload": {
  324. "psr-0": {
  325. "Parsedown": ""
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Emanuil Rusev",
  335. "email": "hello@erusev.com",
  336. "homepage": "http://erusev.com"
  337. }
  338. ],
  339. "description": "Parser for Markdown.",
  340. "homepage": "http://parsedown.org",
  341. "keywords": [
  342. "markdown",
  343. "parser"
  344. ]
  345. },
  346. {
  347. "name": "erusev/parsedown-extra",
  348. "version": "0.7.1",
  349. "version_normalized": "0.7.1.0",
  350. "source": {
  351. "type": "git",
  352. "url": "https://github.com/erusev/parsedown-extra.git",
  353. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  354. },
  355. "dist": {
  356. "type": "zip",
  357. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  358. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  359. "shasum": ""
  360. },
  361. "require": {
  362. "erusev/parsedown": "~1.4"
  363. },
  364. "time": "2015-11-01T10:19:22+00:00",
  365. "type": "library",
  366. "installation-source": "dist",
  367. "autoload": {
  368. "psr-0": {
  369. "ParsedownExtra": ""
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Emanuil Rusev",
  379. "email": "hello@erusev.com",
  380. "homepage": "http://erusev.com"
  381. }
  382. ],
  383. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  384. "homepage": "https://github.com/erusev/parsedown-extra",
  385. "keywords": [
  386. "markdown",
  387. "markdown extra",
  388. "parsedown",
  389. "parser"
  390. ]
  391. },
  392. {
  393. "name": "filp/whoops",
  394. "version": "2.2.0",
  395. "version_normalized": "2.2.0.0",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/filp/whoops.git",
  399. "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/filp/whoops/zipball/181c4502d8f34db7aed7bfe88d4f87875b8e947a",
  404. "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a",
  405. "shasum": ""
  406. },
  407. "require": {
  408. "php": "^5.5.9 || ^7.0",
  409. "psr/log": "^1.0.1"
  410. },
  411. "require-dev": {
  412. "mockery/mockery": "^0.9 || ^1.0",
  413. "phpunit/phpunit": "^4.8.35 || ^5.7",
  414. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  415. },
  416. "suggest": {
  417. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  418. "whoops/soap": "Formats errors as SOAP responses"
  419. },
  420. "time": "2018-03-03T17:56:25+00:00",
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "2.1-dev"
  425. }
  426. },
  427. "installation-source": "dist",
  428. "autoload": {
  429. "psr-4": {
  430. "Whoops\\": "src/Whoops/"
  431. }
  432. },
  433. "notification-url": "https://packagist.org/downloads/",
  434. "license": [
  435. "MIT"
  436. ],
  437. "authors": [
  438. {
  439. "name": "Filipe Dobreira",
  440. "homepage": "https://github.com/filp",
  441. "role": "Developer"
  442. }
  443. ],
  444. "description": "php error handling for cool kids",
  445. "homepage": "https://filp.github.io/whoops/",
  446. "keywords": [
  447. "error",
  448. "exception",
  449. "handling",
  450. "library",
  451. "throwable",
  452. "whoops"
  453. ]
  454. },
  455. {
  456. "name": "gregwar/cache",
  457. "version": "v1.0.12",
  458. "version_normalized": "1.0.12.0",
  459. "target-dir": "Gregwar/Cache",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/Gregwar/Cache.git",
  463. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/Gregwar/Cache/zipball/305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  468. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  469. "shasum": ""
  470. },
  471. "require": {
  472. "php": ">=5.3"
  473. },
  474. "time": "2016-09-23T08:16:04+00:00",
  475. "type": "library",
  476. "installation-source": "dist",
  477. "autoload": {
  478. "psr-0": {
  479. "Gregwar\\Cache": ""
  480. }
  481. },
  482. "notification-url": "https://packagist.org/downloads/",
  483. "license": [
  484. "MIT"
  485. ],
  486. "authors": [
  487. {
  488. "name": "Gregwar",
  489. "email": "g.passault@gmail.com"
  490. }
  491. ],
  492. "description": "A lightweight file-system cache system",
  493. "keywords": [
  494. "cache",
  495. "caching",
  496. "file-system",
  497. "system"
  498. ]
  499. },
  500. {
  501. "name": "gregwar/image",
  502. "version": "v2.0.22",
  503. "version_normalized": "2.0.22.0",
  504. "target-dir": "Gregwar/Image",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/Gregwar/Image.git",
  508. "reference": "c506d57d7fb5e67961d4eea6540ae8e23dffd406"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/Gregwar/Image/zipball/c506d57d7fb5e67961d4eea6540ae8e23dffd406",
  513. "reference": "c506d57d7fb5e67961d4eea6540ae8e23dffd406",
  514. "shasum": ""
  515. },
  516. "require": {
  517. "ext-gd": "*",
  518. "gregwar/cache": "^1.0.6",
  519. "php": "^5.3 || ^7.0"
  520. },
  521. "require-dev": {
  522. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  523. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  524. },
  525. "suggest": {
  526. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  527. },
  528. "time": "2018-01-31T17:40:17+00:00",
  529. "type": "library",
  530. "installation-source": "dist",
  531. "autoload": {
  532. "psr-0": {
  533. "Gregwar\\Image": ""
  534. }
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "MIT"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Grégoire Passault",
  543. "email": "g.passault@gmail.com",
  544. "homepage": "http://www.gregwar.com/"
  545. }
  546. ],
  547. "description": "Image handling",
  548. "homepage": "https://github.com/Gregwar/Image",
  549. "keywords": [
  550. "gd",
  551. "image"
  552. ]
  553. },
  554. {
  555. "name": "guzzlehttp/psr7",
  556. "version": "1.4.2",
  557. "version_normalized": "1.4.2.0",
  558. "source": {
  559. "type": "git",
  560. "url": "https://github.com/guzzle/psr7.git",
  561. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  562. },
  563. "dist": {
  564. "type": "zip",
  565. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  566. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  567. "shasum": ""
  568. },
  569. "require": {
  570. "php": ">=5.4.0",
  571. "psr/http-message": "~1.0"
  572. },
  573. "provide": {
  574. "psr/http-message-implementation": "1.0"
  575. },
  576. "require-dev": {
  577. "phpunit/phpunit": "~4.0"
  578. },
  579. "time": "2017-03-20T17:10:46+00:00",
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.4-dev"
  584. }
  585. },
  586. "installation-source": "dist",
  587. "autoload": {
  588. "psr-4": {
  589. "GuzzleHttp\\Psr7\\": "src/"
  590. },
  591. "files": [
  592. "src/functions_include.php"
  593. ]
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Michael Dowling",
  602. "email": "mtdowling@gmail.com",
  603. "homepage": "https://github.com/mtdowling"
  604. },
  605. {
  606. "name": "Tobias Schultze",
  607. "homepage": "https://github.com/Tobion"
  608. }
  609. ],
  610. "description": "PSR-7 message implementation that also provides common utility methods",
  611. "keywords": [
  612. "http",
  613. "message",
  614. "request",
  615. "response",
  616. "stream",
  617. "uri",
  618. "url"
  619. ]
  620. },
  621. {
  622. "name": "league/climate",
  623. "version": "3.2.4",
  624. "version_normalized": "3.2.4.0",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/thephpleague/climate.git",
  628. "reference": "ca70f67f7739cca823eba0ad98f8130bca226bf0"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/thephpleague/climate/zipball/ca70f67f7739cca823eba0ad98f8130bca226bf0",
  633. "reference": "ca70f67f7739cca823eba0ad98f8130bca226bf0",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "php": ">=5.4.0",
  638. "seld/cli-prompt": "~1.0"
  639. },
  640. "require-dev": {
  641. "mikey179/vfsstream": "~1.4",
  642. "mockery/mockery": "~0.9",
  643. "phpunit/phpunit": "~4.6"
  644. },
  645. "time": "2016-10-30T22:18:25+00:00",
  646. "type": "library",
  647. "installation-source": "dist",
  648. "autoload": {
  649. "psr-4": {
  650. "League\\CLImate\\": "src/"
  651. }
  652. },
  653. "notification-url": "https://packagist.org/downloads/",
  654. "license": [
  655. "MIT"
  656. ],
  657. "authors": [
  658. {
  659. "name": "Joe Tannenbaum",
  660. "email": "hey@joe.codes",
  661. "homepage": "http://joe.codes/",
  662. "role": "Developer"
  663. }
  664. ],
  665. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  666. "keywords": [
  667. "cli",
  668. "colors",
  669. "command",
  670. "php",
  671. "terminal"
  672. ]
  673. },
  674. {
  675. "name": "matthiasmullie/minify",
  676. "version": "1.3.60",
  677. "version_normalized": "1.3.60.0",
  678. "source": {
  679. "type": "git",
  680. "url": "https://github.com/matthiasmullie/minify.git",
  681. "reference": "ab7fea80ce5ce6549baaf272bc8bd926a7e08f90"
  682. },
  683. "dist": {
  684. "type": "zip",
  685. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/ab7fea80ce5ce6549baaf272bc8bd926a7e08f90",
  686. "reference": "ab7fea80ce5ce6549baaf272bc8bd926a7e08f90",
  687. "shasum": ""
  688. },
  689. "require": {
  690. "ext-pcre": "*",
  691. "matthiasmullie/path-converter": "~1.1",
  692. "php": ">=5.3.0"
  693. },
  694. "require-dev": {
  695. "friendsofphp/php-cs-fixer": "~2.0",
  696. "matthiasmullie/scrapbook": "~1.0",
  697. "phpunit/phpunit": "~4.8"
  698. },
  699. "suggest": {
  700. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  701. },
  702. "time": "2018-04-18T08:50:35+00:00",
  703. "bin": [
  704. "bin/minifycss",
  705. "bin/minifyjs"
  706. ],
  707. "type": "library",
  708. "installation-source": "dist",
  709. "autoload": {
  710. "psr-4": {
  711. "MatthiasMullie\\Minify\\": "src/"
  712. }
  713. },
  714. "notification-url": "https://packagist.org/downloads/",
  715. "license": [
  716. "MIT"
  717. ],
  718. "authors": [
  719. {
  720. "name": "Matthias Mullie",
  721. "email": "minify@mullie.eu",
  722. "homepage": "http://www.mullie.eu",
  723. "role": "Developer"
  724. }
  725. ],
  726. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  727. "homepage": "http://www.minifier.org",
  728. "keywords": [
  729. "JS",
  730. "css",
  731. "javascript",
  732. "minifier",
  733. "minify"
  734. ]
  735. },
  736. {
  737. "name": "matthiasmullie/path-converter",
  738. "version": "1.1.1",
  739. "version_normalized": "1.1.1.0",
  740. "source": {
  741. "type": "git",
  742. "url": "https://github.com/matthiasmullie/path-converter.git",
  743. "reference": "3082a6838be02b930239a97d38b5c9da4d693aca"
  744. },
  745. "dist": {
  746. "type": "zip",
  747. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/3082a6838be02b930239a97d38b5c9da4d693aca",
  748. "reference": "3082a6838be02b930239a97d38b5c9da4d693aca",
  749. "shasum": ""
  750. },
  751. "require": {
  752. "ext-pcre": "*",
  753. "php": ">=5.3.0"
  754. },
  755. "require-dev": {
  756. "phpunit/phpunit": "~4.8"
  757. },
  758. "time": "2018-02-02T11:30:10+00:00",
  759. "type": "library",
  760. "installation-source": "dist",
  761. "autoload": {
  762. "psr-4": {
  763. "MatthiasMullie\\PathConverter\\": "src/"
  764. }
  765. },
  766. "notification-url": "https://packagist.org/downloads/",
  767. "license": [
  768. "MIT"
  769. ],
  770. "authors": [
  771. {
  772. "name": "Matthias Mullie",
  773. "email": "pathconverter@mullie.eu",
  774. "homepage": "http://www.mullie.eu",
  775. "role": "Developer"
  776. }
  777. ],
  778. "description": "Relative path converter",
  779. "homepage": "http://github.com/matthiasmullie/path-converter",
  780. "keywords": [
  781. "converter",
  782. "path",
  783. "paths",
  784. "relative"
  785. ]
  786. },
  787. {
  788. "name": "maximebf/debugbar",
  789. "version": "v1.15.0",
  790. "version_normalized": "1.15.0.0",
  791. "source": {
  792. "type": "git",
  793. "url": "https://github.com/maximebf/php-debugbar.git",
  794. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07"
  795. },
  796. "dist": {
  797. "type": "zip",
  798. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  799. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  800. "shasum": ""
  801. },
  802. "require": {
  803. "php": ">=5.3.0",
  804. "psr/log": "^1.0",
  805. "symfony/var-dumper": "^2.6|^3.0|^4.0"
  806. },
  807. "require-dev": {
  808. "phpunit/phpunit": "^4.0|^5.0"
  809. },
  810. "suggest": {
  811. "kriswallsmith/assetic": "The best way to manage assets",
  812. "monolog/monolog": "Log using Monolog",
  813. "predis/predis": "Redis storage"
  814. },
  815. "time": "2017-12-15T11:13:46+00:00",
  816. "type": "library",
  817. "extra": {
  818. "branch-alias": {
  819. "dev-master": "1.14-dev"
  820. }
  821. },
  822. "installation-source": "dist",
  823. "autoload": {
  824. "psr-4": {
  825. "DebugBar\\": "src/DebugBar/"
  826. }
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Maxime Bouroumeau-Fuseau",
  835. "email": "maxime.bouroumeau@gmail.com",
  836. "homepage": "http://maximebf.com"
  837. },
  838. {
  839. "name": "Barry vd. Heuvel",
  840. "email": "barryvdh@gmail.com"
  841. }
  842. ],
  843. "description": "Debug bar in the browser for php application",
  844. "homepage": "https://github.com/maximebf/php-debugbar",
  845. "keywords": [
  846. "debug",
  847. "debugbar"
  848. ]
  849. },
  850. {
  851. "name": "miljar/php-exif",
  852. "version": "v0.6.4",
  853. "version_normalized": "0.6.4.0",
  854. "source": {
  855. "type": "git",
  856. "url": "https://github.com/PHPExif/php-exif.git",
  857. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511"
  858. },
  859. "dist": {
  860. "type": "zip",
  861. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  862. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  863. "shasum": ""
  864. },
  865. "require": {
  866. "php": ">=5.3.0"
  867. },
  868. "require-dev": {
  869. "phpmd/phpmd": "~2.2",
  870. "phpunit/phpunit": "3.7.*",
  871. "satooshi/php-coveralls": "~0.6",
  872. "sebastian/phpcpd": "1.4.*@stable",
  873. "squizlabs/php_codesniffer": "1.4.*@stable"
  874. },
  875. "suggest": {
  876. "ext-exif": "Use exif PHP extension as adapter",
  877. "lib-exiftool": "Use perl lib exiftool as adapter"
  878. },
  879. "time": "2018-03-27T10:41:55+00:00",
  880. "type": "library",
  881. "installation-source": "dist",
  882. "autoload": {
  883. "psr-0": {
  884. "PHPExif": "lib/"
  885. }
  886. },
  887. "notification-url": "https://packagist.org/downloads/",
  888. "license": [
  889. "MIT"
  890. ],
  891. "authors": [
  892. {
  893. "name": "Tom Van Herreweghe",
  894. "homepage": "http://theanalogguy.be",
  895. "role": "Developer"
  896. }
  897. ],
  898. "description": "Object-Oriented EXIF parsing",
  899. "keywords": [
  900. "IPTC",
  901. "exif",
  902. "exiftool",
  903. "jpeg",
  904. "tiff"
  905. ]
  906. },
  907. {
  908. "name": "monolog/monolog",
  909. "version": "1.23.0",
  910. "version_normalized": "1.23.0.0",
  911. "source": {
  912. "type": "git",
  913. "url": "https://github.com/Seldaek/monolog.git",
  914. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  915. },
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  919. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "php": ">=5.3.0",
  924. "psr/log": "~1.0"
  925. },
  926. "provide": {
  927. "psr/log-implementation": "1.0.0"
  928. },
  929. "require-dev": {
  930. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  931. "doctrine/couchdb": "~1.0@dev",
  932. "graylog2/gelf-php": "~1.0",
  933. "jakub-onderka/php-parallel-lint": "0.9",
  934. "php-amqplib/php-amqplib": "~2.4",
  935. "php-console/php-console": "^3.1.3",
  936. "phpunit/phpunit": "~4.5",
  937. "phpunit/phpunit-mock-objects": "2.3.0",
  938. "ruflin/elastica": ">=0.90 <3.0",
  939. "sentry/sentry": "^0.13",
  940. "swiftmailer/swiftmailer": "^5.3|^6.0"
  941. },
  942. "suggest": {
  943. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  944. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  945. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  946. "ext-mongo": "Allow sending log messages to a MongoDB server",
  947. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  948. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  949. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  950. "php-console/php-console": "Allow sending log messages to Google Chrome",
  951. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  952. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  953. "sentry/sentry": "Allow sending log messages to a Sentry server"
  954. },
  955. "time": "2017-06-19T01:22:40+00:00",
  956. "type": "library",
  957. "extra": {
  958. "branch-alias": {
  959. "dev-master": "2.0.x-dev"
  960. }
  961. },
  962. "installation-source": "dist",
  963. "autoload": {
  964. "psr-4": {
  965. "Monolog\\": "src/Monolog"
  966. }
  967. },
  968. "notification-url": "https://packagist.org/downloads/",
  969. "license": [
  970. "MIT"
  971. ],
  972. "authors": [
  973. {
  974. "name": "Jordi Boggiano",
  975. "email": "j.boggiano@seld.be",
  976. "homepage": "http://seld.be"
  977. }
  978. ],
  979. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  980. "homepage": "http://github.com/Seldaek/monolog",
  981. "keywords": [
  982. "log",
  983. "logging",
  984. "psr-3"
  985. ]
  986. },
  987. {
  988. "name": "pimple/pimple",
  989. "version": "v3.2.3",
  990. "version_normalized": "3.2.3.0",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/silexphp/Pimple.git",
  994. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  999. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1000. "shasum": ""
  1001. },
  1002. "require": {
  1003. "php": ">=5.3.0",
  1004. "psr/container": "^1.0"
  1005. },
  1006. "require-dev": {
  1007. "symfony/phpunit-bridge": "^3.2"
  1008. },
  1009. "time": "2018-01-21T07:42:36+00:00",
  1010. "type": "library",
  1011. "extra": {
  1012. "branch-alias": {
  1013. "dev-master": "3.2.x-dev"
  1014. }
  1015. },
  1016. "installation-source": "dist",
  1017. "autoload": {
  1018. "psr-0": {
  1019. "Pimple": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Fabien Potencier",
  1029. "email": "fabien@symfony.com"
  1030. }
  1031. ],
  1032. "description": "Pimple, a simple Dependency Injection Container",
  1033. "homepage": "http://pimple.sensiolabs.org",
  1034. "keywords": [
  1035. "container",
  1036. "dependency injection"
  1037. ]
  1038. },
  1039. {
  1040. "name": "psr/container",
  1041. "version": "1.0.0",
  1042. "version_normalized": "1.0.0.0",
  1043. "source": {
  1044. "type": "git",
  1045. "url": "https://github.com/php-fig/container.git",
  1046. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1047. },
  1048. "dist": {
  1049. "type": "zip",
  1050. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1051. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1052. "shasum": ""
  1053. },
  1054. "require": {
  1055. "php": ">=5.3.0"
  1056. },
  1057. "time": "2017-02-14T16:28:37+00:00",
  1058. "type": "library",
  1059. "extra": {
  1060. "branch-alias": {
  1061. "dev-master": "1.0.x-dev"
  1062. }
  1063. },
  1064. "installation-source": "dist",
  1065. "autoload": {
  1066. "psr-4": {
  1067. "Psr\\Container\\": "src/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "authors": [
  1075. {
  1076. "name": "PHP-FIG",
  1077. "homepage": "http://www.php-fig.org/"
  1078. }
  1079. ],
  1080. "description": "Common Container Interface (PHP FIG PSR-11)",
  1081. "homepage": "https://github.com/php-fig/container",
  1082. "keywords": [
  1083. "PSR-11",
  1084. "container",
  1085. "container-interface",
  1086. "container-interop",
  1087. "psr"
  1088. ]
  1089. },
  1090. {
  1091. "name": "psr/http-message",
  1092. "version": "1.0.1",
  1093. "version_normalized": "1.0.1.0",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/php-fig/http-message.git",
  1097. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1102. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1103. "shasum": ""
  1104. },
  1105. "require": {
  1106. "php": ">=5.3.0"
  1107. },
  1108. "time": "2016-08-06T14:39:51+00:00",
  1109. "type": "library",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-master": "1.0.x-dev"
  1113. }
  1114. },
  1115. "installation-source": "dist",
  1116. "autoload": {
  1117. "psr-4": {
  1118. "Psr\\Http\\Message\\": "src/"
  1119. }
  1120. },
  1121. "notification-url": "https://packagist.org/downloads/",
  1122. "license": [
  1123. "MIT"
  1124. ],
  1125. "authors": [
  1126. {
  1127. "name": "PHP-FIG",
  1128. "homepage": "http://www.php-fig.org/"
  1129. }
  1130. ],
  1131. "description": "Common interface for HTTP messages",
  1132. "homepage": "https://github.com/php-fig/http-message",
  1133. "keywords": [
  1134. "http",
  1135. "http-message",
  1136. "psr",
  1137. "psr-7",
  1138. "request",
  1139. "response"
  1140. ]
  1141. },
  1142. {
  1143. "name": "psr/log",
  1144. "version": "1.0.2",
  1145. "version_normalized": "1.0.2.0",
  1146. "source": {
  1147. "type": "git",
  1148. "url": "https://github.com/php-fig/log.git",
  1149. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1150. },
  1151. "dist": {
  1152. "type": "zip",
  1153. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1154. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1155. "shasum": ""
  1156. },
  1157. "require": {
  1158. "php": ">=5.3.0"
  1159. },
  1160. "time": "2016-10-10T12:19:37+00:00",
  1161. "type": "library",
  1162. "extra": {
  1163. "branch-alias": {
  1164. "dev-master": "1.0.x-dev"
  1165. }
  1166. },
  1167. "installation-source": "dist",
  1168. "autoload": {
  1169. "psr-4": {
  1170. "Psr\\Log\\": "Psr/Log/"
  1171. }
  1172. },
  1173. "notification-url": "https://packagist.org/downloads/",
  1174. "license": [
  1175. "MIT"
  1176. ],
  1177. "authors": [
  1178. {
  1179. "name": "PHP-FIG",
  1180. "homepage": "http://www.php-fig.org/"
  1181. }
  1182. ],
  1183. "description": "Common interface for logging libraries",
  1184. "homepage": "https://github.com/php-fig/log",
  1185. "keywords": [
  1186. "log",
  1187. "psr",
  1188. "psr-3"
  1189. ]
  1190. },
  1191. {
  1192. "name": "psr/simple-cache",
  1193. "version": "1.0.1",
  1194. "version_normalized": "1.0.1.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/php-fig/simple-cache.git",
  1198. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1203. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "php": ">=5.3.0"
  1208. },
  1209. "time": "2017-10-23T01:57:42+00:00",
  1210. "type": "library",
  1211. "extra": {
  1212. "branch-alias": {
  1213. "dev-master": "1.0.x-dev"
  1214. }
  1215. },
  1216. "installation-source": "dist",
  1217. "autoload": {
  1218. "psr-4": {
  1219. "Psr\\SimpleCache\\": "src/"
  1220. }
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "authors": [
  1227. {
  1228. "name": "PHP-FIG",
  1229. "homepage": "http://www.php-fig.org/"
  1230. }
  1231. ],
  1232. "description": "Common interfaces for simple caching",
  1233. "keywords": [
  1234. "cache",
  1235. "caching",
  1236. "psr",
  1237. "psr-16",
  1238. "simple-cache"
  1239. ]
  1240. },
  1241. {
  1242. "name": "rockettheme/toolbox",
  1243. "version": "1.3.9",
  1244. "version_normalized": "1.3.9.0",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/rockettheme/toolbox.git",
  1248. "reference": "1deea4b45e09f6e0c3e6e075e175e50d05ccbf70"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/1deea4b45e09f6e0c3e6e075e175e50d05ccbf70",
  1253. "reference": "1deea4b45e09f6e0c3e6e075e175e50d05ccbf70",
  1254. "shasum": ""
  1255. },
  1256. "require": {
  1257. "php": ">=5.4.0",
  1258. "pimple/pimple": "~3.0",
  1259. "symfony/event-dispatcher": ">2.5",
  1260. "symfony/yaml": ">2.5"
  1261. },
  1262. "require-dev": {
  1263. "phpunit/phpunit": "~5.1.5"
  1264. },
  1265. "time": "2018-03-09T00:03:18+00:00",
  1266. "type": "library",
  1267. "installation-source": "dist",
  1268. "autoload": {
  1269. "psr-4": {
  1270. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  1271. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  1272. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  1273. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  1274. "RocketTheme\\Toolbox\\File\\": "File/src",
  1275. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src",
  1276. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  1277. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "description": "RocketTheme Toolbox Library",
  1285. "homepage": "http://www.rockettheme.com",
  1286. "keywords": [
  1287. "php",
  1288. "rockettheme"
  1289. ]
  1290. },
  1291. {
  1292. "name": "seld/cli-prompt",
  1293. "version": "1.0.3",
  1294. "version_normalized": "1.0.3.0",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/Seldaek/cli-prompt.git",
  1298. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1303. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "php": ">=5.3"
  1308. },
  1309. "time": "2017-03-18T11:32:45+00:00",
  1310. "type": "library",
  1311. "extra": {
  1312. "branch-alias": {
  1313. "dev-master": "1.x-dev"
  1314. }
  1315. },
  1316. "installation-source": "dist",
  1317. "autoload": {
  1318. "psr-4": {
  1319. "Seld\\CliPrompt\\": "src/"
  1320. }
  1321. },
  1322. "notification-url": "https://packagist.org/downloads/",
  1323. "license": [
  1324. "MIT"
  1325. ],
  1326. "authors": [
  1327. {
  1328. "name": "Jordi Boggiano",
  1329. "email": "j.boggiano@seld.be"
  1330. }
  1331. ],
  1332. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  1333. "keywords": [
  1334. "cli",
  1335. "console",
  1336. "hidden",
  1337. "input",
  1338. "prompt"
  1339. ]
  1340. },
  1341. {
  1342. "name": "symfony/console",
  1343. "version": "v2.8.41",
  1344. "version_normalized": "2.8.41.0",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/symfony/console.git",
  1348. "reference": "e8e59b74ad1274714dad2748349b55e3e6e630c7"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/symfony/console/zipball/e8e59b74ad1274714dad2748349b55e3e6e630c7",
  1353. "reference": "e8e59b74ad1274714dad2748349b55e3e6e630c7",
  1354. "shasum": ""
  1355. },
  1356. "require": {
  1357. "php": ">=5.3.9",
  1358. "symfony/debug": "^2.7.2|~3.0.0",
  1359. "symfony/polyfill-mbstring": "~1.0"
  1360. },
  1361. "require-dev": {
  1362. "psr/log": "~1.0",
  1363. "symfony/event-dispatcher": "~2.1|~3.0.0",
  1364. "symfony/process": "~2.1|~3.0.0"
  1365. },
  1366. "suggest": {
  1367. "psr/log-implementation": "For using the console logger",
  1368. "symfony/event-dispatcher": "",
  1369. "symfony/process": ""
  1370. },
  1371. "time": "2018-05-15T21:17:45+00:00",
  1372. "type": "library",
  1373. "extra": {
  1374. "branch-alias": {
  1375. "dev-master": "2.8-dev"
  1376. }
  1377. },
  1378. "installation-source": "dist",
  1379. "autoload": {
  1380. "psr-4": {
  1381. "Symfony\\Component\\Console\\": ""
  1382. },
  1383. "exclude-from-classmap": [
  1384. "/Tests/"
  1385. ]
  1386. },
  1387. "notification-url": "https://packagist.org/downloads/",
  1388. "license": [
  1389. "MIT"
  1390. ],
  1391. "authors": [
  1392. {
  1393. "name": "Fabien Potencier",
  1394. "email": "fabien@symfony.com"
  1395. },
  1396. {
  1397. "name": "Symfony Community",
  1398. "homepage": "https://symfony.com/contributors"
  1399. }
  1400. ],
  1401. "description": "Symfony Console Component",
  1402. "homepage": "https://symfony.com"
  1403. },
  1404. {
  1405. "name": "symfony/debug",
  1406. "version": "v3.0.9",
  1407. "version_normalized": "3.0.9.0",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/symfony/debug.git",
  1411. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/symfony/debug/zipball/697c527acd9ea1b2d3efac34d9806bf255278b0a",
  1416. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "php": ">=5.5.9",
  1421. "psr/log": "~1.0"
  1422. },
  1423. "conflict": {
  1424. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1425. },
  1426. "require-dev": {
  1427. "symfony/class-loader": "~2.8|~3.0",
  1428. "symfony/http-kernel": "~2.8|~3.0"
  1429. },
  1430. "time": "2016-07-30T07:22:48+00:00",
  1431. "type": "library",
  1432. "extra": {
  1433. "branch-alias": {
  1434. "dev-master": "3.0-dev"
  1435. }
  1436. },
  1437. "installation-source": "dist",
  1438. "autoload": {
  1439. "psr-4": {
  1440. "Symfony\\Component\\Debug\\": ""
  1441. },
  1442. "exclude-from-classmap": [
  1443. "/Tests/"
  1444. ]
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Fabien Potencier",
  1453. "email": "fabien@symfony.com"
  1454. },
  1455. {
  1456. "name": "Symfony Community",
  1457. "homepage": "https://symfony.com/contributors"
  1458. }
  1459. ],
  1460. "description": "Symfony Debug Component",
  1461. "homepage": "https://symfony.com"
  1462. },
  1463. {
  1464. "name": "symfony/event-dispatcher",
  1465. "version": "v2.8.41",
  1466. "version_normalized": "2.8.41.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/symfony/event-dispatcher.git",
  1470. "reference": "9b69aad7d4c086dc94ebade2d5eb9145da5dac8c"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9b69aad7d4c086dc94ebade2d5eb9145da5dac8c",
  1475. "reference": "9b69aad7d4c086dc94ebade2d5eb9145da5dac8c",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "php": ">=5.3.9"
  1480. },
  1481. "require-dev": {
  1482. "psr/log": "~1.0",
  1483. "symfony/config": "^2.0.5|~3.0.0",
  1484. "symfony/dependency-injection": "~2.6|~3.0.0",
  1485. "symfony/expression-language": "~2.6|~3.0.0",
  1486. "symfony/stopwatch": "~2.3|~3.0.0"
  1487. },
  1488. "suggest": {
  1489. "symfony/dependency-injection": "",
  1490. "symfony/http-kernel": ""
  1491. },
  1492. "time": "2018-04-06T07:35:03+00:00",
  1493. "type": "library",
  1494. "extra": {
  1495. "branch-alias": {
  1496. "dev-master": "2.8-dev"
  1497. }
  1498. },
  1499. "installation-source": "dist",
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Symfony\\Component\\EventDispatcher\\": ""
  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 EventDispatcher Component",
  1523. "homepage": "https://symfony.com"
  1524. },
  1525. {
  1526. "name": "symfony/polyfill-ctype",
  1527. "version": "v1.8.0",
  1528. "version_normalized": "1.8.0.0",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/symfony/polyfill-ctype.git",
  1532. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1537. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  1538. "shasum": ""
  1539. },
  1540. "require": {
  1541. "php": ">=5.3.3"
  1542. },
  1543. "time": "2018-04-30T19:57:29+00:00",
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "1.8-dev"
  1548. }
  1549. },
  1550. "installation-source": "dist",
  1551. "autoload": {
  1552. "psr-4": {
  1553. "Symfony\\Polyfill\\Ctype\\": ""
  1554. },
  1555. "files": [
  1556. "bootstrap.php"
  1557. ]
  1558. },
  1559. "notification-url": "https://packagist.org/downloads/",
  1560. "license": [
  1561. "MIT"
  1562. ],
  1563. "authors": [
  1564. {
  1565. "name": "Symfony Community",
  1566. "homepage": "https://symfony.com/contributors"
  1567. },
  1568. {
  1569. "name": "Gert de Pagter",
  1570. "email": "BackEndTea@gmail.com"
  1571. }
  1572. ],
  1573. "description": "Symfony polyfill for ctype functions",
  1574. "homepage": "https://symfony.com",
  1575. "keywords": [
  1576. "compatibility",
  1577. "ctype",
  1578. "polyfill",
  1579. "portable"
  1580. ]
  1581. },
  1582. {
  1583. "name": "symfony/polyfill-iconv",
  1584. "version": "v1.8.0",
  1585. "version_normalized": "1.8.0.0",
  1586. "source": {
  1587. "type": "git",
  1588. "url": "https://github.com/symfony/polyfill-iconv.git",
  1589. "reference": "7cb8436a814d5b0fcf292810ee26f8b0cb47584d"
  1590. },
  1591. "dist": {
  1592. "type": "zip",
  1593. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/7cb8436a814d5b0fcf292810ee26f8b0cb47584d",
  1594. "reference": "7cb8436a814d5b0fcf292810ee26f8b0cb47584d",
  1595. "shasum": ""
  1596. },
  1597. "require": {
  1598. "php": ">=5.3.3"
  1599. },
  1600. "suggest": {
  1601. "ext-iconv": "For best performance"
  1602. },
  1603. "time": "2018-04-26T10:06:28+00:00",
  1604. "type": "library",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-master": "1.8-dev"
  1608. }
  1609. },
  1610. "installation-source": "dist",
  1611. "autoload": {
  1612. "psr-4": {
  1613. "Symfony\\Polyfill\\Iconv\\": ""
  1614. },
  1615. "files": [
  1616. "bootstrap.php"
  1617. ]
  1618. },
  1619. "notification-url": "https://packagist.org/downloads/",
  1620. "license": [
  1621. "MIT"
  1622. ],
  1623. "authors": [
  1624. {
  1625. "name": "Nicolas Grekas",
  1626. "email": "p@tchwork.com"
  1627. },
  1628. {
  1629. "name": "Symfony Community",
  1630. "homepage": "https://symfony.com/contributors"
  1631. }
  1632. ],
  1633. "description": "Symfony polyfill for the Iconv extension",
  1634. "homepage": "https://symfony.com",
  1635. "keywords": [
  1636. "compatibility",
  1637. "iconv",
  1638. "polyfill",
  1639. "portable",
  1640. "shim"
  1641. ]
  1642. },
  1643. {
  1644. "name": "symfony/polyfill-mbstring",
  1645. "version": "v1.8.0",
  1646. "version_normalized": "1.8.0.0",
  1647. "source": {
  1648. "type": "git",
  1649. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1650. "reference": "3296adf6a6454a050679cde90f95350ad604b171"
  1651. },
  1652. "dist": {
  1653. "type": "zip",
  1654. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
  1655. "reference": "3296adf6a6454a050679cde90f95350ad604b171",
  1656. "shasum": ""
  1657. },
  1658. "require": {
  1659. "php": ">=5.3.3"
  1660. },
  1661. "suggest": {
  1662. "ext-mbstring": "For best performance"
  1663. },
  1664. "time": "2018-04-26T10:06:28+00:00",
  1665. "type": "library",
  1666. "extra": {
  1667. "branch-alias": {
  1668. "dev-master": "1.8-dev"
  1669. }
  1670. },
  1671. "installation-source": "dist",
  1672. "autoload": {
  1673. "psr-4": {
  1674. "Symfony\\Polyfill\\Mbstring\\": ""
  1675. },
  1676. "files": [
  1677. "bootstrap.php"
  1678. ]
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "Nicolas Grekas",
  1687. "email": "p@tchwork.com"
  1688. },
  1689. {
  1690. "name": "Symfony Community",
  1691. "homepage": "https://symfony.com/contributors"
  1692. }
  1693. ],
  1694. "description": "Symfony polyfill for the Mbstring extension",
  1695. "homepage": "https://symfony.com",
  1696. "keywords": [
  1697. "compatibility",
  1698. "mbstring",
  1699. "polyfill",
  1700. "portable",
  1701. "shim"
  1702. ]
  1703. },
  1704. {
  1705. "name": "symfony/var-dumper",
  1706. "version": "v2.8.41",
  1707. "version_normalized": "2.8.41.0",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/symfony/var-dumper.git",
  1711. "reference": "c3d7a096ccaba86e2fadeb444ca32fcbc5a31ebd"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c3d7a096ccaba86e2fadeb444ca32fcbc5a31ebd",
  1716. "reference": "c3d7a096ccaba86e2fadeb444ca32fcbc5a31ebd",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "php": ">=5.3.9",
  1721. "symfony/polyfill-mbstring": "~1.0"
  1722. },
  1723. "conflict": {
  1724. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  1725. },
  1726. "require-dev": {
  1727. "ext-iconv": "*",
  1728. "twig/twig": "~1.34|~2.4"
  1729. },
  1730. "suggest": {
  1731. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1732. "ext-symfony_debug": ""
  1733. },
  1734. "time": "2018-04-25T14:40:02+00:00",
  1735. "type": "library",
  1736. "extra": {
  1737. "branch-alias": {
  1738. "dev-master": "2.8-dev"
  1739. }
  1740. },
  1741. "installation-source": "dist",
  1742. "autoload": {
  1743. "files": [
  1744. "Resources/functions/dump.php"
  1745. ],
  1746. "psr-4": {
  1747. "Symfony\\Component\\VarDumper\\": ""
  1748. },
  1749. "exclude-from-classmap": [
  1750. "/Tests/"
  1751. ]
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "MIT"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "Nicolas Grekas",
  1760. "email": "p@tchwork.com"
  1761. },
  1762. {
  1763. "name": "Symfony Community",
  1764. "homepage": "https://symfony.com/contributors"
  1765. }
  1766. ],
  1767. "description": "Symfony mechanism for exploring and dumping PHP variables",
  1768. "homepage": "https://symfony.com",
  1769. "keywords": [
  1770. "debug",
  1771. "dump"
  1772. ]
  1773. },
  1774. {
  1775. "name": "symfony/yaml",
  1776. "version": "v2.8.41",
  1777. "version_normalized": "2.8.41.0",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/symfony/yaml.git",
  1781. "reference": "51356b7a2ff7c9fd06b2f1681cc463bb62b5c1ff"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/symfony/yaml/zipball/51356b7a2ff7c9fd06b2f1681cc463bb62b5c1ff",
  1786. "reference": "51356b7a2ff7c9fd06b2f1681cc463bb62b5c1ff",
  1787. "shasum": ""
  1788. },
  1789. "require": {
  1790. "php": ">=5.3.9",
  1791. "symfony/polyfill-ctype": "~1.8"
  1792. },
  1793. "time": "2018-05-01T22:52:40+00:00",
  1794. "type": "library",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-master": "2.8-dev"
  1798. }
  1799. },
  1800. "installation-source": "dist",
  1801. "autoload": {
  1802. "psr-4": {
  1803. "Symfony\\Component\\Yaml\\": ""
  1804. },
  1805. "exclude-from-classmap": [
  1806. "/Tests/"
  1807. ]
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Fabien Potencier",
  1816. "email": "fabien@symfony.com"
  1817. },
  1818. {
  1819. "name": "Symfony Community",
  1820. "homepage": "https://symfony.com/contributors"
  1821. }
  1822. ],
  1823. "description": "Symfony Yaml Component",
  1824. "homepage": "https://symfony.com"
  1825. },
  1826. {
  1827. "name": "twig/twig",
  1828. "version": "v1.35.3",
  1829. "version_normalized": "1.35.3.0",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/twigphp/Twig.git",
  1833. "reference": "b48680b6eb7d16b5025b9bfc4108d86f6b8af86f"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/twigphp/Twig/zipball/b48680b6eb7d16b5025b9bfc4108d86f6b8af86f",
  1838. "reference": "b48680b6eb7d16b5025b9bfc4108d86f6b8af86f",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "php": ">=5.3.3"
  1843. },
  1844. "require-dev": {
  1845. "psr/container": "^1.0",
  1846. "symfony/debug": "^2.7",
  1847. "symfony/phpunit-bridge": "^3.3"
  1848. },
  1849. "time": "2018-03-20T04:25:58+00:00",
  1850. "type": "library",
  1851. "extra": {
  1852. "branch-alias": {
  1853. "dev-master": "1.35-dev"
  1854. }
  1855. },
  1856. "installation-source": "dist",
  1857. "autoload": {
  1858. "psr-0": {
  1859. "Twig_": "lib/"
  1860. },
  1861. "psr-4": {
  1862. "Twig\\": "src/"
  1863. }
  1864. },
  1865. "notification-url": "https://packagist.org/downloads/",
  1866. "license": [
  1867. "BSD-3-Clause"
  1868. ],
  1869. "authors": [
  1870. {
  1871. "name": "Fabien Potencier",
  1872. "email": "fabien@symfony.com",
  1873. "homepage": "http://fabien.potencier.org",
  1874. "role": "Lead Developer"
  1875. },
  1876. {
  1877. "name": "Armin Ronacher",
  1878. "email": "armin.ronacher@active-4.com",
  1879. "role": "Project Founder"
  1880. },
  1881. {
  1882. "name": "Twig Team",
  1883. "homepage": "http://twig.sensiolabs.org/contributors",
  1884. "role": "Contributors"
  1885. }
  1886. ],
  1887. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1888. "homepage": "http://twig.sensiolabs.org",
  1889. "keywords": [
  1890. "templating"
  1891. ]
  1892. }
  1893. ]