composer.lock 77 KB

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