composer.lock 105 KB

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