composer.lock 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "e47e45a98581d68746df0e2e854682ab",
  8. "packages": [
  9. {
  10. "name": "composer/ca-bundle",
  11. "version": "1.1.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/ca-bundle.git",
  15. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/943b2c4fcad1ef178d16a713c2468bf7e579c288",
  20. "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-openssl": "*",
  25. "ext-pcre": "*",
  26. "php": "^5.3.2 || ^7.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.8.35",
  30. "psr/log": "^1.0",
  31. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  32. },
  33. "type": "library",
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.x-dev"
  37. }
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Composer\\CaBundle\\": "src"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Jordi Boggiano",
  51. "email": "j.boggiano@seld.be",
  52. "homepage": "http://seld.be"
  53. }
  54. ],
  55. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  56. "keywords": [
  57. "cabundle",
  58. "cacert",
  59. "certificate",
  60. "ssl",
  61. "tls"
  62. ],
  63. "time": "2017-11-29T09:37:33+00:00"
  64. },
  65. {
  66. "name": "doctrine/annotations",
  67. "version": "v1.6.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/doctrine/annotations.git",
  71. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  76. "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "doctrine/lexer": "1.*",
  81. "php": "^7.1"
  82. },
  83. "require-dev": {
  84. "doctrine/cache": "1.*",
  85. "phpunit/phpunit": "^6.4"
  86. },
  87. "type": "library",
  88. "extra": {
  89. "branch-alias": {
  90. "dev-master": "1.6.x-dev"
  91. }
  92. },
  93. "autoload": {
  94. "psr-4": {
  95. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Roman Borschel",
  105. "email": "roman@code-factory.org"
  106. },
  107. {
  108. "name": "Benjamin Eberlei",
  109. "email": "kontakt@beberlei.de"
  110. },
  111. {
  112. "name": "Guilherme Blanco",
  113. "email": "guilhermeblanco@gmail.com"
  114. },
  115. {
  116. "name": "Jonathan Wage",
  117. "email": "jonwage@gmail.com"
  118. },
  119. {
  120. "name": "Johannes Schmitt",
  121. "email": "schmittjoh@gmail.com"
  122. }
  123. ],
  124. "description": "Docblock Annotations Parser",
  125. "homepage": "http://www.doctrine-project.org",
  126. "keywords": [
  127. "annotations",
  128. "docblock",
  129. "parser"
  130. ],
  131. "time": "2017-12-06T07:11:42+00:00"
  132. },
  133. {
  134. "name": "doctrine/cache",
  135. "version": "v1.7.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/doctrine/cache.git",
  139. "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  144. "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "php": "~7.1"
  149. },
  150. "conflict": {
  151. "doctrine/common": ">2.2,<2.4"
  152. },
  153. "require-dev": {
  154. "alcaeus/mongo-php-adapter": "^1.1",
  155. "mongodb/mongodb": "^1.1",
  156. "phpunit/phpunit": "^5.7",
  157. "predis/predis": "~1.0"
  158. },
  159. "suggest": {
  160. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  161. },
  162. "type": "library",
  163. "extra": {
  164. "branch-alias": {
  165. "dev-master": "1.7.x-dev"
  166. }
  167. },
  168. "autoload": {
  169. "psr-4": {
  170. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  171. }
  172. },
  173. "notification-url": "https://packagist.org/downloads/",
  174. "license": [
  175. "MIT"
  176. ],
  177. "authors": [
  178. {
  179. "name": "Roman Borschel",
  180. "email": "roman@code-factory.org"
  181. },
  182. {
  183. "name": "Benjamin Eberlei",
  184. "email": "kontakt@beberlei.de"
  185. },
  186. {
  187. "name": "Guilherme Blanco",
  188. "email": "guilhermeblanco@gmail.com"
  189. },
  190. {
  191. "name": "Jonathan Wage",
  192. "email": "jonwage@gmail.com"
  193. },
  194. {
  195. "name": "Johannes Schmitt",
  196. "email": "schmittjoh@gmail.com"
  197. }
  198. ],
  199. "description": "Caching library offering an object-oriented API for many cache backends",
  200. "homepage": "http://www.doctrine-project.org",
  201. "keywords": [
  202. "cache",
  203. "caching"
  204. ],
  205. "time": "2017-08-25T07:02:50+00:00"
  206. },
  207. {
  208. "name": "doctrine/collections",
  209. "version": "v1.5.0",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/doctrine/collections.git",
  213. "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  218. "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
  219. "shasum": ""
  220. },
  221. "require": {
  222. "php": "^7.1"
  223. },
  224. "require-dev": {
  225. "doctrine/coding-standard": "~0.1@dev",
  226. "phpunit/phpunit": "^5.7"
  227. },
  228. "type": "library",
  229. "extra": {
  230. "branch-alias": {
  231. "dev-master": "1.3.x-dev"
  232. }
  233. },
  234. "autoload": {
  235. "psr-0": {
  236. "Doctrine\\Common\\Collections\\": "lib/"
  237. }
  238. },
  239. "notification-url": "https://packagist.org/downloads/",
  240. "license": [
  241. "MIT"
  242. ],
  243. "authors": [
  244. {
  245. "name": "Roman Borschel",
  246. "email": "roman@code-factory.org"
  247. },
  248. {
  249. "name": "Benjamin Eberlei",
  250. "email": "kontakt@beberlei.de"
  251. },
  252. {
  253. "name": "Guilherme Blanco",
  254. "email": "guilhermeblanco@gmail.com"
  255. },
  256. {
  257. "name": "Jonathan Wage",
  258. "email": "jonwage@gmail.com"
  259. },
  260. {
  261. "name": "Johannes Schmitt",
  262. "email": "schmittjoh@gmail.com"
  263. }
  264. ],
  265. "description": "Collections Abstraction library",
  266. "homepage": "http://www.doctrine-project.org",
  267. "keywords": [
  268. "array",
  269. "collections",
  270. "iterator"
  271. ],
  272. "time": "2017-07-22T10:37:32+00:00"
  273. },
  274. {
  275. "name": "doctrine/common",
  276. "version": "v2.8.1",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/doctrine/common.git",
  280. "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/doctrine/common/zipball/f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  285. "reference": "f68c297ce6455e8fd794aa8ffaf9fa458f6ade66",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "doctrine/annotations": "1.*",
  290. "doctrine/cache": "1.*",
  291. "doctrine/collections": "1.*",
  292. "doctrine/inflector": "1.*",
  293. "doctrine/lexer": "1.*",
  294. "php": "~7.1"
  295. },
  296. "require-dev": {
  297. "phpunit/phpunit": "^5.7"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "branch-alias": {
  302. "dev-master": "2.8.x-dev"
  303. }
  304. },
  305. "autoload": {
  306. "psr-4": {
  307. "Doctrine\\Common\\": "lib/Doctrine/Common"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "MIT"
  313. ],
  314. "authors": [
  315. {
  316. "name": "Roman Borschel",
  317. "email": "roman@code-factory.org"
  318. },
  319. {
  320. "name": "Benjamin Eberlei",
  321. "email": "kontakt@beberlei.de"
  322. },
  323. {
  324. "name": "Guilherme Blanco",
  325. "email": "guilhermeblanco@gmail.com"
  326. },
  327. {
  328. "name": "Jonathan Wage",
  329. "email": "jonwage@gmail.com"
  330. },
  331. {
  332. "name": "Johannes Schmitt",
  333. "email": "schmittjoh@gmail.com"
  334. }
  335. ],
  336. "description": "Common Library for Doctrine projects",
  337. "homepage": "http://www.doctrine-project.org",
  338. "keywords": [
  339. "annotations",
  340. "collections",
  341. "eventmanager",
  342. "persistence",
  343. "spl"
  344. ],
  345. "time": "2017-08-31T08:43:38+00:00"
  346. },
  347. {
  348. "name": "doctrine/inflector",
  349. "version": "v1.2.0",
  350. "source": {
  351. "type": "git",
  352. "url": "https://github.com/doctrine/inflector.git",
  353. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  354. },
  355. "dist": {
  356. "type": "zip",
  357. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  358. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  359. "shasum": ""
  360. },
  361. "require": {
  362. "php": "^7.0"
  363. },
  364. "require-dev": {
  365. "phpunit/phpunit": "^6.2"
  366. },
  367. "type": "library",
  368. "extra": {
  369. "branch-alias": {
  370. "dev-master": "1.2.x-dev"
  371. }
  372. },
  373. "autoload": {
  374. "psr-4": {
  375. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  376. }
  377. },
  378. "notification-url": "https://packagist.org/downloads/",
  379. "license": [
  380. "MIT"
  381. ],
  382. "authors": [
  383. {
  384. "name": "Roman Borschel",
  385. "email": "roman@code-factory.org"
  386. },
  387. {
  388. "name": "Benjamin Eberlei",
  389. "email": "kontakt@beberlei.de"
  390. },
  391. {
  392. "name": "Guilherme Blanco",
  393. "email": "guilhermeblanco@gmail.com"
  394. },
  395. {
  396. "name": "Jonathan Wage",
  397. "email": "jonwage@gmail.com"
  398. },
  399. {
  400. "name": "Johannes Schmitt",
  401. "email": "schmittjoh@gmail.com"
  402. }
  403. ],
  404. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  405. "homepage": "http://www.doctrine-project.org",
  406. "keywords": [
  407. "inflection",
  408. "pluralize",
  409. "singularize",
  410. "string"
  411. ],
  412. "time": "2017-07-22T12:18:28+00:00"
  413. },
  414. {
  415. "name": "doctrine/lexer",
  416. "version": "v1.0.1",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/doctrine/lexer.git",
  420. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  425. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  426. "shasum": ""
  427. },
  428. "require": {
  429. "php": ">=5.3.2"
  430. },
  431. "type": "library",
  432. "extra": {
  433. "branch-alias": {
  434. "dev-master": "1.0.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-0": {
  439. "Doctrine\\Common\\Lexer\\": "lib/"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "Roman Borschel",
  449. "email": "roman@code-factory.org"
  450. },
  451. {
  452. "name": "Guilherme Blanco",
  453. "email": "guilhermeblanco@gmail.com"
  454. },
  455. {
  456. "name": "Johannes Schmitt",
  457. "email": "schmittjoh@gmail.com"
  458. }
  459. ],
  460. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  461. "homepage": "http://www.doctrine-project.org",
  462. "keywords": [
  463. "lexer",
  464. "parser"
  465. ],
  466. "time": "2014-09-09T13:34:57+00:00"
  467. },
  468. {
  469. "name": "psr/cache",
  470. "version": "1.0.1",
  471. "source": {
  472. "type": "git",
  473. "url": "https://github.com/php-fig/cache.git",
  474. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  475. },
  476. "dist": {
  477. "type": "zip",
  478. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  479. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  480. "shasum": ""
  481. },
  482. "require": {
  483. "php": ">=5.3.0"
  484. },
  485. "type": "library",
  486. "extra": {
  487. "branch-alias": {
  488. "dev-master": "1.0.x-dev"
  489. }
  490. },
  491. "autoload": {
  492. "psr-4": {
  493. "Psr\\Cache\\": "src/"
  494. }
  495. },
  496. "notification-url": "https://packagist.org/downloads/",
  497. "license": [
  498. "MIT"
  499. ],
  500. "authors": [
  501. {
  502. "name": "PHP-FIG",
  503. "homepage": "http://www.php-fig.org/"
  504. }
  505. ],
  506. "description": "Common interface for caching libraries",
  507. "keywords": [
  508. "cache",
  509. "psr",
  510. "psr-6"
  511. ],
  512. "time": "2016-08-06T20:24:11+00:00"
  513. },
  514. {
  515. "name": "psr/container",
  516. "version": "1.0.0",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/php-fig/container.git",
  520. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  525. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "php": ">=5.3.0"
  530. },
  531. "type": "library",
  532. "extra": {
  533. "branch-alias": {
  534. "dev-master": "1.0.x-dev"
  535. }
  536. },
  537. "autoload": {
  538. "psr-4": {
  539. "Psr\\Container\\": "src/"
  540. }
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "MIT"
  545. ],
  546. "authors": [
  547. {
  548. "name": "PHP-FIG",
  549. "homepage": "http://www.php-fig.org/"
  550. }
  551. ],
  552. "description": "Common Container Interface (PHP FIG PSR-11)",
  553. "homepage": "https://github.com/php-fig/container",
  554. "keywords": [
  555. "PSR-11",
  556. "container",
  557. "container-interface",
  558. "container-interop",
  559. "psr"
  560. ],
  561. "time": "2017-02-14T16:28:37+00:00"
  562. },
  563. {
  564. "name": "psr/log",
  565. "version": "1.0.2",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/php-fig/log.git",
  569. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  574. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "php": ">=5.3.0"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.0.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Psr\\Log\\": "Psr/Log/"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "PHP-FIG",
  598. "homepage": "http://www.php-fig.org/"
  599. }
  600. ],
  601. "description": "Common interface for logging libraries",
  602. "homepage": "https://github.com/php-fig/log",
  603. "keywords": [
  604. "log",
  605. "psr",
  606. "psr-3"
  607. ],
  608. "time": "2016-10-10T12:19:37+00:00"
  609. },
  610. {
  611. "name": "psr/simple-cache",
  612. "version": "1.0.0",
  613. "source": {
  614. "type": "git",
  615. "url": "https://github.com/php-fig/simple-cache.git",
  616. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24"
  617. },
  618. "dist": {
  619. "type": "zip",
  620. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24",
  621. "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24",
  622. "shasum": ""
  623. },
  624. "require": {
  625. "php": ">=5.3.0"
  626. },
  627. "type": "library",
  628. "extra": {
  629. "branch-alias": {
  630. "dev-master": "1.0.x-dev"
  631. }
  632. },
  633. "autoload": {
  634. "psr-4": {
  635. "Psr\\SimpleCache\\": "src/"
  636. }
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "MIT"
  641. ],
  642. "authors": [
  643. {
  644. "name": "PHP-FIG",
  645. "homepage": "http://www.php-fig.org/"
  646. }
  647. ],
  648. "description": "Common interfaces for simple caching",
  649. "keywords": [
  650. "cache",
  651. "caching",
  652. "psr",
  653. "psr-16",
  654. "simple-cache"
  655. ],
  656. "time": "2017-01-02T13:31:39+00:00"
  657. },
  658. {
  659. "name": "sensio/framework-extra-bundle",
  660. "version": "v5.1.3",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  664. "reference": "0696496cb3e2d23add645d424699e5c723238aad"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/0696496cb3e2d23add645d424699e5c723238aad",
  669. "reference": "0696496cb3e2d23add645d424699e5c723238aad",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "doctrine/common": "^2.2",
  674. "symfony/config": "^3.3|^4.0",
  675. "symfony/dependency-injection": "^3.3|^4.0",
  676. "symfony/framework-bundle": "^3.3|^4.0",
  677. "symfony/http-kernel": "^3.3|^4.0"
  678. },
  679. "require-dev": {
  680. "doctrine/doctrine-bundle": "^1.6",
  681. "doctrine/orm": "^2.5",
  682. "symfony/browser-kit": "^3.3|^4.0",
  683. "symfony/dom-crawler": "^3.3|^4.0",
  684. "symfony/expression-language": "^3.3|^4.0",
  685. "symfony/finder": "^3.3|^4.0",
  686. "symfony/phpunit-bridge": "^3.3|^4.0",
  687. "symfony/psr-http-message-bridge": "^0.3",
  688. "symfony/security-bundle": "^3.3|^4.0",
  689. "symfony/twig-bundle": "^3.3|^4.0",
  690. "symfony/yaml": "^3.3|^4.0",
  691. "twig/twig": "~1.12|~2.0",
  692. "zendframework/zend-diactoros": "^1.3"
  693. },
  694. "suggest": {
  695. "symfony/expression-language": "",
  696. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  697. "symfony/security-bundle": ""
  698. },
  699. "type": "symfony-bundle",
  700. "extra": {
  701. "branch-alias": {
  702. "dev-master": "5.1.x-dev"
  703. }
  704. },
  705. "autoload": {
  706. "psr-4": {
  707. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  708. }
  709. },
  710. "notification-url": "https://packagist.org/downloads/",
  711. "license": [
  712. "MIT"
  713. ],
  714. "authors": [
  715. {
  716. "name": "Fabien Potencier",
  717. "email": "fabien@symfony.com"
  718. }
  719. ],
  720. "description": "This bundle provides a way to configure your controllers with annotations",
  721. "keywords": [
  722. "annotations",
  723. "controllers"
  724. ],
  725. "time": "2017-12-04T18:33:55+00:00"
  726. },
  727. {
  728. "name": "sensiolabs/security-checker",
  729. "version": "v4.1.6",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/sensiolabs/security-checker.git",
  733. "reference": "387b6a3b723ba35588b33d5f8d14e28ed608bd30"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/387b6a3b723ba35588b33d5f8d14e28ed608bd30",
  738. "reference": "387b6a3b723ba35588b33d5f8d14e28ed608bd30",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "composer/ca-bundle": "^1.0",
  743. "symfony/console": "~2.7|~3.0|~4.0"
  744. },
  745. "bin": [
  746. "security-checker"
  747. ],
  748. "type": "library",
  749. "extra": {
  750. "branch-alias": {
  751. "dev-master": "4.1-dev"
  752. }
  753. },
  754. "autoload": {
  755. "psr-0": {
  756. "SensioLabs\\Security": ""
  757. }
  758. },
  759. "notification-url": "https://packagist.org/downloads/",
  760. "license": [
  761. "MIT"
  762. ],
  763. "authors": [
  764. {
  765. "name": "Fabien Potencier",
  766. "email": "fabien.potencier@gmail.com"
  767. }
  768. ],
  769. "description": "A security checker for your composer.lock",
  770. "time": "2017-10-29T18:48:08+00:00"
  771. },
  772. {
  773. "name": "symfony/cache",
  774. "version": "v4.0.2",
  775. "source": {
  776. "type": "git",
  777. "url": "https://github.com/symfony/cache.git",
  778. "reference": "d00351f230ca037ca13f6fec3411e002043f7421"
  779. },
  780. "dist": {
  781. "type": "zip",
  782. "url": "https://api.github.com/repos/symfony/cache/zipball/d00351f230ca037ca13f6fec3411e002043f7421",
  783. "reference": "d00351f230ca037ca13f6fec3411e002043f7421",
  784. "shasum": ""
  785. },
  786. "require": {
  787. "php": "^7.1.3",
  788. "psr/cache": "~1.0",
  789. "psr/log": "~1.0",
  790. "psr/simple-cache": "^1.0"
  791. },
  792. "conflict": {
  793. "symfony/var-dumper": "<3.4"
  794. },
  795. "provide": {
  796. "psr/cache-implementation": "1.0",
  797. "psr/simple-cache-implementation": "1.0"
  798. },
  799. "require-dev": {
  800. "cache/integration-tests": "dev-master",
  801. "doctrine/cache": "~1.6",
  802. "doctrine/dbal": "~2.4",
  803. "predis/predis": "~1.0"
  804. },
  805. "type": "library",
  806. "extra": {
  807. "branch-alias": {
  808. "dev-master": "4.0-dev"
  809. }
  810. },
  811. "autoload": {
  812. "psr-4": {
  813. "Symfony\\Component\\Cache\\": ""
  814. },
  815. "exclude-from-classmap": [
  816. "/Tests/"
  817. ]
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "authors": [
  824. {
  825. "name": "Nicolas Grekas",
  826. "email": "p@tchwork.com"
  827. },
  828. {
  829. "name": "Symfony Community",
  830. "homepage": "https://symfony.com/contributors"
  831. }
  832. ],
  833. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  834. "homepage": "https://symfony.com",
  835. "keywords": [
  836. "caching",
  837. "psr6"
  838. ],
  839. "time": "2017-12-08T16:11:45+00:00"
  840. },
  841. {
  842. "name": "symfony/config",
  843. "version": "v4.0.2",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/symfony/config.git",
  847. "reference": "0356e6d5298e9e72212c0bad65c2f1b49e42d622"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/symfony/config/zipball/0356e6d5298e9e72212c0bad65c2f1b49e42d622",
  852. "reference": "0356e6d5298e9e72212c0bad65c2f1b49e42d622",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "php": "^7.1.3",
  857. "symfony/filesystem": "~3.4|~4.0"
  858. },
  859. "conflict": {
  860. "symfony/finder": "<3.4"
  861. },
  862. "require-dev": {
  863. "symfony/finder": "~3.4|~4.0",
  864. "symfony/yaml": "~3.4|~4.0"
  865. },
  866. "suggest": {
  867. "symfony/yaml": "To use the yaml reference dumper"
  868. },
  869. "type": "library",
  870. "extra": {
  871. "branch-alias": {
  872. "dev-master": "4.0-dev"
  873. }
  874. },
  875. "autoload": {
  876. "psr-4": {
  877. "Symfony\\Component\\Config\\": ""
  878. },
  879. "exclude-from-classmap": [
  880. "/Tests/"
  881. ]
  882. },
  883. "notification-url": "https://packagist.org/downloads/",
  884. "license": [
  885. "MIT"
  886. ],
  887. "authors": [
  888. {
  889. "name": "Fabien Potencier",
  890. "email": "fabien@symfony.com"
  891. },
  892. {
  893. "name": "Symfony Community",
  894. "homepage": "https://symfony.com/contributors"
  895. }
  896. ],
  897. "description": "Symfony Config Component",
  898. "homepage": "https://symfony.com",
  899. "time": "2017-12-14T19:48:22+00:00"
  900. },
  901. {
  902. "name": "symfony/console",
  903. "version": "v4.0.2",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/symfony/console.git",
  907. "reference": "de8cf039eacdec59d83f7def67e3b8ff5ed46714"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/symfony/console/zipball/de8cf039eacdec59d83f7def67e3b8ff5ed46714",
  912. "reference": "de8cf039eacdec59d83f7def67e3b8ff5ed46714",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "^7.1.3",
  917. "symfony/polyfill-mbstring": "~1.0"
  918. },
  919. "conflict": {
  920. "symfony/dependency-injection": "<3.4",
  921. "symfony/process": "<3.3"
  922. },
  923. "require-dev": {
  924. "psr/log": "~1.0",
  925. "symfony/config": "~3.4|~4.0",
  926. "symfony/dependency-injection": "~3.4|~4.0",
  927. "symfony/event-dispatcher": "~3.4|~4.0",
  928. "symfony/lock": "~3.4|~4.0",
  929. "symfony/process": "~3.4|~4.0"
  930. },
  931. "suggest": {
  932. "psr/log": "For using the console logger",
  933. "symfony/event-dispatcher": "",
  934. "symfony/lock": "",
  935. "symfony/process": ""
  936. },
  937. "type": "library",
  938. "extra": {
  939. "branch-alias": {
  940. "dev-master": "4.0-dev"
  941. }
  942. },
  943. "autoload": {
  944. "psr-4": {
  945. "Symfony\\Component\\Console\\": ""
  946. },
  947. "exclude-from-classmap": [
  948. "/Tests/"
  949. ]
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "MIT"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Fabien Potencier",
  958. "email": "fabien@symfony.com"
  959. },
  960. {
  961. "name": "Symfony Community",
  962. "homepage": "https://symfony.com/contributors"
  963. }
  964. ],
  965. "description": "Symfony Console Component",
  966. "homepage": "https://symfony.com",
  967. "time": "2017-12-14T19:48:22+00:00"
  968. },
  969. {
  970. "name": "symfony/debug",
  971. "version": "v4.0.2",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/symfony/debug.git",
  975. "reference": "8c3e709209ce3b952a31c0f4a31ac7703c3d0226"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/symfony/debug/zipball/8c3e709209ce3b952a31c0f4a31ac7703c3d0226",
  980. "reference": "8c3e709209ce3b952a31c0f4a31ac7703c3d0226",
  981. "shasum": ""
  982. },
  983. "require": {
  984. "php": "^7.1.3",
  985. "psr/log": "~1.0"
  986. },
  987. "conflict": {
  988. "symfony/http-kernel": "<3.4"
  989. },
  990. "require-dev": {
  991. "symfony/http-kernel": "~3.4|~4.0"
  992. },
  993. "type": "library",
  994. "extra": {
  995. "branch-alias": {
  996. "dev-master": "4.0-dev"
  997. }
  998. },
  999. "autoload": {
  1000. "psr-4": {
  1001. "Symfony\\Component\\Debug\\": ""
  1002. },
  1003. "exclude-from-classmap": [
  1004. "/Tests/"
  1005. ]
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Fabien Potencier",
  1014. "email": "fabien@symfony.com"
  1015. },
  1016. {
  1017. "name": "Symfony Community",
  1018. "homepage": "https://symfony.com/contributors"
  1019. }
  1020. ],
  1021. "description": "Symfony Debug Component",
  1022. "homepage": "https://symfony.com",
  1023. "time": "2017-12-12T08:41:51+00:00"
  1024. },
  1025. {
  1026. "name": "symfony/dependency-injection",
  1027. "version": "v4.0.2",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/symfony/dependency-injection.git",
  1031. "reference": "d2fa088b5fd7d429974a36bf1a9846b912d9d124"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d2fa088b5fd7d429974a36bf1a9846b912d9d124",
  1036. "reference": "d2fa088b5fd7d429974a36bf1a9846b912d9d124",
  1037. "shasum": ""
  1038. },
  1039. "require": {
  1040. "php": "^7.1.3",
  1041. "psr/container": "^1.0"
  1042. },
  1043. "conflict": {
  1044. "symfony/config": "<3.4",
  1045. "symfony/finder": "<3.4",
  1046. "symfony/proxy-manager-bridge": "<3.4",
  1047. "symfony/yaml": "<3.4"
  1048. },
  1049. "provide": {
  1050. "psr/container-implementation": "1.0"
  1051. },
  1052. "require-dev": {
  1053. "symfony/config": "~3.4|~4.0",
  1054. "symfony/expression-language": "~3.4|~4.0",
  1055. "symfony/yaml": "~3.4|~4.0"
  1056. },
  1057. "suggest": {
  1058. "symfony/config": "",
  1059. "symfony/expression-language": "For using expressions in service container configuration",
  1060. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  1061. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1062. "symfony/yaml": ""
  1063. },
  1064. "type": "library",
  1065. "extra": {
  1066. "branch-alias": {
  1067. "dev-master": "4.0-dev"
  1068. }
  1069. },
  1070. "autoload": {
  1071. "psr-4": {
  1072. "Symfony\\Component\\DependencyInjection\\": ""
  1073. },
  1074. "exclude-from-classmap": [
  1075. "/Tests/"
  1076. ]
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "MIT"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Fabien Potencier",
  1085. "email": "fabien@symfony.com"
  1086. },
  1087. {
  1088. "name": "Symfony Community",
  1089. "homepage": "https://symfony.com/contributors"
  1090. }
  1091. ],
  1092. "description": "Symfony DependencyInjection Component",
  1093. "homepage": "https://symfony.com",
  1094. "time": "2017-12-14T19:48:22+00:00"
  1095. },
  1096. {
  1097. "name": "symfony/event-dispatcher",
  1098. "version": "v4.0.2",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/symfony/event-dispatcher.git",
  1102. "reference": "d4face19ed8002eec8280bc1c5ec18130472bf43"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d4face19ed8002eec8280bc1c5ec18130472bf43",
  1107. "reference": "d4face19ed8002eec8280bc1c5ec18130472bf43",
  1108. "shasum": ""
  1109. },
  1110. "require": {
  1111. "php": "^7.1.3"
  1112. },
  1113. "conflict": {
  1114. "symfony/dependency-injection": "<3.4"
  1115. },
  1116. "require-dev": {
  1117. "psr/log": "~1.0",
  1118. "symfony/config": "~3.4|~4.0",
  1119. "symfony/dependency-injection": "~3.4|~4.0",
  1120. "symfony/expression-language": "~3.4|~4.0",
  1121. "symfony/stopwatch": "~3.4|~4.0"
  1122. },
  1123. "suggest": {
  1124. "symfony/dependency-injection": "",
  1125. "symfony/http-kernel": ""
  1126. },
  1127. "type": "library",
  1128. "extra": {
  1129. "branch-alias": {
  1130. "dev-master": "4.0-dev"
  1131. }
  1132. },
  1133. "autoload": {
  1134. "psr-4": {
  1135. "Symfony\\Component\\EventDispatcher\\": ""
  1136. },
  1137. "exclude-from-classmap": [
  1138. "/Tests/"
  1139. ]
  1140. },
  1141. "notification-url": "https://packagist.org/downloads/",
  1142. "license": [
  1143. "MIT"
  1144. ],
  1145. "authors": [
  1146. {
  1147. "name": "Fabien Potencier",
  1148. "email": "fabien@symfony.com"
  1149. },
  1150. {
  1151. "name": "Symfony Community",
  1152. "homepage": "https://symfony.com/contributors"
  1153. }
  1154. ],
  1155. "description": "Symfony EventDispatcher Component",
  1156. "homepage": "https://symfony.com",
  1157. "time": "2017-12-14T19:48:22+00:00"
  1158. },
  1159. {
  1160. "name": "symfony/filesystem",
  1161. "version": "v4.0.2",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/symfony/filesystem.git",
  1165. "reference": "8c2868641d0c4885eee9c12a89c2b695eb1985cd"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c2868641d0c4885eee9c12a89c2b695eb1985cd",
  1170. "reference": "8c2868641d0c4885eee9c12a89c2b695eb1985cd",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": "^7.1.3"
  1175. },
  1176. "type": "library",
  1177. "extra": {
  1178. "branch-alias": {
  1179. "dev-master": "4.0-dev"
  1180. }
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "Symfony\\Component\\Filesystem\\": ""
  1185. },
  1186. "exclude-from-classmap": [
  1187. "/Tests/"
  1188. ]
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Fabien Potencier",
  1197. "email": "fabien@symfony.com"
  1198. },
  1199. {
  1200. "name": "Symfony Community",
  1201. "homepage": "https://symfony.com/contributors"
  1202. }
  1203. ],
  1204. "description": "Symfony Filesystem Component",
  1205. "homepage": "https://symfony.com",
  1206. "time": "2017-12-14T19:48:22+00:00"
  1207. },
  1208. {
  1209. "name": "symfony/finder",
  1210. "version": "v4.0.2",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/symfony/finder.git",
  1214. "reference": "c9cdda4dc4a3182d8d6daeebce4a25fef078ea4c"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/symfony/finder/zipball/c9cdda4dc4a3182d8d6daeebce4a25fef078ea4c",
  1219. "reference": "c9cdda4dc4a3182d8d6daeebce4a25fef078ea4c",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": "^7.1.3"
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "4.0-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-4": {
  1233. "Symfony\\Component\\Finder\\": ""
  1234. },
  1235. "exclude-from-classmap": [
  1236. "/Tests/"
  1237. ]
  1238. },
  1239. "notification-url": "https://packagist.org/downloads/",
  1240. "license": [
  1241. "MIT"
  1242. ],
  1243. "authors": [
  1244. {
  1245. "name": "Fabien Potencier",
  1246. "email": "fabien@symfony.com"
  1247. },
  1248. {
  1249. "name": "Symfony Community",
  1250. "homepage": "https://symfony.com/contributors"
  1251. }
  1252. ],
  1253. "description": "Symfony Finder Component",
  1254. "homepage": "https://symfony.com",
  1255. "time": "2017-11-07T14:45:01+00:00"
  1256. },
  1257. {
  1258. "name": "symfony/flex",
  1259. "version": "v1.0.51",
  1260. "source": {
  1261. "type": "git",
  1262. "url": "https://github.com/symfony/flex.git",
  1263. "reference": "adb823e2d21c88174a03f16a7b7eb9879b83107f"
  1264. },
  1265. "dist": {
  1266. "type": "zip",
  1267. "url": "https://api.github.com/repos/symfony/flex/zipball/adb823e2d21c88174a03f16a7b7eb9879b83107f",
  1268. "reference": "adb823e2d21c88174a03f16a7b7eb9879b83107f",
  1269. "shasum": ""
  1270. },
  1271. "require": {
  1272. "composer-plugin-api": "^1.1",
  1273. "php": "^7.0"
  1274. },
  1275. "require-dev": {
  1276. "composer/composer": "^1.4",
  1277. "symfony/phpunit-bridge": "^3.2.8"
  1278. },
  1279. "type": "composer-plugin",
  1280. "extra": {
  1281. "branch-alias": {
  1282. "dev-master": "1.0-dev"
  1283. },
  1284. "class": "Symfony\\Flex\\Flex"
  1285. },
  1286. "autoload": {
  1287. "psr-4": {
  1288. "Symfony\\Flex\\": "src"
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "authors": [
  1296. {
  1297. "name": "Fabien Potencier",
  1298. "email": "fabien.potencier@gmail.com"
  1299. }
  1300. ],
  1301. "time": "2017-12-20T00:55:17+00:00"
  1302. },
  1303. {
  1304. "name": "symfony/framework-bundle",
  1305. "version": "v4.0.2",
  1306. "source": {
  1307. "type": "git",
  1308. "url": "https://github.com/symfony/framework-bundle.git",
  1309. "reference": "82e45a486a2cbdab5d43512bea10af1681dcd8e2"
  1310. },
  1311. "dist": {
  1312. "type": "zip",
  1313. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/82e45a486a2cbdab5d43512bea10af1681dcd8e2",
  1314. "reference": "82e45a486a2cbdab5d43512bea10af1681dcd8e2",
  1315. "shasum": ""
  1316. },
  1317. "require": {
  1318. "ext-xml": "*",
  1319. "php": "^7.1.3",
  1320. "symfony/cache": "~3.4|~4.0",
  1321. "symfony/config": "~3.4|~4.0",
  1322. "symfony/dependency-injection": "~3.4|~4.0",
  1323. "symfony/event-dispatcher": "~3.4|~4.0",
  1324. "symfony/filesystem": "~3.4|~4.0",
  1325. "symfony/finder": "~3.4|~4.0",
  1326. "symfony/http-foundation": "~3.4|~4.0",
  1327. "symfony/http-kernel": "~3.4|~4.0",
  1328. "symfony/polyfill-mbstring": "~1.0",
  1329. "symfony/routing": "~3.4|~4.0"
  1330. },
  1331. "conflict": {
  1332. "phpdocumentor/reflection-docblock": "<3.0",
  1333. "phpdocumentor/type-resolver": "<0.2.1",
  1334. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1335. "symfony/asset": "<3.4",
  1336. "symfony/console": "<3.4",
  1337. "symfony/form": "<3.4",
  1338. "symfony/property-info": "<3.4",
  1339. "symfony/serializer": "<3.4",
  1340. "symfony/stopwatch": "<3.4",
  1341. "symfony/translation": "<3.4",
  1342. "symfony/validator": "<3.4",
  1343. "symfony/workflow": "<3.4"
  1344. },
  1345. "require-dev": {
  1346. "doctrine/annotations": "~1.0",
  1347. "doctrine/cache": "~1.0",
  1348. "fig/link-util": "^1.0",
  1349. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  1350. "symfony/asset": "~3.4|~4.0",
  1351. "symfony/browser-kit": "~3.4|~4.0",
  1352. "symfony/console": "~3.4|~4.0",
  1353. "symfony/css-selector": "~3.4|~4.0",
  1354. "symfony/dom-crawler": "~3.4|~4.0",
  1355. "symfony/expression-language": "~3.4|~4.0",
  1356. "symfony/form": "~3.4|~4.0",
  1357. "symfony/lock": "~3.4|~4.0",
  1358. "symfony/polyfill-intl-icu": "~1.0",
  1359. "symfony/process": "~3.4|~4.0",
  1360. "symfony/property-info": "~3.4|~4.0",
  1361. "symfony/security": "~3.4|~4.0",
  1362. "symfony/security-core": "~3.4|~4.0",
  1363. "symfony/security-csrf": "~3.4|~4.0",
  1364. "symfony/serializer": "~3.4|~4.0",
  1365. "symfony/stopwatch": "~3.4|~4.0",
  1366. "symfony/templating": "~3.4|~4.0",
  1367. "symfony/translation": "~3.4|~4.0",
  1368. "symfony/validator": "~3.4|~4.0",
  1369. "symfony/var-dumper": "~3.4|~4.0",
  1370. "symfony/web-link": "~3.4|~4.0",
  1371. "symfony/workflow": "~3.4|~4.0",
  1372. "symfony/yaml": "~3.4|~4.0",
  1373. "twig/twig": "~1.34|~2.4"
  1374. },
  1375. "suggest": {
  1376. "ext-apcu": "For best performance of the system caches",
  1377. "symfony/console": "For using the console commands",
  1378. "symfony/form": "For using forms",
  1379. "symfony/property-info": "For using the property_info service",
  1380. "symfony/serializer": "For using the serializer service",
  1381. "symfony/validator": "For using validation",
  1382. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  1383. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  1384. },
  1385. "type": "symfony-bundle",
  1386. "extra": {
  1387. "branch-alias": {
  1388. "dev-master": "4.0-dev"
  1389. }
  1390. },
  1391. "autoload": {
  1392. "psr-4": {
  1393. "Symfony\\Bundle\\FrameworkBundle\\": ""
  1394. },
  1395. "exclude-from-classmap": [
  1396. "/Tests/"
  1397. ]
  1398. },
  1399. "notification-url": "https://packagist.org/downloads/",
  1400. "license": [
  1401. "MIT"
  1402. ],
  1403. "authors": [
  1404. {
  1405. "name": "Fabien Potencier",
  1406. "email": "fabien@symfony.com"
  1407. },
  1408. {
  1409. "name": "Symfony Community",
  1410. "homepage": "https://symfony.com/contributors"
  1411. }
  1412. ],
  1413. "description": "Symfony FrameworkBundle",
  1414. "homepage": "https://symfony.com",
  1415. "time": "2017-12-15T01:44:28+00:00"
  1416. },
  1417. {
  1418. "name": "symfony/http-foundation",
  1419. "version": "v4.0.2",
  1420. "source": {
  1421. "type": "git",
  1422. "url": "https://github.com/symfony/http-foundation.git",
  1423. "reference": "aba96bd07be7796c81ca0ceafa7d48a6fef036c8"
  1424. },
  1425. "dist": {
  1426. "type": "zip",
  1427. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/aba96bd07be7796c81ca0ceafa7d48a6fef036c8",
  1428. "reference": "aba96bd07be7796c81ca0ceafa7d48a6fef036c8",
  1429. "shasum": ""
  1430. },
  1431. "require": {
  1432. "php": "^7.1.3",
  1433. "symfony/polyfill-mbstring": "~1.1"
  1434. },
  1435. "require-dev": {
  1436. "symfony/expression-language": "~3.4|~4.0"
  1437. },
  1438. "type": "library",
  1439. "extra": {
  1440. "branch-alias": {
  1441. "dev-master": "4.0-dev"
  1442. }
  1443. },
  1444. "autoload": {
  1445. "psr-4": {
  1446. "Symfony\\Component\\HttpFoundation\\": ""
  1447. },
  1448. "exclude-from-classmap": [
  1449. "/Tests/"
  1450. ]
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Fabien Potencier",
  1459. "email": "fabien@symfony.com"
  1460. },
  1461. {
  1462. "name": "Symfony Community",
  1463. "homepage": "https://symfony.com/contributors"
  1464. }
  1465. ],
  1466. "description": "Symfony HttpFoundation Component",
  1467. "homepage": "https://symfony.com",
  1468. "time": "2017-12-14T19:48:22+00:00"
  1469. },
  1470. {
  1471. "name": "symfony/http-kernel",
  1472. "version": "v4.0.2",
  1473. "source": {
  1474. "type": "git",
  1475. "url": "https://github.com/symfony/http-kernel.git",
  1476. "reference": "f2ea7461cdcad837b8bc6022b59d5eb8c9618aa5"
  1477. },
  1478. "dist": {
  1479. "type": "zip",
  1480. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2ea7461cdcad837b8bc6022b59d5eb8c9618aa5",
  1481. "reference": "f2ea7461cdcad837b8bc6022b59d5eb8c9618aa5",
  1482. "shasum": ""
  1483. },
  1484. "require": {
  1485. "php": "^7.1.3",
  1486. "psr/log": "~1.0",
  1487. "symfony/debug": "~3.4|~4.0",
  1488. "symfony/event-dispatcher": "~3.4|~4.0",
  1489. "symfony/http-foundation": "~3.4|~4.0"
  1490. },
  1491. "conflict": {
  1492. "symfony/config": "<3.4",
  1493. "symfony/dependency-injection": "<3.4",
  1494. "symfony/var-dumper": "<3.4",
  1495. "twig/twig": "<1.34|<2.4,>=2"
  1496. },
  1497. "provide": {
  1498. "psr/log-implementation": "1.0"
  1499. },
  1500. "require-dev": {
  1501. "psr/cache": "~1.0",
  1502. "symfony/browser-kit": "~3.4|~4.0",
  1503. "symfony/config": "~3.4|~4.0",
  1504. "symfony/console": "~3.4|~4.0",
  1505. "symfony/css-selector": "~3.4|~4.0",
  1506. "symfony/dependency-injection": "~3.4|~4.0",
  1507. "symfony/dom-crawler": "~3.4|~4.0",
  1508. "symfony/expression-language": "~3.4|~4.0",
  1509. "symfony/finder": "~3.4|~4.0",
  1510. "symfony/process": "~3.4|~4.0",
  1511. "symfony/routing": "~3.4|~4.0",
  1512. "symfony/stopwatch": "~3.4|~4.0",
  1513. "symfony/templating": "~3.4|~4.0",
  1514. "symfony/translation": "~3.4|~4.0",
  1515. "symfony/var-dumper": "~3.4|~4.0"
  1516. },
  1517. "suggest": {
  1518. "symfony/browser-kit": "",
  1519. "symfony/config": "",
  1520. "symfony/console": "",
  1521. "symfony/dependency-injection": "",
  1522. "symfony/var-dumper": ""
  1523. },
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-master": "4.0-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "psr-4": {
  1532. "Symfony\\Component\\HttpKernel\\": ""
  1533. },
  1534. "exclude-from-classmap": [
  1535. "/Tests/"
  1536. ]
  1537. },
  1538. "notification-url": "https://packagist.org/downloads/",
  1539. "license": [
  1540. "MIT"
  1541. ],
  1542. "authors": [
  1543. {
  1544. "name": "Fabien Potencier",
  1545. "email": "fabien@symfony.com"
  1546. },
  1547. {
  1548. "name": "Symfony Community",
  1549. "homepage": "https://symfony.com/contributors"
  1550. }
  1551. ],
  1552. "description": "Symfony HttpKernel Component",
  1553. "homepage": "https://symfony.com",
  1554. "time": "2017-12-15T03:06:17+00:00"
  1555. },
  1556. {
  1557. "name": "symfony/lts",
  1558. "version": "dev-master",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/symfony/lts.git",
  1562. "reference": "396c5fca8d73d01186df37d7031321a3c0c2bf92"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/symfony/lts/zipball/396c5fca8d73d01186df37d7031321a3c0c2bf92",
  1567. "reference": "396c5fca8d73d01186df37d7031321a3c0c2bf92",
  1568. "shasum": ""
  1569. },
  1570. "conflict": {
  1571. "symfony/asset": ">=5",
  1572. "symfony/browser-kit": ">=5",
  1573. "symfony/cache": ">=5",
  1574. "symfony/class-loader": ">=5",
  1575. "symfony/config": ">=5",
  1576. "symfony/console": ">=5",
  1577. "symfony/css-selector": ">=5",
  1578. "symfony/debug": ">=5",
  1579. "symfony/debug-bundle": ">=5",
  1580. "symfony/dependency-injection": ">=5",
  1581. "symfony/doctrine-bridge": ">=5",
  1582. "symfony/dom-crawler": ">=5",
  1583. "symfony/dotenv": ">=5",
  1584. "symfony/event-dispatcher": ">=5",
  1585. "symfony/expression-language": ">=5",
  1586. "symfony/filesystem": ">=5",
  1587. "symfony/finder": ">=5",
  1588. "symfony/form": ">=5",
  1589. "symfony/framework-bundle": ">=5",
  1590. "symfony/http-foundation": ">=5",
  1591. "symfony/http-kernel": ">=5",
  1592. "symfony/inflector": ">=5",
  1593. "symfony/intl": ">=5",
  1594. "symfony/ldap": ">=5",
  1595. "symfony/lock": ">=5",
  1596. "symfony/monolog-bridge": ">=5",
  1597. "symfony/options-resolver": ">=5",
  1598. "symfony/process": ">=5",
  1599. "symfony/property-access": ">=5",
  1600. "symfony/property-info": ">=5",
  1601. "symfony/proxy-manager-bridge": ">=5",
  1602. "symfony/routing": ">=5",
  1603. "symfony/security": ">=5",
  1604. "symfony/security-bundle": ">=5",
  1605. "symfony/security-core": ">=5",
  1606. "symfony/security-csrf": ">=5",
  1607. "symfony/security-guard": ">=5",
  1608. "symfony/security-http": ">=5",
  1609. "symfony/serializer": ">=5",
  1610. "symfony/stopwatch": ">=5",
  1611. "symfony/symfony": ">=5",
  1612. "symfony/templating": ">=5",
  1613. "symfony/translation": ">=5",
  1614. "symfony/twig-bridge": ">=5",
  1615. "symfony/twig-bundle": ">=5",
  1616. "symfony/validator": ">=5",
  1617. "symfony/var-dumper": ">=5",
  1618. "symfony/web-link": ">=5",
  1619. "symfony/web-profiler-bundle": ">=5",
  1620. "symfony/web-server-bundle": ">=5",
  1621. "symfony/workflow": ">=5",
  1622. "symfony/yaml": ">=5"
  1623. },
  1624. "type": "metapackage",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "4-dev"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Fabien Potencier",
  1637. "email": "fabien@symfony.com"
  1638. },
  1639. {
  1640. "name": "Symfony Community",
  1641. "homepage": "https://symfony.com/contributors"
  1642. }
  1643. ],
  1644. "description": "Enforces Long Term Supported versions of Symfony components",
  1645. "homepage": "https://symfony.com",
  1646. "time": "2017-10-19T02:16:32+00:00"
  1647. },
  1648. {
  1649. "name": "symfony/polyfill-mbstring",
  1650. "version": "v1.6.0",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1654. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1659. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1660. "shasum": ""
  1661. },
  1662. "require": {
  1663. "php": ">=5.3.3"
  1664. },
  1665. "suggest": {
  1666. "ext-mbstring": "For best performance"
  1667. },
  1668. "type": "library",
  1669. "extra": {
  1670. "branch-alias": {
  1671. "dev-master": "1.6-dev"
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-4": {
  1676. "Symfony\\Polyfill\\Mbstring\\": ""
  1677. },
  1678. "files": [
  1679. "bootstrap.php"
  1680. ]
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "authors": [
  1687. {
  1688. "name": "Nicolas Grekas",
  1689. "email": "p@tchwork.com"
  1690. },
  1691. {
  1692. "name": "Symfony Community",
  1693. "homepage": "https://symfony.com/contributors"
  1694. }
  1695. ],
  1696. "description": "Symfony polyfill for the Mbstring extension",
  1697. "homepage": "https://symfony.com",
  1698. "keywords": [
  1699. "compatibility",
  1700. "mbstring",
  1701. "polyfill",
  1702. "portable",
  1703. "shim"
  1704. ],
  1705. "time": "2017-10-11T12:05:26+00:00"
  1706. },
  1707. {
  1708. "name": "symfony/process",
  1709. "version": "v4.0.2",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/symfony/process.git",
  1713. "reference": "18d1953068e72262830bad593f0366fa62c93fb7"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/symfony/process/zipball/18d1953068e72262830bad593f0366fa62c93fb7",
  1718. "reference": "18d1953068e72262830bad593f0366fa62c93fb7",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "^7.1.3"
  1723. },
  1724. "type": "library",
  1725. "extra": {
  1726. "branch-alias": {
  1727. "dev-master": "4.0-dev"
  1728. }
  1729. },
  1730. "autoload": {
  1731. "psr-4": {
  1732. "Symfony\\Component\\Process\\": ""
  1733. },
  1734. "exclude-from-classmap": [
  1735. "/Tests/"
  1736. ]
  1737. },
  1738. "notification-url": "https://packagist.org/downloads/",
  1739. "license": [
  1740. "MIT"
  1741. ],
  1742. "authors": [
  1743. {
  1744. "name": "Fabien Potencier",
  1745. "email": "fabien@symfony.com"
  1746. },
  1747. {
  1748. "name": "Symfony Community",
  1749. "homepage": "https://symfony.com/contributors"
  1750. }
  1751. ],
  1752. "description": "Symfony Process Component",
  1753. "homepage": "https://symfony.com",
  1754. "time": "2017-12-14T19:48:22+00:00"
  1755. },
  1756. {
  1757. "name": "symfony/requirements-checker",
  1758. "version": "v1.0.3",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://github.com/symfony/requirements-checker.git",
  1762. "reference": "931997643fb512026241c7360c613bc1e61ed9cf"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://api.github.com/repos/symfony/requirements-checker/zipball/931997643fb512026241c7360c613bc1e61ed9cf",
  1767. "reference": "931997643fb512026241c7360c613bc1e61ed9cf",
  1768. "shasum": ""
  1769. },
  1770. "require": {
  1771. "php": ">=5.3.9"
  1772. },
  1773. "bin": [
  1774. "bin/requirements-checker"
  1775. ],
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "1.0.x-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "Symfony\\Requirements\\": "src/"
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "MIT"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Fabien Potencier",
  1794. "email": "fabien@symfony.com"
  1795. }
  1796. ],
  1797. "description": "Check Symfony requirements and give recommendations",
  1798. "keywords": [
  1799. "configuration",
  1800. "distribution"
  1801. ],
  1802. "time": "2017-11-10T15:30:47+00:00"
  1803. },
  1804. {
  1805. "name": "symfony/routing",
  1806. "version": "v4.0.2",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/symfony/routing.git",
  1810. "reference": "972810def5cae044d19195045f7eb418141bf37b"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/symfony/routing/zipball/972810def5cae044d19195045f7eb418141bf37b",
  1815. "reference": "972810def5cae044d19195045f7eb418141bf37b",
  1816. "shasum": ""
  1817. },
  1818. "require": {
  1819. "php": "^7.1.3"
  1820. },
  1821. "conflict": {
  1822. "symfony/config": "<3.4",
  1823. "symfony/dependency-injection": "<3.4",
  1824. "symfony/yaml": "<3.4"
  1825. },
  1826. "require-dev": {
  1827. "doctrine/annotations": "~1.0",
  1828. "doctrine/common": "~2.2",
  1829. "psr/log": "~1.0",
  1830. "symfony/config": "~3.4|~4.0",
  1831. "symfony/dependency-injection": "~3.4|~4.0",
  1832. "symfony/expression-language": "~3.4|~4.0",
  1833. "symfony/http-foundation": "~3.4|~4.0",
  1834. "symfony/yaml": "~3.4|~4.0"
  1835. },
  1836. "suggest": {
  1837. "doctrine/annotations": "For using the annotation loader",
  1838. "symfony/config": "For using the all-in-one router or any loader",
  1839. "symfony/dependency-injection": "For loading routes from a service",
  1840. "symfony/expression-language": "For using expression matching",
  1841. "symfony/http-foundation": "For using a Symfony Request object",
  1842. "symfony/yaml": "For using the YAML loader"
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-master": "4.0-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Symfony\\Component\\Routing\\": ""
  1853. },
  1854. "exclude-from-classmap": [
  1855. "/Tests/"
  1856. ]
  1857. },
  1858. "notification-url": "https://packagist.org/downloads/",
  1859. "license": [
  1860. "MIT"
  1861. ],
  1862. "authors": [
  1863. {
  1864. "name": "Fabien Potencier",
  1865. "email": "fabien@symfony.com"
  1866. },
  1867. {
  1868. "name": "Symfony Community",
  1869. "homepage": "https://symfony.com/contributors"
  1870. }
  1871. ],
  1872. "description": "Symfony Routing Component",
  1873. "homepage": "https://symfony.com",
  1874. "keywords": [
  1875. "router",
  1876. "routing",
  1877. "uri",
  1878. "url"
  1879. ],
  1880. "time": "2017-12-14T22:39:22+00:00"
  1881. },
  1882. {
  1883. "name": "symfony/web-server-bundle",
  1884. "version": "v4.0.2",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://github.com/symfony/web-server-bundle.git",
  1888. "reference": "bd56cde308dc2b9d2aa6506ee740c0c3853aeb2f"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/bd56cde308dc2b9d2aa6506ee740c0c3853aeb2f",
  1893. "reference": "bd56cde308dc2b9d2aa6506ee740c0c3853aeb2f",
  1894. "shasum": ""
  1895. },
  1896. "require": {
  1897. "php": "^7.1.3",
  1898. "symfony/config": "~3.4|~4.0",
  1899. "symfony/console": "~3.4|~4.0",
  1900. "symfony/dependency-injection": "~3.4|~4.0",
  1901. "symfony/http-kernel": "~3.4|~4.0",
  1902. "symfony/process": "~3.4|~4.0"
  1903. },
  1904. "suggest": {
  1905. "symfony/expression-language": "For using the filter option of the log server.",
  1906. "symfony/monolog-bridge": "For using the log server."
  1907. },
  1908. "type": "symfony-bundle",
  1909. "extra": {
  1910. "branch-alias": {
  1911. "dev-master": "4.0-dev"
  1912. }
  1913. },
  1914. "autoload": {
  1915. "psr-4": {
  1916. "Symfony\\Bundle\\WebServerBundle\\": ""
  1917. },
  1918. "exclude-from-classmap": [
  1919. "/Tests/"
  1920. ]
  1921. },
  1922. "notification-url": "https://packagist.org/downloads/",
  1923. "license": [
  1924. "MIT"
  1925. ],
  1926. "authors": [
  1927. {
  1928. "name": "Fabien Potencier",
  1929. "email": "fabien@symfony.com"
  1930. },
  1931. {
  1932. "name": "Symfony Community",
  1933. "homepage": "https://symfony.com/contributors"
  1934. }
  1935. ],
  1936. "description": "Symfony WebServerBundle",
  1937. "homepage": "https://symfony.com",
  1938. "time": "2017-12-12T08:41:51+00:00"
  1939. },
  1940. {
  1941. "name": "symfony/yaml",
  1942. "version": "v4.0.2",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/symfony/yaml.git",
  1946. "reference": "a5ee52d155f06ad23b19eb63c31228ff56ad1116"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/symfony/yaml/zipball/a5ee52d155f06ad23b19eb63c31228ff56ad1116",
  1951. "reference": "a5ee52d155f06ad23b19eb63c31228ff56ad1116",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "php": "^7.1.3"
  1956. },
  1957. "conflict": {
  1958. "symfony/console": "<3.4"
  1959. },
  1960. "require-dev": {
  1961. "symfony/console": "~3.4|~4.0"
  1962. },
  1963. "suggest": {
  1964. "symfony/console": "For validating YAML files using the lint command"
  1965. },
  1966. "type": "library",
  1967. "extra": {
  1968. "branch-alias": {
  1969. "dev-master": "4.0-dev"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "Symfony\\Component\\Yaml\\": ""
  1975. },
  1976. "exclude-from-classmap": [
  1977. "/Tests/"
  1978. ]
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "MIT"
  1983. ],
  1984. "authors": [
  1985. {
  1986. "name": "Fabien Potencier",
  1987. "email": "fabien@symfony.com"
  1988. },
  1989. {
  1990. "name": "Symfony Community",
  1991. "homepage": "https://symfony.com/contributors"
  1992. }
  1993. ],
  1994. "description": "Symfony Yaml Component",
  1995. "homepage": "https://symfony.com",
  1996. "time": "2017-12-12T08:41:51+00:00"
  1997. }
  1998. ],
  1999. "packages-dev": [
  2000. {
  2001. "name": "symfony/dotenv",
  2002. "version": "v4.0.2",
  2003. "source": {
  2004. "type": "git",
  2005. "url": "https://github.com/symfony/dotenv.git",
  2006. "reference": "ffcaeab01e42b0c40669add2aa8e77f79ddb9389"
  2007. },
  2008. "dist": {
  2009. "type": "zip",
  2010. "url": "https://api.github.com/repos/symfony/dotenv/zipball/ffcaeab01e42b0c40669add2aa8e77f79ddb9389",
  2011. "reference": "ffcaeab01e42b0c40669add2aa8e77f79ddb9389",
  2012. "shasum": ""
  2013. },
  2014. "require": {
  2015. "php": "^7.1.3"
  2016. },
  2017. "require-dev": {
  2018. "symfony/process": "~3.4|~4.0"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-master": "4.0-dev"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Symfony\\Component\\Dotenv\\": ""
  2029. },
  2030. "exclude-from-classmap": [
  2031. "/Tests/"
  2032. ]
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Fabien Potencier",
  2041. "email": "fabien@symfony.com"
  2042. },
  2043. {
  2044. "name": "Symfony Community",
  2045. "homepage": "https://symfony.com/contributors"
  2046. }
  2047. ],
  2048. "description": "Registers environment variables from a .env file",
  2049. "homepage": "https://symfony.com",
  2050. "keywords": [
  2051. "dotenv",
  2052. "env",
  2053. "environment"
  2054. ],
  2055. "time": "2017-12-08T15:46:13+00:00"
  2056. }
  2057. ],
  2058. "aliases": [],
  2059. "minimum-stability": "stable",
  2060. "stability-flags": {
  2061. "symfony/lts": 20
  2062. },
  2063. "prefer-stable": false,
  2064. "prefer-lowest": false,
  2065. "platform": {
  2066. "php": "^7.1.3",
  2067. "ext-iconv": "*"
  2068. },
  2069. "platform-dev": []
  2070. }