composer.lock 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "620010b4a6c5f00f26dd7a5230eff84d",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.0.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "b17e6153cb7f33c7e44eb59578dc12eee5dc8e12"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b17e6153cb7f33c7e44eb59578dc12eee5dc8e12",
  20. "reference": "b17e6153cb7f33c7e44eb59578dc12eee5dc8e12",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.5",
  30. "psr/log": "^1.0",
  31. "symfony/process": "^2.5 || ^3.0"
  32. },
  33. "suggest": {
  34. "symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Composer\\CaBundle\\": "src"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Jordi Boggiano",
  54. "email": "[email protected]",
  55. "homepage": "http://seld.be"
  56. }
  57. ],
  58. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  59. "keywords": [
  60. "cabundle",
  61. "cacert",
  62. "certificate",
  63. "ssl",
  64. "tls"
  65. ],
  66. "time": "2017-03-06T11:59:08+00:00"
  67. },
  68. {
  69. "name": "doctrine/annotations",
  70. "version": "v1.2.7",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/doctrine/annotations.git",
  74. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  79. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "doctrine/lexer": "1.*",
  84. "php": ">=5.3.2"
  85. },
  86. "require-dev": {
  87. "doctrine/cache": "1.*",
  88. "phpunit/phpunit": "4.*"
  89. },
  90. "type": "library",
  91. "extra": {
  92. "branch-alias": {
  93. "dev-master": "1.3.x-dev"
  94. }
  95. },
  96. "autoload": {
  97. "psr-0": {
  98. "Doctrine\\Common\\Annotations\\": "lib/"
  99. }
  100. },
  101. "notification-url": "https://packagist.org/downloads/",
  102. "license": [
  103. "MIT"
  104. ],
  105. "authors": [
  106. {
  107. "name": "Roman Borschel",
  108. "email": "[email protected]"
  109. },
  110. {
  111. "name": "Benjamin Eberlei",
  112. "email": "[email protected]"
  113. },
  114. {
  115. "name": "Guilherme Blanco",
  116. "email": "[email protected]"
  117. },
  118. {
  119. "name": "Jonathan Wage",
  120. "email": "[email protected]"
  121. },
  122. {
  123. "name": "Johannes Schmitt",
  124. "email": "[email protected]"
  125. }
  126. ],
  127. "description": "Docblock Annotations Parser",
  128. "homepage": "http://www.doctrine-project.org",
  129. "keywords": [
  130. "annotations",
  131. "docblock",
  132. "parser"
  133. ],
  134. "time": "2015-08-31T12:32:49+00:00"
  135. },
  136. {
  137. "name": "doctrine/cache",
  138. "version": "v1.6.1",
  139. "source": {
  140. "type": "git",
  141. "url": "https://github.com/doctrine/cache.git",
  142. "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3"
  143. },
  144. "dist": {
  145. "type": "zip",
  146. "url": "https://api.github.com/repos/doctrine/cache/zipball/b6f544a20f4807e81f7044d31e679ccbb1866dc3",
  147. "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3",
  148. "shasum": ""
  149. },
  150. "require": {
  151. "php": "~5.5|~7.0"
  152. },
  153. "conflict": {
  154. "doctrine/common": ">2.2,<2.4"
  155. },
  156. "require-dev": {
  157. "phpunit/phpunit": "~4.8|~5.0",
  158. "predis/predis": "~1.0",
  159. "satooshi/php-coveralls": "~0.6"
  160. },
  161. "type": "library",
  162. "extra": {
  163. "branch-alias": {
  164. "dev-master": "1.6.x-dev"
  165. }
  166. },
  167. "autoload": {
  168. "psr-4": {
  169. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "MIT"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Roman Borschel",
  179. "email": "[email protected]"
  180. },
  181. {
  182. "name": "Benjamin Eberlei",
  183. "email": "[email protected]"
  184. },
  185. {
  186. "name": "Guilherme Blanco",
  187. "email": "[email protected]"
  188. },
  189. {
  190. "name": "Jonathan Wage",
  191. "email": "[email protected]"
  192. },
  193. {
  194. "name": "Johannes Schmitt",
  195. "email": "[email protected]"
  196. }
  197. ],
  198. "description": "Caching library offering an object-oriented API for many cache backends",
  199. "homepage": "http://www.doctrine-project.org",
  200. "keywords": [
  201. "cache",
  202. "caching"
  203. ],
  204. "time": "2016-10-29T11:16:17+00:00"
  205. },
  206. {
  207. "name": "doctrine/collections",
  208. "version": "v1.3.0",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/doctrine/collections.git",
  212. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  217. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "php": ">=5.3.2"
  222. },
  223. "require-dev": {
  224. "phpunit/phpunit": "~4.0"
  225. },
  226. "type": "library",
  227. "extra": {
  228. "branch-alias": {
  229. "dev-master": "1.2.x-dev"
  230. }
  231. },
  232. "autoload": {
  233. "psr-0": {
  234. "Doctrine\\Common\\Collections\\": "lib/"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Roman Borschel",
  244. "email": "[email protected]"
  245. },
  246. {
  247. "name": "Benjamin Eberlei",
  248. "email": "[email protected]"
  249. },
  250. {
  251. "name": "Guilherme Blanco",
  252. "email": "[email protected]"
  253. },
  254. {
  255. "name": "Jonathan Wage",
  256. "email": "[email protected]"
  257. },
  258. {
  259. "name": "Johannes Schmitt",
  260. "email": "[email protected]"
  261. }
  262. ],
  263. "description": "Collections Abstraction library",
  264. "homepage": "http://www.doctrine-project.org",
  265. "keywords": [
  266. "array",
  267. "collections",
  268. "iterator"
  269. ],
  270. "time": "2015-04-14T22:21:58+00:00"
  271. },
  272. {
  273. "name": "doctrine/common",
  274. "version": "v2.6.2",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/doctrine/common.git",
  278. "reference": "7bce00698899aa2c06fe7365c76e4d78ddb15fa3"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/doctrine/common/zipball/7bce00698899aa2c06fe7365c76e4d78ddb15fa3",
  283. "reference": "7bce00698899aa2c06fe7365c76e4d78ddb15fa3",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "doctrine/annotations": "1.*",
  288. "doctrine/cache": "1.*",
  289. "doctrine/collections": "1.*",
  290. "doctrine/inflector": "1.*",
  291. "doctrine/lexer": "1.*",
  292. "php": "~5.5|~7.0"
  293. },
  294. "require-dev": {
  295. "phpunit/phpunit": "~4.8|~5.0"
  296. },
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-master": "2.7.x-dev"
  301. }
  302. },
  303. "autoload": {
  304. "psr-4": {
  305. "Doctrine\\Common\\": "lib/Doctrine/Common"
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "Roman Borschel",
  315. "email": "[email protected]"
  316. },
  317. {
  318. "name": "Benjamin Eberlei",
  319. "email": "[email protected]"
  320. },
  321. {
  322. "name": "Guilherme Blanco",
  323. "email": "[email protected]"
  324. },
  325. {
  326. "name": "Jonathan Wage",
  327. "email": "[email protected]"
  328. },
  329. {
  330. "name": "Johannes Schmitt",
  331. "email": "[email protected]"
  332. }
  333. ],
  334. "description": "Common Library for Doctrine projects",
  335. "homepage": "http://www.doctrine-project.org",
  336. "keywords": [
  337. "annotations",
  338. "collections",
  339. "eventmanager",
  340. "persistence",
  341. "spl"
  342. ],
  343. "time": "2016-11-30T16:50:46+00:00"
  344. },
  345. {
  346. "name": "doctrine/dbal",
  347. "version": "v2.5.12",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/doctrine/dbal.git",
  351. "reference": "7b9e911f9d8b30d43b96853dab26898c710d8f44"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/doctrine/dbal/zipball/7b9e911f9d8b30d43b96853dab26898c710d8f44",
  356. "reference": "7b9e911f9d8b30d43b96853dab26898c710d8f44",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "doctrine/common": ">=2.4,<2.8-dev",
  361. "php": ">=5.3.2"
  362. },
  363. "require-dev": {
  364. "phpunit/phpunit": "4.*",
  365. "symfony/console": "2.*||^3.0"
  366. },
  367. "suggest": {
  368. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  369. },
  370. "bin": [
  371. "bin/doctrine-dbal"
  372. ],
  373. "type": "library",
  374. "extra": {
  375. "branch-alias": {
  376. "dev-master": "2.5.x-dev"
  377. }
  378. },
  379. "autoload": {
  380. "psr-0": {
  381. "Doctrine\\DBAL\\": "lib/"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "MIT"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Roman Borschel",
  391. "email": "[email protected]"
  392. },
  393. {
  394. "name": "Benjamin Eberlei",
  395. "email": "[email protected]"
  396. },
  397. {
  398. "name": "Guilherme Blanco",
  399. "email": "[email protected]"
  400. },
  401. {
  402. "name": "Jonathan Wage",
  403. "email": "[email protected]"
  404. }
  405. ],
  406. "description": "Database Abstraction Layer",
  407. "homepage": "http://www.doctrine-project.org",
  408. "keywords": [
  409. "database",
  410. "dbal",
  411. "persistence",
  412. "queryobject"
  413. ],
  414. "time": "2017-02-08T12:53:47+00:00"
  415. },
  416. {
  417. "name": "doctrine/doctrine-bundle",
  418. "version": "1.6.8",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/doctrine/DoctrineBundle.git",
  422. "reference": "6e96577cbbdbb5b6dcca2ff203d665976b51beb0"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/6e96577cbbdbb5b6dcca2ff203d665976b51beb0",
  427. "reference": "6e96577cbbdbb5b6dcca2ff203d665976b51beb0",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "doctrine/dbal": "~2.3",
  432. "doctrine/doctrine-cache-bundle": "~1.2",
  433. "jdorn/sql-formatter": "~1.1",
  434. "php": ">=5.5.9",
  435. "symfony/console": "~2.7|~3.0|~4.0",
  436. "symfony/dependency-injection": "~2.7|~3.0|~4.0",
  437. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  438. "symfony/framework-bundle": "~2.7|~3.0|~4.0"
  439. },
  440. "require-dev": {
  441. "doctrine/orm": "~2.3",
  442. "phpunit/phpunit": "~4",
  443. "satooshi/php-coveralls": "^1.0",
  444. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  445. "symfony/property-info": "~2.8|~3.0|~4.0",
  446. "symfony/validator": "~2.7|~3.0|~4.0",
  447. "symfony/yaml": "~2.7|~3.0|~4.0",
  448. "twig/twig": "~1.12|~2.0"
  449. },
  450. "suggest": {
  451. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  452. "symfony/web-profiler-bundle": "To use the data collector."
  453. },
  454. "type": "symfony-bundle",
  455. "extra": {
  456. "branch-alias": {
  457. "dev-master": "1.6.x-dev"
  458. }
  459. },
  460. "autoload": {
  461. "psr-4": {
  462. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  463. }
  464. },
  465. "notification-url": "https://packagist.org/downloads/",
  466. "license": [
  467. "MIT"
  468. ],
  469. "authors": [
  470. {
  471. "name": "Symfony Community",
  472. "homepage": "http://symfony.com/contributors"
  473. },
  474. {
  475. "name": "Benjamin Eberlei",
  476. "email": "[email protected]"
  477. },
  478. {
  479. "name": "Doctrine Project",
  480. "homepage": "http://www.doctrine-project.org/"
  481. },
  482. {
  483. "name": "Fabien Potencier",
  484. "email": "[email protected]"
  485. }
  486. ],
  487. "description": "Symfony DoctrineBundle",
  488. "homepage": "http://www.doctrine-project.org",
  489. "keywords": [
  490. "database",
  491. "dbal",
  492. "orm",
  493. "persistence"
  494. ],
  495. "time": "2017-05-18T08:15:18+00:00"
  496. },
  497. {
  498. "name": "doctrine/doctrine-cache-bundle",
  499. "version": "1.3.0",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  503. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  508. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "doctrine/cache": "^1.4.2",
  513. "doctrine/inflector": "~1.0",
  514. "php": ">=5.3.2",
  515. "symfony/doctrine-bridge": "~2.2|~3.0"
  516. },
  517. "require-dev": {
  518. "instaclick/coding-standard": "~1.1",
  519. "instaclick/object-calisthenics-sniffs": "dev-master",
  520. "instaclick/symfony2-coding-standard": "dev-remaster",
  521. "phpunit/phpunit": "~4",
  522. "predis/predis": "~0.8",
  523. "satooshi/php-coveralls": "~0.6.1",
  524. "squizlabs/php_codesniffer": "~1.5",
  525. "symfony/console": "~2.2|~3.0",
  526. "symfony/finder": "~2.2|~3.0",
  527. "symfony/framework-bundle": "~2.2|~3.0",
  528. "symfony/phpunit-bridge": "~2.7|~3.0",
  529. "symfony/security-acl": "~2.3|~3.0",
  530. "symfony/validator": "~2.2|~3.0",
  531. "symfony/yaml": "~2.2|~3.0"
  532. },
  533. "suggest": {
  534. "symfony/security-acl": "For using this bundle to cache ACLs"
  535. },
  536. "type": "symfony-bundle",
  537. "extra": {
  538. "branch-alias": {
  539. "dev-master": "1.2.x-dev"
  540. }
  541. },
  542. "autoload": {
  543. "psr-4": {
  544. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  545. }
  546. },
  547. "notification-url": "https://packagist.org/downloads/",
  548. "license": [
  549. "MIT"
  550. ],
  551. "authors": [
  552. {
  553. "name": "Symfony Community",
  554. "homepage": "http://symfony.com/contributors"
  555. },
  556. {
  557. "name": "Benjamin Eberlei",
  558. "email": "[email protected]"
  559. },
  560. {
  561. "name": "Fabio B. Silva",
  562. "email": "[email protected]"
  563. },
  564. {
  565. "name": "Guilherme Blanco",
  566. "email": "[email protected]"
  567. },
  568. {
  569. "name": "Doctrine Project",
  570. "homepage": "http://www.doctrine-project.org/"
  571. },
  572. {
  573. "name": "Fabien Potencier",
  574. "email": "[email protected]"
  575. }
  576. ],
  577. "description": "Symfony Bundle for Doctrine Cache",
  578. "homepage": "http://www.doctrine-project.org",
  579. "keywords": [
  580. "cache",
  581. "caching"
  582. ],
  583. "time": "2016-01-26T17:28:51+00:00"
  584. },
  585. {
  586. "name": "doctrine/inflector",
  587. "version": "v1.1.0",
  588. "source": {
  589. "type": "git",
  590. "url": "https://github.com/doctrine/inflector.git",
  591. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  592. },
  593. "dist": {
  594. "type": "zip",
  595. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  596. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  597. "shasum": ""
  598. },
  599. "require": {
  600. "php": ">=5.3.2"
  601. },
  602. "require-dev": {
  603. "phpunit/phpunit": "4.*"
  604. },
  605. "type": "library",
  606. "extra": {
  607. "branch-alias": {
  608. "dev-master": "1.1.x-dev"
  609. }
  610. },
  611. "autoload": {
  612. "psr-0": {
  613. "Doctrine\\Common\\Inflector\\": "lib/"
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "MIT"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Roman Borschel",
  623. "email": "[email protected]"
  624. },
  625. {
  626. "name": "Benjamin Eberlei",
  627. "email": "[email protected]"
  628. },
  629. {
  630. "name": "Guilherme Blanco",
  631. "email": "[email protected]"
  632. },
  633. {
  634. "name": "Jonathan Wage",
  635. "email": "[email protected]"
  636. },
  637. {
  638. "name": "Johannes Schmitt",
  639. "email": "[email protected]"
  640. }
  641. ],
  642. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  643. "homepage": "http://www.doctrine-project.org",
  644. "keywords": [
  645. "inflection",
  646. "pluralize",
  647. "singularize",
  648. "string"
  649. ],
  650. "time": "2015-11-06T14:35:42+00:00"
  651. },
  652. {
  653. "name": "doctrine/instantiator",
  654. "version": "1.0.5",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/doctrine/instantiator.git",
  658. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  663. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  664. "shasum": ""
  665. },
  666. "require": {
  667. "php": ">=5.3,<8.0-DEV"
  668. },
  669. "require-dev": {
  670. "athletic/athletic": "~0.1.8",
  671. "ext-pdo": "*",
  672. "ext-phar": "*",
  673. "phpunit/phpunit": "~4.0",
  674. "squizlabs/php_codesniffer": "~2.0"
  675. },
  676. "type": "library",
  677. "extra": {
  678. "branch-alias": {
  679. "dev-master": "1.0.x-dev"
  680. }
  681. },
  682. "autoload": {
  683. "psr-4": {
  684. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Marco Pivetta",
  694. "email": "[email protected]",
  695. "homepage": "http://ocramius.github.com/"
  696. }
  697. ],
  698. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  699. "homepage": "https://github.com/doctrine/instantiator",
  700. "keywords": [
  701. "constructor",
  702. "instantiate"
  703. ],
  704. "time": "2015-06-14T21:17:01+00:00"
  705. },
  706. {
  707. "name": "doctrine/lexer",
  708. "version": "v1.0.1",
  709. "source": {
  710. "type": "git",
  711. "url": "https://github.com/doctrine/lexer.git",
  712. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  713. },
  714. "dist": {
  715. "type": "zip",
  716. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  717. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  718. "shasum": ""
  719. },
  720. "require": {
  721. "php": ">=5.3.2"
  722. },
  723. "type": "library",
  724. "extra": {
  725. "branch-alias": {
  726. "dev-master": "1.0.x-dev"
  727. }
  728. },
  729. "autoload": {
  730. "psr-0": {
  731. "Doctrine\\Common\\Lexer\\": "lib/"
  732. }
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "MIT"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Roman Borschel",
  741. "email": "[email protected]"
  742. },
  743. {
  744. "name": "Guilherme Blanco",
  745. "email": "[email protected]"
  746. },
  747. {
  748. "name": "Johannes Schmitt",
  749. "email": "[email protected]"
  750. }
  751. ],
  752. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  753. "homepage": "http://www.doctrine-project.org",
  754. "keywords": [
  755. "lexer",
  756. "parser"
  757. ],
  758. "time": "2014-09-09T13:34:57+00:00"
  759. },
  760. {
  761. "name": "doctrine/orm",
  762. "version": "v2.5.6",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/doctrine/doctrine2.git",
  766. "reference": "e6c434196c8ef058239aaa0724b4aadb0107940b"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/e6c434196c8ef058239aaa0724b4aadb0107940b",
  771. "reference": "e6c434196c8ef058239aaa0724b4aadb0107940b",
  772. "shasum": ""
  773. },
  774. "require": {
  775. "doctrine/cache": "~1.4",
  776. "doctrine/collections": "~1.2",
  777. "doctrine/common": ">=2.5-dev,<2.8-dev",
  778. "doctrine/dbal": ">=2.5-dev,<2.6-dev",
  779. "doctrine/instantiator": "~1.0.1",
  780. "ext-pdo": "*",
  781. "php": ">=5.4",
  782. "symfony/console": "~2.5|~3.0"
  783. },
  784. "require-dev": {
  785. "phpunit/phpunit": "~4.0",
  786. "symfony/yaml": "~2.3|~3.0"
  787. },
  788. "suggest": {
  789. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  790. },
  791. "bin": [
  792. "bin/doctrine",
  793. "bin/doctrine.php"
  794. ],
  795. "type": "library",
  796. "extra": {
  797. "branch-alias": {
  798. "dev-master": "2.6.x-dev"
  799. }
  800. },
  801. "autoload": {
  802. "psr-0": {
  803. "Doctrine\\ORM\\": "lib/"
  804. }
  805. },
  806. "notification-url": "https://packagist.org/downloads/",
  807. "license": [
  808. "MIT"
  809. ],
  810. "authors": [
  811. {
  812. "name": "Roman Borschel",
  813. "email": "[email protected]"
  814. },
  815. {
  816. "name": "Benjamin Eberlei",
  817. "email": "[email protected]"
  818. },
  819. {
  820. "name": "Guilherme Blanco",
  821. "email": "[email protected]"
  822. },
  823. {
  824. "name": "Jonathan Wage",
  825. "email": "[email protected]"
  826. }
  827. ],
  828. "description": "Object-Relational-Mapper for PHP",
  829. "homepage": "http://www.doctrine-project.org",
  830. "keywords": [
  831. "database",
  832. "orm"
  833. ],
  834. "time": "2016-12-18T15:42:34+00:00"
  835. },
  836. {
  837. "name": "fig/link-util",
  838. "version": "1.0.0",
  839. "source": {
  840. "type": "git",
  841. "url": "https://github.com/php-fig/link-util.git",
  842. "reference": "1a07821801a148be4add11ab0603e4af55a72fac"
  843. },
  844. "dist": {
  845. "type": "zip",
  846. "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac",
  847. "reference": "1a07821801a148be4add11ab0603e4af55a72fac",
  848. "shasum": ""
  849. },
  850. "require": {
  851. "php": ">=5.5.0",
  852. "psr/link": "~1.0@dev"
  853. },
  854. "require-dev": {
  855. "phpunit/phpunit": "^5.1",
  856. "squizlabs/php_codesniffer": "^2.3.1"
  857. },
  858. "type": "library",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "1.0.x-dev"
  862. }
  863. },
  864. "autoload": {
  865. "psr-4": {
  866. "Fig\\Link\\": "src/"
  867. }
  868. },
  869. "notification-url": "https://packagist.org/downloads/",
  870. "license": [
  871. "MIT"
  872. ],
  873. "authors": [
  874. {
  875. "name": "PHP-FIG",
  876. "homepage": "http://www.php-fig.org/"
  877. }
  878. ],
  879. "description": "Common utility implementations for HTTP links",
  880. "keywords": [
  881. "http",
  882. "http-link",
  883. "link",
  884. "psr",
  885. "psr-13",
  886. "rest"
  887. ],
  888. "time": "2016-10-17T18:31:11+00:00"
  889. },
  890. {
  891. "name": "incenteev/composer-parameter-handler",
  892. "version": "v2.1.2",
  893. "source": {
  894. "type": "git",
  895. "url": "https://github.com/Incenteev/ParameterHandler.git",
  896. "reference": "d7ce7f06136109e81d1cb9d57066c4d4a99cf1cc"
  897. },
  898. "dist": {
  899. "type": "zip",
  900. "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/d7ce7f06136109e81d1cb9d57066c4d4a99cf1cc",
  901. "reference": "d7ce7f06136109e81d1cb9d57066c4d4a99cf1cc",
  902. "shasum": ""
  903. },
  904. "require": {
  905. "php": ">=5.3.3",
  906. "symfony/yaml": "~2.3|~3.0"
  907. },
  908. "require-dev": {
  909. "composer/composer": "1.0.*@dev",
  910. "phpspec/prophecy-phpunit": "~1.0",
  911. "symfony/filesystem": "~2.2"
  912. },
  913. "type": "library",
  914. "extra": {
  915. "branch-alias": {
  916. "dev-master": "2.1.x-dev"
  917. }
  918. },
  919. "autoload": {
  920. "psr-4": {
  921. "Incenteev\\ParameterHandler\\": ""
  922. }
  923. },
  924. "notification-url": "https://packagist.org/downloads/",
  925. "license": [
  926. "MIT"
  927. ],
  928. "authors": [
  929. {
  930. "name": "Christophe Coevoet",
  931. "email": "[email protected]"
  932. }
  933. ],
  934. "description": "Composer script handling your ignored parameter file",
  935. "homepage": "https://github.com/Incenteev/ParameterHandler",
  936. "keywords": [
  937. "parameters management"
  938. ],
  939. "time": "2015-11-10T17:04:01+00:00"
  940. },
  941. {
  942. "name": "jdorn/sql-formatter",
  943. "version": "v1.2.17",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/jdorn/sql-formatter.git",
  947. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  952. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "php": ">=5.2.4"
  957. },
  958. "require-dev": {
  959. "phpunit/phpunit": "3.7.*"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "1.3.x-dev"
  965. }
  966. },
  967. "autoload": {
  968. "classmap": [
  969. "lib"
  970. ]
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Jeremy Dorn",
  979. "email": "[email protected]",
  980. "homepage": "http://jeremydorn.com/"
  981. }
  982. ],
  983. "description": "a PHP SQL highlighting library",
  984. "homepage": "https://github.com/jdorn/sql-formatter/",
  985. "keywords": [
  986. "highlight",
  987. "sql"
  988. ],
  989. "time": "2014-01-12T16:20:24+00:00"
  990. },
  991. {
  992. "name": "monolog/monolog",
  993. "version": "1.22.1",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/Seldaek/monolog.git",
  997. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1e044bc4b34e91743943479f1be7a1d5eb93add0",
  1002. "reference": "1e044bc4b34e91743943479f1be7a1d5eb93add0",
  1003. "shasum": ""
  1004. },
  1005. "require": {
  1006. "php": ">=5.3.0",
  1007. "psr/log": "~1.0"
  1008. },
  1009. "provide": {
  1010. "psr/log-implementation": "1.0.0"
  1011. },
  1012. "require-dev": {
  1013. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1014. "doctrine/couchdb": "~1.0@dev",
  1015. "graylog2/gelf-php": "~1.0",
  1016. "jakub-onderka/php-parallel-lint": "0.9",
  1017. "php-amqplib/php-amqplib": "~2.4",
  1018. "php-console/php-console": "^3.1.3",
  1019. "phpunit/phpunit": "~4.5",
  1020. "phpunit/phpunit-mock-objects": "2.3.0",
  1021. "ruflin/elastica": ">=0.90 <3.0",
  1022. "sentry/sentry": "^0.13",
  1023. "swiftmailer/swiftmailer": "~5.3"
  1024. },
  1025. "suggest": {
  1026. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1027. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1028. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1029. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1030. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1031. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1032. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1033. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1034. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1035. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1036. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1037. },
  1038. "type": "library",
  1039. "extra": {
  1040. "branch-alias": {
  1041. "dev-master": "2.0.x-dev"
  1042. }
  1043. },
  1044. "autoload": {
  1045. "psr-4": {
  1046. "Monolog\\": "src/Monolog"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "MIT"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Jordi Boggiano",
  1056. "email": "[email protected]",
  1057. "homepage": "http://seld.be"
  1058. }
  1059. ],
  1060. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1061. "homepage": "http://github.com/Seldaek/monolog",
  1062. "keywords": [
  1063. "log",
  1064. "logging",
  1065. "psr-3"
  1066. ],
  1067. "time": "2017-03-13T07:08:03+00:00"
  1068. },
  1069. {
  1070. "name": "paragonie/random_compat",
  1071. "version": "v2.0.10",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/paragonie/random_compat.git",
  1075. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  1080. "reference": "634bae8e911eefa89c1abfbf1b66da679ac8f54d",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "php": ">=5.2.0"
  1085. },
  1086. "require-dev": {
  1087. "phpunit/phpunit": "4.*|5.*"
  1088. },
  1089. "suggest": {
  1090. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1091. },
  1092. "type": "library",
  1093. "autoload": {
  1094. "files": [
  1095. "lib/random.php"
  1096. ]
  1097. },
  1098. "notification-url": "https://packagist.org/downloads/",
  1099. "license": [
  1100. "MIT"
  1101. ],
  1102. "authors": [
  1103. {
  1104. "name": "Paragon Initiative Enterprises",
  1105. "email": "[email protected]",
  1106. "homepage": "https://paragonie.com"
  1107. }
  1108. ],
  1109. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1110. "keywords": [
  1111. "csprng",
  1112. "pseudorandom",
  1113. "random"
  1114. ],
  1115. "time": "2017-03-13T16:27:32+00:00"
  1116. },
  1117. {
  1118. "name": "psr/cache",
  1119. "version": "1.0.1",
  1120. "source": {
  1121. "type": "git",
  1122. "url": "https://github.com/php-fig/cache.git",
  1123. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1124. },
  1125. "dist": {
  1126. "type": "zip",
  1127. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1128. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1129. "shasum": ""
  1130. },
  1131. "require": {
  1132. "php": ">=5.3.0"
  1133. },
  1134. "type": "library",
  1135. "extra": {
  1136. "branch-alias": {
  1137. "dev-master": "1.0.x-dev"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Psr\\Cache\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "PHP-FIG",
  1152. "homepage": "http://www.php-fig.org/"
  1153. }
  1154. ],
  1155. "description": "Common interface for caching libraries",
  1156. "keywords": [
  1157. "cache",
  1158. "psr",
  1159. "psr-6"
  1160. ],
  1161. "time": "2016-08-06T20:24:11+00:00"
  1162. },
  1163. {
  1164. "name": "psr/container",
  1165. "version": "1.0.0",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/php-fig/container.git",
  1169. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1174. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "php": ">=5.3.0"
  1179. },
  1180. "type": "library",
  1181. "extra": {
  1182. "branch-alias": {
  1183. "dev-master": "1.0.x-dev"
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-4": {
  1188. "Psr\\Container\\": "src/"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "PHP-FIG",
  1198. "homepage": "http://www.php-fig.org/"
  1199. }
  1200. ],
  1201. "description": "Common Container Interface (PHP FIG PSR-11)",
  1202. "homepage": "https://github.com/php-fig/container",
  1203. "keywords": [
  1204. "PSR-11",
  1205. "container",
  1206. "container-interface",
  1207. "container-interop",
  1208. "psr"
  1209. ],
  1210. "time": "2017-02-14T16:28:37+00:00"
  1211. },
  1212. {
  1213. "name": "psr/link",
  1214. "version": "1.0.0",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/php-fig/link.git",
  1218. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1223. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": ">=5.3.0"
  1228. },
  1229. "type": "library",
  1230. "extra": {
  1231. "branch-alias": {
  1232. "dev-master": "1.0.x-dev"
  1233. }
  1234. },
  1235. "autoload": {
  1236. "psr-4": {
  1237. "Psr\\Link\\": "src/"
  1238. }
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "authors": [
  1245. {
  1246. "name": "PHP-FIG",
  1247. "homepage": "http://www.php-fig.org/"
  1248. }
  1249. ],
  1250. "description": "Common interfaces for HTTP links",
  1251. "keywords": [
  1252. "http",
  1253. "http-link",
  1254. "link",
  1255. "psr",
  1256. "psr-13",
  1257. "rest"
  1258. ],
  1259. "time": "2016-10-28T16:06:13+00:00"
  1260. },
  1261. {
  1262. "name": "psr/log",
  1263. "version": "1.0.2",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/php-fig/log.git",
  1267. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1272. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "php": ">=5.3.0"
  1277. },
  1278. "type": "library",
  1279. "extra": {
  1280. "branch-alias": {
  1281. "dev-master": "1.0.x-dev"
  1282. }
  1283. },
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Psr\\Log\\": "Psr/Log/"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "PHP-FIG",
  1296. "homepage": "http://www.php-fig.org/"
  1297. }
  1298. ],
  1299. "description": "Common interface for logging libraries",
  1300. "homepage": "https://github.com/php-fig/log",
  1301. "keywords": [
  1302. "log",
  1303. "psr",
  1304. "psr-3"
  1305. ],
  1306. "time": "2016-10-10T12:19:37+00:00"
  1307. },
  1308. {
  1309. "name": "psr/simple-cache",
  1310. "version": "1.0.0",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/php-fig/simple-cache.git",
  1314. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24",
  1319. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "php": ">=5.3.0"
  1324. },
  1325. "type": "library",
  1326. "extra": {
  1327. "branch-alias": {
  1328. "dev-master": "1.0.x-dev"
  1329. }
  1330. },
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Psr\\SimpleCache\\": "src/"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "PHP-FIG",
  1343. "homepage": "http://www.php-fig.org/"
  1344. }
  1345. ],
  1346. "description": "Common interfaces for simple caching",
  1347. "keywords": [
  1348. "cache",
  1349. "caching",
  1350. "psr",
  1351. "psr-16",
  1352. "simple-cache"
  1353. ],
  1354. "time": "2017-01-02T13:31:39+00:00"
  1355. },
  1356. {
  1357. "name": "sensio/distribution-bundle",
  1358. "version": "v5.0.20",
  1359. "source": {
  1360. "type": "git",
  1361. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  1362. "reference": "4b019d4c0bd64438c42e4b6b0726085b409be8d9"
  1363. },
  1364. "dist": {
  1365. "type": "zip",
  1366. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/4b019d4c0bd64438c42e4b6b0726085b409be8d9",
  1367. "reference": "4b019d4c0bd64438c42e4b6b0726085b409be8d9",
  1368. "shasum": ""
  1369. },
  1370. "require": {
  1371. "php": ">=5.3.9",
  1372. "sensiolabs/security-checker": "~3.0|~4.0",
  1373. "symfony/class-loader": "~2.3|~3.0",
  1374. "symfony/config": "~2.3|~3.0",
  1375. "symfony/dependency-injection": "~2.3|~3.0",
  1376. "symfony/filesystem": "~2.3|~3.0",
  1377. "symfony/http-kernel": "~2.3|~3.0",
  1378. "symfony/process": "~2.3|~3.0"
  1379. },
  1380. "type": "symfony-bundle",
  1381. "extra": {
  1382. "branch-alias": {
  1383. "dev-master": "5.0.x-dev"
  1384. }
  1385. },
  1386. "autoload": {
  1387. "psr-4": {
  1388. "Sensio\\Bundle\\DistributionBundle\\": ""
  1389. }
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "MIT"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "Fabien Potencier",
  1398. "email": "[email protected]"
  1399. }
  1400. ],
  1401. "description": "Base bundle for Symfony Distributions",
  1402. "keywords": [
  1403. "configuration",
  1404. "distribution"
  1405. ],
  1406. "time": "2017-05-11T16:21:03+00:00"
  1407. },
  1408. {
  1409. "name": "sensio/framework-extra-bundle",
  1410. "version": "v3.0.26",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  1414. "reference": "6d6cbe971554f0a2cc84965850481eb04a2a0059"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/6d6cbe971554f0a2cc84965850481eb04a2a0059",
  1419. "reference": "6d6cbe971554f0a2cc84965850481eb04a2a0059",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "doctrine/common": "~2.2",
  1424. "symfony/dependency-injection": "~2.3|~3.0",
  1425. "symfony/framework-bundle": "~2.3|~3.0"
  1426. },
  1427. "require-dev": {
  1428. "doctrine/doctrine-bundle": "~1.5",
  1429. "doctrine/orm": "~2.4,>=2.4.5",
  1430. "symfony/asset": "~2.7|~3.0",
  1431. "symfony/browser-kit": "~2.3|~3.0",
  1432. "symfony/dom-crawler": "~2.3|~3.0",
  1433. "symfony/expression-language": "~2.4|~3.0",
  1434. "symfony/finder": "~2.3|~3.0",
  1435. "symfony/phpunit-bridge": "~3.2",
  1436. "symfony/psr-http-message-bridge": "^0.3",
  1437. "symfony/security-bundle": "~2.4|~3.0",
  1438. "symfony/templating": "~2.3|~3.0",
  1439. "symfony/translation": "~2.3|~3.0",
  1440. "symfony/twig-bundle": "~2.3|~3.0",
  1441. "symfony/yaml": "~2.3|~3.0",
  1442. "twig/twig": "~1.12|~2.0",
  1443. "zendframework/zend-diactoros": "^1.3"
  1444. },
  1445. "suggest": {
  1446. "symfony/expression-language": "",
  1447. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  1448. "symfony/security-bundle": ""
  1449. },
  1450. "type": "symfony-bundle",
  1451. "extra": {
  1452. "branch-alias": {
  1453. "dev-master": "3.0.x-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Fabien Potencier",
  1468. "email": "[email protected]"
  1469. }
  1470. ],
  1471. "description": "This bundle provides a way to configure your controllers with annotations",
  1472. "keywords": [
  1473. "annotations",
  1474. "controllers"
  1475. ],
  1476. "time": "2017-05-11T17:01:57+00:00"
  1477. },
  1478. {
  1479. "name": "sensiolabs/security-checker",
  1480. "version": "v4.0.4",
  1481. "source": {
  1482. "type": "git",
  1483. "url": "https://github.com/sensiolabs/security-checker.git",
  1484. "reference": "9e69eddf3bc49d1ee5c7908564da3141796d4bbc"
  1485. },
  1486. "dist": {
  1487. "type": "zip",
  1488. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/9e69eddf3bc49d1ee5c7908564da3141796d4bbc",
  1489. "reference": "9e69eddf3bc49d1ee5c7908564da3141796d4bbc",
  1490. "shasum": ""
  1491. },
  1492. "require": {
  1493. "composer/ca-bundle": "^1.0",
  1494. "symfony/console": "~2.7|~3.0"
  1495. },
  1496. "bin": [
  1497. "security-checker"
  1498. ],
  1499. "type": "library",
  1500. "extra": {
  1501. "branch-alias": {
  1502. "dev-master": "4.0-dev"
  1503. }
  1504. },
  1505. "autoload": {
  1506. "psr-0": {
  1507. "SensioLabs\\Security": ""
  1508. }
  1509. },
  1510. "notification-url": "https://packagist.org/downloads/",
  1511. "license": [
  1512. "MIT"
  1513. ],
  1514. "authors": [
  1515. {
  1516. "name": "Fabien Potencier",
  1517. "email": "[email protected]"
  1518. }
  1519. ],
  1520. "description": "A security checker for your composer.lock",
  1521. "time": "2017-03-31T14:50:32+00:00"
  1522. },
  1523. {
  1524. "name": "swiftmailer/swiftmailer",
  1525. "version": "v5.4.8",
  1526. "source": {
  1527. "type": "git",
  1528. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1529. "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517"
  1530. },
  1531. "dist": {
  1532. "type": "zip",
  1533. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/9a06dc570a0367850280eefd3f1dc2da45aef517",
  1534. "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517",
  1535. "shasum": ""
  1536. },
  1537. "require": {
  1538. "php": ">=5.3.3"
  1539. },
  1540. "require-dev": {
  1541. "mockery/mockery": "~0.9.1",
  1542. "symfony/phpunit-bridge": "~3.2"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "5.4-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "files": [
  1552. "lib/swift_required.php"
  1553. ]
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Chris Corbyn"
  1562. },
  1563. {
  1564. "name": "Fabien Potencier",
  1565. "email": "[email protected]"
  1566. }
  1567. ],
  1568. "description": "Swiftmailer, free feature-rich PHP mailer",
  1569. "homepage": "http://swiftmailer.org",
  1570. "keywords": [
  1571. "email",
  1572. "mail",
  1573. "mailer"
  1574. ],
  1575. "time": "2017-05-01T15:54:03+00:00"
  1576. },
  1577. {
  1578. "name": "symfony/monolog-bundle",
  1579. "version": "v3.1.0",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/symfony/monolog-bundle.git",
  1583. "reference": "6f96c7dbb6b2ef70b307a1a6f897153cbca3da47"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/6f96c7dbb6b2ef70b307a1a6f897153cbca3da47",
  1588. "reference": "6f96c7dbb6b2ef70b307a1a6f897153cbca3da47",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "monolog/monolog": "~1.22",
  1593. "php": ">=5.3.2",
  1594. "symfony/config": "~2.7|~3.0",
  1595. "symfony/dependency-injection": "~2.7|~3.0",
  1596. "symfony/http-kernel": "~2.7|~3.0",
  1597. "symfony/monolog-bridge": "~2.7|~3.0"
  1598. },
  1599. "require-dev": {
  1600. "phpunit/phpunit": "^4.8",
  1601. "symfony/console": "~2.3|~3.0",
  1602. "symfony/yaml": "~2.3|~3.0"
  1603. },
  1604. "type": "symfony-bundle",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-master": "3.x-dev"
  1608. }
  1609. },
  1610. "autoload": {
  1611. "psr-4": {
  1612. "Symfony\\Bundle\\MonologBundle\\": ""
  1613. }
  1614. },
  1615. "notification-url": "https://packagist.org/downloads/",
  1616. "license": [
  1617. "MIT"
  1618. ],
  1619. "authors": [
  1620. {
  1621. "name": "Symfony Community",
  1622. "homepage": "http://symfony.com/contributors"
  1623. },
  1624. {
  1625. "name": "Fabien Potencier",
  1626. "email": "[email protected]"
  1627. }
  1628. ],
  1629. "description": "Symfony MonologBundle",
  1630. "homepage": "http://symfony.com",
  1631. "keywords": [
  1632. "log",
  1633. "logging"
  1634. ],
  1635. "time": "2017-03-26T11:55:59+00:00"
  1636. },
  1637. {
  1638. "name": "symfony/polyfill-apcu",
  1639. "version": "v1.3.0",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/symfony/polyfill-apcu.git",
  1643. "reference": "5d4474f447403c3348e37b70acc2b95475b7befa"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/5d4474f447403c3348e37b70acc2b95475b7befa",
  1648. "reference": "5d4474f447403c3348e37b70acc2b95475b7befa",
  1649. "shasum": ""
  1650. },
  1651. "require": {
  1652. "php": ">=5.3.3"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "branch-alias": {
  1657. "dev-master": "1.3-dev"
  1658. }
  1659. },
  1660. "autoload": {
  1661. "files": [
  1662. "bootstrap.php"
  1663. ]
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Nicolas Grekas",
  1672. "email": "[email protected]"
  1673. },
  1674. {
  1675. "name": "Symfony Community",
  1676. "homepage": "https://symfony.com/contributors"
  1677. }
  1678. ],
  1679. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  1680. "homepage": "https://symfony.com",
  1681. "keywords": [
  1682. "apcu",
  1683. "compatibility",
  1684. "polyfill",
  1685. "portable",
  1686. "shim"
  1687. ],
  1688. "time": "2016-11-14T01:06:16+00:00"
  1689. },
  1690. {
  1691. "name": "symfony/polyfill-intl-icu",
  1692. "version": "v1.3.0",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  1696. "reference": "2d6e2b20d457603eefb6e614286c22efca30fdb4"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/2d6e2b20d457603eefb6e614286c22efca30fdb4",
  1701. "reference": "2d6e2b20d457603eefb6e614286c22efca30fdb4",
  1702. "shasum": ""
  1703. },
  1704. "require": {
  1705. "php": ">=5.3.3",
  1706. "symfony/intl": "~2.3|~3.0"
  1707. },
  1708. "suggest": {
  1709. "ext-intl": "For best performance"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "1.3-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "files": [
  1719. "bootstrap.php"
  1720. ]
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Nicolas Grekas",
  1729. "email": "[email protected]"
  1730. },
  1731. {
  1732. "name": "Symfony Community",
  1733. "homepage": "https://symfony.com/contributors"
  1734. }
  1735. ],
  1736. "description": "Symfony polyfill for intl's ICU-related data and classes",
  1737. "homepage": "https://symfony.com",
  1738. "keywords": [
  1739. "compatibility",
  1740. "icu",
  1741. "intl",
  1742. "polyfill",
  1743. "portable",
  1744. "shim"
  1745. ],
  1746. "time": "2016-11-14T01:06:16+00:00"
  1747. },
  1748. {
  1749. "name": "symfony/polyfill-mbstring",
  1750. "version": "v1.3.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1754. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/e79d363049d1c2128f133a2667e4f4190904f7f4",
  1759. "reference": "e79d363049d1c2128f133a2667e4f4190904f7f4",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "php": ">=5.3.3"
  1764. },
  1765. "suggest": {
  1766. "ext-mbstring": "For best performance"
  1767. },
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "1.3-dev"
  1772. }
  1773. },
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Symfony\\Polyfill\\Mbstring\\": ""
  1777. },
  1778. "files": [
  1779. "bootstrap.php"
  1780. ]
  1781. },
  1782. "notification-url": "https://packagist.org/downloads/",
  1783. "license": [
  1784. "MIT"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "Nicolas Grekas",
  1789. "email": "[email protected]"
  1790. },
  1791. {
  1792. "name": "Symfony Community",
  1793. "homepage": "https://symfony.com/contributors"
  1794. }
  1795. ],
  1796. "description": "Symfony polyfill for the Mbstring extension",
  1797. "homepage": "https://symfony.com",
  1798. "keywords": [
  1799. "compatibility",
  1800. "mbstring",
  1801. "polyfill",
  1802. "portable",
  1803. "shim"
  1804. ],
  1805. "time": "2016-11-14T01:06:16+00:00"
  1806. },
  1807. {
  1808. "name": "symfony/polyfill-php56",
  1809. "version": "v1.3.0",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/symfony/polyfill-php56.git",
  1813. "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/1dd42b9b89556f18092f3d1ada22cb05ac85383c",
  1818. "reference": "1dd42b9b89556f18092f3d1ada22cb05ac85383c",
  1819. "shasum": ""
  1820. },
  1821. "require": {
  1822. "php": ">=5.3.3",
  1823. "symfony/polyfill-util": "~1.0"
  1824. },
  1825. "type": "library",
  1826. "extra": {
  1827. "branch-alias": {
  1828. "dev-master": "1.3-dev"
  1829. }
  1830. },
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Symfony\\Polyfill\\Php56\\": ""
  1834. },
  1835. "files": [
  1836. "bootstrap.php"
  1837. ]
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT"
  1842. ],
  1843. "authors": [
  1844. {
  1845. "name": "Nicolas Grekas",
  1846. "email": "[email protected]"
  1847. },
  1848. {
  1849. "name": "Symfony Community",
  1850. "homepage": "https://symfony.com/contributors"
  1851. }
  1852. ],
  1853. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  1854. "homepage": "https://symfony.com",
  1855. "keywords": [
  1856. "compatibility",
  1857. "polyfill",
  1858. "portable",
  1859. "shim"
  1860. ],
  1861. "time": "2016-11-14T01:06:16+00:00"
  1862. },
  1863. {
  1864. "name": "symfony/polyfill-php70",
  1865. "version": "v1.3.0",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/symfony/polyfill-php70.git",
  1869. "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/13ce343935f0f91ca89605a2f6ca6f5c2f3faac2",
  1874. "reference": "13ce343935f0f91ca89605a2f6ca6f5c2f3faac2",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "paragonie/random_compat": "~1.0|~2.0",
  1879. "php": ">=5.3.3"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "branch-alias": {
  1884. "dev-master": "1.3-dev"
  1885. }
  1886. },
  1887. "autoload": {
  1888. "psr-4": {
  1889. "Symfony\\Polyfill\\Php70\\": ""
  1890. },
  1891. "files": [
  1892. "bootstrap.php"
  1893. ],
  1894. "classmap": [
  1895. "Resources/stubs"
  1896. ]
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Nicolas Grekas",
  1905. "email": "[email protected]"
  1906. },
  1907. {
  1908. "name": "Symfony Community",
  1909. "homepage": "https://symfony.com/contributors"
  1910. }
  1911. ],
  1912. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1913. "homepage": "https://symfony.com",
  1914. "keywords": [
  1915. "compatibility",
  1916. "polyfill",
  1917. "portable",
  1918. "shim"
  1919. ],
  1920. "time": "2016-11-14T01:06:16+00:00"
  1921. },
  1922. {
  1923. "name": "symfony/polyfill-util",
  1924. "version": "v1.3.0",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/symfony/polyfill-util.git",
  1928. "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/746bce0fca664ac0a575e465f65c6643faddf7fb",
  1933. "reference": "746bce0fca664ac0a575e465f65c6643faddf7fb",
  1934. "shasum": ""
  1935. },
  1936. "require": {
  1937. "php": ">=5.3.3"
  1938. },
  1939. "type": "library",
  1940. "extra": {
  1941. "branch-alias": {
  1942. "dev-master": "1.3-dev"
  1943. }
  1944. },
  1945. "autoload": {
  1946. "psr-4": {
  1947. "Symfony\\Polyfill\\Util\\": ""
  1948. }
  1949. },
  1950. "notification-url": "https://packagist.org/downloads/",
  1951. "license": [
  1952. "MIT"
  1953. ],
  1954. "authors": [
  1955. {
  1956. "name": "Nicolas Grekas",
  1957. "email": "[email protected]"
  1958. },
  1959. {
  1960. "name": "Symfony Community",
  1961. "homepage": "https://symfony.com/contributors"
  1962. }
  1963. ],
  1964. "description": "Symfony utilities for portability of PHP codes",
  1965. "homepage": "https://symfony.com",
  1966. "keywords": [
  1967. "compat",
  1968. "compatibility",
  1969. "polyfill",
  1970. "shim"
  1971. ],
  1972. "time": "2016-11-14T01:06:16+00:00"
  1973. },
  1974. {
  1975. "name": "symfony/swiftmailer-bundle",
  1976. "version": "v2.6.2",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  1980. "reference": "deabc81120c2086571f7c4484ab785c5e1b84f75"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/deabc81120c2086571f7c4484ab785c5e1b84f75",
  1985. "reference": "deabc81120c2086571f7c4484ab785c5e1b84f75",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "php": ">=5.3.2",
  1990. "swiftmailer/swiftmailer": "~4.2|~5.0",
  1991. "symfony/config": "~2.7|~3.0",
  1992. "symfony/dependency-injection": "~2.7|~3.0",
  1993. "symfony/http-kernel": "~2.7|~3.0"
  1994. },
  1995. "require-dev": {
  1996. "symfony/console": "~2.7|~3.0",
  1997. "symfony/framework-bundle": "~2.7|~3.0",
  1998. "symfony/phpunit-bridge": "~3.3@dev",
  1999. "symfony/yaml": "~2.7|~3.0"
  2000. },
  2001. "suggest": {
  2002. "psr/log": "Allows logging"
  2003. },
  2004. "type": "symfony-bundle",
  2005. "extra": {
  2006. "branch-alias": {
  2007. "dev-master": "2.6-dev"
  2008. }
  2009. },
  2010. "autoload": {
  2011. "psr-4": {
  2012. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  2013. }
  2014. },
  2015. "notification-url": "https://packagist.org/downloads/",
  2016. "license": [
  2017. "MIT"
  2018. ],
  2019. "authors": [
  2020. {
  2021. "name": "Symfony Community",
  2022. "homepage": "http://symfony.com/contributors"
  2023. },
  2024. {
  2025. "name": "Fabien Potencier",
  2026. "email": "[email protected]"
  2027. }
  2028. ],
  2029. "description": "Symfony SwiftmailerBundle",
  2030. "homepage": "http://symfony.com",
  2031. "time": "2017-05-22T04:58:24+00:00"
  2032. },
  2033. {
  2034. "name": "symfony/symfony",
  2035. "version": "v3.3.0",
  2036. "source": {
  2037. "type": "git",
  2038. "url": "https://github.com/symfony/symfony.git",
  2039. "reference": "5a7e31c48e7cd4831efa409fffb661beb9995174"
  2040. },
  2041. "dist": {
  2042. "type": "zip",
  2043. "url": "https://api.github.com/repos/symfony/symfony/zipball/5a7e31c48e7cd4831efa409fffb661beb9995174",
  2044. "reference": "5a7e31c48e7cd4831efa409fffb661beb9995174",
  2045. "shasum": ""
  2046. },
  2047. "require": {
  2048. "doctrine/common": "~2.4",
  2049. "fig/link-util": "^1.0",
  2050. "php": ">=5.5.9",
  2051. "psr/cache": "~1.0",
  2052. "psr/container": "^1.0",
  2053. "psr/link": "^1.0",
  2054. "psr/log": "~1.0",
  2055. "psr/simple-cache": "^1.0",
  2056. "symfony/polyfill-intl-icu": "~1.0",
  2057. "symfony/polyfill-mbstring": "~1.0",
  2058. "symfony/polyfill-php56": "~1.0",
  2059. "symfony/polyfill-php70": "~1.0",
  2060. "symfony/polyfill-util": "~1.0",
  2061. "twig/twig": "~1.32|~2.2"
  2062. },
  2063. "conflict": {
  2064. "phpdocumentor/reflection-docblock": "<3.0",
  2065. "phpdocumentor/type-resolver": "<0.2.0",
  2066. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2067. },
  2068. "provide": {
  2069. "psr/cache-implementation": "1.0",
  2070. "psr/container-implementation": "1.0",
  2071. "psr/simple-cache-implementation": "1.0"
  2072. },
  2073. "replace": {
  2074. "symfony/asset": "self.version",
  2075. "symfony/browser-kit": "self.version",
  2076. "symfony/cache": "self.version",
  2077. "symfony/class-loader": "self.version",
  2078. "symfony/config": "self.version",
  2079. "symfony/console": "self.version",
  2080. "symfony/css-selector": "self.version",
  2081. "symfony/debug": "self.version",
  2082. "symfony/debug-bundle": "self.version",
  2083. "symfony/dependency-injection": "self.version",
  2084. "symfony/doctrine-bridge": "self.version",
  2085. "symfony/dom-crawler": "self.version",
  2086. "symfony/dotenv": "self.version",
  2087. "symfony/event-dispatcher": "self.version",
  2088. "symfony/expression-language": "self.version",
  2089. "symfony/filesystem": "self.version",
  2090. "symfony/finder": "self.version",
  2091. "symfony/form": "self.version",
  2092. "symfony/framework-bundle": "self.version",
  2093. "symfony/http-foundation": "self.version",
  2094. "symfony/http-kernel": "self.version",
  2095. "symfony/inflector": "self.version",
  2096. "symfony/intl": "self.version",
  2097. "symfony/ldap": "self.version",
  2098. "symfony/monolog-bridge": "self.version",
  2099. "symfony/options-resolver": "self.version",
  2100. "symfony/process": "self.version",
  2101. "symfony/property-access": "self.version",
  2102. "symfony/property-info": "self.version",
  2103. "symfony/proxy-manager-bridge": "self.version",
  2104. "symfony/routing": "self.version",
  2105. "symfony/security": "self.version",
  2106. "symfony/security-bundle": "self.version",
  2107. "symfony/security-core": "self.version",
  2108. "symfony/security-csrf": "self.version",
  2109. "symfony/security-guard": "self.version",
  2110. "symfony/security-http": "self.version",
  2111. "symfony/serializer": "self.version",
  2112. "symfony/stopwatch": "self.version",
  2113. "symfony/templating": "self.version",
  2114. "symfony/translation": "self.version",
  2115. "symfony/twig-bridge": "self.version",
  2116. "symfony/twig-bundle": "self.version",
  2117. "symfony/validator": "self.version",
  2118. "symfony/var-dumper": "self.version",
  2119. "symfony/web-link": "self.version",
  2120. "symfony/web-profiler-bundle": "self.version",
  2121. "symfony/web-server-bundle": "self.version",
  2122. "symfony/workflow": "self.version",
  2123. "symfony/yaml": "self.version"
  2124. },
  2125. "require-dev": {
  2126. "cache/integration-tests": "dev-master",
  2127. "doctrine/cache": "~1.6",
  2128. "doctrine/data-fixtures": "1.0.*",
  2129. "doctrine/dbal": "~2.4",
  2130. "doctrine/doctrine-bundle": "~1.4",
  2131. "doctrine/orm": "~2.4,>=2.4.5",
  2132. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  2133. "monolog/monolog": "~1.11",
  2134. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  2135. "phpdocumentor/reflection-docblock": "^3.0",
  2136. "predis/predis": "~1.0",
  2137. "sensio/framework-extra-bundle": "^3.0.2",
  2138. "symfony/phpunit-bridge": "~3.2",
  2139. "symfony/polyfill-apcu": "~1.1",
  2140. "symfony/security-acl": "~2.8|~3.0"
  2141. },
  2142. "type": "library",
  2143. "extra": {
  2144. "branch-alias": {
  2145. "dev-master": "3.3-dev"
  2146. }
  2147. },
  2148. "autoload": {
  2149. "psr-4": {
  2150. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  2151. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  2152. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  2153. "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/",
  2154. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  2155. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  2156. "Symfony\\Component\\": "src/Symfony/Component/"
  2157. },
  2158. "classmap": [
  2159. "src/Symfony/Component/Intl/Resources/stubs"
  2160. ],
  2161. "exclude-from-classmap": [
  2162. "**/Tests/"
  2163. ]
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Fabien Potencier",
  2172. "email": "[email protected]"
  2173. },
  2174. {
  2175. "name": "Symfony Community",
  2176. "homepage": "https://symfony.com/contributors"
  2177. }
  2178. ],
  2179. "description": "The Symfony PHP framework",
  2180. "homepage": "https://symfony.com",
  2181. "keywords": [
  2182. "framework"
  2183. ],
  2184. "time": "2017-05-29T21:02:32+00:00"
  2185. },
  2186. {
  2187. "name": "twig/twig",
  2188. "version": "v1.33.2",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/twigphp/Twig.git",
  2192. "reference": "dd6ca96227917e1e85b41c7c3cc6507b411e0927"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/twigphp/Twig/zipball/dd6ca96227917e1e85b41c7c3cc6507b411e0927",
  2197. "reference": "dd6ca96227917e1e85b41c7c3cc6507b411e0927",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": ">=5.2.7"
  2202. },
  2203. "require-dev": {
  2204. "psr/container": "^1.0",
  2205. "symfony/debug": "~2.7",
  2206. "symfony/phpunit-bridge": "~3.3@dev"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "1.33-dev"
  2212. }
  2213. },
  2214. "autoload": {
  2215. "psr-0": {
  2216. "Twig_": "lib/"
  2217. }
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "BSD-3-Clause"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "Fabien Potencier",
  2226. "email": "[email protected]",
  2227. "homepage": "http://fabien.potencier.org",
  2228. "role": "Lead Developer"
  2229. },
  2230. {
  2231. "name": "Armin Ronacher",
  2232. "email": "[email protected]",
  2233. "role": "Project Founder"
  2234. },
  2235. {
  2236. "name": "Twig Team",
  2237. "homepage": "http://twig.sensiolabs.org/contributors",
  2238. "role": "Contributors"
  2239. }
  2240. ],
  2241. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2242. "homepage": "http://twig.sensiolabs.org",
  2243. "keywords": [
  2244. "templating"
  2245. ],
  2246. "time": "2017-04-20T17:39:48+00:00"
  2247. }
  2248. ],
  2249. "packages-dev": [
  2250. {
  2251. "name": "sensio/generator-bundle",
  2252. "version": "v3.1.4",
  2253. "source": {
  2254. "type": "git",
  2255. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2256. "reference": "37f9f4e165b033fb76cc2320838321cc57140e65"
  2257. },
  2258. "dist": {
  2259. "type": "zip",
  2260. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/37f9f4e165b033fb76cc2320838321cc57140e65",
  2261. "reference": "37f9f4e165b033fb76cc2320838321cc57140e65",
  2262. "shasum": ""
  2263. },
  2264. "require": {
  2265. "symfony/console": "~2.7|~3.0",
  2266. "symfony/framework-bundle": "~2.7|~3.0",
  2267. "symfony/process": "~2.7|~3.0",
  2268. "symfony/yaml": "~2.7|~3.0",
  2269. "twig/twig": "^1.28.2|^2.0"
  2270. },
  2271. "require-dev": {
  2272. "doctrine/orm": "~2.4",
  2273. "symfony/doctrine-bridge": "~2.7|~3.0",
  2274. "symfony/filesystem": "~2.7|~3.0",
  2275. "symfony/phpunit-bridge": "^3.3"
  2276. },
  2277. "type": "symfony-bundle",
  2278. "extra": {
  2279. "branch-alias": {
  2280. "dev-master": "3.1.x-dev"
  2281. }
  2282. },
  2283. "autoload": {
  2284. "psr-4": {
  2285. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2286. },
  2287. "exclude-from-classmap": [
  2288. "/Tests/"
  2289. ]
  2290. },
  2291. "notification-url": "https://packagist.org/downloads/",
  2292. "license": [
  2293. "MIT"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Fabien Potencier",
  2298. "email": "[email protected]"
  2299. }
  2300. ],
  2301. "description": "This bundle generates code for you",
  2302. "time": "2017-03-15T01:02:10+00:00"
  2303. },
  2304. {
  2305. "name": "symfony/phpunit-bridge",
  2306. "version": "v3.3.0",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/symfony/phpunit-bridge.git",
  2310. "reference": "1a09124ea479cca85fc66a6f21e59aa952ebed1f"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/1a09124ea479cca85fc66a6f21e59aa952ebed1f",
  2315. "reference": "1a09124ea479cca85fc66a6f21e59aa952ebed1f",
  2316. "shasum": ""
  2317. },
  2318. "require": {
  2319. "php": ">=5.3.3"
  2320. },
  2321. "conflict": {
  2322. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2323. },
  2324. "suggest": {
  2325. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  2326. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  2327. },
  2328. "bin": [
  2329. "bin/simple-phpunit"
  2330. ],
  2331. "type": "symfony-bridge",
  2332. "extra": {
  2333. "branch-alias": {
  2334. "dev-master": "3.3-dev"
  2335. }
  2336. },
  2337. "autoload": {
  2338. "files": [
  2339. "bootstrap.php"
  2340. ],
  2341. "psr-4": {
  2342. "Symfony\\Bridge\\PhpUnit\\": ""
  2343. },
  2344. "exclude-from-classmap": [
  2345. "/Tests/"
  2346. ]
  2347. },
  2348. "notification-url": "https://packagist.org/downloads/",
  2349. "license": [
  2350. "MIT"
  2351. ],
  2352. "authors": [
  2353. {
  2354. "name": "Nicolas Grekas",
  2355. "email": "[email protected]"
  2356. },
  2357. {
  2358. "name": "Symfony Community",
  2359. "homepage": "https://symfony.com/contributors"
  2360. }
  2361. ],
  2362. "description": "Symfony PHPUnit Bridge",
  2363. "homepage": "https://symfony.com",
  2364. "time": "2017-05-28T11:10:04+00:00"
  2365. }
  2366. ],
  2367. "aliases": [],
  2368. "minimum-stability": "stable",
  2369. "stability-flags": [],
  2370. "prefer-stable": false,
  2371. "prefer-lowest": false,
  2372. "platform": {
  2373. "php": ">=5.5.9"
  2374. },
  2375. "platform-dev": [],
  2376. "platform-overrides": {
  2377. "php": "5.5.9"
  2378. }
  2379. }