composer.lock 98 KB

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