composer.lock 100 KB

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