composer.lock 90 KB

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