composer.lock 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938
  1. {
  2. "hash": "00969618f2f0b10a233fb67916e231af",
  3. "packages": [
  4. {
  5. "name": "dflydev/doctrine-orm-service-provider",
  6. "version": "dev-master",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/dflydev/dflydev-doctrine-orm-service-provider",
  10. "reference": "b925a32d4657f34b33fb7c7406f6e830aee28192"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://github.com/dflydev/dflydev-doctrine-orm-service-provider/archive/b925a32d4657f34b33fb7c7406f6e830aee28192.zip",
  15. "reference": "b925a32d4657f34b33fb7c7406f6e830aee28192",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": ">=5.3.3",
  20. "doctrine/orm": ">=2.3,<3.0",
  21. "pimple/pimple": "1.*@dev"
  22. },
  23. "require-dev": {
  24. "cilex/cilex": "1.*@dev",
  25. "silex/silex": "1.*@dev"
  26. },
  27. "suggest": {
  28. "dflydev/psr0-resource-locator-service-provider": "1.0.*@dev"
  29. },
  30. "time": "2012-12-30 23:41:22",
  31. "type": "library",
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "1.0-dev"
  35. }
  36. },
  37. "autoload": {
  38. "psr-0": {
  39. "Dflydev\\Cilex\\Provider\\DoctrineOrm": "src",
  40. "Dflydev\\Pimple\\Provider\\DoctrineOrm": "src",
  41. "Dflydev\\Silex\\Provider\\DoctrineOrm": "src"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Dragonfly Development Inc.",
  51. "email": "info@dflydev.com",
  52. "homepage": "http://dflydev.com"
  53. },
  54. {
  55. "name": "Beau Simensen",
  56. "email": "beau@dflydev.com",
  57. "homepage": "http://beausimensen.com"
  58. }
  59. ],
  60. "description": "Doctrine ORM Service Provider",
  61. "keywords": [
  62. "silex",
  63. "orm",
  64. "doctrine",
  65. "pimple",
  66. "cilex"
  67. ]
  68. },
  69. {
  70. "name": "doctrine/annotations",
  71. "version": "v1.0",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/doctrine/annotations.git",
  75. "reference": "v1.0"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://github.com/doctrine/annotations/archive/v1.0.zip",
  80. "reference": "v1.0",
  81. "shasum": ""
  82. },
  83. "require": {
  84. "php": ">=5.3.2",
  85. "doctrine/lexer": "1.*"
  86. },
  87. "require-dev": {
  88. "doctrine/cache": "1.*"
  89. },
  90. "time": "2013-01-12 19:23:32",
  91. "type": "library",
  92. "autoload": {
  93. "psr-0": {
  94. "Doctrine\\Common\\Annotations\\": "lib/"
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "Jonathan Wage",
  104. "email": "jonwage@gmail.com",
  105. "homepage": "http://www.jwage.com/"
  106. },
  107. {
  108. "name": "Guilherme Blanco",
  109. "email": "guilhermeblanco@gmail.com",
  110. "homepage": "http://www.instaclick.com"
  111. },
  112. {
  113. "name": "Roman Borschel",
  114. "email": "roman@code-factory.org"
  115. },
  116. {
  117. "name": "Benjamin Eberlei",
  118. "email": "kontakt@beberlei.de"
  119. },
  120. {
  121. "name": "Johannes Schmitt",
  122. "email": "schmittjoh@gmail.com",
  123. "homepage": "https://github.com/schmittjoh",
  124. "role": "Developer of wrapped JMSSerializerBundle"
  125. }
  126. ],
  127. "description": "Docblock Annotations Parser",
  128. "homepage": "http://www.doctrine-project.org",
  129. "keywords": [
  130. "annotations",
  131. "parser",
  132. "docblock"
  133. ]
  134. },
  135. {
  136. "name": "doctrine/cache",
  137. "version": "v1.0",
  138. "source": {
  139. "type": "git",
  140. "url": "https://github.com/doctrine/cache.git",
  141. "reference": "v1.0"
  142. },
  143. "dist": {
  144. "type": "zip",
  145. "url": "https://github.com/doctrine/cache/archive/v1.0.zip",
  146. "reference": "v1.0",
  147. "shasum": ""
  148. },
  149. "require": {
  150. "php": ">=5.3.2"
  151. },
  152. "time": "2013-01-10 22:43:46",
  153. "type": "library",
  154. "autoload": {
  155. "psr-0": {
  156. "Doctrine\\Common\\Cache\\": "lib/"
  157. }
  158. },
  159. "notification-url": "https://packagist.org/downloads/",
  160. "license": [
  161. "MIT"
  162. ],
  163. "authors": [
  164. {
  165. "name": "Jonathan Wage",
  166. "email": "jonwage@gmail.com",
  167. "homepage": "http://www.jwage.com/"
  168. },
  169. {
  170. "name": "Guilherme Blanco",
  171. "email": "guilhermeblanco@gmail.com",
  172. "homepage": "http://www.instaclick.com"
  173. },
  174. {
  175. "name": "Roman Borschel",
  176. "email": "roman@code-factory.org"
  177. },
  178. {
  179. "name": "Benjamin Eberlei",
  180. "email": "kontakt@beberlei.de"
  181. },
  182. {
  183. "name": "Johannes Schmitt",
  184. "email": "schmittjoh@gmail.com",
  185. "homepage": "https://github.com/schmittjoh",
  186. "role": "Developer of wrapped JMSSerializerBundle"
  187. }
  188. ],
  189. "description": "Caching library offering an object-oriented API for many cache backends",
  190. "homepage": "http://www.doctrine-project.org",
  191. "keywords": [
  192. "cache",
  193. "caching"
  194. ]
  195. },
  196. {
  197. "name": "doctrine/collections",
  198. "version": "v1.0",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/doctrine/collections.git",
  202. "reference": "v1.0"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://github.com/doctrine/collections/archive/v1.0.zip",
  207. "reference": "v1.0",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": ">=5.3.2"
  212. },
  213. "time": "2013-01-12 16:36:50",
  214. "type": "library",
  215. "autoload": {
  216. "psr-0": {
  217. "Doctrine\\Common\\Collections\\": "lib/"
  218. }
  219. },
  220. "notification-url": "https://packagist.org/downloads/",
  221. "license": [
  222. "MIT"
  223. ],
  224. "authors": [
  225. {
  226. "name": "Jonathan Wage",
  227. "email": "jonwage@gmail.com",
  228. "homepage": "http://www.jwage.com/"
  229. },
  230. {
  231. "name": "Guilherme Blanco",
  232. "email": "guilhermeblanco@gmail.com",
  233. "homepage": "http://www.instaclick.com"
  234. },
  235. {
  236. "name": "Roman Borschel",
  237. "email": "roman@code-factory.org"
  238. },
  239. {
  240. "name": "Benjamin Eberlei",
  241. "email": "kontakt@beberlei.de"
  242. },
  243. {
  244. "name": "Johannes Schmitt",
  245. "email": "schmittjoh@gmail.com",
  246. "homepage": "https://github.com/schmittjoh",
  247. "role": "Developer of wrapped JMSSerializerBundle"
  248. }
  249. ],
  250. "description": "Collections Abstraction library",
  251. "homepage": "http://www.doctrine-project.org",
  252. "keywords": [
  253. "collections",
  254. "iterator",
  255. "array"
  256. ]
  257. },
  258. {
  259. "name": "doctrine/common",
  260. "version": "dev-master",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/common",
  264. "reference": "db84fc111652774f22b72a916aef40ce3f584e45"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://github.com/doctrine/common/archive/db84fc111652774f22b72a916aef40ce3f584e45.zip",
  269. "reference": "db84fc111652774f22b72a916aef40ce3f584e45",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "php": ">=5.3.2",
  274. "doctrine/inflector": "1.*",
  275. "doctrine/cache": "1.*",
  276. "doctrine/collections": "1.*",
  277. "doctrine/lexer": "1.*",
  278. "doctrine/annotations": "1.*"
  279. },
  280. "time": "2013-01-25 05:59:24",
  281. "type": "library",
  282. "extra": {
  283. "branch-alias": {
  284. "dev-master": "2.4.x-dev"
  285. }
  286. },
  287. "autoload": {
  288. "psr-0": {
  289. "Doctrine\\Common\\": "lib/"
  290. }
  291. },
  292. "notification-url": "https://packagist.org/downloads/",
  293. "license": [
  294. "MIT"
  295. ],
  296. "authors": [
  297. {
  298. "name": "Jonathan Wage",
  299. "email": "jonwage@gmail.com",
  300. "homepage": "http://www.jwage.com/"
  301. },
  302. {
  303. "name": "Guilherme Blanco",
  304. "email": "guilhermeblanco@gmail.com",
  305. "homepage": "http://www.instaclick.com"
  306. },
  307. {
  308. "name": "Roman Borschel",
  309. "email": "roman@code-factory.org"
  310. },
  311. {
  312. "name": "Benjamin Eberlei",
  313. "email": "kontakt@beberlei.de"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com",
  318. "homepage": "https://github.com/schmittjoh",
  319. "role": "Developer of wrapped JMSSerializerBundle"
  320. }
  321. ],
  322. "description": "Common Library for Doctrine projects",
  323. "homepage": "http://www.doctrine-project.org",
  324. "keywords": [
  325. "collections",
  326. "spl",
  327. "eventmanager",
  328. "annotations",
  329. "persistence"
  330. ]
  331. },
  332. {
  333. "name": "doctrine/dbal",
  334. "version": "dev-master",
  335. "source": {
  336. "type": "git",
  337. "url": "https://github.com/doctrine/dbal",
  338. "reference": "19269218ee387bd96b4fc8f31b1f492f298c5917"
  339. },
  340. "dist": {
  341. "type": "zip",
  342. "url": "https://github.com/doctrine/dbal/archive/19269218ee387bd96b4fc8f31b1f492f298c5917.zip",
  343. "reference": "19269218ee387bd96b4fc8f31b1f492f298c5917",
  344. "shasum": ""
  345. },
  346. "require": {
  347. "php": ">=5.3.2",
  348. "doctrine/common": "2.4.x-dev"
  349. },
  350. "require-dev": {
  351. "symfony/console": "2.*"
  352. },
  353. "suggest": {
  354. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  355. },
  356. "time": "2013-01-25 06:00:32",
  357. "type": "library",
  358. "extra": {
  359. "branch-alias": {
  360. "dev-master": "2.4.x-dev"
  361. }
  362. },
  363. "autoload": {
  364. "psr-0": {
  365. "Doctrine\\DBAL\\": "lib/"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "authors": [
  373. {
  374. "name": "Jonathan Wage",
  375. "email": "jonwage@gmail.com",
  376. "homepage": "http://www.jwage.com/"
  377. },
  378. {
  379. "name": "Guilherme Blanco",
  380. "email": "guilhermeblanco@gmail.com",
  381. "homepage": "http://www.instaclick.com"
  382. },
  383. {
  384. "name": "Roman Borschel",
  385. "email": "roman@code-factory.org"
  386. },
  387. {
  388. "name": "Benjamin Eberlei",
  389. "email": "kontakt@beberlei.de"
  390. }
  391. ],
  392. "description": "Database Abstraction Layer",
  393. "homepage": "http://www.doctrine-project.org",
  394. "keywords": [
  395. "database",
  396. "persistence",
  397. "dbal",
  398. "queryobject"
  399. ]
  400. },
  401. {
  402. "name": "doctrine/inflector",
  403. "version": "v1.0",
  404. "source": {
  405. "type": "git",
  406. "url": "https://github.com/doctrine/inflector.git",
  407. "reference": "v1.0"
  408. },
  409. "dist": {
  410. "type": "zip",
  411. "url": "https://github.com/doctrine/inflector/archive/v1.0.zip",
  412. "reference": "v1.0",
  413. "shasum": ""
  414. },
  415. "require": {
  416. "php": ">=5.3.2"
  417. },
  418. "time": "2013-01-10 21:49:15",
  419. "type": "library",
  420. "autoload": {
  421. "psr-0": {
  422. "Doctrine\\Common\\Inflector\\": "lib/"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Jonathan Wage",
  432. "email": "jonwage@gmail.com",
  433. "homepage": "http://www.jwage.com/"
  434. },
  435. {
  436. "name": "Guilherme Blanco",
  437. "email": "guilhermeblanco@gmail.com",
  438. "homepage": "http://www.instaclick.com"
  439. },
  440. {
  441. "name": "Roman Borschel",
  442. "email": "roman@code-factory.org"
  443. },
  444. {
  445. "name": "Benjamin Eberlei",
  446. "email": "kontakt@beberlei.de"
  447. },
  448. {
  449. "name": "Johannes Schmitt",
  450. "email": "schmittjoh@gmail.com",
  451. "homepage": "https://github.com/schmittjoh",
  452. "role": "Developer of wrapped JMSSerializerBundle"
  453. }
  454. ],
  455. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  456. "homepage": "http://www.doctrine-project.org",
  457. "keywords": [
  458. "string",
  459. "inflection",
  460. "singuarlize",
  461. "pluarlize"
  462. ]
  463. },
  464. {
  465. "name": "doctrine/lexer",
  466. "version": "v1.0",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/doctrine/lexer.git",
  470. "reference": "v1.0"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://github.com/doctrine/lexer/archive/v1.0.zip",
  475. "reference": "v1.0",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">=5.3.2"
  480. },
  481. "time": "2013-01-12 18:59:04",
  482. "type": "library",
  483. "autoload": {
  484. "psr-0": {
  485. "Doctrine\\Common\\Lexer\\": "lib/"
  486. }
  487. },
  488. "notification-url": "https://packagist.org/downloads/",
  489. "license": [
  490. "MIT"
  491. ],
  492. "authors": [
  493. {
  494. "name": "Guilherme Blanco",
  495. "email": "guilhermeblanco@gmail.com",
  496. "homepage": "http://www.instaclick.com"
  497. },
  498. {
  499. "name": "Roman Borschel",
  500. "email": "roman@code-factory.org"
  501. },
  502. {
  503. "name": "Johannes Schmitt",
  504. "email": "schmittjoh@gmail.com",
  505. "homepage": "https://github.com/schmittjoh",
  506. "role": "Developer of wrapped JMSSerializerBundle"
  507. }
  508. ],
  509. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  510. "homepage": "http://www.doctrine-project.org",
  511. "keywords": [
  512. "parser",
  513. "lexer"
  514. ]
  515. },
  516. {
  517. "name": "doctrine/migrations",
  518. "version": "dev-master",
  519. "source": {
  520. "type": "git",
  521. "url": "https://github.com/doctrine/migrations",
  522. "reference": "e1f6efcd94993b493de5c6a413cbc327ea9c0caa"
  523. },
  524. "dist": {
  525. "type": "zip",
  526. "url": "https://github.com/doctrine/migrations/archive/e1f6efcd94993b493de5c6a413cbc327ea9c0caa.zip",
  527. "reference": "e1f6efcd94993b493de5c6a413cbc327ea9c0caa",
  528. "shasum": ""
  529. },
  530. "require": {
  531. "php": ">=5.3.2",
  532. "doctrine/dbal": ">=2.0,<2.5.x-dev"
  533. },
  534. "require-dev": {
  535. "symfony/console": "2.*",
  536. "symfony/yaml": "2.*"
  537. },
  538. "suggest": {
  539. "symfony/console": "to run the migration from the console"
  540. },
  541. "time": "2012-12-27 16:39:29",
  542. "type": "library",
  543. "autoload": {
  544. "psr-0": {
  545. "Doctrine\\DBAL\\Migrations": "lib"
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "LGPL"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Jonathan Wage",
  555. "email": "jonwage@gmail.com",
  556. "homepage": "http://www.jwage.com/"
  557. },
  558. {
  559. "name": "Benjamin Eberlei",
  560. "email": "kontakt@beberlei.de"
  561. }
  562. ],
  563. "description": "Database Schema migrations using Doctrine DBAL",
  564. "homepage": "http://www.doctrine-project.org",
  565. "keywords": [
  566. "database",
  567. "migrations"
  568. ]
  569. },
  570. {
  571. "name": "doctrine/orm",
  572. "version": "dev-master",
  573. "source": {
  574. "type": "git",
  575. "url": "git://github.com/doctrine/doctrine2.git",
  576. "reference": "f5f583d1ccb3ea902adb61c0dacb65aa9c2617a3"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://github.com/doctrine/doctrine2/archive/f5f583d1ccb3ea902adb61c0dacb65aa9c2617a3.zip",
  581. "reference": "f5f583d1ccb3ea902adb61c0dacb65aa9c2617a3",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "php": ">=5.3.2",
  586. "ext-pdo": "*",
  587. "symfony/console": "2.*",
  588. "doctrine/dbal": ">=2.4-dev,<2.5-dev"
  589. },
  590. "suggest": {
  591. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  592. },
  593. "time": "2013-01-23 23:17:32",
  594. "bin": [
  595. "bin/doctrine",
  596. "bin/doctrine.php"
  597. ],
  598. "type": "library",
  599. "extra": {
  600. "branch-alias": {
  601. "dev-master": "2.4.x-dev"
  602. }
  603. },
  604. "autoload": {
  605. "psr-0": {
  606. "Doctrine\\ORM\\": "lib/"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "MIT"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Jonathan Wage",
  616. "email": "jonwage@gmail.com",
  617. "homepage": "http://www.jwage.com/"
  618. },
  619. {
  620. "name": "Guilherme Blanco",
  621. "email": "guilhermeblanco@gmail.com",
  622. "homepage": "http://www.instaclick.com"
  623. },
  624. {
  625. "name": "Roman Borschel",
  626. "email": "roman@code-factory.org"
  627. },
  628. {
  629. "name": "Benjamin Eberlei",
  630. "email": "kontakt@beberlei.de"
  631. }
  632. ],
  633. "description": "Object-Relational-Mapper for PHP",
  634. "homepage": "http://www.doctrine-project.org",
  635. "keywords": [
  636. "database",
  637. "orm"
  638. ]
  639. },
  640. {
  641. "name": "gedmo/doctrine-extensions",
  642. "version": "dev-master",
  643. "source": {
  644. "type": "git",
  645. "url": "git://github.com/l3pp4rd/DoctrineExtensions.git",
  646. "reference": "93349ad3ab200c7aa69237355c4ee811d359d160"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://github.com/l3pp4rd/DoctrineExtensions/archive/93349ad3ab200c7aa69237355c4ee811d359d160.zip",
  651. "reference": "93349ad3ab200c7aa69237355c4ee811d359d160",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": ">=5.3.2",
  656. "doctrine/common": ">=2.2,<2.5-dev"
  657. },
  658. "require-dev": {
  659. "doctrine/mongodb": ">=1.0.0-BETA1",
  660. "doctrine/mongodb-odm": ">=1.0.0-BETA6",
  661. "doctrine/orm": ">=2.2",
  662. "doctrine/dbal": ">=2.2",
  663. "symfony/yaml": "2.*"
  664. },
  665. "suggest": {
  666. "doctrine/orm": ">=2.2",
  667. "doctrine/dbal": ">=2.2",
  668. "doctrine/mongodb": ">=1.0.0",
  669. "doctrine/mongodb-odm": ">=1.0.0-BETA7"
  670. },
  671. "time": "2013-01-24 18:57:40",
  672. "type": "library",
  673. "extra": {
  674. "branch-alias": {
  675. "dev-master": "2.3.x-dev"
  676. }
  677. },
  678. "autoload": {
  679. "psr-0": {
  680. "Gedmo": "lib/"
  681. }
  682. },
  683. "notification-url": "https://packagist.org/downloads/",
  684. "license": [
  685. "MIT"
  686. ],
  687. "authors": [
  688. {
  689. "name": "Gediminas Morkevicius",
  690. "email": "gediminas.morkevicius@gmail.com"
  691. }
  692. ],
  693. "description": "Doctrine2 behavioral extensions",
  694. "homepage": "http://gediminasm.org/",
  695. "keywords": [
  696. "tree",
  697. "behaviors",
  698. "doctrine2",
  699. "extensions",
  700. "gedmo",
  701. "sluggable",
  702. "loggable",
  703. "translatable",
  704. "nestedset",
  705. "sortable",
  706. "timestampable"
  707. ]
  708. },
  709. {
  710. "name": "knplabs/knp-menu",
  711. "version": "dev-master",
  712. "source": {
  713. "type": "git",
  714. "url": "http://github.com/KnpLabs/KnpMenu.git",
  715. "reference": "730bc37232f5f813822acf80edfbd89381ea5971"
  716. },
  717. "dist": {
  718. "type": "zip",
  719. "url": "https://github.com/KnpLabs/KnpMenu/archive/730bc37232f5f813822acf80edfbd89381ea5971.zip",
  720. "reference": "730bc37232f5f813822acf80edfbd89381ea5971",
  721. "shasum": ""
  722. },
  723. "require": {
  724. "php": ">=5.3.0"
  725. },
  726. "require-dev": {
  727. "silex/silex": "1.0.*",
  728. "twig/twig": ">=1.2,<2.0-dev",
  729. "pimple/pimple": "1.0.*"
  730. },
  731. "suggest": {
  732. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  733. "silex/silex": "for the integration with your silex application",
  734. "twig/twig": "for the TwigRenderer and the integration with your templates"
  735. },
  736. "time": "2012-12-27 13:04:16",
  737. "type": "library",
  738. "extra": {
  739. "branch-alias": {
  740. "dev-master": "2.0.x-dev"
  741. }
  742. },
  743. "autoload": {
  744. "psr-0": {
  745. "Knp\\Menu\\": "src/"
  746. }
  747. },
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "MIT"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Christophe Coevoet",
  755. "email": "stof@notk.org"
  756. },
  757. {
  758. "name": "KnpLabs",
  759. "homepage": "http://knplabs.com"
  760. },
  761. {
  762. "name": "Symfony Community",
  763. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  764. }
  765. ],
  766. "description": "An object oriented menu library",
  767. "homepage": "http://knplabs.com",
  768. "keywords": [
  769. "menu",
  770. "tree"
  771. ]
  772. },
  773. {
  774. "name": "monolog/monolog",
  775. "version": "dev-master",
  776. "source": {
  777. "type": "git",
  778. "url": "https://github.com/Seldaek/monolog",
  779. "reference": "957ee8d0d62fad0c336797f0fb1ffa63ae6d6c71"
  780. },
  781. "dist": {
  782. "type": "zip",
  783. "url": "https://github.com/Seldaek/monolog/archive/957ee8d0d62fad0c336797f0fb1ffa63ae6d6c71.zip",
  784. "reference": "957ee8d0d62fad0c336797f0fb1ffa63ae6d6c71",
  785. "shasum": ""
  786. },
  787. "require": {
  788. "php": ">=5.3.0",
  789. "psr/log": ">=1.0,<2.0"
  790. },
  791. "require-dev": {
  792. "mlehner/gelf-php": "1.0.*",
  793. "doctrine/couchdb": "dev-master",
  794. "raven/raven": "0.3.*"
  795. },
  796. "suggest": {
  797. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
  798. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  799. "ext-mongo": "Allow sending log messages to a MongoDB server",
  800. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  801. "raven/raven": "Allow sending log messages to a Sentry server"
  802. },
  803. "time": "2013-01-22 15:02:20",
  804. "type": "library",
  805. "extra": {
  806. "branch-alias": {
  807. "dev-master": "1.4.x-dev"
  808. }
  809. },
  810. "autoload": {
  811. "psr-0": {
  812. "Monolog": "src/"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Jordi Boggiano",
  822. "email": "j.boggiano@seld.be",
  823. "homepage": "http://seld.be",
  824. "role": "Developer"
  825. }
  826. ],
  827. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  828. "homepage": "http://github.com/Seldaek/monolog",
  829. "keywords": [
  830. "log",
  831. "logging",
  832. "psr-3"
  833. ]
  834. },
  835. {
  836. "name": "pagerfanta/pagerfanta",
  837. "version": "dev-master",
  838. "source": {
  839. "type": "git",
  840. "url": "git://github.com/whiteoctober/Pagerfanta.git",
  841. "reference": "12f71d99457b018fb80746f84514dd5b495c5789"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://github.com/whiteoctober/Pagerfanta/archive/12f71d99457b018fb80746f84514dd5b495c5789.zip",
  846. "reference": "12f71d99457b018fb80746f84514dd5b495c5789",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "php": ">=5.3.0"
  851. },
  852. "suggest": {
  853. "doctrine/orm": "2.*",
  854. "doctrine/mongodb-odm": "2.*",
  855. "solarium/solarium": "2.*"
  856. },
  857. "time": "2012-08-22 21:56:31",
  858. "type": "library",
  859. "autoload": {
  860. "psr-0": {
  861. "Pagerfanta\\": "src/"
  862. }
  863. },
  864. "notification-url": "https://packagist.org/downloads/",
  865. "license": [
  866. "MIT"
  867. ],
  868. "authors": [
  869. {
  870. "name": "Pablo Díez",
  871. "email": "pablodip@gmail.com",
  872. "homepage": "http://github.com/pablodip"
  873. }
  874. ],
  875. "description": "Pagination for PHP 5.3",
  876. "keywords": [
  877. "page",
  878. "paging"
  879. ]
  880. },
  881. {
  882. "name": "pimple/pimple",
  883. "version": "dev-master",
  884. "source": {
  885. "type": "git",
  886. "url": "git://github.com/fabpot/Pimple.git",
  887. "reference": "d58cec632dfdd3305d6b4f2563a5cf2a75b4d978"
  888. },
  889. "dist": {
  890. "type": "zip",
  891. "url": "https://github.com/fabpot/Pimple/archive/d58cec632dfdd3305d6b4f2563a5cf2a75b4d978.zip",
  892. "reference": "d58cec632dfdd3305d6b4f2563a5cf2a75b4d978",
  893. "shasum": ""
  894. },
  895. "require": {
  896. "php": ">=5.3.0"
  897. },
  898. "time": "2013-01-07 10:39:26",
  899. "type": "library",
  900. "extra": {
  901. "branch-alias": {
  902. "dev-master": "1.0.x-dev"
  903. }
  904. },
  905. "autoload": {
  906. "psr-0": {
  907. "Pimple": "lib/"
  908. }
  909. },
  910. "notification-url": "https://packagist.org/downloads/",
  911. "license": [
  912. "MIT"
  913. ],
  914. "authors": [
  915. {
  916. "name": "Fabien Potencier",
  917. "email": "fabien@symfony.com"
  918. }
  919. ],
  920. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  921. "homepage": "http://pimple.sensiolabs.org",
  922. "keywords": [
  923. "dependency injection",
  924. "container"
  925. ]
  926. },
  927. {
  928. "name": "psr/log",
  929. "version": "1.0.0",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/php-fig/log",
  933. "reference": "1.0.0"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://github.com/php-fig/log/archive/1.0.0.zip",
  938. "reference": "1.0.0",
  939. "shasum": ""
  940. },
  941. "time": "2012-12-21 11:40:51",
  942. "type": "library",
  943. "autoload": {
  944. "psr-0": {
  945. "Psr\\Log\\": ""
  946. }
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "MIT"
  951. ],
  952. "authors": [
  953. {
  954. "name": "PHP-FIG",
  955. "homepage": "http://www.php-fig.org/"
  956. }
  957. ],
  958. "description": "Common interface for logging libraries",
  959. "keywords": [
  960. "log",
  961. "psr",
  962. "psr-3"
  963. ]
  964. },
  965. {
  966. "name": "silex/silex",
  967. "version": "dev-master",
  968. "source": {
  969. "type": "git",
  970. "url": "git://github.com/fabpot/Silex.git",
  971. "reference": "a23c221e609a17dfc2923066e1680149b7678cf9"
  972. },
  973. "dist": {
  974. "type": "zip",
  975. "url": "https://github.com/fabpot/Silex/archive/a23c221e609a17dfc2923066e1680149b7678cf9.zip",
  976. "reference": "a23c221e609a17dfc2923066e1680149b7678cf9",
  977. "shasum": ""
  978. },
  979. "require": {
  980. "php": ">=5.3.3",
  981. "pimple/pimple": "1.*",
  982. "symfony/event-dispatcher": ">=2.1,<2.3-dev",
  983. "symfony/http-foundation": ">=2.1,<2.3-dev",
  984. "symfony/http-kernel": ">=2.1,<2.3-dev",
  985. "symfony/routing": ">=2.1,<2.3-dev"
  986. },
  987. "require-dev": {
  988. "twig/twig": ">=1.8.0,<2.0-dev",
  989. "swiftmailer/swiftmailer": "4.2.*",
  990. "doctrine/dbal": ">=2.2.0,<2.4.0-dev",
  991. "symfony/security": ">=2.1,<2.3-dev",
  992. "symfony/config": ">=2.1,<2.3-dev",
  993. "symfony/locale": ">=2.1,<2.3-dev",
  994. "symfony/form": ">=2.1,<2.3-dev",
  995. "symfony/browser-kit": ">=2.1,<2.3-dev",
  996. "symfony/css-selector": ">=2.1,<2.3-dev",
  997. "symfony/finder": ">=2.1,<2.3-dev",
  998. "symfony/monolog-bridge": ">=2.1,<2.3-dev",
  999. "symfony/process": ">=2.1,<2.3-dev",
  1000. "symfony/translation": ">=2.1,<2.3-dev",
  1001. "symfony/twig-bridge": ">=2.1,<2.3-dev",
  1002. "symfony/validator": ">=2.1,<2.3-dev",
  1003. "symfony/serializer": ">=2.1,<2.3-dev",
  1004. "symfony/dom-crawler": ">=2.1,<2.3-dev",
  1005. "symfony/options-resolver": ">=2.1,<2.3-dev"
  1006. },
  1007. "suggest": {
  1008. "symfony/browser-kit": ">=2.1,<2.3-dev",
  1009. "symfony/css-selector": ">=2.1,<2.3-dev",
  1010. "symfony/dom-crawler": ">=2.1,<2.3-dev"
  1011. },
  1012. "time": "2013-01-25 06:59:19",
  1013. "type": "library",
  1014. "extra": {
  1015. "branch-alias": {
  1016. "dev-master": "1.0.x-dev"
  1017. }
  1018. },
  1019. "autoload": {
  1020. "psr-0": {
  1021. "Silex": "src/"
  1022. }
  1023. },
  1024. "notification-url": "https://packagist.org/downloads/",
  1025. "license": [
  1026. "MIT"
  1027. ],
  1028. "authors": [
  1029. {
  1030. "name": "Fabien Potencier",
  1031. "email": "fabien@symfony.com"
  1032. },
  1033. {
  1034. "name": "Igor Wiedler",
  1035. "email": "igor@wiedler.ch",
  1036. "homepage": "http://wiedler.ch/igor/"
  1037. }
  1038. ],
  1039. "description": "The PHP micro-framework based on the Symfony2 Components",
  1040. "homepage": "http://silex.sensiolabs.org",
  1041. "keywords": [
  1042. "microframework"
  1043. ]
  1044. },
  1045. {
  1046. "name": "swiftmailer/swiftmailer",
  1047. "version": "v4.1.8",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1051. "reference": "v4.1.8"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://github.com/swiftmailer/swiftmailer/zipball/v4.1.8",
  1056. "reference": "v4.1.8",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "php": ">=5.2.4"
  1061. },
  1062. "time": "2012-06-17 13:55:34",
  1063. "type": "library",
  1064. "extra": {
  1065. "branch-alias": {
  1066. "dev-master": "4.1-dev"
  1067. }
  1068. },
  1069. "autoload": {
  1070. "files": [
  1071. "lib/swift_required.php"
  1072. ]
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "LGPL"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Fabien Potencier",
  1081. "email": "fabien@symfony.com"
  1082. },
  1083. {
  1084. "name": "Chris Corbyn"
  1085. }
  1086. ],
  1087. "description": "Swiftmailer, free feature-rich PHP mailer",
  1088. "homepage": "http://swiftmailer.org",
  1089. "keywords": [
  1090. "mail",
  1091. "mailer"
  1092. ]
  1093. },
  1094. {
  1095. "name": "symfony/config",
  1096. "version": "dev-master",
  1097. "target-dir": "Symfony/Component/Config",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/symfony/Config",
  1101. "reference": "v2.2.0-BETA2"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://github.com/symfony/Config/archive/v2.2.0-BETA2.zip",
  1106. "reference": "v2.2.0-BETA2",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "php": ">=5.3.3"
  1111. },
  1112. "time": "2013-01-17 15:25:59",
  1113. "type": "library",
  1114. "extra": {
  1115. "branch-alias": {
  1116. "dev-master": "2.2-dev"
  1117. }
  1118. },
  1119. "autoload": {
  1120. "psr-0": {
  1121. "Symfony\\Component\\Config\\": ""
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "Fabien Potencier",
  1131. "email": "fabien@symfony.com"
  1132. },
  1133. {
  1134. "name": "Symfony Community",
  1135. "homepage": "http://symfony.com/contributors"
  1136. }
  1137. ],
  1138. "description": "Symfony Config Component",
  1139. "homepage": "http://symfony.com"
  1140. },
  1141. {
  1142. "name": "symfony/console",
  1143. "version": "dev-master",
  1144. "target-dir": "Symfony/Component/Console",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/symfony/Console",
  1148. "reference": "fdb2d9320106926266a0f7a5a97aab7213e11ad6"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://github.com/symfony/Console/archive/fdb2d9320106926266a0f7a5a97aab7213e11ad6.zip",
  1153. "reference": "fdb2d9320106926266a0f7a5a97aab7213e11ad6",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "php": ">=5.3.3"
  1158. },
  1159. "time": "2013-01-24 15:55:08",
  1160. "type": "library",
  1161. "extra": {
  1162. "branch-alias": {
  1163. "dev-master": "2.2-dev"
  1164. }
  1165. },
  1166. "autoload": {
  1167. "psr-0": {
  1168. "Symfony\\Component\\Console\\": ""
  1169. }
  1170. },
  1171. "notification-url": "https://packagist.org/downloads/",
  1172. "license": [
  1173. "MIT"
  1174. ],
  1175. "authors": [
  1176. {
  1177. "name": "Fabien Potencier",
  1178. "email": "fabien@symfony.com"
  1179. },
  1180. {
  1181. "name": "Symfony Community",
  1182. "homepage": "http://symfony.com/contributors"
  1183. }
  1184. ],
  1185. "description": "Symfony Console Component",
  1186. "homepage": "http://symfony.com"
  1187. },
  1188. {
  1189. "name": "symfony/dependency-injection",
  1190. "version": "dev-master",
  1191. "target-dir": "Symfony/Component/DependencyInjection",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/symfony/DependencyInjection",
  1195. "reference": "v2.2.0-BETA2"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://github.com/symfony/DependencyInjection/archive/v2.2.0-BETA2.zip",
  1200. "reference": "v2.2.0-BETA2",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "php": ">=5.3.3"
  1205. },
  1206. "require-dev": {
  1207. "symfony/yaml": "2.2.*",
  1208. "symfony/config": "2.2.*"
  1209. },
  1210. "suggest": {
  1211. "symfony/yaml": "2.2.*",
  1212. "symfony/config": "2.2.*"
  1213. },
  1214. "time": "2013-01-23 20:21:00",
  1215. "type": "library",
  1216. "extra": {
  1217. "branch-alias": {
  1218. "dev-master": "2.2-dev"
  1219. }
  1220. },
  1221. "autoload": {
  1222. "psr-0": {
  1223. "Symfony\\Component\\DependencyInjection\\": ""
  1224. }
  1225. },
  1226. "notification-url": "https://packagist.org/downloads/",
  1227. "license": [
  1228. "MIT"
  1229. ],
  1230. "authors": [
  1231. {
  1232. "name": "Fabien Potencier",
  1233. "email": "fabien@symfony.com"
  1234. },
  1235. {
  1236. "name": "Symfony Community",
  1237. "homepage": "http://symfony.com/contributors"
  1238. }
  1239. ],
  1240. "description": "Symfony DependencyInjection Component",
  1241. "homepage": "http://symfony.com"
  1242. },
  1243. {
  1244. "name": "symfony/event-dispatcher",
  1245. "version": "2.1.x-dev",
  1246. "target-dir": "Symfony/Component/EventDispatcher",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/symfony/EventDispatcher",
  1250. "reference": "v2.1.7"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://github.com/symfony/EventDispatcher/archive/v2.1.7.zip",
  1255. "reference": "v2.1.7",
  1256. "shasum": ""
  1257. },
  1258. "require": {
  1259. "php": ">=5.3.3"
  1260. },
  1261. "require-dev": {
  1262. "symfony/dependency-injection": "2.1.*"
  1263. },
  1264. "suggest": {
  1265. "symfony/dependency-injection": "2.1.*",
  1266. "symfony/http-kernel": "2.1.*"
  1267. },
  1268. "time": "2013-01-11 00:31:43",
  1269. "type": "library",
  1270. "autoload": {
  1271. "psr-0": {
  1272. "Symfony\\Component\\EventDispatcher": ""
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Fabien Potencier",
  1282. "email": "fabien@symfony.com"
  1283. },
  1284. {
  1285. "name": "Symfony Community",
  1286. "homepage": "http://symfony.com/contributors"
  1287. }
  1288. ],
  1289. "description": "Symfony EventDispatcher Component",
  1290. "homepage": "http://symfony.com"
  1291. },
  1292. {
  1293. "name": "symfony/form",
  1294. "version": "2.1.x-dev",
  1295. "target-dir": "Symfony/Component/Form",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/symfony/Form",
  1299. "reference": "v2.1.7"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://github.com/symfony/Form/archive/v2.1.7.zip",
  1304. "reference": "v2.1.7",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "php": ">=5.3.3",
  1309. "symfony/event-dispatcher": "2.1.*",
  1310. "symfony/locale": "2.1.*",
  1311. "symfony/options-resolver": "2.1.*"
  1312. },
  1313. "require-dev": {
  1314. "symfony/validator": "2.1.*",
  1315. "symfony/http-foundation": "2.1.*"
  1316. },
  1317. "suggest": {
  1318. "symfony/validator": "2.1.*",
  1319. "symfony/http-foundation": "2.1.*"
  1320. },
  1321. "time": "2013-01-11 13:37:17",
  1322. "type": "library",
  1323. "autoload": {
  1324. "psr-0": {
  1325. "Symfony\\Component\\Form": ""
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Fabien Potencier",
  1335. "email": "fabien@symfony.com"
  1336. },
  1337. {
  1338. "name": "Symfony Community",
  1339. "homepage": "http://symfony.com/contributors"
  1340. }
  1341. ],
  1342. "description": "Symfony Form Component",
  1343. "homepage": "http://symfony.com"
  1344. },
  1345. {
  1346. "name": "symfony/http-foundation",
  1347. "version": "2.1.x-dev",
  1348. "target-dir": "Symfony/Component/HttpFoundation",
  1349. "source": {
  1350. "type": "git",
  1351. "url": "https://github.com/symfony/HttpFoundation",
  1352. "reference": "v2.1.7"
  1353. },
  1354. "dist": {
  1355. "type": "zip",
  1356. "url": "https://github.com/symfony/HttpFoundation/archive/v2.1.7.zip",
  1357. "reference": "v2.1.7",
  1358. "shasum": ""
  1359. },
  1360. "require": {
  1361. "php": ">=5.3.3"
  1362. },
  1363. "time": "2013-01-11 00:31:43",
  1364. "type": "library",
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Symfony\\Component\\HttpFoundation": "",
  1368. "SessionHandlerInterface": "Symfony/Component/HttpFoundation/Resources/stubs"
  1369. }
  1370. },
  1371. "notification-url": "https://packagist.org/downloads/",
  1372. "license": [
  1373. "MIT"
  1374. ],
  1375. "authors": [
  1376. {
  1377. "name": "Fabien Potencier",
  1378. "email": "fabien@symfony.com"
  1379. },
  1380. {
  1381. "name": "Symfony Community",
  1382. "homepage": "http://symfony.com/contributors"
  1383. }
  1384. ],
  1385. "description": "Symfony HttpFoundation Component",
  1386. "homepage": "http://symfony.com"
  1387. },
  1388. {
  1389. "name": "symfony/http-kernel",
  1390. "version": "2.1.x-dev",
  1391. "target-dir": "Symfony/Component/HttpKernel",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/symfony/HttpKernel",
  1395. "reference": "e57b260d74b04671d26cc37c2049b90924bb636d"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://github.com/symfony/HttpKernel/archive/e57b260d74b04671d26cc37c2049b90924bb636d.zip",
  1400. "reference": "e57b260d74b04671d26cc37c2049b90924bb636d",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": ">=5.3.3",
  1405. "symfony/event-dispatcher": "2.1.*",
  1406. "symfony/http-foundation": "2.1.*"
  1407. },
  1408. "require-dev": {
  1409. "symfony/browser-kit": "2.1.*",
  1410. "symfony/class-loader": "2.1.*",
  1411. "symfony/config": "2.1.*",
  1412. "symfony/console": "2.1.*",
  1413. "symfony/dependency-injection": "2.1.*",
  1414. "symfony/finder": "2.1.*",
  1415. "symfony/process": "2.1.*",
  1416. "symfony/routing": "2.1.*"
  1417. },
  1418. "suggest": {
  1419. "symfony/browser-kit": "2.1.*",
  1420. "symfony/class-loader": "2.1.*",
  1421. "symfony/config": "2.1.*",
  1422. "symfony/console": "2.1.*",
  1423. "symfony/dependency-injection": "2.1.*",
  1424. "symfony/finder": "2.1.*"
  1425. },
  1426. "time": "2013-01-17 23:11:33",
  1427. "type": "library",
  1428. "autoload": {
  1429. "psr-0": {
  1430. "Symfony\\Component\\HttpKernel": ""
  1431. }
  1432. },
  1433. "notification-url": "https://packagist.org/downloads/",
  1434. "license": [
  1435. "MIT"
  1436. ],
  1437. "authors": [
  1438. {
  1439. "name": "Fabien Potencier",
  1440. "email": "fabien@symfony.com"
  1441. },
  1442. {
  1443. "name": "Symfony Community",
  1444. "homepage": "http://symfony.com/contributors"
  1445. }
  1446. ],
  1447. "description": "Symfony HttpKernel Component",
  1448. "homepage": "http://symfony.com"
  1449. },
  1450. {
  1451. "name": "symfony/locale",
  1452. "version": "2.1.x-dev",
  1453. "target-dir": "Symfony/Component/Locale",
  1454. "source": {
  1455. "type": "git",
  1456. "url": "https://github.com/symfony/Locale",
  1457. "reference": "v2.1.7"
  1458. },
  1459. "dist": {
  1460. "type": "zip",
  1461. "url": "https://github.com/symfony/Locale/archive/v2.1.7.zip",
  1462. "reference": "v2.1.7",
  1463. "shasum": ""
  1464. },
  1465. "require": {
  1466. "php": ">=5.3.3"
  1467. },
  1468. "suggest": {
  1469. "ext-intl": ">=5.3.3"
  1470. },
  1471. "time": "2013-01-10 04:41:59",
  1472. "type": "library",
  1473. "autoload": {
  1474. "psr-0": {
  1475. "Symfony\\Component\\Locale": ""
  1476. }
  1477. },
  1478. "notification-url": "https://packagist.org/downloads/",
  1479. "license": [
  1480. "MIT"
  1481. ],
  1482. "authors": [
  1483. {
  1484. "name": "Fabien Potencier",
  1485. "email": "fabien@symfony.com"
  1486. },
  1487. {
  1488. "name": "Symfony Community",
  1489. "homepage": "http://symfony.com/contributors"
  1490. }
  1491. ],
  1492. "description": "Symfony Locale Component",
  1493. "homepage": "http://symfony.com"
  1494. },
  1495. {
  1496. "name": "symfony/options-resolver",
  1497. "version": "2.1.x-dev",
  1498. "target-dir": "Symfony/Component/OptionsResolver",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/symfony/OptionsResolver",
  1502. "reference": "v2.1.7"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://github.com/symfony/OptionsResolver/archive/v2.1.7.zip",
  1507. "reference": "v2.1.7",
  1508. "shasum": ""
  1509. },
  1510. "require": {
  1511. "php": ">=5.3.3"
  1512. },
  1513. "time": "2013-01-09 08:51:07",
  1514. "type": "library",
  1515. "autoload": {
  1516. "psr-0": {
  1517. "Symfony\\Component\\OptionsResolver": ""
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "authors": [
  1525. {
  1526. "name": "Fabien Potencier",
  1527. "email": "fabien@symfony.com"
  1528. },
  1529. {
  1530. "name": "Symfony Community",
  1531. "homepage": "http://symfony.com/contributors"
  1532. }
  1533. ],
  1534. "description": "Symfony OptionsResolver Component",
  1535. "homepage": "http://symfony.com",
  1536. "keywords": [
  1537. "configuration",
  1538. "config",
  1539. "options"
  1540. ]
  1541. },
  1542. {
  1543. "name": "symfony/routing",
  1544. "version": "dev-master",
  1545. "target-dir": "Symfony/Component/Routing",
  1546. "source": {
  1547. "type": "git",
  1548. "url": "https://github.com/symfony/Routing",
  1549. "reference": "v2.2.0-BETA2"
  1550. },
  1551. "dist": {
  1552. "type": "zip",
  1553. "url": "https://github.com/symfony/Routing/archive/v2.2.0-BETA2.zip",
  1554. "reference": "v2.2.0-BETA2",
  1555. "shasum": ""
  1556. },
  1557. "require": {
  1558. "php": ">=5.3.3"
  1559. },
  1560. "require-dev": {
  1561. "doctrine/common": ">=2.2,<2.4-dev",
  1562. "symfony/config": "2.2.*",
  1563. "symfony/yaml": "2.2.*",
  1564. "symfony/http-kernel": "2.2.*",
  1565. "psr/log": ">=1.0,<2.0"
  1566. },
  1567. "suggest": {
  1568. "doctrine/common": ">=2.2,<2.4-dev",
  1569. "symfony/config": "2.2.*",
  1570. "symfony/yaml": "2.2.*"
  1571. },
  1572. "time": "2013-01-21 16:57:32",
  1573. "type": "library",
  1574. "extra": {
  1575. "branch-alias": {
  1576. "dev-master": "2.2-dev"
  1577. }
  1578. },
  1579. "autoload": {
  1580. "psr-0": {
  1581. "Symfony\\Component\\Routing\\": ""
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "MIT"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "Fabien Potencier",
  1591. "email": "fabien@symfony.com"
  1592. },
  1593. {
  1594. "name": "Symfony Community",
  1595. "homepage": "http://symfony.com/contributors"
  1596. }
  1597. ],
  1598. "description": "Symfony Routing Component",
  1599. "homepage": "http://symfony.com"
  1600. },
  1601. {
  1602. "name": "symfony/security",
  1603. "version": "2.1.x-dev",
  1604. "target-dir": "Symfony/Component/Security",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/symfony/Security",
  1608. "reference": "9614e70a3b18909350c877d83aada298b7380f92"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://github.com/symfony/Security/archive/9614e70a3b18909350c877d83aada298b7380f92.zip",
  1613. "reference": "9614e70a3b18909350c877d83aada298b7380f92",
  1614. "shasum": ""
  1615. },
  1616. "require": {
  1617. "php": ">=5.3.3",
  1618. "symfony/event-dispatcher": "2.1.*",
  1619. "symfony/http-foundation": "2.1.*",
  1620. "symfony/http-kernel": "2.1.*"
  1621. },
  1622. "require-dev": {
  1623. "symfony/form": "2.1.*",
  1624. "symfony/routing": "2.1.*",
  1625. "symfony/validator": "2.1.*",
  1626. "doctrine/common": ">=2.2,<2.4-dev",
  1627. "doctrine/dbal": ">=2.2,<2.4-dev"
  1628. },
  1629. "suggest": {
  1630. "doctrine/dbal": "to use the built-in ACL implementation",
  1631. "symfony/class-loader": "2.1.*",
  1632. "symfony/finder": "2.1.*",
  1633. "symfony/form": "2.1.*",
  1634. "symfony/validator": "2.1.*",
  1635. "symfony/routing": "2.1.*"
  1636. },
  1637. "time": "2013-01-22 07:14:57",
  1638. "type": "library",
  1639. "autoload": {
  1640. "psr-0": {
  1641. "Symfony\\Component\\Security": ""
  1642. }
  1643. },
  1644. "notification-url": "https://packagist.org/downloads/",
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "Fabien Potencier",
  1651. "email": "fabien@symfony.com"
  1652. },
  1653. {
  1654. "name": "Symfony Community",
  1655. "homepage": "http://symfony.com/contributors"
  1656. }
  1657. ],
  1658. "description": "Symfony Security Component",
  1659. "homepage": "http://symfony.com"
  1660. },
  1661. {
  1662. "name": "symfony/translation",
  1663. "version": "2.1.x-dev",
  1664. "target-dir": "Symfony/Component/Translation",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://github.com/symfony/Translation",
  1668. "reference": "v2.1.7"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://github.com/symfony/Translation/archive/v2.1.7.zip",
  1673. "reference": "v2.1.7",
  1674. "shasum": ""
  1675. },
  1676. "require": {
  1677. "php": ">=5.3.3"
  1678. },
  1679. "require-dev": {
  1680. "symfony/config": "2.1.*",
  1681. "symfony/yaml": "2.1.*"
  1682. },
  1683. "suggest": {
  1684. "symfony/config": "2.1.*",
  1685. "symfony/yaml": "2.1.*"
  1686. },
  1687. "time": "2013-01-09 08:51:07",
  1688. "type": "library",
  1689. "autoload": {
  1690. "psr-0": {
  1691. "Symfony\\Component\\Translation": ""
  1692. }
  1693. },
  1694. "notification-url": "https://packagist.org/downloads/",
  1695. "license": [
  1696. "MIT"
  1697. ],
  1698. "authors": [
  1699. {
  1700. "name": "Fabien Potencier",
  1701. "email": "fabien@symfony.com"
  1702. },
  1703. {
  1704. "name": "Symfony Community",
  1705. "homepage": "http://symfony.com/contributors"
  1706. }
  1707. ],
  1708. "description": "Symfony Translation Component",
  1709. "homepage": "http://symfony.com"
  1710. },
  1711. {
  1712. "name": "symfony/twig-bridge",
  1713. "version": "dev-master",
  1714. "target-dir": "Symfony/Bridge/Twig",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/symfony/TwigBridge",
  1718. "reference": "v2.2.0-BETA2"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://github.com/symfony/TwigBridge/archive/v2.2.0-BETA2.zip",
  1723. "reference": "v2.2.0-BETA2",
  1724. "shasum": ""
  1725. },
  1726. "require": {
  1727. "php": ">=5.3.3",
  1728. "twig/twig": ">=1.9.1,<2.0-dev"
  1729. },
  1730. "require-dev": {
  1731. "symfony/form": "2.2.*",
  1732. "symfony/routing": "2.2.*",
  1733. "symfony/templating": "2.2.*",
  1734. "symfony/translation": "2.2.*",
  1735. "symfony/yaml": "2.2.*",
  1736. "symfony/security": "2.2.*",
  1737. "symfony/http-kernel": "2.2.*"
  1738. },
  1739. "suggest": {
  1740. "symfony/form": "2.2.*",
  1741. "symfony/routing": "2.2.*",
  1742. "symfony/templating": "2.2.*",
  1743. "symfony/translation": "2.2.*",
  1744. "symfony/yaml": "2.2.*",
  1745. "symfony/security": "2.2.*",
  1746. "symfony/http-kernel": "2.2.*"
  1747. },
  1748. "time": "2013-01-23 20:26:57",
  1749. "type": "symfony-bridge",
  1750. "extra": {
  1751. "branch-alias": {
  1752. "dev-master": "2.2-dev"
  1753. }
  1754. },
  1755. "autoload": {
  1756. "psr-0": {
  1757. "Symfony\\Bridge\\Twig\\": ""
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "authors": [
  1765. {
  1766. "name": "Fabien Potencier",
  1767. "email": "fabien@symfony.com"
  1768. },
  1769. {
  1770. "name": "Symfony Community",
  1771. "homepage": "http://symfony.com/contributors"
  1772. }
  1773. ],
  1774. "description": "Symfony Twig Bridge",
  1775. "homepage": "http://symfony.com"
  1776. },
  1777. {
  1778. "name": "symfony/validator",
  1779. "version": "2.1.x-dev",
  1780. "target-dir": "Symfony/Component/Validator",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/symfony/Validator",
  1784. "reference": "v2.1.7"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://github.com/symfony/Validator/archive/v2.1.7.zip",
  1789. "reference": "v2.1.7",
  1790. "shasum": ""
  1791. },
  1792. "require": {
  1793. "php": ">=5.3.3"
  1794. },
  1795. "require-dev": {
  1796. "symfony/http-foundation": "2.1.*",
  1797. "symfony/locale": "2.1.*",
  1798. "symfony/yaml": "2.1.*"
  1799. },
  1800. "suggest": {
  1801. "doctrine/common": ">=2.1,<2.4-dev",
  1802. "symfony/http-foundation": "2.1.*",
  1803. "symfony/yaml": "2.1.*"
  1804. },
  1805. "time": "2013-01-11 00:31:43",
  1806. "type": "library",
  1807. "autoload": {
  1808. "psr-0": {
  1809. "Symfony\\Component\\Validator": ""
  1810. }
  1811. },
  1812. "notification-url": "https://packagist.org/downloads/",
  1813. "license": [
  1814. "MIT"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "Fabien Potencier",
  1819. "email": "fabien@symfony.com"
  1820. },
  1821. {
  1822. "name": "Symfony Community",
  1823. "homepage": "http://symfony.com/contributors"
  1824. }
  1825. ],
  1826. "description": "Symfony Validator Component",
  1827. "homepage": "http://symfony.com"
  1828. },
  1829. {
  1830. "name": "symfony/yaml",
  1831. "version": "2.1.x-dev",
  1832. "target-dir": "Symfony/Component/Yaml",
  1833. "source": {
  1834. "type": "git",
  1835. "url": "https://github.com/symfony/Yaml",
  1836. "reference": "fef0f818ba06a69da9a976592bde7b951de33a0f"
  1837. },
  1838. "dist": {
  1839. "type": "zip",
  1840. "url": "https://github.com/symfony/Yaml/archive/fef0f818ba06a69da9a976592bde7b951de33a0f.zip",
  1841. "reference": "fef0f818ba06a69da9a976592bde7b951de33a0f",
  1842. "shasum": ""
  1843. },
  1844. "require": {
  1845. "php": ">=5.3.3"
  1846. },
  1847. "time": "2013-01-22 07:14:57",
  1848. "type": "library",
  1849. "autoload": {
  1850. "psr-0": {
  1851. "Symfony\\Component\\Yaml": ""
  1852. }
  1853. },
  1854. "notification-url": "https://packagist.org/downloads/",
  1855. "license": [
  1856. "MIT"
  1857. ],
  1858. "authors": [
  1859. {
  1860. "name": "Fabien Potencier",
  1861. "email": "fabien@symfony.com"
  1862. },
  1863. {
  1864. "name": "Symfony Community",
  1865. "homepage": "http://symfony.com/contributors"
  1866. }
  1867. ],
  1868. "description": "Symfony Yaml Component",
  1869. "homepage": "http://symfony.com"
  1870. },
  1871. {
  1872. "name": "twig/twig",
  1873. "version": "dev-master",
  1874. "source": {
  1875. "type": "git",
  1876. "url": "git://github.com/fabpot/Twig.git",
  1877. "reference": "93c6a8dedc46c73ccdd61342de3d5e761e4412f6"
  1878. },
  1879. "dist": {
  1880. "type": "zip",
  1881. "url": "https://github.com/fabpot/Twig/archive/93c6a8dedc46c73ccdd61342de3d5e761e4412f6.zip",
  1882. "reference": "93c6a8dedc46c73ccdd61342de3d5e761e4412f6",
  1883. "shasum": ""
  1884. },
  1885. "require": {
  1886. "php": ">=5.2.4"
  1887. },
  1888. "time": "2013-01-18 09:58:04",
  1889. "type": "library",
  1890. "extra": {
  1891. "branch-alias": {
  1892. "dev-master": "1.12-dev"
  1893. }
  1894. },
  1895. "autoload": {
  1896. "psr-0": {
  1897. "Twig_": "lib/"
  1898. }
  1899. },
  1900. "notification-url": "https://packagist.org/downloads/",
  1901. "license": [
  1902. "BSD-3"
  1903. ],
  1904. "authors": [
  1905. {
  1906. "name": "Fabien Potencier",
  1907. "email": "fabien@symfony.com"
  1908. },
  1909. {
  1910. "name": "Armin Ronacher",
  1911. "email": "armin.ronacher@active-4.com"
  1912. }
  1913. ],
  1914. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1915. "homepage": "http://twig.sensiolabs.org",
  1916. "keywords": [
  1917. "templating"
  1918. ]
  1919. }
  1920. ],
  1921. "packages-dev": null,
  1922. "aliases": [
  1923. ],
  1924. "minimum-stability": "dev",
  1925. "stability-flags": {
  1926. "silex/silex": 20,
  1927. "symfony/config": 20,
  1928. "symfony/console": 20,
  1929. "symfony/twig-bridge": 20,
  1930. "symfony/dependency-injection": 20,
  1931. "dflydev/doctrine-orm-service-provider": 20,
  1932. "doctrine/migrations": 20,
  1933. "pagerfanta/pagerfanta": 20,
  1934. "knplabs/knp-menu": 20,
  1935. "gedmo/doctrine-extensions": 20
  1936. }
  1937. }