installed.json 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229
  1. [
  2. {
  3. "name": "doctrine/inflector",
  4. "version": "v1.2.0",
  5. "version_normalized": "1.2.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/doctrine/inflector.git",
  9. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  14. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "php": "^7.0"
  19. },
  20. "require-dev": {
  21. "phpunit/phpunit": "^6.2"
  22. },
  23. "time": "2017-07-22T12:18:28+00:00",
  24. "type": "library",
  25. "extra": {
  26. "branch-alias": {
  27. "dev-master": "1.2.x-dev"
  28. }
  29. },
  30. "installation-source": "dist",
  31. "autoload": {
  32. "psr-4": {
  33. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Roman Borschel",
  43. "email": "roman@code-factory.org"
  44. },
  45. {
  46. "name": "Benjamin Eberlei",
  47. "email": "kontakt@beberlei.de"
  48. },
  49. {
  50. "name": "Guilherme Blanco",
  51. "email": "guilhermeblanco@gmail.com"
  52. },
  53. {
  54. "name": "Jonathan Wage",
  55. "email": "jonwage@gmail.com"
  56. },
  57. {
  58. "name": "Johannes Schmitt",
  59. "email": "schmittjoh@gmail.com"
  60. }
  61. ],
  62. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  63. "homepage": "http://www.doctrine-project.org",
  64. "keywords": [
  65. "inflection",
  66. "pluralize",
  67. "singularize",
  68. "string"
  69. ]
  70. },
  71. {
  72. "name": "filp/whoops",
  73. "version": "2.2.0",
  74. "version_normalized": "2.2.0.0",
  75. "source": {
  76. "type": "git",
  77. "url": "https://github.com/filp/whoops.git",
  78. "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a"
  79. },
  80. "dist": {
  81. "type": "zip",
  82. "url": "https://api.github.com/repos/filp/whoops/zipball/181c4502d8f34db7aed7bfe88d4f87875b8e947a",
  83. "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a",
  84. "shasum": ""
  85. },
  86. "require": {
  87. "php": "^5.5.9 || ^7.0",
  88. "psr/log": "^1.0.1"
  89. },
  90. "require-dev": {
  91. "mockery/mockery": "^0.9 || ^1.0",
  92. "phpunit/phpunit": "^4.8.35 || ^5.7",
  93. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  94. },
  95. "suggest": {
  96. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  97. "whoops/soap": "Formats errors as SOAP responses"
  98. },
  99. "time": "2018-03-03T17:56:25+00:00",
  100. "type": "library",
  101. "extra": {
  102. "branch-alias": {
  103. "dev-master": "2.1-dev"
  104. }
  105. },
  106. "installation-source": "dist",
  107. "autoload": {
  108. "psr-4": {
  109. "Whoops\\": "src/Whoops/"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "MIT"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Filipe Dobreira",
  119. "homepage": "https://github.com/filp",
  120. "role": "Developer"
  121. }
  122. ],
  123. "description": "php error handling for cool kids",
  124. "homepage": "https://filp.github.io/whoops/",
  125. "keywords": [
  126. "error",
  127. "exception",
  128. "handling",
  129. "library",
  130. "throwable",
  131. "whoops"
  132. ]
  133. },
  134. {
  135. "name": "illuminate/container",
  136. "version": "v5.5.40",
  137. "version_normalized": "5.5.40.0",
  138. "source": {
  139. "type": "git",
  140. "url": "https://github.com/illuminate/container.git",
  141. "reference": "25821159f2bb12dc9e5720a4b13ea3372ffa8216"
  142. },
  143. "dist": {
  144. "type": "zip",
  145. "url": "https://api.github.com/repos/illuminate/container/zipball/25821159f2bb12dc9e5720a4b13ea3372ffa8216",
  146. "reference": "25821159f2bb12dc9e5720a4b13ea3372ffa8216",
  147. "shasum": ""
  148. },
  149. "require": {
  150. "illuminate/contracts": "5.5.*",
  151. "php": ">=7.0",
  152. "psr/container": "~1.0"
  153. },
  154. "time": "2018-01-19T17:58:33+00:00",
  155. "type": "library",
  156. "extra": {
  157. "branch-alias": {
  158. "dev-master": "5.5-dev"
  159. }
  160. },
  161. "installation-source": "dist",
  162. "autoload": {
  163. "psr-4": {
  164. "Illuminate\\Container\\": ""
  165. }
  166. },
  167. "notification-url": "https://packagist.org/downloads/",
  168. "license": [
  169. "MIT"
  170. ],
  171. "authors": [
  172. {
  173. "name": "Taylor Otwell",
  174. "email": "taylor@laravel.com"
  175. }
  176. ],
  177. "description": "The Illuminate Container package.",
  178. "homepage": "https://laravel.com"
  179. },
  180. {
  181. "name": "illuminate/contracts",
  182. "version": "v5.5.40",
  183. "version_normalized": "5.5.40.0",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/illuminate/contracts.git",
  187. "reference": "04fbae936ed14e673dddd18a39662f49e7d199f5"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/illuminate/contracts/zipball/04fbae936ed14e673dddd18a39662f49e7d199f5",
  192. "reference": "04fbae936ed14e673dddd18a39662f49e7d199f5",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "php": ">=7.0",
  197. "psr/container": "~1.0",
  198. "psr/simple-cache": "~1.0"
  199. },
  200. "time": "2018-03-20T15:34:35+00:00",
  201. "type": "library",
  202. "extra": {
  203. "branch-alias": {
  204. "dev-master": "5.5-dev"
  205. }
  206. },
  207. "installation-source": "dist",
  208. "autoload": {
  209. "psr-4": {
  210. "Illuminate\\Contracts\\": ""
  211. }
  212. },
  213. "notification-url": "https://packagist.org/downloads/",
  214. "license": [
  215. "MIT"
  216. ],
  217. "authors": [
  218. {
  219. "name": "Taylor Otwell",
  220. "email": "taylor@laravel.com"
  221. }
  222. ],
  223. "description": "The Illuminate Contracts package.",
  224. "homepage": "https://laravel.com"
  225. },
  226. {
  227. "name": "illuminate/database",
  228. "version": "v5.5.40",
  229. "version_normalized": "5.5.40.0",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/illuminate/database.git",
  233. "reference": "be5fff68fcc6393c984c5164fc26ef7973c869e9"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/illuminate/database/zipball/be5fff68fcc6393c984c5164fc26ef7973c869e9",
  238. "reference": "be5fff68fcc6393c984c5164fc26ef7973c869e9",
  239. "shasum": ""
  240. },
  241. "require": {
  242. "illuminate/container": "5.5.*",
  243. "illuminate/contracts": "5.5.*",
  244. "illuminate/support": "5.5.*",
  245. "php": ">=7.0"
  246. },
  247. "suggest": {
  248. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  249. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  250. "illuminate/console": "Required to use the database commands (5.5.*).",
  251. "illuminate/events": "Required to use the observers with Eloquent (5.5.*).",
  252. "illuminate/filesystem": "Required to use the migrations (5.5.*).",
  253. "illuminate/pagination": "Required to paginate the result set (5.5.*)."
  254. },
  255. "time": "2018-03-15T12:39:57+00:00",
  256. "type": "library",
  257. "extra": {
  258. "branch-alias": {
  259. "dev-master": "5.5-dev"
  260. }
  261. },
  262. "installation-source": "dist",
  263. "autoload": {
  264. "psr-4": {
  265. "Illuminate\\Database\\": ""
  266. }
  267. },
  268. "notification-url": "https://packagist.org/downloads/",
  269. "license": [
  270. "MIT"
  271. ],
  272. "authors": [
  273. {
  274. "name": "Taylor Otwell",
  275. "email": "taylor@laravel.com"
  276. }
  277. ],
  278. "description": "The Illuminate Database package.",
  279. "homepage": "https://laravel.com",
  280. "keywords": [
  281. "database",
  282. "laravel",
  283. "orm",
  284. "sql"
  285. ]
  286. },
  287. {
  288. "name": "illuminate/support",
  289. "version": "v5.5.40",
  290. "version_normalized": "5.5.40.0",
  291. "source": {
  292. "type": "git",
  293. "url": "https://github.com/illuminate/support.git",
  294. "reference": "5d2ccb17e526ad537bffc16abc1d516457ae5587"
  295. },
  296. "dist": {
  297. "type": "zip",
  298. "url": "https://api.github.com/repos/illuminate/support/zipball/5d2ccb17e526ad537bffc16abc1d516457ae5587",
  299. "reference": "5d2ccb17e526ad537bffc16abc1d516457ae5587",
  300. "shasum": ""
  301. },
  302. "require": {
  303. "doctrine/inflector": "~1.1",
  304. "ext-mbstring": "*",
  305. "illuminate/contracts": "5.5.*",
  306. "nesbot/carbon": "^1.24.1",
  307. "php": ">=7.0"
  308. },
  309. "replace": {
  310. "tightenco/collect": "<5.5.33"
  311. },
  312. "suggest": {
  313. "illuminate/filesystem": "Required to use the composer class (5.5.*).",
  314. "symfony/process": "Required to use the composer class (~3.3).",
  315. "symfony/var-dumper": "Required to use the dd function (~3.3)."
  316. },
  317. "time": "2018-03-10T15:44:32+00:00",
  318. "type": "library",
  319. "extra": {
  320. "branch-alias": {
  321. "dev-master": "5.5-dev"
  322. }
  323. },
  324. "installation-source": "dist",
  325. "autoload": {
  326. "psr-4": {
  327. "Illuminate\\Support\\": ""
  328. },
  329. "files": [
  330. "helpers.php"
  331. ]
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "authors": [
  338. {
  339. "name": "Taylor Otwell",
  340. "email": "taylor@laravel.com"
  341. }
  342. ],
  343. "description": "The Illuminate Support package.",
  344. "homepage": "https://laravel.com"
  345. },
  346. {
  347. "name": "itsgoingd/clockwork",
  348. "version": "v1.14.5",
  349. "version_normalized": "1.14.5.0",
  350. "source": {
  351. "type": "git",
  352. "url": "https://github.com/itsgoingd/clockwork.git",
  353. "reference": "55ec557cc8cc60944de0eefbe27f905d538a8f70"
  354. },
  355. "dist": {
  356. "type": "zip",
  357. "url": "https://api.github.com/repos/itsgoingd/clockwork/zipball/55ec557cc8cc60944de0eefbe27f905d538a8f70",
  358. "reference": "55ec557cc8cc60944de0eefbe27f905d538a8f70",
  359. "shasum": ""
  360. },
  361. "require": {
  362. "php": ">=5.3.9",
  363. "psr/log": "1.*"
  364. },
  365. "time": "2017-09-15T14:50:14+00:00",
  366. "type": "library",
  367. "extra": {
  368. "laravel": {
  369. "providers": [
  370. "Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
  371. ],
  372. "aliases": {
  373. "Clockwork": "Clockwork\\Support\\Laravel\\Facade"
  374. }
  375. }
  376. },
  377. "installation-source": "dist",
  378. "autoload": {
  379. "psr-4": {
  380. "Clockwork\\": "Clockwork/"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "MIT"
  386. ],
  387. "authors": [
  388. {
  389. "name": "itsgoingd",
  390. "email": "itsgoingd@luzer.sk",
  391. "homepage": "http://twitter.com/itsgoingd"
  392. }
  393. ],
  394. "description": "Server-side component of Clockwork, a Chrome extension for PHP development",
  395. "homepage": "http://github.com/itsgoingd/clockwork",
  396. "keywords": [
  397. "debugging",
  398. "laravel",
  399. "logging",
  400. "profiling"
  401. ]
  402. },
  403. {
  404. "name": "monolog/monolog",
  405. "version": "1.23.0",
  406. "version_normalized": "1.23.0.0",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/Seldaek/monolog.git",
  410. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  415. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  416. "shasum": ""
  417. },
  418. "require": {
  419. "php": ">=5.3.0",
  420. "psr/log": "~1.0"
  421. },
  422. "provide": {
  423. "psr/log-implementation": "1.0.0"
  424. },
  425. "require-dev": {
  426. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  427. "doctrine/couchdb": "~1.0@dev",
  428. "graylog2/gelf-php": "~1.0",
  429. "jakub-onderka/php-parallel-lint": "0.9",
  430. "php-amqplib/php-amqplib": "~2.4",
  431. "php-console/php-console": "^3.1.3",
  432. "phpunit/phpunit": "~4.5",
  433. "phpunit/phpunit-mock-objects": "2.3.0",
  434. "ruflin/elastica": ">=0.90 <3.0",
  435. "sentry/sentry": "^0.13",
  436. "swiftmailer/swiftmailer": "^5.3|^6.0"
  437. },
  438. "suggest": {
  439. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  440. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  441. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  442. "ext-mongo": "Allow sending log messages to a MongoDB server",
  443. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  444. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  445. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  446. "php-console/php-console": "Allow sending log messages to Google Chrome",
  447. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  448. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  449. "sentry/sentry": "Allow sending log messages to a Sentry server"
  450. },
  451. "time": "2017-06-19T01:22:40+00:00",
  452. "type": "library",
  453. "extra": {
  454. "branch-alias": {
  455. "dev-master": "2.0.x-dev"
  456. }
  457. },
  458. "installation-source": "dist",
  459. "autoload": {
  460. "psr-4": {
  461. "Monolog\\": "src/Monolog"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Jordi Boggiano",
  471. "email": "j.boggiano@seld.be",
  472. "homepage": "http://seld.be"
  473. }
  474. ],
  475. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  476. "homepage": "http://github.com/Seldaek/monolog",
  477. "keywords": [
  478. "log",
  479. "logging",
  480. "psr-3"
  481. ]
  482. },
  483. {
  484. "name": "nesbot/carbon",
  485. "version": "1.32.0",
  486. "version_normalized": "1.32.0.0",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/briannesbitt/Carbon.git",
  490. "reference": "64563e2b9f69e4db1b82a60e81efa327a30ff343"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/64563e2b9f69e4db1b82a60e81efa327a30ff343",
  495. "reference": "64563e2b9f69e4db1b82a60e81efa327a30ff343",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "php": ">=5.3.9",
  500. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  501. },
  502. "require-dev": {
  503. "friendsofphp/php-cs-fixer": "~2",
  504. "phpunit/phpunit": "^4.8.35 || ^5.7"
  505. },
  506. "time": "2018-07-05T06:59:26+00:00",
  507. "type": "library",
  508. "extra": {
  509. "laravel": {
  510. "providers": [
  511. "Carbon\\Laravel\\ServiceProvider"
  512. ]
  513. }
  514. },
  515. "installation-source": "dist",
  516. "autoload": {
  517. "psr-4": {
  518. "": "src/"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "MIT"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Brian Nesbitt",
  528. "email": "brian@nesbot.com",
  529. "homepage": "http://nesbot.com"
  530. }
  531. ],
  532. "description": "A simple API extension for DateTime.",
  533. "homepage": "http://carbon.nesbot.com",
  534. "keywords": [
  535. "date",
  536. "datetime",
  537. "time"
  538. ]
  539. },
  540. {
  541. "name": "nette/mail",
  542. "version": "v2.4.5",
  543. "version_normalized": "2.4.5.0",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/nette/mail.git",
  547. "reference": "13312eb627d913f2630018a07a9e40cb7003dc76"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/nette/mail/zipball/13312eb627d913f2630018a07a9e40cb7003dc76",
  552. "reference": "13312eb627d913f2630018a07a9e40cb7003dc76",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "ext-iconv": "*",
  557. "nette/utils": "^2.4 || ~3.0.0",
  558. "php": ">=5.6.0"
  559. },
  560. "conflict": {
  561. "nette/nette": "<2.2"
  562. },
  563. "require-dev": {
  564. "nette/di": "^2.4 || ~3.0.0",
  565. "nette/tester": "^2.0",
  566. "tracy/tracy": "^2.4"
  567. },
  568. "suggest": {
  569. "ext-fileinfo": "to detect type of attached files"
  570. },
  571. "time": "2018-03-18T16:30:02+00:00",
  572. "type": "library",
  573. "extra": {
  574. "branch-alias": {
  575. "dev-master": "2.4-dev"
  576. }
  577. },
  578. "installation-source": "dist",
  579. "autoload": {
  580. "classmap": [
  581. "src/"
  582. ]
  583. },
  584. "notification-url": "https://packagist.org/downloads/",
  585. "license": [
  586. "BSD-3-Clause",
  587. "GPL-2.0",
  588. "GPL-3.0"
  589. ],
  590. "authors": [
  591. {
  592. "name": "David Grudl",
  593. "homepage": "https://davidgrudl.com"
  594. },
  595. {
  596. "name": "Nette Community",
  597. "homepage": "https://nette.org/contributors"
  598. }
  599. ],
  600. "description": "📧 Nette Mail: handy email creation and transfer library for PHP with both text and MIME-compliant support.",
  601. "homepage": "https://nette.org",
  602. "keywords": [
  603. "mail",
  604. "mailer",
  605. "mime",
  606. "nette",
  607. "smtp"
  608. ]
  609. },
  610. {
  611. "name": "nette/utils",
  612. "version": "v2.5.2",
  613. "version_normalized": "2.5.2.0",
  614. "source": {
  615. "type": "git",
  616. "url": "https://github.com/nette/utils.git",
  617. "reference": "183069866dc477fcfbac393ed486aaa6d93d19a5"
  618. },
  619. "dist": {
  620. "type": "zip",
  621. "url": "https://api.github.com/repos/nette/utils/zipball/183069866dc477fcfbac393ed486aaa6d93d19a5",
  622. "reference": "183069866dc477fcfbac393ed486aaa6d93d19a5",
  623. "shasum": ""
  624. },
  625. "require": {
  626. "php": ">=5.6.0"
  627. },
  628. "conflict": {
  629. "nette/nette": "<2.2"
  630. },
  631. "require-dev": {
  632. "nette/tester": "~2.0",
  633. "tracy/tracy": "^2.3"
  634. },
  635. "suggest": {
  636. "ext-gd": "to use Image",
  637. "ext-iconv": "to use Strings::webalize() and toAscii()",
  638. "ext-intl": "for script transliteration in Strings::webalize() and toAscii()",
  639. "ext-json": "to use Nette\\Utils\\Json",
  640. "ext-mbstring": "to use Strings::lower() etc...",
  641. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  642. },
  643. "time": "2018-05-02T17:16:08+00:00",
  644. "type": "library",
  645. "extra": {
  646. "branch-alias": {
  647. "dev-master": "2.5-dev"
  648. }
  649. },
  650. "installation-source": "dist",
  651. "autoload": {
  652. "classmap": [
  653. "src/"
  654. ],
  655. "files": [
  656. "src/loader.php"
  657. ]
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "BSD-3-Clause",
  662. "GPL-2.0",
  663. "GPL-3.0"
  664. ],
  665. "authors": [
  666. {
  667. "name": "David Grudl",
  668. "homepage": "https://davidgrudl.com"
  669. },
  670. {
  671. "name": "Nette Community",
  672. "homepage": "https://nette.org/contributors"
  673. }
  674. ],
  675. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  676. "homepage": "https://nette.org",
  677. "keywords": [
  678. "array",
  679. "core",
  680. "datetime",
  681. "images",
  682. "json",
  683. "nette",
  684. "paginator",
  685. "password",
  686. "slugify",
  687. "string",
  688. "unicode",
  689. "utf-8",
  690. "utility",
  691. "validation"
  692. ]
  693. },
  694. {
  695. "name": "phpfastcache/phpfastcache",
  696. "version": "6.1.3",
  697. "version_normalized": "6.1.3.0",
  698. "source": {
  699. "type": "git",
  700. "url": "https://github.com/PHPSocialNetwork/phpfastcache.git",
  701. "reference": "a1edf28ae8d847b692b6bee8cae867398ff7d2f2"
  702. },
  703. "dist": {
  704. "type": "zip",
  705. "url": "https://api.github.com/repos/PHPSocialNetwork/phpfastcache/zipball/a1edf28ae8d847b692b6bee8cae867398ff7d2f2",
  706. "reference": "a1edf28ae8d847b692b6bee8cae867398ff7d2f2",
  707. "shasum": ""
  708. },
  709. "require": {
  710. "ext-json": "*",
  711. "ext-mbstring": "*",
  712. "php": "^5.6 || ^7.0 || ^7.1 || ^7.2",
  713. "psr/cache": "~1.0.0",
  714. "psr/simple-cache": "~1.0.0"
  715. },
  716. "conflict": {
  717. "doctrine/couchdb": "*"
  718. },
  719. "suggest": {
  720. "ext-apc": "*",
  721. "ext-couchbase": "*",
  722. "ext-intl": "*",
  723. "ext-leveldb": "*",
  724. "ext-memcache": "*",
  725. "ext-memcached": "*",
  726. "ext-redis": "*",
  727. "ext-sqlite": "*",
  728. "ext-wincache": "*",
  729. "ext-xcache": "*",
  730. "mongodb/mongodb": "^1.1",
  731. "phpfastcache/couchdb": "~1.0.0",
  732. "phpfastcache/phpssdb": "~1.0.0",
  733. "predis/predis": "~1.1.0"
  734. },
  735. "time": "2018-06-08T13:27:13+00:00",
  736. "type": "library",
  737. "installation-source": "dist",
  738. "autoload": {
  739. "psr-4": {
  740. "phpFastCache\\": "src/phpFastCache/"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Khoa Bui",
  750. "email": "khoaofgod@gmail.com",
  751. "homepage": "http://www.phpfastcache.com",
  752. "role": "Developer"
  753. },
  754. {
  755. "name": "Georges.L",
  756. "email": "contact@geolim4.com",
  757. "homepage": "https://github.com/Geolim4",
  758. "role": "Developer"
  759. }
  760. ],
  761. "description": "PHP Cache Class - Reduce your database call using cache system. PhpFastCache handles a lot of drivers such as Apc(u), Cassandra, CouchBase, Couchdb, Mongodb, Files, (P)redis, Leveldb, Memcache(d), Ssdb, Sqlite, Wincache, Xcache, Zend Data Cache.",
  762. "homepage": "http://www.phpfastcache.com",
  763. "keywords": [
  764. "LevelDb",
  765. "apc",
  766. "apcu",
  767. "cache",
  768. "cache class",
  769. "caching",
  770. "cassandra",
  771. "cookie",
  772. "couchbase",
  773. "couchdb",
  774. "files cache",
  775. "memcache",
  776. "memcached",
  777. "mongodb",
  778. "mysql cache",
  779. "pdo cache",
  780. "php cache",
  781. "predis",
  782. "redis",
  783. "ssdb",
  784. "wincache",
  785. "xcache",
  786. "zend",
  787. "zend data cache",
  788. "zend disk cache",
  789. "zend memory cache",
  790. "zend server"
  791. ]
  792. },
  793. {
  794. "name": "predis/predis",
  795. "version": "v1.1.1",
  796. "version_normalized": "1.1.1.0",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/nrk/predis.git",
  800. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  805. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  806. "shasum": ""
  807. },
  808. "require": {
  809. "php": ">=5.3.9"
  810. },
  811. "require-dev": {
  812. "phpunit/phpunit": "~4.8"
  813. },
  814. "suggest": {
  815. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  816. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  817. },
  818. "time": "2016-06-16T16:22:20+00:00",
  819. "type": "library",
  820. "installation-source": "dist",
  821. "autoload": {
  822. "psr-4": {
  823. "Predis\\": "src/"
  824. }
  825. },
  826. "notification-url": "https://packagist.org/downloads/",
  827. "license": [
  828. "MIT"
  829. ],
  830. "authors": [
  831. {
  832. "name": "Daniele Alessandri",
  833. "email": "suppakilla@gmail.com",
  834. "homepage": "http://clorophilla.net"
  835. }
  836. ],
  837. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  838. "homepage": "http://github.com/nrk/predis",
  839. "keywords": [
  840. "nosql",
  841. "predis",
  842. "redis"
  843. ]
  844. },
  845. {
  846. "name": "psr/cache",
  847. "version": "1.0.1",
  848. "version_normalized": "1.0.1.0",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/php-fig/cache.git",
  852. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  857. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  858. "shasum": ""
  859. },
  860. "require": {
  861. "php": ">=5.3.0"
  862. },
  863. "time": "2016-08-06T20:24:11+00:00",
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-master": "1.0.x-dev"
  868. }
  869. },
  870. "installation-source": "dist",
  871. "autoload": {
  872. "psr-4": {
  873. "Psr\\Cache\\": "src/"
  874. }
  875. },
  876. "notification-url": "https://packagist.org/downloads/",
  877. "license": [
  878. "MIT"
  879. ],
  880. "authors": [
  881. {
  882. "name": "PHP-FIG",
  883. "homepage": "http://www.php-fig.org/"
  884. }
  885. ],
  886. "description": "Common interface for caching libraries",
  887. "keywords": [
  888. "cache",
  889. "psr",
  890. "psr-6"
  891. ]
  892. },
  893. {
  894. "name": "psr/container",
  895. "version": "1.0.0",
  896. "version_normalized": "1.0.0.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/php-fig/container.git",
  900. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  905. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "php": ">=5.3.0"
  910. },
  911. "time": "2017-02-14T16:28:37+00:00",
  912. "type": "library",
  913. "extra": {
  914. "branch-alias": {
  915. "dev-master": "1.0.x-dev"
  916. }
  917. },
  918. "installation-source": "dist",
  919. "autoload": {
  920. "psr-4": {
  921. "Psr\\Container\\": "src/"
  922. }
  923. },
  924. "notification-url": "https://packagist.org/downloads/",
  925. "license": [
  926. "MIT"
  927. ],
  928. "authors": [
  929. {
  930. "name": "PHP-FIG",
  931. "homepage": "http://www.php-fig.org/"
  932. }
  933. ],
  934. "description": "Common Container Interface (PHP FIG PSR-11)",
  935. "homepage": "https://github.com/php-fig/container",
  936. "keywords": [
  937. "PSR-11",
  938. "container",
  939. "container-interface",
  940. "container-interop",
  941. "psr"
  942. ]
  943. },
  944. {
  945. "name": "psr/log",
  946. "version": "1.0.2",
  947. "version_normalized": "1.0.2.0",
  948. "source": {
  949. "type": "git",
  950. "url": "https://github.com/php-fig/log.git",
  951. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  952. },
  953. "dist": {
  954. "type": "zip",
  955. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  956. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  957. "shasum": ""
  958. },
  959. "require": {
  960. "php": ">=5.3.0"
  961. },
  962. "time": "2016-10-10T12:19:37+00:00",
  963. "type": "library",
  964. "extra": {
  965. "branch-alias": {
  966. "dev-master": "1.0.x-dev"
  967. }
  968. },
  969. "installation-source": "dist",
  970. "autoload": {
  971. "psr-4": {
  972. "Psr\\Log\\": "Psr/Log/"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "PHP-FIG",
  982. "homepage": "http://www.php-fig.org/"
  983. }
  984. ],
  985. "description": "Common interface for logging libraries",
  986. "homepage": "https://github.com/php-fig/log",
  987. "keywords": [
  988. "log",
  989. "psr",
  990. "psr-3"
  991. ]
  992. },
  993. {
  994. "name": "psr/simple-cache",
  995. "version": "1.0.1",
  996. "version_normalized": "1.0.1.0",
  997. "source": {
  998. "type": "git",
  999. "url": "https://github.com/php-fig/simple-cache.git",
  1000. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1001. },
  1002. "dist": {
  1003. "type": "zip",
  1004. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1005. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1006. "shasum": ""
  1007. },
  1008. "require": {
  1009. "php": ">=5.3.0"
  1010. },
  1011. "time": "2017-10-23T01:57:42+00:00",
  1012. "type": "library",
  1013. "extra": {
  1014. "branch-alias": {
  1015. "dev-master": "1.0.x-dev"
  1016. }
  1017. },
  1018. "installation-source": "dist",
  1019. "autoload": {
  1020. "psr-4": {
  1021. "Psr\\SimpleCache\\": "src/"
  1022. }
  1023. },
  1024. "notification-url": "https://packagist.org/downloads/",
  1025. "license": [
  1026. "MIT"
  1027. ],
  1028. "authors": [
  1029. {
  1030. "name": "PHP-FIG",
  1031. "homepage": "http://www.php-fig.org/"
  1032. }
  1033. ],
  1034. "description": "Common interfaces for simple caching",
  1035. "keywords": [
  1036. "cache",
  1037. "caching",
  1038. "psr",
  1039. "psr-16",
  1040. "simple-cache"
  1041. ]
  1042. },
  1043. {
  1044. "name": "smarty/smarty",
  1045. "version": "v3.1.32",
  1046. "version_normalized": "3.1.32.0",
  1047. "source": {
  1048. "type": "git",
  1049. "url": "https://github.com/smarty-php/smarty.git",
  1050. "reference": "ac9d4b587e5bf53381e21881820a9830765cb459"
  1051. },
  1052. "dist": {
  1053. "type": "zip",
  1054. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/ac9d4b587e5bf53381e21881820a9830765cb459",
  1055. "reference": "ac9d4b587e5bf53381e21881820a9830765cb459",
  1056. "shasum": ""
  1057. },
  1058. "require": {
  1059. "php": ">=5.2"
  1060. },
  1061. "time": "2018-04-24T14:53:33+00:00",
  1062. "type": "library",
  1063. "extra": {
  1064. "branch-alias": {
  1065. "dev-master": "3.1.x-dev"
  1066. }
  1067. },
  1068. "installation-source": "dist",
  1069. "autoload": {
  1070. "files": [
  1071. "libs/bootstrap.php"
  1072. ]
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "LGPL-3.0"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Monte Ohrt",
  1081. "email": "monte@ohrt.com"
  1082. },
  1083. {
  1084. "name": "Uwe Tews",
  1085. "email": "uwe.tews@googlemail.com"
  1086. },
  1087. {
  1088. "name": "Rodney Rehm",
  1089. "email": "rodney.rehm@medialize.de"
  1090. }
  1091. ],
  1092. "description": "Smarty - the compiling PHP template engine",
  1093. "homepage": "http://www.smarty.net",
  1094. "keywords": [
  1095. "templating"
  1096. ]
  1097. },
  1098. {
  1099. "name": "symfony/polyfill-mbstring",
  1100. "version": "v1.8.0",
  1101. "version_normalized": "1.8.0.0",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1105. "reference": "3296adf6a6454a050679cde90f95350ad604b171"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
  1110. "reference": "3296adf6a6454a050679cde90f95350ad604b171",
  1111. "shasum": ""
  1112. },
  1113. "require": {
  1114. "php": ">=5.3.3"
  1115. },
  1116. "suggest": {
  1117. "ext-mbstring": "For best performance"
  1118. },
  1119. "time": "2018-04-26T10:06:28+00:00",
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "1.8-dev"
  1124. }
  1125. },
  1126. "installation-source": "dist",
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Symfony\\Polyfill\\Mbstring\\": ""
  1130. },
  1131. "files": [
  1132. "bootstrap.php"
  1133. ]
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Nicolas Grekas",
  1142. "email": "p@tchwork.com"
  1143. },
  1144. {
  1145. "name": "Symfony Community",
  1146. "homepage": "https://symfony.com/contributors"
  1147. }
  1148. ],
  1149. "description": "Symfony polyfill for the Mbstring extension",
  1150. "homepage": "https://symfony.com",
  1151. "keywords": [
  1152. "compatibility",
  1153. "mbstring",
  1154. "polyfill",
  1155. "portable",
  1156. "shim"
  1157. ]
  1158. },
  1159. {
  1160. "name": "symfony/translation",
  1161. "version": "v3.4.12",
  1162. "version_normalized": "3.4.12.0",
  1163. "source": {
  1164. "type": "git",
  1165. "url": "https://github.com/symfony/translation.git",
  1166. "reference": "7047f725e35eab768137c677f8c38e4a2a8e38fb"
  1167. },
  1168. "dist": {
  1169. "type": "zip",
  1170. "url": "https://api.github.com/repos/symfony/translation/zipball/7047f725e35eab768137c677f8c38e4a2a8e38fb",
  1171. "reference": "7047f725e35eab768137c677f8c38e4a2a8e38fb",
  1172. "shasum": ""
  1173. },
  1174. "require": {
  1175. "php": "^5.5.9|>=7.0.8",
  1176. "symfony/polyfill-mbstring": "~1.0"
  1177. },
  1178. "conflict": {
  1179. "symfony/config": "<2.8",
  1180. "symfony/dependency-injection": "<3.4",
  1181. "symfony/yaml": "<3.4"
  1182. },
  1183. "require-dev": {
  1184. "psr/log": "~1.0",
  1185. "symfony/config": "~2.8|~3.0|~4.0",
  1186. "symfony/dependency-injection": "~3.4|~4.0",
  1187. "symfony/finder": "~2.8|~3.0|~4.0",
  1188. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  1189. "symfony/yaml": "~3.4|~4.0"
  1190. },
  1191. "suggest": {
  1192. "psr/log-implementation": "To use logging capability in translator",
  1193. "symfony/config": "",
  1194. "symfony/yaml": ""
  1195. },
  1196. "time": "2018-05-21T10:06:52+00:00",
  1197. "type": "library",
  1198. "extra": {
  1199. "branch-alias": {
  1200. "dev-master": "3.4-dev"
  1201. }
  1202. },
  1203. "installation-source": "dist",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Symfony\\Component\\Translation\\": ""
  1207. },
  1208. "exclude-from-classmap": [
  1209. "/Tests/"
  1210. ]
  1211. },
  1212. "notification-url": "https://packagist.org/downloads/",
  1213. "license": [
  1214. "MIT"
  1215. ],
  1216. "authors": [
  1217. {
  1218. "name": "Fabien Potencier",
  1219. "email": "fabien@symfony.com"
  1220. },
  1221. {
  1222. "name": "Symfony Community",
  1223. "homepage": "https://symfony.com/contributors"
  1224. }
  1225. ],
  1226. "description": "Symfony Translation Component",
  1227. "homepage": "https://symfony.com"
  1228. }
  1229. ]