composer.lock 80 KB

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