composer.lock 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. {
  2. "hash": "31cfbd428dcd9c7da7d44c1d5ffebc57",
  3. "packages": [
  4. {
  5. "name": "composer/composer",
  6. "version": "dev-master",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/composer/composer",
  10. "reference": "99b7ab4021ff9c309475e11f81d2dee796b578a7"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://github.com/composer/composer/zipball/99b7ab4021ff9c309475e11f81d2dee796b578a7",
  15. "reference": "99b7ab4021ff9c309475e11f81d2dee796b578a7",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "justinrainbow/json-schema": "1.1.*",
  20. "seld/jsonlint": "1.*",
  21. "php": ">=5.3.2",
  22. "symfony/console": ">=2.1,<3.0",
  23. "symfony/finder": ">=2.1,<3.0",
  24. "symfony/process": ">=2.1,<3.0"
  25. },
  26. "suggest": {
  27. "ext-zip": "Enabling the zip extension allows you to unzip archives, and allows gzip compression of all internet traffic",
  28. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages"
  29. },
  30. "time": "1352045442",
  31. "bin": [
  32. "bin/composer"
  33. ],
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "1.0-dev"
  38. }
  39. },
  40. "installation-source": "source",
  41. "autoload": {
  42. "psr-0": {
  43. "Composer": "src/"
  44. }
  45. },
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Jordi Boggiano",
  52. "email": "j.boggiano@seld.be",
  53. "homepage": "http://seld.be",
  54. "role": "Developer"
  55. },
  56. {
  57. "name": "Nils Adermann",
  58. "email": "naderman@naderman.de",
  59. "homepage": "http://www.naderman.de"
  60. }
  61. ],
  62. "description": "Package Manager",
  63. "homepage": "http://getcomposer.org/",
  64. "keywords": [
  65. "package",
  66. "dependency",
  67. "autoload"
  68. ]
  69. },
  70. {
  71. "name": "doctrine/common",
  72. "version": "2.3.x-dev",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/doctrine/common",
  76. "reference": "bb0aebbf234db52df476a2b473d434745b34221c"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://github.com/doctrine/common/zipball/bb0aebbf234db52df476a2b473d434745b34221c",
  81. "reference": "bb0aebbf234db52df476a2b473d434745b34221c",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": ">=5.3.2"
  86. },
  87. "time": "1348120518",
  88. "type": "library",
  89. "extra": {
  90. "branch-alias": {
  91. "dev-master": "2.3.x-dev"
  92. }
  93. },
  94. "installation-source": "source",
  95. "autoload": {
  96. "psr-0": {
  97. "Doctrine\\Common": "lib/"
  98. }
  99. },
  100. "license": [
  101. "MIT"
  102. ],
  103. "authors": [
  104. {
  105. "name": "Jonathan Wage",
  106. "email": "jonwage@gmail.com",
  107. "homepage": "http://www.jwage.com/"
  108. },
  109. {
  110. "name": "Guilherme Blanco",
  111. "email": "guilhermeblanco@gmail.com",
  112. "homepage": "http://www.instaclick.com"
  113. },
  114. {
  115. "name": "Roman Borschel",
  116. "email": "roman@code-factory.org"
  117. },
  118. {
  119. "name": "Benjamin Eberlei",
  120. "email": "kontakt@beberlei.de"
  121. },
  122. {
  123. "name": "Johannes M. Schmitt",
  124. "email": "schmittjoh@gmail.com",
  125. "homepage": "http://jmsyst.com",
  126. "role": "Developer of wrapped JMSSerializerBundle"
  127. }
  128. ],
  129. "description": "Common Library for Doctrine projects",
  130. "homepage": "http://www.doctrine-project.org",
  131. "keywords": [
  132. "collections",
  133. "spl",
  134. "eventmanager",
  135. "annotations",
  136. "persistence"
  137. ]
  138. },
  139. {
  140. "name": "doctrine/dbal",
  141. "version": "2.3.x-dev",
  142. "source": {
  143. "type": "git",
  144. "url": "https://github.com/doctrine/dbal",
  145. "reference": "219d96a1592e9e23087eb6861b4f8233d06c6463"
  146. },
  147. "dist": {
  148. "type": "zip",
  149. "url": "https://github.com/doctrine/dbal/zipball/219d96a1592e9e23087eb6861b4f8233d06c6463",
  150. "reference": "219d96a1592e9e23087eb6861b4f8233d06c6463",
  151. "shasum": ""
  152. },
  153. "require": {
  154. "php": ">=5.3.2",
  155. "doctrine/common": "2.3.*"
  156. },
  157. "time": "1349518912",
  158. "type": "library",
  159. "extra": {
  160. "branch-alias": {
  161. "dev-master": "2.3.x-dev"
  162. }
  163. },
  164. "installation-source": "source",
  165. "autoload": {
  166. "psr-0": {
  167. "Doctrine\\DBAL": "lib/"
  168. }
  169. },
  170. "license": [
  171. "MIT"
  172. ],
  173. "authors": [
  174. {
  175. "name": "Jonathan Wage",
  176. "email": "jonwage@gmail.com",
  177. "homepage": "http://www.jwage.com/"
  178. },
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com",
  182. "homepage": "http://www.instaclick.com"
  183. },
  184. {
  185. "name": "Roman Borschel",
  186. "email": "roman@code-factory.org"
  187. },
  188. {
  189. "name": "Benjamin Eberlei",
  190. "email": "kontakt@beberlei.de"
  191. }
  192. ],
  193. "description": "Database Abstraction Layer",
  194. "homepage": "http://www.doctrine-project.org",
  195. "keywords": [
  196. "database",
  197. "persistence",
  198. "dbal",
  199. "queryobject"
  200. ]
  201. },
  202. {
  203. "name": "doctrine/doctrine-bundle",
  204. "version": "dev-master",
  205. "target-dir": "Doctrine/Bundle/DoctrineBundle",
  206. "source": {
  207. "type": "git",
  208. "url": "git://github.com/doctrine/DoctrineBundle.git",
  209. "reference": "a3b99ec049b7c488c70b8776a67c594e6ddf54cd"
  210. },
  211. "dist": {
  212. "type": "zip",
  213. "url": "https://github.com/doctrine/DoctrineBundle/zipball/a3b99ec049b7c488c70b8776a67c594e6ddf54cd",
  214. "reference": "a3b99ec049b7c488c70b8776a67c594e6ddf54cd",
  215. "shasum": ""
  216. },
  217. "require": {
  218. "php": ">=5.3.2",
  219. "doctrine/dbal": ">=2.2,<2.4-dev",
  220. "symfony/framework-bundle": ">=2.1,<2.3-dev",
  221. "symfony/doctrine-bridge": ">=2.1,<2.3-dev"
  222. },
  223. "require-dev": {
  224. "doctrine/orm": ">=2.2,<2.4-dev",
  225. "symfony/yaml": ">=2.1,<2.3-dev",
  226. "symfony/validator": ">=2.1,<2.3-dev"
  227. },
  228. "suggest": {
  229. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle."
  230. },
  231. "time": "1350120716",
  232. "type": "symfony-bundle",
  233. "extra": {
  234. "branch-alias": {
  235. "dev-master": "1.0.x-dev"
  236. }
  237. },
  238. "installation-source": "source",
  239. "autoload": {
  240. "psr-0": {
  241. "Doctrine\\Bundle\\DoctrineBundle": ""
  242. }
  243. },
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Fabien Potencier",
  250. "email": "fabien@symfony.com"
  251. },
  252. {
  253. "name": "Symfony Community",
  254. "homepage": "http://symfony.com/contributors"
  255. },
  256. {
  257. "name": "Benjamin Eberlei",
  258. "email": "kontakt@beberlei.de"
  259. }
  260. ],
  261. "description": "Symfony DoctrineBundle",
  262. "homepage": "http://www.doctrine-project.org",
  263. "keywords": [
  264. "database",
  265. "orm",
  266. "persistence",
  267. "dbal"
  268. ]
  269. },
  270. {
  271. "name": "doctrine/orm",
  272. "version": "2.3.x-dev",
  273. "source": {
  274. "type": "git",
  275. "url": "git://github.com/doctrine/doctrine2.git",
  276. "reference": "6bad0109599348c5216df35f62b80a20ba16c507"
  277. },
  278. "dist": {
  279. "type": "zip",
  280. "url": "https://github.com/doctrine/doctrine2/zipball/6bad0109599348c5216df35f62b80a20ba16c507",
  281. "reference": "6bad0109599348c5216df35f62b80a20ba16c507",
  282. "shasum": ""
  283. },
  284. "require": {
  285. "php": ">=5.3.2",
  286. "ext-pdo": "*",
  287. "symfony/console": "2.*",
  288. "doctrine/dbal": "2.3.*"
  289. },
  290. "suggest": {
  291. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  292. },
  293. "time": "1350071385",
  294. "bin": [
  295. "bin/doctrine",
  296. "bin/doctrine.php"
  297. ],
  298. "type": "library",
  299. "extra": {
  300. "branch-alias": {
  301. "dev-master": "2.3.x-dev"
  302. }
  303. },
  304. "installation-source": "source",
  305. "autoload": {
  306. "psr-0": {
  307. "Doctrine\\ORM": "lib/"
  308. }
  309. },
  310. "license": [
  311. "MIT"
  312. ],
  313. "authors": [
  314. {
  315. "name": "Jonathan Wage",
  316. "email": "jonwage@gmail.com",
  317. "homepage": "http://www.jwage.com/"
  318. },
  319. {
  320. "name": "Guilherme Blanco",
  321. "email": "guilhermeblanco@gmail.com",
  322. "homepage": "http://www.instaclick.com"
  323. },
  324. {
  325. "name": "Roman Borschel",
  326. "email": "roman@code-factory.org"
  327. },
  328. {
  329. "name": "Benjamin Eberlei",
  330. "email": "kontakt@beberlei.de"
  331. }
  332. ],
  333. "description": "Object-Relational-Mapper for PHP",
  334. "homepage": "http://www.doctrine-project.org",
  335. "keywords": [
  336. "database",
  337. "orm"
  338. ]
  339. },
  340. {
  341. "name": "friendsofsymfony/user-bundle",
  342. "version": "dev-master",
  343. "target-dir": "FOS/UserBundle",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle",
  347. "reference": "127391cd83e86bcf97e5d861aac1e39c14d3999d"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle/zipball/127391cd83e86bcf97e5d861aac1e39c14d3999d",
  352. "reference": "127391cd83e86bcf97e5d861aac1e39c14d3999d",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "php": ">=5.3.2",
  357. "symfony/framework-bundle": ">=2.1,<2.3-dev",
  358. "symfony/security-bundle": ">=2.1,<2.3-dev"
  359. },
  360. "require-dev": {
  361. "twig/twig": "*",
  362. "doctrine/doctrine-bundle": "*",
  363. "swiftmailer/swiftmailer": "*",
  364. "willdurand/propel-typehintable-behavior": "dev-master",
  365. "symfony/validator": "2.1.*",
  366. "symfony/yaml": "2.1.*"
  367. },
  368. "suggest": {
  369. "doctrine/couchdb-odm-bundle": "*",
  370. "doctrine/doctrine-bundle": "*",
  371. "doctrine/mongodb-odm-bundle": "*"
  372. },
  373. "time": "1350050664",
  374. "type": "symfony-bundle",
  375. "extra": {
  376. "branch-alias": {
  377. "dev-master": "2.0.x-dev"
  378. }
  379. },
  380. "installation-source": "source",
  381. "autoload": {
  382. "psr-0": {
  383. "FOS\\UserBundle": ""
  384. }
  385. },
  386. "license": [
  387. "MIT"
  388. ],
  389. "authors": [
  390. {
  391. "name": "Christophe Coevoet",
  392. "email": "stof@notk.org"
  393. },
  394. {
  395. "name": "Thibault Duplessis",
  396. "email": "thibault.duplessis@gmail.com",
  397. "homepage": "http://ornicar.github.com"
  398. },
  399. {
  400. "name": "FriendsOfSymfony Community",
  401. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  402. }
  403. ],
  404. "description": "Symfony FOSUserBundle",
  405. "homepage": "http://friendsofsymfony.github.com",
  406. "keywords": [
  407. "User management"
  408. ]
  409. },
  410. {
  411. "name": "hwi/oauth-bundle",
  412. "version": "dev-master",
  413. "target-dir": "HWI/Bundle/OAuthBundle",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/hwi/HWIOAuthBundle",
  417. "reference": "8397d4b0dd878bbac4abd60ab22480ce9ca7bb28"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://github.com/hwi/HWIOAuthBundle/zipball/8397d4b0dd878bbac4abd60ab22480ce9ca7bb28",
  422. "reference": "8397d4b0dd878bbac4abd60ab22480ce9ca7bb28",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "php": ">=5.3.2",
  427. "symfony/framework-bundle": ">=2.0,<2.2-dev",
  428. "symfony/security-bundle": ">=2.0,<2.2-dev",
  429. "kriswallsmith/buzz": "0.7"
  430. },
  431. "require-dev": {
  432. "doctrine/orm": "*",
  433. "friendsofsymfony/user-bundle": "*",
  434. "symfony/twig-bundle": "*",
  435. "symfony/validator": ">=2.0,<2.2-dev"
  436. },
  437. "suggest": {
  438. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  439. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions",
  440. "doctrine/doctrine-bundle": "to use Doctrine user provider"
  441. },
  442. "time": "1346424865",
  443. "type": "symfony-bundle",
  444. "installation-source": "source",
  445. "autoload": {
  446. "psr-0": {
  447. "HWI\\Bundle\\OAuthBundle": ""
  448. }
  449. },
  450. "license": [
  451. "MIT"
  452. ],
  453. "authors": [
  454. {
  455. "name": "Geoffrey Bachelet",
  456. "email": "geoffrey.bachelet@gmail.com",
  457. "homepage": "https://github.com/ubermuda"
  458. },
  459. {
  460. "name": "Alexander",
  461. "email": "alexander@hardware.info"
  462. },
  463. {
  464. "name": "Contributors",
  465. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  466. }
  467. ],
  468. "description": "Support for authenticating users via oauth in Symfony2.",
  469. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  470. "keywords": [
  471. "security",
  472. "oauth",
  473. "oauth2",
  474. "github",
  475. "twitter",
  476. "firewall",
  477. "google",
  478. "facebook",
  479. "linkedin",
  480. "windows live",
  481. "vkontakte",
  482. "oauth1",
  483. "sensio connect"
  484. ]
  485. },
  486. {
  487. "name": "jms/aop-bundle",
  488. "version": "1.0.0",
  489. "target-dir": "JMS/AopBundle",
  490. "source": {
  491. "type": "git",
  492. "url": "https://github.com/schmittjoh/JMSAopBundle",
  493. "reference": "1.0.0"
  494. },
  495. "dist": {
  496. "type": "zip",
  497. "url": "https://github.com/schmittjoh/JMSAopBundle/zipball/1.0.0",
  498. "reference": "1.0.0",
  499. "shasum": ""
  500. },
  501. "require": {
  502. "symfony/framework-bundle": "2.*",
  503. "jms/cg": "1.0.0"
  504. },
  505. "time": "2012-01-02 15:50:26",
  506. "type": "symfony-bundle",
  507. "installation-source": "dist",
  508. "autoload": {
  509. "psr-0": {
  510. "JMS\\AopBundle": ""
  511. }
  512. },
  513. "license": [
  514. "Apache"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Johannes M. Schmitt",
  519. "email": "schmittjoh@gmail.com",
  520. "homepage": "https://github.com/schmittjoh",
  521. "role": "Developer of wrapped JMSSerializerBundle"
  522. }
  523. ],
  524. "description": "Adds AOP capabilities to Symfony2",
  525. "keywords": [
  526. "annotations",
  527. "aop"
  528. ]
  529. },
  530. {
  531. "name": "jms/cg",
  532. "version": "1.0.0",
  533. "source": {
  534. "type": "git",
  535. "url": "git://github.com/schmittjoh/cg-library.git",
  536. "reference": "1.0.0"
  537. },
  538. "dist": {
  539. "type": "zip",
  540. "url": "https://github.com/schmittjoh/cg-library/zipball/1.0.0",
  541. "reference": "1.0.0",
  542. "shasum": ""
  543. },
  544. "require": {
  545. "php": ">=5.3.0"
  546. },
  547. "time": "2012-01-02 15:40:52",
  548. "type": "library",
  549. "installation-source": "dist",
  550. "autoload": {
  551. "psr-0": {
  552. "CG\\": "src/"
  553. }
  554. },
  555. "license": [
  556. "Apache"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Johannes M. Schmitt",
  561. "email": "schmittjoh@gmail.com",
  562. "homepage": "https://github.com/schmittjoh",
  563. "role": "Developer of wrapped JMSSerializerBundle"
  564. }
  565. ],
  566. "description": "Toolset for generating PHP code",
  567. "keywords": [
  568. "code generation"
  569. ]
  570. },
  571. {
  572. "name": "jms/di-extra-bundle",
  573. "version": "1.1.x-dev",
  574. "target-dir": "JMS/DiExtraBundle",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/schmittjoh/JMSDiExtraBundle",
  578. "reference": "1.1.1"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://github.com/schmittjoh/JMSDiExtraBundle/zipball/1.1.1",
  583. "reference": "1.1.1",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "symfony/framework-bundle": "2.1.*",
  588. "jms/aop-bundle": "1.0.*",
  589. "jms/metadata": "1.1.*",
  590. "symfony/process": "2.1.*",
  591. "symfony/finder": "2.1.*"
  592. },
  593. "require-dev": {
  594. "jms/security-extra-bundle": "1.*",
  595. "symfony/validator": "*",
  596. "symfony/form": "*",
  597. "symfony/class-loader": "*",
  598. "symfony/yaml": "*",
  599. "symfony/browser-kit": "*",
  600. "symfony/security-bundle": "*",
  601. "symfony/twig-bundle": "*",
  602. "sensio/framework-extra-bundle": "*",
  603. "doctrine/doctrine-bundle": "*",
  604. "doctrine/orm": "*"
  605. },
  606. "time": "1348217792",
  607. "type": "symfony-bundle",
  608. "installation-source": "source",
  609. "autoload": {
  610. "psr-0": {
  611. "JMS\\DiExtraBundle": ""
  612. }
  613. },
  614. "license": [
  615. "Apache"
  616. ],
  617. "authors": [
  618. {
  619. "name": "Johannes M. Schmitt",
  620. "email": "schmittjoh@gmail.com",
  621. "homepage": "http://jmsyst.com",
  622. "role": "Developer of wrapped JMSSerializerBundle"
  623. }
  624. ],
  625. "description": "Allows to configure dependency injection using annotations",
  626. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  627. "keywords": [
  628. "dependency injection",
  629. "annotations"
  630. ]
  631. },
  632. {
  633. "name": "jms/metadata",
  634. "version": "1.1.1",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/schmittjoh/metadata",
  638. "reference": "1.1.1"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://github.com/schmittjoh/metadata/zipball/1.1.1",
  643. "reference": "1.1.1",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "php": ">=5.3.0"
  648. },
  649. "time": "2012-01-02 16:32:49",
  650. "type": "library",
  651. "installation-source": "dist",
  652. "autoload": {
  653. "psr-0": {
  654. "Metadata\\": "src/"
  655. }
  656. },
  657. "license": [
  658. "Apache"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Johannes M. Schmitt",
  663. "email": "schmittjoh@gmail.com",
  664. "homepage": "https://github.com/schmittjoh",
  665. "role": "Developer of wrapped JMSSerializerBundle"
  666. }
  667. ],
  668. "description": "Class/method/property metadata management in PHP",
  669. "keywords": [
  670. "annotations",
  671. "yaml",
  672. "xml",
  673. "metadata"
  674. ]
  675. },
  676. {
  677. "name": "jms/security-extra-bundle",
  678. "version": "1.2.x-dev",
  679. "target-dir": "JMS/SecurityExtraBundle",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle",
  683. "reference": "9ab6aceda50fc7a2b07d741ba4b3f0695508afcb"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle/zipball/9ab6aceda50fc7a2b07d741ba4b3f0695508afcb",
  688. "reference": "9ab6aceda50fc7a2b07d741ba4b3f0695508afcb",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "symfony/framework-bundle": "2.1.*",
  693. "symfony/security-bundle": "*",
  694. "jms/metadata": "1.1.*",
  695. "jms/aop-bundle": "1.0.*",
  696. "jms/di-extra-bundle": "1.1.*"
  697. },
  698. "require-dev": {
  699. "sensio/framework-extra-bundle": "*",
  700. "symfony/class-loader": "*",
  701. "symfony/yaml": "*",
  702. "symfony/browser-kit": "*",
  703. "symfony/finder": "*",
  704. "symfony/css-selector": "*",
  705. "symfony/process": "*",
  706. "doctrine/doctrine-bundle": "*",
  707. "symfony/twig-bundle": "*",
  708. "doctrine/orm": "*",
  709. "symfony/form": "*",
  710. "symfony/validator": "*"
  711. },
  712. "time": "1346947943",
  713. "type": "symfony-bundle",
  714. "installation-source": "source",
  715. "autoload": {
  716. "psr-0": {
  717. "JMS\\SecurityExtraBundle": ""
  718. }
  719. },
  720. "license": [
  721. "Apache2"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Johannes M. Schmitt",
  726. "email": "schmittjoh@gmail.com",
  727. "homepage": "https://github.com/schmittjoh",
  728. "role": "Developer of wrapped JMSSerializerBundle"
  729. }
  730. ],
  731. "description": "Enhances the Symfony2 Security Component by adding several new features",
  732. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  733. "keywords": [
  734. "annotations",
  735. "authorization",
  736. "security",
  737. "secure",
  738. "expression"
  739. ]
  740. },
  741. {
  742. "name": "justinrainbow/json-schema",
  743. "version": "1.1.0",
  744. "source": {
  745. "type": "git",
  746. "url": "git://github.com/justinrainbow/json-schema.git",
  747. "reference": "v1.1.0"
  748. },
  749. "dist": {
  750. "type": "zip",
  751. "url": "https://github.com/justinrainbow/json-schema/zipball/v1.1.0",
  752. "reference": "v1.1.0",
  753. "shasum": ""
  754. },
  755. "require": {
  756. "php": ">=5.3.0"
  757. },
  758. "time": "2012-01-01 09:33:17",
  759. "type": "library",
  760. "installation-source": "dist",
  761. "autoload": {
  762. "psr-0": {
  763. "JsonSchema": "src/"
  764. }
  765. },
  766. "license": [
  767. "NewBSD"
  768. ],
  769. "authors": [
  770. {
  771. "name": "Igor Wiedler",
  772. "email": "igor@wiedler.ch",
  773. "homepage": "http://wiedler.ch/igor/",
  774. "role": null
  775. },
  776. {
  777. "name": "Bruno Prieto Reis",
  778. "email": "bruno.p.reis@gmail.com",
  779. "homepage": null,
  780. "role": null
  781. },
  782. {
  783. "name": "Justin Rainbow",
  784. "email": "justin.rainbow@gmail.com",
  785. "homepage": null,
  786. "role": null
  787. },
  788. {
  789. "name": "Robert Schönthal",
  790. "email": "seroscho@googlemail.com",
  791. "homepage": "http://digitalkaoz.net",
  792. "role": null
  793. }
  794. ],
  795. "description": "A library to validate a json schema.",
  796. "homepage": "https://github.com/justinrainbow/json-schema",
  797. "keywords": [
  798. "json",
  799. "schema"
  800. ]
  801. },
  802. {
  803. "name": "kriswallsmith/assetic",
  804. "version": "dev-master",
  805. "source": {
  806. "type": "git",
  807. "url": "http://github.com/kriswallsmith/assetic.git",
  808. "reference": "e22c5e07e672bb0cf43127e97e9368b53abf4aa8"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://github.com/kriswallsmith/assetic/zipball/e22c5e07e672bb0cf43127e97e9368b53abf4aa8",
  813. "reference": "e22c5e07e672bb0cf43127e97e9368b53abf4aa8",
  814. "shasum": ""
  815. },
  816. "require": {
  817. "symfony/process": ">=2.1.0,<2.3-dev",
  818. "php": ">=5.3.1"
  819. },
  820. "require-dev": {
  821. "twig/twig": ">=1.6.0,<2.0",
  822. "leafo/lessphp": "*",
  823. "leafo/scssphp": "*",
  824. "ptachoire/cssembed": "*",
  825. "leafo/scssphp-compass": "*"
  826. },
  827. "suggest": {
  828. "twig/twig": "Assetic provides the integration with the Twig templating engine",
  829. "leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
  830. "leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
  831. "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
  832. "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin"
  833. },
  834. "time": "1349004759",
  835. "type": "library",
  836. "extra": {
  837. "branch-alias": {
  838. "dev-master": "1.1-dev"
  839. }
  840. },
  841. "installation-source": "source",
  842. "autoload": {
  843. "psr-0": {
  844. "Assetic": "src/"
  845. },
  846. "files": [
  847. "src/functions.php"
  848. ]
  849. },
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Kris Wallsmith",
  856. "email": "kris.wallsmith@gmail.com",
  857. "homepage": "http://kriswallsmith.net/"
  858. }
  859. ],
  860. "description": "Asset Management for PHP",
  861. "homepage": "https://github.com/kriswallsmith/assetic",
  862. "keywords": [
  863. "assets",
  864. "compression",
  865. "minification"
  866. ]
  867. },
  868. {
  869. "name": "kriswallsmith/buzz",
  870. "version": "v0.7",
  871. "source": {
  872. "type": "git",
  873. "url": "http://github.com/kriswallsmith/Buzz.git",
  874. "reference": "v0.7"
  875. },
  876. "dist": {
  877. "type": "zip",
  878. "url": "https://github.com/kriswallsmith/Buzz/zipball/v0.7",
  879. "reference": "v0.7",
  880. "shasum": ""
  881. },
  882. "require": {
  883. "php": ">=5.3.0"
  884. },
  885. "suggest": {
  886. "ext-curl": "*"
  887. },
  888. "time": "2012-06-25 19:01:38",
  889. "type": "library",
  890. "installation-source": "dist",
  891. "autoload": {
  892. "psr-0": {
  893. "Buzz": "lib/"
  894. }
  895. },
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Kris Wallsmith",
  902. "email": "kris.wallsmith@gmail.com",
  903. "homepage": "http://kriswallsmith.net/"
  904. }
  905. ],
  906. "description": "Lightweight HTTP client",
  907. "homepage": "https://github.com/kriswallsmith/Buzz",
  908. "keywords": [
  909. "curl",
  910. "http client"
  911. ]
  912. },
  913. {
  914. "name": "monolog/monolog",
  915. "version": "dev-master",
  916. "source": {
  917. "type": "git",
  918. "url": "https://github.com/Seldaek/monolog",
  919. "reference": "4b11ac001200e8fa70820a573fe886c80139b9e1"
  920. },
  921. "dist": {
  922. "type": "zip",
  923. "url": "https://github.com/Seldaek/monolog/zipball/4b11ac001200e8fa70820a573fe886c80139b9e1",
  924. "reference": "4b11ac001200e8fa70820a573fe886c80139b9e1",
  925. "shasum": ""
  926. },
  927. "require": {
  928. "php": ">=5.3.0"
  929. },
  930. "require-dev": {
  931. "mlehner/gelf-php": "1.0.*"
  932. },
  933. "suggest": {
  934. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
  935. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  936. "ext-mongo": "Allow sending log messages to a MongoDB server"
  937. },
  938. "type": "library",
  939. "extra": {
  940. "branch-alias": {
  941. "dev-master": "1.3.x-dev"
  942. }
  943. },
  944. "installation-source": "source",
  945. "autoload": {
  946. "psr-0": {
  947. "Monolog": "src/"
  948. }
  949. },
  950. "license": [
  951. "MIT"
  952. ],
  953. "authors": [
  954. {
  955. "name": "Jordi Boggiano",
  956. "email": "j.boggiano@seld.be",
  957. "homepage": "http://seld.be",
  958. "role": "Developer"
  959. }
  960. ],
  961. "description": "Logging for PHP 5.3",
  962. "homepage": "http://github.com/Seldaek/monolog",
  963. "keywords": [
  964. "log",
  965. "logging"
  966. ],
  967. "time": "1350121319"
  968. },
  969. {
  970. "name": "nelmio/security-bundle",
  971. "version": "dev-master",
  972. "target-dir": "Nelmio/SecurityBundle",
  973. "source": {
  974. "type": "git",
  975. "url": "https://github.com/nelmio/NelmioSecurityBundle",
  976. "reference": "95bbc09e1b18bd2f1dceae6789af97fcd232a4cb"
  977. },
  978. "dist": {
  979. "type": "zip",
  980. "url": "https://github.com/nelmio/NelmioSecurityBundle/zipball/95bbc09e1b18bd2f1dceae6789af97fcd232a4cb",
  981. "reference": "95bbc09e1b18bd2f1dceae6789af97fcd232a4cb",
  982. "shasum": ""
  983. },
  984. "require": {
  985. "symfony/framework-bundle": "2.*",
  986. "symfony/security": "2.*"
  987. },
  988. "time": "1349439945",
  989. "type": "symfony-bundle",
  990. "installation-source": "source",
  991. "autoload": {
  992. "psr-0": {
  993. "Nelmio\\SecurityBundle": ""
  994. }
  995. },
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Nelmio",
  1002. "homepage": "http://nelm.io"
  1003. },
  1004. {
  1005. "name": "Symfony Community",
  1006. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  1007. }
  1008. ],
  1009. "description": "Extra security-related features for Symfony2",
  1010. "keywords": [
  1011. "security"
  1012. ]
  1013. },
  1014. {
  1015. "name": "nelmio/solarium-bundle",
  1016. "version": "dev-master",
  1017. "target-dir": "Nelmio/SolariumBundle",
  1018. "source": {
  1019. "type": "git",
  1020. "url": "https://github.com/nelmio/NelmioSolariumBundle",
  1021. "reference": "39ebcb37ea839e812a6c752b9156e6a13a52b27c"
  1022. },
  1023. "dist": {
  1024. "type": "zip",
  1025. "url": "https://github.com/nelmio/NelmioSolariumBundle/zipball/39ebcb37ea839e812a6c752b9156e6a13a52b27c",
  1026. "reference": "39ebcb37ea839e812a6c752b9156e6a13a52b27c",
  1027. "shasum": ""
  1028. },
  1029. "require": {
  1030. "symfony/framework-bundle": "2.*",
  1031. "solarium/solarium": ">=2.4.0"
  1032. },
  1033. "require-dev": {
  1034. "symfony/yaml": "2.*"
  1035. },
  1036. "time": "1351527839",
  1037. "type": "symfony-bundle",
  1038. "extra": {
  1039. "branch-alias": {
  1040. "dev-master": "1.0-dev"
  1041. }
  1042. },
  1043. "installation-source": "source",
  1044. "autoload": {
  1045. "psr-0": {
  1046. "Nelmio\\SolariumBundle": ""
  1047. }
  1048. },
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "Nelmio",
  1055. "homepage": "http://nelm.io"
  1056. },
  1057. {
  1058. "name": "Symfony Community",
  1059. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  1060. }
  1061. ],
  1062. "description": "Integration with solarium solr client.",
  1063. "keywords": [
  1064. "solr",
  1065. "search",
  1066. "solarium"
  1067. ]
  1068. },
  1069. {
  1070. "name": "pagerfanta/pagerfanta",
  1071. "version": "dev-master",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "git://github.com/whiteoctober/Pagerfanta.git",
  1075. "reference": "12f71d99457b018fb80746f84514dd5b495c5789"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://github.com/whiteoctober/Pagerfanta/zipball/12f71d99457b018fb80746f84514dd5b495c5789",
  1080. "reference": "12f71d99457b018fb80746f84514dd5b495c5789",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "php": ">=5.3.0"
  1085. },
  1086. "suggest": {
  1087. "doctrine/orm": "2.*",
  1088. "doctrine/mongodb-odm": "2.*",
  1089. "solarium/solarium": "2.*"
  1090. },
  1091. "time": "1345672591",
  1092. "type": "library",
  1093. "installation-source": "source",
  1094. "autoload": {
  1095. "psr-0": {
  1096. "Pagerfanta\\": "src/"
  1097. }
  1098. }
  1099. },
  1100. {
  1101. "name": "predis/predis",
  1102. "version": "0.7.x-dev",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "git://github.com/nrk/predis.git",
  1106. "reference": "5859578046f0375eac5df75e5dd514d44d38f4ae"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://github.com/nrk/predis/zipball/5859578046f0375eac5df75e5dd514d44d38f4ae",
  1111. "reference": "5859578046f0375eac5df75e5dd514d44d38f4ae",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.0"
  1116. },
  1117. "time": "1346694780",
  1118. "type": "library",
  1119. "installation-source": "source",
  1120. "autoload": {
  1121. "psr-0": {
  1122. "Predis": "lib/"
  1123. }
  1124. }
  1125. },
  1126. {
  1127. "name": "seld/jsonlint",
  1128. "version": "1.0.1",
  1129. "source": {
  1130. "type": "git",
  1131. "url": "http://github.com/Seldaek/jsonlint",
  1132. "reference": "1.0.1"
  1133. },
  1134. "dist": {
  1135. "type": "zip",
  1136. "url": "https://github.com/Seldaek/jsonlint/zipball/1.0.1",
  1137. "reference": "1.0.1",
  1138. "shasum": ""
  1139. },
  1140. "require": {
  1141. "php": ">=5.3.0"
  1142. },
  1143. "time": "2012-08-13 07:00:11",
  1144. "bin": [
  1145. "bin/jsonlint"
  1146. ],
  1147. "type": "library",
  1148. "installation-source": "dist",
  1149. "autoload": {
  1150. "psr-0": {
  1151. "Seld\\JsonLint": "src/"
  1152. }
  1153. },
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Jordi Boggiano",
  1160. "email": "j.boggiano@seld.be",
  1161. "homepage": "http://seld.be",
  1162. "role": "Developer"
  1163. }
  1164. ],
  1165. "description": "JSON Linter",
  1166. "keywords": [
  1167. "json",
  1168. "parser",
  1169. "linter",
  1170. "validator"
  1171. ]
  1172. },
  1173. {
  1174. "name": "sensio/distribution-bundle",
  1175. "version": "2.1.x-dev",
  1176. "target-dir": "Sensio/Bundle/DistributionBundle",
  1177. "source": {
  1178. "type": "git",
  1179. "url": "https://github.com/sensio/SensioDistributionBundle",
  1180. "reference": "v2.1.1"
  1181. },
  1182. "dist": {
  1183. "type": "zip",
  1184. "url": "https://github.com/sensio/SensioDistributionBundle/zipball/v2.1.1",
  1185. "reference": "v2.1.1",
  1186. "shasum": ""
  1187. },
  1188. "require": {
  1189. "symfony/framework-bundle": "2.1.*"
  1190. },
  1191. "time": "1347340208",
  1192. "type": "symfony-bundle",
  1193. "extra": {
  1194. "branch-alias": {
  1195. "dev-master": "2.1.x-dev"
  1196. }
  1197. },
  1198. "installation-source": "source",
  1199. "autoload": {
  1200. "psr-0": {
  1201. "Sensio\\Bundle\\DistributionBundle": ""
  1202. }
  1203. },
  1204. "license": [
  1205. "MIT"
  1206. ],
  1207. "authors": [
  1208. {
  1209. "name": "Fabien Potencier",
  1210. "email": "fabien@symfony.com"
  1211. }
  1212. ],
  1213. "description": "The base bundle for the Symfony Distributions",
  1214. "keywords": [
  1215. "distribution",
  1216. "configuration"
  1217. ]
  1218. },
  1219. {
  1220. "name": "sensio/framework-extra-bundle",
  1221. "version": "2.1.x-dev",
  1222. "target-dir": "Sensio/Bundle/FrameworkExtraBundle",
  1223. "source": {
  1224. "type": "git",
  1225. "url": "https://github.com/sensio/SensioFrameworkExtraBundle",
  1226. "reference": "53a2a5e5ba052b2ae281f3b8bd9b530947a328b4"
  1227. },
  1228. "dist": {
  1229. "type": "zip",
  1230. "url": "https://github.com/sensio/SensioFrameworkExtraBundle/zipball/53a2a5e5ba052b2ae281f3b8bd9b530947a328b4",
  1231. "reference": "53a2a5e5ba052b2ae281f3b8bd9b530947a328b4",
  1232. "shasum": ""
  1233. },
  1234. "require": {
  1235. "symfony/framework-bundle": "2.1.*",
  1236. "doctrine/common": ">=2.1,<2.4-dev"
  1237. },
  1238. "time": "1349786071",
  1239. "type": "symfony-bundle",
  1240. "extra": {
  1241. "branch-alias": {
  1242. "dev-master": "2.1.x-dev"
  1243. }
  1244. },
  1245. "installation-source": "source",
  1246. "autoload": {
  1247. "psr-0": {
  1248. "Sensio\\Bundle\\FrameworkExtraBundle": ""
  1249. }
  1250. },
  1251. "license": [
  1252. "MIT"
  1253. ],
  1254. "authors": [
  1255. {
  1256. "name": "Fabien Potencier",
  1257. "email": "fabien@symfony.com"
  1258. }
  1259. ],
  1260. "description": "This bundle provides a way to configure your controllers with annotations",
  1261. "keywords": [
  1262. "annotations",
  1263. "controllers"
  1264. ]
  1265. },
  1266. {
  1267. "name": "sensio/generator-bundle",
  1268. "version": "2.1.x-dev",
  1269. "target-dir": "Sensio/Bundle/GeneratorBundle",
  1270. "source": {
  1271. "type": "git",
  1272. "url": "https://github.com/sensio/SensioGeneratorBundle",
  1273. "reference": "3a65c9bf7d31aecacffc15a48f5eb2ece3615ef0"
  1274. },
  1275. "dist": {
  1276. "type": "zip",
  1277. "url": "https://github.com/sensio/SensioGeneratorBundle/zipball/3a65c9bf7d31aecacffc15a48f5eb2ece3615ef0",
  1278. "reference": "3a65c9bf7d31aecacffc15a48f5eb2ece3615ef0",
  1279. "shasum": ""
  1280. },
  1281. "require": {
  1282. "symfony/framework-bundle": "2.1.*",
  1283. "symfony/console": "2.1.*"
  1284. },
  1285. "require-dev": {
  1286. "symfony/doctrine-bridge": "2.1.*",
  1287. "doctrine/orm": ">=2.1,<2.4-dev",
  1288. "twig/twig": ">=1.8,<2.0-dev"
  1289. },
  1290. "time": "1348030981",
  1291. "type": "symfony-bundle",
  1292. "extra": {
  1293. "branch-alias": {
  1294. "dev-master": "2.1.x-dev"
  1295. }
  1296. },
  1297. "installation-source": "source",
  1298. "autoload": {
  1299. "psr-0": {
  1300. "Sensio\\Bundle\\GeneratorBundle": ""
  1301. }
  1302. },
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Fabien Potencier",
  1309. "email": "fabien@symfony.com"
  1310. }
  1311. ],
  1312. "description": "This bundle generates code for you"
  1313. },
  1314. {
  1315. "name": "snc/redis-bundle",
  1316. "version": "dev-master",
  1317. "target-dir": "Snc/RedisBundle",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "git://github.com/snc/SncRedisBundle.git",
  1321. "reference": "bef251fe0e4b81740e4eb933e767471808d2dff4"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://github.com/snc/SncRedisBundle/zipball/bef251fe0e4b81740e4eb933e767471808d2dff4",
  1326. "reference": "bef251fe0e4b81740e4eb933e767471808d2dff4",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "symfony/framework-bundle": "2.1.*",
  1331. "symfony/yaml": "2.1.*",
  1332. "php": ">=5.3.3"
  1333. },
  1334. "require-dev": {
  1335. "doctrine/common": ">=2.2",
  1336. "predis/predis": "0.7.*"
  1337. },
  1338. "suggest": {
  1339. "monolog/monolog": "If you want to use the monolog redis handler.",
  1340. "predis/predis": "If you want to use predis (currently only v0.7.x is supported)."
  1341. },
  1342. "time": "1348124605",
  1343. "type": "symfony-bundle",
  1344. "extra": {
  1345. "branch-alias": {
  1346. "dev-master": "2.1-dev"
  1347. }
  1348. },
  1349. "installation-source": "source",
  1350. "autoload": {
  1351. "psr-0": {
  1352. "Snc\\RedisBundle": ""
  1353. }
  1354. },
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Henrik Westphal",
  1361. "email": "henrik.westphal@gmail.com"
  1362. },
  1363. {
  1364. "name": "Community contributors",
  1365. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  1366. }
  1367. ],
  1368. "description": "A Redis bundle for Symfony2",
  1369. "homepage": "https://github.com/snc/SncRedisBundle",
  1370. "keywords": [
  1371. "nosql",
  1372. "redis",
  1373. "symfony"
  1374. ]
  1375. },
  1376. {
  1377. "name": "solarium/solarium",
  1378. "version": "dev-master",
  1379. "source": {
  1380. "type": "git",
  1381. "url": "https://github.com/basdenooijer/solarium",
  1382. "reference": "5c7afe1c4e104feb3761618dd54cf813beb4de5a"
  1383. },
  1384. "dist": {
  1385. "type": "zip",
  1386. "url": "https://github.com/basdenooijer/solarium/zipball/5c7afe1c4e104feb3761618dd54cf813beb4de5a",
  1387. "reference": "5c7afe1c4e104feb3761618dd54cf813beb4de5a",
  1388. "shasum": ""
  1389. },
  1390. "require": {
  1391. "php": ">=5.2.0"
  1392. },
  1393. "time": "1343376249",
  1394. "type": "library",
  1395. "installation-source": "source",
  1396. "autoload": {
  1397. "psr-0": {
  1398. "Solarium": "library/"
  1399. }
  1400. },
  1401. "license": [
  1402. "NewBSD"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "See GitHub contributors",
  1407. "email": null,
  1408. "homepage": "https://github.com/basdenooijer/solarium/contributors",
  1409. "role": null
  1410. }
  1411. ],
  1412. "description": "PHP Solr client",
  1413. "homepage": "http://www.solarium-project.org",
  1414. "keywords": [
  1415. "php",
  1416. "solr",
  1417. "search"
  1418. ]
  1419. },
  1420. {
  1421. "name": "swiftmailer/swiftmailer",
  1422. "version": "dev-master",
  1423. "source": {
  1424. "type": "git",
  1425. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1426. "reference": "22731e907f5ca288c9bfde6b54f3611ace0a6c39"
  1427. },
  1428. "dist": {
  1429. "type": "zip",
  1430. "url": "https://github.com/swiftmailer/swiftmailer/zipball/22731e907f5ca288c9bfde6b54f3611ace0a6c39",
  1431. "reference": "22731e907f5ca288c9bfde6b54f3611ace0a6c39",
  1432. "shasum": ""
  1433. },
  1434. "require": {
  1435. "php": ">=5.2.4"
  1436. },
  1437. "time": "1349196829",
  1438. "type": "library",
  1439. "extra": {
  1440. "branch-alias": {
  1441. "dev-master": "4.2-dev"
  1442. }
  1443. },
  1444. "installation-source": "source",
  1445. "autoload": {
  1446. "files": [
  1447. "lib/swift_required.php"
  1448. ]
  1449. },
  1450. "license": [
  1451. "LGPL"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Fabien Potencier",
  1456. "email": "fabien@symfony.com"
  1457. },
  1458. {
  1459. "name": "Chris Corbyn"
  1460. }
  1461. ],
  1462. "description": "Swiftmailer, free feature-rich PHP mailer",
  1463. "homepage": "http://swiftmailer.org",
  1464. "keywords": [
  1465. "mail",
  1466. "mailer"
  1467. ]
  1468. },
  1469. {
  1470. "name": "symfony/assetic-bundle",
  1471. "version": "dev-master",
  1472. "target-dir": "Symfony/Bundle/AsseticBundle",
  1473. "source": {
  1474. "type": "git",
  1475. "url": "https://github.com/symfony/AsseticBundle",
  1476. "reference": "7d7393fc9d01f77a3da254735303d696181048c1"
  1477. },
  1478. "dist": {
  1479. "type": "zip",
  1480. "url": "https://github.com/symfony/AsseticBundle/zipball/7d7393fc9d01f77a3da254735303d696181048c1",
  1481. "reference": "7d7393fc9d01f77a3da254735303d696181048c1",
  1482. "shasum": ""
  1483. },
  1484. "require": {
  1485. "php": ">=5.3.0",
  1486. "kriswallsmith/assetic": "1.1.*",
  1487. "symfony/framework-bundle": ">=2.1.0,<2.3-dev"
  1488. },
  1489. "require-dev": {
  1490. "symfony/twig-bundle": ">=2.1.0,<2.3-dev",
  1491. "symfony/console": ">=2.1.0,<2.3-dev",
  1492. "symfony/class-loader": ">=2.1.0,<2.3-dev",
  1493. "symfony/yaml": ">=2.1.0,<2.3-dev",
  1494. "symfony/form": ">=2.1.0,<2.3-dev",
  1495. "symfony/dom-crawler": ">=2.1.0,<2.3-dev",
  1496. "symfony/css-selector": ">=2.1.0,<2.3-dev"
  1497. },
  1498. "suggest": {
  1499. "symfony/twig-bundle": ">=2.1.0,<2.3-dev"
  1500. },
  1501. "time": "1350218039",
  1502. "type": "symfony-bundle",
  1503. "extra": {
  1504. "branch-alias": {
  1505. "dev-master": "2.1.x-dev"
  1506. }
  1507. },
  1508. "installation-source": "source",
  1509. "autoload": {
  1510. "psr-0": {
  1511. "Symfony\\Bundle\\AsseticBundle": ""
  1512. }
  1513. },
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Kris Wallsmith",
  1520. "email": "kris.wallsmith@gmail.com",
  1521. "homepage": "http://kriswallsmith.net/"
  1522. }
  1523. ],
  1524. "description": "Integrates Assetic into Symfony2",
  1525. "homepage": "https://github.com/symfony/AsseticBundle",
  1526. "keywords": [
  1527. "assets",
  1528. "compression",
  1529. "minification"
  1530. ]
  1531. },
  1532. {
  1533. "name": "symfony/monolog-bundle",
  1534. "version": "dev-master",
  1535. "target-dir": "Symfony/Bundle/MonologBundle",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/symfony/MonologBundle",
  1539. "reference": "51517152a608926ee6b40ed8cfbba1a708f0a14f"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://github.com/symfony/MonologBundle/zipball/51517152a608926ee6b40ed8cfbba1a708f0a14f",
  1544. "reference": "51517152a608926ee6b40ed8cfbba1a708f0a14f",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "php": ">=5.3.2",
  1549. "monolog/monolog": "1.*",
  1550. "symfony/monolog-bridge": ">=2.1.0,<2.3-dev",
  1551. "symfony/dependency-injection": ">=2.1.0,<2.3-dev",
  1552. "symfony/config": ">=2.1.0,<2.3-dev"
  1553. },
  1554. "require-dev": {
  1555. "symfony/yaml": ">=2.1.0,<2.3-dev",
  1556. "symfony/config": ">=2.1.0,<2.3-dev"
  1557. },
  1558. "time": "1348137624",
  1559. "type": "symfony-bundle",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "2.1.x-dev"
  1563. }
  1564. },
  1565. "installation-source": "source",
  1566. "autoload": {
  1567. "psr-0": {
  1568. "Symfony\\Bundle\\MonologBundle": ""
  1569. }
  1570. },
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Fabien Potencier",
  1577. "email": "fabien@symfony.com"
  1578. },
  1579. {
  1580. "name": "Symfony Community",
  1581. "homepage": "http://symfony.com/contributors"
  1582. }
  1583. ],
  1584. "description": "Symfony MonologBundle",
  1585. "homepage": "http://symfony.com"
  1586. },
  1587. {
  1588. "name": "symfony/swiftmailer-bundle",
  1589. "version": "dev-master",
  1590. "target-dir": "Symfony/Bundle/SwiftmailerBundle",
  1591. "source": {
  1592. "type": "git",
  1593. "url": "https://github.com/symfony/SwiftmailerBundle",
  1594. "reference": "11b91177f5ffa77720be0b8b206b07a72a9f89ae"
  1595. },
  1596. "dist": {
  1597. "type": "zip",
  1598. "url": "https://github.com/symfony/SwiftmailerBundle/zipball/11b91177f5ffa77720be0b8b206b07a72a9f89ae",
  1599. "reference": "11b91177f5ffa77720be0b8b206b07a72a9f89ae",
  1600. "shasum": ""
  1601. },
  1602. "require": {
  1603. "php": ">=5.3.2",
  1604. "swiftmailer/swiftmailer": ">=4.2.0,<4.3-dev",
  1605. "symfony/swiftmailer-bridge": ">=2.1.0,<2.3-dev"
  1606. },
  1607. "require-dev": {
  1608. "symfony/dependency-injection": ">=2.1.0,<2.3-dev",
  1609. "symfony/http-kernel": ">=2.1.0,<2.3-dev",
  1610. "symfony/config": ">=2.1.0,<2.3-dev",
  1611. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1612. },
  1613. "time": "1350372141",
  1614. "type": "symfony-bundle",
  1615. "extra": {
  1616. "branch-alias": {
  1617. "dev-master": "2.1-dev"
  1618. }
  1619. },
  1620. "installation-source": "source",
  1621. "autoload": {
  1622. "psr-0": {
  1623. "Symfony\\Bundle\\SwiftmailerBundle": ""
  1624. }
  1625. },
  1626. "license": [
  1627. "MIT"
  1628. ],
  1629. "authors": [
  1630. {
  1631. "name": "Fabien Potencier",
  1632. "email": "fabien@symfony.com"
  1633. },
  1634. {
  1635. "name": "Symfony Community",
  1636. "homepage": "http://symfony.com/contributors"
  1637. }
  1638. ],
  1639. "description": "Symfony SwiftmailerBundle",
  1640. "homepage": "http://symfony.com"
  1641. },
  1642. {
  1643. "name": "symfony/symfony",
  1644. "version": "2.1.x-dev",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "git://github.com/symfony/symfony.git",
  1648. "reference": "4141afba467fc918c814dfc401b121981aeb5348"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://github.com/symfony/symfony/zipball/4141afba467fc918c814dfc401b121981aeb5348",
  1653. "reference": "4141afba467fc918c814dfc401b121981aeb5348",
  1654. "shasum": ""
  1655. },
  1656. "require": {
  1657. "php": ">=5.3.3",
  1658. "doctrine/common": ">2.2,<2.4-dev",
  1659. "twig/twig": ">=1.9.1,<2.0-dev"
  1660. },
  1661. "replace": {
  1662. "symfony/doctrine-bridge": "self.version",
  1663. "symfony/monolog-bridge": "self.version",
  1664. "symfony/propel1-bridge": "self.version",
  1665. "symfony/swiftmailer-bridge": "self.version",
  1666. "symfony/twig-bridge": "self.version",
  1667. "symfony/framework-bundle": "self.version",
  1668. "symfony/security-bundle": "self.version",
  1669. "symfony/twig-bundle": "self.version",
  1670. "symfony/web-profiler-bundle": "self.version",
  1671. "symfony/browser-kit": "self.version",
  1672. "symfony/class-loader": "self.version",
  1673. "symfony/config": "self.version",
  1674. "symfony/console": "self.version",
  1675. "symfony/css-selector": "self.version",
  1676. "symfony/dependency-injection": "self.version",
  1677. "symfony/dom-crawler": "self.version",
  1678. "symfony/event-dispatcher": "self.version",
  1679. "symfony/filesystem": "self.version",
  1680. "symfony/finder": "self.version",
  1681. "symfony/form": "self.version",
  1682. "symfony/http-foundation": "self.version",
  1683. "symfony/http-kernel": "self.version",
  1684. "symfony/locale": "self.version",
  1685. "symfony/options-resolver": "self.version",
  1686. "symfony/process": "self.version",
  1687. "symfony/routing": "self.version",
  1688. "symfony/security": "self.version",
  1689. "symfony/serializer": "self.version",
  1690. "symfony/templating": "self.version",
  1691. "symfony/translation": "self.version",
  1692. "symfony/validator": "self.version",
  1693. "symfony/yaml": "self.version"
  1694. },
  1695. "require-dev": {
  1696. "doctrine/dbal": ">=2.2,<2.4-dev",
  1697. "doctrine/orm": ">=2.2.3,<2.4-dev",
  1698. "doctrine/data-fixtures": "1.0.*",
  1699. "propel/propel1": "dev-master",
  1700. "monolog/monolog": "1.*"
  1701. },
  1702. "time": "1350379655",
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "2.1-dev"
  1707. }
  1708. },
  1709. "installation-source": "source",
  1710. "autoload": {
  1711. "psr-0": {
  1712. "Symfony": "src/",
  1713. "SessionHandlerInterface": "src/Symfony/Component/HttpFoundation/Resources/stubs"
  1714. }
  1715. },
  1716. "license": [
  1717. "MIT"
  1718. ],
  1719. "authors": [
  1720. {
  1721. "name": "Fabien Potencier",
  1722. "email": "fabien@symfony.com"
  1723. },
  1724. {
  1725. "name": "Symfony Community",
  1726. "homepage": "http://symfony.com/contributors"
  1727. }
  1728. ],
  1729. "description": "The Symfony PHP framework",
  1730. "homepage": "http://symfony.com",
  1731. "keywords": [
  1732. "framework"
  1733. ]
  1734. },
  1735. {
  1736. "name": "twig/extensions",
  1737. "version": "dev-master",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://github.com/fabpot/Twig-extensions",
  1741. "reference": "dcdff02fbac1282e6b8f4d0558cc7e9580105688"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://github.com/fabpot/Twig-extensions/zipball/dcdff02fbac1282e6b8f4d0558cc7e9580105688",
  1746. "reference": "dcdff02fbac1282e6b8f4d0558cc7e9580105688",
  1747. "shasum": ""
  1748. },
  1749. "require": {
  1750. "twig/twig": "1.*"
  1751. },
  1752. "time": "1349889206",
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "1.0.x-dev"
  1757. }
  1758. },
  1759. "installation-source": "source",
  1760. "autoload": {
  1761. "psr-0": {
  1762. "Twig_Extensions_": "lib/"
  1763. }
  1764. },
  1765. "license": [
  1766. "MIT"
  1767. ],
  1768. "authors": [
  1769. {
  1770. "name": "Fabien Potencier",
  1771. "email": "fabien@symfony.com"
  1772. }
  1773. ],
  1774. "description": "Common additional features for Twig that do not directly belong in core",
  1775. "homepage": "https://github.com/fabpot/Twig-extensions",
  1776. "keywords": [
  1777. "debug",
  1778. "i18n",
  1779. "text"
  1780. ]
  1781. },
  1782. {
  1783. "name": "twig/twig",
  1784. "version": "dev-master",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "git://github.com/fabpot/Twig.git",
  1788. "reference": "78669a66d08e3a5970d50668be86ae8bf28dd304"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://github.com/fabpot/Twig/zipball/78669a66d08e3a5970d50668be86ae8bf28dd304",
  1793. "reference": "78669a66d08e3a5970d50668be86ae8bf28dd304",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": ">=5.2.4"
  1798. },
  1799. "time": "1350367072",
  1800. "type": "library",
  1801. "extra": {
  1802. "branch-alias": {
  1803. "dev-master": "1.10-dev"
  1804. }
  1805. },
  1806. "installation-source": "source",
  1807. "autoload": {
  1808. "psr-0": {
  1809. "Twig_": "lib/"
  1810. }
  1811. },
  1812. "license": [
  1813. "BSD-3"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Fabien Potencier",
  1818. "email": "fabien@symfony.com"
  1819. },
  1820. {
  1821. "name": "Armin Ronacher",
  1822. "email": "armin.ronacher@active-4.com"
  1823. }
  1824. ],
  1825. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1826. "homepage": "http://twig.sensiolabs.org",
  1827. "keywords": [
  1828. "templating"
  1829. ]
  1830. },
  1831. {
  1832. "name": "white-october/pagerfanta-bundle",
  1833. "version": "dev-master",
  1834. "target-dir": "WhiteOctober/PagerfantaBundle",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "git://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  1838. "reference": "38e317a3ecd5a68e2322024ea8fe57632d4ddd68"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/38e317a3ecd5a68e2322024ea8fe57632d4ddd68",
  1843. "reference": "38e317a3ecd5a68e2322024ea8fe57632d4ddd68",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "symfony/framework-bundle": "2.*",
  1848. "pagerfanta/pagerfanta": "dev-master"
  1849. },
  1850. "time": "1343134121",
  1851. "type": "symfony-bundle",
  1852. "installation-source": "source",
  1853. "autoload": {
  1854. "psr-0": {
  1855. "WhiteOctober\\PagerfantaBundle": ""
  1856. }
  1857. },
  1858. "license": [
  1859. "MIT"
  1860. ],
  1861. "authors": [
  1862. {
  1863. "name": "Pablo Díez",
  1864. "email": "pablodip@gmail.com",
  1865. "homepage": "http://github.com/pablodip",
  1866. "role": null
  1867. }
  1868. ],
  1869. "description": "Bundle to use Pagerfanta with Symfony2",
  1870. "keywords": [
  1871. "page",
  1872. "paging"
  1873. ]
  1874. },
  1875. {
  1876. "name": "zendframework/zend-escaper",
  1877. "version": "2.0.2",
  1878. "target-dir": "Zend/Escaper",
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "http://packages.zendframework.com/composer/Zend_Escaper-2.0.2.zip",
  1882. "reference": null,
  1883. "shasum": null
  1884. },
  1885. "require": {
  1886. "php": ">=5.3.3"
  1887. },
  1888. "type": "library",
  1889. "installation-source": "dist",
  1890. "autoload": {
  1891. "psr-0": {
  1892. "Zend\\Escaper": ""
  1893. }
  1894. },
  1895. "license": [
  1896. "BSD-3-Clause"
  1897. ],
  1898. "description": " ",
  1899. "homepage": "http://packages.zendframework.com/",
  1900. "keywords": [
  1901. "zf2",
  1902. "escaper"
  1903. ],
  1904. "support": {
  1905. "email": "fw-general-subscribe@lists.zend.com",
  1906. "irc": "irc://irc.freenode.net/zftalk",
  1907. "issues": "https://github.com/zendframework/zf2/issues",
  1908. "source": "https://github.com/zendframework/zf2"
  1909. }
  1910. },
  1911. {
  1912. "name": "zendframework/zend-feed",
  1913. "version": "2.0.2",
  1914. "target-dir": "Zend/Feed",
  1915. "dist": {
  1916. "type": "zip",
  1917. "url": "http://packages.zendframework.com/composer/Zend_Feed-2.0.2.zip",
  1918. "reference": null,
  1919. "shasum": null
  1920. },
  1921. "require": {
  1922. "php": ">=5.3.3",
  1923. "zendframework/zend-escaper": "self.version",
  1924. "zendframework/zend-stdlib": "self.version"
  1925. },
  1926. "suggest": {
  1927. "zendframework/zend-uri": "Zend\\Uri component",
  1928. "zendframework/zend-validator": "Zend\\Validator component"
  1929. },
  1930. "type": "library",
  1931. "installation-source": "dist",
  1932. "autoload": {
  1933. "psr-0": {
  1934. "Zend\\Feed": ""
  1935. }
  1936. },
  1937. "license": [
  1938. "BSD-3-Clause"
  1939. ],
  1940. "description": "provides functionality for consuming RSS and Atom feeds",
  1941. "homepage": "http://packages.zendframework.com/",
  1942. "keywords": [
  1943. "zf2",
  1944. "feed"
  1945. ],
  1946. "support": {
  1947. "email": "fw-general-subscribe@lists.zend.com",
  1948. "irc": "irc://irc.freenode.net/zftalk",
  1949. "issues": "https://github.com/zendframework/zf2/issues",
  1950. "source": "https://github.com/zendframework/zf2"
  1951. }
  1952. },
  1953. {
  1954. "name": "zendframework/zend-i18n",
  1955. "version": "2.0.2",
  1956. "target-dir": "Zend/I18n",
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "http://packages.zendframework.com/composer/Zend_I18n-2.0.2.zip",
  1960. "reference": null,
  1961. "shasum": null
  1962. },
  1963. "require": {
  1964. "php": ">=5.3.3",
  1965. "ext-intl": "*",
  1966. "zendframework/zend-stdlib": "self.version"
  1967. },
  1968. "type": "library",
  1969. "installation-source": "dist",
  1970. "autoload": {
  1971. "psr-0": {
  1972. "Zend\\I18n": ""
  1973. }
  1974. },
  1975. "license": [
  1976. "BSD-3-Clause"
  1977. ],
  1978. "description": " ",
  1979. "homepage": "http://packages.zendframework.com/",
  1980. "keywords": [
  1981. "zf2",
  1982. "i18n"
  1983. ],
  1984. "support": {
  1985. "email": "fw-general-subscribe@lists.zend.com",
  1986. "irc": "irc://irc.freenode.net/zftalk",
  1987. "issues": "https://github.com/zendframework/zf2/issues",
  1988. "source": "https://github.com/zendframework/zf2"
  1989. }
  1990. },
  1991. {
  1992. "name": "zendframework/zend-servicemanager",
  1993. "version": "2.0.2",
  1994. "target-dir": "Zend/ServiceManager",
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "http://packages.zendframework.com/composer/Zend_ServiceManager-2.0.2.zip",
  1998. "reference": null,
  1999. "shasum": null
  2000. },
  2001. "require": {
  2002. "php": ">=5.3.3"
  2003. },
  2004. "suggest": {
  2005. "zendframework/zend-di": "Zend\\Di component"
  2006. },
  2007. "type": "library",
  2008. "installation-source": "dist",
  2009. "autoload": {
  2010. "psr-0": {
  2011. "Zend\\ServiceManager": ""
  2012. }
  2013. },
  2014. "license": [
  2015. "BSD-3-Clause"
  2016. ],
  2017. "description": " ",
  2018. "homepage": "http://packages.zendframework.com/",
  2019. "keywords": [
  2020. "zf2",
  2021. "servicemanager"
  2022. ],
  2023. "support": {
  2024. "email": "fw-general-subscribe@lists.zend.com",
  2025. "irc": "irc://irc.freenode.net/zftalk",
  2026. "issues": "https://github.com/zendframework/zf2/issues",
  2027. "source": "https://github.com/zendframework/zf2"
  2028. }
  2029. },
  2030. {
  2031. "name": "zendframework/zend-stdlib",
  2032. "version": "2.0.2",
  2033. "target-dir": "Zend/Stdlib",
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "http://packages.zendframework.com/composer/Zend_Stdlib-2.0.2.zip",
  2037. "reference": null,
  2038. "shasum": null
  2039. },
  2040. "require": {
  2041. "php": ">=5.3.3"
  2042. },
  2043. "suggest": {
  2044. "pecl-weakref": "Implementation of weak references for Stdlib\\CallbackHandler"
  2045. },
  2046. "type": "library",
  2047. "installation-source": "dist",
  2048. "autoload": {
  2049. "psr-0": {
  2050. "Zend\\Stdlib": ""
  2051. }
  2052. },
  2053. "license": [
  2054. "BSD-3-Clause"
  2055. ],
  2056. "description": " ",
  2057. "homepage": "http://packages.zendframework.com/",
  2058. "keywords": [
  2059. "zf2",
  2060. "stdlib"
  2061. ],
  2062. "support": {
  2063. "email": "fw-general-subscribe@lists.zend.com",
  2064. "irc": "irc://irc.freenode.net/zftalk",
  2065. "issues": "https://github.com/zendframework/zf2/issues",
  2066. "source": "https://github.com/zendframework/zf2"
  2067. }
  2068. },
  2069. {
  2070. "name": "zendframework/zend-uri",
  2071. "version": "2.0.2",
  2072. "target-dir": "Zend/Uri",
  2073. "dist": {
  2074. "type": "zip",
  2075. "url": "http://packages.zendframework.com/composer/Zend_Uri-2.0.2.zip",
  2076. "reference": null,
  2077. "shasum": null
  2078. },
  2079. "require": {
  2080. "php": ">=5.3.3",
  2081. "zendframework/zend-escaper": "self.version",
  2082. "zendframework/zend-validator": "self.version"
  2083. },
  2084. "type": "library",
  2085. "installation-source": "dist",
  2086. "autoload": {
  2087. "psr-0": {
  2088. "Zend\\Uri": ""
  2089. }
  2090. },
  2091. "license": [
  2092. "BSD-3-Clause"
  2093. ],
  2094. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  2095. "homepage": "http://packages.zendframework.com/",
  2096. "keywords": [
  2097. "zf2",
  2098. "uri"
  2099. ],
  2100. "support": {
  2101. "email": "fw-general-subscribe@lists.zend.com",
  2102. "irc": "irc://irc.freenode.net/zftalk",
  2103. "issues": "https://github.com/zendframework/zf2/issues",
  2104. "source": "https://github.com/zendframework/zf2"
  2105. }
  2106. },
  2107. {
  2108. "name": "zendframework/zend-validator",
  2109. "version": "2.0.2",
  2110. "target-dir": "Zend/Validator",
  2111. "dist": {
  2112. "type": "zip",
  2113. "url": "http://packages.zendframework.com/composer/Zend_Validator-2.0.2.zip",
  2114. "reference": null,
  2115. "shasum": null
  2116. },
  2117. "require": {
  2118. "php": ">=5.3.3",
  2119. "zendframework/zend-i18n": "self.version",
  2120. "zendframework/zend-stdlib": "self.version"
  2121. },
  2122. "require-dev": {
  2123. "zendframework/zend-math": "self.version"
  2124. },
  2125. "suggest": {
  2126. "zendframework/zend-db": "Zend\\Db component",
  2127. "zendframework/zend-math": "Zend\\Math component"
  2128. },
  2129. "type": "library",
  2130. "installation-source": "dist",
  2131. "autoload": {
  2132. "psr-0": {
  2133. "Zend\\Validator": ""
  2134. }
  2135. },
  2136. "license": [
  2137. "BSD-3-Clause"
  2138. ],
  2139. "description": "provides a set of commonly needed validators",
  2140. "homepage": "http://packages.zendframework.com/",
  2141. "keywords": [
  2142. "zf2",
  2143. "validator"
  2144. ],
  2145. "support": {
  2146. "email": "fw-general-subscribe@lists.zend.com",
  2147. "irc": "irc://irc.freenode.net/zftalk",
  2148. "issues": "https://github.com/zendframework/zf2/issues",
  2149. "source": "https://github.com/zendframework/zf2"
  2150. }
  2151. },
  2152. {
  2153. "name": "zendframework/zend-version",
  2154. "version": "2.0.2",
  2155. "target-dir": "Zend/Version",
  2156. "dist": {
  2157. "type": "zip",
  2158. "url": "http://packages.zendframework.com/composer/Zend_Version-2.0.2.zip",
  2159. "reference": null,
  2160. "shasum": null
  2161. },
  2162. "require": {
  2163. "php": ">=5.3.3"
  2164. },
  2165. "type": "library",
  2166. "installation-source": "dist",
  2167. "autoload": {
  2168. "psr-0": {
  2169. "Zend\\Version": ""
  2170. }
  2171. },
  2172. "license": [
  2173. "BSD-3-Clause"
  2174. ],
  2175. "description": " ",
  2176. "homepage": "http://packages.zendframework.com/",
  2177. "keywords": [
  2178. "zf2",
  2179. "version"
  2180. ],
  2181. "support": {
  2182. "email": "fw-general-subscribe@lists.zend.com",
  2183. "irc": "irc://irc.freenode.net/zftalk",
  2184. "issues": "https://github.com/zendframework/zf2/issues",
  2185. "source": "https://github.com/zendframework/zf2"
  2186. }
  2187. }
  2188. ],
  2189. "packages-dev": null,
  2190. "aliases": [
  2191. ],
  2192. "minimum-stability": "dev",
  2193. "stability-flags": {
  2194. "composer/composer": 20,
  2195. "hwi/oauth-bundle": 20,
  2196. "nelmio/solarium-bundle": 20,
  2197. "nelmio/security-bundle": 20,
  2198. "snc/redis-bundle": 20,
  2199. "white-october/pagerfanta-bundle": 20
  2200. }
  2201. }