composer.lock 68KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  1. {
  2. "hash": "cfa67943fb19431c371d189811089b42",
  3. "packages": [
  4. {
  5. "name": "cedriclombardot/admingenerator-generator-bundle",
  6. "version": "dev-master",
  7. "target-dir": "Admingenerator/GeneratorBundle",
  8. "source": {
  9. "type": "git",
  10. "url": "https://github.com/symfony2admingenerator/AdmingeneratorGeneratorBundle.git",
  11. "reference": "d50c391562cae6560e8d8003d3bd3a855d467490"
  12. },
  13. "dist": {
  14. "type": "zip",
  15. "url": "https://api.github.com/repos/symfony2admingenerator/AdmingeneratorGeneratorBundle/zipball/d50c391562cae6560e8d8003d3bd3a855d467490",
  16. "reference": "d50c391562cae6560e8d8003d3bd3a855d467490",
  17. "shasum": ""
  18. },
  19. "require": {
  20. "cedriclombardot/twig-generator": "dev-master",
  21. "knplabs/knp-menu-bundle": ">1.0,<2.1",
  22. "symfony/symfony": "2.1.*",
  23. "twig/extensions": "dev-master",
  24. "twig/twig": ">= 1.9.0",
  25. "white-october/pagerfanta-bundle": "dev-master"
  26. },
  27. "require-dev": {
  28. "doctrine/common": "2.3.*",
  29. "doctrine/dbal": "2.3.*",
  30. "doctrine/orm": "2.3.*"
  31. },
  32. "suggest": {
  33. "cedriclombardot/admingenerator-user-bundle": "Help you to overwrite the base layout of FOSUserBundle or others giving a parameter key of the container"
  34. },
  35. "time": "2013-02-17 18:17:44",
  36. "type": "symfony-bundle",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "1.0-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-0": {
  44. "Admingenerator\\GeneratorBundle": ""
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Cedric LOMBARDOT",
  54. "email": "cedric.lombardot@gmail.com"
  55. },
  56. {
  57. "name": "Symfony Community",
  58. "homepage": "http://github.com/cedriclombardot/AdmingeneratorGeneratorBundle/contributors"
  59. }
  60. ],
  61. "description": "Admingenerator for Symfony2 based on YAML configuration and Twig templating",
  62. "homepage": "http://symfony2admingenerator.org/",
  63. "keywords": [
  64. "admin",
  65. "generator",
  66. "yaml"
  67. ]
  68. },
  69. {
  70. "name": "cedriclombardot/twig-generator",
  71. "version": "dev-master",
  72. "source": {
  73. "type": "git",
  74. "url": "git://github.com/cedriclombardot/TwigGenerator.git",
  75. "reference": "b4a846956d330ed464070f6276801d16c92ae5c5"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/cedriclombardot/TwigGenerator/zipball/b4a846956d330ed464070f6276801d16c92ae5c5",
  80. "reference": "b4a846956d330ed464070f6276801d16c92ae5c5",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": ">=5.3.0",
  85. "twig/twig": ">=1.1, <2.0-dev"
  86. },
  87. "time": "2012-11-09 23:18:09",
  88. "type": "library",
  89. "autoload": {
  90. "psr-0": {
  91. "TwigGenerator": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "authors": [
  99. {
  100. "name": "Cédric Lombardot",
  101. "email": "cedric.lombardot@gmail.com"
  102. },
  103. {
  104. "name": "François Zaninotto"
  105. }
  106. ],
  107. "description": "A generator for PHP code based on Twig template engine",
  108. "keywords": [
  109. "code generation",
  110. "generator",
  111. "twig"
  112. ]
  113. },
  114. {
  115. "name": "doctrine/common",
  116. "version": "2.3.x-dev",
  117. "source": {
  118. "type": "git",
  119. "url": "https://github.com/doctrine/common.git",
  120. "reference": "bb0aebbf234db52df476a2b473d434745b34221c"
  121. },
  122. "dist": {
  123. "type": "zip",
  124. "url": "https://api.github.com/repos/doctrine/common/zipball/bb0aebbf234db52df476a2b473d434745b34221c",
  125. "reference": "bb0aebbf234db52df476a2b473d434745b34221c",
  126. "shasum": ""
  127. },
  128. "require": {
  129. "php": ">=5.3.2"
  130. },
  131. "time": "2012-09-20 05:55:18",
  132. "type": "library",
  133. "extra": {
  134. "branch-alias": {
  135. "dev-master": "2.3.x-dev"
  136. }
  137. },
  138. "autoload": {
  139. "psr-0": {
  140. "Doctrine\\Common": "lib/"
  141. }
  142. },
  143. "notification-url": "https://packagist.org/downloads/",
  144. "license": [
  145. "MIT"
  146. ],
  147. "authors": [
  148. {
  149. "name": "Jonathan Wage",
  150. "email": "jonwage@gmail.com",
  151. "homepage": "http://www.jwage.com/"
  152. },
  153. {
  154. "name": "Guilherme Blanco",
  155. "email": "guilhermeblanco@gmail.com",
  156. "homepage": "http://www.instaclick.com"
  157. },
  158. {
  159. "name": "Roman Borschel",
  160. "email": "roman@code-factory.org"
  161. },
  162. {
  163. "name": "Benjamin Eberlei",
  164. "email": "kontakt@beberlei.de"
  165. },
  166. {
  167. "name": "Johannes Schmitt",
  168. "email": "schmittjoh@gmail.com",
  169. "homepage": "https://github.com/schmittjoh",
  170. "role": "Developer of wrapped JMSSerializerBundle"
  171. }
  172. ],
  173. "description": "Common Library for Doctrine projects",
  174. "homepage": "http://www.doctrine-project.org",
  175. "keywords": [
  176. "annotations",
  177. "collections",
  178. "eventmanager",
  179. "persistence",
  180. "spl"
  181. ]
  182. },
  183. {
  184. "name": "doctrine/data-fixtures",
  185. "version": "dev-master",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/doctrine/data-fixtures.git",
  189. "reference": "689bc2ae2a41dff1107d9d50e2daa4c349222869"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/689bc2ae2a41dff1107d9d50e2daa4c349222869",
  194. "reference": "689bc2ae2a41dff1107d9d50e2daa4c349222869",
  195. "shasum": ""
  196. },
  197. "require": {
  198. "doctrine/common": ">=2.2,<2.5-dev",
  199. "php": ">=5.3.2"
  200. },
  201. "require-dev": {
  202. "doctrine/orm": ">=2.2,<2.5-dev"
  203. },
  204. "suggest": {
  205. "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
  206. "doctrine/orm": "For loading ORM fixtures",
  207. "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
  208. },
  209. "time": "2013-02-12 02:52:36",
  210. "type": "library",
  211. "extra": {
  212. "branch-alias": {
  213. "dev-master": "1.0.x-dev"
  214. }
  215. },
  216. "autoload": {
  217. "psr-0": {
  218. "Doctrine\\Common\\DataFixtures": "lib/"
  219. }
  220. },
  221. "notification-url": "https://packagist.org/downloads/",
  222. "license": [
  223. "MIT"
  224. ],
  225. "authors": [
  226. {
  227. "name": "Jonathan Wage",
  228. "email": "jonwage@gmail.com",
  229. "homepage": "http://www.jwage.com/"
  230. }
  231. ],
  232. "description": "Data Fixtures for all Doctrine Object Managers",
  233. "homepage": "http://www.doctrine-project.org",
  234. "keywords": [
  235. "database"
  236. ]
  237. },
  238. {
  239. "name": "doctrine/dbal",
  240. "version": "2.3.x-dev",
  241. "source": {
  242. "type": "git",
  243. "url": "https://github.com/doctrine/dbal.git",
  244. "reference": "fd45c6f6baa618d871f3201fabe76df5043abb1e"
  245. },
  246. "dist": {
  247. "type": "zip",
  248. "url": "https://api.github.com/repos/doctrine/dbal/zipball/fd45c6f6baa618d871f3201fabe76df5043abb1e",
  249. "reference": "fd45c6f6baa618d871f3201fabe76df5043abb1e",
  250. "shasum": ""
  251. },
  252. "require": {
  253. "doctrine/common": "2.3.*",
  254. "php": ">=5.3.2"
  255. },
  256. "time": "2013-01-20 11:50:36",
  257. "type": "library",
  258. "extra": {
  259. "branch-alias": {
  260. "dev-master": "2.3.x-dev"
  261. }
  262. },
  263. "autoload": {
  264. "psr-0": {
  265. "Doctrine\\DBAL": "lib/"
  266. }
  267. },
  268. "notification-url": "https://packagist.org/downloads/",
  269. "license": [
  270. "MIT"
  271. ],
  272. "authors": [
  273. {
  274. "name": "Jonathan Wage",
  275. "email": "jonwage@gmail.com",
  276. "homepage": "http://www.jwage.com/"
  277. },
  278. {
  279. "name": "Guilherme Blanco",
  280. "email": "guilhermeblanco@gmail.com",
  281. "homepage": "http://www.instaclick.com"
  282. },
  283. {
  284. "name": "Roman Borschel",
  285. "email": "roman@code-factory.org"
  286. },
  287. {
  288. "name": "Benjamin Eberlei",
  289. "email": "kontakt@beberlei.de"
  290. }
  291. ],
  292. "description": "Database Abstraction Layer",
  293. "homepage": "http://www.doctrine-project.org",
  294. "keywords": [
  295. "database",
  296. "dbal",
  297. "persistence",
  298. "queryobject"
  299. ]
  300. },
  301. {
  302. "name": "doctrine/doctrine-bundle",
  303. "version": "1.1.x-dev",
  304. "target-dir": "Doctrine/Bundle/DoctrineBundle",
  305. "source": {
  306. "type": "git",
  307. "url": "git://github.com/doctrine/DoctrineBundle.git",
  308. "reference": "78b3680da8ae38f87df83a100e2e3a6820dd6177"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/78b3680da8ae38f87df83a100e2e3a6820dd6177",
  313. "reference": "78b3680da8ae38f87df83a100e2e3a6820dd6177",
  314. "shasum": ""
  315. },
  316. "require": {
  317. "doctrine/dbal": ">=2.2,<2.5-dev",
  318. "jdorn/sql-formatter": ">=1.1,<2.0",
  319. "php": ">=5.3.2",
  320. "symfony/doctrine-bridge": "2.1.*",
  321. "symfony/framework-bundle": "2.1.*"
  322. },
  323. "require-dev": {
  324. "doctrine/orm": ">=2.2,<2.5-dev",
  325. "symfony/validator": "2.1.*",
  326. "symfony/yaml": "2.1.*"
  327. },
  328. "suggest": {
  329. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle."
  330. },
  331. "time": "2013-01-12 14:40:52",
  332. "type": "symfony-bundle",
  333. "extra": {
  334. "branch-alias": {
  335. "dev-master": "1.1.x-dev"
  336. }
  337. },
  338. "autoload": {
  339. "psr-0": {
  340. "Doctrine\\Bundle\\DoctrineBundle": ""
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "authors": [
  348. {
  349. "name": "Fabien Potencier",
  350. "email": "fabien@symfony.com"
  351. },
  352. {
  353. "name": "Symfony Community",
  354. "homepage": "http://symfony.com/contributors"
  355. },
  356. {
  357. "name": "Benjamin Eberlei",
  358. "email": "kontakt@beberlei.de"
  359. }
  360. ],
  361. "description": "Symfony DoctrineBundle",
  362. "homepage": "http://www.doctrine-project.org",
  363. "keywords": [
  364. "database",
  365. "dbal",
  366. "orm",
  367. "persistence"
  368. ]
  369. },
  370. {
  371. "name": "doctrine/doctrine-fixtures-bundle",
  372. "version": "dev-master",
  373. "target-dir": "Doctrine/Bundle/FixturesBundle",
  374. "source": {
  375. "type": "git",
  376. "url": "https://github.com/doctrine/DoctrineFixturesBundle.git",
  377. "reference": "275540d96599baec19fa3292c4d06c5cd4eefd06"
  378. },
  379. "dist": {
  380. "type": "zip",
  381. "url": "https://api.github.com/repos/doctrine/DoctrineFixturesBundle/zipball/275540d96599baec19fa3292c4d06c5cd4eefd06",
  382. "reference": "275540d96599baec19fa3292c4d06c5cd4eefd06",
  383. "shasum": ""
  384. },
  385. "require": {
  386. "doctrine/data-fixtures": "*",
  387. "doctrine/doctrine-bundle": ">=1.0,<2.0",
  388. "php": ">=5.3.2",
  389. "symfony/doctrine-bridge": ">=2.1.0,<2.3-dev"
  390. },
  391. "time": "2013-02-12 11:13:27",
  392. "type": "symfony-bundle",
  393. "extra": {
  394. "branch-alias": {
  395. "dev-master": "2.1.x-dev"
  396. }
  397. },
  398. "autoload": {
  399. "psr-0": {
  400. "Doctrine\\Bundle\\FixturesBundle": ""
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Fabien Potencier",
  410. "email": "fabien@symfony.com"
  411. },
  412. {
  413. "name": "Symfony Community",
  414. "homepage": "http://symfony.com/contributors"
  415. },
  416. {
  417. "name": "Doctrine Project",
  418. "homepage": "http://www.doctrine-project.org"
  419. }
  420. ],
  421. "description": "Symfony DoctrineFixturesBundle",
  422. "homepage": "http://www.doctrine-project.org",
  423. "keywords": [
  424. "Fixture",
  425. "persistence"
  426. ]
  427. },
  428. {
  429. "name": "doctrine/orm",
  430. "version": "2.3.x-dev",
  431. "source": {
  432. "type": "git",
  433. "url": "https://github.com/doctrine/doctrine2.git",
  434. "reference": "fdd0af34e6fced967b8751bc3e4792c11ef86d57"
  435. },
  436. "dist": {
  437. "type": "zip",
  438. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/fdd0af34e6fced967b8751bc3e4792c11ef86d57",
  439. "reference": "fdd0af34e6fced967b8751bc3e4792c11ef86d57",
  440. "shasum": ""
  441. },
  442. "require": {
  443. "doctrine/dbal": "2.3.*",
  444. "ext-pdo": "*",
  445. "php": ">=5.3.2",
  446. "symfony/console": "2.*"
  447. },
  448. "suggest": {
  449. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  450. },
  451. "time": "2013-01-20 19:35:21",
  452. "bin": [
  453. "bin/doctrine",
  454. "bin/doctrine.php"
  455. ],
  456. "type": "library",
  457. "extra": {
  458. "branch-alias": {
  459. "dev-master": "2.3.x-dev"
  460. }
  461. },
  462. "autoload": {
  463. "psr-0": {
  464. "Doctrine\\ORM": "lib/"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Jonathan Wage",
  474. "email": "jonwage@gmail.com",
  475. "homepage": "http://www.jwage.com/"
  476. },
  477. {
  478. "name": "Guilherme Blanco",
  479. "email": "guilhermeblanco@gmail.com",
  480. "homepage": "http://www.instaclick.com"
  481. },
  482. {
  483. "name": "Roman Borschel",
  484. "email": "roman@code-factory.org"
  485. },
  486. {
  487. "name": "Benjamin Eberlei",
  488. "email": "kontakt@beberlei.de"
  489. }
  490. ],
  491. "description": "Object-Relational-Mapper for PHP",
  492. "homepage": "http://www.doctrine-project.org",
  493. "keywords": [
  494. "database",
  495. "orm"
  496. ]
  497. },
  498. {
  499. "name": "friendsofsymfony/user-bundle",
  500. "version": "v1.3.1",
  501. "target-dir": "FOS/UserBundle",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle",
  505. "reference": "v1.3.1"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle/archive/v1.3.1.zip",
  510. "reference": "v1.3.1",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "php": ">=5.3.2",
  515. "symfony/framework-bundle": ">=2.1,<2.3-dev",
  516. "symfony/security-bundle": ">=2.1,<2.3-dev"
  517. },
  518. "require-dev": {
  519. "doctrine/doctrine-bundle": "*",
  520. "swiftmailer/swiftmailer": "*",
  521. "symfony/validator": "2.1.*",
  522. "symfony/yaml": "2.1.*",
  523. "twig/twig": "*",
  524. "willdurand/propel-typehintable-behavior": "dev-master"
  525. },
  526. "time": "2012-12-22 15:09:34",
  527. "type": "symfony-bundle",
  528. "extra": {
  529. "branch-alias": {
  530. "dev-master": "2.0.x-dev"
  531. }
  532. },
  533. "autoload": {
  534. "psr-0": {
  535. "FOS\\UserBundle": ""
  536. }
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "MIT"
  541. ],
  542. "authors": [
  543. {
  544. "name": "Christophe Coevoet",
  545. "email": "stof@notk.org"
  546. },
  547. {
  548. "name": "Thibault Duplessis",
  549. "email": "thibault.duplessis@gmail.com",
  550. "homepage": "http://ornicar.github.com"
  551. },
  552. {
  553. "name": "FriendsOfSymfony Community",
  554. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  555. }
  556. ],
  557. "description": "Symfony FOSUserBundle",
  558. "homepage": "http://friendsofsymfony.github.com",
  559. "keywords": [
  560. "User management"
  561. ]
  562. },
  563. {
  564. "name": "gedmo/doctrine-extensions",
  565. "version": "dev-master",
  566. "source": {
  567. "type": "git",
  568. "url": "git://github.com/l3pp4rd/DoctrineExtensions.git",
  569. "reference": "b2806e409f21132e814203e36810b7112453a858"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/l3pp4rd/DoctrineExtensions/zipball/b2806e409f21132e814203e36810b7112453a858",
  574. "reference": "b2806e409f21132e814203e36810b7112453a858",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "doctrine/common": ">=2.2,<2.5-dev",
  579. "php": ">=5.3.2"
  580. },
  581. "require-dev": {
  582. "doctrine/dbal": ">=2.2",
  583. "doctrine/mongodb": "1.0.1",
  584. "doctrine/mongodb-odm": "1.0.0-BETA7",
  585. "doctrine/orm": ">=2.2",
  586. "symfony/yaml": "2.*"
  587. },
  588. "suggest": {
  589. "doctrine/dbal": ">=2.3.2",
  590. "doctrine/mongodb": ">=1.0.1",
  591. "doctrine/mongodb-odm": ">=1.0.0-BETA7",
  592. "doctrine/orm": ">=2.3.2"
  593. },
  594. "time": "2013-02-13 19:35:33",
  595. "type": "library",
  596. "extra": {
  597. "branch-alias": {
  598. "dev-master": "2.3.x-dev"
  599. }
  600. },
  601. "autoload": {
  602. "psr-0": {
  603. "Gedmo": "lib/"
  604. }
  605. },
  606. "notification-url": "https://packagist.org/downloads/",
  607. "license": [
  608. "MIT"
  609. ],
  610. "authors": [
  611. {
  612. "name": "David Buchmann",
  613. "email": "david@liip.ch"
  614. },
  615. {
  616. "name": "Gediminas Morkevicius",
  617. "email": "gediminas.morkevicius@gmail.com"
  618. },
  619. {
  620. "name": "Gustavo Falco",
  621. "email": "comfortablynumb84@gmail.com"
  622. }
  623. ],
  624. "description": "Doctrine2 behavioral extensions",
  625. "homepage": "http://gediminasm.org/",
  626. "keywords": [
  627. "Blameable",
  628. "behaviors",
  629. "doctrine2",
  630. "extensions",
  631. "gedmo",
  632. "loggable",
  633. "nestedset",
  634. "sluggable",
  635. "sortable",
  636. "timestampable",
  637. "translatable",
  638. "tree",
  639. "uploadable"
  640. ]
  641. },
  642. {
  643. "name": "gregwar/image-bundle",
  644. "version": "dev-master",
  645. "target-dir": "Gregwar/ImageBundle",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/Gregwar/ImageBundle.git",
  649. "reference": "89a973adb0b404c289bf6b621d8f6a403b318607"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/Gregwar/ImageBundle/zipball/89a973adb0b404c289bf6b621d8f6a403b318607",
  654. "reference": "89a973adb0b404c289bf6b621d8f6a403b318607",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "ext-gd": "*",
  659. "php": ">=5.3.0"
  660. },
  661. "time": "2013-02-08 16:09:45",
  662. "type": "symfony-bundle",
  663. "autoload": {
  664. "psr-0": {
  665. "Gregwar\\ImageBundle": ""
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "MIT"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Grégoire Passault",
  675. "email": "g.passault@gmail.com",
  676. "homepage": "http://www.gregwar.com/"
  677. }
  678. ],
  679. "description": "Image handling bundle",
  680. "homepage": "https://github.com/Gregwar/ImageBundle",
  681. "keywords": [
  682. "Symfony2",
  683. "image"
  684. ]
  685. },
  686. {
  687. "name": "jdorn/sql-formatter",
  688. "version": "dev-master",
  689. "source": {
  690. "type": "git",
  691. "url": "git://github.com/jdorn/sql-formatter.git",
  692. "reference": "7a92826fe2734518e9cd6ebcf1ba052e58351c34"
  693. },
  694. "dist": {
  695. "type": "zip",
  696. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/7a92826fe2734518e9cd6ebcf1ba052e58351c34",
  697. "reference": "7a92826fe2734518e9cd6ebcf1ba052e58351c34",
  698. "shasum": ""
  699. },
  700. "require": {
  701. "php": ">=5.2.4"
  702. },
  703. "time": "2013-02-11 00:21:20",
  704. "type": "library",
  705. "extra": {
  706. "branch-alias": {
  707. "dev-master": "1.3.x-dev"
  708. }
  709. },
  710. "autoload": {
  711. "classmap": [
  712. "lib"
  713. ]
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "LGPL"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Jeremy Dorn",
  722. "email": "jeremy@jeremydorn.com",
  723. "homepage": "http://jeremydorn.com/"
  724. }
  725. ],
  726. "description": "a PHP SQL highlighting library",
  727. "homepage": "https://github.com/jdorn/sql-formatter/",
  728. "keywords": [
  729. "highlight",
  730. "sql"
  731. ]
  732. },
  733. {
  734. "name": "jms/aop-bundle",
  735. "version": "1.0.0",
  736. "target-dir": "JMS/AopBundle",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/schmittjoh/JMSAopBundle",
  740. "reference": "1.0.0"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://github.com/schmittjoh/JMSAopBundle/zipball/1.0.0",
  745. "reference": "1.0.0",
  746. "shasum": ""
  747. },
  748. "require": {
  749. "jms/cg": "1.0.0",
  750. "symfony/framework-bundle": "2.*"
  751. },
  752. "time": "2012-01-02 12:50:26",
  753. "type": "symfony-bundle",
  754. "autoload": {
  755. "psr-0": {
  756. "JMS\\AopBundle": ""
  757. }
  758. },
  759. "notification-url": "https://packagist.org/downloads/",
  760. "license": [
  761. "Apache"
  762. ],
  763. "authors": [
  764. {
  765. "name": "Johannes M. Schmitt",
  766. "email": "schmittjoh@gmail.com",
  767. "homepage": "https://github.com/schmittjoh",
  768. "role": "Developer of wrapped JMSSerializerBundle"
  769. }
  770. ],
  771. "description": "Adds AOP capabilities to Symfony2",
  772. "keywords": [
  773. "annotations",
  774. "aop"
  775. ]
  776. },
  777. {
  778. "name": "jms/cg",
  779. "version": "1.0.0",
  780. "source": {
  781. "type": "git",
  782. "url": "git://github.com/schmittjoh/cg-library.git",
  783. "reference": "1.0.0"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://github.com/schmittjoh/cg-library/zipball/1.0.0",
  788. "reference": "1.0.0",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "php": ">=5.3.0"
  793. },
  794. "time": "2012-01-02 12:40:52",
  795. "type": "library",
  796. "autoload": {
  797. "psr-0": {
  798. "CG\\": "src/"
  799. }
  800. },
  801. "notification-url": "https://packagist.org/downloads/",
  802. "license": [
  803. "Apache"
  804. ],
  805. "authors": [
  806. {
  807. "name": "Johannes M. Schmitt",
  808. "email": "schmittjoh@gmail.com",
  809. "homepage": "https://github.com/schmittjoh",
  810. "role": "Developer of wrapped JMSSerializerBundle"
  811. }
  812. ],
  813. "description": "Toolset for generating PHP code",
  814. "keywords": [
  815. "code generation"
  816. ]
  817. },
  818. {
  819. "name": "jms/di-extra-bundle",
  820. "version": "1.1.x-dev",
  821. "target-dir": "JMS/DiExtraBundle",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/schmittjoh/JMSDiExtraBundle",
  825. "reference": "1.1.1"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/1.1.1",
  830. "reference": "1.1.1",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "jms/aop-bundle": "1.0.*",
  835. "jms/metadata": "1.1.*",
  836. "symfony/finder": "2.1.*",
  837. "symfony/framework-bundle": "2.1.*",
  838. "symfony/process": "2.1.*"
  839. },
  840. "require-dev": {
  841. "doctrine/doctrine-bundle": "*",
  842. "doctrine/orm": "*",
  843. "jms/security-extra-bundle": "1.*",
  844. "sensio/framework-extra-bundle": "*",
  845. "symfony/browser-kit": "*",
  846. "symfony/class-loader": "*",
  847. "symfony/form": "*",
  848. "symfony/security-bundle": "*",
  849. "symfony/twig-bundle": "*",
  850. "symfony/validator": "*",
  851. "symfony/yaml": "*"
  852. },
  853. "time": "2012-09-21 08:56:32",
  854. "type": "symfony-bundle",
  855. "autoload": {
  856. "psr-0": {
  857. "JMS\\DiExtraBundle": ""
  858. }
  859. },
  860. "notification-url": "https://packagist.org/downloads/",
  861. "license": [
  862. "Apache"
  863. ],
  864. "authors": [
  865. {
  866. "name": "Johannes M. Schmitt",
  867. "email": "schmittjoh@gmail.com",
  868. "homepage": "https://github.com/schmittjoh",
  869. "role": "Developer of wrapped JMSSerializerBundle"
  870. }
  871. ],
  872. "description": "Allows to configure dependency injection using annotations",
  873. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  874. "keywords": [
  875. "annotations",
  876. "dependency injection"
  877. ]
  878. },
  879. {
  880. "name": "jms/metadata",
  881. "version": "1.1.1",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/schmittjoh/metadata",
  885. "reference": "1.1.1"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://github.com/schmittjoh/metadata/zipball/1.1.1",
  890. "reference": "1.1.1",
  891. "shasum": ""
  892. },
  893. "require": {
  894. "php": ">=5.3.0"
  895. },
  896. "time": "2012-01-02 13:32:49",
  897. "type": "library",
  898. "autoload": {
  899. "psr-0": {
  900. "Metadata\\": "src/"
  901. }
  902. },
  903. "notification-url": "https://packagist.org/downloads/",
  904. "license": [
  905. "Apache"
  906. ],
  907. "authors": [
  908. {
  909. "name": "Johannes M. Schmitt",
  910. "email": "schmittjoh@gmail.com",
  911. "homepage": "https://github.com/schmittjoh",
  912. "role": "Developer of wrapped JMSSerializerBundle"
  913. }
  914. ],
  915. "description": "Class/method/property metadata management in PHP",
  916. "keywords": [
  917. "annotations",
  918. "metadata",
  919. "xml",
  920. "yaml"
  921. ]
  922. },
  923. {
  924. "name": "jms/security-extra-bundle",
  925. "version": "1.2.x-dev",
  926. "target-dir": "JMS/SecurityExtraBundle",
  927. "source": {
  928. "type": "git",
  929. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  930. "reference": "9ab6aceda50fc7a2b07d741ba4b3f0695508afcb"
  931. },
  932. "dist": {
  933. "type": "zip",
  934. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/9ab6aceda50fc7a2b07d741ba4b3f0695508afcb",
  935. "reference": "9ab6aceda50fc7a2b07d741ba4b3f0695508afcb",
  936. "shasum": ""
  937. },
  938. "require": {
  939. "jms/aop-bundle": "1.0.*",
  940. "jms/di-extra-bundle": "1.1.*",
  941. "jms/metadata": "1.1.*",
  942. "symfony/framework-bundle": "2.1.*",
  943. "symfony/security-bundle": "*"
  944. },
  945. "require-dev": {
  946. "doctrine/doctrine-bundle": "*",
  947. "doctrine/orm": "*",
  948. "sensio/framework-extra-bundle": "*",
  949. "symfony/browser-kit": "*",
  950. "symfony/class-loader": "*",
  951. "symfony/css-selector": "*",
  952. "symfony/finder": "*",
  953. "symfony/form": "*",
  954. "symfony/process": "*",
  955. "symfony/twig-bundle": "*",
  956. "symfony/validator": "*",
  957. "symfony/yaml": "*"
  958. },
  959. "time": "2012-09-06 16:12:23",
  960. "type": "symfony-bundle",
  961. "autoload": {
  962. "psr-0": {
  963. "JMS\\SecurityExtraBundle": ""
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "Apache2"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Johannes M. Schmitt",
  973. "email": "schmittjoh@gmail.com",
  974. "homepage": "https://github.com/schmittjoh",
  975. "role": "Developer of wrapped JMSSerializerBundle"
  976. }
  977. ],
  978. "description": "Enhances the Symfony2 Security Component by adding several new features",
  979. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  980. "keywords": [
  981. "annotations",
  982. "authorization",
  983. "expression",
  984. "secure",
  985. "security"
  986. ]
  987. },
  988. {
  989. "name": "knplabs/knp-menu",
  990. "version": "dev-master",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/KnpLabs/KnpMenu.git",
  994. "reference": "730bc37232f5f813822acf80edfbd89381ea5971"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/730bc37232f5f813822acf80edfbd89381ea5971",
  999. "reference": "730bc37232f5f813822acf80edfbd89381ea5971",
  1000. "shasum": ""
  1001. },
  1002. "require": {
  1003. "php": ">=5.3.0"
  1004. },
  1005. "require-dev": {
  1006. "pimple/pimple": "1.0.*",
  1007. "silex/silex": "1.0.*",
  1008. "twig/twig": ">=1.2,<2.0-dev"
  1009. },
  1010. "suggest": {
  1011. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1012. "silex/silex": "for the integration with your silex application",
  1013. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1014. },
  1015. "time": "2012-12-27 13:04:16",
  1016. "type": "library",
  1017. "extra": {
  1018. "branch-alias": {
  1019. "dev-master": "2.0.x-dev"
  1020. }
  1021. },
  1022. "autoload": {
  1023. "psr-0": {
  1024. "Knp\\Menu\\": "src/"
  1025. }
  1026. },
  1027. "notification-url": "https://packagist.org/downloads/",
  1028. "license": [
  1029. "MIT"
  1030. ],
  1031. "authors": [
  1032. {
  1033. "name": "Christophe Coevoet",
  1034. "email": "stof@notk.org"
  1035. },
  1036. {
  1037. "name": "KnpLabs",
  1038. "homepage": "http://knplabs.com"
  1039. },
  1040. {
  1041. "name": "Symfony Community",
  1042. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1043. }
  1044. ],
  1045. "description": "An object oriented menu library",
  1046. "homepage": "http://knplabs.com",
  1047. "keywords": [
  1048. "menu",
  1049. "tree"
  1050. ]
  1051. },
  1052. {
  1053. "name": "knplabs/knp-menu-bundle",
  1054. "version": "dev-master",
  1055. "target-dir": "Knp/Bundle/MenuBundle",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1059. "reference": "bfaa9f1a74ee590c5e6460a3139b268fce1f1885"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/bfaa9f1a74ee590c5e6460a3139b268fce1f1885",
  1064. "reference": "bfaa9f1a74ee590c5e6460a3139b268fce1f1885",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "knplabs/knp-menu": "2.0.*",
  1069. "symfony/framework-bundle": ">=2.0,<2.3-dev"
  1070. },
  1071. "time": "2012-12-29 08:47:58",
  1072. "type": "symfony-bundle",
  1073. "extra": {
  1074. "branch-alias": {
  1075. "dev-master": "2.0.x-dev"
  1076. }
  1077. },
  1078. "autoload": {
  1079. "psr-0": {
  1080. "Knp\\Bundle\\MenuBundle": ""
  1081. }
  1082. },
  1083. "notification-url": "https://packagist.org/downloads/",
  1084. "license": [
  1085. "MIT"
  1086. ],
  1087. "authors": [
  1088. {
  1089. "name": "Christophe Coevoet",
  1090. "email": "stof@notk.org"
  1091. },
  1092. {
  1093. "name": "Knplabs",
  1094. "homepage": "http://knplabs.com"
  1095. },
  1096. {
  1097. "name": "Symfony Community",
  1098. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1099. }
  1100. ],
  1101. "description": "This bundle provides an integration of the KnpMenu library",
  1102. "keywords": [
  1103. "menu"
  1104. ]
  1105. },
  1106. {
  1107. "name": "kriswallsmith/assetic",
  1108. "version": "dev-master",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "http://github.com/kriswallsmith/assetic.git",
  1112. "reference": "504c9e8a6357583c20c9d9967ec2febea3157324"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/kriswallsmith/assetic/zipball/504c9e8a6357583c20c9d9967ec2febea3157324",
  1117. "reference": "504c9e8a6357583c20c9d9967ec2febea3157324",
  1118. "shasum": ""
  1119. },
  1120. "require": {
  1121. "php": ">=5.3.1",
  1122. "symfony/process": ">=2.1.0,<2.3-dev"
  1123. },
  1124. "require-dev": {
  1125. "cssmin/cssmin": "*",
  1126. "joliclic/javascript-packer": "*",
  1127. "kamicane/packager": "*",
  1128. "leafo/lessphp": "*",
  1129. "leafo/scssphp": "*",
  1130. "leafo/scssphp-compass": "*",
  1131. "mrclay/minify": "*",
  1132. "phpunit/phpunit": "3.7.*",
  1133. "ptachoire/cssembed": "*",
  1134. "twig/twig": ">=1.6.0,<2.0"
  1135. },
  1136. "suggest": {
  1137. "leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
  1138. "leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
  1139. "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin",
  1140. "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
  1141. "twig/twig": "Assetic provides the integration with the Twig templating engine"
  1142. },
  1143. "time": "2013-02-11 18:18:06",
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "1.1-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-0": {
  1152. "Assetic": "src/"
  1153. },
  1154. "files": [
  1155. "src/functions.php"
  1156. ]
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "MIT"
  1161. ],
  1162. "authors": [
  1163. {
  1164. "name": "Kris Wallsmith",
  1165. "email": "kris.wallsmith@gmail.com",
  1166. "homepage": "http://kriswallsmith.net/"
  1167. }
  1168. ],
  1169. "description": "Asset Management for PHP",
  1170. "homepage": "https://github.com/kriswallsmith/assetic",
  1171. "keywords": [
  1172. "assets",
  1173. "compression",
  1174. "minification"
  1175. ]
  1176. },
  1177. {
  1178. "name": "monolog/monolog",
  1179. "version": "1.2.1",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/Seldaek/monolog",
  1183. "reference": "1.2.1"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1.2.1",
  1188. "reference": "1.2.1",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "php": ">=5.3.0"
  1193. },
  1194. "require-dev": {
  1195. "mlehner/gelf-php": "1.0.*"
  1196. },
  1197. "suggest": {
  1198. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1199. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1200. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server"
  1201. },
  1202. "time": "2012-08-29 11:53:20",
  1203. "type": "library",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "1.3.x-dev"
  1207. }
  1208. },
  1209. "autoload": {
  1210. "psr-0": {
  1211. "Monolog": "src/"
  1212. }
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Jordi Boggiano",
  1221. "email": "j.boggiano@seld.be",
  1222. "homepage": "http://seld.be",
  1223. "role": "Developer"
  1224. }
  1225. ],
  1226. "description": "Logging for PHP 5.3",
  1227. "homepage": "http://github.com/Seldaek/monolog",
  1228. "keywords": [
  1229. "log",
  1230. "logging"
  1231. ]
  1232. },
  1233. {
  1234. "name": "pagerfanta/pagerfanta",
  1235. "version": "dev-master",
  1236. "source": {
  1237. "type": "git",
  1238. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  1239. "reference": "2608116b1d0908c07f6590bc10addab37fd4a49f"
  1240. },
  1241. "dist": {
  1242. "type": "zip",
  1243. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/2608116b1d0908c07f6590bc10addab37fd4a49f",
  1244. "reference": "2608116b1d0908c07f6590bc10addab37fd4a49f",
  1245. "shasum": ""
  1246. },
  1247. "require": {
  1248. "php": ">=5.3.0"
  1249. },
  1250. "suggest": {
  1251. "doctrine/mongodb-odm": "2.*",
  1252. "doctrine/orm": "2.*",
  1253. "solarium/solarium": "2.*"
  1254. },
  1255. "time": "2013-02-17 21:13:14",
  1256. "type": "library",
  1257. "extra": {
  1258. "branch-alias": {
  1259. "dev-master": "1.0.x-dev"
  1260. }
  1261. },
  1262. "autoload": {
  1263. "psr-0": {
  1264. "Pagerfanta\\": "src/"
  1265. }
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Pablo Díez",
  1274. "email": "pablodip@gmail.com",
  1275. "homepage": "http://github.com/pablodip"
  1276. }
  1277. ],
  1278. "description": "Pagination for PHP 5.3",
  1279. "keywords": [
  1280. "page",
  1281. "paging"
  1282. ]
  1283. },
  1284. {
  1285. "name": "sensio/distribution-bundle",
  1286. "version": "2.1.x-dev",
  1287. "target-dir": "Sensio/Bundle/DistributionBundle",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/sensio/SensioDistributionBundle",
  1291. "reference": "615f76309dae8c45c72b69578b034713c09767d1"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/sensio/SensioDistributionBundle/zipball/615f76309dae8c45c72b69578b034713c09767d1",
  1296. "reference": "615f76309dae8c45c72b69578b034713c09767d1",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "symfony/framework-bundle": "2.1.*"
  1301. },
  1302. "time": "2013-02-04 19:54:42",
  1303. "type": "symfony-bundle",
  1304. "extra": {
  1305. "branch-alias": {
  1306. "dev-master": "2.1.x-dev"
  1307. }
  1308. },
  1309. "autoload": {
  1310. "psr-0": {
  1311. "Sensio\\Bundle\\DistributionBundle": ""
  1312. }
  1313. },
  1314. "notification-url": "https://packagist.org/downloads/",
  1315. "license": [
  1316. "MIT"
  1317. ],
  1318. "authors": [
  1319. {
  1320. "name": "Fabien Potencier",
  1321. "email": "fabien@symfony.com"
  1322. }
  1323. ],
  1324. "description": "The base bundle for the Symfony Distributions",
  1325. "keywords": [
  1326. "configuration",
  1327. "distribution"
  1328. ]
  1329. },
  1330. {
  1331. "name": "sensio/framework-extra-bundle",
  1332. "version": "2.1.x-dev",
  1333. "target-dir": "Sensio/Bundle/FrameworkExtraBundle",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/sensio/SensioFrameworkExtraBundle",
  1337. "reference": "v2.1.7"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://api.github.com/repos/sensio/SensioFrameworkExtraBundle/zipball/v2.1.7",
  1342. "reference": "v2.1.7",
  1343. "shasum": ""
  1344. },
  1345. "require": {
  1346. "doctrine/common": ">=2.1,<2.4-dev",
  1347. "symfony/framework-bundle": "2.1.*"
  1348. },
  1349. "time": "2013-01-04 17:06:26",
  1350. "type": "symfony-bundle",
  1351. "extra": {
  1352. "branch-alias": {
  1353. "dev-master": "2.1.x-dev"
  1354. }
  1355. },
  1356. "autoload": {
  1357. "psr-0": {
  1358. "Sensio\\Bundle\\FrameworkExtraBundle": ""
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "authors": [
  1366. {
  1367. "name": "Fabien Potencier",
  1368. "email": "fabien@symfony.com"
  1369. }
  1370. ],
  1371. "description": "This bundle provides a way to configure your controllers with annotations",
  1372. "keywords": [
  1373. "annotations",
  1374. "controllers"
  1375. ]
  1376. },
  1377. {
  1378. "name": "sensio/generator-bundle",
  1379. "version": "2.1.x-dev",
  1380. "target-dir": "Sensio/Bundle/GeneratorBundle",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/sensio/SensioGeneratorBundle",
  1384. "reference": "v2.1.7"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://api.github.com/repos/sensio/SensioGeneratorBundle/zipball/v2.1.7",
  1389. "reference": "v2.1.7",
  1390. "shasum": ""
  1391. },
  1392. "require": {
  1393. "symfony/console": "2.1.*",
  1394. "symfony/framework-bundle": "2.1.*"
  1395. },
  1396. "require-dev": {
  1397. "doctrine/orm": ">=2.1,<2.4-dev",
  1398. "symfony/doctrine-bridge": "2.1.*",
  1399. "twig/twig": ">=1.8,<2.0-dev"
  1400. },
  1401. "time": "2013-01-04 17:09:08",
  1402. "type": "symfony-bundle",
  1403. "extra": {
  1404. "branch-alias": {
  1405. "dev-master": "2.1.x-dev"
  1406. }
  1407. },
  1408. "autoload": {
  1409. "psr-0": {
  1410. "Sensio\\Bundle\\GeneratorBundle": ""
  1411. }
  1412. },
  1413. "notification-url": "https://packagist.org/downloads/",
  1414. "license": [
  1415. "MIT"
  1416. ],
  1417. "authors": [
  1418. {
  1419. "name": "Fabien Potencier",
  1420. "email": "fabien@symfony.com"
  1421. }
  1422. ],
  1423. "description": "This bundle generates code for you"
  1424. },
  1425. {
  1426. "name": "stof/doctrine-extensions-bundle",
  1427. "version": "dev-master",
  1428. "target-dir": "Stof/DoctrineExtensionsBundle",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/stof/StofDoctrineExtensionsBundle.git",
  1432. "reference": "4a17550d8b101c5aafc56c9950149aa189b8402d"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://api.github.com/repos/stof/StofDoctrineExtensionsBundle/zipball/4a17550d8b101c5aafc56c9950149aa189b8402d",
  1437. "reference": "4a17550d8b101c5aafc56c9950149aa189b8402d",
  1438. "shasum": ""
  1439. },
  1440. "require": {
  1441. "gedmo/doctrine-extensions": "2.3.*",
  1442. "php": ">=5.3.2",
  1443. "symfony/framework-bundle": ">=2.1,<2.3-dev"
  1444. },
  1445. "suggest": {
  1446. "doctrine/doctrine-bundle": "*",
  1447. "doctrine/mongodb-odm-bundle": "2.1.*"
  1448. },
  1449. "time": "2012-12-13 17:58:07",
  1450. "type": "symfony-bundle",
  1451. "extra": {
  1452. "branch-alias": {
  1453. "dev-master": "1.1.x-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-0": {
  1458. "Stof\\DoctrineExtensionsBundle": ""
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Christophe Coevoet",
  1468. "email": "stof@notk.org"
  1469. }
  1470. ],
  1471. "description": "Integration of the gedmo/doctrine-extensions with Symfony2",
  1472. "homepage": "https://github.com/stof/StofDoctrineExtensionsBundle",
  1473. "keywords": [
  1474. "behaviors",
  1475. "doctrine2",
  1476. "extensions",
  1477. "gedmo",
  1478. "loggable",
  1479. "nestedset",
  1480. "sluggable",
  1481. "sortable",
  1482. "timestampable",
  1483. "translatable",
  1484. "tree"
  1485. ]
  1486. },
  1487. {
  1488. "name": "swiftmailer/swiftmailer",
  1489. "version": "v4.2.2",
  1490. "source": {
  1491. "type": "git",
  1492. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1493. "reference": "v4.2.2"
  1494. },
  1495. "dist": {
  1496. "type": "zip",
  1497. "url": "https://github.com/swiftmailer/swiftmailer/zipball/v4.2.2",
  1498. "reference": "v4.2.2",
  1499. "shasum": ""
  1500. },
  1501. "require": {
  1502. "php": ">=5.2.4"
  1503. },
  1504. "time": "2012-10-25 01:30:40",
  1505. "type": "library",
  1506. "extra": {
  1507. "branch-alias": {
  1508. "dev-master": "4.2-dev"
  1509. }
  1510. },
  1511. "autoload": {
  1512. "files": [
  1513. "lib/swift_required.php"
  1514. ]
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "LGPL"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "Fabien Potencier",
  1523. "email": "fabien@symfony.com"
  1524. },
  1525. {
  1526. "name": "Chris Corbyn"
  1527. }
  1528. ],
  1529. "description": "Swiftmailer, free feature-rich PHP mailer",
  1530. "homepage": "http://swiftmailer.org",
  1531. "keywords": [
  1532. "mail",
  1533. "mailer"
  1534. ]
  1535. },
  1536. {
  1537. "name": "symfony/assetic-bundle",
  1538. "version": "dev-master",
  1539. "target-dir": "Symfony/Bundle/AsseticBundle",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/symfony/AsseticBundle.git",
  1543. "reference": "16cb279ea283ce3fb30b8284a391a82512263d8b"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/symfony/AsseticBundle/zipball/16cb279ea283ce3fb30b8284a391a82512263d8b",
  1548. "reference": "16cb279ea283ce3fb30b8284a391a82512263d8b",
  1549. "shasum": ""
  1550. },
  1551. "require": {
  1552. "kriswallsmith/assetic": "1.1.*",
  1553. "php": ">=5.3.0",
  1554. "symfony/framework-bundle": ">=2.1.0,<2.3-dev"
  1555. },
  1556. "require-dev": {
  1557. "symfony/class-loader": ">=2.1.0,<2.3-dev",
  1558. "symfony/console": ">=2.1.0,<2.3-dev",
  1559. "symfony/css-selector": ">=2.1.0,<2.3-dev",
  1560. "symfony/dom-crawler": ">=2.1.0,<2.3-dev",
  1561. "symfony/form": ">=2.1.0,<2.3-dev",
  1562. "symfony/twig-bundle": ">=2.1.0,<2.3-dev",
  1563. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1564. },
  1565. "suggest": {
  1566. "symfony/twig-bundle": ">=2.1.0,<2.3-dev"
  1567. },
  1568. "time": "2013-02-17 21:36:13",
  1569. "type": "symfony-bundle",
  1570. "extra": {
  1571. "branch-alias": {
  1572. "dev-master": "2.1.x-dev"
  1573. }
  1574. },
  1575. "autoload": {
  1576. "psr-0": {
  1577. "Symfony\\Bundle\\AsseticBundle": ""
  1578. }
  1579. },
  1580. "notification-url": "https://packagist.org/downloads/",
  1581. "license": [
  1582. "MIT"
  1583. ],
  1584. "authors": [
  1585. {
  1586. "name": "Kris Wallsmith",
  1587. "email": "kris.wallsmith@gmail.com",
  1588. "homepage": "http://kriswallsmith.net/"
  1589. }
  1590. ],
  1591. "description": "Integrates Assetic into Symfony2",
  1592. "homepage": "https://github.com/symfony/AsseticBundle",
  1593. "keywords": [
  1594. "assets",
  1595. "compression",
  1596. "minification"
  1597. ]
  1598. },
  1599. {
  1600. "name": "symfony/monolog-bundle",
  1601. "version": "2.1.x-dev",
  1602. "target-dir": "Symfony/Bundle/MonologBundle",
  1603. "source": {
  1604. "type": "git",
  1605. "url": "https://github.com/symfony/MonologBundle",
  1606. "reference": "253fcda1128a0301aa68d040302cade65095f2c6"
  1607. },
  1608. "dist": {
  1609. "type": "zip",
  1610. "url": "https://api.github.com/repos/symfony/MonologBundle/zipball/253fcda1128a0301aa68d040302cade65095f2c6",
  1611. "reference": "253fcda1128a0301aa68d040302cade65095f2c6",
  1612. "shasum": ""
  1613. },
  1614. "require": {
  1615. "monolog/monolog": ">=1.0,<1.3-dev",
  1616. "php": ">=5.3.2",
  1617. "symfony/config": ">=2.1.0,<2.3-dev",
  1618. "symfony/dependency-injection": ">=2.1.0,<2.3-dev",
  1619. "symfony/monolog-bridge": "2.1.*"
  1620. },
  1621. "require-dev": {
  1622. "symfony/config": ">=2.1.0,<2.3-dev",
  1623. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1624. },
  1625. "time": "2013-01-28 10:06:42",
  1626. "type": "symfony-bundle",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-master": "2.1.x-dev"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "psr-0": {
  1634. "Symfony\\Bundle\\MonologBundle": ""
  1635. }
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "MIT"
  1640. ],
  1641. "authors": [
  1642. {
  1643. "name": "Fabien Potencier",
  1644. "email": "fabien@symfony.com"
  1645. },
  1646. {
  1647. "name": "Symfony Community",
  1648. "homepage": "http://symfony.com/contributors"
  1649. }
  1650. ],
  1651. "description": "Symfony MonologBundle",
  1652. "homepage": "http://symfony.com",
  1653. "keywords": [
  1654. "log",
  1655. "logging"
  1656. ]
  1657. },
  1658. {
  1659. "name": "symfony/swiftmailer-bundle",
  1660. "version": "2.1.x-dev",
  1661. "target-dir": "Symfony/Bundle/SwiftmailerBundle",
  1662. "source": {
  1663. "type": "git",
  1664. "url": "https://github.com/symfony/SwiftmailerBundle.git",
  1665. "reference": "v2.1.7"
  1666. },
  1667. "dist": {
  1668. "type": "zip",
  1669. "url": "https://api.github.com/repos/symfony/SwiftmailerBundle/zipball/v2.1.7",
  1670. "reference": "v2.1.7",
  1671. "shasum": ""
  1672. },
  1673. "require": {
  1674. "php": ">=5.3.2",
  1675. "swiftmailer/swiftmailer": ">=4.2.0,<4.3-dev",
  1676. "symfony/swiftmailer-bridge": ">=2.1.0,<2.3-dev"
  1677. },
  1678. "require-dev": {
  1679. "symfony/config": ">=2.1.0,<2.3-dev",
  1680. "symfony/dependency-injection": ">=2.1.0,<2.3-dev",
  1681. "symfony/http-kernel": ">=2.1.0,<2.3-dev",
  1682. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1683. },
  1684. "time": "2013-01-04 17:04:29",
  1685. "type": "symfony-bundle",
  1686. "extra": {
  1687. "branch-alias": {
  1688. "dev-master": "2.1-dev"
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-0": {
  1693. "Symfony\\Bundle\\SwiftmailerBundle": ""
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "Fabien Potencier",
  1703. "email": "fabien@symfony.com"
  1704. },
  1705. {
  1706. "name": "Symfony Community",
  1707. "homepage": "http://symfony.com/contributors"
  1708. }
  1709. ],
  1710. "description": "Symfony SwiftmailerBundle",
  1711. "homepage": "http://symfony.com"
  1712. },
  1713. {
  1714. "name": "symfony/symfony",
  1715. "version": "2.1.x-dev",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://github.com/symfony/symfony.git",
  1719. "reference": "75c61944a3e43b9efb5a195fd79416ff43ca09e7"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://api.github.com/repos/symfony/symfony/zipball/75c61944a3e43b9efb5a195fd79416ff43ca09e7",
  1724. "reference": "75c61944a3e43b9efb5a195fd79416ff43ca09e7",
  1725. "shasum": ""
  1726. },
  1727. "require": {
  1728. "doctrine/common": ">2.2,<2.4-dev",
  1729. "php": ">=5.3.3",
  1730. "twig/twig": ">=1.9.1,<2.0-dev"
  1731. },
  1732. "replace": {
  1733. "symfony/browser-kit": "self.version",
  1734. "symfony/class-loader": "self.version",
  1735. "symfony/config": "self.version",
  1736. "symfony/console": "self.version",
  1737. "symfony/css-selector": "self.version",
  1738. "symfony/dependency-injection": "self.version",
  1739. "symfony/doctrine-bridge": "self.version",
  1740. "symfony/dom-crawler": "self.version",
  1741. "symfony/event-dispatcher": "self.version",
  1742. "symfony/filesystem": "self.version",
  1743. "symfony/finder": "self.version",
  1744. "symfony/form": "self.version",
  1745. "symfony/framework-bundle": "self.version",
  1746. "symfony/http-foundation": "self.version",
  1747. "symfony/http-kernel": "self.version",
  1748. "symfony/locale": "self.version",
  1749. "symfony/monolog-bridge": "self.version",
  1750. "symfony/options-resolver": "self.version",
  1751. "symfony/process": "self.version",
  1752. "symfony/propel1-bridge": "self.version",
  1753. "symfony/routing": "self.version",
  1754. "symfony/security": "self.version",
  1755. "symfony/security-bundle": "self.version",
  1756. "symfony/serializer": "self.version",
  1757. "symfony/swiftmailer-bridge": "self.version",
  1758. "symfony/templating": "self.version",
  1759. "symfony/translation": "self.version",
  1760. "symfony/twig-bridge": "self.version",
  1761. "symfony/twig-bundle": "self.version",
  1762. "symfony/validator": "self.version",
  1763. "symfony/web-profiler-bundle": "self.version",
  1764. "symfony/yaml": "self.version"
  1765. },
  1766. "require-dev": {
  1767. "doctrine/data-fixtures": "1.0.*",
  1768. "doctrine/dbal": ">=2.2,<2.4-dev",
  1769. "doctrine/orm": ">=2.2.3,<2.4-dev",
  1770. "monolog/monolog": ">=1.0,<1.3-dev",
  1771. "propel/propel1": "dev-master"
  1772. },
  1773. "time": "2013-02-17 12:59:26",
  1774. "type": "library",
  1775. "autoload": {
  1776. "psr-0": {
  1777. "Symfony": "src/",
  1778. "SessionHandlerInterface": "src/Symfony/Component/HttpFoundation/Resources/stubs"
  1779. }
  1780. },
  1781. "notification-url": "https://packagist.org/downloads/",
  1782. "license": [
  1783. "MIT"
  1784. ],
  1785. "authors": [
  1786. {
  1787. "name": "Fabien Potencier",
  1788. "email": "fabien@symfony.com"
  1789. },
  1790. {
  1791. "name": "Symfony Community",
  1792. "homepage": "http://symfony.com/contributors"
  1793. }
  1794. ],
  1795. "description": "The Symfony PHP framework",
  1796. "homepage": "http://symfony.com",
  1797. "keywords": [
  1798. "framework"
  1799. ]
  1800. },
  1801. {
  1802. "name": "twig/extensions",
  1803. "version": "dev-master",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/fabpot/Twig-extensions.git",
  1807. "reference": "5c2d515d4624bdd588226d688173cf0399a4d8cf"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/fabpot/Twig-extensions/zipball/5c2d515d4624bdd588226d688173cf0399a4d8cf",
  1812. "reference": "5c2d515d4624bdd588226d688173cf0399a4d8cf",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "twig/twig": "1.*"
  1817. },
  1818. "time": "2013-01-04 16:55:05",
  1819. "type": "library",
  1820. "extra": {
  1821. "branch-alias": {
  1822. "dev-master": "1.0.x-dev"
  1823. }
  1824. },
  1825. "autoload": {
  1826. "psr-0": {
  1827. "Twig_Extensions_": "lib/"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Fabien Potencier",
  1837. "email": "fabien@symfony.com"
  1838. }
  1839. ],
  1840. "description": "Common additional features for Twig that do not directly belong in core",
  1841. "homepage": "https://github.com/fabpot/Twig-extensions",
  1842. "keywords": [
  1843. "debug",
  1844. "i18n",
  1845. "text"
  1846. ]
  1847. },
  1848. {
  1849. "name": "twig/twig",
  1850. "version": "dev-master",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/fabpot/Twig.git",
  1854. "reference": "ac86c6368c8b1ed27adb436af54d0398b64cab1f"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/fabpot/Twig/zipball/ac86c6368c8b1ed27adb436af54d0398b64cab1f",
  1859. "reference": "ac86c6368c8b1ed27adb436af54d0398b64cab1f",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "php": ">=5.2.4"
  1864. },
  1865. "time": "2013-02-17 19:51:08",
  1866. "type": "library",
  1867. "extra": {
  1868. "branch-alias": {
  1869. "dev-master": "1.12-dev"
  1870. }
  1871. },
  1872. "autoload": {
  1873. "psr-0": {
  1874. "Twig_": "lib/"
  1875. }
  1876. },
  1877. "notification-url": "https://packagist.org/downloads/",
  1878. "license": [
  1879. "BSD-3"
  1880. ],
  1881. "authors": [
  1882. {
  1883. "name": "Fabien Potencier",
  1884. "email": "fabien@symfony.com"
  1885. },
  1886. {
  1887. "name": "Armin Ronacher",
  1888. "email": "armin.ronacher@active-4.com"
  1889. }
  1890. ],
  1891. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1892. "homepage": "http://twig.sensiolabs.org",
  1893. "keywords": [
  1894. "templating"
  1895. ]
  1896. },
  1897. {
  1898. "name": "white-october/pagerfanta-bundle",
  1899. "version": "dev-master",
  1900. "target-dir": "WhiteOctober/PagerfantaBundle",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "git://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  1904. "reference": "38e317a3ecd5a68e2322024ea8fe57632d4ddd68"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/38e317a3ecd5a68e2322024ea8fe57632d4ddd68",
  1909. "reference": "38e317a3ecd5a68e2322024ea8fe57632d4ddd68",
  1910. "shasum": ""
  1911. },
  1912. "require": {
  1913. "pagerfanta/pagerfanta": "dev-master",
  1914. "symfony/framework-bundle": "2.*"
  1915. },
  1916. "time": "2012-07-24 12:48:41",
  1917. "type": "symfony-bundle",
  1918. "autoload": {
  1919. "psr-0": {
  1920. "WhiteOctober\\PagerfantaBundle": ""
  1921. }
  1922. },
  1923. "notification-url": "https://packagist.org/downloads/",
  1924. "license": [
  1925. "MIT"
  1926. ],
  1927. "authors": [
  1928. {
  1929. "name": "Pablo Díez",
  1930. "email": "pablodip@gmail.com",
  1931. "homepage": "http://github.com/pablodip"
  1932. }
  1933. ],
  1934. "description": "Bundle to use Pagerfanta with Symfony2",
  1935. "keywords": [
  1936. "page",
  1937. "paging"
  1938. ]
  1939. }
  1940. ],
  1941. "packages-dev": null,
  1942. "aliases": [
  1943. ],
  1944. "minimum-stability": "dev",
  1945. "stability-flags": {
  1946. "twig/extensions": 20,
  1947. "kriswallsmith/assetic": 20,
  1948. "doctrine/data-fixtures": 20,
  1949. "doctrine/doctrine-fixtures-bundle": 20,
  1950. "stof/doctrine-extensions-bundle": 20,
  1951. "gregwar/image-bundle": 20,
  1952. "cedriclombardot/admingenerator-generator-bundle": 20
  1953. }
  1954. }