composer.lock 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508
  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. "hash": "ef74d03784a1a538bfd2fc570071e59f",
  8. "content-hash": "458438b30a95d02c70df3ecbec1075eb",
  9. "packages": [
  10. {
  11. "name": "composer/ca-bundle",
  12. "version": "1.1.3",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/composer/ca-bundle.git",
  16. "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8afa52cd417f4ec417b4bfe86b68106538a87660",
  21. "reference": "8afa52cd417f4ec417b4bfe86b68106538a87660",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "ext-openssl": "*",
  26. "ext-pcre": "*",
  27. "php": "^5.3.2 || ^7.0"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  31. "psr/log": "^1.0",
  32. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "1.x-dev"
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "Composer\\CaBundle\\": "src"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be"
  54. }
  55. ],
  56. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  57. "keywords": [
  58. "cabundle",
  59. "cacert",
  60. "certificate",
  61. "ssl",
  62. "tls"
  63. ],
  64. "time": "2018-10-18 06:09:13"
  65. },
  66. {
  67. "name": "doctrine/annotations",
  68. "version": "v1.4.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/doctrine/annotations.git",
  72. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  77. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  78. "shasum": ""
  79. },
  80. "require": {
  81. "doctrine/lexer": "1.*",
  82. "php": "^5.6 || ^7.0"
  83. },
  84. "require-dev": {
  85. "doctrine/cache": "1.*",
  86. "phpunit/phpunit": "^5.7"
  87. },
  88. "type": "library",
  89. "extra": {
  90. "branch-alias": {
  91. "dev-master": "1.4.x-dev"
  92. }
  93. },
  94. "autoload": {
  95. "psr-4": {
  96. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "MIT"
  102. ],
  103. "authors": [
  104. {
  105. "name": "Roman Borschel",
  106. "email": "roman@code-factory.org"
  107. },
  108. {
  109. "name": "Benjamin Eberlei",
  110. "email": "kontakt@beberlei.de"
  111. },
  112. {
  113. "name": "Guilherme Blanco",
  114. "email": "guilhermeblanco@gmail.com"
  115. },
  116. {
  117. "name": "Jonathan Wage",
  118. "email": "jonwage@gmail.com"
  119. },
  120. {
  121. "name": "Johannes Schmitt",
  122. "email": "schmittjoh@gmail.com"
  123. }
  124. ],
  125. "description": "Docblock Annotations Parser",
  126. "homepage": "http://www.doctrine-project.org",
  127. "keywords": [
  128. "annotations",
  129. "docblock",
  130. "parser"
  131. ],
  132. "time": "2017-02-24 16:22:25"
  133. },
  134. {
  135. "name": "doctrine/cache",
  136. "version": "v1.6.2",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/doctrine/cache.git",
  140. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  145. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  146. "shasum": ""
  147. },
  148. "require": {
  149. "php": "~5.5|~7.0"
  150. },
  151. "conflict": {
  152. "doctrine/common": ">2.2,<2.4"
  153. },
  154. "require-dev": {
  155. "phpunit/phpunit": "~4.8|~5.0",
  156. "predis/predis": "~1.0",
  157. "satooshi/php-coveralls": "~0.6"
  158. },
  159. "type": "library",
  160. "extra": {
  161. "branch-alias": {
  162. "dev-master": "1.6.x-dev"
  163. }
  164. },
  165. "autoload": {
  166. "psr-4": {
  167. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "MIT"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Roman Borschel",
  177. "email": "roman@code-factory.org"
  178. },
  179. {
  180. "name": "Benjamin Eberlei",
  181. "email": "kontakt@beberlei.de"
  182. },
  183. {
  184. "name": "Guilherme Blanco",
  185. "email": "guilhermeblanco@gmail.com"
  186. },
  187. {
  188. "name": "Jonathan Wage",
  189. "email": "jonwage@gmail.com"
  190. },
  191. {
  192. "name": "Johannes Schmitt",
  193. "email": "schmittjoh@gmail.com"
  194. }
  195. ],
  196. "description": "Caching library offering an object-oriented API for many cache backends",
  197. "homepage": "http://www.doctrine-project.org",
  198. "keywords": [
  199. "cache",
  200. "caching"
  201. ],
  202. "time": "2017-07-22 12:49:21"
  203. },
  204. {
  205. "name": "doctrine/collections",
  206. "version": "v1.4.0",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/doctrine/collections.git",
  210. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  215. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  216. "shasum": ""
  217. },
  218. "require": {
  219. "php": "^5.6 || ^7.0"
  220. },
  221. "require-dev": {
  222. "doctrine/coding-standard": "~0.1@dev",
  223. "phpunit/phpunit": "^5.7"
  224. },
  225. "type": "library",
  226. "extra": {
  227. "branch-alias": {
  228. "dev-master": "1.3.x-dev"
  229. }
  230. },
  231. "autoload": {
  232. "psr-0": {
  233. "Doctrine\\Common\\Collections\\": "lib/"
  234. }
  235. },
  236. "notification-url": "https://packagist.org/downloads/",
  237. "license": [
  238. "MIT"
  239. ],
  240. "authors": [
  241. {
  242. "name": "Roman Borschel",
  243. "email": "roman@code-factory.org"
  244. },
  245. {
  246. "name": "Benjamin Eberlei",
  247. "email": "kontakt@beberlei.de"
  248. },
  249. {
  250. "name": "Guilherme Blanco",
  251. "email": "guilhermeblanco@gmail.com"
  252. },
  253. {
  254. "name": "Jonathan Wage",
  255. "email": "jonwage@gmail.com"
  256. },
  257. {
  258. "name": "Johannes Schmitt",
  259. "email": "schmittjoh@gmail.com"
  260. }
  261. ],
  262. "description": "Collections Abstraction library",
  263. "homepage": "http://www.doctrine-project.org",
  264. "keywords": [
  265. "array",
  266. "collections",
  267. "iterator"
  268. ],
  269. "time": "2017-01-03 10:49:41"
  270. },
  271. {
  272. "name": "doctrine/common",
  273. "version": "v2.7.3",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/doctrine/common.git",
  277. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  282. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "doctrine/annotations": "1.*",
  287. "doctrine/cache": "1.*",
  288. "doctrine/collections": "1.*",
  289. "doctrine/inflector": "1.*",
  290. "doctrine/lexer": "1.*",
  291. "php": "~5.6|~7.0"
  292. },
  293. "require-dev": {
  294. "phpunit/phpunit": "^5.4.6"
  295. },
  296. "type": "library",
  297. "extra": {
  298. "branch-alias": {
  299. "dev-master": "2.7.x-dev"
  300. }
  301. },
  302. "autoload": {
  303. "psr-4": {
  304. "Doctrine\\Common\\": "lib/Doctrine/Common"
  305. }
  306. },
  307. "notification-url": "https://packagist.org/downloads/",
  308. "license": [
  309. "MIT"
  310. ],
  311. "authors": [
  312. {
  313. "name": "Roman Borschel",
  314. "email": "roman@code-factory.org"
  315. },
  316. {
  317. "name": "Benjamin Eberlei",
  318. "email": "kontakt@beberlei.de"
  319. },
  320. {
  321. "name": "Guilherme Blanco",
  322. "email": "guilhermeblanco@gmail.com"
  323. },
  324. {
  325. "name": "Jonathan Wage",
  326. "email": "jonwage@gmail.com"
  327. },
  328. {
  329. "name": "Johannes Schmitt",
  330. "email": "schmittjoh@gmail.com"
  331. }
  332. ],
  333. "description": "Common Library for Doctrine projects",
  334. "homepage": "http://www.doctrine-project.org",
  335. "keywords": [
  336. "annotations",
  337. "collections",
  338. "eventmanager",
  339. "persistence",
  340. "spl"
  341. ],
  342. "time": "2017-07-22 08:35:12"
  343. },
  344. {
  345. "name": "doctrine/dbal",
  346. "version": "v2.5.13",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/doctrine/dbal.git",
  350. "reference": "729340d8d1eec8f01bff708e12e449a3415af873"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/doctrine/dbal/zipball/729340d8d1eec8f01bff708e12e449a3415af873",
  355. "reference": "729340d8d1eec8f01bff708e12e449a3415af873",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "doctrine/common": ">=2.4,<2.8-dev",
  360. "php": ">=5.3.2"
  361. },
  362. "require-dev": {
  363. "phpunit/phpunit": "4.*",
  364. "symfony/console": "2.*||^3.0"
  365. },
  366. "suggest": {
  367. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  368. },
  369. "bin": [
  370. "bin/doctrine-dbal"
  371. ],
  372. "type": "library",
  373. "extra": {
  374. "branch-alias": {
  375. "dev-master": "2.5.x-dev"
  376. }
  377. },
  378. "autoload": {
  379. "psr-0": {
  380. "Doctrine\\DBAL\\": "lib/"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "MIT"
  386. ],
  387. "authors": [
  388. {
  389. "name": "Roman Borschel",
  390. "email": "roman@code-factory.org"
  391. },
  392. {
  393. "name": "Benjamin Eberlei",
  394. "email": "kontakt@beberlei.de"
  395. },
  396. {
  397. "name": "Guilherme Blanco",
  398. "email": "guilhermeblanco@gmail.com"
  399. },
  400. {
  401. "name": "Jonathan Wage",
  402. "email": "jonwage@gmail.com"
  403. }
  404. ],
  405. "description": "Database Abstraction Layer",
  406. "homepage": "http://www.doctrine-project.org",
  407. "keywords": [
  408. "database",
  409. "dbal",
  410. "persistence",
  411. "queryobject"
  412. ],
  413. "time": "2017-07-22 20:44:48"
  414. },
  415. {
  416. "name": "doctrine/doctrine-bundle",
  417. "version": "1.10.0",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/doctrine/DoctrineBundle.git",
  421. "reference": "82d2c63cd09acbde2332f55d9aa7b28aefe4983d"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/82d2c63cd09acbde2332f55d9aa7b28aefe4983d",
  426. "reference": "82d2c63cd09acbde2332f55d9aa7b28aefe4983d",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "doctrine/dbal": "^2.5.12",
  431. "doctrine/doctrine-cache-bundle": "~1.2",
  432. "jdorn/sql-formatter": "^1.2.16",
  433. "php": "^5.5.9|^7.0",
  434. "symfony/console": "~2.7|~3.0|~4.0",
  435. "symfony/dependency-injection": "~2.7|~3.0|~4.0",
  436. "symfony/doctrine-bridge": "~2.7|~3.0|~4.0",
  437. "symfony/framework-bundle": "^2.7.22|~3.0|~4.0"
  438. },
  439. "conflict": {
  440. "symfony/http-foundation": "<2.6"
  441. },
  442. "require-dev": {
  443. "doctrine/orm": "~2.4",
  444. "php-coveralls/php-coveralls": "^2.1",
  445. "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
  446. "symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
  447. "symfony/property-info": "~2.8|~3.0|~4.0",
  448. "symfony/validator": "~2.7|~3.0|~4.0",
  449. "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0",
  450. "symfony/yaml": "~2.7|~3.0|~4.0",
  451. "twig/twig": "~1.26|~2.0"
  452. },
  453. "suggest": {
  454. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  455. "symfony/web-profiler-bundle": "To use the data collector."
  456. },
  457. "type": "symfony-bundle",
  458. "extra": {
  459. "branch-alias": {
  460. "dev-master": "1.9.x-dev"
  461. }
  462. },
  463. "autoload": {
  464. "psr-4": {
  465. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  466. }
  467. },
  468. "notification-url": "https://packagist.org/downloads/",
  469. "license": [
  470. "MIT"
  471. ],
  472. "authors": [
  473. {
  474. "name": "Symfony Community",
  475. "homepage": "http://symfony.com/contributors"
  476. },
  477. {
  478. "name": "Benjamin Eberlei",
  479. "email": "kontakt@beberlei.de"
  480. },
  481. {
  482. "name": "Doctrine Project",
  483. "homepage": "http://www.doctrine-project.org/"
  484. },
  485. {
  486. "name": "Fabien Potencier",
  487. "email": "fabien@symfony.com"
  488. }
  489. ],
  490. "description": "Symfony DoctrineBundle",
  491. "homepage": "http://www.doctrine-project.org",
  492. "keywords": [
  493. "database",
  494. "dbal",
  495. "orm",
  496. "persistence"
  497. ],
  498. "time": "2018-11-30 13:53:17"
  499. },
  500. {
  501. "name": "doctrine/doctrine-cache-bundle",
  502. "version": "1.3.5",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  506. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  511. "reference": "5514c90d9fb595e1095e6d66ebb98ce9ef049927",
  512. "shasum": ""
  513. },
  514. "require": {
  515. "doctrine/cache": "^1.4.2",
  516. "doctrine/inflector": "~1.0",
  517. "php": ">=5.3.2",
  518. "symfony/doctrine-bridge": "~2.7|~3.3|~4.0"
  519. },
  520. "require-dev": {
  521. "instaclick/coding-standard": "~1.1",
  522. "instaclick/object-calisthenics-sniffs": "dev-master",
  523. "instaclick/symfony2-coding-standard": "dev-remaster",
  524. "phpunit/phpunit": "~4.8.36|~5.6|~6.5|~7.0",
  525. "predis/predis": "~0.8",
  526. "satooshi/php-coveralls": "^1.0",
  527. "squizlabs/php_codesniffer": "~1.5",
  528. "symfony/console": "~2.7|~3.3|~4.0",
  529. "symfony/finder": "~2.7|~3.3|~4.0",
  530. "symfony/framework-bundle": "~2.7|~3.3|~4.0",
  531. "symfony/phpunit-bridge": "~2.7|~3.3|~4.0",
  532. "symfony/security-acl": "~2.7|~3.3",
  533. "symfony/validator": "~2.7|~3.3|~4.0",
  534. "symfony/yaml": "~2.7|~3.3|~4.0"
  535. },
  536. "suggest": {
  537. "symfony/security-acl": "For using this bundle to cache ACLs"
  538. },
  539. "type": "symfony-bundle",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-master": "1.3.x-dev"
  543. }
  544. },
  545. "autoload": {
  546. "psr-4": {
  547. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  548. },
  549. "exclude-from-classmap": [
  550. "/Tests/"
  551. ]
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Symfony Community",
  560. "homepage": "http://symfony.com/contributors"
  561. },
  562. {
  563. "name": "Benjamin Eberlei",
  564. "email": "kontakt@beberlei.de"
  565. },
  566. {
  567. "name": "Fabio B. Silva",
  568. "email": "fabio.bat.silva@gmail.com"
  569. },
  570. {
  571. "name": "Guilherme Blanco",
  572. "email": "guilhermeblanco@hotmail.com"
  573. },
  574. {
  575. "name": "Doctrine Project",
  576. "homepage": "http://www.doctrine-project.org/"
  577. },
  578. {
  579. "name": "Fabien Potencier",
  580. "email": "fabien@symfony.com"
  581. }
  582. ],
  583. "description": "Symfony Bundle for Doctrine Cache",
  584. "homepage": "https://www.doctrine-project.org",
  585. "keywords": [
  586. "cache",
  587. "caching"
  588. ],
  589. "time": "2018-11-09 06:25:35"
  590. },
  591. {
  592. "name": "doctrine/inflector",
  593. "version": "v1.2.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/doctrine/inflector.git",
  597. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  602. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": "^7.0"
  607. },
  608. "require-dev": {
  609. "phpunit/phpunit": "^6.2"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "branch-alias": {
  614. "dev-master": "1.2.x-dev"
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Roman Borschel",
  629. "email": "roman@code-factory.org"
  630. },
  631. {
  632. "name": "Benjamin Eberlei",
  633. "email": "kontakt@beberlei.de"
  634. },
  635. {
  636. "name": "Guilherme Blanco",
  637. "email": "guilhermeblanco@gmail.com"
  638. },
  639. {
  640. "name": "Jonathan Wage",
  641. "email": "jonwage@gmail.com"
  642. },
  643. {
  644. "name": "Johannes Schmitt",
  645. "email": "schmittjoh@gmail.com"
  646. }
  647. ],
  648. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  649. "homepage": "http://www.doctrine-project.org",
  650. "keywords": [
  651. "inflection",
  652. "pluralize",
  653. "singularize",
  654. "string"
  655. ],
  656. "time": "2017-07-22 12:18:28"
  657. },
  658. {
  659. "name": "doctrine/instantiator",
  660. "version": "1.0.5",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/doctrine/instantiator.git",
  664. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  669. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": ">=5.3,<8.0-DEV"
  674. },
  675. "require-dev": {
  676. "athletic/athletic": "~0.1.8",
  677. "ext-pdo": "*",
  678. "ext-phar": "*",
  679. "phpunit/phpunit": "~4.0",
  680. "squizlabs/php_codesniffer": "~2.0"
  681. },
  682. "type": "library",
  683. "extra": {
  684. "branch-alias": {
  685. "dev-master": "1.0.x-dev"
  686. }
  687. },
  688. "autoload": {
  689. "psr-4": {
  690. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  691. }
  692. },
  693. "notification-url": "https://packagist.org/downloads/",
  694. "license": [
  695. "MIT"
  696. ],
  697. "authors": [
  698. {
  699. "name": "Marco Pivetta",
  700. "email": "ocramius@gmail.com",
  701. "homepage": "http://ocramius.github.com/"
  702. }
  703. ],
  704. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  705. "homepage": "https://github.com/doctrine/instantiator",
  706. "keywords": [
  707. "constructor",
  708. "instantiate"
  709. ],
  710. "time": "2015-06-14 21:17:01"
  711. },
  712. {
  713. "name": "doctrine/lexer",
  714. "version": "v1.0.1",
  715. "source": {
  716. "type": "git",
  717. "url": "https://github.com/doctrine/lexer.git",
  718. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  719. },
  720. "dist": {
  721. "type": "zip",
  722. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  723. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  724. "shasum": ""
  725. },
  726. "require": {
  727. "php": ">=5.3.2"
  728. },
  729. "type": "library",
  730. "extra": {
  731. "branch-alias": {
  732. "dev-master": "1.0.x-dev"
  733. }
  734. },
  735. "autoload": {
  736. "psr-0": {
  737. "Doctrine\\Common\\Lexer\\": "lib/"
  738. }
  739. },
  740. "notification-url": "https://packagist.org/downloads/",
  741. "license": [
  742. "MIT"
  743. ],
  744. "authors": [
  745. {
  746. "name": "Roman Borschel",
  747. "email": "roman@code-factory.org"
  748. },
  749. {
  750. "name": "Guilherme Blanco",
  751. "email": "guilhermeblanco@gmail.com"
  752. },
  753. {
  754. "name": "Johannes Schmitt",
  755. "email": "schmittjoh@gmail.com"
  756. }
  757. ],
  758. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  759. "homepage": "http://www.doctrine-project.org",
  760. "keywords": [
  761. "lexer",
  762. "parser"
  763. ],
  764. "time": "2014-09-09 13:34:57"
  765. },
  766. {
  767. "name": "doctrine/orm",
  768. "version": "v2.5.14",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/doctrine/doctrine2.git",
  772. "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/810a7baf81462a5ddf10e8baa8cb94b6eec02754",
  777. "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "doctrine/cache": "~1.4",
  782. "doctrine/collections": "~1.2",
  783. "doctrine/common": ">=2.5-dev,<2.9-dev",
  784. "doctrine/dbal": ">=2.5-dev,<2.7-dev",
  785. "doctrine/instantiator": "^1.0.1",
  786. "ext-pdo": "*",
  787. "php": ">=5.4",
  788. "symfony/console": "~2.5|~3.0|~4.0"
  789. },
  790. "require-dev": {
  791. "phpunit/phpunit": "~4.0",
  792. "symfony/yaml": "~2.3|~3.0|~4.0"
  793. },
  794. "suggest": {
  795. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  796. },
  797. "bin": [
  798. "bin/doctrine",
  799. "bin/doctrine.php"
  800. ],
  801. "type": "library",
  802. "extra": {
  803. "branch-alias": {
  804. "dev-master": "2.6.x-dev"
  805. }
  806. },
  807. "autoload": {
  808. "psr-0": {
  809. "Doctrine\\ORM\\": "lib/"
  810. }
  811. },
  812. "notification-url": "https://packagist.org/downloads/",
  813. "license": [
  814. "MIT"
  815. ],
  816. "authors": [
  817. {
  818. "name": "Roman Borschel",
  819. "email": "roman@code-factory.org"
  820. },
  821. {
  822. "name": "Benjamin Eberlei",
  823. "email": "kontakt@beberlei.de"
  824. },
  825. {
  826. "name": "Guilherme Blanco",
  827. "email": "guilhermeblanco@gmail.com"
  828. },
  829. {
  830. "name": "Jonathan Wage",
  831. "email": "jonwage@gmail.com"
  832. }
  833. ],
  834. "description": "Object-Relational-Mapper for PHP",
  835. "homepage": "http://www.doctrine-project.org",
  836. "keywords": [
  837. "database",
  838. "orm"
  839. ],
  840. "time": "2017-12-17 02:57:51"
  841. },
  842. {
  843. "name": "fig/link-util",
  844. "version": "1.0.0",
  845. "source": {
  846. "type": "git",
  847. "url": "https://github.com/php-fig/link-util.git",
  848. "reference": "1a07821801a148be4add11ab0603e4af55a72fac"
  849. },
  850. "dist": {
  851. "type": "zip",
  852. "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac",
  853. "reference": "1a07821801a148be4add11ab0603e4af55a72fac",
  854. "shasum": ""
  855. },
  856. "require": {
  857. "php": ">=5.5.0",
  858. "psr/link": "~1.0@dev"
  859. },
  860. "require-dev": {
  861. "phpunit/phpunit": "^5.1",
  862. "squizlabs/php_codesniffer": "^2.3.1"
  863. },
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-master": "1.0.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "Fig\\Link\\": "src/"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "PHP-FIG",
  882. "homepage": "http://www.php-fig.org/"
  883. }
  884. ],
  885. "description": "Common utility implementations for HTTP links",
  886. "keywords": [
  887. "http",
  888. "http-link",
  889. "link",
  890. "psr",
  891. "psr-13",
  892. "rest"
  893. ],
  894. "time": "2016-10-17 18:31:11"
  895. },
  896. {
  897. "name": "incenteev/composer-parameter-handler",
  898. "version": "v2.1.3",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/Incenteev/ParameterHandler.git",
  902. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/933c45a34814f27f2345c11c37d46b3ca7303550",
  907. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "php": ">=5.3.3",
  912. "symfony/yaml": "^2.3 || ^3.0 || ^4.0"
  913. },
  914. "require-dev": {
  915. "composer/composer": "^1.0@dev",
  916. "symfony/filesystem": "^2.3 || ^3 || ^4",
  917. "symfony/phpunit-bridge": "^4.0"
  918. },
  919. "type": "library",
  920. "extra": {
  921. "branch-alias": {
  922. "dev-master": "2.1.x-dev"
  923. }
  924. },
  925. "autoload": {
  926. "psr-4": {
  927. "Incenteev\\ParameterHandler\\": ""
  928. }
  929. },
  930. "notification-url": "https://packagist.org/downloads/",
  931. "license": [
  932. "MIT"
  933. ],
  934. "authors": [
  935. {
  936. "name": "Christophe Coevoet",
  937. "email": "stof@notk.org"
  938. }
  939. ],
  940. "description": "Composer script handling your ignored parameter file",
  941. "homepage": "https://github.com/Incenteev/ParameterHandler",
  942. "keywords": [
  943. "parameters management"
  944. ],
  945. "time": "2018-02-13 18:05:56"
  946. },
  947. {
  948. "name": "jdorn/sql-formatter",
  949. "version": "v1.2.17",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/jdorn/sql-formatter.git",
  953. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  958. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  959. "shasum": ""
  960. },
  961. "require": {
  962. "php": ">=5.2.4"
  963. },
  964. "require-dev": {
  965. "phpunit/phpunit": "3.7.*"
  966. },
  967. "type": "library",
  968. "extra": {
  969. "branch-alias": {
  970. "dev-master": "1.3.x-dev"
  971. }
  972. },
  973. "autoload": {
  974. "classmap": [
  975. "lib"
  976. ]
  977. },
  978. "notification-url": "https://packagist.org/downloads/",
  979. "license": [
  980. "MIT"
  981. ],
  982. "authors": [
  983. {
  984. "name": "Jeremy Dorn",
  985. "email": "jeremy@jeremydorn.com",
  986. "homepage": "http://jeremydorn.com/"
  987. }
  988. ],
  989. "description": "a PHP SQL highlighting library",
  990. "homepage": "https://github.com/jdorn/sql-formatter/",
  991. "keywords": [
  992. "highlight",
  993. "sql"
  994. ],
  995. "time": "2014-01-12 16:20:24"
  996. },
  997. {
  998. "name": "monolog/monolog",
  999. "version": "1.24.0",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/Seldaek/monolog.git",
  1003. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1008. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1009. "shasum": ""
  1010. },
  1011. "require": {
  1012. "php": ">=5.3.0",
  1013. "psr/log": "~1.0"
  1014. },
  1015. "provide": {
  1016. "psr/log-implementation": "1.0.0"
  1017. },
  1018. "require-dev": {
  1019. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1020. "doctrine/couchdb": "~1.0@dev",
  1021. "graylog2/gelf-php": "~1.0",
  1022. "jakub-onderka/php-parallel-lint": "0.9",
  1023. "php-amqplib/php-amqplib": "~2.4",
  1024. "php-console/php-console": "^3.1.3",
  1025. "phpunit/phpunit": "~4.5",
  1026. "phpunit/phpunit-mock-objects": "2.3.0",
  1027. "ruflin/elastica": ">=0.90 <3.0",
  1028. "sentry/sentry": "^0.13",
  1029. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1030. },
  1031. "suggest": {
  1032. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1033. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1034. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1035. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1036. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1037. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1038. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1039. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1040. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1041. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1042. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1043. },
  1044. "type": "library",
  1045. "extra": {
  1046. "branch-alias": {
  1047. "dev-master": "2.0.x-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "psr-4": {
  1052. "Monolog\\": "src/Monolog"
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Jordi Boggiano",
  1062. "email": "j.boggiano@seld.be",
  1063. "homepage": "http://seld.be"
  1064. }
  1065. ],
  1066. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1067. "homepage": "http://github.com/Seldaek/monolog",
  1068. "keywords": [
  1069. "log",
  1070. "logging",
  1071. "psr-3"
  1072. ],
  1073. "time": "2018-11-05 09:00:11"
  1074. },
  1075. {
  1076. "name": "paragonie/random_compat",
  1077. "version": "v9.99.99",
  1078. "source": {
  1079. "type": "git",
  1080. "url": "https://github.com/paragonie/random_compat.git",
  1081. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1082. },
  1083. "dist": {
  1084. "type": "zip",
  1085. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1086. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1087. "shasum": ""
  1088. },
  1089. "require": {
  1090. "php": "^7"
  1091. },
  1092. "require-dev": {
  1093. "phpunit/phpunit": "4.*|5.*",
  1094. "vimeo/psalm": "^1"
  1095. },
  1096. "suggest": {
  1097. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1098. },
  1099. "type": "library",
  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-02 15:55:56"
  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-06 20:24:11"
  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-14 16:28:37"
  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-28 16:06:13"
  1263. },
  1264. {
  1265. "name": "psr/log",
  1266. "version": "1.1.0",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/php-fig/log.git",
  1270. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1275. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  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": "2018-11-20 15:27:04"
  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-23 01:57:42"
  1358. },
  1359. {
  1360. "name": "sensio/distribution-bundle",
  1361. "version": "v5.0.23",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  1365. "reference": "088b116a0e27faa0e1a7384dd4f3f6a9d5a8a3b6"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/088b116a0e27faa0e1a7384dd4f3f6a9d5a8a3b6",
  1370. "reference": "088b116a0e27faa0e1a7384dd4f3f6a9d5a8a3b6",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "php": ">=5.3.9",
  1375. "sensiolabs/security-checker": "~5.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-10-25 15:26:23"
  1410. },
  1411. {
  1412. "name": "sensio/framework-extra-bundle",
  1413. "version": "v5.2.3",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  1417. "reference": "1032c7077fd1a6f24f98b5a8377938000859f35d"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/1032c7077fd1a6f24f98b5a8377938000859f35d",
  1422. "reference": "1032c7077fd1a6f24f98b5a8377938000859f35d",
  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.4.19|^4.1.8",
  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-11-30 18:25:56"
  1481. },
  1482. {
  1483. "name": "sensiolabs/security-checker",
  1484. "version": "v5.0.2",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/sensiolabs/security-checker.git",
  1488. "reference": "728f9fb0fe815003b3bcfd331d33106c0d8a6b1e"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/728f9fb0fe815003b3bcfd331d33106c0d8a6b1e",
  1493. "reference": "728f9fb0fe815003b3bcfd331d33106c0d8a6b1e",
  1494. "shasum": ""
  1495. },
  1496. "require": {
  1497. "composer/ca-bundle": "^1.0",
  1498. "php": ">=5.5.9",
  1499. "symfony/console": "~2.7|~3.0|~4.0"
  1500. },
  1501. "bin": [
  1502. "security-checker"
  1503. ],
  1504. "type": "library",
  1505. "extra": {
  1506. "branch-alias": {
  1507. "dev-master": "5.0-dev"
  1508. }
  1509. },
  1510. "autoload": {
  1511. "psr-4": {
  1512. "SensioLabs\\Security\\": "SensioLabs/Security"
  1513. }
  1514. },
  1515. "notification-url": "https://packagist.org/downloads/",
  1516. "license": [
  1517. "MIT"
  1518. ],
  1519. "authors": [
  1520. {
  1521. "name": "Fabien Potencier",
  1522. "email": "fabien.potencier@gmail.com"
  1523. }
  1524. ],
  1525. "description": "A security checker for your composer.lock",
  1526. "time": "2018-12-10 06:08:43"
  1527. },
  1528. {
  1529. "name": "swiftmailer/swiftmailer",
  1530. "version": "v5.4.12",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1534. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  1539. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "php": ">=5.3.3"
  1544. },
  1545. "require-dev": {
  1546. "mockery/mockery": "~0.9.1",
  1547. "symfony/phpunit-bridge": "~3.2"
  1548. },
  1549. "type": "library",
  1550. "extra": {
  1551. "branch-alias": {
  1552. "dev-master": "5.4-dev"
  1553. }
  1554. },
  1555. "autoload": {
  1556. "files": [
  1557. "lib/swift_required.php"
  1558. ]
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "MIT"
  1563. ],
  1564. "authors": [
  1565. {
  1566. "name": "Chris Corbyn"
  1567. },
  1568. {
  1569. "name": "Fabien Potencier",
  1570. "email": "fabien@symfony.com"
  1571. }
  1572. ],
  1573. "description": "Swiftmailer, free feature-rich PHP mailer",
  1574. "homepage": "https://swiftmailer.symfony.com",
  1575. "keywords": [
  1576. "email",
  1577. "mail",
  1578. "mailer"
  1579. ],
  1580. "time": "2018-07-31 09:26:32"
  1581. },
  1582. {
  1583. "name": "symfony/monolog-bundle",
  1584. "version": "v3.3.1",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/symfony/monolog-bundle.git",
  1588. "reference": "572e143afc03419a75ab002c80a2fd99299195ff"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/572e143afc03419a75ab002c80a2fd99299195ff",
  1593. "reference": "572e143afc03419a75ab002c80a2fd99299195ff",
  1594. "shasum": ""
  1595. },
  1596. "require": {
  1597. "monolog/monolog": "~1.22",
  1598. "php": ">=5.6",
  1599. "symfony/config": "~2.7|~3.3|~4.0",
  1600. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  1601. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  1602. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  1603. },
  1604. "require-dev": {
  1605. "symfony/console": "~2.7|~3.3|~4.0",
  1606. "symfony/phpunit-bridge": "^3.3|^4.0",
  1607. "symfony/yaml": "~2.7|~3.3|~4.0"
  1608. },
  1609. "type": "symfony-bundle",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-master": "3.x-dev"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "psr-4": {
  1617. "Symfony\\Bundle\\MonologBundle\\": ""
  1618. },
  1619. "exclude-from-classmap": [
  1620. "/Tests/"
  1621. ]
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "MIT"
  1626. ],
  1627. "authors": [
  1628. {
  1629. "name": "Symfony Community",
  1630. "homepage": "http://symfony.com/contributors"
  1631. },
  1632. {
  1633. "name": "Fabien Potencier",
  1634. "email": "fabien@symfony.com"
  1635. }
  1636. ],
  1637. "description": "Symfony MonologBundle",
  1638. "homepage": "http://symfony.com",
  1639. "keywords": [
  1640. "log",
  1641. "logging"
  1642. ],
  1643. "time": "2018-11-04 09:58:13"
  1644. },
  1645. {
  1646. "name": "symfony/polyfill-apcu",
  1647. "version": "v1.10.0",
  1648. "source": {
  1649. "type": "git",
  1650. "url": "https://github.com/symfony/polyfill-apcu.git",
  1651. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2"
  1652. },
  1653. "dist": {
  1654. "type": "zip",
  1655. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  1656. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  1657. "shasum": ""
  1658. },
  1659. "require": {
  1660. "php": ">=5.3.3"
  1661. },
  1662. "type": "library",
  1663. "extra": {
  1664. "branch-alias": {
  1665. "dev-master": "1.9-dev"
  1666. }
  1667. },
  1668. "autoload": {
  1669. "psr-4": {
  1670. "Symfony\\Polyfill\\Apcu\\": ""
  1671. },
  1672. "files": [
  1673. "bootstrap.php"
  1674. ]
  1675. },
  1676. "notification-url": "https://packagist.org/downloads/",
  1677. "license": [
  1678. "MIT"
  1679. ],
  1680. "authors": [
  1681. {
  1682. "name": "Nicolas Grekas",
  1683. "email": "p@tchwork.com"
  1684. },
  1685. {
  1686. "name": "Symfony Community",
  1687. "homepage": "https://symfony.com/contributors"
  1688. }
  1689. ],
  1690. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  1691. "homepage": "https://symfony.com",
  1692. "keywords": [
  1693. "apcu",
  1694. "compatibility",
  1695. "polyfill",
  1696. "portable",
  1697. "shim"
  1698. ],
  1699. "time": "2018-08-06 14:22:27"
  1700. },
  1701. {
  1702. "name": "symfony/polyfill-ctype",
  1703. "version": "v1.10.0",
  1704. "source": {
  1705. "type": "git",
  1706. "url": "https://github.com/symfony/polyfill-ctype.git",
  1707. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  1708. },
  1709. "dist": {
  1710. "type": "zip",
  1711. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  1712. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  1713. "shasum": ""
  1714. },
  1715. "require": {
  1716. "php": ">=5.3.3"
  1717. },
  1718. "suggest": {
  1719. "ext-ctype": "For best performance"
  1720. },
  1721. "type": "library",
  1722. "extra": {
  1723. "branch-alias": {
  1724. "dev-master": "1.9-dev"
  1725. }
  1726. },
  1727. "autoload": {
  1728. "psr-4": {
  1729. "Symfony\\Polyfill\\Ctype\\": ""
  1730. },
  1731. "files": [
  1732. "bootstrap.php"
  1733. ]
  1734. },
  1735. "notification-url": "https://packagist.org/downloads/",
  1736. "license": [
  1737. "MIT"
  1738. ],
  1739. "authors": [
  1740. {
  1741. "name": "Symfony Community",
  1742. "homepage": "https://symfony.com/contributors"
  1743. },
  1744. {
  1745. "name": "Gert de Pagter",
  1746. "email": "BackEndTea@gmail.com"
  1747. }
  1748. ],
  1749. "description": "Symfony polyfill for ctype functions",
  1750. "homepage": "https://symfony.com",
  1751. "keywords": [
  1752. "compatibility",
  1753. "ctype",
  1754. "polyfill",
  1755. "portable"
  1756. ],
  1757. "time": "2018-08-06 14:22:27"
  1758. },
  1759. {
  1760. "name": "symfony/polyfill-intl-icu",
  1761. "version": "v1.10.0",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  1765. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/f22a90256d577c7ef7efad8df1f0201663d57644",
  1770. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644",
  1771. "shasum": ""
  1772. },
  1773. "require": {
  1774. "php": ">=5.3.3",
  1775. "symfony/intl": "~2.3|~3.0|~4.0"
  1776. },
  1777. "suggest": {
  1778. "ext-intl": "For best performance"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-master": "1.9-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "files": [
  1788. "bootstrap.php"
  1789. ]
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "MIT"
  1794. ],
  1795. "authors": [
  1796. {
  1797. "name": "Nicolas Grekas",
  1798. "email": "p@tchwork.com"
  1799. },
  1800. {
  1801. "name": "Symfony Community",
  1802. "homepage": "https://symfony.com/contributors"
  1803. }
  1804. ],
  1805. "description": "Symfony polyfill for intl's ICU-related data and classes",
  1806. "homepage": "https://symfony.com",
  1807. "keywords": [
  1808. "compatibility",
  1809. "icu",
  1810. "intl",
  1811. "polyfill",
  1812. "portable",
  1813. "shim"
  1814. ],
  1815. "time": "2018-08-06 14:22:27"
  1816. },
  1817. {
  1818. "name": "symfony/polyfill-mbstring",
  1819. "version": "v1.10.0",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1823. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  1828. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  1829. "shasum": ""
  1830. },
  1831. "require": {
  1832. "php": ">=5.3.3"
  1833. },
  1834. "suggest": {
  1835. "ext-mbstring": "For best performance"
  1836. },
  1837. "type": "library",
  1838. "extra": {
  1839. "branch-alias": {
  1840. "dev-master": "1.9-dev"
  1841. }
  1842. },
  1843. "autoload": {
  1844. "psr-4": {
  1845. "Symfony\\Polyfill\\Mbstring\\": ""
  1846. },
  1847. "files": [
  1848. "bootstrap.php"
  1849. ]
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "MIT"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Nicolas Grekas",
  1858. "email": "p@tchwork.com"
  1859. },
  1860. {
  1861. "name": "Symfony Community",
  1862. "homepage": "https://symfony.com/contributors"
  1863. }
  1864. ],
  1865. "description": "Symfony polyfill for the Mbstring extension",
  1866. "homepage": "https://symfony.com",
  1867. "keywords": [
  1868. "compatibility",
  1869. "mbstring",
  1870. "polyfill",
  1871. "portable",
  1872. "shim"
  1873. ],
  1874. "time": "2018-09-21 13:07:52"
  1875. },
  1876. {
  1877. "name": "symfony/polyfill-php56",
  1878. "version": "v1.10.0",
  1879. "source": {
  1880. "type": "git",
  1881. "url": "https://github.com/symfony/polyfill-php56.git",
  1882. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  1883. },
  1884. "dist": {
  1885. "type": "zip",
  1886. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  1887. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  1888. "shasum": ""
  1889. },
  1890. "require": {
  1891. "php": ">=5.3.3",
  1892. "symfony/polyfill-util": "~1.0"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "branch-alias": {
  1897. "dev-master": "1.9-dev"
  1898. }
  1899. },
  1900. "autoload": {
  1901. "psr-4": {
  1902. "Symfony\\Polyfill\\Php56\\": ""
  1903. },
  1904. "files": [
  1905. "bootstrap.php"
  1906. ]
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "Nicolas Grekas",
  1915. "email": "p@tchwork.com"
  1916. },
  1917. {
  1918. "name": "Symfony Community",
  1919. "homepage": "https://symfony.com/contributors"
  1920. }
  1921. ],
  1922. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  1923. "homepage": "https://symfony.com",
  1924. "keywords": [
  1925. "compatibility",
  1926. "polyfill",
  1927. "portable",
  1928. "shim"
  1929. ],
  1930. "time": "2018-09-21 06:26:08"
  1931. },
  1932. {
  1933. "name": "symfony/polyfill-php70",
  1934. "version": "v1.10.0",
  1935. "source": {
  1936. "type": "git",
  1937. "url": "https://github.com/symfony/polyfill-php70.git",
  1938. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  1939. },
  1940. "dist": {
  1941. "type": "zip",
  1942. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  1943. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  1944. "shasum": ""
  1945. },
  1946. "require": {
  1947. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1948. "php": ">=5.3.3"
  1949. },
  1950. "type": "library",
  1951. "extra": {
  1952. "branch-alias": {
  1953. "dev-master": "1.9-dev"
  1954. }
  1955. },
  1956. "autoload": {
  1957. "psr-4": {
  1958. "Symfony\\Polyfill\\Php70\\": ""
  1959. },
  1960. "files": [
  1961. "bootstrap.php"
  1962. ],
  1963. "classmap": [
  1964. "Resources/stubs"
  1965. ]
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Nicolas Grekas",
  1974. "email": "p@tchwork.com"
  1975. },
  1976. {
  1977. "name": "Symfony Community",
  1978. "homepage": "https://symfony.com/contributors"
  1979. }
  1980. ],
  1981. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1982. "homepage": "https://symfony.com",
  1983. "keywords": [
  1984. "compatibility",
  1985. "polyfill",
  1986. "portable",
  1987. "shim"
  1988. ],
  1989. "time": "2018-09-21 06:26:08"
  1990. },
  1991. {
  1992. "name": "symfony/polyfill-util",
  1993. "version": "v1.10.0",
  1994. "source": {
  1995. "type": "git",
  1996. "url": "https://github.com/symfony/polyfill-util.git",
  1997. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  1998. },
  1999. "dist": {
  2000. "type": "zip",
  2001. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  2002. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  2003. "shasum": ""
  2004. },
  2005. "require": {
  2006. "php": ">=5.3.3"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "1.9-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Symfony\\Polyfill\\Util\\": ""
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Nicolas Grekas",
  2026. "email": "p@tchwork.com"
  2027. },
  2028. {
  2029. "name": "Symfony Community",
  2030. "homepage": "https://symfony.com/contributors"
  2031. }
  2032. ],
  2033. "description": "Symfony utilities for portability of PHP codes",
  2034. "homepage": "https://symfony.com",
  2035. "keywords": [
  2036. "compat",
  2037. "compatibility",
  2038. "polyfill",
  2039. "shim"
  2040. ],
  2041. "time": "2018-09-30 16:36:12"
  2042. },
  2043. {
  2044. "name": "symfony/swiftmailer-bundle",
  2045. "version": "v2.6.7",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  2049. "reference": "c4808f5169efc05567be983909d00f00521c53ec"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/c4808f5169efc05567be983909d00f00521c53ec",
  2054. "reference": "c4808f5169efc05567be983909d00f00521c53ec",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "php": ">=5.3.2",
  2059. "swiftmailer/swiftmailer": "~4.2|~5.0",
  2060. "symfony/config": "~2.7|~3.0",
  2061. "symfony/dependency-injection": "~2.7|~3.0",
  2062. "symfony/http-kernel": "~2.7|~3.0"
  2063. },
  2064. "require-dev": {
  2065. "symfony/console": "~2.7|~3.0",
  2066. "symfony/framework-bundle": "~2.7|~3.0",
  2067. "symfony/phpunit-bridge": "~3.3@dev",
  2068. "symfony/yaml": "~2.7|~3.0"
  2069. },
  2070. "suggest": {
  2071. "psr/log": "Allows logging"
  2072. },
  2073. "type": "symfony-bundle",
  2074. "extra": {
  2075. "branch-alias": {
  2076. "dev-master": "2.6-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "psr-4": {
  2081. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "Symfony Community",
  2091. "homepage": "http://symfony.com/contributors"
  2092. },
  2093. {
  2094. "name": "Fabien Potencier",
  2095. "email": "fabien@symfony.com"
  2096. }
  2097. ],
  2098. "description": "Symfony SwiftmailerBundle",
  2099. "homepage": "http://symfony.com",
  2100. "time": "2017-10-19 01:06:41"
  2101. },
  2102. {
  2103. "name": "symfony/symfony",
  2104. "version": "v3.4.20",
  2105. "source": {
  2106. "type": "git",
  2107. "url": "https://github.com/symfony/symfony.git",
  2108. "reference": "f6b8ddc362b1cf3fb06548693c3adbb736092412"
  2109. },
  2110. "dist": {
  2111. "type": "zip",
  2112. "url": "https://api.github.com/repos/symfony/symfony/zipball/f6b8ddc362b1cf3fb06548693c3adbb736092412",
  2113. "reference": "f6b8ddc362b1cf3fb06548693c3adbb736092412",
  2114. "shasum": ""
  2115. },
  2116. "require": {
  2117. "doctrine/common": "~2.4",
  2118. "ext-xml": "*",
  2119. "fig/link-util": "^1.0",
  2120. "php": "^5.5.9|>=7.0.8",
  2121. "psr/cache": "~1.0",
  2122. "psr/container": "^1.0",
  2123. "psr/link": "^1.0",
  2124. "psr/log": "~1.0",
  2125. "psr/simple-cache": "^1.0",
  2126. "symfony/polyfill-apcu": "~1.1",
  2127. "symfony/polyfill-ctype": "~1.8",
  2128. "symfony/polyfill-intl-icu": "~1.0",
  2129. "symfony/polyfill-mbstring": "~1.0",
  2130. "symfony/polyfill-php56": "~1.0",
  2131. "symfony/polyfill-php70": "~1.6",
  2132. "twig/twig": "^1.35|^2.4.4"
  2133. },
  2134. "conflict": {
  2135. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  2136. "phpdocumentor/type-resolver": "<0.3.0",
  2137. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2138. },
  2139. "provide": {
  2140. "psr/cache-implementation": "1.0",
  2141. "psr/container-implementation": "1.0",
  2142. "psr/log-implementation": "1.0",
  2143. "psr/simple-cache-implementation": "1.0"
  2144. },
  2145. "replace": {
  2146. "symfony/asset": "self.version",
  2147. "symfony/browser-kit": "self.version",
  2148. "symfony/cache": "self.version",
  2149. "symfony/class-loader": "self.version",
  2150. "symfony/config": "self.version",
  2151. "symfony/console": "self.version",
  2152. "symfony/css-selector": "self.version",
  2153. "symfony/debug": "self.version",
  2154. "symfony/debug-bundle": "self.version",
  2155. "symfony/dependency-injection": "self.version",
  2156. "symfony/doctrine-bridge": "self.version",
  2157. "symfony/dom-crawler": "self.version",
  2158. "symfony/dotenv": "self.version",
  2159. "symfony/event-dispatcher": "self.version",
  2160. "symfony/expression-language": "self.version",
  2161. "symfony/filesystem": "self.version",
  2162. "symfony/finder": "self.version",
  2163. "symfony/form": "self.version",
  2164. "symfony/framework-bundle": "self.version",
  2165. "symfony/http-foundation": "self.version",
  2166. "symfony/http-kernel": "self.version",
  2167. "symfony/inflector": "self.version",
  2168. "symfony/intl": "self.version",
  2169. "symfony/ldap": "self.version",
  2170. "symfony/lock": "self.version",
  2171. "symfony/monolog-bridge": "self.version",
  2172. "symfony/options-resolver": "self.version",
  2173. "symfony/process": "self.version",
  2174. "symfony/property-access": "self.version",
  2175. "symfony/property-info": "self.version",
  2176. "symfony/proxy-manager-bridge": "self.version",
  2177. "symfony/routing": "self.version",
  2178. "symfony/security": "self.version",
  2179. "symfony/security-bundle": "self.version",
  2180. "symfony/security-core": "self.version",
  2181. "symfony/security-csrf": "self.version",
  2182. "symfony/security-guard": "self.version",
  2183. "symfony/security-http": "self.version",
  2184. "symfony/serializer": "self.version",
  2185. "symfony/stopwatch": "self.version",
  2186. "symfony/templating": "self.version",
  2187. "symfony/translation": "self.version",
  2188. "symfony/twig-bridge": "self.version",
  2189. "symfony/twig-bundle": "self.version",
  2190. "symfony/validator": "self.version",
  2191. "symfony/var-dumper": "self.version",
  2192. "symfony/web-link": "self.version",
  2193. "symfony/web-profiler-bundle": "self.version",
  2194. "symfony/web-server-bundle": "self.version",
  2195. "symfony/workflow": "self.version",
  2196. "symfony/yaml": "self.version"
  2197. },
  2198. "require-dev": {
  2199. "cache/integration-tests": "dev-master",
  2200. "doctrine/annotations": "~1.0",
  2201. "doctrine/cache": "~1.6",
  2202. "doctrine/data-fixtures": "1.0.*",
  2203. "doctrine/dbal": "~2.4",
  2204. "doctrine/doctrine-bundle": "~1.4",
  2205. "doctrine/orm": "~2.4,>=2.4.5",
  2206. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  2207. "monolog/monolog": "~1.11",
  2208. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  2209. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  2210. "predis/predis": "~1.0",
  2211. "symfony/phpunit-bridge": "~3.4|~4.0",
  2212. "symfony/security-acl": "~2.8|~3.0"
  2213. },
  2214. "type": "library",
  2215. "extra": {
  2216. "branch-alias": {
  2217. "dev-master": "3.4-dev"
  2218. }
  2219. },
  2220. "autoload": {
  2221. "psr-4": {
  2222. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  2223. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  2224. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  2225. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  2226. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  2227. "Symfony\\Component\\": "src/Symfony/Component/"
  2228. },
  2229. "classmap": [
  2230. "src/Symfony/Component/Intl/Resources/stubs"
  2231. ],
  2232. "exclude-from-classmap": [
  2233. "**/Tests/"
  2234. ]
  2235. },
  2236. "notification-url": "https://packagist.org/downloads/",
  2237. "license": [
  2238. "MIT"
  2239. ],
  2240. "authors": [
  2241. {
  2242. "name": "Fabien Potencier",
  2243. "email": "fabien@symfony.com"
  2244. },
  2245. {
  2246. "name": "Symfony Community",
  2247. "homepage": "https://symfony.com/contributors"
  2248. }
  2249. ],
  2250. "description": "The Symfony PHP framework",
  2251. "homepage": "https://symfony.com",
  2252. "keywords": [
  2253. "framework"
  2254. ],
  2255. "time": "2018-12-06 15:24:36"
  2256. },
  2257. {
  2258. "name": "twbs/bootstrap",
  2259. "version": "v4.1.3",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/twbs/bootstrap.git",
  2263. "reference": "3b558734382ce58b51e5fc676453bfd53bba9201"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/3b558734382ce58b51e5fc676453bfd53bba9201",
  2268. "reference": "3b558734382ce58b51e5fc676453bfd53bba9201",
  2269. "shasum": ""
  2270. },
  2271. "replace": {
  2272. "twitter/bootstrap": "self.version"
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-master": "3.3.x-dev"
  2278. }
  2279. },
  2280. "notification-url": "https://packagist.org/downloads/",
  2281. "license": [
  2282. "MIT"
  2283. ],
  2284. "authors": [
  2285. {
  2286. "name": "Jacob Thornton",
  2287. "email": "jacobthornton@gmail.com"
  2288. },
  2289. {
  2290. "name": "Mark Otto",
  2291. "email": "markdotto@gmail.com"
  2292. }
  2293. ],
  2294. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  2295. "homepage": "https://getbootstrap.com/",
  2296. "keywords": [
  2297. "JS",
  2298. "css",
  2299. "framework",
  2300. "front-end",
  2301. "mobile-first",
  2302. "responsive",
  2303. "sass",
  2304. "web"
  2305. ],
  2306. "time": "2018-07-24 15:54:34"
  2307. },
  2308. {
  2309. "name": "twig/twig",
  2310. "version": "v2.5.0",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/twigphp/Twig.git",
  2314. "reference": "6a5f676b77a90823c2d4eaf76137b771adf31323"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/twigphp/Twig/zipball/6a5f676b77a90823c2d4eaf76137b771adf31323",
  2319. "reference": "6a5f676b77a90823c2d4eaf76137b771adf31323",
  2320. "shasum": ""
  2321. },
  2322. "require": {
  2323. "php": "^7.0",
  2324. "symfony/polyfill-ctype": "^1.8",
  2325. "symfony/polyfill-mbstring": "~1.0"
  2326. },
  2327. "require-dev": {
  2328. "psr/container": "^1.0",
  2329. "symfony/debug": "^2.7",
  2330. "symfony/phpunit-bridge": "^3.3"
  2331. },
  2332. "type": "library",
  2333. "extra": {
  2334. "branch-alias": {
  2335. "dev-master": "2.5-dev"
  2336. }
  2337. },
  2338. "autoload": {
  2339. "psr-0": {
  2340. "Twig_": "lib/"
  2341. },
  2342. "psr-4": {
  2343. "Twig\\": "src/"
  2344. }
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "BSD-3-Clause"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "Fabien Potencier",
  2353. "email": "fabien@symfony.com",
  2354. "homepage": "http://fabien.potencier.org",
  2355. "role": "Lead Developer"
  2356. },
  2357. {
  2358. "name": "Armin Ronacher",
  2359. "email": "armin.ronacher@active-4.com",
  2360. "role": "Project Founder"
  2361. },
  2362. {
  2363. "name": "Twig Team",
  2364. "homepage": "https://twig.symfony.com/contributors",
  2365. "role": "Contributors"
  2366. }
  2367. ],
  2368. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2369. "homepage": "https://twig.symfony.com",
  2370. "keywords": [
  2371. "templating"
  2372. ],
  2373. "time": "2018-07-13 07:18:09"
  2374. }
  2375. ],
  2376. "packages-dev": [
  2377. {
  2378. "name": "sensio/generator-bundle",
  2379. "version": "v3.1.7",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2383. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  2388. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  2389. "shasum": ""
  2390. },
  2391. "require": {
  2392. "symfony/console": "~2.7|~3.0",
  2393. "symfony/framework-bundle": "~2.7|~3.0",
  2394. "symfony/process": "~2.7|~3.0",
  2395. "symfony/yaml": "~2.7|~3.0",
  2396. "twig/twig": "^1.28.2|^2.0"
  2397. },
  2398. "require-dev": {
  2399. "doctrine/orm": "~2.4",
  2400. "symfony/doctrine-bridge": "~2.7|~3.0",
  2401. "symfony/filesystem": "~2.7|~3.0",
  2402. "symfony/phpunit-bridge": "^3.3"
  2403. },
  2404. "type": "symfony-bundle",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "3.1.x-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2413. },
  2414. "exclude-from-classmap": [
  2415. "/Tests/"
  2416. ]
  2417. },
  2418. "notification-url": "https://packagist.org/downloads/",
  2419. "license": [
  2420. "MIT"
  2421. ],
  2422. "authors": [
  2423. {
  2424. "name": "Fabien Potencier",
  2425. "email": "fabien@symfony.com"
  2426. }
  2427. ],
  2428. "description": "This bundle generates code for you",
  2429. "time": "2017-12-07 15:36:41"
  2430. },
  2431. {
  2432. "name": "symfony/phpunit-bridge",
  2433. "version": "v3.4.20",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/symfony/phpunit-bridge.git",
  2437. "reference": "2155067dfc73e0e77dbc26f236af17e4df552de5"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/2155067dfc73e0e77dbc26f236af17e4df552de5",
  2442. "reference": "2155067dfc73e0e77dbc26f236af17e4df552de5",
  2443. "shasum": ""
  2444. },
  2445. "require": {
  2446. "php": ">=5.3.3"
  2447. },
  2448. "conflict": {
  2449. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2450. },
  2451. "suggest": {
  2452. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  2453. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  2454. },
  2455. "bin": [
  2456. "bin/simple-phpunit"
  2457. ],
  2458. "type": "symfony-bridge",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-master": "3.4-dev"
  2462. },
  2463. "thanks": {
  2464. "name": "phpunit/phpunit",
  2465. "url": "https://github.com/sebastianbergmann/phpunit"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "files": [
  2470. "bootstrap.php"
  2471. ],
  2472. "psr-4": {
  2473. "Symfony\\Bridge\\PhpUnit\\": ""
  2474. },
  2475. "exclude-from-classmap": [
  2476. "/Tests/"
  2477. ]
  2478. },
  2479. "notification-url": "https://packagist.org/downloads/",
  2480. "license": [
  2481. "MIT"
  2482. ],
  2483. "authors": [
  2484. {
  2485. "name": "Nicolas Grekas",
  2486. "email": "p@tchwork.com"
  2487. },
  2488. {
  2489. "name": "Symfony Community",
  2490. "homepage": "https://symfony.com/contributors"
  2491. }
  2492. ],
  2493. "description": "Symfony PHPUnit Bridge",
  2494. "homepage": "https://symfony.com",
  2495. "time": "2018-11-20 16:47:12"
  2496. }
  2497. ],
  2498. "aliases": [],
  2499. "minimum-stability": "stable",
  2500. "stability-flags": [],
  2501. "prefer-stable": false,
  2502. "prefer-lowest": false,
  2503. "platform": {
  2504. "php": ">=5.5.9",
  2505. "ext-curl": "^7.0"
  2506. },
  2507. "platform-dev": []
  2508. }