composer.lock 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  1. {
  2. "hash": "b8eb218fd26f2fd59bd387b5982224f7",
  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": "f69418427f693e5be5ddf6b1830eb36bbf18eeed"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/composer/composer/zipball/f69418427f693e5be5ddf6b1830eb36bbf18eeed",
  15. "reference": "f69418427f693e5be5ddf6b1830eb36bbf18eeed",
  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": "http://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-02-27 12:11:35"
  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.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. "doctrine/common": "2.3.*",
  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-01-07 20:03:43"
  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.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. "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-01-07 20:05:04"
  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",
  415. "reference": "461cdae22f81836a0722f4f3c596b598827bd9cd"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/461cdae22f81836a0722f4f3c596b598827bd9cd",
  420. "reference": "461cdae22f81836a0722f4f3c596b598827bd9cd",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "kriswallsmith/buzz": "0.7",
  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-dev",
  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.2-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": "Alexander",
  463. "email": "alexander@hardware.info"
  464. },
  465. {
  466. "name": "Contributors",
  467. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  468. }
  469. ],
  470. "description": "Support for authenticating users via oauth in Symfony2.",
  471. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  472. "keywords": [
  473. "facebook",
  474. "firewall",
  475. "github",
  476. "google",
  477. "linkedin",
  478. "oauth",
  479. "oauth1",
  480. "oauth2",
  481. "security",
  482. "sensio connect",
  483. "twitter",
  484. "vkontakte",
  485. "windows live",
  486. "yahoo"
  487. ],
  488. "time": "2013-02-09 21:51:17"
  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. "jms/cg": "1.0.0",
  507. "symfony/framework-bundle": "2.*"
  508. },
  509. "type": "symfony-bundle",
  510. "autoload": {
  511. "psr-0": {
  512. "JMS\\AopBundle": ""
  513. }
  514. },
  515. "notification-url": "https://packagist.org/downloads/",
  516. "license": [
  517. "Apache"
  518. ],
  519. "authors": [
  520. {
  521. "name": "Johannes M. Schmitt",
  522. "email": "schmittjoh@gmail.com",
  523. "homepage": "https://github.com/schmittjoh",
  524. "role": "Developer of wrapped JMSSerializerBundle"
  525. }
  526. ],
  527. "description": "Adds AOP capabilities to Symfony2",
  528. "keywords": [
  529. "annotations",
  530. "aop"
  531. ],
  532. "time": "2012-01-02 12:50:26"
  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. "type": "library",
  552. "autoload": {
  553. "psr-0": {
  554. "CG\\": "src/"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "Apache"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Johannes M. Schmitt",
  564. "email": "schmittjoh@gmail.com",
  565. "homepage": "https://github.com/schmittjoh",
  566. "role": "Developer of wrapped JMSSerializerBundle"
  567. }
  568. ],
  569. "description": "Toolset for generating PHP code",
  570. "keywords": [
  571. "code generation"
  572. ],
  573. "time": "2012-01-02 12:40:52"
  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. "jms/aop-bundle": "1.0.*",
  592. "jms/metadata": "1.1.*",
  593. "symfony/finder": "2.1.*",
  594. "symfony/framework-bundle": "2.1.*",
  595. "symfony/process": "2.1.*"
  596. },
  597. "require-dev": {
  598. "doctrine/doctrine-bundle": "*",
  599. "doctrine/orm": "*",
  600. "jms/security-extra-bundle": "1.*",
  601. "sensio/framework-extra-bundle": "*",
  602. "symfony/browser-kit": "*",
  603. "symfony/class-loader": "*",
  604. "symfony/form": "*",
  605. "symfony/security-bundle": "*",
  606. "symfony/twig-bundle": "*",
  607. "symfony/validator": "*",
  608. "symfony/yaml": "*"
  609. },
  610. "type": "symfony-bundle",
  611. "autoload": {
  612. "psr-0": {
  613. "JMS\\DiExtraBundle": ""
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "Apache"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Johannes M. Schmitt",
  623. "email": "schmittjoh@gmail.com",
  624. "homepage": "https://github.com/schmittjoh",
  625. "role": "Developer of wrapped JMSSerializerBundle"
  626. }
  627. ],
  628. "description": "Allows to configure dependency injection using annotations",
  629. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  630. "keywords": [
  631. "annotations",
  632. "dependency injection"
  633. ],
  634. "time": "2012-09-21 01:56:32"
  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. "type": "library",
  654. "autoload": {
  655. "psr-0": {
  656. "Metadata\\": "src/"
  657. }
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "Apache"
  662. ],
  663. "authors": [
  664. {
  665. "name": "Johannes M. Schmitt",
  666. "email": "schmittjoh@gmail.com",
  667. "homepage": "https://github.com/schmittjoh",
  668. "role": "Developer of wrapped JMSSerializerBundle"
  669. }
  670. ],
  671. "description": "Class/method/property metadata management in PHP",
  672. "keywords": [
  673. "annotations",
  674. "metadata",
  675. "xml",
  676. "yaml"
  677. ],
  678. "time": "2012-01-02 13:32:49"
  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. "jms/aop-bundle": "1.0.*",
  697. "jms/di-extra-bundle": "1.1.*",
  698. "jms/metadata": "1.1.*",
  699. "symfony/framework-bundle": "2.1.*",
  700. "symfony/security-bundle": "*"
  701. },
  702. "require-dev": {
  703. "doctrine/doctrine-bundle": "*",
  704. "doctrine/orm": "*",
  705. "sensio/framework-extra-bundle": "*",
  706. "symfony/browser-kit": "*",
  707. "symfony/class-loader": "*",
  708. "symfony/css-selector": "*",
  709. "symfony/finder": "*",
  710. "symfony/form": "*",
  711. "symfony/process": "*",
  712. "symfony/twig-bundle": "*",
  713. "symfony/validator": "*",
  714. "symfony/yaml": "*"
  715. },
  716. "type": "symfony-bundle",
  717. "autoload": {
  718. "psr-0": {
  719. "JMS\\SecurityExtraBundle": ""
  720. }
  721. },
  722. "notification-url": "https://packagist.org/downloads/",
  723. "license": [
  724. "Apache2"
  725. ],
  726. "authors": [
  727. {
  728. "name": "Johannes M. Schmitt",
  729. "email": "schmittjoh@gmail.com",
  730. "homepage": "https://github.com/schmittjoh",
  731. "role": "Developer of wrapped JMSSerializerBundle"
  732. }
  733. ],
  734. "description": "Enhances the Symfony2 Security Component by adding several new features",
  735. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  736. "keywords": [
  737. "annotations",
  738. "authorization",
  739. "expression",
  740. "secure",
  741. "security"
  742. ],
  743. "time": "2012-09-06 09:12:03"
  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/archive/v1.1.0.zip",
  756. "reference": "v1.1.0",
  757. "shasum": ""
  758. },
  759. "require": {
  760. "php": ">=5.3.0"
  761. },
  762. "type": "library",
  763. "autoload": {
  764. "psr-0": {
  765. "JsonSchema": "src/"
  766. }
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "NewBSD"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Igor Wiedler",
  775. "email": "igor@wiedler.ch",
  776. "homepage": "http://wiedler.ch/igor/"
  777. },
  778. {
  779. "name": "Bruno Prieto Reis",
  780. "email": "bruno.p.reis@gmail.com"
  781. },
  782. {
  783. "name": "Justin Rainbow",
  784. "email": "justin.rainbow@gmail.com"
  785. },
  786. {
  787. "name": "Robert Schönthal",
  788. "email": "seroscho@googlemail.com",
  789. "homepage": "http://digitalkaoz.net"
  790. }
  791. ],
  792. "description": "A library to validate a json schema.",
  793. "homepage": "https://github.com/justinrainbow/json-schema",
  794. "keywords": [
  795. "json",
  796. "schema"
  797. ],
  798. "time": "2012-01-03 00:33:17"
  799. },
  800. {
  801. "name": "kriswallsmith/assetic",
  802. "version": "dev-master",
  803. "source": {
  804. "type": "git",
  805. "url": "https://github.com/kriswallsmith/assetic.git",
  806. "reference": "df03baa337ae1c87803a7b1a76a393f8a59813f3"
  807. },
  808. "dist": {
  809. "type": "zip",
  810. "url": "https://api.github.com/repos/kriswallsmith/assetic/zipball/df03baa337ae1c87803a7b1a76a393f8a59813f3",
  811. "reference": "df03baa337ae1c87803a7b1a76a393f8a59813f3",
  812. "shasum": ""
  813. },
  814. "require": {
  815. "php": ">=5.3.1",
  816. "symfony/process": ">=2.1.0,<2.3-dev"
  817. },
  818. "require-dev": {
  819. "cssmin/cssmin": "*",
  820. "joliclic/javascript-packer": "*",
  821. "kamicane/packager": "*",
  822. "leafo/lessphp": "*",
  823. "leafo/scssphp": "*",
  824. "leafo/scssphp-compass": "*",
  825. "mrclay/minify": "*",
  826. "phpunit/phpunit": "3.7.*",
  827. "ptachoire/cssembed": "*",
  828. "twig/twig": ">=1.6.0,<2.0"
  829. },
  830. "suggest": {
  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. "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin",
  834. "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
  835. "twig/twig": "Assetic provides the integration with the Twig templating engine"
  836. },
  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. "time": "2013-02-24 17:22:20"
  870. },
  871. {
  872. "name": "kriswallsmith/buzz",
  873. "version": "v0.7",
  874. "source": {
  875. "type": "git",
  876. "url": "http://github.com/kriswallsmith/Buzz.git",
  877. "reference": "v0.7"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://github.com/kriswallsmith/Buzz/zipball/v0.7",
  882. "reference": "v0.7",
  883. "shasum": ""
  884. },
  885. "require": {
  886. "php": ">=5.3.0"
  887. },
  888. "suggest": {
  889. "ext-curl": "*"
  890. },
  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. "time": "2012-06-25 12:01:38"
  915. },
  916. {
  917. "name": "monolog/monolog",
  918. "version": "1.2.1",
  919. "source": {
  920. "type": "git",
  921. "url": "https://github.com/Seldaek/monolog",
  922. "reference": "1.2.1"
  923. },
  924. "dist": {
  925. "type": "zip",
  926. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1.2.1",
  927. "reference": "1.2.1",
  928. "shasum": ""
  929. },
  930. "require": {
  931. "php": ">=5.3.0"
  932. },
  933. "require-dev": {
  934. "mlehner/gelf-php": "1.0.*"
  935. },
  936. "suggest": {
  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. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server"
  940. },
  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": "https://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. "time": "2012-08-29 11:53:20"
  971. },
  972. {
  973. "name": "nelmio/security-bundle",
  974. "version": "dev-master",
  975. "target-dir": "Nelmio/SecurityBundle",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/nelmio/NelmioSecurityBundle",
  979. "reference": "1.0.0"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/1.0.0",
  984. "reference": "1.0.0",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "symfony/framework-bundle": "2.*",
  989. "symfony/security": "2.*"
  990. },
  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. "time": "2013-01-08 13:27:55"
  1016. },
  1017. {
  1018. "name": "nelmio/solarium-bundle",
  1019. "version": "dev-master",
  1020. "target-dir": "Nelmio/SolariumBundle",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/nelmio/NelmioSolariumBundle",
  1024. "reference": "v1.1.0"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/v1.1.0",
  1029. "reference": "v1.1.0",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "solarium/solarium": ">=2.4,<2.5",
  1034. "symfony/framework-bundle": "2.*"
  1035. },
  1036. "require-dev": {
  1037. "symfony/yaml": "2.*"
  1038. },
  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. "search",
  1067. "solarium",
  1068. "solr"
  1069. ],
  1070. "time": "2013-01-07 10:35:43"
  1071. },
  1072. {
  1073. "name": "pagerfanta/pagerfanta",
  1074. "version": "dev-master",
  1075. "source": {
  1076. "type": "git",
  1077. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  1078. "reference": "878aee5e274ca75fbdf74262efd05d1207c31669"
  1079. },
  1080. "dist": {
  1081. "type": "zip",
  1082. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/878aee5e274ca75fbdf74262efd05d1207c31669",
  1083. "reference": "878aee5e274ca75fbdf74262efd05d1207c31669",
  1084. "shasum": ""
  1085. },
  1086. "require": {
  1087. "php": ">=5.3.0"
  1088. },
  1089. "require-dev": {
  1090. "doctrine/mongodb-odm": "*",
  1091. "doctrine/orm": "2.*",
  1092. "mandango/mandango": "*",
  1093. "propel/propel1": ">=1.6,<2.0",
  1094. "solarium/solarium": "3.*"
  1095. },
  1096. "suggest": {
  1097. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  1098. "doctrine/orm": "To use the DoctrineORMAdapter.",
  1099. "mandango/mandango": "To use the MandangoAdapter.",
  1100. "propel/propel1": "To use the PropelAdapter",
  1101. "solarium/solarium": "To use the SolariumAdapter."
  1102. },
  1103. "type": "library",
  1104. "extra": {
  1105. "branch-alias": {
  1106. "dev-master": "1.0.x-dev"
  1107. }
  1108. },
  1109. "autoload": {
  1110. "psr-0": {
  1111. "Pagerfanta\\": "src/"
  1112. }
  1113. },
  1114. "notification-url": "https://packagist.org/downloads/",
  1115. "license": [
  1116. "MIT"
  1117. ],
  1118. "authors": [
  1119. {
  1120. "name": "Pablo Díez",
  1121. "email": "pablodip@gmail.com",
  1122. "homepage": "http://github.com/pablodip"
  1123. }
  1124. ],
  1125. "description": "Pagination for PHP 5.3",
  1126. "keywords": [
  1127. "page",
  1128. "paging"
  1129. ],
  1130. "time": "2013-02-19 13:51:25"
  1131. },
  1132. {
  1133. "name": "predis/predis",
  1134. "version": "v0.8.3",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/nrk/predis.git",
  1138. "reference": "v0.8.3"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/nrk/predis/zipball/v0.8.3",
  1143. "reference": "v0.8.3",
  1144. "shasum": ""
  1145. },
  1146. "require": {
  1147. "php": ">=5.3.2"
  1148. },
  1149. "suggest": {
  1150. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1151. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1152. },
  1153. "type": "library",
  1154. "autoload": {
  1155. "psr-0": {
  1156. "Predis": "lib/"
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "MIT"
  1162. ],
  1163. "authors": [
  1164. {
  1165. "name": "Daniele Alessandri",
  1166. "email": "suppakilla@gmail.com",
  1167. "homepage": "http://clorophilla.net"
  1168. }
  1169. ],
  1170. "description": "Flexible and feature-complete PHP client library for Redis",
  1171. "homepage": "http://github.com/nrk/predis",
  1172. "keywords": [
  1173. "nosql",
  1174. "predis",
  1175. "redis"
  1176. ],
  1177. "time": "2013-02-18 14:03:45"
  1178. },
  1179. {
  1180. "name": "seld/jsonlint",
  1181. "version": "1.1.1",
  1182. "source": {
  1183. "type": "git",
  1184. "url": "http://github.com/Seldaek/jsonlint",
  1185. "reference": "1.1.1"
  1186. },
  1187. "dist": {
  1188. "type": "zip",
  1189. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1.1.1",
  1190. "reference": "1.1.1",
  1191. "shasum": ""
  1192. },
  1193. "require": {
  1194. "php": ">=5.3.0"
  1195. },
  1196. "bin": [
  1197. "bin/jsonlint"
  1198. ],
  1199. "type": "library",
  1200. "autoload": {
  1201. "psr-0": {
  1202. "Seld\\JsonLint": "src/"
  1203. }
  1204. },
  1205. "notification-url": "https://packagist.org/downloads/",
  1206. "license": [
  1207. "MIT"
  1208. ],
  1209. "authors": [
  1210. {
  1211. "name": "Jordi Boggiano",
  1212. "email": "j.boggiano@seld.be",
  1213. "homepage": "http://seld.be",
  1214. "role": "Developer"
  1215. }
  1216. ],
  1217. "description": "JSON Linter",
  1218. "keywords": [
  1219. "json",
  1220. "linter",
  1221. "parser",
  1222. "validator"
  1223. ],
  1224. "time": "2013-02-11 23:03:12"
  1225. },
  1226. {
  1227. "name": "sensio/distribution-bundle",
  1228. "version": "v2.1.8",
  1229. "target-dir": "Sensio/Bundle/DistributionBundle",
  1230. "source": {
  1231. "type": "git",
  1232. "url": "https://github.com/sensio/SensioDistributionBundle.git",
  1233. "reference": "v2.1.8"
  1234. },
  1235. "dist": {
  1236. "type": "zip",
  1237. "url": "https://api.github.com/repos/sensio/SensioDistributionBundle/zipball/v2.1.8",
  1238. "reference": "v2.1.8",
  1239. "shasum": ""
  1240. },
  1241. "require": {
  1242. "symfony/framework-bundle": "2.1.*"
  1243. },
  1244. "type": "symfony-bundle",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "2.1.x-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "psr-0": {
  1252. "Sensio\\Bundle\\DistributionBundle": ""
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "MIT"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Fabien Potencier",
  1262. "email": "fabien@symfony.com"
  1263. }
  1264. ],
  1265. "description": "The base bundle for the Symfony Distributions",
  1266. "keywords": [
  1267. "configuration",
  1268. "distribution"
  1269. ],
  1270. "time": "2013-02-04 19:54:42"
  1271. },
  1272. {
  1273. "name": "sensio/framework-extra-bundle",
  1274. "version": "v2.1.8",
  1275. "target-dir": "Sensio/Bundle/FrameworkExtraBundle",
  1276. "source": {
  1277. "type": "git",
  1278. "url": "https://github.com/sensio/SensioFrameworkExtraBundle.git",
  1279. "reference": "v2.1.8"
  1280. },
  1281. "dist": {
  1282. "type": "zip",
  1283. "url": "https://api.github.com/repos/sensio/SensioFrameworkExtraBundle/zipball/v2.1.8",
  1284. "reference": "v2.1.8",
  1285. "shasum": ""
  1286. },
  1287. "require": {
  1288. "doctrine/common": ">=2.1,<2.5-dev",
  1289. "symfony/framework-bundle": "2.1.*"
  1290. },
  1291. "type": "symfony-bundle",
  1292. "extra": {
  1293. "branch-alias": {
  1294. "dev-master": "2.1.x-dev"
  1295. }
  1296. },
  1297. "autoload": {
  1298. "psr-0": {
  1299. "Sensio\\Bundle\\FrameworkExtraBundle": ""
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Fabien Potencier",
  1309. "email": "fabien@symfony.com"
  1310. }
  1311. ],
  1312. "description": "This bundle provides a way to configure your controllers with annotations",
  1313. "keywords": [
  1314. "annotations",
  1315. "controllers"
  1316. ],
  1317. "time": "2013-02-22 17:57:31"
  1318. },
  1319. {
  1320. "name": "sensio/generator-bundle",
  1321. "version": "v2.1.8",
  1322. "target-dir": "Sensio/Bundle/GeneratorBundle",
  1323. "source": {
  1324. "type": "git",
  1325. "url": "https://github.com/sensio/SensioGeneratorBundle.git",
  1326. "reference": "v2.1.8"
  1327. },
  1328. "dist": {
  1329. "type": "zip",
  1330. "url": "https://api.github.com/repos/sensio/SensioGeneratorBundle/zipball/v2.1.8",
  1331. "reference": "v2.1.8",
  1332. "shasum": ""
  1333. },
  1334. "require": {
  1335. "symfony/console": "2.1.*",
  1336. "symfony/framework-bundle": "2.1.*"
  1337. },
  1338. "require-dev": {
  1339. "doctrine/orm": ">=2.1,<2.4-dev",
  1340. "symfony/doctrine-bridge": "2.1.*",
  1341. "twig/twig": ">=1.8,<2.0-dev"
  1342. },
  1343. "type": "symfony-bundle",
  1344. "extra": {
  1345. "branch-alias": {
  1346. "dev-master": "2.1.x-dev"
  1347. }
  1348. },
  1349. "autoload": {
  1350. "psr-0": {
  1351. "Sensio\\Bundle\\GeneratorBundle": ""
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "Fabien Potencier",
  1361. "email": "fabien@symfony.com"
  1362. }
  1363. ],
  1364. "description": "This bundle generates code for you",
  1365. "time": "2013-01-04 17:09:08"
  1366. },
  1367. {
  1368. "name": "snc/redis-bundle",
  1369. "version": "dev-master",
  1370. "target-dir": "Snc/RedisBundle",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/snc/SncRedisBundle.git",
  1374. "reference": "1.1.3"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/1.1.3",
  1379. "reference": "1.1.3",
  1380. "shasum": ""
  1381. },
  1382. "require": {
  1383. "php": ">=5.3.3",
  1384. "symfony/framework-bundle": ">=2.1.0,<2.3-dev",
  1385. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1386. },
  1387. "require-dev": {
  1388. "doctrine/common": ">=2.2",
  1389. "predis/predis": "0.8.*"
  1390. },
  1391. "suggest": {
  1392. "monolog/monolog": "If you want to use the monolog redis handler.",
  1393. "predis/predis": "If you want to use predis (currently only v0.8.x is supported)."
  1394. },
  1395. "type": "symfony-bundle",
  1396. "extra": {
  1397. "branch-alias": {
  1398. "dev-master": "2.1-dev"
  1399. }
  1400. },
  1401. "autoload": {
  1402. "psr-0": {
  1403. "Snc\\RedisBundle": ""
  1404. }
  1405. },
  1406. "notification-url": "https://packagist.org/downloads/",
  1407. "license": [
  1408. "MIT"
  1409. ],
  1410. "authors": [
  1411. {
  1412. "name": "Henrik Westphal",
  1413. "email": "henrik.westphal@gmail.com"
  1414. },
  1415. {
  1416. "name": "Community contributors",
  1417. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  1418. }
  1419. ],
  1420. "description": "A Redis bundle for Symfony2",
  1421. "homepage": "https://github.com/snc/SncRedisBundle",
  1422. "keywords": [
  1423. "nosql",
  1424. "redis",
  1425. "symfony"
  1426. ],
  1427. "time": "2013-02-16 09:07:25"
  1428. },
  1429. {
  1430. "name": "solarium/solarium",
  1431. "version": "2.4.1",
  1432. "source": {
  1433. "type": "git",
  1434. "url": "https://github.com/basdenooijer/solarium",
  1435. "reference": "2.4.1"
  1436. },
  1437. "dist": {
  1438. "type": "zip",
  1439. "url": "https://api.github.com/repos/basdenooijer/solarium/zipball/2.4.1",
  1440. "reference": "2.4.1",
  1441. "shasum": ""
  1442. },
  1443. "require": {
  1444. "php": ">=5.2.0"
  1445. },
  1446. "type": "library",
  1447. "autoload": {
  1448. "psr-0": {
  1449. "Solarium": "library/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "NewBSD"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "See GitHub contributors",
  1459. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  1460. }
  1461. ],
  1462. "description": "PHP Solr client",
  1463. "homepage": "http://www.solarium-project.org",
  1464. "keywords": [
  1465. "php",
  1466. "search",
  1467. "solr"
  1468. ],
  1469. "time": "2013-02-11 13:12:43"
  1470. },
  1471. {
  1472. "name": "swiftmailer/swiftmailer",
  1473. "version": "v4.2.2",
  1474. "source": {
  1475. "type": "git",
  1476. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1477. "reference": "v4.2.2"
  1478. },
  1479. "dist": {
  1480. "type": "zip",
  1481. "url": "https://github.com/swiftmailer/swiftmailer/zipball/v4.2.2",
  1482. "reference": "v4.2.2",
  1483. "shasum": ""
  1484. },
  1485. "require": {
  1486. "php": ">=5.2.4"
  1487. },
  1488. "type": "library",
  1489. "extra": {
  1490. "branch-alias": {
  1491. "dev-master": "4.2-dev"
  1492. }
  1493. },
  1494. "autoload": {
  1495. "files": [
  1496. "lib/swift_required.php"
  1497. ]
  1498. },
  1499. "notification-url": "https://packagist.org/downloads/",
  1500. "license": [
  1501. "LGPL"
  1502. ],
  1503. "authors": [
  1504. {
  1505. "name": "Fabien Potencier",
  1506. "email": "fabien@symfony.com"
  1507. },
  1508. {
  1509. "name": "Chris Corbyn"
  1510. }
  1511. ],
  1512. "description": "Swiftmailer, free feature-rich PHP mailer",
  1513. "homepage": "http://swiftmailer.org",
  1514. "keywords": [
  1515. "mail",
  1516. "mailer"
  1517. ],
  1518. "time": "2012-10-25 01:30:40"
  1519. },
  1520. {
  1521. "name": "symfony/assetic-bundle",
  1522. "version": "v2.1.2",
  1523. "target-dir": "Symfony/Bundle/AsseticBundle",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/symfony/AsseticBundle.git",
  1527. "reference": "v2.1.2"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/symfony/AsseticBundle/zipball/v2.1.2",
  1532. "reference": "v2.1.2",
  1533. "shasum": ""
  1534. },
  1535. "require": {
  1536. "kriswallsmith/assetic": "1.1.*",
  1537. "php": ">=5.3.0",
  1538. "symfony/framework-bundle": ">=2.1.0,<2.3-dev"
  1539. },
  1540. "require-dev": {
  1541. "symfony/class-loader": ">=2.1.0,<2.3-dev",
  1542. "symfony/console": ">=2.1.0,<2.3-dev",
  1543. "symfony/css-selector": ">=2.1.0,<2.3-dev",
  1544. "symfony/dom-crawler": ">=2.1.0,<2.3-dev",
  1545. "symfony/form": ">=2.1.0,<2.3-dev",
  1546. "symfony/twig-bundle": ">=2.1.0,<2.3-dev",
  1547. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1548. },
  1549. "suggest": {
  1550. "symfony/twig-bundle": ">=2.1.0,<2.3-dev"
  1551. },
  1552. "type": "symfony-bundle",
  1553. "extra": {
  1554. "branch-alias": {
  1555. "dev-master": "2.1.x-dev"
  1556. }
  1557. },
  1558. "autoload": {
  1559. "psr-0": {
  1560. "Symfony\\Bundle\\AsseticBundle": ""
  1561. }
  1562. },
  1563. "notification-url": "https://packagist.org/downloads/",
  1564. "license": [
  1565. "MIT"
  1566. ],
  1567. "authors": [
  1568. {
  1569. "name": "Kris Wallsmith",
  1570. "email": "kris.wallsmith@gmail.com",
  1571. "homepage": "http://kriswallsmith.net/"
  1572. }
  1573. ],
  1574. "description": "Integrates Assetic into Symfony2",
  1575. "homepage": "https://github.com/symfony/AsseticBundle",
  1576. "keywords": [
  1577. "assets",
  1578. "compression",
  1579. "minification"
  1580. ],
  1581. "time": "2013-02-23 22:29:21"
  1582. },
  1583. {
  1584. "name": "symfony/monolog-bundle",
  1585. "version": "v2.1.8",
  1586. "target-dir": "Symfony/Bundle/MonologBundle",
  1587. "source": {
  1588. "type": "git",
  1589. "url": "https://github.com/symfony/MonologBundle.git",
  1590. "reference": "v2.1.8"
  1591. },
  1592. "dist": {
  1593. "type": "zip",
  1594. "url": "https://api.github.com/repos/symfony/MonologBundle/zipball/v2.1.8",
  1595. "reference": "v2.1.8",
  1596. "shasum": ""
  1597. },
  1598. "require": {
  1599. "monolog/monolog": ">=1.0,<1.3-dev",
  1600. "php": ">=5.3.2",
  1601. "symfony/config": ">=2.1.0,<2.3-dev",
  1602. "symfony/dependency-injection": ">=2.1.0,<2.3-dev",
  1603. "symfony/monolog-bridge": "2.1.*"
  1604. },
  1605. "require-dev": {
  1606. "symfony/config": ">=2.1.0,<2.3-dev",
  1607. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1608. },
  1609. "type": "symfony-bundle",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-master": "2.1.x-dev"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "psr-0": {
  1617. "Symfony\\Bundle\\MonologBundle": ""
  1618. }
  1619. },
  1620. "notification-url": "https://packagist.org/downloads/",
  1621. "license": [
  1622. "MIT"
  1623. ],
  1624. "authors": [
  1625. {
  1626. "name": "Fabien Potencier",
  1627. "email": "fabien@symfony.com"
  1628. },
  1629. {
  1630. "name": "Symfony Community",
  1631. "homepage": "http://symfony.com/contributors"
  1632. }
  1633. ],
  1634. "description": "Symfony MonologBundle",
  1635. "homepage": "http://symfony.com",
  1636. "keywords": [
  1637. "log",
  1638. "logging"
  1639. ],
  1640. "time": "2013-01-28 10:06:42"
  1641. },
  1642. {
  1643. "name": "symfony/swiftmailer-bundle",
  1644. "version": "v2.1.8",
  1645. "target-dir": "Symfony/Bundle/SwiftmailerBundle",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/symfony/SwiftmailerBundle.git",
  1649. "reference": "v2.1.8"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/symfony/SwiftmailerBundle/zipball/v2.1.8",
  1654. "reference": "v2.1.8",
  1655. "shasum": ""
  1656. },
  1657. "require": {
  1658. "php": ">=5.3.2",
  1659. "swiftmailer/swiftmailer": ">=4.2.0,<4.3-dev",
  1660. "symfony/swiftmailer-bridge": ">=2.1.0,<2.3-dev"
  1661. },
  1662. "require-dev": {
  1663. "symfony/config": ">=2.1.0,<2.3-dev",
  1664. "symfony/dependency-injection": ">=2.1.0,<2.3-dev",
  1665. "symfony/http-kernel": ">=2.1.0,<2.3-dev",
  1666. "symfony/yaml": ">=2.1.0,<2.3-dev"
  1667. },
  1668. "type": "symfony-bundle",
  1669. "extra": {
  1670. "branch-alias": {
  1671. "dev-master": "2.1-dev"
  1672. }
  1673. },
  1674. "autoload": {
  1675. "psr-0": {
  1676. "Symfony\\Bundle\\SwiftmailerBundle": ""
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Fabien Potencier",
  1686. "email": "fabien@symfony.com"
  1687. },
  1688. {
  1689. "name": "Symfony Community",
  1690. "homepage": "http://symfony.com/contributors"
  1691. }
  1692. ],
  1693. "description": "Symfony SwiftmailerBundle",
  1694. "homepage": "http://symfony.com",
  1695. "time": "2013-01-04 17:04:29"
  1696. },
  1697. {
  1698. "name": "symfony/symfony",
  1699. "version": "v2.1.8",
  1700. "source": {
  1701. "type": "git",
  1702. "url": "https://github.com/symfony/symfony.git",
  1703. "reference": "v2.1.8"
  1704. },
  1705. "dist": {
  1706. "type": "zip",
  1707. "url": "https://api.github.com/repos/symfony/symfony/zipball/v2.1.8",
  1708. "reference": "v2.1.8",
  1709. "shasum": ""
  1710. },
  1711. "require": {
  1712. "doctrine/common": ">=2.2,<3.0",
  1713. "php": ">=5.3.3",
  1714. "twig/twig": ">=1.9.1,<2.0-dev"
  1715. },
  1716. "replace": {
  1717. "symfony/browser-kit": "self.version",
  1718. "symfony/class-loader": "self.version",
  1719. "symfony/config": "self.version",
  1720. "symfony/console": "self.version",
  1721. "symfony/css-selector": "self.version",
  1722. "symfony/dependency-injection": "self.version",
  1723. "symfony/doctrine-bridge": "self.version",
  1724. "symfony/dom-crawler": "self.version",
  1725. "symfony/event-dispatcher": "self.version",
  1726. "symfony/filesystem": "self.version",
  1727. "symfony/finder": "self.version",
  1728. "symfony/form": "self.version",
  1729. "symfony/framework-bundle": "self.version",
  1730. "symfony/http-foundation": "self.version",
  1731. "symfony/http-kernel": "self.version",
  1732. "symfony/locale": "self.version",
  1733. "symfony/monolog-bridge": "self.version",
  1734. "symfony/options-resolver": "self.version",
  1735. "symfony/process": "self.version",
  1736. "symfony/propel1-bridge": "self.version",
  1737. "symfony/routing": "self.version",
  1738. "symfony/security": "self.version",
  1739. "symfony/security-bundle": "self.version",
  1740. "symfony/serializer": "self.version",
  1741. "symfony/swiftmailer-bridge": "self.version",
  1742. "symfony/templating": "self.version",
  1743. "symfony/translation": "self.version",
  1744. "symfony/twig-bridge": "self.version",
  1745. "symfony/twig-bundle": "self.version",
  1746. "symfony/validator": "self.version",
  1747. "symfony/web-profiler-bundle": "self.version",
  1748. "symfony/yaml": "self.version"
  1749. },
  1750. "require-dev": {
  1751. "doctrine/data-fixtures": "1.0.*",
  1752. "doctrine/dbal": ">=2.2,<2.4-dev",
  1753. "doctrine/orm": ">=2.2.3,<2.4-dev",
  1754. "monolog/monolog": ">=1.0,<1.3-dev",
  1755. "propel/propel1": "dev-master"
  1756. },
  1757. "type": "library",
  1758. "autoload": {
  1759. "psr-0": {
  1760. "Symfony": "src/",
  1761. "SessionHandlerInterface": "src/Symfony/Component/HttpFoundation/Resources/stubs"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "MIT"
  1767. ],
  1768. "authors": [
  1769. {
  1770. "name": "Fabien Potencier",
  1771. "email": "fabien@symfony.com"
  1772. },
  1773. {
  1774. "name": "Symfony Community",
  1775. "homepage": "http://symfony.com/contributors"
  1776. }
  1777. ],
  1778. "description": "The Symfony PHP framework",
  1779. "homepage": "http://symfony.com",
  1780. "keywords": [
  1781. "framework"
  1782. ],
  1783. "time": "2013-02-23 21:28:36"
  1784. },
  1785. {
  1786. "name": "twig/extensions",
  1787. "version": "v1.0.0-alpha",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/fabpot/Twig-extensions",
  1791. "reference": "v1.0.0-alpha"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://github.com/fabpot/Twig-extensions/zipball/v1.0.0-alpha",
  1796. "reference": "v1.0.0-alpha",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "twig/twig": "1.*"
  1801. },
  1802. "type": "library",
  1803. "extra": {
  1804. "branch-alias": {
  1805. "dev-master": "1.0.x-dev"
  1806. }
  1807. },
  1808. "autoload": {
  1809. "psr-0": {
  1810. "Twig_Extensions_": "lib/"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "MIT"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Fabien Potencier",
  1820. "email": "fabien@symfony.com"
  1821. }
  1822. ],
  1823. "description": "Common additional features for Twig that do not directly belong in core",
  1824. "homepage": "https://github.com/fabpot/Twig-extensions",
  1825. "keywords": [
  1826. "debug",
  1827. "i18n",
  1828. "text"
  1829. ],
  1830. "time": "2012-08-28 08:04:23"
  1831. },
  1832. {
  1833. "name": "twig/twig",
  1834. "version": "v1.12.2",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "git://github.com/fabpot/Twig.git",
  1838. "reference": "v1.12.2"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/fabpot/Twig/zipball/v1.12.2",
  1843. "reference": "v1.12.2",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "php": ">=5.2.4"
  1848. },
  1849. "type": "library",
  1850. "extra": {
  1851. "branch-alias": {
  1852. "dev-master": "1.12-dev"
  1853. }
  1854. },
  1855. "autoload": {
  1856. "psr-0": {
  1857. "Twig_": "lib/"
  1858. }
  1859. },
  1860. "notification-url": "https://packagist.org/downloads/",
  1861. "license": [
  1862. "BSD-3"
  1863. ],
  1864. "authors": [
  1865. {
  1866. "name": "Fabien Potencier",
  1867. "email": "fabien@symfony.com"
  1868. },
  1869. {
  1870. "name": "Armin Ronacher",
  1871. "email": "armin.ronacher@active-4.com"
  1872. }
  1873. ],
  1874. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1875. "homepage": "http://twig.sensiolabs.org",
  1876. "keywords": [
  1877. "templating"
  1878. ],
  1879. "time": "2013-02-09 18:21:53"
  1880. },
  1881. {
  1882. "name": "white-october/pagerfanta-bundle",
  1883. "version": "dev-master",
  1884. "target-dir": "WhiteOctober/PagerfantaBundle",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  1888. "reference": "f664b66bc9351c6dd24026b3cf4c897705e51b26"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/f664b66bc9351c6dd24026b3cf4c897705e51b26",
  1893. "reference": "f664b66bc9351c6dd24026b3cf4c897705e51b26",
  1894. "shasum": ""
  1895. },
  1896. "require": {
  1897. "pagerfanta/pagerfanta": "1.0.*",
  1898. "symfony/framework-bundle": ">=2.1,<3.0"
  1899. },
  1900. "type": "symfony-bundle",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-master": "1.0.x-dev"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-0": {
  1908. "WhiteOctober\\PagerfantaBundle": ""
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Pablo Díez",
  1918. "email": "pablodip@gmail.com",
  1919. "homepage": "http://github.com/pablodip"
  1920. }
  1921. ],
  1922. "description": "Bundle to use Pagerfanta with Symfony2",
  1923. "keywords": [
  1924. "page",
  1925. "paging"
  1926. ],
  1927. "time": "2013-02-18 10:43:20"
  1928. },
  1929. {
  1930. "name": "zendframework/zend-escaper",
  1931. "version": "2.0.7",
  1932. "target-dir": "Zend/Escaper",
  1933. "dist": {
  1934. "type": "zip",
  1935. "url": "http://packages.zendframework.com/composer/Zend_Escaper-2.0.7.zip",
  1936. "reference": null,
  1937. "shasum": null
  1938. },
  1939. "require": {
  1940. "php": ">=5.3.3"
  1941. },
  1942. "type": "library",
  1943. "autoload": {
  1944. "psr-0": {
  1945. "Zend\\Escaper\\": ""
  1946. }
  1947. },
  1948. "license": [
  1949. "BSD-3-Clause"
  1950. ],
  1951. "description": " ",
  1952. "homepage": "http://packages.zendframework.com/",
  1953. "keywords": [
  1954. "escaper",
  1955. "zf2"
  1956. ],
  1957. "support": {
  1958. "email": "fw-general-subscribe@lists.zend.com",
  1959. "irc": "irc://irc.freenode.net/zftalk",
  1960. "issues": "https://github.com/zendframework/zf2/issues",
  1961. "source": "https://github.com/zendframework/zf2"
  1962. }
  1963. },
  1964. {
  1965. "name": "zendframework/zend-feed",
  1966. "version": "2.0.7",
  1967. "target-dir": "Zend/Feed",
  1968. "dist": {
  1969. "type": "zip",
  1970. "url": "http://packages.zendframework.com/composer/Zend_Feed-2.0.7.zip",
  1971. "reference": null,
  1972. "shasum": null
  1973. },
  1974. "require": {
  1975. "php": ">=5.3.3",
  1976. "zendframework/zend-escaper": "self.version",
  1977. "zendframework/zend-servicemanager": "self.version",
  1978. "zendframework/zend-stdlib": "self.version",
  1979. "zendframework/zend-uri": "self.version",
  1980. "zendframework/zend-version": "self.version"
  1981. },
  1982. "suggest": {
  1983. "zendframework/zend-validator": "Zend\\Validator component"
  1984. },
  1985. "type": "library",
  1986. "autoload": {
  1987. "psr-0": {
  1988. "Zend\\Feed\\": ""
  1989. }
  1990. },
  1991. "license": [
  1992. "BSD-3-Clause"
  1993. ],
  1994. "description": "provides functionality for consuming RSS and Atom feeds",
  1995. "homepage": "http://packages.zendframework.com/",
  1996. "keywords": [
  1997. "feed",
  1998. "zf2"
  1999. ],
  2000. "support": {
  2001. "email": "fw-general-subscribe@lists.zend.com",
  2002. "irc": "irc://irc.freenode.net/zftalk",
  2003. "issues": "https://github.com/zendframework/zf2/issues",
  2004. "source": "https://github.com/zendframework/zf2"
  2005. }
  2006. },
  2007. {
  2008. "name": "zendframework/zend-filter",
  2009. "version": "2.0.7",
  2010. "target-dir": "Zend/Filter",
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "http://packages.zendframework.com/composer/Zend_Filter-2.0.7.zip",
  2014. "reference": null,
  2015. "shasum": null
  2016. },
  2017. "require": {
  2018. "php": ">=5.3.3",
  2019. "zendframework/zend-stdlib": "self.version"
  2020. },
  2021. "require-dev": {
  2022. "zendframework/zend-crypt": "self.version"
  2023. },
  2024. "suggest": {
  2025. "zendframework/zend-crypt": "Zend\\Crypt component",
  2026. "zendframework/zend-i18n": "Zend\\I18n component",
  2027. "zendframework/zend-validator": "Zend\\Validator component"
  2028. },
  2029. "type": "library",
  2030. "autoload": {
  2031. "psr-0": {
  2032. "Zend\\Filter\\": ""
  2033. }
  2034. },
  2035. "license": [
  2036. "BSD-3-Clause"
  2037. ],
  2038. "description": "provides a set of commonly needed data filters",
  2039. "homepage": "http://packages.zendframework.com/",
  2040. "keywords": [
  2041. "filter",
  2042. "zf2"
  2043. ],
  2044. "support": {
  2045. "email": "fw-general-subscribe@lists.zend.com",
  2046. "irc": "irc://irc.freenode.net/zftalk",
  2047. "issues": "https://github.com/zendframework/zf2/issues",
  2048. "source": "https://github.com/zendframework/zf2"
  2049. }
  2050. },
  2051. {
  2052. "name": "zendframework/zend-i18n",
  2053. "version": "2.0.7",
  2054. "target-dir": "Zend/I18n",
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "http://packages.zendframework.com/composer/Zend_I18n-2.0.7.zip",
  2058. "reference": null,
  2059. "shasum": null
  2060. },
  2061. "require": {
  2062. "ext-intl": "*",
  2063. "php": ">=5.3.3",
  2064. "zendframework/zend-filter": "self.version",
  2065. "zendframework/zend-stdlib": "self.version"
  2066. },
  2067. "type": "library",
  2068. "autoload": {
  2069. "psr-0": {
  2070. "Zend\\I18n\\": ""
  2071. }
  2072. },
  2073. "license": [
  2074. "BSD-3-Clause"
  2075. ],
  2076. "description": " ",
  2077. "homepage": "http://packages.zendframework.com/",
  2078. "keywords": [
  2079. "i18n",
  2080. "zf2"
  2081. ],
  2082. "support": {
  2083. "email": "fw-general-subscribe@lists.zend.com",
  2084. "irc": "irc://irc.freenode.net/zftalk",
  2085. "issues": "https://github.com/zendframework/zf2/issues",
  2086. "source": "https://github.com/zendframework/zf2"
  2087. }
  2088. },
  2089. {
  2090. "name": "zendframework/zend-servicemanager",
  2091. "version": "2.0.7",
  2092. "target-dir": "Zend/ServiceManager",
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "http://packages.zendframework.com/composer/Zend_ServiceManager-2.0.7.zip",
  2096. "reference": null,
  2097. "shasum": null
  2098. },
  2099. "require": {
  2100. "php": ">=5.3.3"
  2101. },
  2102. "suggest": {
  2103. "zendframework/zend-di": "Zend\\Di component"
  2104. },
  2105. "type": "library",
  2106. "autoload": {
  2107. "psr-0": {
  2108. "Zend\\ServiceManager\\": ""
  2109. }
  2110. },
  2111. "license": [
  2112. "BSD-3-Clause"
  2113. ],
  2114. "description": " ",
  2115. "homepage": "http://packages.zendframework.com/",
  2116. "keywords": [
  2117. "servicemanager",
  2118. "zf2"
  2119. ],
  2120. "support": {
  2121. "email": "fw-general-subscribe@lists.zend.com",
  2122. "irc": "irc://irc.freenode.net/zftalk",
  2123. "issues": "https://github.com/zendframework/zf2/issues",
  2124. "source": "https://github.com/zendframework/zf2"
  2125. }
  2126. },
  2127. {
  2128. "name": "zendframework/zend-stdlib",
  2129. "version": "2.0.7",
  2130. "target-dir": "Zend/Stdlib",
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "http://packages.zendframework.com/composer/Zend_Stdlib-2.0.7.zip",
  2134. "reference": null,
  2135. "shasum": null
  2136. },
  2137. "require": {
  2138. "php": ">=5.3.3"
  2139. },
  2140. "suggest": {
  2141. "pecl-weakref": "Implementation of weak references for Stdlib\\CallbackHandler"
  2142. },
  2143. "type": "library",
  2144. "autoload": {
  2145. "psr-0": {
  2146. "Zend\\Stdlib\\": ""
  2147. }
  2148. },
  2149. "license": [
  2150. "BSD-3-Clause"
  2151. ],
  2152. "description": " ",
  2153. "homepage": "http://packages.zendframework.com/",
  2154. "keywords": [
  2155. "stdlib",
  2156. "zf2"
  2157. ],
  2158. "support": {
  2159. "email": "fw-general-subscribe@lists.zend.com",
  2160. "irc": "irc://irc.freenode.net/zftalk",
  2161. "issues": "https://github.com/zendframework/zf2/issues",
  2162. "source": "https://github.com/zendframework/zf2"
  2163. }
  2164. },
  2165. {
  2166. "name": "zendframework/zend-uri",
  2167. "version": "2.0.7",
  2168. "target-dir": "Zend/Uri",
  2169. "dist": {
  2170. "type": "zip",
  2171. "url": "http://packages.zendframework.com/composer/Zend_Uri-2.0.7.zip",
  2172. "reference": null,
  2173. "shasum": null
  2174. },
  2175. "require": {
  2176. "php": ">=5.3.3",
  2177. "zendframework/zend-escaper": "self.version",
  2178. "zendframework/zend-validator": "self.version"
  2179. },
  2180. "type": "library",
  2181. "autoload": {
  2182. "psr-0": {
  2183. "Zend\\Uri\\": ""
  2184. }
  2185. },
  2186. "license": [
  2187. "BSD-3-Clause"
  2188. ],
  2189. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  2190. "homepage": "http://packages.zendframework.com/",
  2191. "keywords": [
  2192. "uri",
  2193. "zf2"
  2194. ],
  2195. "support": {
  2196. "email": "fw-general-subscribe@lists.zend.com",
  2197. "irc": "irc://irc.freenode.net/zftalk",
  2198. "issues": "https://github.com/zendframework/zf2/issues",
  2199. "source": "https://github.com/zendframework/zf2"
  2200. }
  2201. },
  2202. {
  2203. "name": "zendframework/zend-validator",
  2204. "version": "2.0.7",
  2205. "target-dir": "Zend/Validator",
  2206. "dist": {
  2207. "type": "zip",
  2208. "url": "http://packages.zendframework.com/composer/Zend_Validator-2.0.7.zip",
  2209. "reference": null,
  2210. "shasum": null
  2211. },
  2212. "require": {
  2213. "php": ">=5.3.3",
  2214. "zendframework/zend-i18n": "self.version",
  2215. "zendframework/zend-servicemanager": "self.version",
  2216. "zendframework/zend-stdlib": "self.version"
  2217. },
  2218. "require-dev": {
  2219. "zendframework/zend-math": "self.version"
  2220. },
  2221. "suggest": {
  2222. "zendframework/zend-db": "Zend\\Db component",
  2223. "zendframework/zend-math": "Zend\\Math component"
  2224. },
  2225. "type": "library",
  2226. "autoload": {
  2227. "psr-0": {
  2228. "Zend\\Validator\\": ""
  2229. }
  2230. },
  2231. "license": [
  2232. "BSD-3-Clause"
  2233. ],
  2234. "description": "provides a set of commonly needed validators",
  2235. "homepage": "http://packages.zendframework.com/",
  2236. "keywords": [
  2237. "validator",
  2238. "zf2"
  2239. ],
  2240. "support": {
  2241. "email": "fw-general-subscribe@lists.zend.com",
  2242. "irc": "irc://irc.freenode.net/zftalk",
  2243. "issues": "https://github.com/zendframework/zf2/issues",
  2244. "source": "https://github.com/zendframework/zf2"
  2245. }
  2246. },
  2247. {
  2248. "name": "zendframework/zend-version",
  2249. "version": "2.0.7",
  2250. "target-dir": "Zend/Version",
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "http://packages.zendframework.com/composer/Zend_Version-2.0.7.zip",
  2254. "reference": null,
  2255. "shasum": null
  2256. },
  2257. "require": {
  2258. "php": ">=5.3.3"
  2259. },
  2260. "type": "library",
  2261. "autoload": {
  2262. "psr-0": {
  2263. "Zend\\Version\\": ""
  2264. }
  2265. },
  2266. "license": [
  2267. "BSD-3-Clause"
  2268. ],
  2269. "description": " ",
  2270. "homepage": "http://packages.zendframework.com/",
  2271. "keywords": [
  2272. "version",
  2273. "zf2"
  2274. ],
  2275. "support": {
  2276. "email": "fw-general-subscribe@lists.zend.com",
  2277. "irc": "irc://irc.freenode.net/zftalk",
  2278. "issues": "https://github.com/zendframework/zf2/issues",
  2279. "source": "https://github.com/zendframework/zf2"
  2280. }
  2281. }
  2282. ],
  2283. "packages-dev": [
  2284. ],
  2285. "aliases": [
  2286. ],
  2287. "minimum-stability": "stable",
  2288. "stability-flags": {
  2289. "twig/extensions": 15,
  2290. "composer/composer": 20,
  2291. "hwi/oauth-bundle": 20,
  2292. "nelmio/solarium-bundle": 20,
  2293. "nelmio/security-bundle": 20,
  2294. "snc/redis-bundle": 20,
  2295. "white-october/pagerfanta-bundle": 20,
  2296. "kriswallsmith/assetic": 20,
  2297. "pagerfanta/pagerfanta": 20
  2298. }
  2299. }