Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

composer.lock.php7.2 72KB

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