composer.lock 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457
  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#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "036e5b9d151aa22a434c86edc27a10cf",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "46afded9720f40b9dc63542af4e3e43a1177acb0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/46afded9720f40b9dc63542af4e3e43a1177acb0",
  20. "reference": "46afded9720f40b9dc63542af4e3e43a1177acb0",
  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-08-08T08:57:40+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.17",
  1074. "source": {
  1075. "type": "git",
  1076. "url": "https://github.com/paragonie/random_compat.git",
  1077. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  1078. },
  1079. "dist": {
  1080. "type": "zip",
  1081. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  1082. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  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. "polyfill",
  1115. "pseudorandom",
  1116. "random"
  1117. ],
  1118. "time": "2018-07-04T16:31:37+00:00"
  1119. },
  1120. {
  1121. "name": "psr/cache",
  1122. "version": "1.0.1",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/php-fig/cache.git",
  1126. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1131. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1132. "shasum": ""
  1133. },
  1134. "require": {
  1135. "php": ">=5.3.0"
  1136. },
  1137. "type": "library",
  1138. "extra": {
  1139. "branch-alias": {
  1140. "dev-master": "1.0.x-dev"
  1141. }
  1142. },
  1143. "autoload": {
  1144. "psr-4": {
  1145. "Psr\\Cache\\": "src/"
  1146. }
  1147. },
  1148. "notification-url": "https://packagist.org/downloads/",
  1149. "license": [
  1150. "MIT"
  1151. ],
  1152. "authors": [
  1153. {
  1154. "name": "PHP-FIG",
  1155. "homepage": "http://www.php-fig.org/"
  1156. }
  1157. ],
  1158. "description": "Common interface for caching libraries",
  1159. "keywords": [
  1160. "cache",
  1161. "psr",
  1162. "psr-6"
  1163. ],
  1164. "time": "2016-08-06T20:24:11+00:00"
  1165. },
  1166. {
  1167. "name": "psr/container",
  1168. "version": "1.0.0",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/php-fig/container.git",
  1172. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1177. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1178. "shasum": ""
  1179. },
  1180. "require": {
  1181. "php": ">=5.3.0"
  1182. },
  1183. "type": "library",
  1184. "extra": {
  1185. "branch-alias": {
  1186. "dev-master": "1.0.x-dev"
  1187. }
  1188. },
  1189. "autoload": {
  1190. "psr-4": {
  1191. "Psr\\Container\\": "src/"
  1192. }
  1193. },
  1194. "notification-url": "https://packagist.org/downloads/",
  1195. "license": [
  1196. "MIT"
  1197. ],
  1198. "authors": [
  1199. {
  1200. "name": "PHP-FIG",
  1201. "homepage": "http://www.php-fig.org/"
  1202. }
  1203. ],
  1204. "description": "Common Container Interface (PHP FIG PSR-11)",
  1205. "homepage": "https://github.com/php-fig/container",
  1206. "keywords": [
  1207. "PSR-11",
  1208. "container",
  1209. "container-interface",
  1210. "container-interop",
  1211. "psr"
  1212. ],
  1213. "time": "2017-02-14T16:28:37+00:00"
  1214. },
  1215. {
  1216. "name": "psr/link",
  1217. "version": "1.0.0",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/php-fig/link.git",
  1221. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1226. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "php": ">=5.3.0"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-master": "1.0.x-dev"
  1236. }
  1237. },
  1238. "autoload": {
  1239. "psr-4": {
  1240. "Psr\\Link\\": "src/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "PHP-FIG",
  1250. "homepage": "http://www.php-fig.org/"
  1251. }
  1252. ],
  1253. "description": "Common interfaces for HTTP links",
  1254. "keywords": [
  1255. "http",
  1256. "http-link",
  1257. "link",
  1258. "psr",
  1259. "psr-13",
  1260. "rest"
  1261. ],
  1262. "time": "2016-10-28T16:06:13+00:00"
  1263. },
  1264. {
  1265. "name": "psr/log",
  1266. "version": "1.0.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/php-fig/log.git",
  1270. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1275. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": ">=5.3.0"
  1280. },
  1281. "type": "library",
  1282. "extra": {
  1283. "branch-alias": {
  1284. "dev-master": "1.0.x-dev"
  1285. }
  1286. },
  1287. "autoload": {
  1288. "psr-4": {
  1289. "Psr\\Log\\": "Psr/Log/"
  1290. }
  1291. },
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "MIT"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "PHP-FIG",
  1299. "homepage": "http://www.php-fig.org/"
  1300. }
  1301. ],
  1302. "description": "Common interface for logging libraries",
  1303. "homepage": "https://github.com/php-fig/log",
  1304. "keywords": [
  1305. "log",
  1306. "psr",
  1307. "psr-3"
  1308. ],
  1309. "time": "2016-10-10T12:19:37+00:00"
  1310. },
  1311. {
  1312. "name": "psr/simple-cache",
  1313. "version": "1.0.1",
  1314. "source": {
  1315. "type": "git",
  1316. "url": "https://github.com/php-fig/simple-cache.git",
  1317. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1318. },
  1319. "dist": {
  1320. "type": "zip",
  1321. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1322. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1323. "shasum": ""
  1324. },
  1325. "require": {
  1326. "php": ">=5.3.0"
  1327. },
  1328. "type": "library",
  1329. "extra": {
  1330. "branch-alias": {
  1331. "dev-master": "1.0.x-dev"
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Psr\\SimpleCache\\": "src/"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "PHP-FIG",
  1346. "homepage": "http://www.php-fig.org/"
  1347. }
  1348. ],
  1349. "description": "Common interfaces for simple caching",
  1350. "keywords": [
  1351. "cache",
  1352. "caching",
  1353. "psr",
  1354. "psr-16",
  1355. "simple-cache"
  1356. ],
  1357. "time": "2017-10-23T01:57:42+00:00"
  1358. },
  1359. {
  1360. "name": "sensio/distribution-bundle",
  1361. "version": "v5.0.22",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  1365. "reference": "209b11f8cee5bf71986dd703e45e27d3ed7a6d15"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/209b11f8cee5bf71986dd703e45e27d3ed7a6d15",
  1370. "reference": "209b11f8cee5bf71986dd703e45e27d3ed7a6d15",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "php": ">=5.3.9",
  1375. "sensiolabs/security-checker": "~3.0|~4.0",
  1376. "symfony/class-loader": "~2.3|~3.0",
  1377. "symfony/config": "~2.3|~3.0",
  1378. "symfony/dependency-injection": "~2.3|~3.0",
  1379. "symfony/filesystem": "~2.3|~3.0",
  1380. "symfony/http-kernel": "~2.3|~3.0",
  1381. "symfony/process": "~2.3|~3.0"
  1382. },
  1383. "type": "symfony-bundle",
  1384. "extra": {
  1385. "branch-alias": {
  1386. "dev-master": "5.0.x-dev"
  1387. }
  1388. },
  1389. "autoload": {
  1390. "psr-4": {
  1391. "Sensio\\Bundle\\DistributionBundle\\": ""
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Fabien Potencier",
  1401. "email": "fabien@symfony.com"
  1402. }
  1403. ],
  1404. "description": "Base bundle for Symfony Distributions",
  1405. "keywords": [
  1406. "configuration",
  1407. "distribution"
  1408. ],
  1409. "time": "2018-06-07T06:22:12+00:00"
  1410. },
  1411. {
  1412. "name": "sensio/framework-extra-bundle",
  1413. "version": "v5.2.1",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  1417. "reference": "535b56b7b0325e87b15b9c57bd3631ae2a0b9f16"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/535b56b7b0325e87b15b9c57bd3631ae2a0b9f16",
  1422. "reference": "535b56b7b0325e87b15b9c57bd3631ae2a0b9f16",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "doctrine/common": "^2.2",
  1427. "symfony/config": "^3.3|^4.0",
  1428. "symfony/dependency-injection": "^3.3|^4.0",
  1429. "symfony/framework-bundle": "^3.4|^4.0",
  1430. "symfony/http-kernel": "^3.3|^4.0"
  1431. },
  1432. "require-dev": {
  1433. "doctrine/doctrine-bundle": "^1.6",
  1434. "doctrine/orm": "^2.5",
  1435. "symfony/browser-kit": "^3.3|^4.0",
  1436. "symfony/dom-crawler": "^3.3|^4.0",
  1437. "symfony/expression-language": "^3.3|^4.0",
  1438. "symfony/finder": "^3.3|^4.0",
  1439. "symfony/monolog-bridge": "^3.0|^4.0",
  1440. "symfony/monolog-bundle": "^3.2",
  1441. "symfony/phpunit-bridge": "^3.3|^4.0",
  1442. "symfony/psr-http-message-bridge": "^0.3",
  1443. "symfony/security-bundle": "^3.3|^4.0",
  1444. "symfony/twig-bundle": "^3.3|^4.0",
  1445. "symfony/yaml": "^3.3|^4.0",
  1446. "twig/twig": "~1.12|~2.0",
  1447. "zendframework/zend-diactoros": "^1.3"
  1448. },
  1449. "suggest": {
  1450. "symfony/expression-language": "",
  1451. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  1452. "symfony/security-bundle": ""
  1453. },
  1454. "type": "symfony-bundle",
  1455. "extra": {
  1456. "branch-alias": {
  1457. "dev-master": "5.2.x-dev"
  1458. }
  1459. },
  1460. "autoload": {
  1461. "psr-4": {
  1462. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "MIT"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "Fabien Potencier",
  1472. "email": "fabien@symfony.com"
  1473. }
  1474. ],
  1475. "description": "This bundle provides a way to configure your controllers with annotations",
  1476. "keywords": [
  1477. "annotations",
  1478. "controllers"
  1479. ],
  1480. "time": "2018-09-30T05:16:57+00:00"
  1481. },
  1482. {
  1483. "name": "sensiolabs/security-checker",
  1484. "version": "v4.1.8",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/sensiolabs/security-checker.git",
  1488. "reference": "dc270d5fec418cc6ac983671dba5d80ffaffb142"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/dc270d5fec418cc6ac983671dba5d80ffaffb142",
  1493. "reference": "dc270d5fec418cc6ac983671dba5d80ffaffb142",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "composer/ca-bundle": "^1.0",
  1498. "symfony/console": "~2.7|~3.0|~4.0"
  1499. },
  1500. "bin": [
  1501. "security-checker"
  1502. ],
  1503. "type": "library",
  1504. "extra": {
  1505. "branch-alias": {
  1506. "dev-master": "4.1-dev"
  1507. }
  1508. },
  1509. "autoload": {
  1510. "psr-0": {
  1511. "SensioLabs\\Security": ""
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Fabien Potencier",
  1521. "email": "fabien.potencier@gmail.com"
  1522. }
  1523. ],
  1524. "description": "A security checker for your composer.lock",
  1525. "time": "2018-02-28T22:10:01+00:00"
  1526. },
  1527. {
  1528. "name": "swiftmailer/swiftmailer",
  1529. "version": "v5.4.12",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1533. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  1538. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "php": ">=5.3.3"
  1543. },
  1544. "require-dev": {
  1545. "mockery/mockery": "~0.9.1",
  1546. "symfony/phpunit-bridge": "~3.2"
  1547. },
  1548. "type": "library",
  1549. "extra": {
  1550. "branch-alias": {
  1551. "dev-master": "5.4-dev"
  1552. }
  1553. },
  1554. "autoload": {
  1555. "files": [
  1556. "lib/swift_required.php"
  1557. ]
  1558. },
  1559. "notification-url": "https://packagist.org/downloads/",
  1560. "license": [
  1561. "MIT"
  1562. ],
  1563. "authors": [
  1564. {
  1565. "name": "Chris Corbyn"
  1566. },
  1567. {
  1568. "name": "Fabien Potencier",
  1569. "email": "fabien@symfony.com"
  1570. }
  1571. ],
  1572. "description": "Swiftmailer, free feature-rich PHP mailer",
  1573. "homepage": "https://swiftmailer.symfony.com",
  1574. "keywords": [
  1575. "email",
  1576. "mail",
  1577. "mailer"
  1578. ],
  1579. "time": "2018-07-31T09:26:32+00:00"
  1580. },
  1581. {
  1582. "name": "symfony/monolog-bundle",
  1583. "version": "v3.3.0",
  1584. "source": {
  1585. "type": "git",
  1586. "url": "https://github.com/symfony/monolog-bundle.git",
  1587. "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802"
  1588. },
  1589. "dist": {
  1590. "type": "zip",
  1591. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/8204f3cd7c1bd6a6e2955c0a34475243a7bd9802",
  1592. "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802",
  1593. "shasum": ""
  1594. },
  1595. "require": {
  1596. "monolog/monolog": "~1.22",
  1597. "php": ">=5.6",
  1598. "symfony/config": "~2.7|~3.3|~4.0",
  1599. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  1600. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  1601. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  1602. },
  1603. "require-dev": {
  1604. "symfony/console": "~2.7|~3.3|~4.0",
  1605. "symfony/phpunit-bridge": "^3.3|^4.0",
  1606. "symfony/yaml": "~2.7|~3.3|~4.0"
  1607. },
  1608. "type": "symfony-bundle",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "3.x-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "Symfony\\Bundle\\MonologBundle\\": ""
  1617. },
  1618. "exclude-from-classmap": [
  1619. "/Tests/"
  1620. ]
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Symfony Community",
  1629. "homepage": "http://symfony.com/contributors"
  1630. },
  1631. {
  1632. "name": "Fabien Potencier",
  1633. "email": "fabien@symfony.com"
  1634. }
  1635. ],
  1636. "description": "Symfony MonologBundle",
  1637. "homepage": "http://symfony.com",
  1638. "keywords": [
  1639. "log",
  1640. "logging"
  1641. ],
  1642. "time": "2018-06-04T05:55:43+00:00"
  1643. },
  1644. {
  1645. "name": "symfony/polyfill-apcu",
  1646. "version": "v1.9.0",
  1647. "source": {
  1648. "type": "git",
  1649. "url": "https://github.com/symfony/polyfill-apcu.git",
  1650. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2"
  1651. },
  1652. "dist": {
  1653. "type": "zip",
  1654. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  1655. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  1656. "shasum": ""
  1657. },
  1658. "require": {
  1659. "php": ">=5.3.3"
  1660. },
  1661. "type": "library",
  1662. "extra": {
  1663. "branch-alias": {
  1664. "dev-master": "1.9-dev"
  1665. }
  1666. },
  1667. "autoload": {
  1668. "psr-4": {
  1669. "Symfony\\Polyfill\\Apcu\\": ""
  1670. },
  1671. "files": [
  1672. "bootstrap.php"
  1673. ]
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Nicolas Grekas",
  1682. "email": "p@tchwork.com"
  1683. },
  1684. {
  1685. "name": "Symfony Community",
  1686. "homepage": "https://symfony.com/contributors"
  1687. }
  1688. ],
  1689. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  1690. "homepage": "https://symfony.com",
  1691. "keywords": [
  1692. "apcu",
  1693. "compatibility",
  1694. "polyfill",
  1695. "portable",
  1696. "shim"
  1697. ],
  1698. "time": "2018-08-06T14:22:27+00:00"
  1699. },
  1700. {
  1701. "name": "symfony/polyfill-ctype",
  1702. "version": "v1.9.0",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/symfony/polyfill-ctype.git",
  1706. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  1711. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "php": ">=5.3.3"
  1716. },
  1717. "suggest": {
  1718. "ext-ctype": "For best performance"
  1719. },
  1720. "type": "library",
  1721. "extra": {
  1722. "branch-alias": {
  1723. "dev-master": "1.9-dev"
  1724. }
  1725. },
  1726. "autoload": {
  1727. "psr-4": {
  1728. "Symfony\\Polyfill\\Ctype\\": ""
  1729. },
  1730. "files": [
  1731. "bootstrap.php"
  1732. ]
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "Symfony Community",
  1741. "homepage": "https://symfony.com/contributors"
  1742. },
  1743. {
  1744. "name": "Gert de Pagter",
  1745. "email": "BackEndTea@gmail.com"
  1746. }
  1747. ],
  1748. "description": "Symfony polyfill for ctype functions",
  1749. "homepage": "https://symfony.com",
  1750. "keywords": [
  1751. "compatibility",
  1752. "ctype",
  1753. "polyfill",
  1754. "portable"
  1755. ],
  1756. "time": "2018-08-06T14:22:27+00:00"
  1757. },
  1758. {
  1759. "name": "symfony/polyfill-intl-icu",
  1760. "version": "v1.9.0",
  1761. "source": {
  1762. "type": "git",
  1763. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  1764. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644"
  1765. },
  1766. "dist": {
  1767. "type": "zip",
  1768. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/f22a90256d577c7ef7efad8df1f0201663d57644",
  1769. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644",
  1770. "shasum": ""
  1771. },
  1772. "require": {
  1773. "php": ">=5.3.3",
  1774. "symfony/intl": "~2.3|~3.0|~4.0"
  1775. },
  1776. "suggest": {
  1777. "ext-intl": "For best performance"
  1778. },
  1779. "type": "library",
  1780. "extra": {
  1781. "branch-alias": {
  1782. "dev-master": "1.9-dev"
  1783. }
  1784. },
  1785. "autoload": {
  1786. "files": [
  1787. "bootstrap.php"
  1788. ]
  1789. },
  1790. "notification-url": "https://packagist.org/downloads/",
  1791. "license": [
  1792. "MIT"
  1793. ],
  1794. "authors": [
  1795. {
  1796. "name": "Nicolas Grekas",
  1797. "email": "p@tchwork.com"
  1798. },
  1799. {
  1800. "name": "Symfony Community",
  1801. "homepage": "https://symfony.com/contributors"
  1802. }
  1803. ],
  1804. "description": "Symfony polyfill for intl's ICU-related data and classes",
  1805. "homepage": "https://symfony.com",
  1806. "keywords": [
  1807. "compatibility",
  1808. "icu",
  1809. "intl",
  1810. "polyfill",
  1811. "portable",
  1812. "shim"
  1813. ],
  1814. "time": "2018-08-06T14:22:27+00:00"
  1815. },
  1816. {
  1817. "name": "symfony/polyfill-mbstring",
  1818. "version": "v1.9.0",
  1819. "source": {
  1820. "type": "git",
  1821. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1822. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
  1823. },
  1824. "dist": {
  1825. "type": "zip",
  1826. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1827. "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
  1828. "shasum": ""
  1829. },
  1830. "require": {
  1831. "php": ">=5.3.3"
  1832. },
  1833. "suggest": {
  1834. "ext-mbstring": "For best performance"
  1835. },
  1836. "type": "library",
  1837. "extra": {
  1838. "branch-alias": {
  1839. "dev-master": "1.9-dev"
  1840. }
  1841. },
  1842. "autoload": {
  1843. "psr-4": {
  1844. "Symfony\\Polyfill\\Mbstring\\": ""
  1845. },
  1846. "files": [
  1847. "bootstrap.php"
  1848. ]
  1849. },
  1850. "notification-url": "https://packagist.org/downloads/",
  1851. "license": [
  1852. "MIT"
  1853. ],
  1854. "authors": [
  1855. {
  1856. "name": "Nicolas Grekas",
  1857. "email": "p@tchwork.com"
  1858. },
  1859. {
  1860. "name": "Symfony Community",
  1861. "homepage": "https://symfony.com/contributors"
  1862. }
  1863. ],
  1864. "description": "Symfony polyfill for the Mbstring extension",
  1865. "homepage": "https://symfony.com",
  1866. "keywords": [
  1867. "compatibility",
  1868. "mbstring",
  1869. "polyfill",
  1870. "portable",
  1871. "shim"
  1872. ],
  1873. "time": "2018-08-06T14:22:27+00:00"
  1874. },
  1875. {
  1876. "name": "symfony/polyfill-php56",
  1877. "version": "v1.9.0",
  1878. "source": {
  1879. "type": "git",
  1880. "url": "https://github.com/symfony/polyfill-php56.git",
  1881. "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
  1882. },
  1883. "dist": {
  1884. "type": "zip",
  1885. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
  1886. "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
  1887. "shasum": ""
  1888. },
  1889. "require": {
  1890. "php": ">=5.3.3",
  1891. "symfony/polyfill-util": "~1.0"
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "1.9-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "Symfony\\Polyfill\\Php56\\": ""
  1902. },
  1903. "files": [
  1904. "bootstrap.php"
  1905. ]
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "Nicolas Grekas",
  1914. "email": "p@tchwork.com"
  1915. },
  1916. {
  1917. "name": "Symfony Community",
  1918. "homepage": "https://symfony.com/contributors"
  1919. }
  1920. ],
  1921. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  1922. "homepage": "https://symfony.com",
  1923. "keywords": [
  1924. "compatibility",
  1925. "polyfill",
  1926. "portable",
  1927. "shim"
  1928. ],
  1929. "time": "2018-08-06T14:22:27+00:00"
  1930. },
  1931. {
  1932. "name": "symfony/polyfill-php70",
  1933. "version": "v1.9.0",
  1934. "source": {
  1935. "type": "git",
  1936. "url": "https://github.com/symfony/polyfill-php70.git",
  1937. "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934"
  1938. },
  1939. "dist": {
  1940. "type": "zip",
  1941. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
  1942. "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
  1943. "shasum": ""
  1944. },
  1945. "require": {
  1946. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1947. "php": ">=5.3.3"
  1948. },
  1949. "type": "library",
  1950. "extra": {
  1951. "branch-alias": {
  1952. "dev-master": "1.9-dev"
  1953. }
  1954. },
  1955. "autoload": {
  1956. "psr-4": {
  1957. "Symfony\\Polyfill\\Php70\\": ""
  1958. },
  1959. "files": [
  1960. "bootstrap.php"
  1961. ],
  1962. "classmap": [
  1963. "Resources/stubs"
  1964. ]
  1965. },
  1966. "notification-url": "https://packagist.org/downloads/",
  1967. "license": [
  1968. "MIT"
  1969. ],
  1970. "authors": [
  1971. {
  1972. "name": "Nicolas Grekas",
  1973. "email": "p@tchwork.com"
  1974. },
  1975. {
  1976. "name": "Symfony Community",
  1977. "homepage": "https://symfony.com/contributors"
  1978. }
  1979. ],
  1980. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1981. "homepage": "https://symfony.com",
  1982. "keywords": [
  1983. "compatibility",
  1984. "polyfill",
  1985. "portable",
  1986. "shim"
  1987. ],
  1988. "time": "2018-08-06T14:22:27+00:00"
  1989. },
  1990. {
  1991. "name": "symfony/polyfill-util",
  1992. "version": "v1.9.0",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/symfony/polyfill-util.git",
  1996. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  2001. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  2002. "shasum": ""
  2003. },
  2004. "require": {
  2005. "php": ">=5.3.3"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "1.9-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "Symfony\\Polyfill\\Util\\": ""
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "MIT"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Nicolas Grekas",
  2025. "email": "p@tchwork.com"
  2026. },
  2027. {
  2028. "name": "Symfony Community",
  2029. "homepage": "https://symfony.com/contributors"
  2030. }
  2031. ],
  2032. "description": "Symfony utilities for portability of PHP codes",
  2033. "homepage": "https://symfony.com",
  2034. "keywords": [
  2035. "compat",
  2036. "compatibility",
  2037. "polyfill",
  2038. "shim"
  2039. ],
  2040. "time": "2018-08-06T14:22:27+00:00"
  2041. },
  2042. {
  2043. "name": "symfony/swiftmailer-bundle",
  2044. "version": "v2.6.7",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  2048. "reference": "c4808f5169efc05567be983909d00f00521c53ec"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/c4808f5169efc05567be983909d00f00521c53ec",
  2053. "reference": "c4808f5169efc05567be983909d00f00521c53ec",
  2054. "shasum": ""
  2055. },
  2056. "require": {
  2057. "php": ">=5.3.2",
  2058. "swiftmailer/swiftmailer": "~4.2|~5.0",
  2059. "symfony/config": "~2.7|~3.0",
  2060. "symfony/dependency-injection": "~2.7|~3.0",
  2061. "symfony/http-kernel": "~2.7|~3.0"
  2062. },
  2063. "require-dev": {
  2064. "symfony/console": "~2.7|~3.0",
  2065. "symfony/framework-bundle": "~2.7|~3.0",
  2066. "symfony/phpunit-bridge": "~3.3@dev",
  2067. "symfony/yaml": "~2.7|~3.0"
  2068. },
  2069. "suggest": {
  2070. "psr/log": "Allows logging"
  2071. },
  2072. "type": "symfony-bundle",
  2073. "extra": {
  2074. "branch-alias": {
  2075. "dev-master": "2.6-dev"
  2076. }
  2077. },
  2078. "autoload": {
  2079. "psr-4": {
  2080. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  2081. }
  2082. },
  2083. "notification-url": "https://packagist.org/downloads/",
  2084. "license": [
  2085. "MIT"
  2086. ],
  2087. "authors": [
  2088. {
  2089. "name": "Symfony Community",
  2090. "homepage": "http://symfony.com/contributors"
  2091. },
  2092. {
  2093. "name": "Fabien Potencier",
  2094. "email": "fabien@symfony.com"
  2095. }
  2096. ],
  2097. "description": "Symfony SwiftmailerBundle",
  2098. "homepage": "http://symfony.com",
  2099. "time": "2017-10-19T01:06:41+00:00"
  2100. },
  2101. {
  2102. "name": "symfony/symfony",
  2103. "version": "v3.4.17",
  2104. "source": {
  2105. "type": "git",
  2106. "url": "https://github.com/symfony/symfony.git",
  2107. "reference": "de239d25e0bb3be451a17b627705a5970c6c59e6"
  2108. },
  2109. "dist": {
  2110. "type": "zip",
  2111. "url": "https://api.github.com/repos/symfony/symfony/zipball/de239d25e0bb3be451a17b627705a5970c6c59e6",
  2112. "reference": "de239d25e0bb3be451a17b627705a5970c6c59e6",
  2113. "shasum": ""
  2114. },
  2115. "require": {
  2116. "doctrine/common": "~2.4",
  2117. "ext-xml": "*",
  2118. "fig/link-util": "^1.0",
  2119. "php": "^5.5.9|>=7.0.8",
  2120. "psr/cache": "~1.0",
  2121. "psr/container": "^1.0",
  2122. "psr/link": "^1.0",
  2123. "psr/log": "~1.0",
  2124. "psr/simple-cache": "^1.0",
  2125. "symfony/polyfill-apcu": "~1.1",
  2126. "symfony/polyfill-ctype": "~1.8",
  2127. "symfony/polyfill-intl-icu": "~1.0",
  2128. "symfony/polyfill-mbstring": "~1.0",
  2129. "symfony/polyfill-php56": "~1.0",
  2130. "symfony/polyfill-php70": "~1.6",
  2131. "twig/twig": "^1.35|^2.4.4"
  2132. },
  2133. "conflict": {
  2134. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  2135. "phpdocumentor/type-resolver": "<0.3.0",
  2136. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2137. },
  2138. "provide": {
  2139. "psr/cache-implementation": "1.0",
  2140. "psr/container-implementation": "1.0",
  2141. "psr/log-implementation": "1.0",
  2142. "psr/simple-cache-implementation": "1.0"
  2143. },
  2144. "replace": {
  2145. "symfony/asset": "self.version",
  2146. "symfony/browser-kit": "self.version",
  2147. "symfony/cache": "self.version",
  2148. "symfony/class-loader": "self.version",
  2149. "symfony/config": "self.version",
  2150. "symfony/console": "self.version",
  2151. "symfony/css-selector": "self.version",
  2152. "symfony/debug": "self.version",
  2153. "symfony/debug-bundle": "self.version",
  2154. "symfony/dependency-injection": "self.version",
  2155. "symfony/doctrine-bridge": "self.version",
  2156. "symfony/dom-crawler": "self.version",
  2157. "symfony/dotenv": "self.version",
  2158. "symfony/event-dispatcher": "self.version",
  2159. "symfony/expression-language": "self.version",
  2160. "symfony/filesystem": "self.version",
  2161. "symfony/finder": "self.version",
  2162. "symfony/form": "self.version",
  2163. "symfony/framework-bundle": "self.version",
  2164. "symfony/http-foundation": "self.version",
  2165. "symfony/http-kernel": "self.version",
  2166. "symfony/inflector": "self.version",
  2167. "symfony/intl": "self.version",
  2168. "symfony/ldap": "self.version",
  2169. "symfony/lock": "self.version",
  2170. "symfony/monolog-bridge": "self.version",
  2171. "symfony/options-resolver": "self.version",
  2172. "symfony/process": "self.version",
  2173. "symfony/property-access": "self.version",
  2174. "symfony/property-info": "self.version",
  2175. "symfony/proxy-manager-bridge": "self.version",
  2176. "symfony/routing": "self.version",
  2177. "symfony/security": "self.version",
  2178. "symfony/security-bundle": "self.version",
  2179. "symfony/security-core": "self.version",
  2180. "symfony/security-csrf": "self.version",
  2181. "symfony/security-guard": "self.version",
  2182. "symfony/security-http": "self.version",
  2183. "symfony/serializer": "self.version",
  2184. "symfony/stopwatch": "self.version",
  2185. "symfony/templating": "self.version",
  2186. "symfony/translation": "self.version",
  2187. "symfony/twig-bridge": "self.version",
  2188. "symfony/twig-bundle": "self.version",
  2189. "symfony/validator": "self.version",
  2190. "symfony/var-dumper": "self.version",
  2191. "symfony/web-link": "self.version",
  2192. "symfony/web-profiler-bundle": "self.version",
  2193. "symfony/web-server-bundle": "self.version",
  2194. "symfony/workflow": "self.version",
  2195. "symfony/yaml": "self.version"
  2196. },
  2197. "require-dev": {
  2198. "cache/integration-tests": "dev-master",
  2199. "doctrine/annotations": "~1.0",
  2200. "doctrine/cache": "~1.6",
  2201. "doctrine/data-fixtures": "1.0.*",
  2202. "doctrine/dbal": "~2.4",
  2203. "doctrine/doctrine-bundle": "~1.4",
  2204. "doctrine/orm": "~2.4,>=2.4.5",
  2205. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  2206. "monolog/monolog": "~1.11",
  2207. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  2208. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  2209. "predis/predis": "~1.0",
  2210. "symfony/phpunit-bridge": "~3.4|~4.0",
  2211. "symfony/security-acl": "~2.8|~3.0"
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "3.4-dev"
  2217. }
  2218. },
  2219. "autoload": {
  2220. "psr-4": {
  2221. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  2222. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  2223. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  2224. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  2225. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  2226. "Symfony\\Component\\": "src/Symfony/Component/"
  2227. },
  2228. "classmap": [
  2229. "src/Symfony/Component/Intl/Resources/stubs"
  2230. ],
  2231. "exclude-from-classmap": [
  2232. "**/Tests/"
  2233. ]
  2234. },
  2235. "notification-url": "https://packagist.org/downloads/",
  2236. "license": [
  2237. "MIT"
  2238. ],
  2239. "authors": [
  2240. {
  2241. "name": "Fabien Potencier",
  2242. "email": "fabien@symfony.com"
  2243. },
  2244. {
  2245. "name": "Symfony Community",
  2246. "homepage": "https://symfony.com/contributors"
  2247. }
  2248. ],
  2249. "description": "The Symfony PHP framework",
  2250. "homepage": "https://symfony.com",
  2251. "keywords": [
  2252. "framework"
  2253. ],
  2254. "time": "2018-10-03T12:03:55+00:00"
  2255. },
  2256. {
  2257. "name": "twig/twig",
  2258. "version": "v1.35.4",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/twigphp/Twig.git",
  2262. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  2267. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  2268. "shasum": ""
  2269. },
  2270. "require": {
  2271. "php": ">=5.3.3",
  2272. "symfony/polyfill-ctype": "^1.8"
  2273. },
  2274. "require-dev": {
  2275. "psr/container": "^1.0",
  2276. "symfony/debug": "^2.7",
  2277. "symfony/phpunit-bridge": "^3.3"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-master": "1.35-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-0": {
  2287. "Twig_": "lib/"
  2288. },
  2289. "psr-4": {
  2290. "Twig\\": "src/"
  2291. }
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "BSD-3-Clause"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Fabien Potencier",
  2300. "email": "fabien@symfony.com",
  2301. "homepage": "http://fabien.potencier.org",
  2302. "role": "Lead Developer"
  2303. },
  2304. {
  2305. "name": "Armin Ronacher",
  2306. "email": "armin.ronacher@active-4.com",
  2307. "role": "Project Founder"
  2308. },
  2309. {
  2310. "name": "Twig Team",
  2311. "homepage": "https://twig.symfony.com/contributors",
  2312. "role": "Contributors"
  2313. }
  2314. ],
  2315. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2316. "homepage": "https://twig.symfony.com",
  2317. "keywords": [
  2318. "templating"
  2319. ],
  2320. "time": "2018-07-13T07:12:17+00:00"
  2321. }
  2322. ],
  2323. "packages-dev": [
  2324. {
  2325. "name": "sensio/generator-bundle",
  2326. "version": "v3.1.7",
  2327. "source": {
  2328. "type": "git",
  2329. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2330. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  2331. },
  2332. "dist": {
  2333. "type": "zip",
  2334. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  2335. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  2336. "shasum": ""
  2337. },
  2338. "require": {
  2339. "symfony/console": "~2.7|~3.0",
  2340. "symfony/framework-bundle": "~2.7|~3.0",
  2341. "symfony/process": "~2.7|~3.0",
  2342. "symfony/yaml": "~2.7|~3.0",
  2343. "twig/twig": "^1.28.2|^2.0"
  2344. },
  2345. "require-dev": {
  2346. "doctrine/orm": "~2.4",
  2347. "symfony/doctrine-bridge": "~2.7|~3.0",
  2348. "symfony/filesystem": "~2.7|~3.0",
  2349. "symfony/phpunit-bridge": "^3.3"
  2350. },
  2351. "type": "symfony-bundle",
  2352. "extra": {
  2353. "branch-alias": {
  2354. "dev-master": "3.1.x-dev"
  2355. }
  2356. },
  2357. "autoload": {
  2358. "psr-4": {
  2359. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2360. },
  2361. "exclude-from-classmap": [
  2362. "/Tests/"
  2363. ]
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Fabien Potencier",
  2372. "email": "fabien@symfony.com"
  2373. }
  2374. ],
  2375. "description": "This bundle generates code for you",
  2376. "time": "2017-12-07T15:36:41+00:00"
  2377. },
  2378. {
  2379. "name": "symfony/phpunit-bridge",
  2380. "version": "v3.4.17",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/symfony/phpunit-bridge.git",
  2384. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  2389. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  2390. "shasum": ""
  2391. },
  2392. "require": {
  2393. "php": ">=5.3.3"
  2394. },
  2395. "conflict": {
  2396. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2397. },
  2398. "suggest": {
  2399. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  2400. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  2401. },
  2402. "bin": [
  2403. "bin/simple-phpunit"
  2404. ],
  2405. "type": "symfony-bridge",
  2406. "extra": {
  2407. "branch-alias": {
  2408. "dev-master": "3.4-dev"
  2409. },
  2410. "thanks": {
  2411. "name": "phpunit/phpunit",
  2412. "url": "https://github.com/sebastianbergmann/phpunit"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "files": [
  2417. "bootstrap.php"
  2418. ],
  2419. "psr-4": {
  2420. "Symfony\\Bridge\\PhpUnit\\": ""
  2421. },
  2422. "exclude-from-classmap": [
  2423. "/Tests/"
  2424. ]
  2425. },
  2426. "notification-url": "https://packagist.org/downloads/",
  2427. "license": [
  2428. "MIT"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "Nicolas Grekas",
  2433. "email": "p@tchwork.com"
  2434. },
  2435. {
  2436. "name": "Symfony Community",
  2437. "homepage": "https://symfony.com/contributors"
  2438. }
  2439. ],
  2440. "description": "Symfony PHPUnit Bridge",
  2441. "homepage": "https://symfony.com",
  2442. "time": "2018-10-02T12:28:39+00:00"
  2443. }
  2444. ],
  2445. "aliases": [],
  2446. "minimum-stability": "stable",
  2447. "stability-flags": [],
  2448. "prefer-stable": false,
  2449. "prefer-lowest": false,
  2450. "platform": {
  2451. "php": ">=5.5.9"
  2452. },
  2453. "platform-dev": [],
  2454. "platform-overrides": {
  2455. "php": "5.6"
  2456. }
  2457. }