composer.lock 84 KB

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