installed.json 59 KB

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