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