composer.lock 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547
  1. {
  2. "hash": "b75d7ddfba8e0198ad8e714f107936ca",
  3. "packages": [
  4. {
  5. "name": "chamilo/chash",
  6. "version": "dev-master",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/chamilo/chash.git",
  10. "reference": "38a4ea2c1d448699c780c81f72a434da79547a8f"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/chamilo/chash/zipball/38a4ea2c1d448699c780c81f72a434da79547a8f",
  15. "reference": "38a4ea2c1d448699c780c81f72a434da79547a8f",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": ">=5.3.2",
  20. "symfony/console": "2.3.*@dev",
  21. "symfony/yaml": "2.1.*"
  22. },
  23. "type": "library",
  24. "autoload": {
  25. "psr-0": {
  26. "Chash": "src/"
  27. }
  28. },
  29. "notification-url": "https://packagist.org/downloads/",
  30. "time": "2013-04-03 12:15:26"
  31. },
  32. {
  33. "name": "dflydev/doctrine-orm-service-provider",
  34. "version": "dev-master",
  35. "source": {
  36. "type": "git",
  37. "url": "https://github.com/dflydev/dflydev-doctrine-orm-service-provider.git",
  38. "reference": "v1.0.0"
  39. },
  40. "dist": {
  41. "type": "zip",
  42. "url": "https://api.github.com/repos/dflydev/dflydev-doctrine-orm-service-provider/zipball/v1.0.0",
  43. "reference": "v1.0.0",
  44. "shasum": ""
  45. },
  46. "require": {
  47. "doctrine/orm": ">=2.3,<3.0",
  48. "php": ">=5.3.3",
  49. "pimple/pimple": "1.*@dev"
  50. },
  51. "require-dev": {
  52. "cilex/cilex": "1.*@dev",
  53. "silex/silex": "1.*@dev"
  54. },
  55. "suggest": {
  56. "dflydev/psr0-resource-locator-service-provider": "1.0.*@dev"
  57. },
  58. "type": "library",
  59. "extra": {
  60. "branch-alias": {
  61. "dev-master": "1.0-dev"
  62. }
  63. },
  64. "autoload": {
  65. "psr-0": {
  66. "Dflydev\\Cilex\\Provider\\DoctrineOrm": "src",
  67. "Dflydev\\Pimple\\Provider\\DoctrineOrm": "src",
  68. "Dflydev\\Silex\\Provider\\DoctrineOrm": "src"
  69. }
  70. },
  71. "notification-url": "https://packagist.org/downloads/",
  72. "license": [
  73. "MIT"
  74. ],
  75. "authors": [
  76. {
  77. "name": "Dragonfly Development Inc.",
  78. "email": "info@dflydev.com",
  79. "homepage": "http://dflydev.com"
  80. },
  81. {
  82. "name": "Beau Simensen",
  83. "email": "beau@dflydev.com",
  84. "homepage": "http://beausimensen.com"
  85. }
  86. ],
  87. "description": "Doctrine ORM Service Provider",
  88. "keywords": [
  89. "cilex",
  90. "doctrine",
  91. "orm",
  92. "pimple",
  93. "silex"
  94. ],
  95. "time": "2012-12-30 23:41:22"
  96. },
  97. {
  98. "name": "doctrine/common",
  99. "version": "2.3.0",
  100. "source": {
  101. "type": "git",
  102. "url": "https://github.com/doctrine/common",
  103. "reference": "2.3.0"
  104. },
  105. "dist": {
  106. "type": "zip",
  107. "url": "https://github.com/doctrine/common/zipball/2.3.0",
  108. "reference": "2.3.0",
  109. "shasum": ""
  110. },
  111. "require": {
  112. "php": ">=5.3.2"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-master": "2.3.x-dev"
  118. }
  119. },
  120. "autoload": {
  121. "psr-0": {
  122. "Doctrine\\Common": "lib/"
  123. }
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "MIT"
  128. ],
  129. "authors": [
  130. {
  131. "name": "Jonathan Wage",
  132. "email": "jonwage@gmail.com",
  133. "homepage": "http://www.jwage.com/"
  134. },
  135. {
  136. "name": "Guilherme Blanco",
  137. "email": "guilhermeblanco@gmail.com",
  138. "homepage": "http://www.instaclick.com"
  139. },
  140. {
  141. "name": "Roman Borschel",
  142. "email": "roman@code-factory.org"
  143. },
  144. {
  145. "name": "Benjamin Eberlei",
  146. "email": "kontakt@beberlei.de"
  147. },
  148. {
  149. "name": "Johannes Schmitt",
  150. "email": "schmittjoh@gmail.com",
  151. "homepage": "http://jmsyst.com",
  152. "role": "Developer of wrapped JMSSerializerBundle"
  153. }
  154. ],
  155. "description": "Common Library for Doctrine projects",
  156. "homepage": "http://www.doctrine-project.org",
  157. "keywords": [
  158. "annotations",
  159. "collections",
  160. "eventmanager",
  161. "persistence",
  162. "spl"
  163. ],
  164. "time": "2012-09-19 22:55:18"
  165. },
  166. {
  167. "name": "doctrine/dbal",
  168. "version": "2.3.3",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/doctrine/dbal.git",
  172. "reference": "2.3.3"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/doctrine/dbal/zipball/2.3.3",
  177. "reference": "2.3.3",
  178. "shasum": ""
  179. },
  180. "require": {
  181. "doctrine/common": ">=2.3.0,<2.5-dev",
  182. "php": ">=5.3.2"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "branch-alias": {
  187. "dev-master": "2.3.x-dev"
  188. }
  189. },
  190. "autoload": {
  191. "psr-0": {
  192. "Doctrine\\DBAL": "lib/"
  193. }
  194. },
  195. "notification-url": "https://packagist.org/downloads/",
  196. "license": [
  197. "MIT"
  198. ],
  199. "authors": [
  200. {
  201. "name": "Jonathan Wage",
  202. "email": "jonwage@gmail.com",
  203. "homepage": "http://www.jwage.com/"
  204. },
  205. {
  206. "name": "Guilherme Blanco",
  207. "email": "guilhermeblanco@gmail.com",
  208. "homepage": "http://www.instaclick.com"
  209. },
  210. {
  211. "name": "Roman Borschel",
  212. "email": "roman@code-factory.org"
  213. },
  214. {
  215. "name": "Benjamin Eberlei",
  216. "email": "kontakt@beberlei.de"
  217. }
  218. ],
  219. "description": "Database Abstraction Layer",
  220. "homepage": "http://www.doctrine-project.org",
  221. "keywords": [
  222. "database",
  223. "dbal",
  224. "persistence",
  225. "queryobject"
  226. ],
  227. "time": "2013-03-24 19:16:29"
  228. },
  229. {
  230. "name": "doctrine/migrations",
  231. "version": "dev-master",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/doctrine/migrations.git",
  235. "reference": "e1f6efcd94993b493de5c6a413cbc327ea9c0caa"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e1f6efcd94993b493de5c6a413cbc327ea9c0caa",
  240. "reference": "e1f6efcd94993b493de5c6a413cbc327ea9c0caa",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "doctrine/dbal": ">=2.0,<2.5.x-dev",
  245. "php": ">=5.3.2"
  246. },
  247. "require-dev": {
  248. "symfony/console": "2.*",
  249. "symfony/yaml": "2.*"
  250. },
  251. "suggest": {
  252. "symfony/console": "to run the migration from the console"
  253. },
  254. "type": "library",
  255. "autoload": {
  256. "psr-0": {
  257. "Doctrine\\DBAL\\Migrations": "lib"
  258. }
  259. },
  260. "notification-url": "https://packagist.org/downloads/",
  261. "license": [
  262. "LGPL"
  263. ],
  264. "authors": [
  265. {
  266. "name": "Jonathan H. Wage",
  267. "email": "jonwage@gmail.com",
  268. "homepage": "http://www.jwage.com/"
  269. },
  270. {
  271. "name": "Benjamin Eberlei",
  272. "email": "kontakt@beberlei.de"
  273. }
  274. ],
  275. "description": "Database Schema migrations using Doctrine DBAL",
  276. "homepage": "http://www.doctrine-project.org",
  277. "keywords": [
  278. "database",
  279. "migrations"
  280. ],
  281. "time": "2012-12-27 16:39:29"
  282. },
  283. {
  284. "name": "doctrine/orm",
  285. "version": "2.3.3",
  286. "source": {
  287. "type": "git",
  288. "url": "https://github.com/doctrine/doctrine2.git",
  289. "reference": "2.3.3"
  290. },
  291. "dist": {
  292. "type": "zip",
  293. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2.3.3",
  294. "reference": "2.3.3",
  295. "shasum": ""
  296. },
  297. "require": {
  298. "doctrine/dbal": "2.3.*",
  299. "ext-pdo": "*",
  300. "php": ">=5.3.2",
  301. "symfony/console": "2.*"
  302. },
  303. "suggest": {
  304. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  305. },
  306. "bin": [
  307. "bin/doctrine",
  308. "bin/doctrine.php"
  309. ],
  310. "type": "library",
  311. "extra": {
  312. "branch-alias": {
  313. "dev-master": "2.3.x-dev"
  314. }
  315. },
  316. "autoload": {
  317. "psr-0": {
  318. "Doctrine\\ORM": "lib/"
  319. }
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "MIT"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Jonathan Wage",
  328. "email": "jonwage@gmail.com",
  329. "homepage": "http://www.jwage.com/"
  330. },
  331. {
  332. "name": "Guilherme Blanco",
  333. "email": "guilhermeblanco@gmail.com",
  334. "homepage": "http://www.instaclick.com"
  335. },
  336. {
  337. "name": "Roman Borschel",
  338. "email": "roman@code-factory.org"
  339. },
  340. {
  341. "name": "Benjamin Eberlei",
  342. "email": "kontakt@beberlei.de"
  343. }
  344. ],
  345. "description": "Object-Relational-Mapper for PHP",
  346. "homepage": "http://www.doctrine-project.org",
  347. "keywords": [
  348. "database",
  349. "orm"
  350. ],
  351. "time": "2013-03-24 20:43:58"
  352. },
  353. {
  354. "name": "ezyang/htmlpurifier",
  355. "version": "dev-master",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/ezyang/htmlpurifier.git",
  359. "reference": "v4.5.0"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/v4.5.0",
  364. "reference": "v4.5.0",
  365. "shasum": ""
  366. },
  367. "require": {
  368. "php": ">=5.2"
  369. },
  370. "type": "library",
  371. "autoload": {
  372. "psr-0": {
  373. "HTMLPurifier": "library/"
  374. },
  375. "files": [
  376. "library/HTMLPurifier.composer.php"
  377. ]
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "LGPL"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Edward Z. Yang",
  386. "email": "admin@htmlpurifier.org",
  387. "homepage": "http://ezyang.com"
  388. }
  389. ],
  390. "description": "Standards compliant HTML filter written in PHP",
  391. "homepage": "http://htmlpurifier.org/",
  392. "keywords": [
  393. "html"
  394. ],
  395. "time": "2013-02-18 00:04:08"
  396. },
  397. {
  398. "name": "gedmo/doctrine-extensions",
  399. "version": "dev-master",
  400. "source": {
  401. "type": "git",
  402. "url": "https://github.com/l3pp4rd/DoctrineExtensions.git",
  403. "reference": "db0585625f6944a755534688e971b86d1d33ec45"
  404. },
  405. "dist": {
  406. "type": "zip",
  407. "url": "https://api.github.com/repos/l3pp4rd/DoctrineExtensions/zipball/db0585625f6944a755534688e971b86d1d33ec45",
  408. "reference": "db0585625f6944a755534688e971b86d1d33ec45",
  409. "shasum": ""
  410. },
  411. "require": {
  412. "doctrine/common": ">=2.2,<2.5-dev",
  413. "php": ">=5.3.2"
  414. },
  415. "require-dev": {
  416. "doctrine/dbal": ">=2.2",
  417. "doctrine/mongodb": "1.0.1",
  418. "doctrine/mongodb-odm": "1.0.0-BETA7",
  419. "doctrine/orm": ">=2.2",
  420. "symfony/yaml": "2.*"
  421. },
  422. "suggest": {
  423. "doctrine/dbal": ">=2.3.2",
  424. "doctrine/mongodb": ">=1.0.1",
  425. "doctrine/mongodb-odm": ">=1.0.0-BETA7",
  426. "doctrine/orm": ">=2.3.2"
  427. },
  428. "type": "library",
  429. "extra": {
  430. "branch-alias": {
  431. "dev-master": "2.3.x-dev"
  432. }
  433. },
  434. "autoload": {
  435. "psr-0": {
  436. "Gedmo": "lib/"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "MIT"
  442. ],
  443. "authors": [
  444. {
  445. "name": "David Buchmann",
  446. "email": "david@liip.ch"
  447. },
  448. {
  449. "name": "Gediminas Morkevicius",
  450. "email": "gediminas.morkevicius@gmail.com"
  451. },
  452. {
  453. "name": "Gustavo Falco",
  454. "email": "comfortablynumb84@gmail.com"
  455. }
  456. ],
  457. "description": "Doctrine2 behavioral extensions",
  458. "homepage": "http://gediminasm.org/",
  459. "keywords": [
  460. "Blameable",
  461. "behaviors",
  462. "doctrine2",
  463. "extensions",
  464. "gedmo",
  465. "loggable",
  466. "nestedset",
  467. "sluggable",
  468. "sortable",
  469. "timestampable",
  470. "translatable",
  471. "tree",
  472. "uploadable"
  473. ],
  474. "time": "2013-04-07 10:44:07"
  475. },
  476. {
  477. "name": "igorw/config-service-provider",
  478. "version": "dev-master",
  479. "source": {
  480. "type": "git",
  481. "url": "https://github.com/igorw/ConfigServiceProvider.git",
  482. "reference": "v1.1.5"
  483. },
  484. "dist": {
  485. "type": "zip",
  486. "url": "https://api.github.com/repos/igorw/ConfigServiceProvider/zipball/v1.1.5",
  487. "reference": "v1.1.5",
  488. "shasum": ""
  489. },
  490. "require": {
  491. "silex/silex": "1.0.*@dev"
  492. },
  493. "require-dev": {
  494. "symfony/yaml": ">=2.1,<3.0"
  495. },
  496. "suggest": {
  497. "symfony/yaml": "~2.1"
  498. },
  499. "type": "library",
  500. "extra": {
  501. "branch-alias": {
  502. "dev-master": "1.0-dev"
  503. }
  504. },
  505. "autoload": {
  506. "psr-0": {
  507. "Igorw\\Silex": "src"
  508. }
  509. },
  510. "notification-url": "https://packagist.org/downloads/",
  511. "license": [
  512. "MIT"
  513. ],
  514. "authors": [
  515. {
  516. "name": "Igor Wiedler",
  517. "email": "igor@wiedler.ch",
  518. "homepage": "http://wiedler.ch/igor/"
  519. },
  520. {
  521. "name": "Contributors",
  522. "homepage": "https://github.com/igorw/ConfigServiceProvider/contributors"
  523. }
  524. ],
  525. "description": "A config ServiceProvider for Silex with support for php, json and yaml.",
  526. "keywords": [
  527. "silex"
  528. ],
  529. "time": "2013-03-09 15:35:23"
  530. },
  531. {
  532. "name": "knplabs/knp-menu",
  533. "version": "dev-master",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/KnpLabs/KnpMenu.git",
  537. "reference": "730bc37232f5f813822acf80edfbd89381ea5971"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/730bc37232f5f813822acf80edfbd89381ea5971",
  542. "reference": "730bc37232f5f813822acf80edfbd89381ea5971",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "php": ">=5.3.0"
  547. },
  548. "require-dev": {
  549. "pimple/pimple": "1.0.*",
  550. "silex/silex": "1.0.*",
  551. "twig/twig": ">=1.2,<2.0-dev"
  552. },
  553. "suggest": {
  554. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  555. "silex/silex": "for the integration with your silex application",
  556. "twig/twig": "for the TwigRenderer and the integration with your templates"
  557. },
  558. "type": "library",
  559. "extra": {
  560. "branch-alias": {
  561. "dev-master": "2.0.x-dev"
  562. }
  563. },
  564. "autoload": {
  565. "psr-0": {
  566. "Knp\\Menu\\": "src/"
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "MIT"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Christophe Coevoet",
  576. "email": "stof@notk.org"
  577. },
  578. {
  579. "name": "KnpLabs",
  580. "homepage": "http://knplabs.com"
  581. },
  582. {
  583. "name": "Symfony Community",
  584. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  585. }
  586. ],
  587. "description": "An object oriented menu library",
  588. "homepage": "http://knplabs.com",
  589. "keywords": [
  590. "menu",
  591. "tree"
  592. ],
  593. "time": "2012-12-27 13:04:16"
  594. },
  595. {
  596. "name": "kriswallsmith/assetic",
  597. "version": "v1.0.4",
  598. "source": {
  599. "type": "git",
  600. "url": "http://github.com/kriswallsmith/assetic.git",
  601. "reference": "v1.0.4"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://github.com/kriswallsmith/assetic/zipball/v1.0.4",
  606. "reference": "v1.0.4",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "php": ">=5.3.1"
  611. },
  612. "type": "library",
  613. "autoload": {
  614. "psr-0": {
  615. "Assetic": "src/"
  616. }
  617. },
  618. "notification-url": "https://packagist.org/downloads/",
  619. "license": [
  620. "MIT"
  621. ],
  622. "authors": [
  623. {
  624. "name": "Kris Wallsmith",
  625. "email": "kris.wallsmith@gmail.com",
  626. "homepage": "http://kriswallsmith.net/"
  627. }
  628. ],
  629. "description": "Asset Management for PHP",
  630. "homepage": "https://github.com/kriswallsmith/assetic",
  631. "keywords": [
  632. "assets",
  633. "compression",
  634. "minification"
  635. ],
  636. "time": "2012-08-28 05:18:28"
  637. },
  638. {
  639. "name": "leafo/lessphp",
  640. "version": "dev-master",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/leafo/lessphp.git",
  644. "reference": "280b8bcce2256b0793feaed8a74568edcbab42ae"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/leafo/lessphp/zipball/280b8bcce2256b0793feaed8a74568edcbab42ae",
  649. "reference": "280b8bcce2256b0793feaed8a74568edcbab42ae",
  650. "shasum": ""
  651. },
  652. "type": "library",
  653. "extra": {
  654. "branch-alias": {
  655. "dev-master": "0.3-dev"
  656. }
  657. },
  658. "autoload": {
  659. "classmap": [
  660. "lessc.inc.php"
  661. ]
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT",
  666. "GPL-3.0"
  667. ],
  668. "authors": [
  669. {
  670. "name": "Leaf Corcoran",
  671. "email": "leafot@gmail.com",
  672. "homepage": "http://leafo.net"
  673. }
  674. ],
  675. "description": "lessphp is a compiler for LESS written in PHP.",
  676. "homepage": "http://leafo.net/lessphp/",
  677. "time": "2013-04-07 17:30:42"
  678. },
  679. {
  680. "name": "mheap/silex-assetic",
  681. "version": "dev-master",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/mheap/Silex-Assetic.git",
  685. "reference": "2836391e9aadf60478a6ceff8d8d7f919946d0a9"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/mheap/Silex-Assetic/zipball/2836391e9aadf60478a6ceff8d8d7f919946d0a9",
  690. "reference": "2836391e9aadf60478a6ceff8d8d7f919946d0a9",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "kriswallsmith/assetic": ">=1.0,<2.0",
  695. "php": ">=5.3.0",
  696. "symfony/finder": ">=2.1,<2.3-dev"
  697. },
  698. "require-dev": {
  699. "phpunit/phpunit": ">=3.7.10.0,<3.8",
  700. "silex/silex": ">=1.0,<2.0",
  701. "twig/twig": ">=1.2,<2.0"
  702. },
  703. "suggest": {
  704. "twig/twig": "~1.2"
  705. },
  706. "type": "library",
  707. "extra": {
  708. "branch-alias": {
  709. "dev-master": "1.0.x-dev"
  710. }
  711. },
  712. "autoload": {
  713. "psr-0": {
  714. "SilexAssetic": "src"
  715. }
  716. },
  717. "notification-url": "https://packagist.org/downloads/",
  718. "license": [
  719. "MIT"
  720. ],
  721. "authors": [
  722. {
  723. "name": "Sven Eisenschmidt",
  724. "email": "sven.eisenschmidt@gmail.com",
  725. "homepage": "http://unsicherheitsagent.de/"
  726. },
  727. {
  728. "name": "Michael Heap",
  729. "email": "m@michaelheap.com",
  730. "homepage": "http://michaelheap.com/"
  731. }
  732. ],
  733. "description": "Assetic extension for Silex",
  734. "homepage": "https://github.com/mheap/Silex-Assetic",
  735. "keywords": [
  736. "assetic",
  737. "silex"
  738. ],
  739. "time": "2013-04-06 13:09:31"
  740. },
  741. {
  742. "name": "monolog/monolog",
  743. "version": "1.4.1",
  744. "source": {
  745. "type": "git",
  746. "url": "https://github.com/Seldaek/monolog.git",
  747. "reference": "1.4.1"
  748. },
  749. "dist": {
  750. "type": "zip",
  751. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1.4.1",
  752. "reference": "1.4.1",
  753. "shasum": ""
  754. },
  755. "require": {
  756. "php": ">=5.3.0",
  757. "psr/log": ">=1.0,<2.0"
  758. },
  759. "require-dev": {
  760. "doctrine/couchdb": "dev-master",
  761. "mlehner/gelf-php": "1.0.*",
  762. "raven/raven": "0.3.*"
  763. },
  764. "suggest": {
  765. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  766. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  767. "ext-mongo": "Allow sending log messages to a MongoDB server",
  768. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
  769. "raven/raven": "Allow sending log messages to a Sentry server"
  770. },
  771. "type": "library",
  772. "extra": {
  773. "branch-alias": {
  774. "dev-master": "1.4.x-dev"
  775. }
  776. },
  777. "autoload": {
  778. "psr-0": {
  779. "Monolog": "src/"
  780. }
  781. },
  782. "notification-url": "https://packagist.org/downloads/",
  783. "license": [
  784. "MIT"
  785. ],
  786. "authors": [
  787. {
  788. "name": "Jordi Boggiano",
  789. "email": "j.boggiano@seld.be",
  790. "homepage": "http://seld.be",
  791. "role": "Developer"
  792. }
  793. ],
  794. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  795. "homepage": "http://github.com/Seldaek/monolog",
  796. "keywords": [
  797. "log",
  798. "logging",
  799. "psr-3"
  800. ],
  801. "time": "2013-04-01 10:04:58"
  802. },
  803. {
  804. "name": "mpdf/mpdf",
  805. "version": "dev-master",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/finwe/mpdf.git",
  809. "reference": "v5.6.1"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/finwe/mpdf/zipball/v5.6.1",
  814. "reference": "v5.6.1",
  815. "shasum": ""
  816. },
  817. "require": {
  818. "php": ">=4.3.10"
  819. },
  820. "type": "library",
  821. "autoload": {
  822. "classmap": [
  823. "mpdf.php",
  824. "classes"
  825. ]
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "GPL-1.0+"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Ian Back"
  834. }
  835. ],
  836. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  837. "homepage": "http://www.mpdf1.com/mpdf/index.php",
  838. "keywords": [
  839. "pdf",
  840. "php",
  841. "utf-8"
  842. ],
  843. "time": "2013-01-26 08:22:27"
  844. },
  845. {
  846. "name": "natxet/CssMin",
  847. "version": "dev-master",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/natxet/CssMin.git",
  851. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/natxet/CssMin/zipball/9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  856. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": ">=5.0"
  861. },
  862. "type": "library",
  863. "autoload": {
  864. "psr-0": {
  865. "CssMin": "src/"
  866. }
  867. },
  868. "notification-url": "https://packagist.org/downloads/",
  869. "license": [
  870. "MIT"
  871. ],
  872. "authors": [
  873. {
  874. "name": "Joe Scylla",
  875. "email": "joe.scylla@gmail.com",
  876. "homepage": "https://profiles.google.com/joe.scylla"
  877. }
  878. ],
  879. "description": "Minifying CSS",
  880. "homepage": "http://code.google.com/p/cssmin/",
  881. "keywords": [
  882. "css",
  883. "minify"
  884. ],
  885. "time": "2013-03-15 18:47:32"
  886. },
  887. {
  888. "name": "pagerfanta/pagerfanta",
  889. "version": "dev-master",
  890. "source": {
  891. "type": "git",
  892. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  893. "reference": "4fded9adde16a4133b4db9f14815efadbbd268d1"
  894. },
  895. "dist": {
  896. "type": "zip",
  897. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/4fded9adde16a4133b4db9f14815efadbbd268d1",
  898. "reference": "4fded9adde16a4133b4db9f14815efadbbd268d1",
  899. "shasum": ""
  900. },
  901. "require": {
  902. "php": ">=5.3.0"
  903. },
  904. "require-dev": {
  905. "doctrine/mongodb-odm": "*",
  906. "doctrine/orm": "2.*",
  907. "mandango/mandango": "*",
  908. "propel/propel1": ">=1.6,<2.0",
  909. "solarium/solarium": "dev-develop"
  910. },
  911. "suggest": {
  912. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  913. "doctrine/orm": "To use the DoctrineORMAdapter.",
  914. "mandango/mandango": "To use the MandangoAdapter.",
  915. "propel/propel1": "To use the PropelAdapter",
  916. "solarium/solarium": "To use the SolariumAdapter."
  917. },
  918. "type": "library",
  919. "extra": {
  920. "branch-alias": {
  921. "dev-master": "1.0.x-dev"
  922. }
  923. },
  924. "autoload": {
  925. "psr-0": {
  926. "Pagerfanta\\": "src/"
  927. }
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "MIT"
  932. ],
  933. "authors": [
  934. {
  935. "name": "Pablo Díez",
  936. "email": "pablodip@gmail.com",
  937. "homepage": "http://github.com/pablodip"
  938. }
  939. ],
  940. "description": "Pagination for PHP 5.3",
  941. "keywords": [
  942. "page",
  943. "paging"
  944. ],
  945. "time": "2013-04-04 17:07:12"
  946. },
  947. {
  948. "name": "pimple/pimple",
  949. "version": "v1.0.2",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/fabpot/Pimple.git",
  953. "reference": "v1.0.2"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/fabpot/Pimple/zipball/v1.0.2",
  958. "reference": "v1.0.2",
  959. "shasum": ""
  960. },
  961. "require": {
  962. "php": ">=5.3.0"
  963. },
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.0.x-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-0": {
  972. "Pimple": "lib/"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Fabien Potencier",
  982. "email": "fabien@symfony.com"
  983. }
  984. ],
  985. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  986. "homepage": "http://pimple.sensiolabs.org",
  987. "keywords": [
  988. "container",
  989. "dependency injection"
  990. ],
  991. "time": "2013-03-08 08:21:40"
  992. },
  993. {
  994. "name": "psr/log",
  995. "version": "1.0.0",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/php-fig/log",
  999. "reference": "1.0.0"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://github.com/php-fig/log/archive/1.0.0.zip",
  1004. "reference": "1.0.0",
  1005. "shasum": ""
  1006. },
  1007. "type": "library",
  1008. "autoload": {
  1009. "psr-0": {
  1010. "Psr\\Log\\": ""
  1011. }
  1012. },
  1013. "notification-url": "https://packagist.org/downloads/",
  1014. "license": [
  1015. "MIT"
  1016. ],
  1017. "authors": [
  1018. {
  1019. "name": "PHP-FIG",
  1020. "homepage": "http://www.php-fig.org/"
  1021. }
  1022. ],
  1023. "description": "Common interface for logging libraries",
  1024. "keywords": [
  1025. "log",
  1026. "psr",
  1027. "psr-3"
  1028. ],
  1029. "time": "2012-12-21 11:40:51"
  1030. },
  1031. {
  1032. "name": "realityking/pchart",
  1033. "version": "dev-master",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/realityking/pChart.git",
  1037. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/realityking/pChart/zipball/46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1042. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1043. "shasum": ""
  1044. },
  1045. "type": "library",
  1046. "autoload": {
  1047. "classmap": [
  1048. "src/"
  1049. ]
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "GPL-1.0+"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Rouven Weßling",
  1058. "email": "me@rouvenwessling.de",
  1059. "homepage": "http://www.rouvenwessling.de"
  1060. }
  1061. ],
  1062. "description": "A fork of the popular pChart library.",
  1063. "time": "2013-03-18 08:23:38"
  1064. },
  1065. {
  1066. "name": "silex/silex",
  1067. "version": "dev-master",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/fabpot/Silex.git",
  1071. "reference": "31139babedb2a4f504737d1d8c5255fca102dae2"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/fabpot/Silex/zipball/31139babedb2a4f504737d1d8c5255fca102dae2",
  1076. "reference": "31139babedb2a4f504737d1d8c5255fca102dae2",
  1077. "shasum": ""
  1078. },
  1079. "require": {
  1080. "php": ">=5.3.3",
  1081. "pimple/pimple": "1.*",
  1082. "symfony/event-dispatcher": ">=2.1,<2.3-dev",
  1083. "symfony/http-foundation": ">=2.1,<2.3-dev",
  1084. "symfony/http-kernel": ">=2.1,<2.3-dev",
  1085. "symfony/routing": ">=2.1,<2.3-dev"
  1086. },
  1087. "require-dev": {
  1088. "doctrine/dbal": ">=2.2.0,<2.4.0-dev",
  1089. "swiftmailer/swiftmailer": "4.2.*",
  1090. "symfony/browser-kit": ">=2.1,<2.3-dev",
  1091. "symfony/config": ">=2.1,<2.3-dev",
  1092. "symfony/css-selector": ">=2.1,<2.3-dev",
  1093. "symfony/dom-crawler": ">=2.1,<2.3-dev",
  1094. "symfony/finder": ">=2.1,<2.3-dev",
  1095. "symfony/form": ">=2.1.4,<2.3-dev",
  1096. "symfony/locale": ">=2.1,<2.3-dev",
  1097. "symfony/monolog-bridge": ">=2.1,<2.3-dev",
  1098. "symfony/options-resolver": ">=2.1,<2.3-dev",
  1099. "symfony/process": ">=2.1,<2.3-dev",
  1100. "symfony/security": ">=2.1,<2.3-dev",
  1101. "symfony/serializer": ">=2.1,<2.3-dev",
  1102. "symfony/translation": ">=2.1,<2.3-dev",
  1103. "symfony/twig-bridge": ">=2.1,<2.3-dev",
  1104. "symfony/validator": ">=2.1,<2.3-dev",
  1105. "twig/twig": ">=1.8.0,<2.0-dev"
  1106. },
  1107. "suggest": {
  1108. "symfony/browser-kit": ">=2.1,<2.3-dev",
  1109. "symfony/css-selector": ">=2.1,<2.3-dev",
  1110. "symfony/dom-crawler": ">=2.1,<2.3-dev",
  1111. "symfony/form": "To make use of the FormServiceProvider, >= 2.1.4 is required"
  1112. },
  1113. "type": "library",
  1114. "extra": {
  1115. "branch-alias": {
  1116. "dev-master": "1.0.x-dev"
  1117. }
  1118. },
  1119. "autoload": {
  1120. "psr-0": {
  1121. "Silex": "src/"
  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": "Igor Wiedler",
  1135. "email": "igor@wiedler.ch",
  1136. "homepage": "http://wiedler.ch/igor/"
  1137. }
  1138. ],
  1139. "description": "The PHP micro-framework based on the Symfony2 Components",
  1140. "homepage": "http://silex.sensiolabs.org",
  1141. "keywords": [
  1142. "microframework"
  1143. ],
  1144. "time": "2013-04-03 19:59:11"
  1145. },
  1146. {
  1147. "name": "swiftmailer/swiftmailer",
  1148. "version": "v4.1.8",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1152. "reference": "v4.1.8"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://github.com/swiftmailer/swiftmailer/zipball/v4.1.8",
  1157. "reference": "v4.1.8",
  1158. "shasum": ""
  1159. },
  1160. "require": {
  1161. "php": ">=5.2.4"
  1162. },
  1163. "type": "library",
  1164. "extra": {
  1165. "branch-alias": {
  1166. "dev-master": "4.1-dev"
  1167. }
  1168. },
  1169. "autoload": {
  1170. "files": [
  1171. "lib/swift_required.php"
  1172. ]
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "LGPL"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Fabien Potencier",
  1181. "email": "fabien@symfony.com"
  1182. },
  1183. {
  1184. "name": "Chris Corbyn"
  1185. }
  1186. ],
  1187. "description": "Swiftmailer, free feature-rich PHP mailer",
  1188. "homepage": "http://swiftmailer.org",
  1189. "keywords": [
  1190. "mail",
  1191. "mailer"
  1192. ],
  1193. "time": "2012-06-17 13:55:34"
  1194. },
  1195. {
  1196. "name": "symfony/config",
  1197. "version": "dev-master",
  1198. "target-dir": "Symfony/Component/Config",
  1199. "source": {
  1200. "type": "git",
  1201. "url": "https://github.com/symfony/Config.git",
  1202. "reference": "6a9046f65ed72b9ed41dc063bba1d59978114a65"
  1203. },
  1204. "dist": {
  1205. "type": "zip",
  1206. "url": "https://api.github.com/repos/symfony/Config/zipball/6a9046f65ed72b9ed41dc063bba1d59978114a65",
  1207. "reference": "6a9046f65ed72b9ed41dc063bba1d59978114a65",
  1208. "shasum": ""
  1209. },
  1210. "require": {
  1211. "php": ">=5.3.3"
  1212. },
  1213. "type": "library",
  1214. "extra": {
  1215. "branch-alias": {
  1216. "dev-master": "2.3-dev"
  1217. }
  1218. },
  1219. "autoload": {
  1220. "psr-0": {
  1221. "Symfony\\Component\\Config\\": ""
  1222. }
  1223. },
  1224. "notification-url": "https://packagist.org/downloads/",
  1225. "license": [
  1226. "MIT"
  1227. ],
  1228. "authors": [
  1229. {
  1230. "name": "Fabien Potencier",
  1231. "email": "fabien@symfony.com"
  1232. },
  1233. {
  1234. "name": "Symfony Community",
  1235. "homepage": "http://symfony.com/contributors"
  1236. }
  1237. ],
  1238. "description": "Symfony Config Component",
  1239. "homepage": "http://symfony.com",
  1240. "time": "2013-04-02 09:39:57"
  1241. },
  1242. {
  1243. "name": "symfony/console",
  1244. "version": "dev-master",
  1245. "target-dir": "Symfony/Component/Console",
  1246. "source": {
  1247. "type": "git",
  1248. "url": "https://github.com/symfony/Console.git",
  1249. "reference": "2d4f1e5bb1144f66edb34becf3b4b29193c628f7"
  1250. },
  1251. "dist": {
  1252. "type": "zip",
  1253. "url": "https://api.github.com/repos/symfony/Console/zipball/2d4f1e5bb1144f66edb34becf3b4b29193c628f7",
  1254. "reference": "2d4f1e5bb1144f66edb34becf3b4b29193c628f7",
  1255. "shasum": ""
  1256. },
  1257. "require": {
  1258. "php": ">=5.3.3"
  1259. },
  1260. "require-dev": {
  1261. "symfony/event-dispatcher": ">=2.1,<3.0"
  1262. },
  1263. "type": "library",
  1264. "extra": {
  1265. "branch-alias": {
  1266. "dev-master": "2.3-dev"
  1267. }
  1268. },
  1269. "autoload": {
  1270. "psr-0": {
  1271. "Symfony\\Component\\Console\\": ""
  1272. }
  1273. },
  1274. "notification-url": "https://packagist.org/downloads/",
  1275. "license": [
  1276. "MIT"
  1277. ],
  1278. "authors": [
  1279. {
  1280. "name": "Fabien Potencier",
  1281. "email": "fabien@symfony.com"
  1282. },
  1283. {
  1284. "name": "Symfony Community",
  1285. "homepage": "http://symfony.com/contributors"
  1286. }
  1287. ],
  1288. "description": "Symfony Console Component",
  1289. "homepage": "http://symfony.com",
  1290. "time": "2013-04-07 14:24:42"
  1291. },
  1292. {
  1293. "name": "symfony/dependency-injection",
  1294. "version": "dev-master",
  1295. "target-dir": "Symfony/Component/DependencyInjection",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/symfony/DependencyInjection.git",
  1299. "reference": "bdbd94e1fbca934ed4c6d912e57c99a17bbe753b"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/bdbd94e1fbca934ed4c6d912e57c99a17bbe753b",
  1304. "reference": "bdbd94e1fbca934ed4c6d912e57c99a17bbe753b",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "php": ">=5.3.3"
  1309. },
  1310. "require-dev": {
  1311. "symfony/config": ">=2.2,<2.4-dev",
  1312. "symfony/yaml": ">=2.0,<3.0"
  1313. },
  1314. "suggest": {
  1315. "symfony/config": "2.2.*",
  1316. "symfony/yaml": "2.2.*"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-master": "2.3-dev"
  1322. }
  1323. },
  1324. "autoload": {
  1325. "psr-0": {
  1326. "Symfony\\Component\\DependencyInjection\\": ""
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Fabien Potencier",
  1336. "email": "fabien@symfony.com"
  1337. },
  1338. {
  1339. "name": "Symfony Community",
  1340. "homepage": "http://symfony.com/contributors"
  1341. }
  1342. ],
  1343. "description": "Symfony DependencyInjection Component",
  1344. "homepage": "http://symfony.com",
  1345. "time": "2013-03-23 13:07:03"
  1346. },
  1347. {
  1348. "name": "symfony/doctrine-bridge",
  1349. "version": "dev-master",
  1350. "target-dir": "Symfony/Bridge/Doctrine",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/symfony/DoctrineBridge.git",
  1354. "reference": "464e871e337962c526de95d758f91df049e5758c"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/symfony/DoctrineBridge/zipball/464e871e337962c526de95d758f91df049e5758c",
  1359. "reference": "464e871e337962c526de95d758f91df049e5758c",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "doctrine/common": ">=2.2,<3.0",
  1364. "php": ">=5.3.3"
  1365. },
  1366. "require-dev": {
  1367. "doctrine/data-fixtures": "1.0.*",
  1368. "doctrine/dbal": ">=2.2,<3.0",
  1369. "doctrine/orm": ">=2.2,<3.0,>=2.2.3",
  1370. "symfony/dependency-injection": ">=2.0,<3.0",
  1371. "symfony/form": ">=2.2,<2.4-dev",
  1372. "symfony/http-kernel": ">=2.2,<2.4-dev",
  1373. "symfony/security": ">=2.2,<2.4-dev",
  1374. "symfony/stopwatch": ">=2.2,<2.4-dev",
  1375. "symfony/validator": ">=2.2,<2.4-dev"
  1376. },
  1377. "suggest": {
  1378. "doctrine/data-fixtures": "1.0.*",
  1379. "doctrine/dbal": "~2.2",
  1380. "doctrine/orm": "~2.2,>=2.2.3",
  1381. "symfony/form": "2.2.*",
  1382. "symfony/validator": "2.2.*"
  1383. },
  1384. "type": "symfony-bridge",
  1385. "extra": {
  1386. "branch-alias": {
  1387. "dev-master": "2.3-dev"
  1388. }
  1389. },
  1390. "autoload": {
  1391. "psr-0": {
  1392. "Symfony\\Bridge\\Doctrine\\": ""
  1393. }
  1394. },
  1395. "notification-url": "https://packagist.org/downloads/",
  1396. "license": [
  1397. "MIT"
  1398. ],
  1399. "authors": [
  1400. {
  1401. "name": "Fabien Potencier",
  1402. "email": "fabien@symfony.com"
  1403. },
  1404. {
  1405. "name": "Symfony Community",
  1406. "homepage": "http://symfony.com/contributors"
  1407. }
  1408. ],
  1409. "description": "Symfony Doctrine Bridge",
  1410. "homepage": "http://symfony.com",
  1411. "time": "2013-04-02 09:46:23"
  1412. },
  1413. {
  1414. "name": "symfony/event-dispatcher",
  1415. "version": "v2.2.1",
  1416. "target-dir": "Symfony/Component/EventDispatcher",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/symfony/EventDispatcher.git",
  1420. "reference": "v2.2.1"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/v2.2.1",
  1425. "reference": "v2.2.1",
  1426. "shasum": ""
  1427. },
  1428. "require": {
  1429. "php": ">=5.3.3"
  1430. },
  1431. "require-dev": {
  1432. "symfony/dependency-injection": ">=2.0,<3.0"
  1433. },
  1434. "suggest": {
  1435. "symfony/dependency-injection": "2.2.*",
  1436. "symfony/http-kernel": "2.2.*"
  1437. },
  1438. "type": "library",
  1439. "extra": {
  1440. "branch-alias": {
  1441. "dev-master": "2.2-dev"
  1442. }
  1443. },
  1444. "autoload": {
  1445. "psr-0": {
  1446. "Symfony\\Component\\EventDispatcher\\": ""
  1447. }
  1448. },
  1449. "notification-url": "https://packagist.org/downloads/",
  1450. "license": [
  1451. "MIT"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Fabien Potencier",
  1456. "email": "fabien@symfony.com"
  1457. },
  1458. {
  1459. "name": "Symfony Community",
  1460. "homepage": "http://symfony.com/contributors"
  1461. }
  1462. ],
  1463. "description": "Symfony EventDispatcher Component",
  1464. "homepage": "http://symfony.com",
  1465. "time": "2013-02-11 11:26:43"
  1466. },
  1467. {
  1468. "name": "symfony/finder",
  1469. "version": "v2.2.1",
  1470. "target-dir": "Symfony/Component/Finder",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/symfony/Finder.git",
  1474. "reference": "v2.2.1"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/symfony/Finder/zipball/v2.2.1",
  1479. "reference": "v2.2.1",
  1480. "shasum": ""
  1481. },
  1482. "require": {
  1483. "php": ">=5.3.3"
  1484. },
  1485. "type": "library",
  1486. "extra": {
  1487. "branch-alias": {
  1488. "dev-master": "2.2-dev"
  1489. }
  1490. },
  1491. "autoload": {
  1492. "psr-0": {
  1493. "Symfony\\Component\\Finder\\": ""
  1494. }
  1495. },
  1496. "notification-url": "https://packagist.org/downloads/",
  1497. "license": [
  1498. "MIT"
  1499. ],
  1500. "authors": [
  1501. {
  1502. "name": "Fabien Potencier",
  1503. "email": "fabien@symfony.com"
  1504. },
  1505. {
  1506. "name": "Symfony Community",
  1507. "homepage": "http://symfony.com/contributors"
  1508. }
  1509. ],
  1510. "description": "Symfony Finder Component",
  1511. "homepage": "http://symfony.com",
  1512. "time": "2013-04-01 07:51:50"
  1513. },
  1514. {
  1515. "name": "symfony/form",
  1516. "version": "dev-master",
  1517. "target-dir": "Symfony/Component/Form",
  1518. "source": {
  1519. "type": "git",
  1520. "url": "https://github.com/symfony/Form.git",
  1521. "reference": "094c9264480dceff17bba9c9c92b520cde55a15b"
  1522. },
  1523. "dist": {
  1524. "type": "zip",
  1525. "url": "https://api.github.com/repos/symfony/Form/zipball/094c9264480dceff17bba9c9c92b520cde55a15b",
  1526. "reference": "094c9264480dceff17bba9c9c92b520cde55a15b",
  1527. "shasum": ""
  1528. },
  1529. "require": {
  1530. "php": ">=5.3.3",
  1531. "symfony/event-dispatcher": ">=2.1,<3.0",
  1532. "symfony/locale": ">=2.0,<3.0",
  1533. "symfony/options-resolver": ">=2.1,<2.4-dev",
  1534. "symfony/property-access": ">=2.2,<2.4-dev"
  1535. },
  1536. "require-dev": {
  1537. "symfony/http-foundation": ">=2.1,<2.4-dev",
  1538. "symfony/validator": ">=2.2,<2.4-dev"
  1539. },
  1540. "suggest": {
  1541. "symfony/http-foundation": "2.2.*",
  1542. "symfony/validator": "2.2.*"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "2.3-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-0": {
  1552. "Symfony\\Component\\Form\\": ""
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Fabien Potencier",
  1562. "email": "fabien@symfony.com"
  1563. },
  1564. {
  1565. "name": "Symfony Community",
  1566. "homepage": "http://symfony.com/contributors"
  1567. }
  1568. ],
  1569. "description": "Symfony Form Component",
  1570. "homepage": "http://symfony.com",
  1571. "time": "2013-04-01 08:07:53"
  1572. },
  1573. {
  1574. "name": "symfony/http-foundation",
  1575. "version": "v2.2.1",
  1576. "target-dir": "Symfony/Component/HttpFoundation",
  1577. "source": {
  1578. "type": "git",
  1579. "url": "https://github.com/symfony/HttpFoundation.git",
  1580. "reference": "v2.2.1"
  1581. },
  1582. "dist": {
  1583. "type": "zip",
  1584. "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/v2.2.1",
  1585. "reference": "v2.2.1",
  1586. "shasum": ""
  1587. },
  1588. "require": {
  1589. "php": ">=5.3.3"
  1590. },
  1591. "type": "library",
  1592. "extra": {
  1593. "branch-alias": {
  1594. "dev-master": "2.2-dev"
  1595. }
  1596. },
  1597. "autoload": {
  1598. "psr-0": {
  1599. "Symfony\\Component\\HttpFoundation\\": ""
  1600. },
  1601. "classmap": [
  1602. "Symfony/Component/HttpFoundation/Resources/stubs"
  1603. ]
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Fabien Potencier",
  1612. "email": "fabien@symfony.com"
  1613. },
  1614. {
  1615. "name": "Symfony Community",
  1616. "homepage": "http://symfony.com/contributors"
  1617. }
  1618. ],
  1619. "description": "Symfony HttpFoundation Component",
  1620. "homepage": "http://symfony.com",
  1621. "time": "2013-04-06 10:15:43"
  1622. },
  1623. {
  1624. "name": "symfony/http-kernel",
  1625. "version": "v2.2.1",
  1626. "target-dir": "Symfony/Component/HttpKernel",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/symfony/HttpKernel.git",
  1630. "reference": "v2.2.1"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/v2.2.1",
  1635. "reference": "v2.2.1",
  1636. "shasum": ""
  1637. },
  1638. "require": {
  1639. "php": ">=5.3.3",
  1640. "psr/log": ">=1.0,<2.0",
  1641. "symfony/event-dispatcher": ">=2.1,<3.0",
  1642. "symfony/http-foundation": ">=2.2,<2.3-dev"
  1643. },
  1644. "require-dev": {
  1645. "symfony/browser-kit": "2.2.*",
  1646. "symfony/class-loader": ">=2.1,<3.0",
  1647. "symfony/config": ">=2.0,<3.0",
  1648. "symfony/console": "2.2.*",
  1649. "symfony/dependency-injection": ">=2.0,<3.0",
  1650. "symfony/finder": ">=2.0,<3.0",
  1651. "symfony/process": ">=2.0,<3.0",
  1652. "symfony/routing": ">=2.2,<2.3-dev",
  1653. "symfony/stopwatch": ">=2.2,<2.3-dev"
  1654. },
  1655. "suggest": {
  1656. "symfony/browser-kit": "2.2.*",
  1657. "symfony/class-loader": "2.2.*",
  1658. "symfony/config": "2.2.*",
  1659. "symfony/console": "2.2.*",
  1660. "symfony/dependency-injection": "2.2.*",
  1661. "symfony/finder": "2.2.*"
  1662. },
  1663. "type": "library",
  1664. "extra": {
  1665. "branch-alias": {
  1666. "dev-master": "2.2-dev"
  1667. }
  1668. },
  1669. "autoload": {
  1670. "psr-0": {
  1671. "Symfony\\Component\\HttpKernel\\": ""
  1672. }
  1673. },
  1674. "notification-url": "https://packagist.org/downloads/",
  1675. "license": [
  1676. "MIT"
  1677. ],
  1678. "authors": [
  1679. {
  1680. "name": "Fabien Potencier",
  1681. "email": "fabien@symfony.com"
  1682. },
  1683. {
  1684. "name": "Symfony Community",
  1685. "homepage": "http://symfony.com/contributors"
  1686. }
  1687. ],
  1688. "description": "Symfony HttpKernel Component",
  1689. "homepage": "http://symfony.com",
  1690. "time": "2013-04-06 10:16:33"
  1691. },
  1692. {
  1693. "name": "symfony/locale",
  1694. "version": "v2.2.1",
  1695. "target-dir": "Symfony/Component/Locale",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/symfony/Locale.git",
  1699. "reference": "v2.2.1"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/symfony/Locale/zipball/v2.2.1",
  1704. "reference": "v2.2.1",
  1705. "shasum": ""
  1706. },
  1707. "require": {
  1708. "php": ">=5.3.3"
  1709. },
  1710. "suggest": {
  1711. "ext-intl": "to use other locales than built-in `en`"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "2.2-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-0": {
  1721. "Symfony\\Component\\Locale\\": ""
  1722. },
  1723. "classmap": [
  1724. "Symfony/Component/Locale/Resources/stubs"
  1725. ]
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "MIT"
  1730. ],
  1731. "authors": [
  1732. {
  1733. "name": "Fabien Potencier",
  1734. "email": "fabien@symfony.com"
  1735. },
  1736. {
  1737. "name": "Symfony Community",
  1738. "homepage": "http://symfony.com/contributors"
  1739. }
  1740. ],
  1741. "description": "Symfony Locale Component",
  1742. "homepage": "http://symfony.com",
  1743. "time": "2013-02-01 09:33:53"
  1744. },
  1745. {
  1746. "name": "symfony/options-resolver",
  1747. "version": "v2.2.1",
  1748. "target-dir": "Symfony/Component/OptionsResolver",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/symfony/OptionsResolver.git",
  1752. "reference": "v2.2.1"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/v2.2.1",
  1757. "reference": "v2.2.1",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "php": ">=5.3.3"
  1762. },
  1763. "type": "library",
  1764. "extra": {
  1765. "branch-alias": {
  1766. "dev-master": "2.2-dev"
  1767. }
  1768. },
  1769. "autoload": {
  1770. "psr-0": {
  1771. "Symfony\\Component\\OptionsResolver\\": ""
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "MIT"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Fabien Potencier",
  1781. "email": "fabien@symfony.com"
  1782. },
  1783. {
  1784. "name": "Symfony Community",
  1785. "homepage": "http://symfony.com/contributors"
  1786. }
  1787. ],
  1788. "description": "Symfony OptionsResolver Component",
  1789. "homepage": "http://symfony.com",
  1790. "keywords": [
  1791. "config",
  1792. "configuration",
  1793. "options"
  1794. ],
  1795. "time": "2013-01-17 15:25:59"
  1796. },
  1797. {
  1798. "name": "symfony/property-access",
  1799. "version": "dev-master",
  1800. "target-dir": "Symfony/Component/PropertyAccess",
  1801. "source": {
  1802. "type": "git",
  1803. "url": "https://github.com/symfony/PropertyAccess.git",
  1804. "reference": "072ae5c084eedf7092182f2aff3ab713c63a4672"
  1805. },
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/072ae5c084eedf7092182f2aff3ab713c63a4672",
  1809. "reference": "072ae5c084eedf7092182f2aff3ab713c63a4672",
  1810. "shasum": ""
  1811. },
  1812. "require": {
  1813. "php": ">=5.3.3"
  1814. },
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "2.3-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-0": {
  1823. "Symfony\\Component\\PropertyAccess\\": ""
  1824. }
  1825. },
  1826. "notification-url": "https://packagist.org/downloads/",
  1827. "license": [
  1828. "MIT"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "Fabien Potencier",
  1833. "email": "fabien@symfony.com"
  1834. },
  1835. {
  1836. "name": "Symfony Community",
  1837. "homepage": "http://symfony.com/contributors"
  1838. }
  1839. ],
  1840. "description": "Symfony PropertyAccess Component",
  1841. "homepage": "http://symfony.com",
  1842. "keywords": [
  1843. "access",
  1844. "array",
  1845. "extraction",
  1846. "index",
  1847. "injection",
  1848. "object",
  1849. "property",
  1850. "property path",
  1851. "reflection"
  1852. ],
  1853. "time": "2013-04-01 08:07:30"
  1854. },
  1855. {
  1856. "name": "symfony/routing",
  1857. "version": "v2.2.1",
  1858. "target-dir": "Symfony/Component/Routing",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/symfony/Routing.git",
  1862. "reference": "v2.2.1"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/symfony/Routing/zipball/v2.2.1",
  1867. "reference": "v2.2.1",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "php": ">=5.3.3"
  1872. },
  1873. "require-dev": {
  1874. "doctrine/common": ">=2.2,<3.0",
  1875. "psr/log": ">=1.0,<2.0",
  1876. "symfony/config": ">=2.2,<2.3-dev",
  1877. "symfony/yaml": ">=2.0,<3.0"
  1878. },
  1879. "suggest": {
  1880. "doctrine/common": "~2.2",
  1881. "symfony/config": "2.2.*",
  1882. "symfony/yaml": "2.2.*"
  1883. },
  1884. "type": "library",
  1885. "extra": {
  1886. "branch-alias": {
  1887. "dev-master": "2.2-dev"
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-0": {
  1892. "Symfony\\Component\\Routing\\": ""
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Fabien Potencier",
  1902. "email": "fabien@symfony.com"
  1903. },
  1904. {
  1905. "name": "Symfony Community",
  1906. "homepage": "http://symfony.com/contributors"
  1907. }
  1908. ],
  1909. "description": "Symfony Routing Component",
  1910. "homepage": "http://symfony.com",
  1911. "time": "2013-03-23 12:03:22"
  1912. },
  1913. {
  1914. "name": "symfony/security",
  1915. "version": "dev-master",
  1916. "target-dir": "Symfony/Component/Security",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/symfony/Security.git",
  1920. "reference": "cfa23578e55c43c20a8d823bf9a01ed08bcde1d5"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/symfony/Security/zipball/cfa23578e55c43c20a8d823bf9a01ed08bcde1d5",
  1925. "reference": "cfa23578e55c43c20a8d823bf9a01ed08bcde1d5",
  1926. "shasum": ""
  1927. },
  1928. "require": {
  1929. "php": ">=5.3.3",
  1930. "symfony/event-dispatcher": ">=2.1,<3.0",
  1931. "symfony/http-foundation": ">=2.1,<2.4-dev",
  1932. "symfony/http-kernel": ">=2.1,<=2.3-dev"
  1933. },
  1934. "require-dev": {
  1935. "doctrine/common": ">=2.2,<3.0",
  1936. "doctrine/dbal": ">=2.2,<3.0",
  1937. "psr/log": ">=1.0,<2.0",
  1938. "symfony/form": ">=2.0,<3.0",
  1939. "symfony/routing": ">=2.2,<2.4-dev",
  1940. "symfony/validator": ">=2.2,<2.4-dev"
  1941. },
  1942. "suggest": {
  1943. "doctrine/dbal": "to use the built-in ACL implementation",
  1944. "symfony/class-loader": "2.2.*",
  1945. "symfony/finder": "2.2.*",
  1946. "symfony/form": "2.2.*",
  1947. "symfony/routing": "2.2.*",
  1948. "symfony/validator": "2.2.*"
  1949. },
  1950. "type": "library",
  1951. "extra": {
  1952. "branch-alias": {
  1953. "dev-master": "2.3-dev"
  1954. }
  1955. },
  1956. "autoload": {
  1957. "psr-0": {
  1958. "Symfony\\Component\\Security\\": ""
  1959. }
  1960. },
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "MIT"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Fabien Potencier",
  1968. "email": "fabien@symfony.com"
  1969. },
  1970. {
  1971. "name": "Symfony Community",
  1972. "homepage": "http://symfony.com/contributors"
  1973. }
  1974. ],
  1975. "description": "Symfony Security Component",
  1976. "homepage": "http://symfony.com",
  1977. "time": "2013-04-02 09:39:57"
  1978. },
  1979. {
  1980. "name": "symfony/translation",
  1981. "version": "dev-master",
  1982. "target-dir": "Symfony/Component/Translation",
  1983. "source": {
  1984. "type": "git",
  1985. "url": "https://github.com/symfony/Translation.git",
  1986. "reference": "b518a3100b09b5de4b4750e9415c00ad1bd77b1e"
  1987. },
  1988. "dist": {
  1989. "type": "zip",
  1990. "url": "https://api.github.com/repos/symfony/Translation/zipball/b518a3100b09b5de4b4750e9415c00ad1bd77b1e",
  1991. "reference": "b518a3100b09b5de4b4750e9415c00ad1bd77b1e",
  1992. "shasum": ""
  1993. },
  1994. "require": {
  1995. "php": ">=5.3.3"
  1996. },
  1997. "require-dev": {
  1998. "symfony/config": ">=2.0,<2.4-dev",
  1999. "symfony/yaml": ">=2.2,<3.0"
  2000. },
  2001. "suggest": {
  2002. "symfony/config": "2.2.*",
  2003. "symfony/yaml": "2.2.*"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "2.3-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "psr-0": {
  2013. "Symfony\\Component\\Translation\\": ""
  2014. }
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Fabien Potencier",
  2023. "email": "fabien@symfony.com"
  2024. },
  2025. {
  2026. "name": "Symfony Community",
  2027. "homepage": "http://symfony.com/contributors"
  2028. }
  2029. ],
  2030. "description": "Symfony Translation Component",
  2031. "homepage": "http://symfony.com",
  2032. "time": "2013-04-02 09:39:57"
  2033. },
  2034. {
  2035. "name": "symfony/twig-bridge",
  2036. "version": "2.2.x-dev",
  2037. "target-dir": "Symfony/Bridge/Twig",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://github.com/symfony/TwigBridge.git",
  2041. "reference": "3cd45a283efbfbf7320076c6d15e8c9ad36e77d3"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/3cd45a283efbfbf7320076c6d15e8c9ad36e77d3",
  2046. "reference": "3cd45a283efbfbf7320076c6d15e8c9ad36e77d3",
  2047. "shasum": ""
  2048. },
  2049. "require": {
  2050. "php": ">=5.3.3",
  2051. "twig/twig": ">=1.11.0,<2.0"
  2052. },
  2053. "require-dev": {
  2054. "symfony/form": "2.2.*",
  2055. "symfony/http-kernel": ">=2.2,<2.3-dev",
  2056. "symfony/routing": ">=2.2,<2.3-dev",
  2057. "symfony/security": ">=2.0,<2.3-dev",
  2058. "symfony/templating": ">=2.1,<3.0",
  2059. "symfony/translation": ">=2.0,<2.3-dev",
  2060. "symfony/yaml": ">=2.0,<3.0"
  2061. },
  2062. "suggest": {
  2063. "symfony/form": "2.2.*",
  2064. "symfony/http-kernel": "2.2.*",
  2065. "symfony/routing": "2.2.*",
  2066. "symfony/security": "2.2.*",
  2067. "symfony/templating": "2.2.*",
  2068. "symfony/translation": "2.2.*",
  2069. "symfony/yaml": "2.2.*"
  2070. },
  2071. "type": "symfony-bridge",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-master": "2.2-dev"
  2075. }
  2076. },
  2077. "autoload": {
  2078. "psr-0": {
  2079. "Symfony\\Bridge\\Twig\\": ""
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Fabien Potencier",
  2089. "email": "fabien@symfony.com"
  2090. },
  2091. {
  2092. "name": "Symfony Community",
  2093. "homepage": "http://symfony.com/contributors"
  2094. }
  2095. ],
  2096. "description": "Symfony Twig Bridge",
  2097. "homepage": "http://symfony.com",
  2098. "time": "2013-04-05 21:29:42"
  2099. },
  2100. {
  2101. "name": "symfony/validator",
  2102. "version": "dev-master",
  2103. "target-dir": "Symfony/Component/Validator",
  2104. "source": {
  2105. "type": "git",
  2106. "url": "https://github.com/symfony/Validator.git",
  2107. "reference": "b9e2fa05cf314a8c64db801adbfce611028e63b9"
  2108. },
  2109. "dist": {
  2110. "type": "zip",
  2111. "url": "https://api.github.com/repos/symfony/Validator/zipball/b9e2fa05cf314a8c64db801adbfce611028e63b9",
  2112. "reference": "b9e2fa05cf314a8c64db801adbfce611028e63b9",
  2113. "shasum": ""
  2114. },
  2115. "require": {
  2116. "php": ">=5.3.3",
  2117. "symfony/translation": ">=2.0,<3.0"
  2118. },
  2119. "require-dev": {
  2120. "symfony/config": ">=2.2,<2.4-dev",
  2121. "symfony/http-foundation": ">=2.1,<3.0",
  2122. "symfony/locale": ">=2.0,<3.0",
  2123. "symfony/yaml": ">=2.0,<3.0"
  2124. },
  2125. "suggest": {
  2126. "doctrine/common": "~2.2",
  2127. "symfony/config": "2.2.*",
  2128. "symfony/http-foundation": "2.2.*",
  2129. "symfony/locale": "2.2.*",
  2130. "symfony/yaml": "2.2.*"
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "2.3-dev"
  2136. }
  2137. },
  2138. "autoload": {
  2139. "psr-0": {
  2140. "Symfony\\Component\\Validator\\": ""
  2141. }
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "MIT"
  2146. ],
  2147. "authors": [
  2148. {
  2149. "name": "Fabien Potencier",
  2150. "email": "fabien@symfony.com"
  2151. },
  2152. {
  2153. "name": "Symfony Community",
  2154. "homepage": "http://symfony.com/contributors"
  2155. }
  2156. ],
  2157. "description": "Symfony Validator Component",
  2158. "homepage": "http://symfony.com",
  2159. "time": "2013-04-01 08:07:53"
  2160. },
  2161. {
  2162. "name": "symfony/yaml",
  2163. "version": "v2.1.9",
  2164. "target-dir": "Symfony/Component/Yaml",
  2165. "source": {
  2166. "type": "git",
  2167. "url": "https://github.com/symfony/Yaml.git",
  2168. "reference": "v2.1.9"
  2169. },
  2170. "dist": {
  2171. "type": "zip",
  2172. "url": "https://api.github.com/repos/symfony/Yaml/zipball/v2.1.9",
  2173. "reference": "v2.1.9",
  2174. "shasum": ""
  2175. },
  2176. "require": {
  2177. "php": ">=5.3.3"
  2178. },
  2179. "type": "library",
  2180. "autoload": {
  2181. "psr-0": {
  2182. "Symfony\\Component\\Yaml": ""
  2183. }
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "Fabien Potencier",
  2192. "email": "fabien@symfony.com"
  2193. },
  2194. {
  2195. "name": "Symfony Community",
  2196. "homepage": "http://symfony.com/contributors"
  2197. }
  2198. ],
  2199. "description": "Symfony Yaml Component",
  2200. "homepage": "http://symfony.com",
  2201. "time": "2013-03-23 01:54:33"
  2202. },
  2203. {
  2204. "name": "twig/twig",
  2205. "version": "v1.12.2",
  2206. "source": {
  2207. "type": "git",
  2208. "url": "git://github.com/fabpot/Twig.git",
  2209. "reference": "v1.12.2"
  2210. },
  2211. "dist": {
  2212. "type": "zip",
  2213. "url": "https://api.github.com/repos/fabpot/Twig/zipball/v1.12.2",
  2214. "reference": "v1.12.2",
  2215. "shasum": ""
  2216. },
  2217. "require": {
  2218. "php": ">=5.2.4"
  2219. },
  2220. "type": "library",
  2221. "extra": {
  2222. "branch-alias": {
  2223. "dev-master": "1.12-dev"
  2224. }
  2225. },
  2226. "autoload": {
  2227. "psr-0": {
  2228. "Twig_": "lib/"
  2229. }
  2230. },
  2231. "notification-url": "https://packagist.org/downloads/",
  2232. "license": [
  2233. "BSD-3"
  2234. ],
  2235. "authors": [
  2236. {
  2237. "name": "Fabien Potencier",
  2238. "email": "fabien@symfony.com"
  2239. },
  2240. {
  2241. "name": "Armin Ronacher",
  2242. "email": "armin.ronacher@active-4.com"
  2243. }
  2244. ],
  2245. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2246. "homepage": "http://twig.sensiolabs.org",
  2247. "keywords": [
  2248. "templating"
  2249. ],
  2250. "time": "2013-02-09 18:21:53"
  2251. }
  2252. ],
  2253. "packages-dev": [
  2254. {
  2255. "name": "silex/web-profiler",
  2256. "version": "v1.0.0",
  2257. "target-dir": "Silex/Provider",
  2258. "source": {
  2259. "type": "git",
  2260. "url": "https://github.com/sensiolabs/Silex-WebProfiler.git",
  2261. "reference": "v1.0.0"
  2262. },
  2263. "dist": {
  2264. "type": "zip",
  2265. "url": "https://api.github.com/repos/sensiolabs/Silex-WebProfiler/zipball/v1.0.0",
  2266. "reference": "v1.0.0",
  2267. "shasum": ""
  2268. },
  2269. "require": {
  2270. "silex/silex": ">=1.0,<2.0",
  2271. "symfony/stopwatch": ">=2.2,<3.0",
  2272. "symfony/web-profiler-bundle": ">=2.2,<3.0"
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-master": "1.0.x-dev"
  2278. }
  2279. },
  2280. "autoload": {
  2281. "psr-0": {
  2282. "Silex\\Provider\\": ""
  2283. }
  2284. },
  2285. "notification-url": "https://packagist.org/downloads/",
  2286. "license": [
  2287. "MIT"
  2288. ],
  2289. "authors": [
  2290. {
  2291. "name": "Fabien Potencier",
  2292. "email": "fabien@symfony.com"
  2293. }
  2294. ],
  2295. "description": "A WebProfiler for Silex",
  2296. "homepage": "http://silex.sensiolabs.org/",
  2297. "time": "2013-03-08 07:16:44"
  2298. },
  2299. {
  2300. "name": "symfony/browser-kit",
  2301. "version": "dev-master",
  2302. "target-dir": "Symfony/Component/BrowserKit",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/symfony/BrowserKit.git",
  2306. "reference": "b0aa5249d957930f93c0c2a3f1f10db0721cb6e9"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/symfony/BrowserKit/zipball/b0aa5249d957930f93c0c2a3f1f10db0721cb6e9",
  2311. "reference": "b0aa5249d957930f93c0c2a3f1f10db0721cb6e9",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "php": ">=5.3.3",
  2316. "symfony/dom-crawler": ">=2.0,<3.0"
  2317. },
  2318. "require-dev": {
  2319. "symfony/css-selector": ">=2.0,<3.0",
  2320. "symfony/process": ">=2.0,<3.0"
  2321. },
  2322. "suggest": {
  2323. "symfony/process": "2.2.*"
  2324. },
  2325. "type": "library",
  2326. "extra": {
  2327. "branch-alias": {
  2328. "dev-master": "2.3-dev"
  2329. }
  2330. },
  2331. "autoload": {
  2332. "psr-0": {
  2333. "Symfony\\Component\\BrowserKit\\": ""
  2334. }
  2335. },
  2336. "notification-url": "https://packagist.org/downloads/",
  2337. "license": [
  2338. "MIT"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "Fabien Potencier",
  2343. "email": "fabien@symfony.com"
  2344. },
  2345. {
  2346. "name": "Symfony Community",
  2347. "homepage": "http://symfony.com/contributors"
  2348. }
  2349. ],
  2350. "description": "Symfony BrowserKit Component",
  2351. "homepage": "http://symfony.com",
  2352. "time": "2013-03-20 14:03:03"
  2353. },
  2354. {
  2355. "name": "symfony/dom-crawler",
  2356. "version": "v2.2.1",
  2357. "target-dir": "Symfony/Component/DomCrawler",
  2358. "source": {
  2359. "type": "git",
  2360. "url": "https://github.com/symfony/DomCrawler.git",
  2361. "reference": "v2.2.1"
  2362. },
  2363. "dist": {
  2364. "type": "zip",
  2365. "url": "https://api.github.com/repos/symfony/DomCrawler/zipball/v2.2.1",
  2366. "reference": "v2.2.1",
  2367. "shasum": ""
  2368. },
  2369. "require": {
  2370. "php": ">=5.3.3"
  2371. },
  2372. "require-dev": {
  2373. "symfony/css-selector": ">=2.0,<3.0"
  2374. },
  2375. "suggest": {
  2376. "symfony/css-selector": "2.2.*"
  2377. },
  2378. "type": "library",
  2379. "extra": {
  2380. "branch-alias": {
  2381. "dev-master": "2.2-dev"
  2382. }
  2383. },
  2384. "autoload": {
  2385. "psr-0": {
  2386. "Symfony\\Component\\DomCrawler\\": ""
  2387. }
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Fabien Potencier",
  2396. "email": "fabien@symfony.com"
  2397. },
  2398. {
  2399. "name": "Symfony Community",
  2400. "homepage": "http://symfony.com/contributors"
  2401. }
  2402. ],
  2403. "description": "Symfony DomCrawler Component",
  2404. "homepage": "http://symfony.com",
  2405. "time": "2013-04-01 08:05:23"
  2406. },
  2407. {
  2408. "name": "symfony/stopwatch",
  2409. "version": "v2.2.1",
  2410. "target-dir": "Symfony/Component/Stopwatch",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/symfony/Stopwatch.git",
  2414. "reference": "v2.2.1"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/symfony/Stopwatch/zipball/v2.2.1",
  2419. "reference": "v2.2.1",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "php": ">=5.3.3"
  2424. },
  2425. "type": "library",
  2426. "extra": {
  2427. "branch-alias": {
  2428. "dev-master": "2.2-dev"
  2429. }
  2430. },
  2431. "autoload": {
  2432. "psr-0": {
  2433. "Symfony\\Component\\Stopwatch\\": ""
  2434. }
  2435. },
  2436. "notification-url": "https://packagist.org/downloads/",
  2437. "license": [
  2438. "MIT"
  2439. ],
  2440. "authors": [
  2441. {
  2442. "name": "Fabien Potencier",
  2443. "email": "fabien@symfony.com"
  2444. },
  2445. {
  2446. "name": "Symfony Community",
  2447. "homepage": "http://symfony.com/contributors"
  2448. }
  2449. ],
  2450. "description": "Symfony Stopwatch Component",
  2451. "homepage": "http://symfony.com",
  2452. "time": "2013-01-04 16:58:00"
  2453. },
  2454. {
  2455. "name": "symfony/web-profiler-bundle",
  2456. "version": "v2.2.1",
  2457. "target-dir": "Symfony/Bundle/WebProfilerBundle",
  2458. "source": {
  2459. "type": "git",
  2460. "url": "https://github.com/symfony/WebProfilerBundle.git",
  2461. "reference": "v2.2.1"
  2462. },
  2463. "dist": {
  2464. "type": "zip",
  2465. "url": "https://api.github.com/repos/symfony/WebProfilerBundle/zipball/v2.2.1",
  2466. "reference": "v2.2.1",
  2467. "shasum": ""
  2468. },
  2469. "require": {
  2470. "php": ">=5.3.3",
  2471. "symfony/http-kernel": ">=2.2,<2.3-dev",
  2472. "symfony/routing": ">=2.2,<2.3-dev",
  2473. "symfony/twig-bridge": "2.2.*"
  2474. },
  2475. "require-dev": {
  2476. "symfony/config": ">=2.2,<2.3-dev",
  2477. "symfony/dependency-injection": ">=2.0,<3.0",
  2478. "symfony/stopwatch": ">=2.2,<2.3-dev"
  2479. },
  2480. "type": "symfony-bundle",
  2481. "extra": {
  2482. "branch-alias": {
  2483. "dev-master": "2.2-dev"
  2484. }
  2485. },
  2486. "autoload": {
  2487. "psr-0": {
  2488. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  2489. }
  2490. },
  2491. "notification-url": "https://packagist.org/downloads/",
  2492. "license": [
  2493. "MIT"
  2494. ],
  2495. "authors": [
  2496. {
  2497. "name": "Fabien Potencier",
  2498. "email": "fabien@symfony.com"
  2499. },
  2500. {
  2501. "name": "Symfony Community",
  2502. "homepage": "http://symfony.com/contributors"
  2503. }
  2504. ],
  2505. "description": "Symfony WebProfilerBundle",
  2506. "homepage": "http://symfony.com",
  2507. "time": "2013-04-06 10:15:43"
  2508. }
  2509. ],
  2510. "aliases": [
  2511. ],
  2512. "minimum-stability": "stable",
  2513. "stability-flags": {
  2514. "silex/silex": 20,
  2515. "symfony/config": 20,
  2516. "symfony/console": 20,
  2517. "symfony/twig-bridge": 20,
  2518. "symfony/doctrine-bridge": 20,
  2519. "symfony/security": 20,
  2520. "symfony/form": 20,
  2521. "symfony/property-access": 20,
  2522. "symfony/validator": 20,
  2523. "symfony/translation": 20,
  2524. "symfony/dependency-injection": 20,
  2525. "dflydev/doctrine-orm-service-provider": 20,
  2526. "doctrine/migrations": 20,
  2527. "pagerfanta/pagerfanta": 20,
  2528. "knplabs/knp-menu": 20,
  2529. "gedmo/doctrine-extensions": 20,
  2530. "chamilo/chash": 20,
  2531. "igorw/config-service-provider": 20,
  2532. "mpdf/mpdf": 20,
  2533. "ezyang/htmlpurifier": 20,
  2534. "mheap/silex-assetic": 20,
  2535. "leafo/lessphp": 20,
  2536. "natxet/cssmin": 20,
  2537. "realityking/pchart": 20,
  2538. "symfony/browser-kit": 20
  2539. },
  2540. "platform": {
  2541. "php": ">=5.3.2"
  2542. },
  2543. "platform-dev": [
  2544. ]
  2545. }