composer.lock 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823
  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": "25a9e093c66ee90666fb93eb83472ce9",
  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/asset",
  774. "version": "v4.0.2",
  775. "source": {
  776. "type": "git",
  777. "url": "https://github.com/symfony/asset.git",
  778. "reference": "3f5117a59af74dd3cecf3ebc70d1e35478ae2d01"
  779. },
  780. "dist": {
  781. "type": "zip",
  782. "url": "https://api.github.com/repos/symfony/asset/zipball/3f5117a59af74dd3cecf3ebc70d1e35478ae2d01",
  783. "reference": "3f5117a59af74dd3cecf3ebc70d1e35478ae2d01",
  784. "shasum": ""
  785. },
  786. "require": {
  787. "php": "^7.1.3"
  788. },
  789. "require-dev": {
  790. "symfony/http-foundation": "~3.4|~4.0",
  791. "symfony/http-kernel": "~3.4|~4.0"
  792. },
  793. "suggest": {
  794. "symfony/http-foundation": ""
  795. },
  796. "type": "library",
  797. "extra": {
  798. "branch-alias": {
  799. "dev-master": "4.0-dev"
  800. }
  801. },
  802. "autoload": {
  803. "psr-4": {
  804. "Symfony\\Component\\Asset\\": ""
  805. },
  806. "exclude-from-classmap": [
  807. "/Tests/"
  808. ]
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Fabien Potencier",
  817. "email": "fabien@symfony.com"
  818. },
  819. {
  820. "name": "Symfony Community",
  821. "homepage": "https://symfony.com/contributors"
  822. }
  823. ],
  824. "description": "Symfony Asset Component",
  825. "homepage": "https://symfony.com",
  826. "time": "2017-11-07T14:45:01+00:00"
  827. },
  828. {
  829. "name": "symfony/cache",
  830. "version": "v4.0.2",
  831. "source": {
  832. "type": "git",
  833. "url": "https://github.com/symfony/cache.git",
  834. "reference": "d00351f230ca037ca13f6fec3411e002043f7421"
  835. },
  836. "dist": {
  837. "type": "zip",
  838. "url": "https://api.github.com/repos/symfony/cache/zipball/d00351f230ca037ca13f6fec3411e002043f7421",
  839. "reference": "d00351f230ca037ca13f6fec3411e002043f7421",
  840. "shasum": ""
  841. },
  842. "require": {
  843. "php": "^7.1.3",
  844. "psr/cache": "~1.0",
  845. "psr/log": "~1.0",
  846. "psr/simple-cache": "^1.0"
  847. },
  848. "conflict": {
  849. "symfony/var-dumper": "<3.4"
  850. },
  851. "provide": {
  852. "psr/cache-implementation": "1.0",
  853. "psr/simple-cache-implementation": "1.0"
  854. },
  855. "require-dev": {
  856. "cache/integration-tests": "dev-master",
  857. "doctrine/cache": "~1.6",
  858. "doctrine/dbal": "~2.4",
  859. "predis/predis": "~1.0"
  860. },
  861. "type": "library",
  862. "extra": {
  863. "branch-alias": {
  864. "dev-master": "4.0-dev"
  865. }
  866. },
  867. "autoload": {
  868. "psr-4": {
  869. "Symfony\\Component\\Cache\\": ""
  870. },
  871. "exclude-from-classmap": [
  872. "/Tests/"
  873. ]
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Nicolas Grekas",
  882. "email": "p@tchwork.com"
  883. },
  884. {
  885. "name": "Symfony Community",
  886. "homepage": "https://symfony.com/contributors"
  887. }
  888. ],
  889. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  890. "homepage": "https://symfony.com",
  891. "keywords": [
  892. "caching",
  893. "psr6"
  894. ],
  895. "time": "2017-12-08T16:11:45+00:00"
  896. },
  897. {
  898. "name": "symfony/config",
  899. "version": "v4.0.2",
  900. "source": {
  901. "type": "git",
  902. "url": "https://github.com/symfony/config.git",
  903. "reference": "0356e6d5298e9e72212c0bad65c2f1b49e42d622"
  904. },
  905. "dist": {
  906. "type": "zip",
  907. "url": "https://api.github.com/repos/symfony/config/zipball/0356e6d5298e9e72212c0bad65c2f1b49e42d622",
  908. "reference": "0356e6d5298e9e72212c0bad65c2f1b49e42d622",
  909. "shasum": ""
  910. },
  911. "require": {
  912. "php": "^7.1.3",
  913. "symfony/filesystem": "~3.4|~4.0"
  914. },
  915. "conflict": {
  916. "symfony/finder": "<3.4"
  917. },
  918. "require-dev": {
  919. "symfony/finder": "~3.4|~4.0",
  920. "symfony/yaml": "~3.4|~4.0"
  921. },
  922. "suggest": {
  923. "symfony/yaml": "To use the yaml reference dumper"
  924. },
  925. "type": "library",
  926. "extra": {
  927. "branch-alias": {
  928. "dev-master": "4.0-dev"
  929. }
  930. },
  931. "autoload": {
  932. "psr-4": {
  933. "Symfony\\Component\\Config\\": ""
  934. },
  935. "exclude-from-classmap": [
  936. "/Tests/"
  937. ]
  938. },
  939. "notification-url": "https://packagist.org/downloads/",
  940. "license": [
  941. "MIT"
  942. ],
  943. "authors": [
  944. {
  945. "name": "Fabien Potencier",
  946. "email": "fabien@symfony.com"
  947. },
  948. {
  949. "name": "Symfony Community",
  950. "homepage": "https://symfony.com/contributors"
  951. }
  952. ],
  953. "description": "Symfony Config Component",
  954. "homepage": "https://symfony.com",
  955. "time": "2017-12-14T19:48:22+00:00"
  956. },
  957. {
  958. "name": "symfony/console",
  959. "version": "v4.0.2",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/symfony/console.git",
  963. "reference": "de8cf039eacdec59d83f7def67e3b8ff5ed46714"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/symfony/console/zipball/de8cf039eacdec59d83f7def67e3b8ff5ed46714",
  968. "reference": "de8cf039eacdec59d83f7def67e3b8ff5ed46714",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "php": "^7.1.3",
  973. "symfony/polyfill-mbstring": "~1.0"
  974. },
  975. "conflict": {
  976. "symfony/dependency-injection": "<3.4",
  977. "symfony/process": "<3.3"
  978. },
  979. "require-dev": {
  980. "psr/log": "~1.0",
  981. "symfony/config": "~3.4|~4.0",
  982. "symfony/dependency-injection": "~3.4|~4.0",
  983. "symfony/event-dispatcher": "~3.4|~4.0",
  984. "symfony/lock": "~3.4|~4.0",
  985. "symfony/process": "~3.4|~4.0"
  986. },
  987. "suggest": {
  988. "psr/log": "For using the console logger",
  989. "symfony/event-dispatcher": "",
  990. "symfony/lock": "",
  991. "symfony/process": ""
  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\\Console\\": ""
  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 Console Component",
  1022. "homepage": "https://symfony.com",
  1023. "time": "2017-12-14T19:48:22+00:00"
  1024. },
  1025. {
  1026. "name": "symfony/debug",
  1027. "version": "v4.0.2",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/symfony/debug.git",
  1031. "reference": "8c3e709209ce3b952a31c0f4a31ac7703c3d0226"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/symfony/debug/zipball/8c3e709209ce3b952a31c0f4a31ac7703c3d0226",
  1036. "reference": "8c3e709209ce3b952a31c0f4a31ac7703c3d0226",
  1037. "shasum": ""
  1038. },
  1039. "require": {
  1040. "php": "^7.1.3",
  1041. "psr/log": "~1.0"
  1042. },
  1043. "conflict": {
  1044. "symfony/http-kernel": "<3.4"
  1045. },
  1046. "require-dev": {
  1047. "symfony/http-kernel": "~3.4|~4.0"
  1048. },
  1049. "type": "library",
  1050. "extra": {
  1051. "branch-alias": {
  1052. "dev-master": "4.0-dev"
  1053. }
  1054. },
  1055. "autoload": {
  1056. "psr-4": {
  1057. "Symfony\\Component\\Debug\\": ""
  1058. },
  1059. "exclude-from-classmap": [
  1060. "/Tests/"
  1061. ]
  1062. },
  1063. "notification-url": "https://packagist.org/downloads/",
  1064. "license": [
  1065. "MIT"
  1066. ],
  1067. "authors": [
  1068. {
  1069. "name": "Fabien Potencier",
  1070. "email": "fabien@symfony.com"
  1071. },
  1072. {
  1073. "name": "Symfony Community",
  1074. "homepage": "https://symfony.com/contributors"
  1075. }
  1076. ],
  1077. "description": "Symfony Debug Component",
  1078. "homepage": "https://symfony.com",
  1079. "time": "2017-12-12T08:41:51+00:00"
  1080. },
  1081. {
  1082. "name": "symfony/dependency-injection",
  1083. "version": "v4.0.2",
  1084. "source": {
  1085. "type": "git",
  1086. "url": "https://github.com/symfony/dependency-injection.git",
  1087. "reference": "d2fa088b5fd7d429974a36bf1a9846b912d9d124"
  1088. },
  1089. "dist": {
  1090. "type": "zip",
  1091. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d2fa088b5fd7d429974a36bf1a9846b912d9d124",
  1092. "reference": "d2fa088b5fd7d429974a36bf1a9846b912d9d124",
  1093. "shasum": ""
  1094. },
  1095. "require": {
  1096. "php": "^7.1.3",
  1097. "psr/container": "^1.0"
  1098. },
  1099. "conflict": {
  1100. "symfony/config": "<3.4",
  1101. "symfony/finder": "<3.4",
  1102. "symfony/proxy-manager-bridge": "<3.4",
  1103. "symfony/yaml": "<3.4"
  1104. },
  1105. "provide": {
  1106. "psr/container-implementation": "1.0"
  1107. },
  1108. "require-dev": {
  1109. "symfony/config": "~3.4|~4.0",
  1110. "symfony/expression-language": "~3.4|~4.0",
  1111. "symfony/yaml": "~3.4|~4.0"
  1112. },
  1113. "suggest": {
  1114. "symfony/config": "",
  1115. "symfony/expression-language": "For using expressions in service container configuration",
  1116. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  1117. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1118. "symfony/yaml": ""
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "4.0-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "Symfony\\Component\\DependencyInjection\\": ""
  1129. },
  1130. "exclude-from-classmap": [
  1131. "/Tests/"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Fabien Potencier",
  1141. "email": "fabien@symfony.com"
  1142. },
  1143. {
  1144. "name": "Symfony Community",
  1145. "homepage": "https://symfony.com/contributors"
  1146. }
  1147. ],
  1148. "description": "Symfony DependencyInjection Component",
  1149. "homepage": "https://symfony.com",
  1150. "time": "2017-12-14T19:48:22+00:00"
  1151. },
  1152. {
  1153. "name": "symfony/event-dispatcher",
  1154. "version": "v4.0.2",
  1155. "source": {
  1156. "type": "git",
  1157. "url": "https://github.com/symfony/event-dispatcher.git",
  1158. "reference": "d4face19ed8002eec8280bc1c5ec18130472bf43"
  1159. },
  1160. "dist": {
  1161. "type": "zip",
  1162. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d4face19ed8002eec8280bc1c5ec18130472bf43",
  1163. "reference": "d4face19ed8002eec8280bc1c5ec18130472bf43",
  1164. "shasum": ""
  1165. },
  1166. "require": {
  1167. "php": "^7.1.3"
  1168. },
  1169. "conflict": {
  1170. "symfony/dependency-injection": "<3.4"
  1171. },
  1172. "require-dev": {
  1173. "psr/log": "~1.0",
  1174. "symfony/config": "~3.4|~4.0",
  1175. "symfony/dependency-injection": "~3.4|~4.0",
  1176. "symfony/expression-language": "~3.4|~4.0",
  1177. "symfony/stopwatch": "~3.4|~4.0"
  1178. },
  1179. "suggest": {
  1180. "symfony/dependency-injection": "",
  1181. "symfony/http-kernel": ""
  1182. },
  1183. "type": "library",
  1184. "extra": {
  1185. "branch-alias": {
  1186. "dev-master": "4.0-dev"
  1187. }
  1188. },
  1189. "autoload": {
  1190. "psr-4": {
  1191. "Symfony\\Component\\EventDispatcher\\": ""
  1192. },
  1193. "exclude-from-classmap": [
  1194. "/Tests/"
  1195. ]
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Fabien Potencier",
  1204. "email": "fabien@symfony.com"
  1205. },
  1206. {
  1207. "name": "Symfony Community",
  1208. "homepage": "https://symfony.com/contributors"
  1209. }
  1210. ],
  1211. "description": "Symfony EventDispatcher Component",
  1212. "homepage": "https://symfony.com",
  1213. "time": "2017-12-14T19:48:22+00:00"
  1214. },
  1215. {
  1216. "name": "symfony/filesystem",
  1217. "version": "v4.0.2",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/symfony/filesystem.git",
  1221. "reference": "8c2868641d0c4885eee9c12a89c2b695eb1985cd"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c2868641d0c4885eee9c12a89c2b695eb1985cd",
  1226. "reference": "8c2868641d0c4885eee9c12a89c2b695eb1985cd",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "php": "^7.1.3"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-master": "4.0-dev"
  1236. }
  1237. },
  1238. "autoload": {
  1239. "psr-4": {
  1240. "Symfony\\Component\\Filesystem\\": ""
  1241. },
  1242. "exclude-from-classmap": [
  1243. "/Tests/"
  1244. ]
  1245. },
  1246. "notification-url": "https://packagist.org/downloads/",
  1247. "license": [
  1248. "MIT"
  1249. ],
  1250. "authors": [
  1251. {
  1252. "name": "Fabien Potencier",
  1253. "email": "fabien@symfony.com"
  1254. },
  1255. {
  1256. "name": "Symfony Community",
  1257. "homepage": "https://symfony.com/contributors"
  1258. }
  1259. ],
  1260. "description": "Symfony Filesystem Component",
  1261. "homepage": "https://symfony.com",
  1262. "time": "2017-12-14T19:48:22+00:00"
  1263. },
  1264. {
  1265. "name": "symfony/finder",
  1266. "version": "v4.0.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/symfony/finder.git",
  1270. "reference": "c9cdda4dc4a3182d8d6daeebce4a25fef078ea4c"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/symfony/finder/zipball/c9cdda4dc4a3182d8d6daeebce4a25fef078ea4c",
  1275. "reference": "c9cdda4dc4a3182d8d6daeebce4a25fef078ea4c",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "^7.1.3"
  1280. },
  1281. "type": "library",
  1282. "extra": {
  1283. "branch-alias": {
  1284. "dev-master": "4.0-dev"
  1285. }
  1286. },
  1287. "autoload": {
  1288. "psr-4": {
  1289. "Symfony\\Component\\Finder\\": ""
  1290. },
  1291. "exclude-from-classmap": [
  1292. "/Tests/"
  1293. ]
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Fabien Potencier",
  1302. "email": "fabien@symfony.com"
  1303. },
  1304. {
  1305. "name": "Symfony Community",
  1306. "homepage": "https://symfony.com/contributors"
  1307. }
  1308. ],
  1309. "description": "Symfony Finder Component",
  1310. "homepage": "https://symfony.com",
  1311. "time": "2017-11-07T14:45:01+00:00"
  1312. },
  1313. {
  1314. "name": "symfony/flex",
  1315. "version": "v1.0.52",
  1316. "source": {
  1317. "type": "git",
  1318. "url": "https://github.com/symfony/flex.git",
  1319. "reference": "861a98056cad02a3a18b778404dee1427bd4a30d"
  1320. },
  1321. "dist": {
  1322. "type": "zip",
  1323. "url": "https://api.github.com/repos/symfony/flex/zipball/861a98056cad02a3a18b778404dee1427bd4a30d",
  1324. "reference": "861a98056cad02a3a18b778404dee1427bd4a30d",
  1325. "shasum": ""
  1326. },
  1327. "require": {
  1328. "composer-plugin-api": "^1.1",
  1329. "php": "^7.0"
  1330. },
  1331. "require-dev": {
  1332. "composer/composer": "^1.4",
  1333. "symfony/phpunit-bridge": "^3.2.8"
  1334. },
  1335. "type": "composer-plugin",
  1336. "extra": {
  1337. "branch-alias": {
  1338. "dev-master": "1.0-dev"
  1339. },
  1340. "class": "Symfony\\Flex\\Flex"
  1341. },
  1342. "autoload": {
  1343. "psr-4": {
  1344. "Symfony\\Flex\\": "src"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Fabien Potencier",
  1354. "email": "fabien.potencier@gmail.com"
  1355. }
  1356. ],
  1357. "time": "2017-12-20T19:26:56+00:00"
  1358. },
  1359. {
  1360. "name": "symfony/framework-bundle",
  1361. "version": "v4.0.2",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/symfony/framework-bundle.git",
  1365. "reference": "82e45a486a2cbdab5d43512bea10af1681dcd8e2"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/82e45a486a2cbdab5d43512bea10af1681dcd8e2",
  1370. "reference": "82e45a486a2cbdab5d43512bea10af1681dcd8e2",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "ext-xml": "*",
  1375. "php": "^7.1.3",
  1376. "symfony/cache": "~3.4|~4.0",
  1377. "symfony/config": "~3.4|~4.0",
  1378. "symfony/dependency-injection": "~3.4|~4.0",
  1379. "symfony/event-dispatcher": "~3.4|~4.0",
  1380. "symfony/filesystem": "~3.4|~4.0",
  1381. "symfony/finder": "~3.4|~4.0",
  1382. "symfony/http-foundation": "~3.4|~4.0",
  1383. "symfony/http-kernel": "~3.4|~4.0",
  1384. "symfony/polyfill-mbstring": "~1.0",
  1385. "symfony/routing": "~3.4|~4.0"
  1386. },
  1387. "conflict": {
  1388. "phpdocumentor/reflection-docblock": "<3.0",
  1389. "phpdocumentor/type-resolver": "<0.2.1",
  1390. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1391. "symfony/asset": "<3.4",
  1392. "symfony/console": "<3.4",
  1393. "symfony/form": "<3.4",
  1394. "symfony/property-info": "<3.4",
  1395. "symfony/serializer": "<3.4",
  1396. "symfony/stopwatch": "<3.4",
  1397. "symfony/translation": "<3.4",
  1398. "symfony/validator": "<3.4",
  1399. "symfony/workflow": "<3.4"
  1400. },
  1401. "require-dev": {
  1402. "doctrine/annotations": "~1.0",
  1403. "doctrine/cache": "~1.0",
  1404. "fig/link-util": "^1.0",
  1405. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  1406. "symfony/asset": "~3.4|~4.0",
  1407. "symfony/browser-kit": "~3.4|~4.0",
  1408. "symfony/console": "~3.4|~4.0",
  1409. "symfony/css-selector": "~3.4|~4.0",
  1410. "symfony/dom-crawler": "~3.4|~4.0",
  1411. "symfony/expression-language": "~3.4|~4.0",
  1412. "symfony/form": "~3.4|~4.0",
  1413. "symfony/lock": "~3.4|~4.0",
  1414. "symfony/polyfill-intl-icu": "~1.0",
  1415. "symfony/process": "~3.4|~4.0",
  1416. "symfony/property-info": "~3.4|~4.0",
  1417. "symfony/security": "~3.4|~4.0",
  1418. "symfony/security-core": "~3.4|~4.0",
  1419. "symfony/security-csrf": "~3.4|~4.0",
  1420. "symfony/serializer": "~3.4|~4.0",
  1421. "symfony/stopwatch": "~3.4|~4.0",
  1422. "symfony/templating": "~3.4|~4.0",
  1423. "symfony/translation": "~3.4|~4.0",
  1424. "symfony/validator": "~3.4|~4.0",
  1425. "symfony/var-dumper": "~3.4|~4.0",
  1426. "symfony/web-link": "~3.4|~4.0",
  1427. "symfony/workflow": "~3.4|~4.0",
  1428. "symfony/yaml": "~3.4|~4.0",
  1429. "twig/twig": "~1.34|~2.4"
  1430. },
  1431. "suggest": {
  1432. "ext-apcu": "For best performance of the system caches",
  1433. "symfony/console": "For using the console commands",
  1434. "symfony/form": "For using forms",
  1435. "symfony/property-info": "For using the property_info service",
  1436. "symfony/serializer": "For using the serializer service",
  1437. "symfony/validator": "For using validation",
  1438. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering",
  1439. "symfony/yaml": "For using the debug:config and lint:yaml commands"
  1440. },
  1441. "type": "symfony-bundle",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "4.0-dev"
  1445. }
  1446. },
  1447. "autoload": {
  1448. "psr-4": {
  1449. "Symfony\\Bundle\\FrameworkBundle\\": ""
  1450. },
  1451. "exclude-from-classmap": [
  1452. "/Tests/"
  1453. ]
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "MIT"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Fabien Potencier",
  1462. "email": "fabien@symfony.com"
  1463. },
  1464. {
  1465. "name": "Symfony Community",
  1466. "homepage": "https://symfony.com/contributors"
  1467. }
  1468. ],
  1469. "description": "Symfony FrameworkBundle",
  1470. "homepage": "https://symfony.com",
  1471. "time": "2017-12-15T01:44:28+00:00"
  1472. },
  1473. {
  1474. "name": "symfony/http-foundation",
  1475. "version": "v4.0.2",
  1476. "source": {
  1477. "type": "git",
  1478. "url": "https://github.com/symfony/http-foundation.git",
  1479. "reference": "aba96bd07be7796c81ca0ceafa7d48a6fef036c8"
  1480. },
  1481. "dist": {
  1482. "type": "zip",
  1483. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/aba96bd07be7796c81ca0ceafa7d48a6fef036c8",
  1484. "reference": "aba96bd07be7796c81ca0ceafa7d48a6fef036c8",
  1485. "shasum": ""
  1486. },
  1487. "require": {
  1488. "php": "^7.1.3",
  1489. "symfony/polyfill-mbstring": "~1.1"
  1490. },
  1491. "require-dev": {
  1492. "symfony/expression-language": "~3.4|~4.0"
  1493. },
  1494. "type": "library",
  1495. "extra": {
  1496. "branch-alias": {
  1497. "dev-master": "4.0-dev"
  1498. }
  1499. },
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Symfony\\Component\\HttpFoundation\\": ""
  1503. },
  1504. "exclude-from-classmap": [
  1505. "/Tests/"
  1506. ]
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Fabien Potencier",
  1515. "email": "fabien@symfony.com"
  1516. },
  1517. {
  1518. "name": "Symfony Community",
  1519. "homepage": "https://symfony.com/contributors"
  1520. }
  1521. ],
  1522. "description": "Symfony HttpFoundation Component",
  1523. "homepage": "https://symfony.com",
  1524. "time": "2017-12-14T19:48:22+00:00"
  1525. },
  1526. {
  1527. "name": "symfony/http-kernel",
  1528. "version": "v4.0.2",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/symfony/http-kernel.git",
  1532. "reference": "f2ea7461cdcad837b8bc6022b59d5eb8c9618aa5"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2ea7461cdcad837b8bc6022b59d5eb8c9618aa5",
  1537. "reference": "f2ea7461cdcad837b8bc6022b59d5eb8c9618aa5",
  1538. "shasum": ""
  1539. },
  1540. "require": {
  1541. "php": "^7.1.3",
  1542. "psr/log": "~1.0",
  1543. "symfony/debug": "~3.4|~4.0",
  1544. "symfony/event-dispatcher": "~3.4|~4.0",
  1545. "symfony/http-foundation": "~3.4|~4.0"
  1546. },
  1547. "conflict": {
  1548. "symfony/config": "<3.4",
  1549. "symfony/dependency-injection": "<3.4",
  1550. "symfony/var-dumper": "<3.4",
  1551. "twig/twig": "<1.34|<2.4,>=2"
  1552. },
  1553. "provide": {
  1554. "psr/log-implementation": "1.0"
  1555. },
  1556. "require-dev": {
  1557. "psr/cache": "~1.0",
  1558. "symfony/browser-kit": "~3.4|~4.0",
  1559. "symfony/config": "~3.4|~4.0",
  1560. "symfony/console": "~3.4|~4.0",
  1561. "symfony/css-selector": "~3.4|~4.0",
  1562. "symfony/dependency-injection": "~3.4|~4.0",
  1563. "symfony/dom-crawler": "~3.4|~4.0",
  1564. "symfony/expression-language": "~3.4|~4.0",
  1565. "symfony/finder": "~3.4|~4.0",
  1566. "symfony/process": "~3.4|~4.0",
  1567. "symfony/routing": "~3.4|~4.0",
  1568. "symfony/stopwatch": "~3.4|~4.0",
  1569. "symfony/templating": "~3.4|~4.0",
  1570. "symfony/translation": "~3.4|~4.0",
  1571. "symfony/var-dumper": "~3.4|~4.0"
  1572. },
  1573. "suggest": {
  1574. "symfony/browser-kit": "",
  1575. "symfony/config": "",
  1576. "symfony/console": "",
  1577. "symfony/dependency-injection": "",
  1578. "symfony/var-dumper": ""
  1579. },
  1580. "type": "library",
  1581. "extra": {
  1582. "branch-alias": {
  1583. "dev-master": "4.0-dev"
  1584. }
  1585. },
  1586. "autoload": {
  1587. "psr-4": {
  1588. "Symfony\\Component\\HttpKernel\\": ""
  1589. },
  1590. "exclude-from-classmap": [
  1591. "/Tests/"
  1592. ]
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Fabien Potencier",
  1601. "email": "fabien@symfony.com"
  1602. },
  1603. {
  1604. "name": "Symfony Community",
  1605. "homepage": "https://symfony.com/contributors"
  1606. }
  1607. ],
  1608. "description": "Symfony HttpKernel Component",
  1609. "homepage": "https://symfony.com",
  1610. "time": "2017-12-15T03:06:17+00:00"
  1611. },
  1612. {
  1613. "name": "symfony/inflector",
  1614. "version": "v4.0.2",
  1615. "source": {
  1616. "type": "git",
  1617. "url": "https://github.com/symfony/inflector.git",
  1618. "reference": "8740990f67ec9f89bfa116d11bad2990dd510ece"
  1619. },
  1620. "dist": {
  1621. "type": "zip",
  1622. "url": "https://api.github.com/repos/symfony/inflector/zipball/8740990f67ec9f89bfa116d11bad2990dd510ece",
  1623. "reference": "8740990f67ec9f89bfa116d11bad2990dd510ece",
  1624. "shasum": ""
  1625. },
  1626. "require": {
  1627. "php": "^7.1.3"
  1628. },
  1629. "type": "library",
  1630. "extra": {
  1631. "branch-alias": {
  1632. "dev-master": "4.0-dev"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "psr-4": {
  1637. "Symfony\\Component\\Inflector\\": ""
  1638. },
  1639. "exclude-from-classmap": [
  1640. "/Tests/"
  1641. ]
  1642. },
  1643. "notification-url": "https://packagist.org/downloads/",
  1644. "license": [
  1645. "MIT"
  1646. ],
  1647. "authors": [
  1648. {
  1649. "name": "Bernhard Schussek",
  1650. "email": "bschussek@gmail.com"
  1651. },
  1652. {
  1653. "name": "Symfony Community",
  1654. "homepage": "https://symfony.com/contributors"
  1655. }
  1656. ],
  1657. "description": "Symfony Inflector Component",
  1658. "homepage": "https://symfony.com",
  1659. "keywords": [
  1660. "inflection",
  1661. "pluralize",
  1662. "singularize",
  1663. "string",
  1664. "symfony",
  1665. "words"
  1666. ],
  1667. "time": "2017-08-31T20:46:21+00:00"
  1668. },
  1669. {
  1670. "name": "symfony/lts",
  1671. "version": "dev-master",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://github.com/symfony/lts.git",
  1675. "reference": "396c5fca8d73d01186df37d7031321a3c0c2bf92"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://api.github.com/repos/symfony/lts/zipball/396c5fca8d73d01186df37d7031321a3c0c2bf92",
  1680. "reference": "396c5fca8d73d01186df37d7031321a3c0c2bf92",
  1681. "shasum": ""
  1682. },
  1683. "conflict": {
  1684. "symfony/asset": ">=5",
  1685. "symfony/browser-kit": ">=5",
  1686. "symfony/cache": ">=5",
  1687. "symfony/class-loader": ">=5",
  1688. "symfony/config": ">=5",
  1689. "symfony/console": ">=5",
  1690. "symfony/css-selector": ">=5",
  1691. "symfony/debug": ">=5",
  1692. "symfony/debug-bundle": ">=5",
  1693. "symfony/dependency-injection": ">=5",
  1694. "symfony/doctrine-bridge": ">=5",
  1695. "symfony/dom-crawler": ">=5",
  1696. "symfony/dotenv": ">=5",
  1697. "symfony/event-dispatcher": ">=5",
  1698. "symfony/expression-language": ">=5",
  1699. "symfony/filesystem": ">=5",
  1700. "symfony/finder": ">=5",
  1701. "symfony/form": ">=5",
  1702. "symfony/framework-bundle": ">=5",
  1703. "symfony/http-foundation": ">=5",
  1704. "symfony/http-kernel": ">=5",
  1705. "symfony/inflector": ">=5",
  1706. "symfony/intl": ">=5",
  1707. "symfony/ldap": ">=5",
  1708. "symfony/lock": ">=5",
  1709. "symfony/monolog-bridge": ">=5",
  1710. "symfony/options-resolver": ">=5",
  1711. "symfony/process": ">=5",
  1712. "symfony/property-access": ">=5",
  1713. "symfony/property-info": ">=5",
  1714. "symfony/proxy-manager-bridge": ">=5",
  1715. "symfony/routing": ">=5",
  1716. "symfony/security": ">=5",
  1717. "symfony/security-bundle": ">=5",
  1718. "symfony/security-core": ">=5",
  1719. "symfony/security-csrf": ">=5",
  1720. "symfony/security-guard": ">=5",
  1721. "symfony/security-http": ">=5",
  1722. "symfony/serializer": ">=5",
  1723. "symfony/stopwatch": ">=5",
  1724. "symfony/symfony": ">=5",
  1725. "symfony/templating": ">=5",
  1726. "symfony/translation": ">=5",
  1727. "symfony/twig-bridge": ">=5",
  1728. "symfony/twig-bundle": ">=5",
  1729. "symfony/validator": ">=5",
  1730. "symfony/var-dumper": ">=5",
  1731. "symfony/web-link": ">=5",
  1732. "symfony/web-profiler-bundle": ">=5",
  1733. "symfony/web-server-bundle": ">=5",
  1734. "symfony/workflow": ">=5",
  1735. "symfony/yaml": ">=5"
  1736. },
  1737. "type": "metapackage",
  1738. "extra": {
  1739. "branch-alias": {
  1740. "dev-master": "4-dev"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Fabien Potencier",
  1750. "email": "fabien@symfony.com"
  1751. },
  1752. {
  1753. "name": "Symfony Community",
  1754. "homepage": "https://symfony.com/contributors"
  1755. }
  1756. ],
  1757. "description": "Enforces Long Term Supported versions of Symfony components",
  1758. "homepage": "https://symfony.com",
  1759. "time": "2017-10-19T02:16:32+00:00"
  1760. },
  1761. {
  1762. "name": "symfony/polyfill-mbstring",
  1763. "version": "v1.6.0",
  1764. "source": {
  1765. "type": "git",
  1766. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1767. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296"
  1768. },
  1769. "dist": {
  1770. "type": "zip",
  1771. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1772. "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296",
  1773. "shasum": ""
  1774. },
  1775. "require": {
  1776. "php": ">=5.3.3"
  1777. },
  1778. "suggest": {
  1779. "ext-mbstring": "For best performance"
  1780. },
  1781. "type": "library",
  1782. "extra": {
  1783. "branch-alias": {
  1784. "dev-master": "1.6-dev"
  1785. }
  1786. },
  1787. "autoload": {
  1788. "psr-4": {
  1789. "Symfony\\Polyfill\\Mbstring\\": ""
  1790. },
  1791. "files": [
  1792. "bootstrap.php"
  1793. ]
  1794. },
  1795. "notification-url": "https://packagist.org/downloads/",
  1796. "license": [
  1797. "MIT"
  1798. ],
  1799. "authors": [
  1800. {
  1801. "name": "Nicolas Grekas",
  1802. "email": "p@tchwork.com"
  1803. },
  1804. {
  1805. "name": "Symfony Community",
  1806. "homepage": "https://symfony.com/contributors"
  1807. }
  1808. ],
  1809. "description": "Symfony polyfill for the Mbstring extension",
  1810. "homepage": "https://symfony.com",
  1811. "keywords": [
  1812. "compatibility",
  1813. "mbstring",
  1814. "polyfill",
  1815. "portable",
  1816. "shim"
  1817. ],
  1818. "time": "2017-10-11T12:05:26+00:00"
  1819. },
  1820. {
  1821. "name": "symfony/process",
  1822. "version": "v4.0.2",
  1823. "source": {
  1824. "type": "git",
  1825. "url": "https://github.com/symfony/process.git",
  1826. "reference": "18d1953068e72262830bad593f0366fa62c93fb7"
  1827. },
  1828. "dist": {
  1829. "type": "zip",
  1830. "url": "https://api.github.com/repos/symfony/process/zipball/18d1953068e72262830bad593f0366fa62c93fb7",
  1831. "reference": "18d1953068e72262830bad593f0366fa62c93fb7",
  1832. "shasum": ""
  1833. },
  1834. "require": {
  1835. "php": "^7.1.3"
  1836. },
  1837. "type": "library",
  1838. "extra": {
  1839. "branch-alias": {
  1840. "dev-master": "4.0-dev"
  1841. }
  1842. },
  1843. "autoload": {
  1844. "psr-4": {
  1845. "Symfony\\Component\\Process\\": ""
  1846. },
  1847. "exclude-from-classmap": [
  1848. "/Tests/"
  1849. ]
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "MIT"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Fabien Potencier",
  1858. "email": "fabien@symfony.com"
  1859. },
  1860. {
  1861. "name": "Symfony Community",
  1862. "homepage": "https://symfony.com/contributors"
  1863. }
  1864. ],
  1865. "description": "Symfony Process Component",
  1866. "homepage": "https://symfony.com",
  1867. "time": "2017-12-14T19:48:22+00:00"
  1868. },
  1869. {
  1870. "name": "symfony/property-access",
  1871. "version": "v4.0.2",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/symfony/property-access.git",
  1875. "reference": "8dc059852b7bdd8b871eb3ca95b8d70be3b39488"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/symfony/property-access/zipball/8dc059852b7bdd8b871eb3ca95b8d70be3b39488",
  1880. "reference": "8dc059852b7bdd8b871eb3ca95b8d70be3b39488",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "php": "^7.1.3",
  1885. "symfony/inflector": "~3.4|~4.0"
  1886. },
  1887. "require-dev": {
  1888. "symfony/cache": "~3.4|~4.0"
  1889. },
  1890. "suggest": {
  1891. "psr/cache-implementation": "To cache access methods."
  1892. },
  1893. "type": "library",
  1894. "extra": {
  1895. "branch-alias": {
  1896. "dev-master": "4.0-dev"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "Symfony\\Component\\PropertyAccess\\": ""
  1902. },
  1903. "exclude-from-classmap": [
  1904. "/Tests/"
  1905. ]
  1906. },
  1907. "notification-url": "https://packagist.org/downloads/",
  1908. "license": [
  1909. "MIT"
  1910. ],
  1911. "authors": [
  1912. {
  1913. "name": "Fabien Potencier",
  1914. "email": "fabien@symfony.com"
  1915. },
  1916. {
  1917. "name": "Symfony Community",
  1918. "homepage": "https://symfony.com/contributors"
  1919. }
  1920. ],
  1921. "description": "Symfony PropertyAccess Component",
  1922. "homepage": "https://symfony.com",
  1923. "keywords": [
  1924. "access",
  1925. "array",
  1926. "extraction",
  1927. "index",
  1928. "injection",
  1929. "object",
  1930. "property",
  1931. "property path",
  1932. "reflection"
  1933. ],
  1934. "time": "2017-12-14T00:19:09+00:00"
  1935. },
  1936. {
  1937. "name": "symfony/requirements-checker",
  1938. "version": "v1.0.3",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/symfony/requirements-checker.git",
  1942. "reference": "931997643fb512026241c7360c613bc1e61ed9cf"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/symfony/requirements-checker/zipball/931997643fb512026241c7360c613bc1e61ed9cf",
  1947. "reference": "931997643fb512026241c7360c613bc1e61ed9cf",
  1948. "shasum": ""
  1949. },
  1950. "require": {
  1951. "php": ">=5.3.9"
  1952. },
  1953. "bin": [
  1954. "bin/requirements-checker"
  1955. ],
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "1.0.x-dev"
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "Symfony\\Requirements\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Fabien Potencier",
  1974. "email": "fabien@symfony.com"
  1975. }
  1976. ],
  1977. "description": "Check Symfony requirements and give recommendations",
  1978. "keywords": [
  1979. "configuration",
  1980. "distribution"
  1981. ],
  1982. "time": "2017-11-10T15:30:47+00:00"
  1983. },
  1984. {
  1985. "name": "symfony/routing",
  1986. "version": "v4.0.2",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/symfony/routing.git",
  1990. "reference": "972810def5cae044d19195045f7eb418141bf37b"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/symfony/routing/zipball/972810def5cae044d19195045f7eb418141bf37b",
  1995. "reference": "972810def5cae044d19195045f7eb418141bf37b",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "php": "^7.1.3"
  2000. },
  2001. "conflict": {
  2002. "symfony/config": "<3.4",
  2003. "symfony/dependency-injection": "<3.4",
  2004. "symfony/yaml": "<3.4"
  2005. },
  2006. "require-dev": {
  2007. "doctrine/annotations": "~1.0",
  2008. "doctrine/common": "~2.2",
  2009. "psr/log": "~1.0",
  2010. "symfony/config": "~3.4|~4.0",
  2011. "symfony/dependency-injection": "~3.4|~4.0",
  2012. "symfony/expression-language": "~3.4|~4.0",
  2013. "symfony/http-foundation": "~3.4|~4.0",
  2014. "symfony/yaml": "~3.4|~4.0"
  2015. },
  2016. "suggest": {
  2017. "doctrine/annotations": "For using the annotation loader",
  2018. "symfony/config": "For using the all-in-one router or any loader",
  2019. "symfony/dependency-injection": "For loading routes from a service",
  2020. "symfony/expression-language": "For using expression matching",
  2021. "symfony/http-foundation": "For using a Symfony Request object",
  2022. "symfony/yaml": "For using the YAML loader"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "4.0-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "Symfony\\Component\\Routing\\": ""
  2033. },
  2034. "exclude-from-classmap": [
  2035. "/Tests/"
  2036. ]
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "MIT"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Fabien Potencier",
  2045. "email": "fabien@symfony.com"
  2046. },
  2047. {
  2048. "name": "Symfony Community",
  2049. "homepage": "https://symfony.com/contributors"
  2050. }
  2051. ],
  2052. "description": "Symfony Routing Component",
  2053. "homepage": "https://symfony.com",
  2054. "keywords": [
  2055. "router",
  2056. "routing",
  2057. "uri",
  2058. "url"
  2059. ],
  2060. "time": "2017-12-14T22:39:22+00:00"
  2061. },
  2062. {
  2063. "name": "symfony/security",
  2064. "version": "v4.0.2",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/symfony/security.git",
  2068. "reference": "6ff0f1e97f583583c10152e4050e8a4fac2cfd1e"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/symfony/security/zipball/6ff0f1e97f583583c10152e4050e8a4fac2cfd1e",
  2073. "reference": "6ff0f1e97f583583c10152e4050e8a4fac2cfd1e",
  2074. "shasum": ""
  2075. },
  2076. "require": {
  2077. "php": "^7.1.3",
  2078. "symfony/event-dispatcher": "~3.4|~4.0",
  2079. "symfony/http-foundation": "~3.4|~4.0",
  2080. "symfony/http-kernel": "~3.4|~4.0",
  2081. "symfony/property-access": "~3.4|~4.0"
  2082. },
  2083. "replace": {
  2084. "symfony/security-core": "self.version",
  2085. "symfony/security-csrf": "self.version",
  2086. "symfony/security-guard": "self.version",
  2087. "symfony/security-http": "self.version"
  2088. },
  2089. "require-dev": {
  2090. "psr/container": "^1.0",
  2091. "psr/log": "~1.0",
  2092. "symfony/expression-language": "~3.4|~4.0",
  2093. "symfony/finder": "~3.4|~4.0",
  2094. "symfony/ldap": "~3.4|~4.0",
  2095. "symfony/polyfill-intl-icu": "~1.0",
  2096. "symfony/routing": "~3.4|~4.0",
  2097. "symfony/validator": "~3.4|~4.0"
  2098. },
  2099. "suggest": {
  2100. "psr/container": "To instantiate the Security class",
  2101. "symfony/expression-language": "For using the expression voter",
  2102. "symfony/form": "",
  2103. "symfony/ldap": "For using the LDAP user and authentication providers",
  2104. "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs",
  2105. "symfony/validator": "For using the user password constraint"
  2106. },
  2107. "type": "library",
  2108. "extra": {
  2109. "branch-alias": {
  2110. "dev-master": "4.0-dev"
  2111. }
  2112. },
  2113. "autoload": {
  2114. "psr-4": {
  2115. "Symfony\\Component\\Security\\": ""
  2116. },
  2117. "exclude-from-classmap": [
  2118. "/Tests/"
  2119. ]
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "MIT"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Fabien Potencier",
  2128. "email": "fabien@symfony.com"
  2129. },
  2130. {
  2131. "name": "Symfony Community",
  2132. "homepage": "https://symfony.com/contributors"
  2133. }
  2134. ],
  2135. "description": "Symfony Security Component",
  2136. "homepage": "https://symfony.com",
  2137. "time": "2017-12-14T19:48:22+00:00"
  2138. },
  2139. {
  2140. "name": "symfony/twig-bridge",
  2141. "version": "v4.0.2",
  2142. "source": {
  2143. "type": "git",
  2144. "url": "https://github.com/symfony/twig-bridge.git",
  2145. "reference": "aeb221936ad39c579b7e002dfd4e7544a5d666f6"
  2146. },
  2147. "dist": {
  2148. "type": "zip",
  2149. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/aeb221936ad39c579b7e002dfd4e7544a5d666f6",
  2150. "reference": "aeb221936ad39c579b7e002dfd4e7544a5d666f6",
  2151. "shasum": ""
  2152. },
  2153. "require": {
  2154. "php": "^7.1.3",
  2155. "twig/twig": "^1.35|^2.4.4"
  2156. },
  2157. "conflict": {
  2158. "symfony/console": "<3.4",
  2159. "symfony/form": "<3.4"
  2160. },
  2161. "require-dev": {
  2162. "symfony/asset": "~3.4|~4.0",
  2163. "symfony/console": "~3.4|~4.0",
  2164. "symfony/dependency-injection": "~3.4|~4.0",
  2165. "symfony/expression-language": "~3.4|~4.0",
  2166. "symfony/finder": "~3.4|~4.0",
  2167. "symfony/form": "~3.4|~4.0",
  2168. "symfony/http-foundation": "~3.4|~4.0",
  2169. "symfony/http-kernel": "~3.4|~4.0",
  2170. "symfony/polyfill-intl-icu": "~1.0",
  2171. "symfony/routing": "~3.4|~4.0",
  2172. "symfony/security": "~3.4|~4.0",
  2173. "symfony/security-acl": "~2.8|~3.0",
  2174. "symfony/stopwatch": "~3.4|~4.0",
  2175. "symfony/templating": "~3.4|~4.0",
  2176. "symfony/translation": "~3.4|~4.0",
  2177. "symfony/var-dumper": "~3.4|~4.0",
  2178. "symfony/web-link": "~3.4|~4.0",
  2179. "symfony/workflow": "~3.4|~4.0",
  2180. "symfony/yaml": "~3.4|~4.0"
  2181. },
  2182. "suggest": {
  2183. "symfony/asset": "For using the AssetExtension",
  2184. "symfony/expression-language": "For using the ExpressionExtension",
  2185. "symfony/finder": "",
  2186. "symfony/form": "For using the FormExtension",
  2187. "symfony/http-kernel": "For using the HttpKernelExtension",
  2188. "symfony/routing": "For using the RoutingExtension",
  2189. "symfony/security": "For using the SecurityExtension",
  2190. "symfony/stopwatch": "For using the StopwatchExtension",
  2191. "symfony/templating": "For using the TwigEngine",
  2192. "symfony/translation": "For using the TranslationExtension",
  2193. "symfony/var-dumper": "For using the DumpExtension",
  2194. "symfony/web-link": "For using the WebLinkExtension",
  2195. "symfony/yaml": "For using the YamlExtension"
  2196. },
  2197. "type": "symfony-bridge",
  2198. "extra": {
  2199. "branch-alias": {
  2200. "dev-master": "4.0-dev"
  2201. }
  2202. },
  2203. "autoload": {
  2204. "psr-4": {
  2205. "Symfony\\Bridge\\Twig\\": ""
  2206. },
  2207. "exclude-from-classmap": [
  2208. "/Tests/"
  2209. ]
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Fabien Potencier",
  2218. "email": "fabien@symfony.com"
  2219. },
  2220. {
  2221. "name": "Symfony Community",
  2222. "homepage": "https://symfony.com/contributors"
  2223. }
  2224. ],
  2225. "description": "Symfony Twig Bridge",
  2226. "homepage": "https://symfony.com",
  2227. "time": "2017-12-12T08:41:51+00:00"
  2228. },
  2229. {
  2230. "name": "symfony/twig-bundle",
  2231. "version": "v4.0.2",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/symfony/twig-bundle.git",
  2235. "reference": "77381f8b99b319dc83e609c66942eb3a0a5b066d"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/77381f8b99b319dc83e609c66942eb3a0a5b066d",
  2240. "reference": "77381f8b99b319dc83e609c66942eb3a0a5b066d",
  2241. "shasum": ""
  2242. },
  2243. "require": {
  2244. "php": "^7.1.3",
  2245. "symfony/config": "~3.4|~4.0",
  2246. "symfony/http-foundation": "~3.4|~4.0",
  2247. "symfony/http-kernel": "~3.4|~4.0",
  2248. "symfony/twig-bridge": "~3.4|~4.0",
  2249. "twig/twig": "~1.34|~2.4"
  2250. },
  2251. "conflict": {
  2252. "symfony/dependency-injection": "<3.4",
  2253. "symfony/event-dispatcher": "<3.4"
  2254. },
  2255. "require-dev": {
  2256. "doctrine/annotations": "~1.0",
  2257. "doctrine/cache": "~1.0",
  2258. "symfony/asset": "~3.4|~4.0",
  2259. "symfony/dependency-injection": "~3.4|~4.0",
  2260. "symfony/expression-language": "~3.4|~4.0",
  2261. "symfony/finder": "~3.4|~4.0",
  2262. "symfony/form": "~3.4|~4.0",
  2263. "symfony/framework-bundle": "~3.4|~4.0",
  2264. "symfony/routing": "~3.4|~4.0",
  2265. "symfony/stopwatch": "~3.4|~4.0",
  2266. "symfony/templating": "~3.4|~4.0",
  2267. "symfony/web-link": "~3.4|~4.0",
  2268. "symfony/yaml": "~3.4|~4.0"
  2269. },
  2270. "type": "symfony-bundle",
  2271. "extra": {
  2272. "branch-alias": {
  2273. "dev-master": "4.0-dev"
  2274. }
  2275. },
  2276. "autoload": {
  2277. "psr-4": {
  2278. "Symfony\\Bundle\\TwigBundle\\": ""
  2279. },
  2280. "exclude-from-classmap": [
  2281. "/Tests/"
  2282. ]
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Fabien Potencier",
  2291. "email": "fabien@symfony.com"
  2292. },
  2293. {
  2294. "name": "Symfony Community",
  2295. "homepage": "https://symfony.com/contributors"
  2296. }
  2297. ],
  2298. "description": "Symfony TwigBundle",
  2299. "homepage": "https://symfony.com",
  2300. "time": "2017-12-04T12:31:58+00:00"
  2301. },
  2302. {
  2303. "name": "symfony/web-server-bundle",
  2304. "version": "v4.0.2",
  2305. "source": {
  2306. "type": "git",
  2307. "url": "https://github.com/symfony/web-server-bundle.git",
  2308. "reference": "bd56cde308dc2b9d2aa6506ee740c0c3853aeb2f"
  2309. },
  2310. "dist": {
  2311. "type": "zip",
  2312. "url": "https://api.github.com/repos/symfony/web-server-bundle/zipball/bd56cde308dc2b9d2aa6506ee740c0c3853aeb2f",
  2313. "reference": "bd56cde308dc2b9d2aa6506ee740c0c3853aeb2f",
  2314. "shasum": ""
  2315. },
  2316. "require": {
  2317. "php": "^7.1.3",
  2318. "symfony/config": "~3.4|~4.0",
  2319. "symfony/console": "~3.4|~4.0",
  2320. "symfony/dependency-injection": "~3.4|~4.0",
  2321. "symfony/http-kernel": "~3.4|~4.0",
  2322. "symfony/process": "~3.4|~4.0"
  2323. },
  2324. "suggest": {
  2325. "symfony/expression-language": "For using the filter option of the log server.",
  2326. "symfony/monolog-bridge": "For using the log server."
  2327. },
  2328. "type": "symfony-bundle",
  2329. "extra": {
  2330. "branch-alias": {
  2331. "dev-master": "4.0-dev"
  2332. }
  2333. },
  2334. "autoload": {
  2335. "psr-4": {
  2336. "Symfony\\Bundle\\WebServerBundle\\": ""
  2337. },
  2338. "exclude-from-classmap": [
  2339. "/Tests/"
  2340. ]
  2341. },
  2342. "notification-url": "https://packagist.org/downloads/",
  2343. "license": [
  2344. "MIT"
  2345. ],
  2346. "authors": [
  2347. {
  2348. "name": "Fabien Potencier",
  2349. "email": "fabien@symfony.com"
  2350. },
  2351. {
  2352. "name": "Symfony Community",
  2353. "homepage": "https://symfony.com/contributors"
  2354. }
  2355. ],
  2356. "description": "Symfony WebServerBundle",
  2357. "homepage": "https://symfony.com",
  2358. "time": "2017-12-12T08:41:51+00:00"
  2359. },
  2360. {
  2361. "name": "symfony/yaml",
  2362. "version": "v4.0.2",
  2363. "source": {
  2364. "type": "git",
  2365. "url": "https://github.com/symfony/yaml.git",
  2366. "reference": "a5ee52d155f06ad23b19eb63c31228ff56ad1116"
  2367. },
  2368. "dist": {
  2369. "type": "zip",
  2370. "url": "https://api.github.com/repos/symfony/yaml/zipball/a5ee52d155f06ad23b19eb63c31228ff56ad1116",
  2371. "reference": "a5ee52d155f06ad23b19eb63c31228ff56ad1116",
  2372. "shasum": ""
  2373. },
  2374. "require": {
  2375. "php": "^7.1.3"
  2376. },
  2377. "conflict": {
  2378. "symfony/console": "<3.4"
  2379. },
  2380. "require-dev": {
  2381. "symfony/console": "~3.4|~4.0"
  2382. },
  2383. "suggest": {
  2384. "symfony/console": "For validating YAML files using the lint command"
  2385. },
  2386. "type": "library",
  2387. "extra": {
  2388. "branch-alias": {
  2389. "dev-master": "4.0-dev"
  2390. }
  2391. },
  2392. "autoload": {
  2393. "psr-4": {
  2394. "Symfony\\Component\\Yaml\\": ""
  2395. },
  2396. "exclude-from-classmap": [
  2397. "/Tests/"
  2398. ]
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "Fabien Potencier",
  2407. "email": "fabien@symfony.com"
  2408. },
  2409. {
  2410. "name": "Symfony Community",
  2411. "homepage": "https://symfony.com/contributors"
  2412. }
  2413. ],
  2414. "description": "Symfony Yaml Component",
  2415. "homepage": "https://symfony.com",
  2416. "time": "2017-12-12T08:41:51+00:00"
  2417. },
  2418. {
  2419. "name": "twig/twig",
  2420. "version": "v2.4.4",
  2421. "source": {
  2422. "type": "git",
  2423. "url": "https://github.com/twigphp/Twig.git",
  2424. "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb"
  2425. },
  2426. "dist": {
  2427. "type": "zip",
  2428. "url": "https://api.github.com/repos/twigphp/Twig/zipball/eddb97148ad779f27e670e1e3f19fb323aedafeb",
  2429. "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb",
  2430. "shasum": ""
  2431. },
  2432. "require": {
  2433. "php": "^7.0",
  2434. "symfony/polyfill-mbstring": "~1.0"
  2435. },
  2436. "require-dev": {
  2437. "psr/container": "^1.0",
  2438. "symfony/debug": "~2.7",
  2439. "symfony/phpunit-bridge": "~3.3@dev"
  2440. },
  2441. "type": "library",
  2442. "extra": {
  2443. "branch-alias": {
  2444. "dev-master": "2.4-dev"
  2445. }
  2446. },
  2447. "autoload": {
  2448. "psr-0": {
  2449. "Twig_": "lib/"
  2450. },
  2451. "psr-4": {
  2452. "Twig\\": "src/"
  2453. }
  2454. },
  2455. "notification-url": "https://packagist.org/downloads/",
  2456. "license": [
  2457. "BSD-3-Clause"
  2458. ],
  2459. "authors": [
  2460. {
  2461. "name": "Fabien Potencier",
  2462. "email": "fabien@symfony.com",
  2463. "homepage": "http://fabien.potencier.org",
  2464. "role": "Lead Developer"
  2465. },
  2466. {
  2467. "name": "Armin Ronacher",
  2468. "email": "armin.ronacher@active-4.com",
  2469. "role": "Project Founder"
  2470. },
  2471. {
  2472. "name": "Twig Team",
  2473. "homepage": "http://twig.sensiolabs.org/contributors",
  2474. "role": "Contributors"
  2475. }
  2476. ],
  2477. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2478. "homepage": "http://twig.sensiolabs.org",
  2479. "keywords": [
  2480. "templating"
  2481. ],
  2482. "time": "2017-09-27T18:10:31+00:00"
  2483. }
  2484. ],
  2485. "packages-dev": [
  2486. {
  2487. "name": "symfony/dotenv",
  2488. "version": "v4.0.2",
  2489. "source": {
  2490. "type": "git",
  2491. "url": "https://github.com/symfony/dotenv.git",
  2492. "reference": "ffcaeab01e42b0c40669add2aa8e77f79ddb9389"
  2493. },
  2494. "dist": {
  2495. "type": "zip",
  2496. "url": "https://api.github.com/repos/symfony/dotenv/zipball/ffcaeab01e42b0c40669add2aa8e77f79ddb9389",
  2497. "reference": "ffcaeab01e42b0c40669add2aa8e77f79ddb9389",
  2498. "shasum": ""
  2499. },
  2500. "require": {
  2501. "php": "^7.1.3"
  2502. },
  2503. "require-dev": {
  2504. "symfony/process": "~3.4|~4.0"
  2505. },
  2506. "type": "library",
  2507. "extra": {
  2508. "branch-alias": {
  2509. "dev-master": "4.0-dev"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "psr-4": {
  2514. "Symfony\\Component\\Dotenv\\": ""
  2515. },
  2516. "exclude-from-classmap": [
  2517. "/Tests/"
  2518. ]
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "MIT"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Fabien Potencier",
  2527. "email": "fabien@symfony.com"
  2528. },
  2529. {
  2530. "name": "Symfony Community",
  2531. "homepage": "https://symfony.com/contributors"
  2532. }
  2533. ],
  2534. "description": "Registers environment variables from a .env file",
  2535. "homepage": "https://symfony.com",
  2536. "keywords": [
  2537. "dotenv",
  2538. "env",
  2539. "environment"
  2540. ],
  2541. "time": "2017-12-08T15:46:13+00:00"
  2542. },
  2543. {
  2544. "name": "symfony/polyfill-php72",
  2545. "version": "v1.6.0",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/symfony/polyfill-php72.git",
  2549. "reference": "6de4f4884b97abbbed9f0a84a95ff2ff77254254"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/6de4f4884b97abbbed9f0a84a95ff2ff77254254",
  2554. "reference": "6de4f4884b97abbbed9f0a84a95ff2ff77254254",
  2555. "shasum": ""
  2556. },
  2557. "require": {
  2558. "php": ">=5.3.3"
  2559. },
  2560. "type": "library",
  2561. "extra": {
  2562. "branch-alias": {
  2563. "dev-master": "1.6-dev"
  2564. }
  2565. },
  2566. "autoload": {
  2567. "psr-4": {
  2568. "Symfony\\Polyfill\\Php72\\": ""
  2569. },
  2570. "files": [
  2571. "bootstrap.php"
  2572. ]
  2573. },
  2574. "notification-url": "https://packagist.org/downloads/",
  2575. "license": [
  2576. "MIT"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "Nicolas Grekas",
  2581. "email": "p@tchwork.com"
  2582. },
  2583. {
  2584. "name": "Symfony Community",
  2585. "homepage": "https://symfony.com/contributors"
  2586. }
  2587. ],
  2588. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2589. "homepage": "https://symfony.com",
  2590. "keywords": [
  2591. "compatibility",
  2592. "polyfill",
  2593. "portable",
  2594. "shim"
  2595. ],
  2596. "time": "2017-10-11T12:05:26+00:00"
  2597. },
  2598. {
  2599. "name": "symfony/profiler-pack",
  2600. "version": "v1.0.3",
  2601. "source": {
  2602. "type": "git",
  2603. "url": "https://github.com/symfony/profiler-pack.git",
  2604. "reference": "fa2e2dad522a3bef322196abad28ffce6d0fdbc5"
  2605. },
  2606. "dist": {
  2607. "type": "zip",
  2608. "url": "https://api.github.com/repos/symfony/profiler-pack/zipball/fa2e2dad522a3bef322196abad28ffce6d0fdbc5",
  2609. "reference": "fa2e2dad522a3bef322196abad28ffce6d0fdbc5",
  2610. "shasum": ""
  2611. },
  2612. "require": {
  2613. "php": "^7.0",
  2614. "symfony/stopwatch": "^3.3|^4.0",
  2615. "symfony/twig-bundle": "^3.3|^4.0",
  2616. "symfony/web-profiler-bundle": "^3.3|^4.0"
  2617. },
  2618. "type": "symfony-pack",
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "description": "A pack for the Symfony web profiler",
  2624. "time": "2017-12-12T01:48:24+00:00"
  2625. },
  2626. {
  2627. "name": "symfony/stopwatch",
  2628. "version": "v4.0.2",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/symfony/stopwatch.git",
  2632. "reference": "ac0e49150555c703fef6b696d8eaba1db7a3ca03"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/ac0e49150555c703fef6b696d8eaba1db7a3ca03",
  2637. "reference": "ac0e49150555c703fef6b696d8eaba1db7a3ca03",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "php": "^7.1.3"
  2642. },
  2643. "type": "library",
  2644. "extra": {
  2645. "branch-alias": {
  2646. "dev-master": "4.0-dev"
  2647. }
  2648. },
  2649. "autoload": {
  2650. "psr-4": {
  2651. "Symfony\\Component\\Stopwatch\\": ""
  2652. },
  2653. "exclude-from-classmap": [
  2654. "/Tests/"
  2655. ]
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Fabien Potencier",
  2664. "email": "fabien@symfony.com"
  2665. },
  2666. {
  2667. "name": "Symfony Community",
  2668. "homepage": "https://symfony.com/contributors"
  2669. }
  2670. ],
  2671. "description": "Symfony Stopwatch Component",
  2672. "homepage": "https://symfony.com",
  2673. "time": "2017-11-09T12:45:29+00:00"
  2674. },
  2675. {
  2676. "name": "symfony/var-dumper",
  2677. "version": "v4.0.2",
  2678. "source": {
  2679. "type": "git",
  2680. "url": "https://github.com/symfony/var-dumper.git",
  2681. "reference": "0991597a40f062bab7203efc2cc6cee9b3d44ed6"
  2682. },
  2683. "dist": {
  2684. "type": "zip",
  2685. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0991597a40f062bab7203efc2cc6cee9b3d44ed6",
  2686. "reference": "0991597a40f062bab7203efc2cc6cee9b3d44ed6",
  2687. "shasum": ""
  2688. },
  2689. "require": {
  2690. "php": "^7.1.3",
  2691. "symfony/polyfill-mbstring": "~1.0",
  2692. "symfony/polyfill-php72": "~1.5"
  2693. },
  2694. "conflict": {
  2695. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  2696. },
  2697. "require-dev": {
  2698. "ext-iconv": "*",
  2699. "twig/twig": "~1.34|~2.4"
  2700. },
  2701. "suggest": {
  2702. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2703. "ext-intl": "To show region name in time zone dump"
  2704. },
  2705. "type": "library",
  2706. "extra": {
  2707. "branch-alias": {
  2708. "dev-master": "4.0-dev"
  2709. }
  2710. },
  2711. "autoload": {
  2712. "files": [
  2713. "Resources/functions/dump.php"
  2714. ],
  2715. "psr-4": {
  2716. "Symfony\\Component\\VarDumper\\": ""
  2717. },
  2718. "exclude-from-classmap": [
  2719. "/Tests/"
  2720. ]
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "Nicolas Grekas",
  2729. "email": "p@tchwork.com"
  2730. },
  2731. {
  2732. "name": "Symfony Community",
  2733. "homepage": "https://symfony.com/contributors"
  2734. }
  2735. ],
  2736. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2737. "homepage": "https://symfony.com",
  2738. "keywords": [
  2739. "debug",
  2740. "dump"
  2741. ],
  2742. "time": "2017-12-12T08:41:51+00:00"
  2743. },
  2744. {
  2745. "name": "symfony/web-profiler-bundle",
  2746. "version": "v4.0.2",
  2747. "source": {
  2748. "type": "git",
  2749. "url": "https://github.com/symfony/web-profiler-bundle.git",
  2750. "reference": "81e20cbc7b998918a413fbf84a6f2cc770837e10"
  2751. },
  2752. "dist": {
  2753. "type": "zip",
  2754. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/81e20cbc7b998918a413fbf84a6f2cc770837e10",
  2755. "reference": "81e20cbc7b998918a413fbf84a6f2cc770837e10",
  2756. "shasum": ""
  2757. },
  2758. "require": {
  2759. "php": "^7.1.3",
  2760. "symfony/http-kernel": "~3.4|~4.0",
  2761. "symfony/routing": "~3.4|~4.0",
  2762. "symfony/twig-bridge": "~3.4|~4.0",
  2763. "symfony/var-dumper": "~3.4|~4.0",
  2764. "twig/twig": "~1.34|~2.4"
  2765. },
  2766. "conflict": {
  2767. "symfony/config": "<3.4",
  2768. "symfony/dependency-injection": "<3.4",
  2769. "symfony/event-dispatcher": "<3.4",
  2770. "symfony/var-dumper": "<3.4"
  2771. },
  2772. "require-dev": {
  2773. "symfony/config": "~3.4|~4.0",
  2774. "symfony/console": "~3.4|~4.0",
  2775. "symfony/dependency-injection": "~3.4|~4.0",
  2776. "symfony/stopwatch": "~3.4|~4.0"
  2777. },
  2778. "type": "symfony-bundle",
  2779. "extra": {
  2780. "branch-alias": {
  2781. "dev-master": "4.0-dev"
  2782. }
  2783. },
  2784. "autoload": {
  2785. "psr-4": {
  2786. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  2787. },
  2788. "exclude-from-classmap": [
  2789. "/Tests/"
  2790. ]
  2791. },
  2792. "notification-url": "https://packagist.org/downloads/",
  2793. "license": [
  2794. "MIT"
  2795. ],
  2796. "authors": [
  2797. {
  2798. "name": "Fabien Potencier",
  2799. "email": "fabien@symfony.com"
  2800. },
  2801. {
  2802. "name": "Symfony Community",
  2803. "homepage": "https://symfony.com/contributors"
  2804. }
  2805. ],
  2806. "description": "Symfony WebProfilerBundle",
  2807. "homepage": "https://symfony.com",
  2808. "time": "2017-12-12T08:41:51+00:00"
  2809. }
  2810. ],
  2811. "aliases": [],
  2812. "minimum-stability": "stable",
  2813. "stability-flags": {
  2814. "symfony/lts": 20
  2815. },
  2816. "prefer-stable": false,
  2817. "prefer-lowest": false,
  2818. "platform": {
  2819. "php": "^7.1.3",
  2820. "ext-iconv": "*"
  2821. },
  2822. "platform-dev": []
  2823. }