composer.lock 96KB

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