composer.lock 84 KB

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