composer.lock 95 KB

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