installed.json 74KB

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