installed.json 63KB

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