composer.lock 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "a389504105f5bd6e0893be8406f045da",
  8. "packages": [
  9. {
  10. "name": "composer/composer",
  11. "version": "dev-master",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/composer.git",
  15. "reference": "d5bdf4be2894389a210e67ae27b6aa1c3774f332"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/composer/zipball/d0ff01698de0eb74e45ebe379b6ac8ccd5a6b0db",
  20. "reference": "d5bdf4be2894389a210e67ae27b6aa1c3774f332",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "justinrainbow/json-schema": "~1.4",
  25. "php": ">=5.3.2",
  26. "seld/cli-prompt": "~1.0",
  27. "seld/jsonlint": "~1.0",
  28. "seld/phar-utils": "~1.0",
  29. "symfony/console": "~2.5",
  30. "symfony/finder": "~2.2",
  31. "symfony/process": "~2.1"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "~4.5",
  35. "phpunit/phpunit-mock-objects": "2.3.0"
  36. },
  37. "suggest": {
  38. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  39. "ext-zip": "Enabling the zip extension allows you to unzip archives, and allows gzip compression of all internet traffic"
  40. },
  41. "bin": [
  42. "bin/composer"
  43. ],
  44. "type": "library",
  45. "extra": {
  46. "branch-alias": {
  47. "dev-master": "1.0-dev"
  48. }
  49. },
  50. "autoload": {
  51. "psr-0": {
  52. "Composer": "src/"
  53. }
  54. },
  55. "notification-url": "https://packagist.org/downloads/",
  56. "license": [
  57. "MIT"
  58. ],
  59. "authors": [
  60. {
  61. "name": "Nils Adermann",
  62. "email": "naderman@naderman.de",
  63. "homepage": "http://www.naderman.de"
  64. },
  65. {
  66. "name": "Jordi Boggiano",
  67. "email": "j.boggiano@seld.be",
  68. "homepage": "http://seld.be"
  69. }
  70. ],
  71. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  72. "homepage": "https://getcomposer.org/",
  73. "keywords": [
  74. "autoload",
  75. "dependency",
  76. "package"
  77. ],
  78. "time": "2015-06-19 22:23:48"
  79. },
  80. {
  81. "name": "doctrine/annotations",
  82. "version": "v1.2.4",
  83. "source": {
  84. "type": "git",
  85. "url": "https://github.com/doctrine/annotations.git",
  86. "reference": "b5202eb9e83f8db52e0e58867e0a46e63be8332e"
  87. },
  88. "dist": {
  89. "type": "zip",
  90. "url": "https://api.github.com/repos/doctrine/annotations/zipball/b5202eb9e83f8db52e0e58867e0a46e63be8332e",
  91. "reference": "b5202eb9e83f8db52e0e58867e0a46e63be8332e",
  92. "shasum": ""
  93. },
  94. "require": {
  95. "doctrine/lexer": "1.*",
  96. "php": ">=5.3.2"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "1.*",
  100. "phpunit/phpunit": "4.*"
  101. },
  102. "type": "library",
  103. "extra": {
  104. "branch-alias": {
  105. "dev-master": "1.3.x-dev"
  106. }
  107. },
  108. "autoload": {
  109. "psr-0": {
  110. "Doctrine\\Common\\Annotations\\": "lib/"
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "Roman Borschel",
  120. "email": "roman@code-factory.org"
  121. },
  122. {
  123. "name": "Benjamin Eberlei",
  124. "email": "kontakt@beberlei.de"
  125. },
  126. {
  127. "name": "Guilherme Blanco",
  128. "email": "guilhermeblanco@gmail.com"
  129. },
  130. {
  131. "name": "Jonathan Wage",
  132. "email": "jonwage@gmail.com"
  133. },
  134. {
  135. "name": "Johannes Schmitt",
  136. "email": "schmittjoh@gmail.com"
  137. }
  138. ],
  139. "description": "Docblock Annotations Parser",
  140. "homepage": "http://www.doctrine-project.org",
  141. "keywords": [
  142. "annotations",
  143. "docblock",
  144. "parser"
  145. ],
  146. "time": "2014-12-23 22:40:37"
  147. },
  148. {
  149. "name": "doctrine/cache",
  150. "version": "v1.4.1",
  151. "source": {
  152. "type": "git",
  153. "url": "https://github.com/doctrine/cache.git",
  154. "reference": "c9eadeb743ac6199f7eec423cb9426bc518b7b03"
  155. },
  156. "dist": {
  157. "type": "zip",
  158. "url": "https://api.github.com/repos/doctrine/cache/zipball/c9eadeb743ac6199f7eec423cb9426bc518b7b03",
  159. "reference": "c9eadeb743ac6199f7eec423cb9426bc518b7b03",
  160. "shasum": ""
  161. },
  162. "require": {
  163. "php": ">=5.3.2"
  164. },
  165. "conflict": {
  166. "doctrine/common": ">2.2,<2.4"
  167. },
  168. "require-dev": {
  169. "phpunit/phpunit": ">=3.7",
  170. "predis/predis": "~1.0",
  171. "satooshi/php-coveralls": "~0.6"
  172. },
  173. "type": "library",
  174. "extra": {
  175. "branch-alias": {
  176. "dev-master": "1.5.x-dev"
  177. }
  178. },
  179. "autoload": {
  180. "psr-0": {
  181. "Doctrine\\Common\\Cache\\": "lib/"
  182. }
  183. },
  184. "notification-url": "https://packagist.org/downloads/",
  185. "license": [
  186. "MIT"
  187. ],
  188. "authors": [
  189. {
  190. "name": "Roman Borschel",
  191. "email": "roman@code-factory.org"
  192. },
  193. {
  194. "name": "Benjamin Eberlei",
  195. "email": "kontakt@beberlei.de"
  196. },
  197. {
  198. "name": "Guilherme Blanco",
  199. "email": "guilhermeblanco@gmail.com"
  200. },
  201. {
  202. "name": "Jonathan Wage",
  203. "email": "jonwage@gmail.com"
  204. },
  205. {
  206. "name": "Johannes Schmitt",
  207. "email": "schmittjoh@gmail.com"
  208. }
  209. ],
  210. "description": "Caching library offering an object-oriented API for many cache backends",
  211. "homepage": "http://www.doctrine-project.org",
  212. "keywords": [
  213. "cache",
  214. "caching"
  215. ],
  216. "time": "2015-04-15 00:11:59"
  217. },
  218. {
  219. "name": "doctrine/collections",
  220. "version": "v1.3.0",
  221. "source": {
  222. "type": "git",
  223. "url": "https://github.com/doctrine/collections.git",
  224. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  225. },
  226. "dist": {
  227. "type": "zip",
  228. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  229. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  230. "shasum": ""
  231. },
  232. "require": {
  233. "php": ">=5.3.2"
  234. },
  235. "require-dev": {
  236. "phpunit/phpunit": "~4.0"
  237. },
  238. "type": "library",
  239. "extra": {
  240. "branch-alias": {
  241. "dev-master": "1.2.x-dev"
  242. }
  243. },
  244. "autoload": {
  245. "psr-0": {
  246. "Doctrine\\Common\\Collections\\": "lib/"
  247. }
  248. },
  249. "notification-url": "https://packagist.org/downloads/",
  250. "license": [
  251. "MIT"
  252. ],
  253. "authors": [
  254. {
  255. "name": "Roman Borschel",
  256. "email": "roman@code-factory.org"
  257. },
  258. {
  259. "name": "Benjamin Eberlei",
  260. "email": "kontakt@beberlei.de"
  261. },
  262. {
  263. "name": "Guilherme Blanco",
  264. "email": "guilhermeblanco@gmail.com"
  265. },
  266. {
  267. "name": "Jonathan Wage",
  268. "email": "jonwage@gmail.com"
  269. },
  270. {
  271. "name": "Johannes Schmitt",
  272. "email": "schmittjoh@gmail.com"
  273. }
  274. ],
  275. "description": "Collections Abstraction library",
  276. "homepage": "http://www.doctrine-project.org",
  277. "keywords": [
  278. "array",
  279. "collections",
  280. "iterator"
  281. ],
  282. "time": "2015-04-14 22:21:58"
  283. },
  284. {
  285. "name": "doctrine/common",
  286. "version": "v2.5.0",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/doctrine/common.git",
  290. "reference": "cd8daf2501e10c63dced7b8b9b905844316ae9d3"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/doctrine/common/zipball/cd8daf2501e10c63dced7b8b9b905844316ae9d3",
  295. "reference": "cd8daf2501e10c63dced7b8b9b905844316ae9d3",
  296. "shasum": ""
  297. },
  298. "require": {
  299. "doctrine/annotations": "1.*",
  300. "doctrine/cache": "1.*",
  301. "doctrine/collections": "1.*",
  302. "doctrine/inflector": "1.*",
  303. "doctrine/lexer": "1.*",
  304. "php": ">=5.3.2"
  305. },
  306. "require-dev": {
  307. "phpunit/phpunit": "~3.7"
  308. },
  309. "type": "library",
  310. "extra": {
  311. "branch-alias": {
  312. "dev-master": "2.6.x-dev"
  313. }
  314. },
  315. "autoload": {
  316. "psr-0": {
  317. "Doctrine\\Common\\": "lib/"
  318. }
  319. },
  320. "notification-url": "https://packagist.org/downloads/",
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "Roman Borschel",
  327. "email": "roman@code-factory.org"
  328. },
  329. {
  330. "name": "Benjamin Eberlei",
  331. "email": "kontakt@beberlei.de"
  332. },
  333. {
  334. "name": "Guilherme Blanco",
  335. "email": "guilhermeblanco@gmail.com"
  336. },
  337. {
  338. "name": "Jonathan Wage",
  339. "email": "jonwage@gmail.com"
  340. },
  341. {
  342. "name": "Johannes Schmitt",
  343. "email": "schmittjoh@gmail.com"
  344. }
  345. ],
  346. "description": "Common Library for Doctrine projects",
  347. "homepage": "http://www.doctrine-project.org",
  348. "keywords": [
  349. "annotations",
  350. "collections",
  351. "eventmanager",
  352. "persistence",
  353. "spl"
  354. ],
  355. "time": "2015-04-02 19:55:44"
  356. },
  357. {
  358. "name": "doctrine/dbal",
  359. "version": "v2.4.4",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/doctrine/dbal.git",
  363. "reference": "a370e5b95e509a7809d11f3d280acfc9310d464b"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/doctrine/dbal/zipball/a370e5b95e509a7809d11f3d280acfc9310d464b",
  368. "reference": "a370e5b95e509a7809d11f3d280acfc9310d464b",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "doctrine/common": "~2.4",
  373. "php": ">=5.3.2"
  374. },
  375. "require-dev": {
  376. "phpunit/phpunit": "3.7.*",
  377. "symfony/console": "~2.0"
  378. },
  379. "suggest": {
  380. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  381. },
  382. "type": "library",
  383. "autoload": {
  384. "psr-0": {
  385. "Doctrine\\DBAL\\": "lib/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Roman Borschel",
  395. "email": "roman@code-factory.org"
  396. },
  397. {
  398. "name": "Benjamin Eberlei",
  399. "email": "kontakt@beberlei.de"
  400. },
  401. {
  402. "name": "Guilherme Blanco",
  403. "email": "guilhermeblanco@gmail.com"
  404. },
  405. {
  406. "name": "Jonathan Wage",
  407. "email": "jonwage@gmail.com"
  408. }
  409. ],
  410. "description": "Database Abstraction Layer",
  411. "homepage": "http://www.doctrine-project.org",
  412. "keywords": [
  413. "database",
  414. "dbal",
  415. "persistence",
  416. "queryobject"
  417. ],
  418. "time": "2015-01-12 21:57:01"
  419. },
  420. {
  421. "name": "doctrine/doctrine-bundle",
  422. "version": "v1.2.0",
  423. "target-dir": "Doctrine/Bundle/DoctrineBundle",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/doctrine/DoctrineBundle.git",
  427. "reference": "765b0d87fcc3e839c74817b7211258cbef3a4fb9"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/765b0d87fcc3e839c74817b7211258cbef3a4fb9",
  432. "reference": "765b0d87fcc3e839c74817b7211258cbef3a4fb9",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "doctrine/dbal": ">=2.2,<2.5-dev",
  437. "jdorn/sql-formatter": "~1.1",
  438. "php": ">=5.3.2",
  439. "symfony/doctrine-bridge": "~2.2",
  440. "symfony/framework-bundle": "~2.2"
  441. },
  442. "require-dev": {
  443. "doctrine/orm": ">=2.2,<2.5-dev",
  444. "symfony/validator": "~2.2",
  445. "symfony/yaml": "~2.2"
  446. },
  447. "suggest": {
  448. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  449. "symfony/web-profiler-bundle": "to use the data collector"
  450. },
  451. "type": "symfony-bundle",
  452. "extra": {
  453. "branch-alias": {
  454. "dev-master": "1.2.x-dev"
  455. }
  456. },
  457. "autoload": {
  458. "psr-0": {
  459. "Doctrine\\Bundle\\DoctrineBundle": ""
  460. }
  461. },
  462. "notification-url": "https://packagist.org/downloads/",
  463. "license": [
  464. "MIT"
  465. ],
  466. "authors": [
  467. {
  468. "name": "Fabien Potencier",
  469. "email": "fabien@symfony.com"
  470. },
  471. {
  472. "name": "Symfony Community",
  473. "homepage": "http://symfony.com/contributors"
  474. },
  475. {
  476. "name": "Benjamin Eberlei",
  477. "email": "kontakt@beberlei.de"
  478. }
  479. ],
  480. "description": "Symfony DoctrineBundle",
  481. "homepage": "http://www.doctrine-project.org",
  482. "keywords": [
  483. "database",
  484. "dbal",
  485. "orm",
  486. "persistence"
  487. ],
  488. "time": "2013-03-25 20:13:59"
  489. },
  490. {
  491. "name": "doctrine/inflector",
  492. "version": "v1.0.1",
  493. "source": {
  494. "type": "git",
  495. "url": "https://github.com/doctrine/inflector.git",
  496. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604"
  497. },
  498. "dist": {
  499. "type": "zip",
  500. "url": "https://api.github.com/repos/doctrine/inflector/zipball/0bcb2e79d8571787f18b7eb036ed3d004908e604",
  501. "reference": "0bcb2e79d8571787f18b7eb036ed3d004908e604",
  502. "shasum": ""
  503. },
  504. "require": {
  505. "php": ">=5.3.2"
  506. },
  507. "require-dev": {
  508. "phpunit/phpunit": "4.*"
  509. },
  510. "type": "library",
  511. "extra": {
  512. "branch-alias": {
  513. "dev-master": "1.0.x-dev"
  514. }
  515. },
  516. "autoload": {
  517. "psr-0": {
  518. "Doctrine\\Common\\Inflector\\": "lib/"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "MIT"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Roman Borschel",
  528. "email": "roman@code-factory.org"
  529. },
  530. {
  531. "name": "Benjamin Eberlei",
  532. "email": "kontakt@beberlei.de"
  533. },
  534. {
  535. "name": "Guilherme Blanco",
  536. "email": "guilhermeblanco@gmail.com"
  537. },
  538. {
  539. "name": "Jonathan Wage",
  540. "email": "jonwage@gmail.com"
  541. },
  542. {
  543. "name": "Johannes Schmitt",
  544. "email": "schmittjoh@gmail.com"
  545. }
  546. ],
  547. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  548. "homepage": "http://www.doctrine-project.org",
  549. "keywords": [
  550. "inflection",
  551. "pluralize",
  552. "singularize",
  553. "string"
  554. ],
  555. "time": "2014-12-20 21:24:13"
  556. },
  557. {
  558. "name": "doctrine/lexer",
  559. "version": "v1.0.1",
  560. "source": {
  561. "type": "git",
  562. "url": "https://github.com/doctrine/lexer.git",
  563. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  564. },
  565. "dist": {
  566. "type": "zip",
  567. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  568. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  569. "shasum": ""
  570. },
  571. "require": {
  572. "php": ">=5.3.2"
  573. },
  574. "type": "library",
  575. "extra": {
  576. "branch-alias": {
  577. "dev-master": "1.0.x-dev"
  578. }
  579. },
  580. "autoload": {
  581. "psr-0": {
  582. "Doctrine\\Common\\Lexer\\": "lib/"
  583. }
  584. },
  585. "notification-url": "https://packagist.org/downloads/",
  586. "license": [
  587. "MIT"
  588. ],
  589. "authors": [
  590. {
  591. "name": "Roman Borschel",
  592. "email": "roman@code-factory.org"
  593. },
  594. {
  595. "name": "Guilherme Blanco",
  596. "email": "guilhermeblanco@gmail.com"
  597. },
  598. {
  599. "name": "Johannes Schmitt",
  600. "email": "schmittjoh@gmail.com"
  601. }
  602. ],
  603. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  604. "homepage": "http://www.doctrine-project.org",
  605. "keywords": [
  606. "lexer",
  607. "parser"
  608. ],
  609. "time": "2014-09-09 13:34:57"
  610. },
  611. {
  612. "name": "doctrine/orm",
  613. "version": "v2.4.7",
  614. "source": {
  615. "type": "git",
  616. "url": "https://github.com/doctrine/doctrine2.git",
  617. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68"
  618. },
  619. "dist": {
  620. "type": "zip",
  621. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  622. "reference": "2bc4ff3cab2ae297bcd05f2e619d42e6a7ca9e68",
  623. "shasum": ""
  624. },
  625. "require": {
  626. "doctrine/collections": "~1.1",
  627. "doctrine/dbal": "~2.4",
  628. "ext-pdo": "*",
  629. "php": ">=5.3.2",
  630. "symfony/console": "~2.0"
  631. },
  632. "require-dev": {
  633. "satooshi/php-coveralls": "dev-master",
  634. "symfony/yaml": "~2.1"
  635. },
  636. "suggest": {
  637. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  638. },
  639. "bin": [
  640. "bin/doctrine",
  641. "bin/doctrine.php"
  642. ],
  643. "type": "library",
  644. "extra": {
  645. "branch-alias": {
  646. "dev-master": "2.4.x-dev"
  647. }
  648. },
  649. "autoload": {
  650. "psr-0": {
  651. "Doctrine\\ORM\\": "lib/"
  652. }
  653. },
  654. "notification-url": "https://packagist.org/downloads/",
  655. "license": [
  656. "MIT"
  657. ],
  658. "authors": [
  659. {
  660. "name": "Roman Borschel",
  661. "email": "roman@code-factory.org"
  662. },
  663. {
  664. "name": "Benjamin Eberlei",
  665. "email": "kontakt@beberlei.de"
  666. },
  667. {
  668. "name": "Guilherme Blanco",
  669. "email": "guilhermeblanco@gmail.com"
  670. },
  671. {
  672. "name": "Jonathan Wage",
  673. "email": "jonwage@gmail.com"
  674. }
  675. ],
  676. "description": "Object-Relational-Mapper for PHP",
  677. "homepage": "http://www.doctrine-project.org",
  678. "keywords": [
  679. "database",
  680. "orm"
  681. ],
  682. "time": "2014-12-16 13:45:01"
  683. },
  684. {
  685. "name": "ezyang/htmlpurifier",
  686. "version": "v4.6.0",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/ezyang/htmlpurifier.git",
  690. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/6f389f0f25b90d0b495308efcfa073981177f0fd",
  695. "reference": "6f389f0f25b90d0b495308efcfa073981177f0fd",
  696. "shasum": ""
  697. },
  698. "require": {
  699. "php": ">=5.2"
  700. },
  701. "type": "library",
  702. "autoload": {
  703. "psr-0": {
  704. "HTMLPurifier": "library/"
  705. },
  706. "files": [
  707. "library/HTMLPurifier.composer.php"
  708. ]
  709. },
  710. "notification-url": "https://packagist.org/downloads/",
  711. "license": [
  712. "LGPL"
  713. ],
  714. "authors": [
  715. {
  716. "name": "Edward Z. Yang",
  717. "email": "admin@htmlpurifier.org",
  718. "homepage": "http://ezyang.com"
  719. }
  720. ],
  721. "description": "Standards compliant HTML filter written in PHP",
  722. "homepage": "http://htmlpurifier.org/",
  723. "keywords": [
  724. "html"
  725. ],
  726. "time": "2013-11-30 08:25:19"
  727. },
  728. {
  729. "name": "friendsofsymfony/user-bundle",
  730. "version": "v1.3.5",
  731. "target-dir": "FOS/UserBundle",
  732. "source": {
  733. "type": "git",
  734. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  735. "reference": "d66890ad3489e18be153502c5ccc3f2bf5cce442"
  736. },
  737. "dist": {
  738. "type": "zip",
  739. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/d66890ad3489e18be153502c5ccc3f2bf5cce442",
  740. "reference": "d66890ad3489e18be153502c5ccc3f2bf5cce442",
  741. "shasum": ""
  742. },
  743. "require": {
  744. "php": ">=5.3.2",
  745. "symfony/framework-bundle": "~2.1",
  746. "symfony/security-bundle": "~2.1"
  747. },
  748. "require-dev": {
  749. "doctrine/doctrine-bundle": "*",
  750. "swiftmailer/swiftmailer": "~4.3",
  751. "symfony/validator": "~2.1",
  752. "symfony/yaml": "~2.1",
  753. "twig/twig": "~1.5",
  754. "willdurand/propel-typehintable-behavior": "dev-master"
  755. },
  756. "suggest": {
  757. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  758. },
  759. "type": "symfony-bundle",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-master": "2.0.x-dev"
  763. }
  764. },
  765. "autoload": {
  766. "psr-0": {
  767. "FOS\\UserBundle": ""
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "Christophe Coevoet",
  777. "email": "stof@notk.org"
  778. },
  779. {
  780. "name": "FriendsOfSymfony Community",
  781. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  782. },
  783. {
  784. "name": "Thibault Duplessis",
  785. "email": "thibault.duplessis@gmail.com"
  786. }
  787. ],
  788. "description": "Symfony FOSUserBundle",
  789. "homepage": "http://friendsofsymfony.github.com",
  790. "keywords": [
  791. "User management"
  792. ],
  793. "time": "2014-09-04 12:28:43"
  794. },
  795. {
  796. "name": "hwi/oauth-bundle",
  797. "version": "dev-master",
  798. "target-dir": "HWI/Bundle/OAuthBundle",
  799. "source": {
  800. "type": "git",
  801. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  802. "reference": "2e12c7ab9cf83ce0d3e9d6a98315bbf21ab23ab3"
  803. },
  804. "dist": {
  805. "type": "zip",
  806. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/d7caff8257d7b5807f2f56d03d7bddca6484265b",
  807. "reference": "2e12c7ab9cf83ce0d3e9d6a98315bbf21ab23ab3",
  808. "shasum": ""
  809. },
  810. "require": {
  811. "kriswallsmith/buzz": "~0.7",
  812. "php": ">=5.3.3",
  813. "symfony/framework-bundle": "~2.3",
  814. "symfony/options-resolver": "~2.1",
  815. "symfony/security-bundle": "~2.1",
  816. "symfony/yaml": "~2.3"
  817. },
  818. "require-dev": {
  819. "doctrine/orm": "~2.3",
  820. "symfony/property-access": "~2.5",
  821. "symfony/twig-bundle": "~2.1",
  822. "symfony/validator": "~2.1"
  823. },
  824. "suggest": {
  825. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  826. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  827. "symfony/property-access": "to use FOSUB integration with this bundle",
  828. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  829. },
  830. "type": "symfony-bundle",
  831. "extra": {
  832. "branch-alias": {
  833. "dev-master": "0.4-dev"
  834. }
  835. },
  836. "autoload": {
  837. "psr-0": {
  838. "HWI\\Bundle\\OAuthBundle\\": ""
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Contributors",
  848. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  849. },
  850. {
  851. "name": "Joseph Bielawski",
  852. "email": "stloyd@gmail.com"
  853. },
  854. {
  855. "name": "Alexander",
  856. "email": "iam.asm89@gmail.com"
  857. },
  858. {
  859. "name": "Geoffrey Bachelet",
  860. "email": "geoffrey.bachelet@gmail.com"
  861. }
  862. ],
  863. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  864. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  865. "keywords": [
  866. "37signals",
  867. "Authentication",
  868. "amazon",
  869. "bitbucket",
  870. "bitly",
  871. "box",
  872. "dailymotion",
  873. "deviantart",
  874. "disqus",
  875. "dropbox",
  876. "eventbrite",
  877. "facebook",
  878. "firewall",
  879. "flickr",
  880. "foursquare",
  881. "github",
  882. "google",
  883. "hubic",
  884. "instagram",
  885. "jira",
  886. "linkedin",
  887. "mail.ru",
  888. "oauth",
  889. "oauth1",
  890. "oauth2",
  891. "odnoklassniki",
  892. "qq",
  893. "salesforce",
  894. "security",
  895. "sensio connect",
  896. "sina weibo",
  897. "stack exchange",
  898. "stereomood",
  899. "trello",
  900. "twitch",
  901. "twitter",
  902. "vkontakte",
  903. "windows live",
  904. "wordpress",
  905. "yahoo",
  906. "yandex"
  907. ],
  908. "time": "2015-05-04 07:05:05"
  909. },
  910. {
  911. "name": "jdorn/sql-formatter",
  912. "version": "v1.2.17",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/jdorn/sql-formatter.git",
  916. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  921. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": ">=5.2.4"
  926. },
  927. "require-dev": {
  928. "phpunit/phpunit": "3.7.*"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "1.3.x-dev"
  934. }
  935. },
  936. "autoload": {
  937. "classmap": [
  938. "lib"
  939. ]
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Jeremy Dorn",
  948. "email": "jeremy@jeremydorn.com",
  949. "homepage": "http://jeremydorn.com/"
  950. }
  951. ],
  952. "description": "a PHP SQL highlighting library",
  953. "homepage": "https://github.com/jdorn/sql-formatter/",
  954. "keywords": [
  955. "highlight",
  956. "sql"
  957. ],
  958. "time": "2014-01-12 16:20:24"
  959. },
  960. {
  961. "name": "jms/aop-bundle",
  962. "version": "1.0.1",
  963. "target-dir": "JMS/AopBundle",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/schmittjoh/JMSAopBundle.git",
  967. "reference": "93f41ab85ed409430bc3bab2e0b7c7677f152aa8"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/93f41ab85ed409430bc3bab2e0b7c7677f152aa8",
  972. "reference": "93f41ab85ed409430bc3bab2e0b7c7677f152aa8",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "jms/cg": "1.*",
  977. "symfony/framework-bundle": "2.*"
  978. },
  979. "type": "symfony-bundle",
  980. "extra": {
  981. "branch-alias": {
  982. "dev-master": "1.1.x-dev"
  983. }
  984. },
  985. "autoload": {
  986. "psr-0": {
  987. "JMS\\AopBundle": ""
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "Apache"
  993. ],
  994. "authors": [
  995. {
  996. "name": "Johannes M. Schmitt",
  997. "email": "schmittjoh@gmail.com",
  998. "homepage": "http://jmsyst.com",
  999. "role": "Developer of wrapped JMSSerializerBundle"
  1000. }
  1001. ],
  1002. "description": "Adds AOP capabilities to Symfony2",
  1003. "keywords": [
  1004. "annotations",
  1005. "aop"
  1006. ],
  1007. "time": "2013-07-29 09:34:26"
  1008. },
  1009. {
  1010. "name": "jms/cg",
  1011. "version": "1.0.0",
  1012. "source": {
  1013. "type": "git",
  1014. "url": "https://github.com/schmittjoh/cg-library.git",
  1015. "reference": "ce8ef43dd6bfe6ce54e5e9844ab71be2343bf2fc"
  1016. },
  1017. "dist": {
  1018. "type": "zip",
  1019. "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/ce8ef43dd6bfe6ce54e5e9844ab71be2343bf2fc",
  1020. "reference": "ce8ef43dd6bfe6ce54e5e9844ab71be2343bf2fc",
  1021. "shasum": ""
  1022. },
  1023. "require": {
  1024. "php": ">=5.3.0"
  1025. },
  1026. "type": "library",
  1027. "autoload": {
  1028. "psr-0": {
  1029. "CG\\": "src/"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "Apache"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Johannes M. Schmitt",
  1039. "email": "schmittjoh@gmail.com",
  1040. "homepage": "http://jmsyst.com",
  1041. "role": "Developer of wrapped JMSSerializerBundle"
  1042. }
  1043. ],
  1044. "description": "Toolset for generating PHP code",
  1045. "keywords": [
  1046. "code generation"
  1047. ],
  1048. "time": "2012-01-02 20:40:52"
  1049. },
  1050. {
  1051. "name": "jms/di-extra-bundle",
  1052. "version": "1.4.0",
  1053. "target-dir": "JMS/DiExtraBundle",
  1054. "source": {
  1055. "type": "git",
  1056. "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1057. "reference": "7fffdb6c96fb922a131af06d773e1e6c5301d070"
  1058. },
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/7fffdb6c96fb922a131af06d773e1e6c5301d070",
  1062. "reference": "7fffdb6c96fb922a131af06d773e1e6c5301d070",
  1063. "shasum": ""
  1064. },
  1065. "require": {
  1066. "jms/aop-bundle": ">=1.0.0,<1.2-dev",
  1067. "jms/metadata": "1.*",
  1068. "symfony/finder": "~2.1",
  1069. "symfony/framework-bundle": "~2.1",
  1070. "symfony/process": "~2.1"
  1071. },
  1072. "require-dev": {
  1073. "doctrine/doctrine-bundle": "*",
  1074. "doctrine/orm": "*",
  1075. "jms/security-extra-bundle": "1.*",
  1076. "phpcollection/phpcollection": ">=0.1,<0.3-dev",
  1077. "sensio/framework-extra-bundle": "*",
  1078. "symfony/browser-kit": "*",
  1079. "symfony/class-loader": "*",
  1080. "symfony/form": "*",
  1081. "symfony/security-bundle": "*",
  1082. "symfony/twig-bundle": "*",
  1083. "symfony/validator": "*",
  1084. "symfony/yaml": "*"
  1085. },
  1086. "type": "symfony-bundle",
  1087. "extra": {
  1088. "branch-alias": {
  1089. "dev-master": "1.3-dev"
  1090. }
  1091. },
  1092. "autoload": {
  1093. "psr-0": {
  1094. "JMS\\DiExtraBundle": ""
  1095. }
  1096. },
  1097. "notification-url": "https://packagist.org/downloads/",
  1098. "license": [
  1099. "Apache"
  1100. ],
  1101. "authors": [
  1102. {
  1103. "name": "Johannes M. Schmitt",
  1104. "email": "schmittjoh@gmail.com",
  1105. "homepage": "http://jmsyst.com",
  1106. "role": "Developer of wrapped JMSSerializerBundle"
  1107. }
  1108. ],
  1109. "description": "Allows to configure dependency injection using annotations",
  1110. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1111. "keywords": [
  1112. "annotations",
  1113. "dependency injection"
  1114. ],
  1115. "time": "2013-06-08 13:13:40"
  1116. },
  1117. {
  1118. "name": "jms/metadata",
  1119. "version": "1.5.1",
  1120. "source": {
  1121. "type": "git",
  1122. "url": "https://github.com/schmittjoh/metadata.git",
  1123. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353"
  1124. },
  1125. "dist": {
  1126. "type": "zip",
  1127. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/22b72455559a25777cfd28c4ffda81ff7639f353",
  1128. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353",
  1129. "shasum": ""
  1130. },
  1131. "require": {
  1132. "php": ">=5.3.0"
  1133. },
  1134. "require-dev": {
  1135. "doctrine/cache": "~1.0"
  1136. },
  1137. "type": "library",
  1138. "extra": {
  1139. "branch-alias": {
  1140. "dev-master": "1.5.x-dev"
  1141. }
  1142. },
  1143. "autoload": {
  1144. "psr-0": {
  1145. "Metadata\\": "src/"
  1146. }
  1147. },
  1148. "notification-url": "https://packagist.org/downloads/",
  1149. "license": [
  1150. "Apache"
  1151. ],
  1152. "authors": [
  1153. {
  1154. "name": "Johannes Schmitt",
  1155. "email": "schmittjoh@gmail.com",
  1156. "homepage": "https://github.com/schmittjoh",
  1157. "role": "Developer of wrapped JMSSerializerBundle"
  1158. }
  1159. ],
  1160. "description": "Class/method/property metadata management in PHP",
  1161. "keywords": [
  1162. "annotations",
  1163. "metadata",
  1164. "xml",
  1165. "yaml"
  1166. ],
  1167. "time": "2014-07-12 07:13:19"
  1168. },
  1169. {
  1170. "name": "jms/parser-lib",
  1171. "version": "1.0.0",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/schmittjoh/parser-lib.git",
  1175. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1180. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1185. },
  1186. "type": "library",
  1187. "extra": {
  1188. "branch-alias": {
  1189. "dev-master": "1.0-dev"
  1190. }
  1191. },
  1192. "autoload": {
  1193. "psr-0": {
  1194. "JMS\\": "src/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "Apache2"
  1200. ],
  1201. "description": "A library for easily creating recursive-descent parsers.",
  1202. "time": "2012-11-18 18:08:43"
  1203. },
  1204. {
  1205. "name": "jms/security-extra-bundle",
  1206. "version": "1.5.1",
  1207. "target-dir": "JMS/SecurityExtraBundle",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1211. "reference": "f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc",
  1216. "reference": "f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc",
  1217. "shasum": ""
  1218. },
  1219. "require": {
  1220. "jms/aop-bundle": "~1.0",
  1221. "jms/di-extra-bundle": "~1.3",
  1222. "jms/metadata": "~1.0",
  1223. "jms/parser-lib": "~1.0",
  1224. "symfony/framework-bundle": "~2.1",
  1225. "symfony/security-bundle": "*"
  1226. },
  1227. "require-dev": {
  1228. "doctrine/doctrine-bundle": "*",
  1229. "doctrine/orm": "*",
  1230. "sensio/framework-extra-bundle": "*",
  1231. "symfony/browser-kit": "*",
  1232. "symfony/class-loader": "*",
  1233. "symfony/css-selector": "*",
  1234. "symfony/finder": "*",
  1235. "symfony/form": "*",
  1236. "symfony/process": "*",
  1237. "symfony/twig-bundle": "*",
  1238. "symfony/validator": "*",
  1239. "symfony/yaml": "*"
  1240. },
  1241. "type": "symfony-bundle",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-master": "1.4-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-0": {
  1249. "JMS\\SecurityExtraBundle": ""
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "Apache2"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Johannes M. Schmitt",
  1259. "email": "schmittjoh@gmail.com",
  1260. "homepage": "http://jmsyst.com",
  1261. "role": "Developer of wrapped JMSSerializerBundle"
  1262. }
  1263. ],
  1264. "description": "Enhances the Symfony2 Security Component by adding several new features",
  1265. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1266. "keywords": [
  1267. "annotations",
  1268. "authorization",
  1269. "expression",
  1270. "secure",
  1271. "security"
  1272. ],
  1273. "time": "2013-06-09 10:29:54"
  1274. },
  1275. {
  1276. "name": "justinrainbow/json-schema",
  1277. "version": "1.4.1",
  1278. "source": {
  1279. "type": "git",
  1280. "url": "https://github.com/justinrainbow/json-schema.git",
  1281. "reference": "2465fe486c864e30badaa4d005ebdf89dbc503f3"
  1282. },
  1283. "dist": {
  1284. "type": "zip",
  1285. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2465fe486c864e30badaa4d005ebdf89dbc503f3",
  1286. "reference": "2465fe486c864e30badaa4d005ebdf89dbc503f3",
  1287. "shasum": ""
  1288. },
  1289. "require": {
  1290. "php": ">=5.3.0"
  1291. },
  1292. "require-dev": {
  1293. "json-schema/json-schema-test-suite": "1.1.0",
  1294. "phpdocumentor/phpdocumentor": "~2",
  1295. "phpunit/phpunit": "~3.7"
  1296. },
  1297. "bin": [
  1298. "bin/validate-json"
  1299. ],
  1300. "type": "library",
  1301. "extra": {
  1302. "branch-alias": {
  1303. "dev-master": "1.4.x-dev"
  1304. }
  1305. },
  1306. "autoload": {
  1307. "psr-0": {
  1308. "JsonSchema": "src/"
  1309. }
  1310. },
  1311. "notification-url": "https://packagist.org/downloads/",
  1312. "license": [
  1313. "BSD-3-Clause"
  1314. ],
  1315. "authors": [
  1316. {
  1317. "name": "Bruno Prieto Reis",
  1318. "email": "bruno.p.reis@gmail.com"
  1319. },
  1320. {
  1321. "name": "Justin Rainbow",
  1322. "email": "justin.rainbow@gmail.com"
  1323. },
  1324. {
  1325. "name": "Igor Wiedler",
  1326. "email": "igor@wiedler.ch"
  1327. },
  1328. {
  1329. "name": "Robert Schönthal",
  1330. "email": "seroscho@googlemail.com"
  1331. }
  1332. ],
  1333. "description": "A library to validate a json schema.",
  1334. "homepage": "https://github.com/justinrainbow/json-schema",
  1335. "keywords": [
  1336. "json",
  1337. "schema"
  1338. ],
  1339. "time": "2015-03-27 16:41:39"
  1340. },
  1341. {
  1342. "name": "knplabs/knp-menu",
  1343. "version": "v2.0.1",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1347. "reference": "5758d0026d7ed00c8dd4727e413918cf2dc74c1a"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/5758d0026d7ed00c8dd4727e413918cf2dc74c1a",
  1352. "reference": "5758d0026d7ed00c8dd4727e413918cf2dc74c1a",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "php": ">=5.3.0"
  1357. },
  1358. "require-dev": {
  1359. "pimple/pimple": "1.0.*",
  1360. "silex/silex": "1.0.*",
  1361. "twig/twig": ">=1.2,<2.0-dev"
  1362. },
  1363. "suggest": {
  1364. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1365. "silex/silex": "for the integration with your silex application",
  1366. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1367. },
  1368. "type": "library",
  1369. "extra": {
  1370. "branch-alias": {
  1371. "dev-master": "2.0.x-dev"
  1372. }
  1373. },
  1374. "autoload": {
  1375. "psr-0": {
  1376. "Knp\\Menu\\": "src/"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "MIT"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Christophe Coevoet",
  1386. "email": "stof@notk.org"
  1387. },
  1388. {
  1389. "name": "KnpLabs",
  1390. "homepage": "http://knplabs.com"
  1391. },
  1392. {
  1393. "name": "Symfony Community",
  1394. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1395. }
  1396. ],
  1397. "description": "An object oriented menu library",
  1398. "homepage": "http://knplabs.com",
  1399. "keywords": [
  1400. "menu",
  1401. "tree"
  1402. ],
  1403. "time": "2014-08-01 09:50:16"
  1404. },
  1405. {
  1406. "name": "knplabs/knp-menu-bundle",
  1407. "version": "v2.0.0",
  1408. "target-dir": "Knp/Bundle/MenuBundle",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1412. "reference": "bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088",
  1417. "reference": "bdfc95da5ff7e4e67f948aaa9ea5da835a3a9088",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "knplabs/knp-menu": "~2.0",
  1422. "symfony/framework-bundle": "~2.0"
  1423. },
  1424. "type": "symfony-bundle",
  1425. "extra": {
  1426. "branch-alias": {
  1427. "dev-master": "2.0.x-dev"
  1428. }
  1429. },
  1430. "autoload": {
  1431. "psr-0": {
  1432. "Knp\\Bundle\\MenuBundle": ""
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "Christophe Coevoet",
  1442. "email": "stof@notk.org"
  1443. },
  1444. {
  1445. "name": "KnpLabs",
  1446. "homepage": "http://knplabs.com"
  1447. },
  1448. {
  1449. "name": "Symfony Community",
  1450. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1451. }
  1452. ],
  1453. "description": "This bundle provides an integration of the KnpMenu library",
  1454. "keywords": [
  1455. "menu"
  1456. ],
  1457. "time": "2014-08-01 09:57:23"
  1458. },
  1459. {
  1460. "name": "kriswallsmith/buzz",
  1461. "version": "v0.13",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/kriswallsmith/Buzz.git",
  1465. "reference": "487760b05d6269a4c2c374364325326cfa65b12c"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/487760b05d6269a4c2c374364325326cfa65b12c",
  1470. "reference": "487760b05d6269a4c2c374364325326cfa65b12c",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "php": ">=5.3.0"
  1475. },
  1476. "require-dev": {
  1477. "phpunit/phpunit": "3.7.*"
  1478. },
  1479. "suggest": {
  1480. "ext-curl": "*"
  1481. },
  1482. "type": "library",
  1483. "autoload": {
  1484. "psr-0": {
  1485. "Buzz": "lib/"
  1486. }
  1487. },
  1488. "notification-url": "https://packagist.org/downloads/",
  1489. "license": [
  1490. "MIT"
  1491. ],
  1492. "authors": [
  1493. {
  1494. "name": "Kris Wallsmith",
  1495. "email": "kris.wallsmith@gmail.com",
  1496. "homepage": "http://kriswallsmith.net/"
  1497. }
  1498. ],
  1499. "description": "Lightweight HTTP client",
  1500. "homepage": "https://github.com/kriswallsmith/Buzz",
  1501. "keywords": [
  1502. "curl",
  1503. "http client"
  1504. ],
  1505. "time": "2014-09-15 12:42:36"
  1506. },
  1507. {
  1508. "name": "monolog/monolog",
  1509. "version": "1.13.1",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/Seldaek/monolog.git",
  1513. "reference": "c31a2c4e8db5da8b46c74cf275d7f109c0f249ac"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c31a2c4e8db5da8b46c74cf275d7f109c0f249ac",
  1518. "reference": "c31a2c4e8db5da8b46c74cf275d7f109c0f249ac",
  1519. "shasum": ""
  1520. },
  1521. "require": {
  1522. "php": ">=5.3.0",
  1523. "psr/log": "~1.0"
  1524. },
  1525. "provide": {
  1526. "psr/log-implementation": "1.0.0"
  1527. },
  1528. "require-dev": {
  1529. "aws/aws-sdk-php": "~2.4, >2.4.8",
  1530. "doctrine/couchdb": "~1.0@dev",
  1531. "graylog2/gelf-php": "~1.0",
  1532. "phpunit/phpunit": "~4.0",
  1533. "raven/raven": "~0.5",
  1534. "ruflin/elastica": "0.90.*",
  1535. "swiftmailer/swiftmailer": "~5.3",
  1536. "videlalvaro/php-amqplib": "~2.4"
  1537. },
  1538. "suggest": {
  1539. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1540. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1541. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1542. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1543. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1544. "raven/raven": "Allow sending log messages to a Sentry server",
  1545. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1546. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1547. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1548. },
  1549. "type": "library",
  1550. "extra": {
  1551. "branch-alias": {
  1552. "dev-master": "1.13.x-dev"
  1553. }
  1554. },
  1555. "autoload": {
  1556. "psr-4": {
  1557. "Monolog\\": "src/Monolog"
  1558. }
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "MIT"
  1563. ],
  1564. "authors": [
  1565. {
  1566. "name": "Jordi Boggiano",
  1567. "email": "j.boggiano@seld.be",
  1568. "homepage": "http://seld.be"
  1569. }
  1570. ],
  1571. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1572. "homepage": "http://github.com/Seldaek/monolog",
  1573. "keywords": [
  1574. "log",
  1575. "logging",
  1576. "psr-3"
  1577. ],
  1578. "time": "2015-03-09 09:58:04"
  1579. },
  1580. {
  1581. "name": "nelmio/security-bundle",
  1582. "version": "1.7.0",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  1586. "reference": "9ef2764cb08d3854f394065c5224d8652f62af16"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/9ef2764cb08d3854f394065c5224d8652f62af16",
  1591. "reference": "9ef2764cb08d3854f394065c5224d8652f62af16",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "symfony/framework-bundle": "~2.3",
  1596. "symfony/security": "~2.3"
  1597. },
  1598. "type": "symfony-bundle",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "1.7.x-dev"
  1602. }
  1603. },
  1604. "autoload": {
  1605. "psr-4": {
  1606. "Nelmio\\SecurityBundle\\": ""
  1607. }
  1608. },
  1609. "notification-url": "https://packagist.org/downloads/",
  1610. "license": [
  1611. "MIT"
  1612. ],
  1613. "authors": [
  1614. {
  1615. "name": "Nelmio",
  1616. "homepage": "http://nelm.io"
  1617. },
  1618. {
  1619. "name": "Symfony Community",
  1620. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  1621. }
  1622. ],
  1623. "description": "Extra security-related features for Symfony2: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  1624. "keywords": [
  1625. "security"
  1626. ],
  1627. "time": "2015-05-10 17:08:33"
  1628. },
  1629. {
  1630. "name": "nelmio/solarium-bundle",
  1631. "version": "v1.1.0",
  1632. "target-dir": "Nelmio/SolariumBundle",
  1633. "source": {
  1634. "type": "git",
  1635. "url": "https://github.com/nelmio/NelmioSolariumBundle.git",
  1636. "reference": "693700c4deeb04997b90aca659dd881409f33eb9"
  1637. },
  1638. "dist": {
  1639. "type": "zip",
  1640. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/693700c4deeb04997b90aca659dd881409f33eb9",
  1641. "reference": "693700c4deeb04997b90aca659dd881409f33eb9",
  1642. "shasum": ""
  1643. },
  1644. "require": {
  1645. "solarium/solarium": "~2.4.0",
  1646. "symfony/framework-bundle": "2.*"
  1647. },
  1648. "require-dev": {
  1649. "symfony/yaml": "2.*"
  1650. },
  1651. "type": "symfony-bundle",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "1.1-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-0": {
  1659. "Nelmio\\SolariumBundle": ""
  1660. }
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "MIT"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "Nelmio",
  1669. "homepage": "http://nelm.io"
  1670. },
  1671. {
  1672. "name": "Symfony Community",
  1673. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  1674. }
  1675. ],
  1676. "description": "Integration with solarium solr client.",
  1677. "keywords": [
  1678. "search",
  1679. "solarium",
  1680. "solr"
  1681. ],
  1682. "time": "2013-01-07 10:35:43"
  1683. },
  1684. {
  1685. "name": "pagerfanta/pagerfanta",
  1686. "version": "v1.0.3",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  1690. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  1695. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  1696. "shasum": ""
  1697. },
  1698. "require": {
  1699. "php": ">=5.3.0"
  1700. },
  1701. "require-dev": {
  1702. "doctrine/orm": "~2.3",
  1703. "doctrine/phpcr-odm": "1.*",
  1704. "jackalope/jackalope-doctrine-dbal": "1.*",
  1705. "jmikola/geojson": "~1.0",
  1706. "mandango/mandango": "~1.0@dev",
  1707. "mandango/mondator": "~1.0@dev",
  1708. "phpunit/phpunit": "~4",
  1709. "propel/propel1": "~1.6",
  1710. "ruflin/elastica": "~1.3",
  1711. "solarium/solarium": "~3.1"
  1712. },
  1713. "suggest": {
  1714. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  1715. "doctrine/orm": "To use the DoctrineORMAdapter.",
  1716. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  1717. "mandango/mandango": "To use the MandangoAdapter.",
  1718. "propel/propel1": "To use the PropelAdapter",
  1719. "solarium/solarium": "To use the SolariumAdapter."
  1720. },
  1721. "type": "library",
  1722. "extra": {
  1723. "branch-alias": {
  1724. "dev-master": "1.0.x-dev"
  1725. }
  1726. },
  1727. "autoload": {
  1728. "psr-0": {
  1729. "Pagerfanta\\": "src/"
  1730. }
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Pablo Díez",
  1739. "email": "pablodip@gmail.com"
  1740. }
  1741. ],
  1742. "description": "Pagination for PHP 5.3",
  1743. "keywords": [
  1744. "page",
  1745. "pagination",
  1746. "paginator",
  1747. "paging"
  1748. ],
  1749. "time": "2014-10-06 10:57:25"
  1750. },
  1751. {
  1752. "name": "phpoption/phpoption",
  1753. "version": "1.4.0",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/schmittjoh/php-option.git",
  1757. "reference": "5d099bcf0393908bf4ad69cc47dafb785d51f7f5"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5d099bcf0393908bf4ad69cc47dafb785d51f7f5",
  1762. "reference": "5d099bcf0393908bf4ad69cc47dafb785d51f7f5",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": ">=5.3.0"
  1767. },
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-master": "1.3-dev"
  1772. }
  1773. },
  1774. "autoload": {
  1775. "psr-0": {
  1776. "PhpOption\\": "src/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "Apache2"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "Johannes M. Schmitt",
  1786. "email": "schmittjoh@gmail.com",
  1787. "homepage": "http://jmsyst.com",
  1788. "role": "Developer of wrapped JMSSerializerBundle"
  1789. }
  1790. ],
  1791. "description": "Option Type for PHP",
  1792. "keywords": [
  1793. "language",
  1794. "option",
  1795. "php",
  1796. "type"
  1797. ],
  1798. "time": "2014-01-09 22:37:17"
  1799. },
  1800. {
  1801. "name": "predis/predis",
  1802. "version": "v0.8.7",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/nrk/predis.git",
  1806. "reference": "4123fcd85d61354c6c9900db76c9597dbd129bf6"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/nrk/predis/zipball/4123fcd85d61354c6c9900db76c9597dbd129bf6",
  1811. "reference": "4123fcd85d61354c6c9900db76c9597dbd129bf6",
  1812. "shasum": ""
  1813. },
  1814. "require": {
  1815. "php": ">=5.3.2"
  1816. },
  1817. "require-dev": {
  1818. "phpunit/phpunit": "~4.0"
  1819. },
  1820. "suggest": {
  1821. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1822. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1823. },
  1824. "type": "library",
  1825. "autoload": {
  1826. "psr-0": {
  1827. "Predis": "lib/"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Daniele Alessandri",
  1837. "email": "suppakilla@gmail.com",
  1838. "homepage": "http://clorophilla.net"
  1839. }
  1840. ],
  1841. "description": "Flexible and feature-complete PHP client library for Redis",
  1842. "homepage": "http://github.com/nrk/predis",
  1843. "keywords": [
  1844. "nosql",
  1845. "predis",
  1846. "redis"
  1847. ],
  1848. "time": "2014-08-01 09:43:10"
  1849. },
  1850. {
  1851. "name": "psr/log",
  1852. "version": "1.0.0",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/php-fig/log.git",
  1856. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  1861. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  1862. "shasum": ""
  1863. },
  1864. "type": "library",
  1865. "autoload": {
  1866. "psr-0": {
  1867. "Psr\\Log\\": ""
  1868. }
  1869. },
  1870. "notification-url": "https://packagist.org/downloads/",
  1871. "license": [
  1872. "MIT"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "PHP-FIG",
  1877. "homepage": "http://www.php-fig.org/"
  1878. }
  1879. ],
  1880. "description": "Common interface for logging libraries",
  1881. "keywords": [
  1882. "log",
  1883. "psr",
  1884. "psr-3"
  1885. ],
  1886. "time": "2012-12-21 11:40:51"
  1887. },
  1888. {
  1889. "name": "seld/cli-prompt",
  1890. "version": "1.0.0",
  1891. "source": {
  1892. "type": "git",
  1893. "url": "https://github.com/Seldaek/cli-prompt.git",
  1894. "reference": "fe114c7a6ac5cb0ce76932ae4017024d9842a49c"
  1895. },
  1896. "dist": {
  1897. "type": "zip",
  1898. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/fe114c7a6ac5cb0ce76932ae4017024d9842a49c",
  1899. "reference": "fe114c7a6ac5cb0ce76932ae4017024d9842a49c",
  1900. "shasum": ""
  1901. },
  1902. "require": {
  1903. "php": ">=5.3"
  1904. },
  1905. "type": "library",
  1906. "extra": {
  1907. "branch-alias": {
  1908. "dev-master": "1.x-dev"
  1909. }
  1910. },
  1911. "autoload": {
  1912. "psr-4": {
  1913. "Seld\\CliPrompt\\": "src/"
  1914. }
  1915. },
  1916. "notification-url": "https://packagist.org/downloads/",
  1917. "license": [
  1918. "MIT"
  1919. ],
  1920. "authors": [
  1921. {
  1922. "name": "Jordi Boggiano",
  1923. "email": "j.boggiano@seld.be"
  1924. }
  1925. ],
  1926. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  1927. "keywords": [
  1928. "cli",
  1929. "console",
  1930. "hidden",
  1931. "input",
  1932. "prompt"
  1933. ],
  1934. "time": "2015-04-30 20:24:49"
  1935. },
  1936. {
  1937. "name": "seld/jsonlint",
  1938. "version": "1.3.1",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/Seldaek/jsonlint.git",
  1942. "reference": "863ae85c6d3ef60ca49cb12bd051c4a0648c40c4"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/863ae85c6d3ef60ca49cb12bd051c4a0648c40c4",
  1947. "reference": "863ae85c6d3ef60ca49cb12bd051c4a0648c40c4",
  1948. "shasum": ""
  1949. },
  1950. "require": {
  1951. "php": ">=5.3.0"
  1952. },
  1953. "bin": [
  1954. "bin/jsonlint"
  1955. ],
  1956. "type": "library",
  1957. "autoload": {
  1958. "psr-4": {
  1959. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "authors": [
  1967. {
  1968. "name": "Jordi Boggiano",
  1969. "email": "j.boggiano@seld.be",
  1970. "homepage": "http://seld.be"
  1971. }
  1972. ],
  1973. "description": "JSON Linter",
  1974. "keywords": [
  1975. "json",
  1976. "linter",
  1977. "parser",
  1978. "validator"
  1979. ],
  1980. "time": "2015-01-04 21:18:15"
  1981. },
  1982. {
  1983. "name": "seld/phar-utils",
  1984. "version": "1.0.0",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/Seldaek/phar-utils.git",
  1988. "reference": "336bb5ee20de511f3c1a164222fcfd194afcab3a"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/336bb5ee20de511f3c1a164222fcfd194afcab3a",
  1993. "reference": "336bb5ee20de511f3c1a164222fcfd194afcab3a",
  1994. "shasum": ""
  1995. },
  1996. "require": {
  1997. "php": ">=5.3"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "1.x-dev"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "psr-4": {
  2007. "Seld\\PharUtils\\": "src/"
  2008. }
  2009. },
  2010. "notification-url": "https://packagist.org/downloads/",
  2011. "license": [
  2012. "MIT"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "Jordi Boggiano",
  2017. "email": "j.boggiano@seld.be"
  2018. }
  2019. ],
  2020. "description": "PHAR file format utilities, for when PHP phars you up",
  2021. "keywords": [
  2022. "phra"
  2023. ],
  2024. "time": "2015-05-01 12:45:48"
  2025. },
  2026. {
  2027. "name": "sensio/distribution-bundle",
  2028. "version": "v2.3.17",
  2029. "target-dir": "Sensio/Bundle/DistributionBundle",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2033. "reference": "49334e66844f89898d21646b4fda4cfcfe116200"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/49334e66844f89898d21646b4fda4cfcfe116200",
  2038. "reference": "49334e66844f89898d21646b4fda4cfcfe116200",
  2039. "shasum": ""
  2040. },
  2041. "require": {
  2042. "symfony/framework-bundle": "~2.2"
  2043. },
  2044. "type": "symfony-bundle",
  2045. "extra": {
  2046. "branch-alias": {
  2047. "dev-master": "2.3.x-dev"
  2048. }
  2049. },
  2050. "autoload": {
  2051. "psr-0": {
  2052. "Sensio\\Bundle\\DistributionBundle": ""
  2053. }
  2054. },
  2055. "notification-url": "https://packagist.org/downloads/",
  2056. "license": [
  2057. "MIT"
  2058. ],
  2059. "authors": [
  2060. {
  2061. "name": "Fabien Potencier",
  2062. "email": "fabien@symfony.com"
  2063. }
  2064. ],
  2065. "description": "The base bundle for the Symfony Distributions",
  2066. "keywords": [
  2067. "configuration",
  2068. "distribution"
  2069. ],
  2070. "time": "2015-05-29 22:34:59"
  2071. },
  2072. {
  2073. "name": "sensio/framework-extra-bundle",
  2074. "version": "v2.3.4",
  2075. "target-dir": "Sensio/Bundle/FrameworkExtraBundle",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2079. "reference": "cce05719041d952bbec856789ca18646a1891d03"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/cce05719041d952bbec856789ca18646a1891d03",
  2084. "reference": "cce05719041d952bbec856789ca18646a1891d03",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "doctrine/common": "~2.2",
  2089. "symfony/framework-bundle": "~2.2"
  2090. },
  2091. "type": "symfony-bundle",
  2092. "extra": {
  2093. "branch-alias": {
  2094. "dev-master": "2.3.x-dev"
  2095. }
  2096. },
  2097. "autoload": {
  2098. "psr-0": {
  2099. "Sensio\\Bundle\\FrameworkExtraBundle": ""
  2100. }
  2101. },
  2102. "notification-url": "https://packagist.org/downloads/",
  2103. "license": [
  2104. "MIT"
  2105. ],
  2106. "authors": [
  2107. {
  2108. "name": "Fabien Potencier",
  2109. "email": "fabien@symfony.com",
  2110. "homepage": "http://fabien.potencier.org",
  2111. "role": "Lead Developer"
  2112. }
  2113. ],
  2114. "description": "This bundle provides a way to configure your controllers with annotations",
  2115. "keywords": [
  2116. "annotations",
  2117. "controllers"
  2118. ],
  2119. "time": "2013-07-24 08:49:53"
  2120. },
  2121. {
  2122. "name": "sensio/generator-bundle",
  2123. "version": "v2.3.5",
  2124. "target-dir": "Sensio/Bundle/GeneratorBundle",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2128. "reference": "8b7a33aa3d22388443b6de0b0cf184122e9f60d2"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/8b7a33aa3d22388443b6de0b0cf184122e9f60d2",
  2133. "reference": "8b7a33aa3d22388443b6de0b0cf184122e9f60d2",
  2134. "shasum": ""
  2135. },
  2136. "require": {
  2137. "symfony/console": "~2.0",
  2138. "symfony/framework-bundle": "~2.2"
  2139. },
  2140. "require-dev": {
  2141. "doctrine/orm": "~2.2,>=2.2.3",
  2142. "symfony/doctrine-bridge": "~2.2",
  2143. "twig/twig": "~1.11"
  2144. },
  2145. "type": "symfony-bundle",
  2146. "extra": {
  2147. "branch-alias": {
  2148. "dev-master": "2.3.x-dev"
  2149. }
  2150. },
  2151. "autoload": {
  2152. "psr-0": {
  2153. "Sensio\\Bundle\\GeneratorBundle": ""
  2154. }
  2155. },
  2156. "notification-url": "https://packagist.org/downloads/",
  2157. "license": [
  2158. "MIT"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "Fabien Potencier",
  2163. "email": "fabien@symfony.com",
  2164. "homepage": "http://fabien.potencier.org",
  2165. "role": "Lead Developer"
  2166. }
  2167. ],
  2168. "description": "This bundle generates code for you",
  2169. "time": "2014-04-28 14:01:06"
  2170. },
  2171. {
  2172. "name": "snc/redis-bundle",
  2173. "version": "1.1.x-dev",
  2174. "target-dir": "Snc/RedisBundle",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/snc/SncRedisBundle.git",
  2178. "reference": "732bfa62ea1e30dbbda12486f971573274d3b48f"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/732bfa62ea1e30dbbda12486f971573274d3b48f",
  2183. "reference": "732bfa62ea1e30dbbda12486f971573274d3b48f",
  2184. "shasum": ""
  2185. },
  2186. "require": {
  2187. "php": ">=5.3.3",
  2188. "symfony/framework-bundle": ">=2.1,<3.0",
  2189. "symfony/yaml": ">=2.1,<3.0"
  2190. },
  2191. "require-dev": {
  2192. "doctrine/cache": "1.*",
  2193. "predis/predis": "0.8.*",
  2194. "symfony/console": ">=2.1,<3.0"
  2195. },
  2196. "suggest": {
  2197. "monolog/monolog": "If you want to use the monolog redis handler.",
  2198. "predis/predis": "If you want to use predis (currently only v0.8.x is supported).",
  2199. "symfony/console": "If you want to use commands to interact with the redis database"
  2200. },
  2201. "type": "symfony-bundle",
  2202. "autoload": {
  2203. "psr-0": {
  2204. "Snc\\RedisBundle": ""
  2205. }
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "Henrik Westphal",
  2214. "email": "henrik.westphal@gmail.com"
  2215. },
  2216. {
  2217. "name": "Community contributors",
  2218. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2219. }
  2220. ],
  2221. "description": "A Redis bundle for Symfony2",
  2222. "homepage": "https://github.com/snc/SncRedisBundle",
  2223. "keywords": [
  2224. "nosql",
  2225. "redis",
  2226. "symfony"
  2227. ],
  2228. "time": "2014-08-09 09:54:28"
  2229. },
  2230. {
  2231. "name": "solarium/solarium",
  2232. "version": "2.4.1",
  2233. "source": {
  2234. "type": "git",
  2235. "url": "https://github.com/solariumphp/solarium.git",
  2236. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504"
  2237. },
  2238. "dist": {
  2239. "type": "zip",
  2240. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2241. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2242. "shasum": ""
  2243. },
  2244. "require": {
  2245. "php": ">=5.2.0"
  2246. },
  2247. "type": "library",
  2248. "autoload": {
  2249. "psr-0": {
  2250. "Solarium": "library/"
  2251. }
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "NewBSD"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "See GitHub contributors",
  2260. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  2261. }
  2262. ],
  2263. "description": "PHP Solr client",
  2264. "homepage": "http://www.solarium-project.org",
  2265. "keywords": [
  2266. "php",
  2267. "search",
  2268. "solr"
  2269. ],
  2270. "time": "2013-02-11 13:12:43"
  2271. },
  2272. {
  2273. "name": "swiftmailer/swiftmailer",
  2274. "version": "v5.4.0",
  2275. "source": {
  2276. "type": "git",
  2277. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2278. "reference": "31454f258f10329ae7c48763eb898a75c39e0a9f"
  2279. },
  2280. "dist": {
  2281. "type": "zip",
  2282. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/31454f258f10329ae7c48763eb898a75c39e0a9f",
  2283. "reference": "31454f258f10329ae7c48763eb898a75c39e0a9f",
  2284. "shasum": ""
  2285. },
  2286. "require": {
  2287. "php": ">=5.3.3"
  2288. },
  2289. "require-dev": {
  2290. "mockery/mockery": "~0.9.1"
  2291. },
  2292. "type": "library",
  2293. "extra": {
  2294. "branch-alias": {
  2295. "dev-master": "5.4-dev"
  2296. }
  2297. },
  2298. "autoload": {
  2299. "files": [
  2300. "lib/swift_required.php"
  2301. ]
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "MIT"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Chris Corbyn"
  2310. },
  2311. {
  2312. "name": "Fabien Potencier",
  2313. "email": "fabien@symfony.com"
  2314. }
  2315. ],
  2316. "description": "Swiftmailer, free feature-rich PHP mailer",
  2317. "homepage": "http://swiftmailer.org",
  2318. "keywords": [
  2319. "mail",
  2320. "mailer"
  2321. ],
  2322. "time": "2015-03-14 06:06:39"
  2323. },
  2324. {
  2325. "name": "symfony/icu",
  2326. "version": "v1.2.2",
  2327. "target-dir": "Symfony/Component/Icu",
  2328. "source": {
  2329. "type": "git",
  2330. "url": "https://github.com/symfony/Icu.git",
  2331. "reference": "d4d85d6055b87f394d941b45ddd3a9173e1e3d2a"
  2332. },
  2333. "dist": {
  2334. "type": "zip",
  2335. "url": "https://api.github.com/repos/symfony/Icu/zipball/d4d85d6055b87f394d941b45ddd3a9173e1e3d2a",
  2336. "reference": "d4d85d6055b87f394d941b45ddd3a9173e1e3d2a",
  2337. "shasum": ""
  2338. },
  2339. "require": {
  2340. "ext-intl": "*",
  2341. "lib-icu": ">=4.4",
  2342. "php": ">=5.3.3",
  2343. "symfony/intl": "~2.3"
  2344. },
  2345. "type": "library",
  2346. "autoload": {
  2347. "psr-0": {
  2348. "Symfony\\Component\\Icu\\": ""
  2349. }
  2350. },
  2351. "notification-url": "https://packagist.org/downloads/",
  2352. "license": [
  2353. "MIT"
  2354. ],
  2355. "authors": [
  2356. {
  2357. "name": "Symfony Community",
  2358. "homepage": "http://symfony.com/contributors"
  2359. },
  2360. {
  2361. "name": "Bernhard Schussek",
  2362. "email": "bschussek@gmail.com"
  2363. }
  2364. ],
  2365. "description": "Contains an excerpt of the ICU data and classes to load it.",
  2366. "homepage": "http://symfony.com",
  2367. "keywords": [
  2368. "icu",
  2369. "intl"
  2370. ],
  2371. "time": "2014-07-25 09:58:17"
  2372. },
  2373. {
  2374. "name": "symfony/monolog-bundle",
  2375. "version": "v2.7.1",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/symfony/MonologBundle.git",
  2379. "reference": "9320b6863404c70ebe111e9040dab96f251de7ac"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/symfony/MonologBundle/zipball/9320b6863404c70ebe111e9040dab96f251de7ac",
  2384. "reference": "9320b6863404c70ebe111e9040dab96f251de7ac",
  2385. "shasum": ""
  2386. },
  2387. "require": {
  2388. "monolog/monolog": "~1.8",
  2389. "php": ">=5.3.2",
  2390. "symfony/config": "~2.3",
  2391. "symfony/dependency-injection": "~2.3",
  2392. "symfony/http-kernel": "~2.3",
  2393. "symfony/monolog-bridge": "~2.3"
  2394. },
  2395. "require-dev": {
  2396. "symfony/console": "~2.3",
  2397. "symfony/yaml": "~2.3"
  2398. },
  2399. "type": "symfony-bundle",
  2400. "extra": {
  2401. "branch-alias": {
  2402. "dev-master": "2.7.x-dev"
  2403. }
  2404. },
  2405. "autoload": {
  2406. "psr-4": {
  2407. "Symfony\\Bundle\\MonologBundle\\": ""
  2408. }
  2409. },
  2410. "notification-url": "https://packagist.org/downloads/",
  2411. "license": [
  2412. "MIT"
  2413. ],
  2414. "authors": [
  2415. {
  2416. "name": "Symfony Community",
  2417. "homepage": "http://symfony.com/contributors"
  2418. },
  2419. {
  2420. "name": "Fabien Potencier",
  2421. "email": "fabien@symfony.com"
  2422. }
  2423. ],
  2424. "description": "Symfony MonologBundle",
  2425. "homepage": "http://symfony.com",
  2426. "keywords": [
  2427. "log",
  2428. "logging"
  2429. ],
  2430. "time": "2015-01-04 20:21:17"
  2431. },
  2432. {
  2433. "name": "symfony/swiftmailer-bundle",
  2434. "version": "v2.3.8",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/symfony/SwiftmailerBundle.git",
  2438. "reference": "970b13d01871207e81d17b17ddda025e7e21e797"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/symfony/SwiftmailerBundle/zipball/970b13d01871207e81d17b17ddda025e7e21e797",
  2443. "reference": "970b13d01871207e81d17b17ddda025e7e21e797",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": ">=5.3.2",
  2448. "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  2449. "symfony/swiftmailer-bridge": "~2.1"
  2450. },
  2451. "require-dev": {
  2452. "symfony/config": "~2.1",
  2453. "symfony/dependency-injection": "~2.1",
  2454. "symfony/http-kernel": "~2.1",
  2455. "symfony/yaml": "~2.1"
  2456. },
  2457. "suggest": {
  2458. "psr/log": "Allows logging"
  2459. },
  2460. "type": "symfony-bundle",
  2461. "extra": {
  2462. "branch-alias": {
  2463. "dev-master": "2.3-dev"
  2464. }
  2465. },
  2466. "autoload": {
  2467. "psr-4": {
  2468. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  2469. }
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Symfony Community",
  2478. "homepage": "http://symfony.com/contributors"
  2479. },
  2480. {
  2481. "name": "Fabien Potencier",
  2482. "email": "fabien@symfony.com"
  2483. }
  2484. ],
  2485. "description": "Symfony SwiftmailerBundle",
  2486. "homepage": "http://symfony.com",
  2487. "time": "2014-12-01 17:44:50"
  2488. },
  2489. {
  2490. "name": "symfony/symfony",
  2491. "version": "v2.5.0",
  2492. "source": {
  2493. "type": "git",
  2494. "url": "https://github.com/symfony/symfony.git",
  2495. "reference": "59365832a09a1d914d14cbca6a21a7f572760c3b"
  2496. },
  2497. "dist": {
  2498. "type": "zip",
  2499. "url": "https://api.github.com/repos/symfony/symfony/zipball/59365832a09a1d914d14cbca6a21a7f572760c3b",
  2500. "reference": "59365832a09a1d914d14cbca6a21a7f572760c3b",
  2501. "shasum": ""
  2502. },
  2503. "require": {
  2504. "doctrine/common": "~2.2",
  2505. "php": ">=5.3.3",
  2506. "psr/log": "~1.0",
  2507. "symfony/icu": "~1.0",
  2508. "twig/twig": "~1.11"
  2509. },
  2510. "replace": {
  2511. "symfony/browser-kit": "self.version",
  2512. "symfony/class-loader": "self.version",
  2513. "symfony/config": "self.version",
  2514. "symfony/console": "self.version",
  2515. "symfony/css-selector": "self.version",
  2516. "symfony/debug": "self.version",
  2517. "symfony/dependency-injection": "self.version",
  2518. "symfony/doctrine-bridge": "self.version",
  2519. "symfony/dom-crawler": "self.version",
  2520. "symfony/event-dispatcher": "self.version",
  2521. "symfony/expression-language": "self.version",
  2522. "symfony/filesystem": "self.version",
  2523. "symfony/finder": "self.version",
  2524. "symfony/form": "self.version",
  2525. "symfony/framework-bundle": "self.version",
  2526. "symfony/http-foundation": "self.version",
  2527. "symfony/http-kernel": "self.version",
  2528. "symfony/intl": "self.version",
  2529. "symfony/locale": "self.version",
  2530. "symfony/monolog-bridge": "self.version",
  2531. "symfony/options-resolver": "self.version",
  2532. "symfony/process": "self.version",
  2533. "symfony/propel1-bridge": "self.version",
  2534. "symfony/property-access": "self.version",
  2535. "symfony/proxy-manager-bridge": "self.version",
  2536. "symfony/routing": "self.version",
  2537. "symfony/security": "self.version",
  2538. "symfony/security-acl": "self.version",
  2539. "symfony/security-bundle": "self.version",
  2540. "symfony/security-core": "self.version",
  2541. "symfony/security-csrf": "self.version",
  2542. "symfony/security-http": "self.version",
  2543. "symfony/serializer": "self.version",
  2544. "symfony/stopwatch": "self.version",
  2545. "symfony/swiftmailer-bridge": "self.version",
  2546. "symfony/templating": "self.version",
  2547. "symfony/translation": "self.version",
  2548. "symfony/twig-bridge": "self.version",
  2549. "symfony/twig-bundle": "self.version",
  2550. "symfony/validator": "self.version",
  2551. "symfony/web-profiler-bundle": "self.version",
  2552. "symfony/yaml": "self.version"
  2553. },
  2554. "require-dev": {
  2555. "doctrine/data-fixtures": "1.0.*",
  2556. "doctrine/dbal": "~2.2",
  2557. "doctrine/orm": "~2.2,>=2.2.3",
  2558. "egulias/email-validator": "1.1.0",
  2559. "ircmaxell/password-compat": "1.0.*",
  2560. "monolog/monolog": "~1.3",
  2561. "ocramius/proxy-manager": ">=0.3.1,<0.6-dev",
  2562. "propel/propel1": "1.6.*"
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "2.5-dev"
  2568. }
  2569. },
  2570. "autoload": {
  2571. "psr-0": {
  2572. "Symfony\\": "src/"
  2573. },
  2574. "classmap": [
  2575. "src/Symfony/Component/HttpFoundation/Resources/stubs",
  2576. "src/Symfony/Component/Intl/Resources/stubs"
  2577. ],
  2578. "files": [
  2579. "src/Symfony/Component/Intl/Resources/stubs/functions.php"
  2580. ]
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "Fabien Potencier",
  2589. "email": "fabien@symfony.com",
  2590. "homepage": "http://fabien.potencier.org",
  2591. "role": "Lead Developer"
  2592. },
  2593. {
  2594. "name": "Symfony Community",
  2595. "homepage": "http://symfony.com/contributors"
  2596. }
  2597. ],
  2598. "description": "The Symfony PHP framework",
  2599. "homepage": "http://symfony.com",
  2600. "keywords": [
  2601. "framework"
  2602. ],
  2603. "time": "2014-05-31 18:45:50"
  2604. },
  2605. {
  2606. "name": "twig/extensions",
  2607. "version": "v1.2.0",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/twigphp/Twig-extensions.git",
  2611. "reference": "8cf4b9fe04077bd54fc73f4fde83347040c3b8cd"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/8cf4b9fe04077bd54fc73f4fde83347040c3b8cd",
  2616. "reference": "8cf4b9fe04077bd54fc73f4fde83347040c3b8cd",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "twig/twig": "~1.12"
  2621. },
  2622. "require-dev": {
  2623. "symfony/translation": "~2.3"
  2624. },
  2625. "suggest": {
  2626. "symfony/translation": "Allow the time_diff output to be translated"
  2627. },
  2628. "type": "library",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-master": "1.2.x-dev"
  2632. }
  2633. },
  2634. "autoload": {
  2635. "psr-0": {
  2636. "Twig_Extensions_": "lib/"
  2637. }
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "MIT"
  2642. ],
  2643. "authors": [
  2644. {
  2645. "name": "Fabien Potencier",
  2646. "email": "fabien@symfony.com"
  2647. }
  2648. ],
  2649. "description": "Common additional features for Twig that do not directly belong in core",
  2650. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  2651. "keywords": [
  2652. "i18n",
  2653. "text"
  2654. ],
  2655. "time": "2014-10-30 14:30:03"
  2656. },
  2657. {
  2658. "name": "twig/twig",
  2659. "version": "v1.18.1",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/twigphp/Twig.git",
  2663. "reference": "9f70492f44398e276d1b81c1b43adfe6751c7b7f"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9f70492f44398e276d1b81c1b43adfe6751c7b7f",
  2668. "reference": "9f70492f44398e276d1b81c1b43adfe6751c7b7f",
  2669. "shasum": ""
  2670. },
  2671. "require": {
  2672. "php": ">=5.2.7"
  2673. },
  2674. "type": "library",
  2675. "extra": {
  2676. "branch-alias": {
  2677. "dev-master": "1.18-dev"
  2678. }
  2679. },
  2680. "autoload": {
  2681. "psr-0": {
  2682. "Twig_": "lib/"
  2683. }
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "BSD-3-Clause"
  2688. ],
  2689. "authors": [
  2690. {
  2691. "name": "Fabien Potencier",
  2692. "email": "fabien@symfony.com",
  2693. "homepage": "http://fabien.potencier.org",
  2694. "role": "Lead Developer"
  2695. },
  2696. {
  2697. "name": "Armin Ronacher",
  2698. "email": "armin.ronacher@active-4.com",
  2699. "role": "Project Founder"
  2700. },
  2701. {
  2702. "name": "Twig Team",
  2703. "homepage": "http://twig.sensiolabs.org/contributors",
  2704. "role": "Contributors"
  2705. }
  2706. ],
  2707. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2708. "homepage": "http://twig.sensiolabs.org",
  2709. "keywords": [
  2710. "templating"
  2711. ],
  2712. "time": "2015-04-19 08:30:27"
  2713. },
  2714. {
  2715. "name": "white-october/pagerfanta-bundle",
  2716. "version": "v1.0.2",
  2717. "target-dir": "WhiteOctober/PagerfantaBundle",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  2721. "reference": "10403c1db34983f81d8c106cd1c47f3139641455"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/10403c1db34983f81d8c106cd1c47f3139641455",
  2726. "reference": "10403c1db34983f81d8c106cd1c47f3139641455",
  2727. "shasum": ""
  2728. },
  2729. "require": {
  2730. "pagerfanta/pagerfanta": "1.0.*",
  2731. "symfony/framework-bundle": "~2.2",
  2732. "symfony/property-access": "~2.2",
  2733. "symfony/twig-bundle": "~2.2"
  2734. },
  2735. "require-dev": {
  2736. "phpunit/phpunit": "~3.7",
  2737. "symfony/symfony": "~2.2"
  2738. },
  2739. "type": "symfony-bundle",
  2740. "extra": {
  2741. "branch-alias": {
  2742. "dev-master": "1.0.x-dev"
  2743. }
  2744. },
  2745. "autoload": {
  2746. "psr-0": {
  2747. "WhiteOctober\\PagerfantaBundle": ""
  2748. }
  2749. },
  2750. "notification-url": "https://packagist.org/downloads/",
  2751. "license": [
  2752. "MIT"
  2753. ],
  2754. "authors": [
  2755. {
  2756. "name": "Pablo Díez",
  2757. "email": "pablodip@gmail.com",
  2758. "homepage": "http://github.com/pablodip"
  2759. }
  2760. ],
  2761. "description": "Bundle to use Pagerfanta with Symfony2",
  2762. "keywords": [
  2763. "page",
  2764. "paging"
  2765. ],
  2766. "time": "2014-01-07 13:33:53"
  2767. },
  2768. {
  2769. "name": "zendframework/zendframework",
  2770. "version": "2.0.8",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://github.com/zendframework/zf2.git",
  2774. "reference": "57de1d9e3fe0564d2572e0a961e905ae2279c003"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://api.github.com/repos/zendframework/zf2/zipball/57de1d9e3fe0564d2572e0a961e905ae2279c003",
  2779. "reference": "2.0.8",
  2780. "shasum": "0b8790b1e9f5cbb5b50c0443851b26e1ed36e80c"
  2781. },
  2782. "require": {
  2783. "php": ">=5.3.3"
  2784. },
  2785. "replace": {
  2786. "zendframework/zend-authentication": "self.version",
  2787. "zendframework/zend-barcode": "self.version",
  2788. "zendframework/zend-cache": "self.version",
  2789. "zendframework/zend-captcha": "self.version",
  2790. "zendframework/zend-code": "self.version",
  2791. "zendframework/zend-config": "self.version",
  2792. "zendframework/zend-console": "self.version",
  2793. "zendframework/zend-crypt": "self.version",
  2794. "zendframework/zend-db": "self.version",
  2795. "zendframework/zend-debug": "self.version",
  2796. "zendframework/zend-di": "self.version",
  2797. "zendframework/zend-dom": "self.version",
  2798. "zendframework/zend-escaper": "self.version",
  2799. "zendframework/zend-eventmanager": "self.version",
  2800. "zendframework/zend-feed": "self.version",
  2801. "zendframework/zend-file": "self.version",
  2802. "zendframework/zend-filter": "self.version",
  2803. "zendframework/zend-form": "self.version",
  2804. "zendframework/zend-http": "self.version",
  2805. "zendframework/zend-i18n": "self.version",
  2806. "zendframework/zend-inputfilter": "self.version",
  2807. "zendframework/zend-json": "self.version",
  2808. "zendframework/zend-ldap": "self.version",
  2809. "zendframework/zend-loader": "self.version",
  2810. "zendframework/zend-log": "self.version",
  2811. "zendframework/zend-mail": "self.version",
  2812. "zendframework/zend-math": "self.version",
  2813. "zendframework/zend-memory": "self.version",
  2814. "zendframework/zend-mime": "self.version",
  2815. "zendframework/zend-modulemanager": "self.version",
  2816. "zendframework/zend-mvc": "self.version",
  2817. "zendframework/zend-navigation": "self.version",
  2818. "zendframework/zend-paginator": "self.version",
  2819. "zendframework/zend-permissions-acl": "self.version",
  2820. "zendframework/zend-progressbar": "self.version",
  2821. "zendframework/zend-serializer": "self.version",
  2822. "zendframework/zend-server": "self.version",
  2823. "zendframework/zend-servicemanager": "self.version",
  2824. "zendframework/zend-session": "self.version",
  2825. "zendframework/zend-soap": "self.version",
  2826. "zendframework/zend-stdlib": "self.version",
  2827. "zendframework/zend-tag": "self.version",
  2828. "zendframework/zend-text": "self.version",
  2829. "zendframework/zend-uri": "self.version",
  2830. "zendframework/zend-validator": "self.version",
  2831. "zendframework/zend-version": "self.version",
  2832. "zendframework/zend-view": "self.version",
  2833. "zendframework/zend-xmlrpc": "self.version"
  2834. },
  2835. "require-dev": {
  2836. "doctrine/common": ">=2.1",
  2837. "ircmaxell/random-lib": "dev-master@dev",
  2838. "ircmaxell/security-lib": "dev-master@dev",
  2839. "phpunit/phpunit": "3.7.*"
  2840. },
  2841. "suggest": {
  2842. "doctrine/common": "Doctrine\\Common >=2.1 for annotation features",
  2843. "ext-intl": "ext/intl for i18n features",
  2844. "ircmaxell/random-lib": "Fallback random byte generator for Zend\\Math\\Rand if OpenSSL/Mcrypt extensions are unavailable",
  2845. "pecl-weakref": "Implementation of weak references for Zend\\Stdlib\\CallbackHandler",
  2846. "zendframework/zendpdf": "ZendPdf for creating PDF representations of barcodes",
  2847. "zendframework/zendservice-recaptcha": "ZendService\\ReCaptcha for rendering ReCaptchas in Zend\\Captcha and/or Zend\\Form"
  2848. },
  2849. "bin": [
  2850. "bin/classmap_generator.php"
  2851. ],
  2852. "type": "library",
  2853. "extra": {
  2854. "branch-alias": {
  2855. "dev-master": "2.0-dev",
  2856. "dev-develop": "2.1-dev"
  2857. }
  2858. },
  2859. "autoload": {
  2860. "psr-0": {
  2861. "Zend\\": "library/",
  2862. "ZendTest\\": "tests/"
  2863. }
  2864. },
  2865. "license": [
  2866. "BSD-3-Clause"
  2867. ],
  2868. "description": "Zend Framework 2",
  2869. "homepage": "http://framework.zend.com/",
  2870. "keywords": [
  2871. "framework",
  2872. "zf2"
  2873. ],
  2874. "support": {
  2875. "source": "https://github.com/zendframework/zf2/tree/release-2.0.8",
  2876. "issues": "https://github.com/zendframework/zf2/issues"
  2877. },
  2878. "time": "2013-03-13 22:11:24"
  2879. }
  2880. ],
  2881. "packages-dev": [],
  2882. "aliases": [],
  2883. "minimum-stability": "stable",
  2884. "stability-flags": {
  2885. "composer/composer": 20,
  2886. "hwi/oauth-bundle": 20,
  2887. "snc/redis-bundle": 20
  2888. },
  2889. "prefer-stable": false,
  2890. "prefer-lowest": false,
  2891. "platform": {
  2892. "php": ">=5.5"
  2893. },
  2894. "platform-dev": []
  2895. }