composer.lock 83KB

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