composer.lock 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  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": "c893252900762f0c7a6e2e72994e983015e33ebe"
  404. },
  405. "dist": {
  406. "type": "zip",
  407. "url": "https://api.github.com/repos/l3pp4rd/DoctrineExtensions/zipball/c893252900762f0c7a6e2e72994e983015e33ebe",
  408. "reference": "c893252900762f0c7a6e2e72994e983015e33ebe",
  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-03 03:54:53"
  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": "a2feb59a0f5cd144aa70759ce0333f36d12e2582"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/leafo/lessphp/zipball/a2feb59a0f5cd144aa70759ce0333f36d12e2582",
  649. "reference": "a2feb59a0f5cd144aa70759ce0333f36d12e2582",
  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-02 18:20:23"
  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": "869aa9edba10d86c16a59384f523de96343f9944"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/mheap/Silex-Assetic/zipball/869aa9edba10d86c16a59384f523de96343f9944",
  690. "reference": "869aa9edba10d86c16a59384f523de96343f9944",
  691. "shasum": ""
  692. },
  693. "require": {
  694. "kriswallsmith/assetic": ">=1.0",
  695. "php": ">=5.3.0",
  696. "symfony/finder": ">=2.1,<2.3"
  697. },
  698. "require-dev": {
  699. "silex/silex": "*",
  700. "twig/twig": ">=1.2.0"
  701. },
  702. "suggest": {
  703. "twig/twig": ">=1.2.0"
  704. },
  705. "type": "library",
  706. "autoload": {
  707. "psr-0": {
  708. "SilexAssetic": "src"
  709. }
  710. },
  711. "notification-url": "https://packagist.org/downloads/",
  712. "license": [
  713. "MIT"
  714. ],
  715. "authors": [
  716. {
  717. "name": "Sven Eisenschmidt",
  718. "email": "sven.eisenschmidt@gmail.com",
  719. "homepage": "http://unsicherheitsagent.de/"
  720. },
  721. {
  722. "name": "Michael Heap",
  723. "email": "m@michaelheap.com",
  724. "homepage": "http://michaelheap.com/"
  725. }
  726. ],
  727. "description": "Assetic extension for Silex",
  728. "homepage": "https://github.com/mheap/Silex-Assetic",
  729. "keywords": [
  730. "assetic",
  731. "silex"
  732. ],
  733. "time": "2013-04-04 10:20:51"
  734. },
  735. {
  736. "name": "monolog/monolog",
  737. "version": "1.4.1",
  738. "source": {
  739. "type": "git",
  740. "url": "https://github.com/Seldaek/monolog.git",
  741. "reference": "1.4.1"
  742. },
  743. "dist": {
  744. "type": "zip",
  745. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1.4.1",
  746. "reference": "1.4.1",
  747. "shasum": ""
  748. },
  749. "require": {
  750. "php": ">=5.3.0",
  751. "psr/log": ">=1.0,<2.0"
  752. },
  753. "require-dev": {
  754. "doctrine/couchdb": "dev-master",
  755. "mlehner/gelf-php": "1.0.*",
  756. "raven/raven": "0.3.*"
  757. },
  758. "suggest": {
  759. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  760. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  761. "ext-mongo": "Allow sending log messages to a MongoDB server",
  762. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
  763. "raven/raven": "Allow sending log messages to a Sentry server"
  764. },
  765. "type": "library",
  766. "extra": {
  767. "branch-alias": {
  768. "dev-master": "1.4.x-dev"
  769. }
  770. },
  771. "autoload": {
  772. "psr-0": {
  773. "Monolog": "src/"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "authors": [
  781. {
  782. "name": "Jordi Boggiano",
  783. "email": "j.boggiano@seld.be",
  784. "homepage": "http://seld.be",
  785. "role": "Developer"
  786. }
  787. ],
  788. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  789. "homepage": "http://github.com/Seldaek/monolog",
  790. "keywords": [
  791. "log",
  792. "logging",
  793. "psr-3"
  794. ],
  795. "time": "2013-04-01 10:04:58"
  796. },
  797. {
  798. "name": "mpdf/mpdf",
  799. "version": "dev-master",
  800. "source": {
  801. "type": "git",
  802. "url": "https://github.com/finwe/mpdf.git",
  803. "reference": "v5.6.1"
  804. },
  805. "dist": {
  806. "type": "zip",
  807. "url": "https://api.github.com/repos/finwe/mpdf/zipball/v5.6.1",
  808. "reference": "v5.6.1",
  809. "shasum": ""
  810. },
  811. "require": {
  812. "php": ">=4.3.10"
  813. },
  814. "type": "library",
  815. "autoload": {
  816. "classmap": [
  817. "mpdf.php",
  818. "classes"
  819. ]
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "GPL-1.0+"
  824. ],
  825. "authors": [
  826. {
  827. "name": "Ian Back"
  828. }
  829. ],
  830. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  831. "homepage": "http://www.mpdf1.com/mpdf/index.php",
  832. "keywords": [
  833. "pdf",
  834. "php",
  835. "utf-8"
  836. ],
  837. "time": "2013-01-26 08:22:27"
  838. },
  839. {
  840. "name": "natxet/CssMin",
  841. "version": "dev-master",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/natxet/CssMin.git",
  845. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/natxet/CssMin/zipball/9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  850. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": ">=5.0"
  855. },
  856. "type": "library",
  857. "autoload": {
  858. "psr-0": {
  859. "CssMin": "src/"
  860. }
  861. },
  862. "notification-url": "https://packagist.org/downloads/",
  863. "license": [
  864. "MIT"
  865. ],
  866. "authors": [
  867. {
  868. "name": "Joe Scylla",
  869. "email": "joe.scylla@gmail.com",
  870. "homepage": "https://profiles.google.com/joe.scylla"
  871. }
  872. ],
  873. "description": "Minifying CSS",
  874. "homepage": "http://code.google.com/p/cssmin/",
  875. "keywords": [
  876. "css",
  877. "minify"
  878. ],
  879. "time": "2013-03-15 18:47:32"
  880. },
  881. {
  882. "name": "pagerfanta/pagerfanta",
  883. "version": "dev-master",
  884. "source": {
  885. "type": "git",
  886. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  887. "reference": "92921b9bb155cecc68695fb273729a08586ceaf4"
  888. },
  889. "dist": {
  890. "type": "zip",
  891. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/92921b9bb155cecc68695fb273729a08586ceaf4",
  892. "reference": "92921b9bb155cecc68695fb273729a08586ceaf4",
  893. "shasum": ""
  894. },
  895. "require": {
  896. "php": ">=5.3.0"
  897. },
  898. "require-dev": {
  899. "doctrine/mongodb-odm": "*",
  900. "doctrine/orm": "2.*",
  901. "mandango/mandango": "*",
  902. "propel/propel1": ">=1.6,<2.0",
  903. "solarium/solarium": "dev-develop"
  904. },
  905. "suggest": {
  906. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  907. "doctrine/orm": "To use the DoctrineORMAdapter.",
  908. "mandango/mandango": "To use the MandangoAdapter.",
  909. "propel/propel1": "To use the PropelAdapter",
  910. "solarium/solarium": "To use the SolariumAdapter."
  911. },
  912. "type": "library",
  913. "extra": {
  914. "branch-alias": {
  915. "dev-master": "1.0.x-dev"
  916. }
  917. },
  918. "autoload": {
  919. "psr-0": {
  920. "Pagerfanta\\": "src/"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Pablo Díez",
  930. "email": "pablodip@gmail.com",
  931. "homepage": "http://github.com/pablodip"
  932. }
  933. ],
  934. "description": "Pagination for PHP 5.3",
  935. "keywords": [
  936. "page",
  937. "paging"
  938. ],
  939. "time": "2013-04-02 11:00:09"
  940. },
  941. {
  942. "name": "pimple/pimple",
  943. "version": "v1.0.2",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/fabpot/Pimple.git",
  947. "reference": "v1.0.2"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/fabpot/Pimple/zipball/v1.0.2",
  952. "reference": "v1.0.2",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "php": ">=5.3.0"
  957. },
  958. "type": "library",
  959. "extra": {
  960. "branch-alias": {
  961. "dev-master": "1.0.x-dev"
  962. }
  963. },
  964. "autoload": {
  965. "psr-0": {
  966. "Pimple": "lib/"
  967. }
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "MIT"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Fabien Potencier",
  976. "email": "fabien@symfony.com"
  977. }
  978. ],
  979. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  980. "homepage": "http://pimple.sensiolabs.org",
  981. "keywords": [
  982. "container",
  983. "dependency injection"
  984. ],
  985. "time": "2013-03-08 08:21:40"
  986. },
  987. {
  988. "name": "psr/log",
  989. "version": "1.0.0",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/php-fig/log",
  993. "reference": "1.0.0"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://github.com/php-fig/log/archive/1.0.0.zip",
  998. "reference": "1.0.0",
  999. "shasum": ""
  1000. },
  1001. "type": "library",
  1002. "autoload": {
  1003. "psr-0": {
  1004. "Psr\\Log\\": ""
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "PHP-FIG",
  1014. "homepage": "http://www.php-fig.org/"
  1015. }
  1016. ],
  1017. "description": "Common interface for logging libraries",
  1018. "keywords": [
  1019. "log",
  1020. "psr",
  1021. "psr-3"
  1022. ],
  1023. "time": "2012-12-21 11:40:51"
  1024. },
  1025. {
  1026. "name": "realityking/pchart",
  1027. "version": "dev-master",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/realityking/pChart.git",
  1031. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/realityking/pChart/zipball/46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1036. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1037. "shasum": ""
  1038. },
  1039. "type": "library",
  1040. "autoload": {
  1041. "classmap": [
  1042. "src/"
  1043. ]
  1044. },
  1045. "notification-url": "https://packagist.org/downloads/",
  1046. "license": [
  1047. "GPL-1.0+"
  1048. ],
  1049. "authors": [
  1050. {
  1051. "name": "Rouven Weßling",
  1052. "email": "me@rouvenwessling.de",
  1053. "homepage": "http://www.rouvenwessling.de"
  1054. }
  1055. ],
  1056. "description": "A fork of the popular pChart library.",
  1057. "time": "2013-03-18 08:23:38"
  1058. },
  1059. {
  1060. "name": "silex/silex",
  1061. "version": "dev-master",
  1062. "source": {
  1063. "type": "git",
  1064. "url": "https://github.com/fabpot/Silex.git",
  1065. "reference": "31139babedb2a4f504737d1d8c5255fca102dae2"
  1066. },
  1067. "dist": {
  1068. "type": "zip",
  1069. "url": "https://api.github.com/repos/fabpot/Silex/zipball/31139babedb2a4f504737d1d8c5255fca102dae2",
  1070. "reference": "31139babedb2a4f504737d1d8c5255fca102dae2",
  1071. "shasum": ""
  1072. },
  1073. "require": {
  1074. "php": ">=5.3.3",
  1075. "pimple/pimple": "1.*",
  1076. "symfony/event-dispatcher": ">=2.1,<2.3-dev",
  1077. "symfony/http-foundation": ">=2.1,<2.3-dev",
  1078. "symfony/http-kernel": ">=2.1,<2.3-dev",
  1079. "symfony/routing": ">=2.1,<2.3-dev"
  1080. },
  1081. "require-dev": {
  1082. "doctrine/dbal": ">=2.2.0,<2.4.0-dev",
  1083. "swiftmailer/swiftmailer": "4.2.*",
  1084. "symfony/browser-kit": ">=2.1,<2.3-dev",
  1085. "symfony/config": ">=2.1,<2.3-dev",
  1086. "symfony/css-selector": ">=2.1,<2.3-dev",
  1087. "symfony/dom-crawler": ">=2.1,<2.3-dev",
  1088. "symfony/finder": ">=2.1,<2.3-dev",
  1089. "symfony/form": ">=2.1.4,<2.3-dev",
  1090. "symfony/locale": ">=2.1,<2.3-dev",
  1091. "symfony/monolog-bridge": ">=2.1,<2.3-dev",
  1092. "symfony/options-resolver": ">=2.1,<2.3-dev",
  1093. "symfony/process": ">=2.1,<2.3-dev",
  1094. "symfony/security": ">=2.1,<2.3-dev",
  1095. "symfony/serializer": ">=2.1,<2.3-dev",
  1096. "symfony/translation": ">=2.1,<2.3-dev",
  1097. "symfony/twig-bridge": ">=2.1,<2.3-dev",
  1098. "symfony/validator": ">=2.1,<2.3-dev",
  1099. "twig/twig": ">=1.8.0,<2.0-dev"
  1100. },
  1101. "suggest": {
  1102. "symfony/browser-kit": ">=2.1,<2.3-dev",
  1103. "symfony/css-selector": ">=2.1,<2.3-dev",
  1104. "symfony/dom-crawler": ">=2.1,<2.3-dev",
  1105. "symfony/form": "To make use of the FormServiceProvider, >= 2.1.4 is required"
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "branch-alias": {
  1110. "dev-master": "1.0.x-dev"
  1111. }
  1112. },
  1113. "autoload": {
  1114. "psr-0": {
  1115. "Silex": "src/"
  1116. }
  1117. },
  1118. "notification-url": "https://packagist.org/downloads/",
  1119. "license": [
  1120. "MIT"
  1121. ],
  1122. "authors": [
  1123. {
  1124. "name": "Fabien Potencier",
  1125. "email": "fabien@symfony.com"
  1126. },
  1127. {
  1128. "name": "Igor Wiedler",
  1129. "email": "igor@wiedler.ch",
  1130. "homepage": "http://wiedler.ch/igor/"
  1131. }
  1132. ],
  1133. "description": "The PHP micro-framework based on the Symfony2 Components",
  1134. "homepage": "http://silex.sensiolabs.org",
  1135. "keywords": [
  1136. "microframework"
  1137. ],
  1138. "time": "2013-04-03 19:59:11"
  1139. },
  1140. {
  1141. "name": "swiftmailer/swiftmailer",
  1142. "version": "v4.1.8",
  1143. "source": {
  1144. "type": "git",
  1145. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1146. "reference": "v4.1.8"
  1147. },
  1148. "dist": {
  1149. "type": "zip",
  1150. "url": "https://github.com/swiftmailer/swiftmailer/zipball/v4.1.8",
  1151. "reference": "v4.1.8",
  1152. "shasum": ""
  1153. },
  1154. "require": {
  1155. "php": ">=5.2.4"
  1156. },
  1157. "type": "library",
  1158. "extra": {
  1159. "branch-alias": {
  1160. "dev-master": "4.1-dev"
  1161. }
  1162. },
  1163. "autoload": {
  1164. "files": [
  1165. "lib/swift_required.php"
  1166. ]
  1167. },
  1168. "notification-url": "https://packagist.org/downloads/",
  1169. "license": [
  1170. "LGPL"
  1171. ],
  1172. "authors": [
  1173. {
  1174. "name": "Fabien Potencier",
  1175. "email": "fabien@symfony.com"
  1176. },
  1177. {
  1178. "name": "Chris Corbyn"
  1179. }
  1180. ],
  1181. "description": "Swiftmailer, free feature-rich PHP mailer",
  1182. "homepage": "http://swiftmailer.org",
  1183. "keywords": [
  1184. "mail",
  1185. "mailer"
  1186. ],
  1187. "time": "2012-06-17 13:55:34"
  1188. },
  1189. {
  1190. "name": "symfony/config",
  1191. "version": "dev-master",
  1192. "target-dir": "Symfony/Component/Config",
  1193. "source": {
  1194. "type": "git",
  1195. "url": "https://github.com/symfony/Config.git",
  1196. "reference": "2b8694ad7f46072b154faaf5e74f2a06cb828fa7"
  1197. },
  1198. "dist": {
  1199. "type": "zip",
  1200. "url": "https://api.github.com/repos/symfony/Config/zipball/2b8694ad7f46072b154faaf5e74f2a06cb828fa7",
  1201. "reference": "2b8694ad7f46072b154faaf5e74f2a06cb828fa7",
  1202. "shasum": ""
  1203. },
  1204. "require": {
  1205. "php": ">=5.3.3"
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "2.3-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-0": {
  1215. "Symfony\\Component\\Config\\": ""
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Fabien Potencier",
  1225. "email": "fabien@symfony.com"
  1226. },
  1227. {
  1228. "name": "Symfony Community",
  1229. "homepage": "http://symfony.com/contributors"
  1230. }
  1231. ],
  1232. "description": "Symfony Config Component",
  1233. "homepage": "http://symfony.com",
  1234. "time": "2013-03-01 10:42:20"
  1235. },
  1236. {
  1237. "name": "symfony/console",
  1238. "version": "dev-master",
  1239. "target-dir": "Symfony/Component/Console",
  1240. "source": {
  1241. "type": "git",
  1242. "url": "https://github.com/symfony/Console.git",
  1243. "reference": "adbc260c08000aaa75c5f0db8347a29c21d16692"
  1244. },
  1245. "dist": {
  1246. "type": "zip",
  1247. "url": "https://api.github.com/repos/symfony/Console/zipball/adbc260c08000aaa75c5f0db8347a29c21d16692",
  1248. "reference": "adbc260c08000aaa75c5f0db8347a29c21d16692",
  1249. "shasum": ""
  1250. },
  1251. "require": {
  1252. "php": ">=5.3.3"
  1253. },
  1254. "require-dev": {
  1255. "symfony/event-dispatcher": ">=2.1,<3.0"
  1256. },
  1257. "type": "library",
  1258. "extra": {
  1259. "branch-alias": {
  1260. "dev-master": "2.3-dev"
  1261. }
  1262. },
  1263. "autoload": {
  1264. "psr-0": {
  1265. "Symfony\\Component\\Console\\": ""
  1266. }
  1267. },
  1268. "notification-url": "https://packagist.org/downloads/",
  1269. "license": [
  1270. "MIT"
  1271. ],
  1272. "authors": [
  1273. {
  1274. "name": "Fabien Potencier",
  1275. "email": "fabien@symfony.com"
  1276. },
  1277. {
  1278. "name": "Symfony Community",
  1279. "homepage": "http://symfony.com/contributors"
  1280. }
  1281. ],
  1282. "description": "Symfony Console Component",
  1283. "homepage": "http://symfony.com",
  1284. "time": "2013-03-25 20:03:44"
  1285. },
  1286. {
  1287. "name": "symfony/dependency-injection",
  1288. "version": "dev-master",
  1289. "target-dir": "Symfony/Component/DependencyInjection",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/symfony/DependencyInjection.git",
  1293. "reference": "bdbd94e1fbca934ed4c6d912e57c99a17bbe753b"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/bdbd94e1fbca934ed4c6d912e57c99a17bbe753b",
  1298. "reference": "bdbd94e1fbca934ed4c6d912e57c99a17bbe753b",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "php": ">=5.3.3"
  1303. },
  1304. "require-dev": {
  1305. "symfony/config": ">=2.2,<2.4-dev",
  1306. "symfony/yaml": ">=2.0,<3.0"
  1307. },
  1308. "suggest": {
  1309. "symfony/config": "2.2.*",
  1310. "symfony/yaml": "2.2.*"
  1311. },
  1312. "type": "library",
  1313. "extra": {
  1314. "branch-alias": {
  1315. "dev-master": "2.3-dev"
  1316. }
  1317. },
  1318. "autoload": {
  1319. "psr-0": {
  1320. "Symfony\\Component\\DependencyInjection\\": ""
  1321. }
  1322. },
  1323. "notification-url": "https://packagist.org/downloads/",
  1324. "license": [
  1325. "MIT"
  1326. ],
  1327. "authors": [
  1328. {
  1329. "name": "Fabien Potencier",
  1330. "email": "fabien@symfony.com"
  1331. },
  1332. {
  1333. "name": "Symfony Community",
  1334. "homepage": "http://symfony.com/contributors"
  1335. }
  1336. ],
  1337. "description": "Symfony DependencyInjection Component",
  1338. "homepage": "http://symfony.com",
  1339. "time": "2013-03-23 13:07:03"
  1340. },
  1341. {
  1342. "name": "symfony/doctrine-bridge",
  1343. "version": "dev-master",
  1344. "target-dir": "Symfony/Bridge/Doctrine",
  1345. "source": {
  1346. "type": "git",
  1347. "url": "https://github.com/symfony/DoctrineBridge.git",
  1348. "reference": "cdc203642da7f3db2afafa6cfea827c234ac611f"
  1349. },
  1350. "dist": {
  1351. "type": "zip",
  1352. "url": "https://api.github.com/repos/symfony/DoctrineBridge/zipball/cdc203642da7f3db2afafa6cfea827c234ac611f",
  1353. "reference": "cdc203642da7f3db2afafa6cfea827c234ac611f",
  1354. "shasum": ""
  1355. },
  1356. "require": {
  1357. "doctrine/common": ">=2.2,<3.0",
  1358. "php": ">=5.3.3"
  1359. },
  1360. "require-dev": {
  1361. "doctrine/data-fixtures": "1.0.*",
  1362. "doctrine/dbal": ">=2.2,<3.0",
  1363. "doctrine/orm": ">=2.2,<3.0,>=2.2.3",
  1364. "symfony/dependency-injection": ">=2.0,<3.0",
  1365. "symfony/form": ">=2.2,<2.4-dev",
  1366. "symfony/http-kernel": ">=2.2,<2.4-dev",
  1367. "symfony/security": ">=2.2,<2.4-dev",
  1368. "symfony/stopwatch": ">=2.2,<2.4-dev",
  1369. "symfony/validator": ">=2.2,<2.4-dev"
  1370. },
  1371. "suggest": {
  1372. "doctrine/data-fixtures": "1.0.*",
  1373. "doctrine/dbal": "~2.2",
  1374. "doctrine/orm": "~2.2,>=2.2.3",
  1375. "symfony/form": "2.2.*",
  1376. "symfony/validator": "2.2.*"
  1377. },
  1378. "type": "symfony-bridge",
  1379. "extra": {
  1380. "branch-alias": {
  1381. "dev-master": "2.3-dev"
  1382. }
  1383. },
  1384. "autoload": {
  1385. "psr-0": {
  1386. "Symfony\\Bridge\\Doctrine\\": ""
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "MIT"
  1392. ],
  1393. "authors": [
  1394. {
  1395. "name": "Fabien Potencier",
  1396. "email": "fabien@symfony.com"
  1397. },
  1398. {
  1399. "name": "Symfony Community",
  1400. "homepage": "http://symfony.com/contributors"
  1401. }
  1402. ],
  1403. "description": "Symfony Doctrine Bridge",
  1404. "homepage": "http://symfony.com",
  1405. "time": "2013-04-01 08:07:30"
  1406. },
  1407. {
  1408. "name": "symfony/event-dispatcher",
  1409. "version": "v2.2.0",
  1410. "target-dir": "Symfony/Component/EventDispatcher",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/symfony/EventDispatcher.git",
  1414. "reference": "v2.2.0-RC3"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/v2.2.0-RC3",
  1419. "reference": "v2.2.0-RC3",
  1420. "shasum": ""
  1421. },
  1422. "require": {
  1423. "php": ">=5.3.3"
  1424. },
  1425. "require-dev": {
  1426. "symfony/dependency-injection": ">=2.0,<3.0"
  1427. },
  1428. "suggest": {
  1429. "symfony/dependency-injection": "2.2.*",
  1430. "symfony/http-kernel": "2.2.*"
  1431. },
  1432. "type": "library",
  1433. "extra": {
  1434. "branch-alias": {
  1435. "dev-master": "2.2-dev"
  1436. }
  1437. },
  1438. "autoload": {
  1439. "psr-0": {
  1440. "Symfony\\Component\\EventDispatcher\\": ""
  1441. }
  1442. },
  1443. "notification-url": "https://packagist.org/downloads/",
  1444. "license": [
  1445. "MIT"
  1446. ],
  1447. "authors": [
  1448. {
  1449. "name": "Fabien Potencier",
  1450. "email": "fabien@symfony.com"
  1451. },
  1452. {
  1453. "name": "Symfony Community",
  1454. "homepage": "http://symfony.com/contributors"
  1455. }
  1456. ],
  1457. "description": "Symfony EventDispatcher Component",
  1458. "homepage": "http://symfony.com",
  1459. "time": "2013-02-11 11:26:43"
  1460. },
  1461. {
  1462. "name": "symfony/finder",
  1463. "version": "v2.2.0",
  1464. "target-dir": "Symfony/Component/Finder",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/symfony/Finder.git",
  1468. "reference": "v2.2.0"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/symfony/Finder/zipball/v2.2.0",
  1473. "reference": "v2.2.0",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "php": ">=5.3.3"
  1478. },
  1479. "type": "library",
  1480. "extra": {
  1481. "branch-alias": {
  1482. "dev-master": "2.2-dev"
  1483. }
  1484. },
  1485. "autoload": {
  1486. "psr-0": {
  1487. "Symfony\\Component\\Finder\\": ""
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "MIT"
  1493. ],
  1494. "authors": [
  1495. {
  1496. "name": "Fabien Potencier",
  1497. "email": "fabien@symfony.com"
  1498. },
  1499. {
  1500. "name": "Symfony Community",
  1501. "homepage": "http://symfony.com/contributors"
  1502. }
  1503. ],
  1504. "description": "Symfony Finder Component",
  1505. "homepage": "http://symfony.com",
  1506. "time": "2013-02-28 14:06:36"
  1507. },
  1508. {
  1509. "name": "symfony/form",
  1510. "version": "dev-master",
  1511. "target-dir": "Symfony/Component/Form",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/symfony/Form.git",
  1515. "reference": "094c9264480dceff17bba9c9c92b520cde55a15b"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/symfony/Form/zipball/094c9264480dceff17bba9c9c92b520cde55a15b",
  1520. "reference": "094c9264480dceff17bba9c9c92b520cde55a15b",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "php": ">=5.3.3",
  1525. "symfony/event-dispatcher": ">=2.1,<3.0",
  1526. "symfony/locale": ">=2.0,<3.0",
  1527. "symfony/options-resolver": ">=2.1,<2.4-dev",
  1528. "symfony/property-access": ">=2.2,<2.4-dev"
  1529. },
  1530. "require-dev": {
  1531. "symfony/http-foundation": ">=2.1,<2.4-dev",
  1532. "symfony/validator": ">=2.2,<2.4-dev"
  1533. },
  1534. "suggest": {
  1535. "symfony/http-foundation": "2.2.*",
  1536. "symfony/validator": "2.2.*"
  1537. },
  1538. "type": "library",
  1539. "extra": {
  1540. "branch-alias": {
  1541. "dev-master": "2.3-dev"
  1542. }
  1543. },
  1544. "autoload": {
  1545. "psr-0": {
  1546. "Symfony\\Component\\Form\\": ""
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Fabien Potencier",
  1556. "email": "fabien@symfony.com"
  1557. },
  1558. {
  1559. "name": "Symfony Community",
  1560. "homepage": "http://symfony.com/contributors"
  1561. }
  1562. ],
  1563. "description": "Symfony Form Component",
  1564. "homepage": "http://symfony.com",
  1565. "time": "2013-04-01 08:07:53"
  1566. },
  1567. {
  1568. "name": "symfony/http-foundation",
  1569. "version": "v2.2.0",
  1570. "target-dir": "Symfony/Component/HttpFoundation",
  1571. "source": {
  1572. "type": "git",
  1573. "url": "https://github.com/symfony/HttpFoundation.git",
  1574. "reference": "v2.2.0"
  1575. },
  1576. "dist": {
  1577. "type": "zip",
  1578. "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/v2.2.0",
  1579. "reference": "v2.2.0",
  1580. "shasum": ""
  1581. },
  1582. "require": {
  1583. "php": ">=5.3.3"
  1584. },
  1585. "type": "library",
  1586. "extra": {
  1587. "branch-alias": {
  1588. "dev-master": "2.2-dev"
  1589. }
  1590. },
  1591. "autoload": {
  1592. "psr-0": {
  1593. "Symfony\\Component\\HttpFoundation\\": ""
  1594. },
  1595. "classmap": [
  1596. "Symfony/Component/HttpFoundation/Resources/stubs"
  1597. ]
  1598. },
  1599. "notification-url": "https://packagist.org/downloads/",
  1600. "license": [
  1601. "MIT"
  1602. ],
  1603. "authors": [
  1604. {
  1605. "name": "Fabien Potencier",
  1606. "email": "fabien@symfony.com"
  1607. },
  1608. {
  1609. "name": "Symfony Community",
  1610. "homepage": "http://symfony.com/contributors"
  1611. }
  1612. ],
  1613. "description": "Symfony HttpFoundation Component",
  1614. "homepage": "http://symfony.com",
  1615. "time": "2013-02-26 09:42:13"
  1616. },
  1617. {
  1618. "name": "symfony/http-kernel",
  1619. "version": "v2.2.0",
  1620. "target-dir": "Symfony/Component/HttpKernel",
  1621. "source": {
  1622. "type": "git",
  1623. "url": "https://github.com/symfony/HttpKernel.git",
  1624. "reference": "v2.2.0"
  1625. },
  1626. "dist": {
  1627. "type": "zip",
  1628. "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/v2.2.0",
  1629. "reference": "v2.2.0",
  1630. "shasum": ""
  1631. },
  1632. "require": {
  1633. "php": ">=5.3.3",
  1634. "psr/log": ">=1.0,<2.0",
  1635. "symfony/event-dispatcher": ">=2.1,<3.0",
  1636. "symfony/http-foundation": ">=2.2,<2.3-dev"
  1637. },
  1638. "require-dev": {
  1639. "symfony/browser-kit": "2.2.*",
  1640. "symfony/class-loader": ">=2.1,<3.0",
  1641. "symfony/config": ">=2.0,<3.0",
  1642. "symfony/console": "2.2.*",
  1643. "symfony/dependency-injection": ">=2.0,<3.0",
  1644. "symfony/finder": ">=2.0,<3.0",
  1645. "symfony/process": ">=2.0,<3.0",
  1646. "symfony/routing": ">=2.2,<2.3-dev",
  1647. "symfony/stopwatch": ">=2.2,<2.3-dev"
  1648. },
  1649. "suggest": {
  1650. "symfony/browser-kit": "2.2.*",
  1651. "symfony/class-loader": "2.2.*",
  1652. "symfony/config": "2.2.*",
  1653. "symfony/console": "2.2.*",
  1654. "symfony/dependency-injection": "2.2.*",
  1655. "symfony/finder": "2.2.*"
  1656. },
  1657. "type": "library",
  1658. "extra": {
  1659. "branch-alias": {
  1660. "dev-master": "2.2-dev"
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-0": {
  1665. "Symfony\\Component\\HttpKernel\\": ""
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "MIT"
  1671. ],
  1672. "authors": [
  1673. {
  1674. "name": "Fabien Potencier",
  1675. "email": "fabien@symfony.com"
  1676. },
  1677. {
  1678. "name": "Symfony Community",
  1679. "homepage": "http://symfony.com/contributors"
  1680. }
  1681. ],
  1682. "description": "Symfony HttpKernel Component",
  1683. "homepage": "http://symfony.com",
  1684. "time": "2013-03-01 06:52:29"
  1685. },
  1686. {
  1687. "name": "symfony/locale",
  1688. "version": "v2.2.0",
  1689. "target-dir": "Symfony/Component/Locale",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/symfony/Locale.git",
  1693. "reference": "v2.2.0-RC3"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/symfony/Locale/zipball/v2.2.0-RC3",
  1698. "reference": "v2.2.0-RC3",
  1699. "shasum": ""
  1700. },
  1701. "require": {
  1702. "php": ">=5.3.3"
  1703. },
  1704. "suggest": {
  1705. "ext-intl": "to use other locales than built-in `en`"
  1706. },
  1707. "type": "library",
  1708. "extra": {
  1709. "branch-alias": {
  1710. "dev-master": "2.2-dev"
  1711. }
  1712. },
  1713. "autoload": {
  1714. "psr-0": {
  1715. "Symfony\\Component\\Locale\\": ""
  1716. },
  1717. "classmap": [
  1718. "Symfony/Component/Locale/Resources/stubs"
  1719. ]
  1720. },
  1721. "notification-url": "https://packagist.org/downloads/",
  1722. "license": [
  1723. "MIT"
  1724. ],
  1725. "authors": [
  1726. {
  1727. "name": "Fabien Potencier",
  1728. "email": "fabien@symfony.com"
  1729. },
  1730. {
  1731. "name": "Symfony Community",
  1732. "homepage": "http://symfony.com/contributors"
  1733. }
  1734. ],
  1735. "description": "Symfony Locale Component",
  1736. "homepage": "http://symfony.com",
  1737. "time": "2013-02-01 09:33:53"
  1738. },
  1739. {
  1740. "name": "symfony/options-resolver",
  1741. "version": "v2.2.0",
  1742. "target-dir": "Symfony/Component/OptionsResolver",
  1743. "source": {
  1744. "type": "git",
  1745. "url": "https://github.com/symfony/OptionsResolver.git",
  1746. "reference": "v2.2.0-RC3"
  1747. },
  1748. "dist": {
  1749. "type": "zip",
  1750. "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/v2.2.0-RC3",
  1751. "reference": "v2.2.0-RC3",
  1752. "shasum": ""
  1753. },
  1754. "require": {
  1755. "php": ">=5.3.3"
  1756. },
  1757. "type": "library",
  1758. "extra": {
  1759. "branch-alias": {
  1760. "dev-master": "2.2-dev"
  1761. }
  1762. },
  1763. "autoload": {
  1764. "psr-0": {
  1765. "Symfony\\Component\\OptionsResolver\\": ""
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "MIT"
  1771. ],
  1772. "authors": [
  1773. {
  1774. "name": "Fabien Potencier",
  1775. "email": "fabien@symfony.com"
  1776. },
  1777. {
  1778. "name": "Symfony Community",
  1779. "homepage": "http://symfony.com/contributors"
  1780. }
  1781. ],
  1782. "description": "Symfony OptionsResolver Component",
  1783. "homepage": "http://symfony.com",
  1784. "keywords": [
  1785. "config",
  1786. "configuration",
  1787. "options"
  1788. ],
  1789. "time": "2013-01-17 15:25:59"
  1790. },
  1791. {
  1792. "name": "symfony/property-access",
  1793. "version": "dev-master",
  1794. "target-dir": "Symfony/Component/PropertyAccess",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/symfony/PropertyAccess.git",
  1798. "reference": "072ae5c084eedf7092182f2aff3ab713c63a4672"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/072ae5c084eedf7092182f2aff3ab713c63a4672",
  1803. "reference": "072ae5c084eedf7092182f2aff3ab713c63a4672",
  1804. "shasum": ""
  1805. },
  1806. "require": {
  1807. "php": ">=5.3.3"
  1808. },
  1809. "type": "library",
  1810. "extra": {
  1811. "branch-alias": {
  1812. "dev-master": "2.3-dev"
  1813. }
  1814. },
  1815. "autoload": {
  1816. "psr-0": {
  1817. "Symfony\\Component\\PropertyAccess\\": ""
  1818. }
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Fabien Potencier",
  1827. "email": "fabien@symfony.com"
  1828. },
  1829. {
  1830. "name": "Symfony Community",
  1831. "homepage": "http://symfony.com/contributors"
  1832. }
  1833. ],
  1834. "description": "Symfony PropertyAccess Component",
  1835. "homepage": "http://symfony.com",
  1836. "keywords": [
  1837. "access",
  1838. "array",
  1839. "extraction",
  1840. "index",
  1841. "injection",
  1842. "object",
  1843. "property",
  1844. "property path",
  1845. "reflection"
  1846. ],
  1847. "time": "2013-04-01 08:07:30"
  1848. },
  1849. {
  1850. "name": "symfony/routing",
  1851. "version": "v2.2.0",
  1852. "target-dir": "Symfony/Component/Routing",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/symfony/Routing.git",
  1856. "reference": "v2.2.0-RC3"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/symfony/Routing/zipball/v2.2.0-RC3",
  1861. "reference": "v2.2.0-RC3",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "php": ">=5.3.3"
  1866. },
  1867. "require-dev": {
  1868. "doctrine/common": ">=2.2,<3.0",
  1869. "psr/log": ">=1.0,<2.0",
  1870. "symfony/config": ">=2.2,<2.3-dev",
  1871. "symfony/yaml": ">=2.0,<3.0"
  1872. },
  1873. "suggest": {
  1874. "doctrine/common": "~2.2",
  1875. "symfony/config": "2.2.*",
  1876. "symfony/yaml": "2.2.*"
  1877. },
  1878. "type": "library",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-master": "2.2-dev"
  1882. }
  1883. },
  1884. "autoload": {
  1885. "psr-0": {
  1886. "Symfony\\Component\\Routing\\": ""
  1887. }
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Fabien Potencier",
  1896. "email": "fabien@symfony.com"
  1897. },
  1898. {
  1899. "name": "Symfony Community",
  1900. "homepage": "http://symfony.com/contributors"
  1901. }
  1902. ],
  1903. "description": "Symfony Routing Component",
  1904. "homepage": "http://symfony.com",
  1905. "time": "2013-02-11 11:24:47"
  1906. },
  1907. {
  1908. "name": "symfony/security",
  1909. "version": "dev-master",
  1910. "target-dir": "Symfony/Component/Security",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/symfony/Security.git",
  1914. "reference": "708f7aa9f69b2ae48832a875c252f4e14f2d76e8"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://api.github.com/repos/symfony/Security/zipball/708f7aa9f69b2ae48832a875c252f4e14f2d76e8",
  1919. "reference": "708f7aa9f69b2ae48832a875c252f4e14f2d76e8",
  1920. "shasum": ""
  1921. },
  1922. "require": {
  1923. "php": ">=5.3.3",
  1924. "symfony/event-dispatcher": ">=2.1,<3.0",
  1925. "symfony/http-foundation": ">=2.1,<2.4-dev",
  1926. "symfony/http-kernel": ">=2.1,<=2.3-dev"
  1927. },
  1928. "require-dev": {
  1929. "doctrine/common": ">=2.2,<3.0",
  1930. "doctrine/dbal": ">=2.2,<3.0",
  1931. "psr/log": ">=1.0,<2.0",
  1932. "symfony/form": ">=2.0,<3.0",
  1933. "symfony/routing": ">=2.2,<2.4-dev",
  1934. "symfony/validator": ">=2.2,<2.4-dev"
  1935. },
  1936. "suggest": {
  1937. "doctrine/dbal": "to use the built-in ACL implementation",
  1938. "symfony/class-loader": "2.2.*",
  1939. "symfony/finder": "2.2.*",
  1940. "symfony/form": "2.2.*",
  1941. "symfony/routing": "2.2.*",
  1942. "symfony/validator": "2.2.*"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "2.3-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-0": {
  1952. "Symfony\\Component\\Security\\": ""
  1953. }
  1954. },
  1955. "notification-url": "https://packagist.org/downloads/",
  1956. "license": [
  1957. "MIT"
  1958. ],
  1959. "authors": [
  1960. {
  1961. "name": "Fabien Potencier",
  1962. "email": "fabien@symfony.com"
  1963. },
  1964. {
  1965. "name": "Symfony Community",
  1966. "homepage": "http://symfony.com/contributors"
  1967. }
  1968. ],
  1969. "description": "Symfony Security Component",
  1970. "homepage": "http://symfony.com",
  1971. "time": "2013-04-01 08:07:53"
  1972. },
  1973. {
  1974. "name": "symfony/translation",
  1975. "version": "dev-master",
  1976. "target-dir": "Symfony/Component/Translation",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/symfony/Translation.git",
  1980. "reference": "cb8553294d259431f11b19d731d81a483309320a"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/symfony/Translation/zipball/cb8553294d259431f11b19d731d81a483309320a",
  1985. "reference": "cb8553294d259431f11b19d731d81a483309320a",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "php": ">=5.3.3"
  1990. },
  1991. "require-dev": {
  1992. "symfony/config": ">=2.0,<2.4-dev",
  1993. "symfony/yaml": ">=2.2,<3.0"
  1994. },
  1995. "suggest": {
  1996. "symfony/config": "2.2.*",
  1997. "symfony/yaml": "2.2.*"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "2.3-dev"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "psr-0": {
  2007. "Symfony\\Component\\Translation\\": ""
  2008. }
  2009. },
  2010. "notification-url": "https://packagist.org/downloads/",
  2011. "license": [
  2012. "MIT"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "Fabien Potencier",
  2017. "email": "fabien@symfony.com"
  2018. },
  2019. {
  2020. "name": "Symfony Community",
  2021. "homepage": "http://symfony.com/contributors"
  2022. }
  2023. ],
  2024. "description": "Symfony Translation Component",
  2025. "homepage": "http://symfony.com",
  2026. "time": "2013-04-01 08:07:53"
  2027. },
  2028. {
  2029. "name": "symfony/twig-bridge",
  2030. "version": "2.2.x-dev",
  2031. "target-dir": "Symfony/Bridge/Twig",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://github.com/symfony/TwigBridge.git",
  2035. "reference": "50bbc4a10d34a71325b58940c4887726b8a30841"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/50bbc4a10d34a71325b58940c4887726b8a30841",
  2040. "reference": "50bbc4a10d34a71325b58940c4887726b8a30841",
  2041. "shasum": ""
  2042. },
  2043. "require": {
  2044. "php": ">=5.3.3",
  2045. "twig/twig": ">=1.11.0,<2.0"
  2046. },
  2047. "require-dev": {
  2048. "symfony/form": "2.2.*",
  2049. "symfony/http-kernel": ">=2.2,<2.3-dev",
  2050. "symfony/routing": ">=2.2,<2.3-dev",
  2051. "symfony/security": ">=2.0,<2.3-dev",
  2052. "symfony/templating": ">=2.1,<3.0",
  2053. "symfony/translation": ">=2.0,<2.3-dev",
  2054. "symfony/yaml": ">=2.0,<3.0"
  2055. },
  2056. "suggest": {
  2057. "symfony/form": "2.2.*",
  2058. "symfony/http-kernel": "2.2.*",
  2059. "symfony/routing": "2.2.*",
  2060. "symfony/security": "2.2.*",
  2061. "symfony/templating": "2.2.*",
  2062. "symfony/translation": "2.2.*",
  2063. "symfony/yaml": "2.2.*"
  2064. },
  2065. "type": "symfony-bridge",
  2066. "extra": {
  2067. "branch-alias": {
  2068. "dev-master": "2.2-dev"
  2069. }
  2070. },
  2071. "autoload": {
  2072. "psr-0": {
  2073. "Symfony\\Bridge\\Twig\\": ""
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "Fabien Potencier",
  2083. "email": "fabien@symfony.com"
  2084. },
  2085. {
  2086. "name": "Symfony Community",
  2087. "homepage": "http://symfony.com/contributors"
  2088. }
  2089. ],
  2090. "description": "Symfony Twig Bridge",
  2091. "homepage": "http://symfony.com",
  2092. "time": "2013-03-15 10:14:31"
  2093. },
  2094. {
  2095. "name": "symfony/validator",
  2096. "version": "dev-master",
  2097. "target-dir": "Symfony/Component/Validator",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/symfony/Validator.git",
  2101. "reference": "b9e2fa05cf314a8c64db801adbfce611028e63b9"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/symfony/Validator/zipball/b9e2fa05cf314a8c64db801adbfce611028e63b9",
  2106. "reference": "b9e2fa05cf314a8c64db801adbfce611028e63b9",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "php": ">=5.3.3",
  2111. "symfony/translation": ">=2.0,<3.0"
  2112. },
  2113. "require-dev": {
  2114. "symfony/config": ">=2.2,<2.4-dev",
  2115. "symfony/http-foundation": ">=2.1,<3.0",
  2116. "symfony/locale": ">=2.0,<3.0",
  2117. "symfony/yaml": ">=2.0,<3.0"
  2118. },
  2119. "suggest": {
  2120. "doctrine/common": "~2.2",
  2121. "symfony/config": "2.2.*",
  2122. "symfony/http-foundation": "2.2.*",
  2123. "symfony/locale": "2.2.*",
  2124. "symfony/yaml": "2.2.*"
  2125. },
  2126. "type": "library",
  2127. "extra": {
  2128. "branch-alias": {
  2129. "dev-master": "2.3-dev"
  2130. }
  2131. },
  2132. "autoload": {
  2133. "psr-0": {
  2134. "Symfony\\Component\\Validator\\": ""
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Fabien Potencier",
  2144. "email": "fabien@symfony.com"
  2145. },
  2146. {
  2147. "name": "Symfony Community",
  2148. "homepage": "http://symfony.com/contributors"
  2149. }
  2150. ],
  2151. "description": "Symfony Validator Component",
  2152. "homepage": "http://symfony.com",
  2153. "time": "2013-04-01 08:07:53"
  2154. },
  2155. {
  2156. "name": "symfony/yaml",
  2157. "version": "v2.1.9",
  2158. "target-dir": "Symfony/Component/Yaml",
  2159. "source": {
  2160. "type": "git",
  2161. "url": "https://github.com/symfony/Yaml.git",
  2162. "reference": "v2.1.9"
  2163. },
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://api.github.com/repos/symfony/Yaml/zipball/v2.1.9",
  2167. "reference": "v2.1.9",
  2168. "shasum": ""
  2169. },
  2170. "require": {
  2171. "php": ">=5.3.3"
  2172. },
  2173. "type": "library",
  2174. "autoload": {
  2175. "psr-0": {
  2176. "Symfony\\Component\\Yaml": ""
  2177. }
  2178. },
  2179. "notification-url": "https://packagist.org/downloads/",
  2180. "license": [
  2181. "MIT"
  2182. ],
  2183. "authors": [
  2184. {
  2185. "name": "Fabien Potencier",
  2186. "email": "fabien@symfony.com"
  2187. },
  2188. {
  2189. "name": "Symfony Community",
  2190. "homepage": "http://symfony.com/contributors"
  2191. }
  2192. ],
  2193. "description": "Symfony Yaml Component",
  2194. "homepage": "http://symfony.com",
  2195. "time": "2013-03-23 01:54:33"
  2196. },
  2197. {
  2198. "name": "twig/twig",
  2199. "version": "v1.12.2",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "git://github.com/fabpot/Twig.git",
  2203. "reference": "v1.12.2"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/fabpot/Twig/zipball/v1.12.2",
  2208. "reference": "v1.12.2",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "php": ">=5.2.4"
  2213. },
  2214. "type": "library",
  2215. "extra": {
  2216. "branch-alias": {
  2217. "dev-master": "1.12-dev"
  2218. }
  2219. },
  2220. "autoload": {
  2221. "psr-0": {
  2222. "Twig_": "lib/"
  2223. }
  2224. },
  2225. "notification-url": "https://packagist.org/downloads/",
  2226. "license": [
  2227. "BSD-3"
  2228. ],
  2229. "authors": [
  2230. {
  2231. "name": "Fabien Potencier",
  2232. "email": "fabien@symfony.com"
  2233. },
  2234. {
  2235. "name": "Armin Ronacher",
  2236. "email": "armin.ronacher@active-4.com"
  2237. }
  2238. ],
  2239. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2240. "homepage": "http://twig.sensiolabs.org",
  2241. "keywords": [
  2242. "templating"
  2243. ],
  2244. "time": "2013-02-09 18:21:53"
  2245. }
  2246. ],
  2247. "packages-dev": [
  2248. {
  2249. "name": "silex/web-profiler",
  2250. "version": "v1.0.0",
  2251. "target-dir": "Silex/Provider",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/sensiolabs/Silex-WebProfiler.git",
  2255. "reference": "v1.0.0"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/sensiolabs/Silex-WebProfiler/zipball/v1.0.0",
  2260. "reference": "v1.0.0",
  2261. "shasum": ""
  2262. },
  2263. "require": {
  2264. "silex/silex": ">=1.0,<2.0",
  2265. "symfony/stopwatch": ">=2.2,<3.0",
  2266. "symfony/web-profiler-bundle": ">=2.2,<3.0"
  2267. },
  2268. "type": "library",
  2269. "extra": {
  2270. "branch-alias": {
  2271. "dev-master": "1.0.x-dev"
  2272. }
  2273. },
  2274. "autoload": {
  2275. "psr-0": {
  2276. "Silex\\Provider\\": ""
  2277. }
  2278. },
  2279. "notification-url": "https://packagist.org/downloads/",
  2280. "license": [
  2281. "MIT"
  2282. ],
  2283. "authors": [
  2284. {
  2285. "name": "Fabien Potencier",
  2286. "email": "fabien@symfony.com"
  2287. }
  2288. ],
  2289. "description": "A WebProfiler for Silex",
  2290. "homepage": "http://silex.sensiolabs.org/",
  2291. "time": "2013-03-08 07:16:44"
  2292. },
  2293. {
  2294. "name": "symfony/browser-kit",
  2295. "version": "dev-master",
  2296. "target-dir": "Symfony/Component/BrowserKit",
  2297. "source": {
  2298. "type": "git",
  2299. "url": "https://github.com/symfony/BrowserKit.git",
  2300. "reference": "b0aa5249d957930f93c0c2a3f1f10db0721cb6e9"
  2301. },
  2302. "dist": {
  2303. "type": "zip",
  2304. "url": "https://api.github.com/repos/symfony/BrowserKit/zipball/b0aa5249d957930f93c0c2a3f1f10db0721cb6e9",
  2305. "reference": "b0aa5249d957930f93c0c2a3f1f10db0721cb6e9",
  2306. "shasum": ""
  2307. },
  2308. "require": {
  2309. "php": ">=5.3.3",
  2310. "symfony/dom-crawler": ">=2.0,<3.0"
  2311. },
  2312. "require-dev": {
  2313. "symfony/css-selector": ">=2.0,<3.0",
  2314. "symfony/process": ">=2.0,<3.0"
  2315. },
  2316. "suggest": {
  2317. "symfony/process": "2.2.*"
  2318. },
  2319. "type": "library",
  2320. "extra": {
  2321. "branch-alias": {
  2322. "dev-master": "2.3-dev"
  2323. }
  2324. },
  2325. "autoload": {
  2326. "psr-0": {
  2327. "Symfony\\Component\\BrowserKit\\": ""
  2328. }
  2329. },
  2330. "notification-url": "https://packagist.org/downloads/",
  2331. "license": [
  2332. "MIT"
  2333. ],
  2334. "authors": [
  2335. {
  2336. "name": "Fabien Potencier",
  2337. "email": "fabien@symfony.com"
  2338. },
  2339. {
  2340. "name": "Symfony Community",
  2341. "homepage": "http://symfony.com/contributors"
  2342. }
  2343. ],
  2344. "description": "Symfony BrowserKit Component",
  2345. "homepage": "http://symfony.com",
  2346. "time": "2013-03-20 14:03:03"
  2347. },
  2348. {
  2349. "name": "symfony/dom-crawler",
  2350. "version": "v2.2.0",
  2351. "target-dir": "Symfony/Component/DomCrawler",
  2352. "source": {
  2353. "type": "git",
  2354. "url": "https://github.com/symfony/DomCrawler.git",
  2355. "reference": "v2.2.0"
  2356. },
  2357. "dist": {
  2358. "type": "zip",
  2359. "url": "https://api.github.com/repos/symfony/DomCrawler/zipball/v2.2.0",
  2360. "reference": "v2.2.0",
  2361. "shasum": ""
  2362. },
  2363. "require": {
  2364. "php": ">=5.3.3"
  2365. },
  2366. "require-dev": {
  2367. "symfony/css-selector": ">=2.0,<3.0"
  2368. },
  2369. "suggest": {
  2370. "symfony/css-selector": "2.2.*"
  2371. },
  2372. "type": "library",
  2373. "extra": {
  2374. "branch-alias": {
  2375. "dev-master": "2.2-dev"
  2376. }
  2377. },
  2378. "autoload": {
  2379. "psr-0": {
  2380. "Symfony\\Component\\DomCrawler\\": ""
  2381. }
  2382. },
  2383. "notification-url": "https://packagist.org/downloads/",
  2384. "license": [
  2385. "MIT"
  2386. ],
  2387. "authors": [
  2388. {
  2389. "name": "Fabien Potencier",
  2390. "email": "fabien@symfony.com"
  2391. },
  2392. {
  2393. "name": "Symfony Community",
  2394. "homepage": "http://symfony.com/contributors"
  2395. }
  2396. ],
  2397. "description": "Symfony DomCrawler Component",
  2398. "homepage": "http://symfony.com",
  2399. "time": "2013-03-01 06:43:14"
  2400. },
  2401. {
  2402. "name": "symfony/stopwatch",
  2403. "version": "v2.2.0",
  2404. "target-dir": "Symfony/Component/Stopwatch",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/symfony/Stopwatch.git",
  2408. "reference": "v2.2.0-RC3"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/symfony/Stopwatch/zipball/v2.2.0-RC3",
  2413. "reference": "v2.2.0-RC3",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "php": ">=5.3.3"
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-master": "2.2-dev"
  2423. }
  2424. },
  2425. "autoload": {
  2426. "psr-0": {
  2427. "Symfony\\Component\\Stopwatch\\": ""
  2428. }
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "MIT"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "Fabien Potencier",
  2437. "email": "fabien@symfony.com"
  2438. },
  2439. {
  2440. "name": "Symfony Community",
  2441. "homepage": "http://symfony.com/contributors"
  2442. }
  2443. ],
  2444. "description": "Symfony Stopwatch Component",
  2445. "homepage": "http://symfony.com",
  2446. "time": "2013-01-04 16:58:00"
  2447. },
  2448. {
  2449. "name": "symfony/web-profiler-bundle",
  2450. "version": "v2.2.0",
  2451. "target-dir": "Symfony/Bundle/WebProfilerBundle",
  2452. "source": {
  2453. "type": "git",
  2454. "url": "https://github.com/symfony/WebProfilerBundle.git",
  2455. "reference": "v2.2.0-RC3"
  2456. },
  2457. "dist": {
  2458. "type": "zip",
  2459. "url": "https://api.github.com/repos/symfony/WebProfilerBundle/zipball/v2.2.0-RC3",
  2460. "reference": "v2.2.0-RC3",
  2461. "shasum": ""
  2462. },
  2463. "require": {
  2464. "php": ">=5.3.3",
  2465. "symfony/http-kernel": ">=2.2,<2.3-dev",
  2466. "symfony/routing": ">=2.2,<2.3-dev",
  2467. "symfony/twig-bridge": "2.2.*"
  2468. },
  2469. "require-dev": {
  2470. "symfony/config": ">=2.2,<2.3-dev",
  2471. "symfony/dependency-injection": ">=2.0,<3.0",
  2472. "symfony/stopwatch": ">=2.2,<2.3-dev"
  2473. },
  2474. "type": "symfony-bundle",
  2475. "extra": {
  2476. "branch-alias": {
  2477. "dev-master": "2.2-dev"
  2478. }
  2479. },
  2480. "autoload": {
  2481. "psr-0": {
  2482. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  2483. }
  2484. },
  2485. "notification-url": "https://packagist.org/downloads/",
  2486. "license": [
  2487. "MIT"
  2488. ],
  2489. "authors": [
  2490. {
  2491. "name": "Fabien Potencier",
  2492. "email": "fabien@symfony.com"
  2493. },
  2494. {
  2495. "name": "Symfony Community",
  2496. "homepage": "http://symfony.com/contributors"
  2497. }
  2498. ],
  2499. "description": "Symfony WebProfilerBundle",
  2500. "homepage": "http://symfony.com",
  2501. "time": "2013-02-15 09:53:40"
  2502. }
  2503. ],
  2504. "aliases": [
  2505. ],
  2506. "minimum-stability": "stable",
  2507. "stability-flags": {
  2508. "silex/silex": 20,
  2509. "symfony/config": 20,
  2510. "symfony/console": 20,
  2511. "symfony/twig-bridge": 20,
  2512. "symfony/doctrine-bridge": 20,
  2513. "symfony/security": 20,
  2514. "symfony/form": 20,
  2515. "symfony/property-access": 20,
  2516. "symfony/validator": 20,
  2517. "symfony/translation": 20,
  2518. "symfony/dependency-injection": 20,
  2519. "dflydev/doctrine-orm-service-provider": 20,
  2520. "doctrine/migrations": 20,
  2521. "pagerfanta/pagerfanta": 20,
  2522. "knplabs/knp-menu": 20,
  2523. "gedmo/doctrine-extensions": 20,
  2524. "chamilo/chash": 20,
  2525. "igorw/config-service-provider": 20,
  2526. "mpdf/mpdf": 20,
  2527. "ezyang/htmlpurifier": 20,
  2528. "mheap/silex-assetic": 20,
  2529. "leafo/lessphp": 20,
  2530. "natxet/cssmin": 20,
  2531. "realityking/pchart": 20,
  2532. "symfony/browser-kit": 20
  2533. },
  2534. "platform": {
  2535. "php": ">=5.3.2"
  2536. },
  2537. "platform-dev": [
  2538. ]
  2539. }