composer.lock 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505
  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.9.1",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/doctrine/DoctrineBundle.git",
  421. "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/703fad32e4c8cbe609caf45a71a1d4266c830f0f",
  426. "reference": "703fad32e4c8cbe609caf45a71a1d4266c830f0f",
  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. "phpunit/phpunit": "^4.8.36|^5.7|^6.4",
  445. "satooshi/php-coveralls": "^1.0",
  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.8.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-04-19 14:07:39"
  499. },
  500. {
  501. "name": "doctrine/doctrine-cache-bundle",
  502. "version": "1.3.3",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  506. "reference": "4c8e363f96427924e7e519c5b5119b4f54512697"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/4c8e363f96427924e7e519c5b5119b4f54512697",
  511. "reference": "4c8e363f96427924e7e519c5b5119b4f54512697",
  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|~5",
  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. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Symfony Community",
  557. "homepage": "http://symfony.com/contributors"
  558. },
  559. {
  560. "name": "Benjamin Eberlei",
  561. "email": "kontakt@beberlei.de"
  562. },
  563. {
  564. "name": "Fabio B. Silva",
  565. "email": "fabio.bat.silva@gmail.com"
  566. },
  567. {
  568. "name": "Guilherme Blanco",
  569. "email": "guilhermeblanco@hotmail.com"
  570. },
  571. {
  572. "name": "Doctrine Project",
  573. "homepage": "http://www.doctrine-project.org/"
  574. },
  575. {
  576. "name": "Fabien Potencier",
  577. "email": "fabien@symfony.com"
  578. }
  579. ],
  580. "description": "Symfony Bundle for Doctrine Cache",
  581. "homepage": "http://www.doctrine-project.org",
  582. "keywords": [
  583. "cache",
  584. "caching"
  585. ],
  586. "time": "2018-03-27 09:22:12"
  587. },
  588. {
  589. "name": "doctrine/inflector",
  590. "version": "v1.2.0",
  591. "source": {
  592. "type": "git",
  593. "url": "https://github.com/doctrine/inflector.git",
  594. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  595. },
  596. "dist": {
  597. "type": "zip",
  598. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  599. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  600. "shasum": ""
  601. },
  602. "require": {
  603. "php": "^7.0"
  604. },
  605. "require-dev": {
  606. "phpunit/phpunit": "^6.2"
  607. },
  608. "type": "library",
  609. "extra": {
  610. "branch-alias": {
  611. "dev-master": "1.2.x-dev"
  612. }
  613. },
  614. "autoload": {
  615. "psr-4": {
  616. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Roman Borschel",
  626. "email": "roman@code-factory.org"
  627. },
  628. {
  629. "name": "Benjamin Eberlei",
  630. "email": "kontakt@beberlei.de"
  631. },
  632. {
  633. "name": "Guilherme Blanco",
  634. "email": "guilhermeblanco@gmail.com"
  635. },
  636. {
  637. "name": "Jonathan Wage",
  638. "email": "jonwage@gmail.com"
  639. },
  640. {
  641. "name": "Johannes Schmitt",
  642. "email": "schmittjoh@gmail.com"
  643. }
  644. ],
  645. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  646. "homepage": "http://www.doctrine-project.org",
  647. "keywords": [
  648. "inflection",
  649. "pluralize",
  650. "singularize",
  651. "string"
  652. ],
  653. "time": "2017-07-22 12:18:28"
  654. },
  655. {
  656. "name": "doctrine/instantiator",
  657. "version": "1.0.5",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/doctrine/instantiator.git",
  661. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  666. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  667. "shasum": ""
  668. },
  669. "require": {
  670. "php": ">=5.3,<8.0-DEV"
  671. },
  672. "require-dev": {
  673. "athletic/athletic": "~0.1.8",
  674. "ext-pdo": "*",
  675. "ext-phar": "*",
  676. "phpunit/phpunit": "~4.0",
  677. "squizlabs/php_codesniffer": "~2.0"
  678. },
  679. "type": "library",
  680. "extra": {
  681. "branch-alias": {
  682. "dev-master": "1.0.x-dev"
  683. }
  684. },
  685. "autoload": {
  686. "psr-4": {
  687. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Marco Pivetta",
  697. "email": "ocramius@gmail.com",
  698. "homepage": "http://ocramius.github.com/"
  699. }
  700. ],
  701. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  702. "homepage": "https://github.com/doctrine/instantiator",
  703. "keywords": [
  704. "constructor",
  705. "instantiate"
  706. ],
  707. "time": "2015-06-14 21:17:01"
  708. },
  709. {
  710. "name": "doctrine/lexer",
  711. "version": "v1.0.1",
  712. "source": {
  713. "type": "git",
  714. "url": "https://github.com/doctrine/lexer.git",
  715. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  716. },
  717. "dist": {
  718. "type": "zip",
  719. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  720. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  721. "shasum": ""
  722. },
  723. "require": {
  724. "php": ">=5.3.2"
  725. },
  726. "type": "library",
  727. "extra": {
  728. "branch-alias": {
  729. "dev-master": "1.0.x-dev"
  730. }
  731. },
  732. "autoload": {
  733. "psr-0": {
  734. "Doctrine\\Common\\Lexer\\": "lib/"
  735. }
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "MIT"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Roman Borschel",
  744. "email": "roman@code-factory.org"
  745. },
  746. {
  747. "name": "Guilherme Blanco",
  748. "email": "guilhermeblanco@gmail.com"
  749. },
  750. {
  751. "name": "Johannes Schmitt",
  752. "email": "schmittjoh@gmail.com"
  753. }
  754. ],
  755. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  756. "homepage": "http://www.doctrine-project.org",
  757. "keywords": [
  758. "lexer",
  759. "parser"
  760. ],
  761. "time": "2014-09-09 13:34:57"
  762. },
  763. {
  764. "name": "doctrine/orm",
  765. "version": "v2.5.14",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/doctrine/doctrine2.git",
  769. "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/810a7baf81462a5ddf10e8baa8cb94b6eec02754",
  774. "reference": "810a7baf81462a5ddf10e8baa8cb94b6eec02754",
  775. "shasum": ""
  776. },
  777. "require": {
  778. "doctrine/cache": "~1.4",
  779. "doctrine/collections": "~1.2",
  780. "doctrine/common": ">=2.5-dev,<2.9-dev",
  781. "doctrine/dbal": ">=2.5-dev,<2.7-dev",
  782. "doctrine/instantiator": "^1.0.1",
  783. "ext-pdo": "*",
  784. "php": ">=5.4",
  785. "symfony/console": "~2.5|~3.0|~4.0"
  786. },
  787. "require-dev": {
  788. "phpunit/phpunit": "~4.0",
  789. "symfony/yaml": "~2.3|~3.0|~4.0"
  790. },
  791. "suggest": {
  792. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  793. },
  794. "bin": [
  795. "bin/doctrine",
  796. "bin/doctrine.php"
  797. ],
  798. "type": "library",
  799. "extra": {
  800. "branch-alias": {
  801. "dev-master": "2.6.x-dev"
  802. }
  803. },
  804. "autoload": {
  805. "psr-0": {
  806. "Doctrine\\ORM\\": "lib/"
  807. }
  808. },
  809. "notification-url": "https://packagist.org/downloads/",
  810. "license": [
  811. "MIT"
  812. ],
  813. "authors": [
  814. {
  815. "name": "Roman Borschel",
  816. "email": "roman@code-factory.org"
  817. },
  818. {
  819. "name": "Benjamin Eberlei",
  820. "email": "kontakt@beberlei.de"
  821. },
  822. {
  823. "name": "Guilherme Blanco",
  824. "email": "guilhermeblanco@gmail.com"
  825. },
  826. {
  827. "name": "Jonathan Wage",
  828. "email": "jonwage@gmail.com"
  829. }
  830. ],
  831. "description": "Object-Relational-Mapper for PHP",
  832. "homepage": "http://www.doctrine-project.org",
  833. "keywords": [
  834. "database",
  835. "orm"
  836. ],
  837. "time": "2017-12-17 02:57:51"
  838. },
  839. {
  840. "name": "fig/link-util",
  841. "version": "1.0.0",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/php-fig/link-util.git",
  845. "reference": "1a07821801a148be4add11ab0603e4af55a72fac"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac",
  850. "reference": "1a07821801a148be4add11ab0603e4af55a72fac",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": ">=5.5.0",
  855. "psr/link": "~1.0@dev"
  856. },
  857. "require-dev": {
  858. "phpunit/phpunit": "^5.1",
  859. "squizlabs/php_codesniffer": "^2.3.1"
  860. },
  861. "type": "library",
  862. "extra": {
  863. "branch-alias": {
  864. "dev-master": "1.0.x-dev"
  865. }
  866. },
  867. "autoload": {
  868. "psr-4": {
  869. "Fig\\Link\\": "src/"
  870. }
  871. },
  872. "notification-url": "https://packagist.org/downloads/",
  873. "license": [
  874. "MIT"
  875. ],
  876. "authors": [
  877. {
  878. "name": "PHP-FIG",
  879. "homepage": "http://www.php-fig.org/"
  880. }
  881. ],
  882. "description": "Common utility implementations for HTTP links",
  883. "keywords": [
  884. "http",
  885. "http-link",
  886. "link",
  887. "psr",
  888. "psr-13",
  889. "rest"
  890. ],
  891. "time": "2016-10-17 18:31:11"
  892. },
  893. {
  894. "name": "incenteev/composer-parameter-handler",
  895. "version": "v2.1.3",
  896. "source": {
  897. "type": "git",
  898. "url": "https://github.com/Incenteev/ParameterHandler.git",
  899. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550"
  900. },
  901. "dist": {
  902. "type": "zip",
  903. "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/933c45a34814f27f2345c11c37d46b3ca7303550",
  904. "reference": "933c45a34814f27f2345c11c37d46b3ca7303550",
  905. "shasum": ""
  906. },
  907. "require": {
  908. "php": ">=5.3.3",
  909. "symfony/yaml": "^2.3 || ^3.0 || ^4.0"
  910. },
  911. "require-dev": {
  912. "composer/composer": "^1.0@dev",
  913. "symfony/filesystem": "^2.3 || ^3 || ^4",
  914. "symfony/phpunit-bridge": "^4.0"
  915. },
  916. "type": "library",
  917. "extra": {
  918. "branch-alias": {
  919. "dev-master": "2.1.x-dev"
  920. }
  921. },
  922. "autoload": {
  923. "psr-4": {
  924. "Incenteev\\ParameterHandler\\": ""
  925. }
  926. },
  927. "notification-url": "https://packagist.org/downloads/",
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Christophe Coevoet",
  934. "email": "stof@notk.org"
  935. }
  936. ],
  937. "description": "Composer script handling your ignored parameter file",
  938. "homepage": "https://github.com/Incenteev/ParameterHandler",
  939. "keywords": [
  940. "parameters management"
  941. ],
  942. "time": "2018-02-13 18:05:56"
  943. },
  944. {
  945. "name": "jdorn/sql-formatter",
  946. "version": "v1.2.17",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/jdorn/sql-formatter.git",
  950. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  955. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": ">=5.2.4"
  960. },
  961. "require-dev": {
  962. "phpunit/phpunit": "3.7.*"
  963. },
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.3.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "classmap": [
  972. "lib"
  973. ]
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Jeremy Dorn",
  982. "email": "jeremy@jeremydorn.com",
  983. "homepage": "http://jeremydorn.com/"
  984. }
  985. ],
  986. "description": "a PHP SQL highlighting library",
  987. "homepage": "https://github.com/jdorn/sql-formatter/",
  988. "keywords": [
  989. "highlight",
  990. "sql"
  991. ],
  992. "time": "2014-01-12 16:20:24"
  993. },
  994. {
  995. "name": "monolog/monolog",
  996. "version": "1.23.0",
  997. "source": {
  998. "type": "git",
  999. "url": "https://github.com/Seldaek/monolog.git",
  1000. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  1001. },
  1002. "dist": {
  1003. "type": "zip",
  1004. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  1005. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  1006. "shasum": ""
  1007. },
  1008. "require": {
  1009. "php": ">=5.3.0",
  1010. "psr/log": "~1.0"
  1011. },
  1012. "provide": {
  1013. "psr/log-implementation": "1.0.0"
  1014. },
  1015. "require-dev": {
  1016. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1017. "doctrine/couchdb": "~1.0@dev",
  1018. "graylog2/gelf-php": "~1.0",
  1019. "jakub-onderka/php-parallel-lint": "0.9",
  1020. "php-amqplib/php-amqplib": "~2.4",
  1021. "php-console/php-console": "^3.1.3",
  1022. "phpunit/phpunit": "~4.5",
  1023. "phpunit/phpunit-mock-objects": "2.3.0",
  1024. "ruflin/elastica": ">=0.90 <3.0",
  1025. "sentry/sentry": "^0.13",
  1026. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1027. },
  1028. "suggest": {
  1029. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1030. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1031. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1032. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1033. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1034. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1035. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1036. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1037. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1038. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1039. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1040. },
  1041. "type": "library",
  1042. "extra": {
  1043. "branch-alias": {
  1044. "dev-master": "2.0.x-dev"
  1045. }
  1046. },
  1047. "autoload": {
  1048. "psr-4": {
  1049. "Monolog\\": "src/Monolog"
  1050. }
  1051. },
  1052. "notification-url": "https://packagist.org/downloads/",
  1053. "license": [
  1054. "MIT"
  1055. ],
  1056. "authors": [
  1057. {
  1058. "name": "Jordi Boggiano",
  1059. "email": "j.boggiano@seld.be",
  1060. "homepage": "http://seld.be"
  1061. }
  1062. ],
  1063. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1064. "homepage": "http://github.com/Seldaek/monolog",
  1065. "keywords": [
  1066. "log",
  1067. "logging",
  1068. "psr-3"
  1069. ],
  1070. "time": "2017-06-19 01:22:40"
  1071. },
  1072. {
  1073. "name": "paragonie/random_compat",
  1074. "version": "v9.99.99",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/paragonie/random_compat.git",
  1078. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1083. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1084. "shasum": ""
  1085. },
  1086. "require": {
  1087. "php": "^7"
  1088. },
  1089. "require-dev": {
  1090. "phpunit/phpunit": "4.*|5.*",
  1091. "vimeo/psalm": "^1"
  1092. },
  1093. "suggest": {
  1094. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1095. },
  1096. "type": "library",
  1097. "notification-url": "https://packagist.org/downloads/",
  1098. "license": [
  1099. "MIT"
  1100. ],
  1101. "authors": [
  1102. {
  1103. "name": "Paragon Initiative Enterprises",
  1104. "email": "security@paragonie.com",
  1105. "homepage": "https://paragonie.com"
  1106. }
  1107. ],
  1108. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1109. "keywords": [
  1110. "csprng",
  1111. "polyfill",
  1112. "pseudorandom",
  1113. "random"
  1114. ],
  1115. "time": "2018-07-02 15:55:56"
  1116. },
  1117. {
  1118. "name": "psr/cache",
  1119. "version": "1.0.1",
  1120. "source": {
  1121. "type": "git",
  1122. "url": "https://github.com/php-fig/cache.git",
  1123. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1124. },
  1125. "dist": {
  1126. "type": "zip",
  1127. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1128. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1129. "shasum": ""
  1130. },
  1131. "require": {
  1132. "php": ">=5.3.0"
  1133. },
  1134. "type": "library",
  1135. "extra": {
  1136. "branch-alias": {
  1137. "dev-master": "1.0.x-dev"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Psr\\Cache\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "authors": [
  1150. {
  1151. "name": "PHP-FIG",
  1152. "homepage": "http://www.php-fig.org/"
  1153. }
  1154. ],
  1155. "description": "Common interface for caching libraries",
  1156. "keywords": [
  1157. "cache",
  1158. "psr",
  1159. "psr-6"
  1160. ],
  1161. "time": "2016-08-06 20:24:11"
  1162. },
  1163. {
  1164. "name": "psr/container",
  1165. "version": "1.0.0",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/php-fig/container.git",
  1169. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1174. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "php": ">=5.3.0"
  1179. },
  1180. "type": "library",
  1181. "extra": {
  1182. "branch-alias": {
  1183. "dev-master": "1.0.x-dev"
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-4": {
  1188. "Psr\\Container\\": "src/"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "PHP-FIG",
  1198. "homepage": "http://www.php-fig.org/"
  1199. }
  1200. ],
  1201. "description": "Common Container Interface (PHP FIG PSR-11)",
  1202. "homepage": "https://github.com/php-fig/container",
  1203. "keywords": [
  1204. "PSR-11",
  1205. "container",
  1206. "container-interface",
  1207. "container-interop",
  1208. "psr"
  1209. ],
  1210. "time": "2017-02-14 16:28:37"
  1211. },
  1212. {
  1213. "name": "psr/link",
  1214. "version": "1.0.0",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/php-fig/link.git",
  1218. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1223. "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": ">=5.3.0"
  1228. },
  1229. "type": "library",
  1230. "extra": {
  1231. "branch-alias": {
  1232. "dev-master": "1.0.x-dev"
  1233. }
  1234. },
  1235. "autoload": {
  1236. "psr-4": {
  1237. "Psr\\Link\\": "src/"
  1238. }
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "authors": [
  1245. {
  1246. "name": "PHP-FIG",
  1247. "homepage": "http://www.php-fig.org/"
  1248. }
  1249. ],
  1250. "description": "Common interfaces for HTTP links",
  1251. "keywords": [
  1252. "http",
  1253. "http-link",
  1254. "link",
  1255. "psr",
  1256. "psr-13",
  1257. "rest"
  1258. ],
  1259. "time": "2016-10-28 16:06:13"
  1260. },
  1261. {
  1262. "name": "psr/log",
  1263. "version": "1.0.2",
  1264. "source": {
  1265. "type": "git",
  1266. "url": "https://github.com/php-fig/log.git",
  1267. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1268. },
  1269. "dist": {
  1270. "type": "zip",
  1271. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1272. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1273. "shasum": ""
  1274. },
  1275. "require": {
  1276. "php": ">=5.3.0"
  1277. },
  1278. "type": "library",
  1279. "extra": {
  1280. "branch-alias": {
  1281. "dev-master": "1.0.x-dev"
  1282. }
  1283. },
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Psr\\Log\\": "Psr/Log/"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "PHP-FIG",
  1296. "homepage": "http://www.php-fig.org/"
  1297. }
  1298. ],
  1299. "description": "Common interface for logging libraries",
  1300. "homepage": "https://github.com/php-fig/log",
  1301. "keywords": [
  1302. "log",
  1303. "psr",
  1304. "psr-3"
  1305. ],
  1306. "time": "2016-10-10 12:19:37"
  1307. },
  1308. {
  1309. "name": "psr/simple-cache",
  1310. "version": "1.0.1",
  1311. "source": {
  1312. "type": "git",
  1313. "url": "https://github.com/php-fig/simple-cache.git",
  1314. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1315. },
  1316. "dist": {
  1317. "type": "zip",
  1318. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1319. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1320. "shasum": ""
  1321. },
  1322. "require": {
  1323. "php": ">=5.3.0"
  1324. },
  1325. "type": "library",
  1326. "extra": {
  1327. "branch-alias": {
  1328. "dev-master": "1.0.x-dev"
  1329. }
  1330. },
  1331. "autoload": {
  1332. "psr-4": {
  1333. "Psr\\SimpleCache\\": "src/"
  1334. }
  1335. },
  1336. "notification-url": "https://packagist.org/downloads/",
  1337. "license": [
  1338. "MIT"
  1339. ],
  1340. "authors": [
  1341. {
  1342. "name": "PHP-FIG",
  1343. "homepage": "http://www.php-fig.org/"
  1344. }
  1345. ],
  1346. "description": "Common interfaces for simple caching",
  1347. "keywords": [
  1348. "cache",
  1349. "caching",
  1350. "psr",
  1351. "psr-16",
  1352. "simple-cache"
  1353. ],
  1354. "time": "2017-10-23 01:57:42"
  1355. },
  1356. {
  1357. "name": "sensio/distribution-bundle",
  1358. "version": "v5.0.23",
  1359. "source": {
  1360. "type": "git",
  1361. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  1362. "reference": "088b116a0e27faa0e1a7384dd4f3f6a9d5a8a3b6"
  1363. },
  1364. "dist": {
  1365. "type": "zip",
  1366. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/088b116a0e27faa0e1a7384dd4f3f6a9d5a8a3b6",
  1367. "reference": "088b116a0e27faa0e1a7384dd4f3f6a9d5a8a3b6",
  1368. "shasum": ""
  1369. },
  1370. "require": {
  1371. "php": ">=5.3.9",
  1372. "sensiolabs/security-checker": "~5.0",
  1373. "symfony/class-loader": "~2.3|~3.0",
  1374. "symfony/config": "~2.3|~3.0",
  1375. "symfony/dependency-injection": "~2.3|~3.0",
  1376. "symfony/filesystem": "~2.3|~3.0",
  1377. "symfony/http-kernel": "~2.3|~3.0",
  1378. "symfony/process": "~2.3|~3.0"
  1379. },
  1380. "type": "symfony-bundle",
  1381. "extra": {
  1382. "branch-alias": {
  1383. "dev-master": "5.0.x-dev"
  1384. }
  1385. },
  1386. "autoload": {
  1387. "psr-4": {
  1388. "Sensio\\Bundle\\DistributionBundle\\": ""
  1389. }
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "MIT"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "Fabien Potencier",
  1398. "email": "fabien@symfony.com"
  1399. }
  1400. ],
  1401. "description": "Base bundle for Symfony Distributions",
  1402. "keywords": [
  1403. "configuration",
  1404. "distribution"
  1405. ],
  1406. "time": "2018-10-25 15:26:23"
  1407. },
  1408. {
  1409. "name": "sensio/framework-extra-bundle",
  1410. "version": "v5.2.2",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  1414. "reference": "9ef408febe2f12e70118ef61c6515035a06c5830"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/9ef408febe2f12e70118ef61c6515035a06c5830",
  1419. "reference": "9ef408febe2f12e70118ef61c6515035a06c5830",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "doctrine/common": "^2.2",
  1424. "symfony/config": "^3.3|^4.0",
  1425. "symfony/dependency-injection": "^3.3|^4.0",
  1426. "symfony/framework-bundle": "^3.4|^4.0",
  1427. "symfony/http-kernel": "^3.3|^4.0"
  1428. },
  1429. "require-dev": {
  1430. "doctrine/doctrine-bundle": "^1.6",
  1431. "doctrine/orm": "^2.5",
  1432. "symfony/browser-kit": "^3.3|^4.0",
  1433. "symfony/dom-crawler": "^3.3|^4.0",
  1434. "symfony/expression-language": "^3.3|^4.0",
  1435. "symfony/finder": "^3.3|^4.0",
  1436. "symfony/monolog-bridge": "^3.0|^4.0",
  1437. "symfony/monolog-bundle": "^3.2",
  1438. "symfony/phpunit-bridge": "^3.3|^4.0",
  1439. "symfony/psr-http-message-bridge": "^0.3",
  1440. "symfony/security-bundle": "^3.3|^4.0",
  1441. "symfony/twig-bundle": "^3.3|^4.0",
  1442. "symfony/yaml": "^3.3|^4.0",
  1443. "twig/twig": "~1.12|~2.0",
  1444. "zendframework/zend-diactoros": "^1.3"
  1445. },
  1446. "suggest": {
  1447. "symfony/expression-language": "",
  1448. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  1449. "symfony/security-bundle": ""
  1450. },
  1451. "type": "symfony-bundle",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-master": "5.2.x-dev"
  1455. }
  1456. },
  1457. "autoload": {
  1458. "psr-4": {
  1459. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  1460. }
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "authors": [
  1467. {
  1468. "name": "Fabien Potencier",
  1469. "email": "fabien@symfony.com"
  1470. }
  1471. ],
  1472. "description": "This bundle provides a way to configure your controllers with annotations",
  1473. "keywords": [
  1474. "annotations",
  1475. "controllers"
  1476. ],
  1477. "time": "2018-10-26 14:09:02"
  1478. },
  1479. {
  1480. "name": "sensiolabs/security-checker",
  1481. "version": "v5.0.1",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/sensiolabs/security-checker.git",
  1485. "reference": "9ea927417c949039a9cfb0d92af76fd1c538d9e9"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/9ea927417c949039a9cfb0d92af76fd1c538d9e9",
  1490. "reference": "9ea927417c949039a9cfb0d92af76fd1c538d9e9",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "composer/ca-bundle": "^1.0",
  1495. "php": ">=5.5.9",
  1496. "symfony/console": "~2.7|~3.0|~4.0"
  1497. },
  1498. "bin": [
  1499. "security-checker"
  1500. ],
  1501. "type": "library",
  1502. "extra": {
  1503. "branch-alias": {
  1504. "dev-master": "5.0-dev"
  1505. }
  1506. },
  1507. "autoload": {
  1508. "psr-4": {
  1509. "SensioLabs\\Security\\": "SensioLabs/Security"
  1510. }
  1511. },
  1512. "notification-url": "https://packagist.org/downloads/",
  1513. "license": [
  1514. "MIT"
  1515. ],
  1516. "authors": [
  1517. {
  1518. "name": "Fabien Potencier",
  1519. "email": "fabien.potencier@gmail.com"
  1520. }
  1521. ],
  1522. "description": "A security checker for your composer.lock",
  1523. "time": "2018-10-16 10:30:44"
  1524. },
  1525. {
  1526. "name": "swiftmailer/swiftmailer",
  1527. "version": "v5.4.12",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1531. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  1536. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "php": ">=5.3.3"
  1541. },
  1542. "require-dev": {
  1543. "mockery/mockery": "~0.9.1",
  1544. "symfony/phpunit-bridge": "~3.2"
  1545. },
  1546. "type": "library",
  1547. "extra": {
  1548. "branch-alias": {
  1549. "dev-master": "5.4-dev"
  1550. }
  1551. },
  1552. "autoload": {
  1553. "files": [
  1554. "lib/swift_required.php"
  1555. ]
  1556. },
  1557. "notification-url": "https://packagist.org/downloads/",
  1558. "license": [
  1559. "MIT"
  1560. ],
  1561. "authors": [
  1562. {
  1563. "name": "Chris Corbyn"
  1564. },
  1565. {
  1566. "name": "Fabien Potencier",
  1567. "email": "fabien@symfony.com"
  1568. }
  1569. ],
  1570. "description": "Swiftmailer, free feature-rich PHP mailer",
  1571. "homepage": "https://swiftmailer.symfony.com",
  1572. "keywords": [
  1573. "email",
  1574. "mail",
  1575. "mailer"
  1576. ],
  1577. "time": "2018-07-31 09:26:32"
  1578. },
  1579. {
  1580. "name": "symfony/monolog-bundle",
  1581. "version": "v3.3.0",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/symfony/monolog-bundle.git",
  1585. "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/8204f3cd7c1bd6a6e2955c0a34475243a7bd9802",
  1590. "reference": "8204f3cd7c1bd6a6e2955c0a34475243a7bd9802",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "monolog/monolog": "~1.22",
  1595. "php": ">=5.6",
  1596. "symfony/config": "~2.7|~3.3|~4.0",
  1597. "symfony/dependency-injection": "~2.7|~3.4.10|^4.0.10",
  1598. "symfony/http-kernel": "~2.7|~3.3|~4.0",
  1599. "symfony/monolog-bridge": "~2.7|~3.3|~4.0"
  1600. },
  1601. "require-dev": {
  1602. "symfony/console": "~2.7|~3.3|~4.0",
  1603. "symfony/phpunit-bridge": "^3.3|^4.0",
  1604. "symfony/yaml": "~2.7|~3.3|~4.0"
  1605. },
  1606. "type": "symfony-bundle",
  1607. "extra": {
  1608. "branch-alias": {
  1609. "dev-master": "3.x-dev"
  1610. }
  1611. },
  1612. "autoload": {
  1613. "psr-4": {
  1614. "Symfony\\Bundle\\MonologBundle\\": ""
  1615. },
  1616. "exclude-from-classmap": [
  1617. "/Tests/"
  1618. ]
  1619. },
  1620. "notification-url": "https://packagist.org/downloads/",
  1621. "license": [
  1622. "MIT"
  1623. ],
  1624. "authors": [
  1625. {
  1626. "name": "Symfony Community",
  1627. "homepage": "http://symfony.com/contributors"
  1628. },
  1629. {
  1630. "name": "Fabien Potencier",
  1631. "email": "fabien@symfony.com"
  1632. }
  1633. ],
  1634. "description": "Symfony MonologBundle",
  1635. "homepage": "http://symfony.com",
  1636. "keywords": [
  1637. "log",
  1638. "logging"
  1639. ],
  1640. "time": "2018-06-04 05:55:43"
  1641. },
  1642. {
  1643. "name": "symfony/polyfill-apcu",
  1644. "version": "v1.10.0",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "https://github.com/symfony/polyfill-apcu.git",
  1648. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  1653. "reference": "19e1b73bf255265ad0b568f81766ae2a3266d8d2",
  1654. "shasum": ""
  1655. },
  1656. "require": {
  1657. "php": ">=5.3.3"
  1658. },
  1659. "type": "library",
  1660. "extra": {
  1661. "branch-alias": {
  1662. "dev-master": "1.9-dev"
  1663. }
  1664. },
  1665. "autoload": {
  1666. "psr-4": {
  1667. "Symfony\\Polyfill\\Apcu\\": ""
  1668. },
  1669. "files": [
  1670. "bootstrap.php"
  1671. ]
  1672. },
  1673. "notification-url": "https://packagist.org/downloads/",
  1674. "license": [
  1675. "MIT"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "Nicolas Grekas",
  1680. "email": "p@tchwork.com"
  1681. },
  1682. {
  1683. "name": "Symfony Community",
  1684. "homepage": "https://symfony.com/contributors"
  1685. }
  1686. ],
  1687. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  1688. "homepage": "https://symfony.com",
  1689. "keywords": [
  1690. "apcu",
  1691. "compatibility",
  1692. "polyfill",
  1693. "portable",
  1694. "shim"
  1695. ],
  1696. "time": "2018-08-06 14:22:27"
  1697. },
  1698. {
  1699. "name": "symfony/polyfill-ctype",
  1700. "version": "v1.10.0",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/symfony/polyfill-ctype.git",
  1704. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  1709. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "php": ">=5.3.3"
  1714. },
  1715. "suggest": {
  1716. "ext-ctype": "For best performance"
  1717. },
  1718. "type": "library",
  1719. "extra": {
  1720. "branch-alias": {
  1721. "dev-master": "1.9-dev"
  1722. }
  1723. },
  1724. "autoload": {
  1725. "psr-4": {
  1726. "Symfony\\Polyfill\\Ctype\\": ""
  1727. },
  1728. "files": [
  1729. "bootstrap.php"
  1730. ]
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Symfony Community",
  1739. "homepage": "https://symfony.com/contributors"
  1740. },
  1741. {
  1742. "name": "Gert de Pagter",
  1743. "email": "BackEndTea@gmail.com"
  1744. }
  1745. ],
  1746. "description": "Symfony polyfill for ctype functions",
  1747. "homepage": "https://symfony.com",
  1748. "keywords": [
  1749. "compatibility",
  1750. "ctype",
  1751. "polyfill",
  1752. "portable"
  1753. ],
  1754. "time": "2018-08-06 14:22:27"
  1755. },
  1756. {
  1757. "name": "symfony/polyfill-intl-icu",
  1758. "version": "v1.10.0",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  1762. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/f22a90256d577c7ef7efad8df1f0201663d57644",
  1767. "reference": "f22a90256d577c7ef7efad8df1f0201663d57644",
  1768. "shasum": ""
  1769. },
  1770. "require": {
  1771. "php": ">=5.3.3",
  1772. "symfony/intl": "~2.3|~3.0|~4.0"
  1773. },
  1774. "suggest": {
  1775. "ext-intl": "For best performance"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "1.9-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "files": [
  1785. "bootstrap.php"
  1786. ]
  1787. },
  1788. "notification-url": "https://packagist.org/downloads/",
  1789. "license": [
  1790. "MIT"
  1791. ],
  1792. "authors": [
  1793. {
  1794. "name": "Nicolas Grekas",
  1795. "email": "p@tchwork.com"
  1796. },
  1797. {
  1798. "name": "Symfony Community",
  1799. "homepage": "https://symfony.com/contributors"
  1800. }
  1801. ],
  1802. "description": "Symfony polyfill for intl's ICU-related data and classes",
  1803. "homepage": "https://symfony.com",
  1804. "keywords": [
  1805. "compatibility",
  1806. "icu",
  1807. "intl",
  1808. "polyfill",
  1809. "portable",
  1810. "shim"
  1811. ],
  1812. "time": "2018-08-06 14:22:27"
  1813. },
  1814. {
  1815. "name": "symfony/polyfill-mbstring",
  1816. "version": "v1.10.0",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1820. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  1821. },
  1822. "dist": {
  1823. "type": "zip",
  1824. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  1825. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  1826. "shasum": ""
  1827. },
  1828. "require": {
  1829. "php": ">=5.3.3"
  1830. },
  1831. "suggest": {
  1832. "ext-mbstring": "For best performance"
  1833. },
  1834. "type": "library",
  1835. "extra": {
  1836. "branch-alias": {
  1837. "dev-master": "1.9-dev"
  1838. }
  1839. },
  1840. "autoload": {
  1841. "psr-4": {
  1842. "Symfony\\Polyfill\\Mbstring\\": ""
  1843. },
  1844. "files": [
  1845. "bootstrap.php"
  1846. ]
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Nicolas Grekas",
  1855. "email": "p@tchwork.com"
  1856. },
  1857. {
  1858. "name": "Symfony Community",
  1859. "homepage": "https://symfony.com/contributors"
  1860. }
  1861. ],
  1862. "description": "Symfony polyfill for the Mbstring extension",
  1863. "homepage": "https://symfony.com",
  1864. "keywords": [
  1865. "compatibility",
  1866. "mbstring",
  1867. "polyfill",
  1868. "portable",
  1869. "shim"
  1870. ],
  1871. "time": "2018-09-21 13:07:52"
  1872. },
  1873. {
  1874. "name": "symfony/polyfill-php56",
  1875. "version": "v1.10.0",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/symfony/polyfill-php56.git",
  1879. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/ff208829fe1aa48ab9af356992bb7199fed551af",
  1884. "reference": "ff208829fe1aa48ab9af356992bb7199fed551af",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "php": ">=5.3.3",
  1889. "symfony/polyfill-util": "~1.0"
  1890. },
  1891. "type": "library",
  1892. "extra": {
  1893. "branch-alias": {
  1894. "dev-master": "1.9-dev"
  1895. }
  1896. },
  1897. "autoload": {
  1898. "psr-4": {
  1899. "Symfony\\Polyfill\\Php56\\": ""
  1900. },
  1901. "files": [
  1902. "bootstrap.php"
  1903. ]
  1904. },
  1905. "notification-url": "https://packagist.org/downloads/",
  1906. "license": [
  1907. "MIT"
  1908. ],
  1909. "authors": [
  1910. {
  1911. "name": "Nicolas Grekas",
  1912. "email": "p@tchwork.com"
  1913. },
  1914. {
  1915. "name": "Symfony Community",
  1916. "homepage": "https://symfony.com/contributors"
  1917. }
  1918. ],
  1919. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  1920. "homepage": "https://symfony.com",
  1921. "keywords": [
  1922. "compatibility",
  1923. "polyfill",
  1924. "portable",
  1925. "shim"
  1926. ],
  1927. "time": "2018-09-21 06:26:08"
  1928. },
  1929. {
  1930. "name": "symfony/polyfill-php70",
  1931. "version": "v1.10.0",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/symfony/polyfill-php70.git",
  1935. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  1940. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1945. "php": ">=5.3.3"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "1.9-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Symfony\\Polyfill\\Php70\\": ""
  1956. },
  1957. "files": [
  1958. "bootstrap.php"
  1959. ],
  1960. "classmap": [
  1961. "Resources/stubs"
  1962. ]
  1963. },
  1964. "notification-url": "https://packagist.org/downloads/",
  1965. "license": [
  1966. "MIT"
  1967. ],
  1968. "authors": [
  1969. {
  1970. "name": "Nicolas Grekas",
  1971. "email": "p@tchwork.com"
  1972. },
  1973. {
  1974. "name": "Symfony Community",
  1975. "homepage": "https://symfony.com/contributors"
  1976. }
  1977. ],
  1978. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1979. "homepage": "https://symfony.com",
  1980. "keywords": [
  1981. "compatibility",
  1982. "polyfill",
  1983. "portable",
  1984. "shim"
  1985. ],
  1986. "time": "2018-09-21 06:26:08"
  1987. },
  1988. {
  1989. "name": "symfony/polyfill-util",
  1990. "version": "v1.10.0",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/symfony/polyfill-util.git",
  1994. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/3b58903eae668d348a7126f999b0da0f2f93611c",
  1999. "reference": "3b58903eae668d348a7126f999b0da0f2f93611c",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": ">=5.3.3"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "1.9-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "psr-4": {
  2013. "Symfony\\Polyfill\\Util\\": ""
  2014. }
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Nicolas Grekas",
  2023. "email": "p@tchwork.com"
  2024. },
  2025. {
  2026. "name": "Symfony Community",
  2027. "homepage": "https://symfony.com/contributors"
  2028. }
  2029. ],
  2030. "description": "Symfony utilities for portability of PHP codes",
  2031. "homepage": "https://symfony.com",
  2032. "keywords": [
  2033. "compat",
  2034. "compatibility",
  2035. "polyfill",
  2036. "shim"
  2037. ],
  2038. "time": "2018-09-30 16:36:12"
  2039. },
  2040. {
  2041. "name": "symfony/swiftmailer-bundle",
  2042. "version": "v2.6.7",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  2046. "reference": "c4808f5169efc05567be983909d00f00521c53ec"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/c4808f5169efc05567be983909d00f00521c53ec",
  2051. "reference": "c4808f5169efc05567be983909d00f00521c53ec",
  2052. "shasum": ""
  2053. },
  2054. "require": {
  2055. "php": ">=5.3.2",
  2056. "swiftmailer/swiftmailer": "~4.2|~5.0",
  2057. "symfony/config": "~2.7|~3.0",
  2058. "symfony/dependency-injection": "~2.7|~3.0",
  2059. "symfony/http-kernel": "~2.7|~3.0"
  2060. },
  2061. "require-dev": {
  2062. "symfony/console": "~2.7|~3.0",
  2063. "symfony/framework-bundle": "~2.7|~3.0",
  2064. "symfony/phpunit-bridge": "~3.3@dev",
  2065. "symfony/yaml": "~2.7|~3.0"
  2066. },
  2067. "suggest": {
  2068. "psr/log": "Allows logging"
  2069. },
  2070. "type": "symfony-bundle",
  2071. "extra": {
  2072. "branch-alias": {
  2073. "dev-master": "2.6-dev"
  2074. }
  2075. },
  2076. "autoload": {
  2077. "psr-4": {
  2078. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  2079. }
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "authors": [
  2086. {
  2087. "name": "Symfony Community",
  2088. "homepage": "http://symfony.com/contributors"
  2089. },
  2090. {
  2091. "name": "Fabien Potencier",
  2092. "email": "fabien@symfony.com"
  2093. }
  2094. ],
  2095. "description": "Symfony SwiftmailerBundle",
  2096. "homepage": "http://symfony.com",
  2097. "time": "2017-10-19 01:06:41"
  2098. },
  2099. {
  2100. "name": "symfony/symfony",
  2101. "version": "v3.4.17",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/symfony/symfony.git",
  2105. "reference": "de239d25e0bb3be451a17b627705a5970c6c59e6"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/symfony/symfony/zipball/de239d25e0bb3be451a17b627705a5970c6c59e6",
  2110. "reference": "de239d25e0bb3be451a17b627705a5970c6c59e6",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "doctrine/common": "~2.4",
  2115. "ext-xml": "*",
  2116. "fig/link-util": "^1.0",
  2117. "php": "^5.5.9|>=7.0.8",
  2118. "psr/cache": "~1.0",
  2119. "psr/container": "^1.0",
  2120. "psr/link": "^1.0",
  2121. "psr/log": "~1.0",
  2122. "psr/simple-cache": "^1.0",
  2123. "symfony/polyfill-apcu": "~1.1",
  2124. "symfony/polyfill-ctype": "~1.8",
  2125. "symfony/polyfill-intl-icu": "~1.0",
  2126. "symfony/polyfill-mbstring": "~1.0",
  2127. "symfony/polyfill-php56": "~1.0",
  2128. "symfony/polyfill-php70": "~1.6",
  2129. "twig/twig": "^1.35|^2.4.4"
  2130. },
  2131. "conflict": {
  2132. "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2",
  2133. "phpdocumentor/type-resolver": "<0.3.0",
  2134. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2135. },
  2136. "provide": {
  2137. "psr/cache-implementation": "1.0",
  2138. "psr/container-implementation": "1.0",
  2139. "psr/log-implementation": "1.0",
  2140. "psr/simple-cache-implementation": "1.0"
  2141. },
  2142. "replace": {
  2143. "symfony/asset": "self.version",
  2144. "symfony/browser-kit": "self.version",
  2145. "symfony/cache": "self.version",
  2146. "symfony/class-loader": "self.version",
  2147. "symfony/config": "self.version",
  2148. "symfony/console": "self.version",
  2149. "symfony/css-selector": "self.version",
  2150. "symfony/debug": "self.version",
  2151. "symfony/debug-bundle": "self.version",
  2152. "symfony/dependency-injection": "self.version",
  2153. "symfony/doctrine-bridge": "self.version",
  2154. "symfony/dom-crawler": "self.version",
  2155. "symfony/dotenv": "self.version",
  2156. "symfony/event-dispatcher": "self.version",
  2157. "symfony/expression-language": "self.version",
  2158. "symfony/filesystem": "self.version",
  2159. "symfony/finder": "self.version",
  2160. "symfony/form": "self.version",
  2161. "symfony/framework-bundle": "self.version",
  2162. "symfony/http-foundation": "self.version",
  2163. "symfony/http-kernel": "self.version",
  2164. "symfony/inflector": "self.version",
  2165. "symfony/intl": "self.version",
  2166. "symfony/ldap": "self.version",
  2167. "symfony/lock": "self.version",
  2168. "symfony/monolog-bridge": "self.version",
  2169. "symfony/options-resolver": "self.version",
  2170. "symfony/process": "self.version",
  2171. "symfony/property-access": "self.version",
  2172. "symfony/property-info": "self.version",
  2173. "symfony/proxy-manager-bridge": "self.version",
  2174. "symfony/routing": "self.version",
  2175. "symfony/security": "self.version",
  2176. "symfony/security-bundle": "self.version",
  2177. "symfony/security-core": "self.version",
  2178. "symfony/security-csrf": "self.version",
  2179. "symfony/security-guard": "self.version",
  2180. "symfony/security-http": "self.version",
  2181. "symfony/serializer": "self.version",
  2182. "symfony/stopwatch": "self.version",
  2183. "symfony/templating": "self.version",
  2184. "symfony/translation": "self.version",
  2185. "symfony/twig-bridge": "self.version",
  2186. "symfony/twig-bundle": "self.version",
  2187. "symfony/validator": "self.version",
  2188. "symfony/var-dumper": "self.version",
  2189. "symfony/web-link": "self.version",
  2190. "symfony/web-profiler-bundle": "self.version",
  2191. "symfony/web-server-bundle": "self.version",
  2192. "symfony/workflow": "self.version",
  2193. "symfony/yaml": "self.version"
  2194. },
  2195. "require-dev": {
  2196. "cache/integration-tests": "dev-master",
  2197. "doctrine/annotations": "~1.0",
  2198. "doctrine/cache": "~1.6",
  2199. "doctrine/data-fixtures": "1.0.*",
  2200. "doctrine/dbal": "~2.4",
  2201. "doctrine/doctrine-bundle": "~1.4",
  2202. "doctrine/orm": "~2.4,>=2.4.5",
  2203. "egulias/email-validator": "~1.2,>=1.2.8|~2.0",
  2204. "monolog/monolog": "~1.11",
  2205. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  2206. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  2207. "predis/predis": "~1.0",
  2208. "symfony/phpunit-bridge": "~3.4|~4.0",
  2209. "symfony/security-acl": "~2.8|~3.0"
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "3.4-dev"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  2220. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  2221. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  2222. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  2223. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  2224. "Symfony\\Component\\": "src/Symfony/Component/"
  2225. },
  2226. "classmap": [
  2227. "src/Symfony/Component/Intl/Resources/stubs"
  2228. ],
  2229. "exclude-from-classmap": [
  2230. "**/Tests/"
  2231. ]
  2232. },
  2233. "notification-url": "https://packagist.org/downloads/",
  2234. "license": [
  2235. "MIT"
  2236. ],
  2237. "authors": [
  2238. {
  2239. "name": "Fabien Potencier",
  2240. "email": "fabien@symfony.com"
  2241. },
  2242. {
  2243. "name": "Symfony Community",
  2244. "homepage": "https://symfony.com/contributors"
  2245. }
  2246. ],
  2247. "description": "The Symfony PHP framework",
  2248. "homepage": "https://symfony.com",
  2249. "keywords": [
  2250. "framework"
  2251. ],
  2252. "time": "2018-10-03 12:03:55"
  2253. },
  2254. {
  2255. "name": "twbs/bootstrap",
  2256. "version": "v4.1.3",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://github.com/twbs/bootstrap.git",
  2260. "reference": "3b558734382ce58b51e5fc676453bfd53bba9201"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/3b558734382ce58b51e5fc676453bfd53bba9201",
  2265. "reference": "3b558734382ce58b51e5fc676453bfd53bba9201",
  2266. "shasum": ""
  2267. },
  2268. "replace": {
  2269. "twitter/bootstrap": "self.version"
  2270. },
  2271. "type": "library",
  2272. "extra": {
  2273. "branch-alias": {
  2274. "dev-master": "3.3.x-dev"
  2275. }
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "MIT"
  2280. ],
  2281. "authors": [
  2282. {
  2283. "name": "Jacob Thornton",
  2284. "email": "jacobthornton@gmail.com"
  2285. },
  2286. {
  2287. "name": "Mark Otto",
  2288. "email": "markdotto@gmail.com"
  2289. }
  2290. ],
  2291. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  2292. "homepage": "https://getbootstrap.com/",
  2293. "keywords": [
  2294. "JS",
  2295. "css",
  2296. "framework",
  2297. "front-end",
  2298. "mobile-first",
  2299. "responsive",
  2300. "sass",
  2301. "web"
  2302. ],
  2303. "time": "2018-07-24 15:54:34"
  2304. },
  2305. {
  2306. "name": "twig/twig",
  2307. "version": "v2.5.0",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/twigphp/Twig.git",
  2311. "reference": "6a5f676b77a90823c2d4eaf76137b771adf31323"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/twigphp/Twig/zipball/6a5f676b77a90823c2d4eaf76137b771adf31323",
  2316. "reference": "6a5f676b77a90823c2d4eaf76137b771adf31323",
  2317. "shasum": ""
  2318. },
  2319. "require": {
  2320. "php": "^7.0",
  2321. "symfony/polyfill-ctype": "^1.8",
  2322. "symfony/polyfill-mbstring": "~1.0"
  2323. },
  2324. "require-dev": {
  2325. "psr/container": "^1.0",
  2326. "symfony/debug": "^2.7",
  2327. "symfony/phpunit-bridge": "^3.3"
  2328. },
  2329. "type": "library",
  2330. "extra": {
  2331. "branch-alias": {
  2332. "dev-master": "2.5-dev"
  2333. }
  2334. },
  2335. "autoload": {
  2336. "psr-0": {
  2337. "Twig_": "lib/"
  2338. },
  2339. "psr-4": {
  2340. "Twig\\": "src/"
  2341. }
  2342. },
  2343. "notification-url": "https://packagist.org/downloads/",
  2344. "license": [
  2345. "BSD-3-Clause"
  2346. ],
  2347. "authors": [
  2348. {
  2349. "name": "Fabien Potencier",
  2350. "email": "fabien@symfony.com",
  2351. "homepage": "http://fabien.potencier.org",
  2352. "role": "Lead Developer"
  2353. },
  2354. {
  2355. "name": "Armin Ronacher",
  2356. "email": "armin.ronacher@active-4.com",
  2357. "role": "Project Founder"
  2358. },
  2359. {
  2360. "name": "Twig Team",
  2361. "homepage": "https://twig.symfony.com/contributors",
  2362. "role": "Contributors"
  2363. }
  2364. ],
  2365. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2366. "homepage": "https://twig.symfony.com",
  2367. "keywords": [
  2368. "templating"
  2369. ],
  2370. "time": "2018-07-13 07:18:09"
  2371. }
  2372. ],
  2373. "packages-dev": [
  2374. {
  2375. "name": "sensio/generator-bundle",
  2376. "version": "v3.1.7",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2380. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  2385. "reference": "28cbaa244bd0816fd8908b93f90380bcd7b67a65",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "symfony/console": "~2.7|~3.0",
  2390. "symfony/framework-bundle": "~2.7|~3.0",
  2391. "symfony/process": "~2.7|~3.0",
  2392. "symfony/yaml": "~2.7|~3.0",
  2393. "twig/twig": "^1.28.2|^2.0"
  2394. },
  2395. "require-dev": {
  2396. "doctrine/orm": "~2.4",
  2397. "symfony/doctrine-bridge": "~2.7|~3.0",
  2398. "symfony/filesystem": "~2.7|~3.0",
  2399. "symfony/phpunit-bridge": "^3.3"
  2400. },
  2401. "type": "symfony-bundle",
  2402. "extra": {
  2403. "branch-alias": {
  2404. "dev-master": "3.1.x-dev"
  2405. }
  2406. },
  2407. "autoload": {
  2408. "psr-4": {
  2409. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2410. },
  2411. "exclude-from-classmap": [
  2412. "/Tests/"
  2413. ]
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "MIT"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Fabien Potencier",
  2422. "email": "fabien@symfony.com"
  2423. }
  2424. ],
  2425. "description": "This bundle generates code for you",
  2426. "time": "2017-12-07 15:36:41"
  2427. },
  2428. {
  2429. "name": "symfony/phpunit-bridge",
  2430. "version": "v3.4.17",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/symfony/phpunit-bridge.git",
  2434. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  2439. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "php": ">=5.3.3"
  2444. },
  2445. "conflict": {
  2446. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2447. },
  2448. "suggest": {
  2449. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  2450. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  2451. },
  2452. "bin": [
  2453. "bin/simple-phpunit"
  2454. ],
  2455. "type": "symfony-bridge",
  2456. "extra": {
  2457. "branch-alias": {
  2458. "dev-master": "3.4-dev"
  2459. },
  2460. "thanks": {
  2461. "name": "phpunit/phpunit",
  2462. "url": "https://github.com/sebastianbergmann/phpunit"
  2463. }
  2464. },
  2465. "autoload": {
  2466. "files": [
  2467. "bootstrap.php"
  2468. ],
  2469. "psr-4": {
  2470. "Symfony\\Bridge\\PhpUnit\\": ""
  2471. },
  2472. "exclude-from-classmap": [
  2473. "/Tests/"
  2474. ]
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Nicolas Grekas",
  2483. "email": "p@tchwork.com"
  2484. },
  2485. {
  2486. "name": "Symfony Community",
  2487. "homepage": "https://symfony.com/contributors"
  2488. }
  2489. ],
  2490. "description": "Symfony PHPUnit Bridge",
  2491. "homepage": "https://symfony.com",
  2492. "time": "2018-10-02 12:28:39"
  2493. }
  2494. ],
  2495. "aliases": [],
  2496. "minimum-stability": "stable",
  2497. "stability-flags": [],
  2498. "prefer-stable": false,
  2499. "prefer-lowest": false,
  2500. "platform": {
  2501. "php": ">=5.5.9",
  2502. "ext-curl": "^7.0"
  2503. },
  2504. "platform-dev": []
  2505. }