composer.lock 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642
  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": "94cb7c5f7d4efa532d6bd2b1a4ba0cd6",
  7. "packages": [
  8. {
  9. "name": "bt51/gaufrette-serviceprovider",
  10. "version": "dev-master",
  11. "source": {
  12. "type": "git",
  13. "url": "https://github.com/bt51/GaufretteServiceProvider.git",
  14. "reference": "6bba885170beb6719e7256e407b172f90af3159a"
  15. },
  16. "dist": {
  17. "type": "zip",
  18. "url": "https://api.github.com/repos/bt51/GaufretteServiceProvider/zipball/6bba885170beb6719e7256e407b172f90af3159a",
  19. "reference": "6bba885170beb6719e7256e407b172f90af3159a",
  20. "shasum": ""
  21. },
  22. "require": {
  23. "knplabs/gaufrette": "dev-master@dev",
  24. "php": ">=5.3.2"
  25. },
  26. "require-dev": {
  27. "silex/silex": "1.0.x-dev"
  28. },
  29. "type": "library",
  30. "autoload": {
  31. "psr-0": {
  32. "Bt51\\Silex\\Provider\\GaufretteServiceProvider": "src/"
  33. }
  34. },
  35. "notification-url": "https://packagist.org/downloads/",
  36. "license": [
  37. "MIT"
  38. ],
  39. "authors": [
  40. {
  41. "name": "Ben Tollakson",
  42. "email": "ben.tollakson@gmail.com"
  43. }
  44. ],
  45. "description": "Gaufrette service provider for silex",
  46. "homepage": "https://github.com/bt51/GaufretteServiceProvider",
  47. "keywords": [
  48. "extension",
  49. "gaufrette",
  50. "silex",
  51. "silex-extension"
  52. ],
  53. "time": "2012-12-07 00:50:44"
  54. },
  55. {
  56. "name": "chamilo/chash",
  57. "version": "dev-master",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/chamilo/chash.git",
  61. "reference": "0720bc4ab428494465ac6bab6532cb167704183f"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/chamilo/chash/zipball/0720bc4ab428494465ac6bab6532cb167704183f",
  66. "reference": "0720bc4ab428494465ac6bab6532cb167704183f",
  67. "shasum": ""
  68. },
  69. "require": {
  70. "php": ">=5.3.2",
  71. "symfony/console": ">=2.3,<3.0",
  72. "symfony/yaml": ">=2.3,<3.0"
  73. },
  74. "type": "library",
  75. "autoload": {
  76. "psr-0": {
  77. "Chash": "src/"
  78. }
  79. },
  80. "notification-url": "https://packagist.org/downloads/",
  81. "homepage": "http://www.chamilo.org",
  82. "time": "2013-06-14 09:54:38"
  83. },
  84. {
  85. "name": "dflydev/doctrine-orm-service-provider",
  86. "version": "dev-master",
  87. "source": {
  88. "type": "git",
  89. "url": "https://github.com/dflydev/dflydev-doctrine-orm-service-provider.git",
  90. "reference": "a8c4f4cc15750c00746cf4cfb55220ebc707727c"
  91. },
  92. "dist": {
  93. "type": "zip",
  94. "url": "https://api.github.com/repos/dflydev/dflydev-doctrine-orm-service-provider/zipball/a8c4f4cc15750c00746cf4cfb55220ebc707727c",
  95. "reference": "a8c4f4cc15750c00746cf4cfb55220ebc707727c",
  96. "shasum": ""
  97. },
  98. "require": {
  99. "doctrine/orm": ">=2.3,<3.0",
  100. "php": ">=5.3.3",
  101. "pimple/pimple": "1.*@dev"
  102. },
  103. "require-dev": {
  104. "cilex/cilex": "1.*@dev",
  105. "cilex/console-service-provider": "@dev",
  106. "silex/silex": "1.*@dev"
  107. },
  108. "suggest": {
  109. "dflydev/psr0-resource-locator-service-provider": "1.0.*@dev"
  110. },
  111. "type": "library",
  112. "extra": {
  113. "branch-alias": {
  114. "dev-master": "1.0-dev"
  115. }
  116. },
  117. "autoload": {
  118. "psr-0": {
  119. "Dflydev\\Cilex\\Provider\\DoctrineOrm": "src",
  120. "Dflydev\\Pimple\\Provider\\DoctrineOrm": "src",
  121. "Dflydev\\Silex\\Provider\\DoctrineOrm": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "MIT"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Dragonfly Development Inc.",
  131. "email": "info@dflydev.com",
  132. "homepage": "http://dflydev.com"
  133. },
  134. {
  135. "name": "Beau Simensen",
  136. "email": "beau@dflydev.com",
  137. "homepage": "http://beausimensen.com"
  138. }
  139. ],
  140. "description": "Doctrine ORM Service Provider",
  141. "keywords": [
  142. "cilex",
  143. "doctrine",
  144. "orm",
  145. "pimple",
  146. "silex"
  147. ],
  148. "time": "2013-06-05 14:23:06"
  149. },
  150. {
  151. "name": "doctrine/common",
  152. "version": "2.3.0",
  153. "source": {
  154. "type": "git",
  155. "url": "https://github.com/doctrine/common",
  156. "reference": "2.3.0"
  157. },
  158. "dist": {
  159. "type": "zip",
  160. "url": "https://github.com/doctrine/common/zipball/2.3.0",
  161. "reference": "2.3.0",
  162. "shasum": ""
  163. },
  164. "require": {
  165. "php": ">=5.3.2"
  166. },
  167. "type": "library",
  168. "extra": {
  169. "branch-alias": {
  170. "dev-master": "2.3.x-dev"
  171. }
  172. },
  173. "autoload": {
  174. "psr-0": {
  175. "Doctrine\\Common": "lib/"
  176. }
  177. },
  178. "notification-url": "https://packagist.org/downloads/",
  179. "license": [
  180. "MIT"
  181. ],
  182. "authors": [
  183. {
  184. "name": "Jonathan Wage",
  185. "email": "jonwage@gmail.com",
  186. "homepage": "http://www.jwage.com/"
  187. },
  188. {
  189. "name": "Guilherme Blanco",
  190. "email": "guilhermeblanco@gmail.com",
  191. "homepage": "http://www.instaclick.com"
  192. },
  193. {
  194. "name": "Roman Borschel",
  195. "email": "roman@code-factory.org"
  196. },
  197. {
  198. "name": "Benjamin Eberlei",
  199. "email": "kontakt@beberlei.de"
  200. },
  201. {
  202. "name": "Johannes M. Schmitt",
  203. "email": "schmittjoh@gmail.com",
  204. "homepage": "http://jmsyst.com",
  205. "role": "Developer of wrapped JMSSerializerBundle"
  206. }
  207. ],
  208. "description": "Common Library for Doctrine projects",
  209. "homepage": "http://www.doctrine-project.org",
  210. "keywords": [
  211. "annotations",
  212. "collections",
  213. "eventmanager",
  214. "persistence",
  215. "spl"
  216. ],
  217. "time": "2012-09-19 22:55:18"
  218. },
  219. {
  220. "name": "doctrine/dbal",
  221. "version": "2.3.4",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/doctrine/dbal.git",
  225. "reference": "2.3.4"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/doctrine/dbal/zipball/2.3.4",
  230. "reference": "2.3.4",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "doctrine/common": ">=2.3.0,<2.5-dev",
  235. "php": ">=5.3.2"
  236. },
  237. "type": "library",
  238. "extra": {
  239. "branch-alias": {
  240. "dev-master": "2.3.x-dev"
  241. }
  242. },
  243. "autoload": {
  244. "psr-0": {
  245. "Doctrine\\DBAL": "lib/"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "authors": [
  253. {
  254. "name": "Jonathan Wage",
  255. "email": "jonwage@gmail.com",
  256. "homepage": "http://www.jwage.com/"
  257. },
  258. {
  259. "name": "Guilherme Blanco",
  260. "email": "guilhermeblanco@gmail.com",
  261. "homepage": "http://www.instaclick.com"
  262. },
  263. {
  264. "name": "Roman Borschel",
  265. "email": "roman@code-factory.org"
  266. },
  267. {
  268. "name": "Benjamin Eberlei",
  269. "email": "kontakt@beberlei.de"
  270. }
  271. ],
  272. "description": "Database Abstraction Layer",
  273. "homepage": "http://www.doctrine-project.org",
  274. "keywords": [
  275. "database",
  276. "dbal",
  277. "persistence",
  278. "queryobject"
  279. ],
  280. "time": "2013-05-11 07:45:37"
  281. },
  282. {
  283. "name": "doctrine/migrations",
  284. "version": "dev-master",
  285. "source": {
  286. "type": "git",
  287. "url": "https://github.com/doctrine/migrations.git",
  288. "reference": "ced3b419252af47f29d6680f9ec74df00ee0c58e"
  289. },
  290. "dist": {
  291. "type": "zip",
  292. "url": "https://api.github.com/repos/doctrine/migrations/zipball/ced3b419252af47f29d6680f9ec74df00ee0c58e",
  293. "reference": "ced3b419252af47f29d6680f9ec74df00ee0c58e",
  294. "shasum": ""
  295. },
  296. "require": {
  297. "doctrine/dbal": ">=2.0,<2.5.x-dev",
  298. "php": ">=5.3.2"
  299. },
  300. "require-dev": {
  301. "symfony/console": "2.*",
  302. "symfony/yaml": "2.*"
  303. },
  304. "suggest": {
  305. "symfony/console": "to run the migration from the console"
  306. },
  307. "type": "library",
  308. "autoload": {
  309. "psr-0": {
  310. "Doctrine\\DBAL\\Migrations": "lib"
  311. }
  312. },
  313. "notification-url": "https://packagist.org/downloads/",
  314. "license": [
  315. "LGPL"
  316. ],
  317. "authors": [
  318. {
  319. "name": "Jonathan Wage",
  320. "email": "jonwage@gmail.com",
  321. "homepage": "http://www.jwage.com/"
  322. },
  323. {
  324. "name": "Benjamin Eberlei",
  325. "email": "kontakt@beberlei.de"
  326. }
  327. ],
  328. "description": "Database Schema migrations using Doctrine DBAL",
  329. "homepage": "http://www.doctrine-project.org",
  330. "keywords": [
  331. "database",
  332. "migrations"
  333. ],
  334. "time": "2013-06-27 19:46:00"
  335. },
  336. {
  337. "name": "doctrine/orm",
  338. "version": "2.3.4",
  339. "source": {
  340. "type": "git",
  341. "url": "https://github.com/doctrine/doctrine2.git",
  342. "reference": "2.3.4"
  343. },
  344. "dist": {
  345. "type": "zip",
  346. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/2.3.4",
  347. "reference": "2.3.4",
  348. "shasum": ""
  349. },
  350. "require": {
  351. "doctrine/dbal": "2.3.*",
  352. "ext-pdo": "*",
  353. "php": ">=5.3.2",
  354. "symfony/console": "2.*"
  355. },
  356. "suggest": {
  357. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  358. },
  359. "bin": [
  360. "bin/doctrine",
  361. "bin/doctrine.php"
  362. ],
  363. "type": "library",
  364. "extra": {
  365. "branch-alias": {
  366. "dev-master": "2.3.x-dev"
  367. }
  368. },
  369. "autoload": {
  370. "psr-0": {
  371. "Doctrine\\ORM": "lib/"
  372. }
  373. },
  374. "notification-url": "https://packagist.org/downloads/",
  375. "license": [
  376. "MIT"
  377. ],
  378. "authors": [
  379. {
  380. "name": "Jonathan Wage",
  381. "email": "jonwage@gmail.com",
  382. "homepage": "http://www.jwage.com/"
  383. },
  384. {
  385. "name": "Guilherme Blanco",
  386. "email": "guilhermeblanco@gmail.com",
  387. "homepage": "http://www.instaclick.com"
  388. },
  389. {
  390. "name": "Roman Borschel",
  391. "email": "roman@code-factory.org"
  392. },
  393. {
  394. "name": "Benjamin Eberlei",
  395. "email": "kontakt@beberlei.de"
  396. }
  397. ],
  398. "description": "Object-Relational-Mapper for PHP",
  399. "homepage": "http://www.doctrine-project.org",
  400. "keywords": [
  401. "database",
  402. "orm"
  403. ],
  404. "time": "2013-05-11 07:51:12"
  405. },
  406. {
  407. "name": "ezyang/htmlpurifier",
  408. "version": "v4.5.0",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/ezyang/htmlpurifier.git",
  412. "reference": "v4.5.0"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/v4.5.0",
  417. "reference": "v4.5.0",
  418. "shasum": ""
  419. },
  420. "require": {
  421. "php": ">=5.2"
  422. },
  423. "type": "library",
  424. "autoload": {
  425. "psr-0": {
  426. "HTMLPurifier": "library/"
  427. },
  428. "files": [
  429. "library/HTMLPurifier.composer.php"
  430. ]
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "LGPL"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Edward Z. Yang",
  439. "email": "admin@htmlpurifier.org",
  440. "homepage": "http://ezyang.com"
  441. }
  442. ],
  443. "description": "Standards compliant HTML filter written in PHP",
  444. "homepage": "http://htmlpurifier.org/",
  445. "keywords": [
  446. "html"
  447. ],
  448. "time": "2013-02-18 00:04:08"
  449. },
  450. {
  451. "name": "franmomu/silex-pagerfanta-provider",
  452. "version": "2.3.x-dev",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/jmontoyaa/silex-pagerfanta-provider.git",
  456. "reference": "9e88fe51bb42cd5dec754bba9e8a5186f905778b"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/jmontoyaa/silex-pagerfanta-provider/zipball/9e88fe51bb42cd5dec754bba9e8a5186f905778b",
  461. "reference": "9e88fe51bb42cd5dec754bba9e8a5186f905778b",
  462. "shasum": ""
  463. },
  464. "require": {
  465. "pagerfanta/pagerfanta": "dev-master",
  466. "silex/silex": "1.0.*@dev",
  467. "symfony/property-access": "2.3.*@dev"
  468. },
  469. "type": "library",
  470. "extra": {
  471. "branch-alias": {
  472. "dev-master": "1.0.x-dev"
  473. }
  474. },
  475. "autoload": {
  476. "psr-0": {
  477. "FranMoreno": "src/"
  478. }
  479. },
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Fran Moreno",
  486. "email": "franmomu@gmail.com",
  487. "homepage": "http://showmethecode.es"
  488. }
  489. ],
  490. "description": "Silex ServiceProvider for Pagerfanta Library",
  491. "homepage": "https://github.com/franmomu/silex-pagerfanta-provider",
  492. "keywords": [
  493. "pagerfanta",
  494. "service provider",
  495. "silex"
  496. ],
  497. "support": {
  498. "source": "https://github.com/jmontoyaa/silex-pagerfanta-provider/tree/2.3"
  499. },
  500. "time": "2013-04-22 11:39:08"
  501. },
  502. {
  503. "name": "gedmo/doctrine-extensions",
  504. "version": "dev-master",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/l3pp4rd/DoctrineExtensions.git",
  508. "reference": "f9322867ee9ded7531c3f2f5d8c6c146c4ed2e9e"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/l3pp4rd/DoctrineExtensions/zipball/f9322867ee9ded7531c3f2f5d8c6c146c4ed2e9e",
  513. "reference": "f9322867ee9ded7531c3f2f5d8c6c146c4ed2e9e",
  514. "shasum": ""
  515. },
  516. "require": {
  517. "doctrine/common": ">=2.2,<2.5-dev",
  518. "php": ">=5.3.2"
  519. },
  520. "require-dev": {
  521. "doctrine/common": ">=2.4.0-RC3",
  522. "doctrine/dbal": ">=2.4.0-RC1",
  523. "doctrine/mongodb": ">=1.0.3",
  524. "doctrine/mongodb-odm": ">=1.0.0-BETA9",
  525. "doctrine/orm": ">=2.4.0-RC1",
  526. "symfony/yaml": "2.3.1"
  527. },
  528. "suggest": {
  529. "doctrine/dbal": ">=2.3.2",
  530. "doctrine/mongodb": ">=1.0.1",
  531. "doctrine/mongodb-odm": ">=1.0.0-BETA7",
  532. "doctrine/orm": ">=2.3.2"
  533. },
  534. "type": "library",
  535. "extra": {
  536. "branch-alias": {
  537. "dev-master": "2.3.x-dev"
  538. }
  539. },
  540. "autoload": {
  541. "psr-0": {
  542. "Gedmo\\": "lib/"
  543. }
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "MIT"
  548. ],
  549. "authors": [
  550. {
  551. "name": "David Buchmann",
  552. "email": "david@liip.ch"
  553. },
  554. {
  555. "name": "Gediminas Morkevicius",
  556. "email": "gediminas.morkevicius@gmail.com"
  557. },
  558. {
  559. "name": "Gustavo Falco",
  560. "email": "comfortablynumb84@gmail.com"
  561. }
  562. ],
  563. "description": "Doctrine2 behavioral extensions",
  564. "homepage": "http://gediminasm.org/",
  565. "keywords": [
  566. "Blameable",
  567. "behaviors",
  568. "doctrine2",
  569. "extensions",
  570. "gedmo",
  571. "loggable",
  572. "nestedset",
  573. "sluggable",
  574. "sortable",
  575. "timestampable",
  576. "translatable",
  577. "tree",
  578. "uploadable"
  579. ],
  580. "time": "2013-06-26 14:50:24"
  581. },
  582. {
  583. "name": "grom/silex-service-provider",
  584. "version": "dev-master",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/GromNaN/SilexServiceProvider.git",
  588. "reference": "v1.0.0"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/GromNaN/SilexServiceProvider/zipball/v1.0.0",
  593. "reference": "v1.0.0",
  594. "shasum": ""
  595. },
  596. "require": {
  597. "imagine/imagine": "*",
  598. "knplabs/knp-snappy": "dev-master",
  599. "silex/silex": ">=1.0.0-dev"
  600. },
  601. "type": "library",
  602. "autoload": {
  603. "psr-0": {
  604. "Grom\\Silex": "src"
  605. }
  606. },
  607. "notification-url": "https://packagist.org/downloads/",
  608. "license": [
  609. "MIT"
  610. ],
  611. "authors": [
  612. {
  613. "name": "Jérôme Tamarelle",
  614. "email": "jerome@tamarelle.net"
  615. }
  616. ],
  617. "description": "Imagine & KnpSnappy integration for Silex.",
  618. "homepage": "http://github.com/GromNaN/SilexServiceProvider",
  619. "keywords": [
  620. "image",
  621. "imagine",
  622. "pdf",
  623. "silex",
  624. "snappy"
  625. ],
  626. "time": "2012-06-03 01:27:23"
  627. },
  628. {
  629. "name": "igorw/config-service-provider",
  630. "version": "dev-master",
  631. "source": {
  632. "type": "git",
  633. "url": "https://github.com/igorw/ConfigServiceProvider.git",
  634. "reference": "v1.2.1"
  635. },
  636. "dist": {
  637. "type": "zip",
  638. "url": "https://api.github.com/repos/igorw/ConfigServiceProvider/zipball/v1.2.1",
  639. "reference": "v1.2.1",
  640. "shasum": ""
  641. },
  642. "require": {
  643. "silex/silex": ">=1.0,<2.0"
  644. },
  645. "require-dev": {
  646. "jamesmoss/toml": ">=0.1,<1.0",
  647. "symfony/yaml": ">=2.1,<3.0"
  648. },
  649. "suggest": {
  650. "jamesmoss/toml": "~0.1",
  651. "symfony/yaml": "~2.1"
  652. },
  653. "type": "library",
  654. "extra": {
  655. "branch-alias": {
  656. "dev-master": "1.2-dev"
  657. }
  658. },
  659. "autoload": {
  660. "psr-0": {
  661. "Igorw\\Silex": "src"
  662. }
  663. },
  664. "notification-url": "https://packagist.org/downloads/",
  665. "license": [
  666. "MIT"
  667. ],
  668. "authors": [
  669. {
  670. "name": "Igor Wiedler",
  671. "email": "igor@wiedler.ch",
  672. "homepage": "http://wiedler.ch/igor/"
  673. },
  674. {
  675. "name": "Contributors",
  676. "homepage": "https://github.com/igorw/ConfigServiceProvider/contributors"
  677. }
  678. ],
  679. "description": "A config ServiceProvider for Silex with support for php, json and yaml.",
  680. "keywords": [
  681. "silex"
  682. ],
  683. "time": "2013-05-31 14:23:34"
  684. },
  685. {
  686. "name": "imagine/imagine",
  687. "version": "dev-develop",
  688. "source": {
  689. "type": "git",
  690. "url": "https://github.com/avalanche123/Imagine.git",
  691. "reference": "9c70f0d12b44e16f31fc7a4701082aa46d523761"
  692. },
  693. "dist": {
  694. "type": "zip",
  695. "url": "https://api.github.com/repos/avalanche123/Imagine/zipball/9c70f0d12b44e16f31fc7a4701082aa46d523761",
  696. "reference": "9c70f0d12b44e16f31fc7a4701082aa46d523761",
  697. "shasum": ""
  698. },
  699. "require": {
  700. "php": ">=5.3.2"
  701. },
  702. "require-dev": {
  703. "sami/sami": "dev-master"
  704. },
  705. "suggest": {
  706. "ext-gd": "to use the GD implementation",
  707. "ext-gmagick": "to use the Gmagick implementation",
  708. "ext-imagick": "to use the Imagick implementation"
  709. },
  710. "type": "library",
  711. "autoload": {
  712. "psr-0": {
  713. "Imagine": "lib/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Bulat Shakirzyanov",
  723. "email": "mallluhuct@gmail.com",
  724. "homepage": "http://avalanche123.com"
  725. }
  726. ],
  727. "description": "Image processing for PHP 5.3",
  728. "homepage": "http://imagine.readthedocs.org/",
  729. "keywords": [
  730. "drawing",
  731. "graphics",
  732. "image manipulation",
  733. "image processing"
  734. ],
  735. "time": "2013-04-29 19:10:37"
  736. },
  737. {
  738. "name": "jbroadway/urlify",
  739. "version": "dev-master",
  740. "source": {
  741. "type": "git",
  742. "url": "https://github.com/jbroadway/urlify.git",
  743. "reference": "064241f45d198239b589c657ea22966f95c80d96"
  744. },
  745. "dist": {
  746. "type": "zip",
  747. "url": "https://api.github.com/repos/jbroadway/urlify/zipball/064241f45d198239b589c657ea22966f95c80d96",
  748. "reference": "064241f45d198239b589c657ea22966f95c80d96",
  749. "shasum": ""
  750. },
  751. "require": {
  752. "php": ">=5.3.0"
  753. },
  754. "type": "library",
  755. "autoload": {
  756. "psr-0": {
  757. "URLify": ""
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Johnny Broadway",
  767. "email": "johnny@johnnybroadway.com",
  768. "homepage": "http://www.johnnybroadway.com/",
  769. "role": "Main Developer"
  770. }
  771. ],
  772. "description": "PHP port of URLify.js from the Django project. Transliterates non-ascii characters for use in URLs.",
  773. "homepage": "https://github.com/jbroadway/urlify",
  774. "keywords": [
  775. "encode",
  776. "iconv",
  777. "link",
  778. "slug",
  779. "translit",
  780. "transliterate",
  781. "transliteration",
  782. "url",
  783. "urlify"
  784. ],
  785. "time": "2013-04-08 13:21:42"
  786. },
  787. {
  788. "name": "jmontoyaa/phpqrcode",
  789. "version": "dev-master",
  790. "source": {
  791. "type": "git",
  792. "url": "https://github.com/jmontoyaa/phpqrcode.git",
  793. "reference": "f7b600722469b0d98de509206afc4e0738cb44cb"
  794. },
  795. "dist": {
  796. "type": "zip",
  797. "url": "https://api.github.com/repos/jmontoyaa/phpqrcode/zipball/f7b600722469b0d98de509206afc4e0738cb44cb",
  798. "reference": "f7b600722469b0d98de509206afc4e0738cb44cb",
  799. "shasum": ""
  800. },
  801. "require": {
  802. "php": ">=4.3.10"
  803. },
  804. "type": "library",
  805. "autoload": {
  806. "classmap": [
  807. "."
  808. ]
  809. },
  810. "license": [
  811. "LGPL"
  812. ],
  813. "authors": [
  814. {
  815. "name": "Julio Montoya"
  816. }
  817. ],
  818. "description": "A PHP class to generate QR Code",
  819. "homepage": "http://github.com/jmontoyaa/phpqrcode/",
  820. "keywords": [
  821. "php",
  822. "qrcode"
  823. ],
  824. "support": {
  825. "source": "https://github.com/jmontoyaa/phpqrcode/tree/master"
  826. },
  827. "time": "2013-05-10 14:08:33"
  828. },
  829. {
  830. "name": "knplabs/console-service-provider",
  831. "version": "dev-master",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/KnpLabs/ConsoleServiceProvider.git",
  835. "reference": "1f1a3315409814d01702a47a8823549c6996de41"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/KnpLabs/ConsoleServiceProvider/zipball/1f1a3315409814d01702a47a8823549c6996de41",
  840. "reference": "1f1a3315409814d01702a47a8823549c6996de41",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "php": ">=5.3.2",
  845. "symfony/console": ">=2.1,<3.0"
  846. },
  847. "type": "library",
  848. "autoload": {
  849. "psr-0": {
  850. "Knp\\": ""
  851. }
  852. },
  853. "notification-url": "https://packagist.org/downloads/",
  854. "license": [
  855. "MIT"
  856. ],
  857. "authors": [
  858. {
  859. "name": "KnpLabs",
  860. "homepage": "http://knplabs.com"
  861. }
  862. ],
  863. "description": "console service provider for Silex",
  864. "homepage": "http://knplabs.com",
  865. "keywords": [
  866. "console",
  867. "silex"
  868. ],
  869. "time": "2013-06-13 12:43:39"
  870. },
  871. {
  872. "name": "knplabs/gaufrette",
  873. "version": "dev-master",
  874. "source": {
  875. "type": "git",
  876. "url": "https://github.com/KnpLabs/Gaufrette.git",
  877. "reference": "067c6f4e56c9debcda0bc90029cd4c24aac2de9b"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://api.github.com/repos/KnpLabs/Gaufrette/zipball/067c6f4e56c9debcda0bc90029cd4c24aac2de9b",
  882. "reference": "067c6f4e56c9debcda0bc90029cd4c24aac2de9b",
  883. "shasum": ""
  884. },
  885. "require": {
  886. "php": ">=5.3.2"
  887. },
  888. "require-dev": {
  889. "amazonwebservices/aws-sdk-for-php": "1.5.*",
  890. "doctrine/dbal": ">=2.3",
  891. "dropbox-php/dropbox-php": "*",
  892. "herzult/php-ssh": "*",
  893. "phpseclib/phpseclib": "dev-master",
  894. "phpspec/phpspec": "2.0.*",
  895. "phpunit/phpunit": "3.7.*",
  896. "rackspace/php-cloudfiles": "*",
  897. "rackspace/php-opencloud": "dev-master"
  898. },
  899. "suggest": {
  900. "amazonwebservices/aws-sdk-for-php": "to use the Amazon S3 adapter",
  901. "doctrine/dbal": "to use the Doctrine DBAL adapter",
  902. "dropbox-php/dropbox-php": "to use the Dropbox adapter",
  903. "ext-apc": "to use the APC adapter",
  904. "ext-curl": "*",
  905. "ext-fileinfo": "*",
  906. "ext-mbstring": "*",
  907. "ext-mongo": "*",
  908. "ext-zip": "to use the Zip adapter",
  909. "knplabs/knp-gaufrette-bundle": "to use with Symfony2",
  910. "phpseclib/phpseclib": "to use the SFTP",
  911. "rackspace/php-opencloud": "to use Opencloud adapter"
  912. },
  913. "type": "library",
  914. "extra": {
  915. "branch-alias": {
  916. "dev-master": "0.2.x-dev"
  917. }
  918. },
  919. "autoload": {
  920. "psr-0": {
  921. "Gaufrette": "src/"
  922. }
  923. },
  924. "notification-url": "https://packagist.org/downloads/",
  925. "license": [
  926. "MIT"
  927. ],
  928. "authors": [
  929. {
  930. "name": "The contributors",
  931. "homepage": "http://github.com/knplabs/Gaufrette/contributors"
  932. },
  933. {
  934. "name": "KnpLabs Team",
  935. "homepage": "http://knplabs.com"
  936. }
  937. ],
  938. "description": "PHP5 library that provides a filesystem abstraction layer",
  939. "homepage": "http://knplabs.com",
  940. "keywords": [
  941. "abstraction",
  942. "file",
  943. "filesystem",
  944. "media"
  945. ],
  946. "time": "2013-06-28 08:38:50"
  947. },
  948. {
  949. "name": "knplabs/knp-menu",
  950. "version": "dev-master",
  951. "source": {
  952. "type": "git",
  953. "url": "https://github.com/KnpLabs/KnpMenu.git",
  954. "reference": "7baf621fb77867e49daca7dd72b443ea232cb5e1"
  955. },
  956. "dist": {
  957. "type": "zip",
  958. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/7baf621fb77867e49daca7dd72b443ea232cb5e1",
  959. "reference": "7baf621fb77867e49daca7dd72b443ea232cb5e1",
  960. "shasum": ""
  961. },
  962. "require": {
  963. "php": ">=5.3.0"
  964. },
  965. "require-dev": {
  966. "pimple/pimple": "1.0.*",
  967. "silex/silex": "1.0.*",
  968. "twig/twig": ">=1.2,<2.0-dev"
  969. },
  970. "suggest": {
  971. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  972. "silex/silex": "for the integration with your silex application",
  973. "twig/twig": "for the TwigRenderer and the integration with your templates"
  974. },
  975. "type": "library",
  976. "extra": {
  977. "branch-alias": {
  978. "dev-master": "2.0.x-dev"
  979. }
  980. },
  981. "autoload": {
  982. "psr-0": {
  983. "Knp\\Menu\\": "src/"
  984. }
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "MIT"
  989. ],
  990. "authors": [
  991. {
  992. "name": "Christophe Coevoet",
  993. "email": "stof@notk.org"
  994. },
  995. {
  996. "name": "Knplabs",
  997. "homepage": "http://knplabs.com"
  998. },
  999. {
  1000. "name": "Symfony Community",
  1001. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1002. }
  1003. ],
  1004. "description": "An object oriented menu library",
  1005. "homepage": "http://knplabs.com",
  1006. "keywords": [
  1007. "menu",
  1008. "tree"
  1009. ],
  1010. "time": "2013-06-24 00:02:29"
  1011. },
  1012. {
  1013. "name": "knplabs/knp-snappy",
  1014. "version": "dev-master",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/KnpLabs/snappy.git",
  1018. "reference": "524bbd3b1883204ea3a7f11f31fc38b81f6426fe"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/524bbd3b1883204ea3a7f11f31fc38b81f6426fe",
  1023. "reference": "524bbd3b1883204ea3a7f11f31fc38b81f6426fe",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "php": ">=5.3.0"
  1028. },
  1029. "suggest": {
  1030. "google/wkhtmltopdf-amd64": "Provide wkhtmltopdf-amd64 binary, use version `0.11.0-RC1` as dependency",
  1031. "google/wkhtmltopdf-i386": "Provide wkhtmltopdf-i386 binary, use version `0.11.0-RC1` as dependency",
  1032. "symfony/process": "Process Component of Symfony2."
  1033. },
  1034. "type": "library",
  1035. "autoload": {
  1036. "psr-0": {
  1037. "Knp\\Snappy": "src/"
  1038. }
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "MIT"
  1043. ],
  1044. "authors": [
  1045. {
  1046. "name": "KnpLabs Team",
  1047. "homepage": "http://knplabs.com"
  1048. },
  1049. {
  1050. "name": "Symfony Community",
  1051. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  1052. }
  1053. ],
  1054. "description": "PHP5 library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  1055. "homepage": "http://github.com/KnpLabs/snappy",
  1056. "keywords": [
  1057. "knp",
  1058. "knplabs",
  1059. "pdf",
  1060. "snapshot",
  1061. "thumbnail",
  1062. "wkhtmltopdf"
  1063. ],
  1064. "time": "2013-04-10 07:21:56"
  1065. },
  1066. {
  1067. "name": "monolog/monolog",
  1068. "version": "1.5.0",
  1069. "source": {
  1070. "type": "git",
  1071. "url": "https://github.com/Seldaek/monolog.git",
  1072. "reference": "1.5.0"
  1073. },
  1074. "dist": {
  1075. "type": "zip",
  1076. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1.5.0",
  1077. "reference": "1.5.0",
  1078. "shasum": ""
  1079. },
  1080. "require": {
  1081. "php": ">=5.3.0",
  1082. "psr/log": ">=1.0,<2.0"
  1083. },
  1084. "require-dev": {
  1085. "doctrine/couchdb": "dev-master",
  1086. "mlehner/gelf-php": "1.0.*",
  1087. "raven/raven": "0.3.*"
  1088. },
  1089. "suggest": {
  1090. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1091. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1092. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1093. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1094. "raven/raven": "Allow sending log messages to a Sentry server"
  1095. },
  1096. "type": "library",
  1097. "extra": {
  1098. "branch-alias": {
  1099. "dev-master": "1.4.x-dev"
  1100. }
  1101. },
  1102. "autoload": {
  1103. "psr-0": {
  1104. "Monolog": "src/"
  1105. }
  1106. },
  1107. "notification-url": "https://packagist.org/downloads/",
  1108. "license": [
  1109. "MIT"
  1110. ],
  1111. "authors": [
  1112. {
  1113. "name": "Jordi Boggiano",
  1114. "email": "j.boggiano@seld.be",
  1115. "homepage": "http://seld.be",
  1116. "role": "Developer"
  1117. }
  1118. ],
  1119. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1120. "homepage": "http://github.com/Seldaek/monolog",
  1121. "keywords": [
  1122. "log",
  1123. "logging",
  1124. "psr-3"
  1125. ],
  1126. "time": "2013-04-23 10:09:48"
  1127. },
  1128. {
  1129. "name": "mpdf/mpdf",
  1130. "version": "v5.6.1",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/finwe/mpdf.git",
  1134. "reference": "v5.6.1"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/finwe/mpdf/zipball/v5.6.1",
  1139. "reference": "v5.6.1",
  1140. "shasum": ""
  1141. },
  1142. "require": {
  1143. "php": ">=4.3.10"
  1144. },
  1145. "type": "library",
  1146. "autoload": {
  1147. "classmap": [
  1148. "mpdf.php",
  1149. "classes"
  1150. ]
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "GPL-1.0+"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Ian Back"
  1159. }
  1160. ],
  1161. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  1162. "homepage": "http://www.mpdf1.com/mpdf/index.php",
  1163. "keywords": [
  1164. "pdf",
  1165. "php",
  1166. "utf-8"
  1167. ],
  1168. "time": "2013-01-26 08:22:27"
  1169. },
  1170. {
  1171. "name": "neutron/silex-filesystem-provider",
  1172. "version": "dev-master",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/romainneutron/Silex-Filesystem-Service-Provider.git",
  1176. "reference": "98771524bba1ffa58373c4c06d438f5fb5442ff4"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/romainneutron/Silex-Filesystem-Service-Provider/zipball/98771524bba1ffa58373c4c06d438f5fb5442ff4",
  1181. "reference": "98771524bba1ffa58373c4c06d438f5fb5442ff4",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "php": ">=5.3.3",
  1186. "silex/silex": ">=1.0",
  1187. "symfony/filesystem": ">=2.0"
  1188. },
  1189. "type": "library",
  1190. "autoload": {
  1191. "psr-0": {
  1192. "Neutron": "src"
  1193. }
  1194. },
  1195. "notification-url": "https://packagist.org/downloads/",
  1196. "license": [
  1197. "MIT"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "Romain Neutron",
  1202. "email": "imprec@gmail.com",
  1203. "homepage": "http://www.lickmychip.com/"
  1204. }
  1205. ],
  1206. "description": "A Silex Provider for Symfony Filesystem component",
  1207. "keywords": [
  1208. "filesystem",
  1209. "silex",
  1210. "temporary-filesystem"
  1211. ],
  1212. "time": "2012-11-08 21:07:08"
  1213. },
  1214. {
  1215. "name": "pagerfanta/pagerfanta",
  1216. "version": "dev-master",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  1220. "reference": "1a3cb8addb92df6396e59a2c44c3b7f216b4218a"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/1a3cb8addb92df6396e59a2c44c3b7f216b4218a",
  1225. "reference": "1a3cb8addb92df6396e59a2c44c3b7f216b4218a",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "php": ">=5.3.0"
  1230. },
  1231. "require-dev": {
  1232. "doctrine/mongodb-odm": "*",
  1233. "doctrine/orm": "2.*",
  1234. "mandango/mandango": "*",
  1235. "propel/propel1": ">=1.6,<2.0",
  1236. "solarium/solarium": "dev-develop"
  1237. },
  1238. "suggest": {
  1239. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  1240. "doctrine/orm": "To use the DoctrineORMAdapter.",
  1241. "mandango/mandango": "To use the MandangoAdapter.",
  1242. "propel/propel1": "To use the PropelAdapter",
  1243. "solarium/solarium": "To use the SolariumAdapter."
  1244. },
  1245. "type": "library",
  1246. "extra": {
  1247. "branch-alias": {
  1248. "dev-master": "1.0.x-dev"
  1249. }
  1250. },
  1251. "autoload": {
  1252. "psr-0": {
  1253. "Pagerfanta\\": "src/"
  1254. }
  1255. },
  1256. "notification-url": "https://packagist.org/downloads/",
  1257. "license": [
  1258. "MIT"
  1259. ],
  1260. "authors": [
  1261. {
  1262. "name": "Pablo Díez",
  1263. "email": "pablodip@gmail.com",
  1264. "homepage": "http://github.com/pablodip"
  1265. }
  1266. ],
  1267. "description": "Pagination for PHP 5.3",
  1268. "keywords": [
  1269. "page",
  1270. "pagination",
  1271. "paginator",
  1272. "paging"
  1273. ],
  1274. "time": "2013-06-13 22:25:28"
  1275. },
  1276. {
  1277. "name": "pimple/pimple",
  1278. "version": "v1.0.2",
  1279. "source": {
  1280. "type": "git",
  1281. "url": "https://github.com/fabpot/Pimple.git",
  1282. "reference": "v1.0.2"
  1283. },
  1284. "dist": {
  1285. "type": "zip",
  1286. "url": "https://api.github.com/repos/fabpot/Pimple/zipball/v1.0.2",
  1287. "reference": "v1.0.2",
  1288. "shasum": ""
  1289. },
  1290. "require": {
  1291. "php": ">=5.3.0"
  1292. },
  1293. "type": "library",
  1294. "extra": {
  1295. "branch-alias": {
  1296. "dev-master": "1.0.x-dev"
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-0": {
  1301. "Pimple": "lib/"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "authors": [
  1309. {
  1310. "name": "Fabien Potencier",
  1311. "email": "fabien@symfony.com"
  1312. }
  1313. ],
  1314. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  1315. "homepage": "http://pimple.sensiolabs.org",
  1316. "keywords": [
  1317. "container",
  1318. "dependency injection"
  1319. ],
  1320. "time": "2013-03-08 08:21:40"
  1321. },
  1322. {
  1323. "name": "psr/log",
  1324. "version": "1.0.0",
  1325. "source": {
  1326. "type": "git",
  1327. "url": "https://github.com/php-fig/log",
  1328. "reference": "1.0.0"
  1329. },
  1330. "dist": {
  1331. "type": "zip",
  1332. "url": "https://github.com/php-fig/log/archive/1.0.0.zip",
  1333. "reference": "1.0.0",
  1334. "shasum": ""
  1335. },
  1336. "type": "library",
  1337. "autoload": {
  1338. "psr-0": {
  1339. "Psr\\Log\\": ""
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "PHP-FIG",
  1349. "homepage": "http://www.php-fig.org/"
  1350. }
  1351. ],
  1352. "description": "Common interface for logging libraries",
  1353. "keywords": [
  1354. "log",
  1355. "psr",
  1356. "psr-3"
  1357. ],
  1358. "time": "2012-12-21 11:40:51"
  1359. },
  1360. {
  1361. "name": "realityking/pchart",
  1362. "version": "dev-master",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/realityking/pChart.git",
  1366. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/realityking/pChart/zipball/46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1371. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1372. "shasum": ""
  1373. },
  1374. "type": "library",
  1375. "autoload": {
  1376. "classmap": [
  1377. "src/"
  1378. ]
  1379. },
  1380. "notification-url": "https://packagist.org/downloads/",
  1381. "license": [
  1382. "GPL-1.0+"
  1383. ],
  1384. "authors": [
  1385. {
  1386. "name": "Rouven Weßling",
  1387. "email": "me@rouvenwessling.de",
  1388. "homepage": "http://www.rouvenwessling.de"
  1389. }
  1390. ],
  1391. "description": "A fork of the popular pChart library.",
  1392. "time": "2013-03-18 08:23:38"
  1393. },
  1394. {
  1395. "name": "silex/silex",
  1396. "version": "v1.0.0",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/fabpot/Silex.git",
  1400. "reference": "v1.0.0"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/fabpot/Silex/zipball/v1.0.0",
  1405. "reference": "v1.0.0",
  1406. "shasum": ""
  1407. },
  1408. "require": {
  1409. "php": ">=5.3.3",
  1410. "pimple/pimple": "1.*",
  1411. "symfony/event-dispatcher": ">=2.1,<2.4-dev",
  1412. "symfony/http-foundation": ">=2.1,<2.4-dev",
  1413. "symfony/http-kernel": ">=2.1,<2.4-dev",
  1414. "symfony/routing": ">=2.1,<2.4-dev"
  1415. },
  1416. "require-dev": {
  1417. "doctrine/dbal": ">=2.2.0,<2.4.0-dev",
  1418. "monolog/monolog": ">=1.4,<2.0,>=1.4.1",
  1419. "swiftmailer/swiftmailer": "5.*",
  1420. "symfony/browser-kit": ">=2.1,<2.4-dev",
  1421. "symfony/config": ">=2.1,<2.4-dev",
  1422. "symfony/css-selector": ">=2.1,<2.4-dev",
  1423. "symfony/dom-crawler": ">=2.1,<2.4-dev",
  1424. "symfony/finder": ">=2.1,<2.4-dev",
  1425. "symfony/form": ">=2.1.4,<2.4-dev",
  1426. "symfony/locale": ">=2.1,<2.4-dev",
  1427. "symfony/monolog-bridge": ">=2.1,<2.4-dev",
  1428. "symfony/options-resolver": ">=2.1,<2.4-dev",
  1429. "symfony/process": ">=2.1,<2.4-dev",
  1430. "symfony/security": ">=2.1,<2.4-dev",
  1431. "symfony/serializer": ">=2.1,<2.4-dev",
  1432. "symfony/translation": ">=2.1,<2.4-dev",
  1433. "symfony/twig-bridge": ">=2.1,<2.4-dev",
  1434. "symfony/validator": ">=2.1,<2.4-dev",
  1435. "twig/twig": ">=1.8.0,<2.0-dev"
  1436. },
  1437. "suggest": {
  1438. "symfony/browser-kit": ">=2.1,<2.4-dev",
  1439. "symfony/css-selector": ">=2.1,<2.4-dev",
  1440. "symfony/dom-crawler": ">=2.1,<2.4-dev",
  1441. "symfony/form": ">= 2.1.4,<2.4-dev"
  1442. },
  1443. "type": "library",
  1444. "extra": {
  1445. "branch-alias": {
  1446. "dev-master": "1.0.x-dev"
  1447. }
  1448. },
  1449. "autoload": {
  1450. "psr-0": {
  1451. "Silex": "src/"
  1452. }
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "MIT"
  1457. ],
  1458. "authors": [
  1459. {
  1460. "name": "Fabien Potencier",
  1461. "email": "fabien@symfony.com"
  1462. },
  1463. {
  1464. "name": "Igor Wiedler",
  1465. "email": "igor@wiedler.ch",
  1466. "homepage": "http://wiedler.ch/igor/"
  1467. }
  1468. ],
  1469. "description": "The PHP micro-framework based on the Symfony2 Components",
  1470. "homepage": "http://silex.sensiolabs.org",
  1471. "keywords": [
  1472. "microframework"
  1473. ],
  1474. "time": "2013-05-03 16:49:57"
  1475. },
  1476. {
  1477. "name": "swiftmailer/swiftmailer",
  1478. "version": "v4.1.8",
  1479. "source": {
  1480. "type": "git",
  1481. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1482. "reference": "v4.1.8"
  1483. },
  1484. "dist": {
  1485. "type": "zip",
  1486. "url": "https://github.com/swiftmailer/swiftmailer/zipball/v4.1.8",
  1487. "reference": "v4.1.8",
  1488. "shasum": ""
  1489. },
  1490. "require": {
  1491. "php": ">=5.2.4"
  1492. },
  1493. "type": "library",
  1494. "extra": {
  1495. "branch-alias": {
  1496. "dev-master": "4.1-dev"
  1497. }
  1498. },
  1499. "autoload": {
  1500. "files": [
  1501. "lib/swift_required.php"
  1502. ]
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "LGPL"
  1507. ],
  1508. "authors": [
  1509. {
  1510. "name": "Fabien Potencier",
  1511. "email": "fabien@symfony.com"
  1512. },
  1513. {
  1514. "name": "Chris Corbyn"
  1515. }
  1516. ],
  1517. "description": "Swiftmailer, free feature-rich PHP mailer",
  1518. "homepage": "http://swiftmailer.org",
  1519. "keywords": [
  1520. "mail",
  1521. "mailer"
  1522. ],
  1523. "time": "2012-06-17 13:55:34"
  1524. },
  1525. {
  1526. "name": "symfony/config",
  1527. "version": "v2.3.1",
  1528. "target-dir": "Symfony/Component/Config",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/symfony/Config.git",
  1532. "reference": "v2.3.1"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/symfony/Config/zipball/v2.3.1",
  1537. "reference": "v2.3.1",
  1538. "shasum": ""
  1539. },
  1540. "require": {
  1541. "php": ">=5.3.3",
  1542. "symfony/filesystem": ">=2.3,<3.0"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "2.3-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-0": {
  1552. "Symfony\\Component\\Config\\": ""
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Fabien Potencier",
  1562. "email": "fabien@symfony.com"
  1563. },
  1564. {
  1565. "name": "Symfony Community",
  1566. "homepage": "http://symfony.com/contributors"
  1567. }
  1568. ],
  1569. "description": "Symfony Config Component",
  1570. "homepage": "http://symfony.com",
  1571. "time": "2013-06-03 00:18:25"
  1572. },
  1573. {
  1574. "name": "symfony/console",
  1575. "version": "v2.3.1",
  1576. "target-dir": "Symfony/Component/Console",
  1577. "source": {
  1578. "type": "git",
  1579. "url": "https://github.com/symfony/Console.git",
  1580. "reference": "v2.3.1"
  1581. },
  1582. "dist": {
  1583. "type": "zip",
  1584. "url": "https://api.github.com/repos/symfony/Console/zipball/v2.3.1",
  1585. "reference": "v2.3.1",
  1586. "shasum": ""
  1587. },
  1588. "require": {
  1589. "php": ">=5.3.3"
  1590. },
  1591. "require-dev": {
  1592. "symfony/event-dispatcher": ">=2.1,<3.0"
  1593. },
  1594. "suggest": {
  1595. "symfony/event-dispatcher": ""
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "2.3-dev"
  1601. }
  1602. },
  1603. "autoload": {
  1604. "psr-0": {
  1605. "Symfony\\Component\\Console\\": ""
  1606. }
  1607. },
  1608. "notification-url": "https://packagist.org/downloads/",
  1609. "license": [
  1610. "MIT"
  1611. ],
  1612. "authors": [
  1613. {
  1614. "name": "Fabien Potencier",
  1615. "email": "fabien@symfony.com"
  1616. },
  1617. {
  1618. "name": "Symfony Community",
  1619. "homepage": "http://symfony.com/contributors"
  1620. }
  1621. ],
  1622. "description": "Symfony Console Component",
  1623. "homepage": "http://symfony.com",
  1624. "time": "2013-06-11 07:15:14"
  1625. },
  1626. {
  1627. "name": "symfony/debug",
  1628. "version": "v2.3.1",
  1629. "target-dir": "Symfony/Component/Debug",
  1630. "source": {
  1631. "type": "git",
  1632. "url": "https://github.com/symfony/Debug.git",
  1633. "reference": "v2.3.1"
  1634. },
  1635. "dist": {
  1636. "type": "zip",
  1637. "url": "https://api.github.com/repos/symfony/Debug/zipball/v2.3.1",
  1638. "reference": "v2.3.1",
  1639. "shasum": ""
  1640. },
  1641. "require": {
  1642. "php": ">=5.3.3"
  1643. },
  1644. "require-dev": {
  1645. "symfony/http-foundation": ">=2.1,<3.0",
  1646. "symfony/http-kernel": ">=2.1,<3.0"
  1647. },
  1648. "suggest": {
  1649. "symfony/class-loader": "",
  1650. "symfony/http-foundation": "",
  1651. "symfony/http-kernel": ""
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "branch-alias": {
  1656. "dev-master": "2.3-dev"
  1657. }
  1658. },
  1659. "autoload": {
  1660. "psr-0": {
  1661. "Symfony\\Component\\Debug\\": ""
  1662. }
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Fabien Potencier",
  1671. "email": "fabien@symfony.com"
  1672. },
  1673. {
  1674. "name": "Symfony Community",
  1675. "homepage": "http://symfony.com/contributors"
  1676. }
  1677. ],
  1678. "description": "Symfony Debug Component",
  1679. "homepage": "http://symfony.com",
  1680. "time": "2013-06-02 11:58:44"
  1681. },
  1682. {
  1683. "name": "symfony/dependency-injection",
  1684. "version": "v2.3.1",
  1685. "target-dir": "Symfony/Component/DependencyInjection",
  1686. "source": {
  1687. "type": "git",
  1688. "url": "https://github.com/symfony/DependencyInjection.git",
  1689. "reference": "v2.3.1"
  1690. },
  1691. "dist": {
  1692. "type": "zip",
  1693. "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/v2.3.1",
  1694. "reference": "v2.3.1",
  1695. "shasum": ""
  1696. },
  1697. "require": {
  1698. "php": ">=5.3.3"
  1699. },
  1700. "require-dev": {
  1701. "symfony/config": ">=2.2,<3.0",
  1702. "symfony/yaml": ">=2.0,<3.0"
  1703. },
  1704. "suggest": {
  1705. "symfony/config": "",
  1706. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1707. "symfony/yaml": ""
  1708. },
  1709. "type": "library",
  1710. "extra": {
  1711. "branch-alias": {
  1712. "dev-master": "2.3-dev"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-0": {
  1717. "Symfony\\Component\\DependencyInjection\\": ""
  1718. }
  1719. },
  1720. "notification-url": "https://packagist.org/downloads/",
  1721. "license": [
  1722. "MIT"
  1723. ],
  1724. "authors": [
  1725. {
  1726. "name": "Fabien Potencier",
  1727. "email": "fabien@symfony.com"
  1728. },
  1729. {
  1730. "name": "Symfony Community",
  1731. "homepage": "http://symfony.com/contributors"
  1732. }
  1733. ],
  1734. "description": "Symfony DependencyInjection Component",
  1735. "homepage": "http://symfony.com",
  1736. "time": "2013-06-05 09:51:05"
  1737. },
  1738. {
  1739. "name": "symfony/doctrine-bridge",
  1740. "version": "2.3.x-dev",
  1741. "target-dir": "Symfony/Bridge/Doctrine",
  1742. "source": {
  1743. "type": "git",
  1744. "url": "https://github.com/symfony/DoctrineBridge.git",
  1745. "reference": "v2.3.1"
  1746. },
  1747. "dist": {
  1748. "type": "zip",
  1749. "url": "https://api.github.com/repos/symfony/DoctrineBridge/zipball/v2.3.1",
  1750. "reference": "v2.3.1",
  1751. "shasum": ""
  1752. },
  1753. "require": {
  1754. "doctrine/common": ">=2.2,<3.0",
  1755. "php": ">=5.3.3"
  1756. },
  1757. "require-dev": {
  1758. "doctrine/data-fixtures": "1.0.*",
  1759. "doctrine/dbal": ">=2.2,<3.0",
  1760. "doctrine/orm": ">=2.2,<3.0,>=2.2.3",
  1761. "symfony/dependency-injection": ">=2.0,<3.0",
  1762. "symfony/form": ">=2.2,<3.0",
  1763. "symfony/http-kernel": ">=2.2,<3.0",
  1764. "symfony/security": ">=2.2,<3.0",
  1765. "symfony/stopwatch": ">=2.2,<3.0",
  1766. "symfony/validator": ">=2.2,<3.0"
  1767. },
  1768. "suggest": {
  1769. "doctrine/data-fixtures": "",
  1770. "doctrine/dbal": "",
  1771. "doctrine/orm": "",
  1772. "symfony/form": "",
  1773. "symfony/validator": ""
  1774. },
  1775. "type": "symfony-bridge",
  1776. "extra": {
  1777. "branch-alias": {
  1778. "dev-master": "2.3-dev"
  1779. }
  1780. },
  1781. "autoload": {
  1782. "psr-0": {
  1783. "Symfony\\Bridge\\Doctrine\\": ""
  1784. }
  1785. },
  1786. "notification-url": "https://packagist.org/downloads/",
  1787. "license": [
  1788. "MIT"
  1789. ],
  1790. "authors": [
  1791. {
  1792. "name": "Fabien Potencier",
  1793. "email": "fabien@symfony.com"
  1794. },
  1795. {
  1796. "name": "Symfony Community",
  1797. "homepage": "http://symfony.com/contributors"
  1798. }
  1799. ],
  1800. "description": "Symfony Doctrine Bridge",
  1801. "homepage": "http://symfony.com",
  1802. "time": "2013-05-16 08:06:37"
  1803. },
  1804. {
  1805. "name": "symfony/event-dispatcher",
  1806. "version": "v2.3.1",
  1807. "target-dir": "Symfony/Component/EventDispatcher",
  1808. "source": {
  1809. "type": "git",
  1810. "url": "https://github.com/symfony/EventDispatcher.git",
  1811. "reference": "v2.3.1"
  1812. },
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/v2.3.1",
  1816. "reference": "v2.3.1",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "php": ">=5.3.3"
  1821. },
  1822. "require-dev": {
  1823. "symfony/dependency-injection": ">=2.0,<3.0"
  1824. },
  1825. "suggest": {
  1826. "symfony/dependency-injection": "",
  1827. "symfony/http-kernel": ""
  1828. },
  1829. "type": "library",
  1830. "extra": {
  1831. "branch-alias": {
  1832. "dev-master": "2.3-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-0": {
  1837. "Symfony\\Component\\EventDispatcher\\": ""
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Fabien Potencier",
  1847. "email": "fabien@symfony.com"
  1848. },
  1849. {
  1850. "name": "Symfony Community",
  1851. "homepage": "http://symfony.com/contributors"
  1852. }
  1853. ],
  1854. "description": "Symfony EventDispatcher Component",
  1855. "homepage": "http://symfony.com",
  1856. "time": "2013-05-13 14:36:40"
  1857. },
  1858. {
  1859. "name": "symfony/filesystem",
  1860. "version": "v2.3.1",
  1861. "target-dir": "Symfony/Component/Filesystem",
  1862. "source": {
  1863. "type": "git",
  1864. "url": "https://github.com/symfony/Filesystem.git",
  1865. "reference": "v2.3.1"
  1866. },
  1867. "dist": {
  1868. "type": "zip",
  1869. "url": "https://api.github.com/repos/symfony/Filesystem/zipball/v2.3.1",
  1870. "reference": "v2.3.1",
  1871. "shasum": ""
  1872. },
  1873. "require": {
  1874. "php": ">=5.3.3"
  1875. },
  1876. "type": "library",
  1877. "extra": {
  1878. "branch-alias": {
  1879. "dev-master": "2.3-dev"
  1880. }
  1881. },
  1882. "autoload": {
  1883. "psr-0": {
  1884. "Symfony\\Component\\Filesystem\\": ""
  1885. }
  1886. },
  1887. "notification-url": "https://packagist.org/downloads/",
  1888. "license": [
  1889. "MIT"
  1890. ],
  1891. "authors": [
  1892. {
  1893. "name": "Fabien Potencier",
  1894. "email": "fabien@symfony.com"
  1895. },
  1896. {
  1897. "name": "Symfony Community",
  1898. "homepage": "http://symfony.com/contributors"
  1899. }
  1900. ],
  1901. "description": "Symfony Filesystem Component",
  1902. "homepage": "http://symfony.com",
  1903. "time": "2013-06-04 15:02:05"
  1904. },
  1905. {
  1906. "name": "symfony/form",
  1907. "version": "v2.3.1",
  1908. "target-dir": "Symfony/Component/Form",
  1909. "source": {
  1910. "type": "git",
  1911. "url": "https://github.com/symfony/Form.git",
  1912. "reference": "v2.3.1"
  1913. },
  1914. "dist": {
  1915. "type": "zip",
  1916. "url": "https://api.github.com/repos/symfony/Form/zipball/v2.3.1",
  1917. "reference": "v2.3.1",
  1918. "shasum": ""
  1919. },
  1920. "require": {
  1921. "php": ">=5.3.3",
  1922. "symfony/event-dispatcher": ">=2.1,<3.0",
  1923. "symfony/intl": ">=2.3,<3.0",
  1924. "symfony/options-resolver": ">=2.1,<3.0",
  1925. "symfony/property-access": ">=2.2,<3.0"
  1926. },
  1927. "require-dev": {
  1928. "symfony/http-foundation": ">=2.2,<3.0",
  1929. "symfony/validator": ">=2.2,<3.0"
  1930. },
  1931. "suggest": {
  1932. "symfony/http-foundation": "",
  1933. "symfony/validator": ""
  1934. },
  1935. "type": "library",
  1936. "extra": {
  1937. "branch-alias": {
  1938. "dev-master": "2.3-dev"
  1939. }
  1940. },
  1941. "autoload": {
  1942. "psr-0": {
  1943. "Symfony\\Component\\Form\\": ""
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Fabien Potencier",
  1953. "email": "fabien@symfony.com"
  1954. },
  1955. {
  1956. "name": "Symfony Community",
  1957. "homepage": "http://symfony.com/contributors"
  1958. }
  1959. ],
  1960. "description": "Symfony Form Component",
  1961. "homepage": "http://symfony.com",
  1962. "time": "2013-06-02 12:05:51"
  1963. },
  1964. {
  1965. "name": "symfony/http-foundation",
  1966. "version": "v2.3.1",
  1967. "target-dir": "Symfony/Component/HttpFoundation",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/symfony/HttpFoundation.git",
  1971. "reference": "v2.3.1"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/v2.3.1",
  1976. "reference": "v2.3.1",
  1977. "shasum": ""
  1978. },
  1979. "require": {
  1980. "php": ">=5.3.3"
  1981. },
  1982. "type": "library",
  1983. "extra": {
  1984. "branch-alias": {
  1985. "dev-master": "2.3-dev"
  1986. }
  1987. },
  1988. "autoload": {
  1989. "psr-0": {
  1990. "Symfony\\Component\\HttpFoundation\\": ""
  1991. },
  1992. "classmap": [
  1993. "Symfony/Component/HttpFoundation/Resources/stubs"
  1994. ]
  1995. },
  1996. "notification-url": "https://packagist.org/downloads/",
  1997. "license": [
  1998. "MIT"
  1999. ],
  2000. "authors": [
  2001. {
  2002. "name": "Fabien Potencier",
  2003. "email": "fabien@symfony.com"
  2004. },
  2005. {
  2006. "name": "Symfony Community",
  2007. "homepage": "http://symfony.com/contributors"
  2008. }
  2009. ],
  2010. "description": "Symfony HttpFoundation Component",
  2011. "homepage": "http://symfony.com",
  2012. "time": "2013-05-10 06:00:03"
  2013. },
  2014. {
  2015. "name": "symfony/http-kernel",
  2016. "version": "v2.3.1",
  2017. "target-dir": "Symfony/Component/HttpKernel",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/symfony/HttpKernel.git",
  2021. "reference": "v2.3.1"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/v2.3.1",
  2026. "reference": "v2.3.1",
  2027. "shasum": ""
  2028. },
  2029. "require": {
  2030. "php": ">=5.3.3",
  2031. "psr/log": ">=1.0,<2.0",
  2032. "symfony/debug": ">=2.3,<3.0",
  2033. "symfony/event-dispatcher": ">=2.1,<3.0",
  2034. "symfony/http-foundation": ">=2.2,<3.0"
  2035. },
  2036. "require-dev": {
  2037. "symfony/browser-kit": "2.2.*",
  2038. "symfony/class-loader": ">=2.1,<3.0",
  2039. "symfony/config": ">=2.0,<3.0",
  2040. "symfony/console": "2.2.*",
  2041. "symfony/dependency-injection": ">=2.0,<3.0",
  2042. "symfony/finder": ">=2.0,<3.0",
  2043. "symfony/process": ">=2.0,<3.0",
  2044. "symfony/routing": ">=2.2,<3.0",
  2045. "symfony/stopwatch": ">=2.2,<3.0"
  2046. },
  2047. "suggest": {
  2048. "symfony/browser-kit": "",
  2049. "symfony/class-loader": "",
  2050. "symfony/config": "",
  2051. "symfony/console": "",
  2052. "symfony/dependency-injection": "",
  2053. "symfony/finder": ""
  2054. },
  2055. "type": "library",
  2056. "extra": {
  2057. "branch-alias": {
  2058. "dev-master": "2.3-dev"
  2059. }
  2060. },
  2061. "autoload": {
  2062. "psr-0": {
  2063. "Symfony\\Component\\HttpKernel\\": ""
  2064. }
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "MIT"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "Fabien Potencier",
  2073. "email": "fabien@symfony.com"
  2074. },
  2075. {
  2076. "name": "Symfony Community",
  2077. "homepage": "http://symfony.com/contributors"
  2078. }
  2079. ],
  2080. "description": "Symfony HttpKernel Component",
  2081. "homepage": "http://symfony.com",
  2082. "time": "2013-06-11 11:46:38"
  2083. },
  2084. {
  2085. "name": "symfony/icu",
  2086. "version": "v1.2.0",
  2087. "target-dir": "Symfony/Component/Icu",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/symfony/Icu.git",
  2091. "reference": "v1.2.0"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/symfony/Icu/zipball/v1.2.0",
  2096. "reference": "v1.2.0",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "lib-icu": ">=4.4",
  2101. "php": ">=5.3.3",
  2102. "symfony/intl": ">=2.3,<3.0"
  2103. },
  2104. "type": "library",
  2105. "autoload": {
  2106. "psr-0": {
  2107. "Symfony\\Component\\Icu\\": ""
  2108. }
  2109. },
  2110. "notification-url": "https://packagist.org/downloads/",
  2111. "license": [
  2112. "MIT"
  2113. ],
  2114. "authors": [
  2115. {
  2116. "name": "Symfony Community",
  2117. "homepage": "http://symfony.com/contributors"
  2118. },
  2119. {
  2120. "name": "Bernhard Schussek",
  2121. "email": "bschussek@gmail.com"
  2122. }
  2123. ],
  2124. "description": "Contains an excerpt of the ICU data and classes to load it.",
  2125. "homepage": "http://symfony.com",
  2126. "keywords": [
  2127. "icu",
  2128. "intl"
  2129. ],
  2130. "time": "2013-06-03 18:32:58"
  2131. },
  2132. {
  2133. "name": "symfony/intl",
  2134. "version": "v2.3.1",
  2135. "target-dir": "Symfony/Component/Intl",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/symfony/Intl.git",
  2139. "reference": "v2.3.1"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/symfony/Intl/zipball/v2.3.1",
  2144. "reference": "v2.3.1",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "php": ">=5.3.3",
  2149. "symfony/icu": ">=1.0-RC,<2.0"
  2150. },
  2151. "require-dev": {
  2152. "symfony/filesystem": ">=2.1"
  2153. },
  2154. "suggest": {
  2155. "ext-intl": "to use the component with locales other than \"en\""
  2156. },
  2157. "type": "library",
  2158. "extra": {
  2159. "branch-alias": {
  2160. "dev-master": "2.3-dev"
  2161. }
  2162. },
  2163. "autoload": {
  2164. "psr-0": {
  2165. "Symfony\\Component\\Intl\\": ""
  2166. },
  2167. "classmap": [
  2168. "Symfony/Component/Intl/Resources/stubs"
  2169. ],
  2170. "files": [
  2171. "Symfony/Component/Intl/Resources/stubs/functions.php"
  2172. ]
  2173. },
  2174. "notification-url": "https://packagist.org/downloads/",
  2175. "license": [
  2176. "MIT"
  2177. ],
  2178. "authors": [
  2179. {
  2180. "name": "Symfony Community",
  2181. "homepage": "http://symfony.com/contributors"
  2182. },
  2183. {
  2184. "name": "Igor Wiedler",
  2185. "email": "igor@wiedler.ch",
  2186. "homepage": "http://wiedler.ch/igor/"
  2187. },
  2188. {
  2189. "name": "Bernhard Schussek",
  2190. "email": "bschussek@gmail.com"
  2191. },
  2192. {
  2193. "name": "Eriksen Costa",
  2194. "email": "eriksen.costa@infranology.com.br"
  2195. }
  2196. ],
  2197. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  2198. "homepage": "http://symfony.com",
  2199. "keywords": [
  2200. "i18n",
  2201. "icu",
  2202. "internationalization",
  2203. "intl",
  2204. "l10n",
  2205. "localization"
  2206. ],
  2207. "time": "2013-05-18 11:21:22"
  2208. },
  2209. {
  2210. "name": "symfony/locale",
  2211. "version": "v2.3.1",
  2212. "target-dir": "Symfony/Component/Locale",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://github.com/symfony/Locale.git",
  2216. "reference": "v2.3.1"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://api.github.com/repos/symfony/Locale/zipball/v2.3.1",
  2221. "reference": "v2.3.1",
  2222. "shasum": ""
  2223. },
  2224. "require": {
  2225. "php": ">=5.3.3",
  2226. "symfony/intl": ">=2.3"
  2227. },
  2228. "type": "library",
  2229. "extra": {
  2230. "branch-alias": {
  2231. "dev-master": "2.3-dev"
  2232. }
  2233. },
  2234. "autoload": {
  2235. "psr-0": {
  2236. "Symfony\\Component\\Locale\\": ""
  2237. }
  2238. },
  2239. "notification-url": "https://packagist.org/downloads/",
  2240. "license": [
  2241. "MIT"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "Fabien Potencier",
  2246. "email": "fabien@symfony.com"
  2247. },
  2248. {
  2249. "name": "Symfony Community",
  2250. "homepage": "http://symfony.com/contributors"
  2251. }
  2252. ],
  2253. "description": "Symfony Locale Component",
  2254. "homepage": "http://symfony.com",
  2255. "time": "2013-04-11 09:29:25"
  2256. },
  2257. {
  2258. "name": "symfony/monolog-bridge",
  2259. "version": "v2.3.1",
  2260. "target-dir": "Symfony/Bridge/Monolog",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/symfony/MonologBridge.git",
  2264. "reference": "v2.3.1"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/symfony/MonologBridge/zipball/v2.3.1",
  2269. "reference": "v2.3.1",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "monolog/monolog": ">=1.3,<2.0",
  2274. "php": ">=5.3.3",
  2275. "symfony/http-kernel": ">=2.2,<3.0"
  2276. },
  2277. "type": "symfony-bridge",
  2278. "extra": {
  2279. "branch-alias": {
  2280. "dev-master": "2.3-dev"
  2281. }
  2282. },
  2283. "autoload": {
  2284. "psr-0": {
  2285. "Symfony\\Bridge\\Monolog\\": ""
  2286. }
  2287. },
  2288. "notification-url": "https://packagist.org/downloads/",
  2289. "license": [
  2290. "MIT"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "Fabien Potencier",
  2295. "email": "fabien@symfony.com"
  2296. },
  2297. {
  2298. "name": "Symfony Community",
  2299. "homepage": "http://symfony.com/contributors"
  2300. }
  2301. ],
  2302. "description": "Symfony Monolog Bridge",
  2303. "homepage": "http://symfony.com",
  2304. "time": "2013-05-24 13:05:33"
  2305. },
  2306. {
  2307. "name": "symfony/options-resolver",
  2308. "version": "v2.3.1",
  2309. "target-dir": "Symfony/Component/OptionsResolver",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/symfony/OptionsResolver.git",
  2313. "reference": "v2.3.1"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/v2.3.1",
  2318. "reference": "v2.3.1",
  2319. "shasum": ""
  2320. },
  2321. "require": {
  2322. "php": ">=5.3.3"
  2323. },
  2324. "type": "library",
  2325. "extra": {
  2326. "branch-alias": {
  2327. "dev-master": "2.3-dev"
  2328. }
  2329. },
  2330. "autoload": {
  2331. "psr-0": {
  2332. "Symfony\\Component\\OptionsResolver\\": ""
  2333. }
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "MIT"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Fabien Potencier",
  2342. "email": "fabien@symfony.com"
  2343. },
  2344. {
  2345. "name": "Symfony Community",
  2346. "homepage": "http://symfony.com/contributors"
  2347. }
  2348. ],
  2349. "description": "Symfony OptionsResolver Component",
  2350. "homepage": "http://symfony.com",
  2351. "keywords": [
  2352. "config",
  2353. "configuration",
  2354. "options"
  2355. ],
  2356. "time": "2013-04-11 06:50:46"
  2357. },
  2358. {
  2359. "name": "symfony/property-access",
  2360. "version": "2.3.x-dev",
  2361. "target-dir": "Symfony/Component/PropertyAccess",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/symfony/PropertyAccess.git",
  2365. "reference": "v2.3.1"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/v2.3.1",
  2370. "reference": "v2.3.1",
  2371. "shasum": ""
  2372. },
  2373. "require": {
  2374. "php": ">=5.3.3"
  2375. },
  2376. "type": "library",
  2377. "extra": {
  2378. "branch-alias": {
  2379. "dev-master": "2.3-dev"
  2380. }
  2381. },
  2382. "autoload": {
  2383. "psr-0": {
  2384. "Symfony\\Component\\PropertyAccess\\": ""
  2385. }
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Fabien Potencier",
  2394. "email": "fabien@symfony.com"
  2395. },
  2396. {
  2397. "name": "Symfony Community",
  2398. "homepage": "http://symfony.com/contributors"
  2399. }
  2400. ],
  2401. "description": "Symfony PropertyAccess Component",
  2402. "homepage": "http://symfony.com",
  2403. "keywords": [
  2404. "access",
  2405. "array",
  2406. "extraction",
  2407. "index",
  2408. "injection",
  2409. "object",
  2410. "property",
  2411. "property path",
  2412. "reflection"
  2413. ],
  2414. "time": "2013-04-30 16:43:32"
  2415. },
  2416. {
  2417. "name": "symfony/routing",
  2418. "version": "v2.3.1",
  2419. "target-dir": "Symfony/Component/Routing",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/symfony/Routing.git",
  2423. "reference": "v2.3.1"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/symfony/Routing/zipball/v2.3.1",
  2428. "reference": "v2.3.1",
  2429. "shasum": ""
  2430. },
  2431. "require": {
  2432. "php": ">=5.3.3"
  2433. },
  2434. "require-dev": {
  2435. "doctrine/common": ">=2.2,<3.0",
  2436. "psr/log": ">=1.0,<2.0",
  2437. "symfony/config": ">=2.2,<3.0",
  2438. "symfony/yaml": ">=2.0,<3.0"
  2439. },
  2440. "suggest": {
  2441. "doctrine/common": "",
  2442. "symfony/config": "",
  2443. "symfony/yaml": ""
  2444. },
  2445. "type": "library",
  2446. "extra": {
  2447. "branch-alias": {
  2448. "dev-master": "2.3-dev"
  2449. }
  2450. },
  2451. "autoload": {
  2452. "psr-0": {
  2453. "Symfony\\Component\\Routing\\": ""
  2454. }
  2455. },
  2456. "notification-url": "https://packagist.org/downloads/",
  2457. "license": [
  2458. "MIT"
  2459. ],
  2460. "authors": [
  2461. {
  2462. "name": "Fabien Potencier",
  2463. "email": "fabien@symfony.com"
  2464. },
  2465. {
  2466. "name": "Symfony Community",
  2467. "homepage": "http://symfony.com/contributors"
  2468. }
  2469. ],
  2470. "description": "Symfony Routing Component",
  2471. "homepage": "http://symfony.com",
  2472. "time": "2013-05-20 08:57:26"
  2473. },
  2474. {
  2475. "name": "symfony/security",
  2476. "version": "v2.3.1",
  2477. "target-dir": "Symfony/Component/Security",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://github.com/symfony/Security.git",
  2481. "reference": "v2.3.1"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://api.github.com/repos/symfony/Security/zipball/v2.3.1",
  2486. "reference": "v2.3.1",
  2487. "shasum": ""
  2488. },
  2489. "require": {
  2490. "php": ">=5.3.3",
  2491. "symfony/event-dispatcher": ">=2.1,<3.0",
  2492. "symfony/http-foundation": ">=2.1,<3.0",
  2493. "symfony/http-kernel": ">=2.1,<3.0"
  2494. },
  2495. "require-dev": {
  2496. "doctrine/common": ">=2.2,<3.0",
  2497. "doctrine/dbal": ">=2.2,<3.0",
  2498. "ircmaxell/password-compat": "1.0.*",
  2499. "psr/log": ">=1.0,<2.0",
  2500. "symfony/form": ">=2.0,<3.0",
  2501. "symfony/routing": ">=2.2,<3.0",
  2502. "symfony/validator": ">=2.2,<3.0"
  2503. },
  2504. "suggest": {
  2505. "doctrine/dbal": "to use the built-in ACL implementation",
  2506. "ircmaxell/password-compat": "",
  2507. "symfony/class-loader": "",
  2508. "symfony/finder": "",
  2509. "symfony/form": "",
  2510. "symfony/routing": "",
  2511. "symfony/validator": ""
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "branch-alias": {
  2516. "dev-master": "2.3-dev"
  2517. }
  2518. },
  2519. "autoload": {
  2520. "psr-0": {
  2521. "Symfony\\Component\\Security\\": ""
  2522. }
  2523. },
  2524. "notification-url": "https://packagist.org/downloads/",
  2525. "license": [
  2526. "MIT"
  2527. ],
  2528. "authors": [
  2529. {
  2530. "name": "Fabien Potencier",
  2531. "email": "fabien@symfony.com"
  2532. },
  2533. {
  2534. "name": "Symfony Community",
  2535. "homepage": "http://symfony.com/contributors"
  2536. }
  2537. ],
  2538. "description": "Symfony Security Component",
  2539. "homepage": "http://symfony.com",
  2540. "time": "2013-06-02 22:50:02"
  2541. },
  2542. {
  2543. "name": "symfony/translation",
  2544. "version": "v2.3.1",
  2545. "target-dir": "Symfony/Component/Translation",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/symfony/Translation.git",
  2549. "reference": "v2.3.1"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/symfony/Translation/zipball/v2.3.1",
  2554. "reference": "v2.3.1",
  2555. "shasum": ""
  2556. },
  2557. "require": {
  2558. "php": ">=5.3.3"
  2559. },
  2560. "require-dev": {
  2561. "symfony/config": ">=2.0,<3.0",
  2562. "symfony/yaml": ">=2.2,<3.0"
  2563. },
  2564. "suggest": {
  2565. "symfony/config": "",
  2566. "symfony/yaml": ""
  2567. },
  2568. "type": "library",
  2569. "extra": {
  2570. "branch-alias": {
  2571. "dev-master": "2.3-dev"
  2572. }
  2573. },
  2574. "autoload": {
  2575. "psr-0": {
  2576. "Symfony\\Component\\Translation\\": ""
  2577. }
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "MIT"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Fabien Potencier",
  2586. "email": "fabien@symfony.com"
  2587. },
  2588. {
  2589. "name": "Symfony Community",
  2590. "homepage": "http://symfony.com/contributors"
  2591. }
  2592. ],
  2593. "description": "Symfony Translation Component",
  2594. "homepage": "http://symfony.com",
  2595. "time": "2013-05-13 14:36:40"
  2596. },
  2597. {
  2598. "name": "symfony/twig-bridge",
  2599. "version": "v2.3.1",
  2600. "target-dir": "Symfony/Bridge/Twig",
  2601. "source": {
  2602. "type": "git",
  2603. "url": "https://github.com/symfony/TwigBridge.git",
  2604. "reference": "v2.3.1"
  2605. },
  2606. "dist": {
  2607. "type": "zip",
  2608. "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/v2.3.1",
  2609. "reference": "v2.3.1",
  2610. "shasum": ""
  2611. },
  2612. "require": {
  2613. "php": ">=5.3.3",
  2614. "twig/twig": ">=1.11.0,<2.0"
  2615. },
  2616. "require-dev": {
  2617. "symfony/form": "2.2.*",
  2618. "symfony/http-kernel": ">=2.2,<3.0",
  2619. "symfony/routing": ">=2.2,<3.0",
  2620. "symfony/security": ">=2.0,<3.0",
  2621. "symfony/templating": ">=2.1,<3.0",
  2622. "symfony/translation": ">=2.2,<3.0",
  2623. "symfony/yaml": ">=2.0,<3.0"
  2624. },
  2625. "suggest": {
  2626. "symfony/form": "",
  2627. "symfony/http-kernel": "",
  2628. "symfony/routing": "",
  2629. "symfony/security": "",
  2630. "symfony/templating": "",
  2631. "symfony/translation": "",
  2632. "symfony/yaml": ""
  2633. },
  2634. "type": "symfony-bridge",
  2635. "extra": {
  2636. "branch-alias": {
  2637. "dev-master": "2.3-dev"
  2638. }
  2639. },
  2640. "autoload": {
  2641. "psr-0": {
  2642. "Symfony\\Bridge\\Twig\\": ""
  2643. }
  2644. },
  2645. "notification-url": "https://packagist.org/downloads/",
  2646. "license": [
  2647. "MIT"
  2648. ],
  2649. "authors": [
  2650. {
  2651. "name": "Fabien Potencier",
  2652. "email": "fabien@symfony.com"
  2653. },
  2654. {
  2655. "name": "Symfony Community",
  2656. "homepage": "http://symfony.com/contributors"
  2657. }
  2658. ],
  2659. "description": "Symfony Twig Bridge",
  2660. "homepage": "http://symfony.com",
  2661. "time": "2013-05-16 10:19:58"
  2662. },
  2663. {
  2664. "name": "symfony/validator",
  2665. "version": "v2.3.1",
  2666. "target-dir": "Symfony/Component/Validator",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/symfony/Validator.git",
  2670. "reference": "v2.3.1"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/symfony/Validator/zipball/v2.3.1",
  2675. "reference": "v2.3.1",
  2676. "shasum": ""
  2677. },
  2678. "require": {
  2679. "php": ">=5.3.3",
  2680. "symfony/translation": ">=2.0,<3.0"
  2681. },
  2682. "require-dev": {
  2683. "symfony/config": ">=2.2,<3.0",
  2684. "symfony/http-foundation": ">=2.1,<3.0",
  2685. "symfony/intl": ">=2.3,<3.0",
  2686. "symfony/yaml": ">=2.0,<3.0"
  2687. },
  2688. "suggest": {
  2689. "doctrine/common": "",
  2690. "symfony/config": "",
  2691. "symfony/http-foundation": "",
  2692. "symfony/intl": "",
  2693. "symfony/yaml": ""
  2694. },
  2695. "type": "library",
  2696. "extra": {
  2697. "branch-alias": {
  2698. "dev-master": "2.3-dev"
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-0": {
  2703. "Symfony\\Component\\Validator\\": ""
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "Fabien Potencier",
  2713. "email": "fabien@symfony.com"
  2714. },
  2715. {
  2716. "name": "Symfony Community",
  2717. "homepage": "http://symfony.com/contributors"
  2718. }
  2719. ],
  2720. "description": "Symfony Validator Component",
  2721. "homepage": "http://symfony.com",
  2722. "time": "2013-06-10 16:23:25"
  2723. },
  2724. {
  2725. "name": "symfony/yaml",
  2726. "version": "v2.3.1",
  2727. "target-dir": "Symfony/Component/Yaml",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/symfony/Yaml.git",
  2731. "reference": "v2.3.1"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/symfony/Yaml/zipball/v2.3.1",
  2736. "reference": "v2.3.1",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "php": ">=5.3.3"
  2741. },
  2742. "type": "library",
  2743. "extra": {
  2744. "branch-alias": {
  2745. "dev-master": "2.3-dev"
  2746. }
  2747. },
  2748. "autoload": {
  2749. "psr-0": {
  2750. "Symfony\\Component\\Yaml\\": ""
  2751. }
  2752. },
  2753. "notification-url": "https://packagist.org/downloads/",
  2754. "license": [
  2755. "MIT"
  2756. ],
  2757. "authors": [
  2758. {
  2759. "name": "Fabien Potencier",
  2760. "email": "fabien@symfony.com"
  2761. },
  2762. {
  2763. "name": "Symfony Community",
  2764. "homepage": "http://symfony.com/contributors"
  2765. }
  2766. ],
  2767. "description": "Symfony Yaml Component",
  2768. "homepage": "http://symfony.com",
  2769. "time": "2013-05-10 18:12:13"
  2770. },
  2771. {
  2772. "name": "twig/twig",
  2773. "version": "v1.13.1",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/fabpot/Twig.git",
  2777. "reference": "v1.13.1"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/fabpot/Twig/zipball/v1.13.1",
  2782. "reference": "v1.13.1",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "php": ">=5.2.4"
  2787. },
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "1.13-dev"
  2792. }
  2793. },
  2794. "autoload": {
  2795. "psr-0": {
  2796. "Twig_": "lib/"
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "BSD-3"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Fabien Potencier",
  2806. "email": "fabien@symfony.com"
  2807. },
  2808. {
  2809. "name": "Armin Ronacher",
  2810. "email": "armin.ronacher@active-4.com"
  2811. }
  2812. ],
  2813. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2814. "homepage": "http://twig.sensiolabs.org",
  2815. "keywords": [
  2816. "templating"
  2817. ],
  2818. "time": "2013-06-06 06:06:01"
  2819. }
  2820. ],
  2821. "packages-dev": [
  2822. {
  2823. "name": "filp/whoops",
  2824. "version": "dev-master",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/filp/whoops.git",
  2828. "reference": "cb2fa6ce8b34290345557ff5079328b97a6b61b6"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/filp/whoops/zipball/cb2fa6ce8b34290345557ff5079328b97a6b61b6",
  2833. "reference": "cb2fa6ce8b34290345557ff5079328b97a6b61b6",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "php": ">=5.3.0"
  2838. },
  2839. "require-dev": {
  2840. "mockery/mockery": "dev-master",
  2841. "silex/silex": "1.0.*@dev"
  2842. },
  2843. "type": "library",
  2844. "autoload": {
  2845. "psr-0": {
  2846. "Whoops": "src/"
  2847. }
  2848. },
  2849. "notification-url": "https://packagist.org/downloads/",
  2850. "license": [
  2851. "MIT"
  2852. ],
  2853. "authors": [
  2854. {
  2855. "name": "Filipe Dobreira",
  2856. "homepage": "https://github.com/filp",
  2857. "role": "Developer"
  2858. }
  2859. ],
  2860. "description": "php error handling for cool kids",
  2861. "homepage": "https://github.com/filp/whoops",
  2862. "keywords": [
  2863. "error",
  2864. "exception",
  2865. "handling",
  2866. "library",
  2867. "silex-provider",
  2868. "whoops",
  2869. "zf2"
  2870. ],
  2871. "time": "2013-06-19 20:39:43"
  2872. },
  2873. {
  2874. "name": "kriswallsmith/assetic",
  2875. "version": "v1.1.1",
  2876. "source": {
  2877. "type": "git",
  2878. "url": "https://github.com/kriswallsmith/assetic.git",
  2879. "reference": "v1.1.1"
  2880. },
  2881. "dist": {
  2882. "type": "zip",
  2883. "url": "https://api.github.com/repos/kriswallsmith/assetic/zipball/v1.1.1",
  2884. "reference": "v1.1.1",
  2885. "shasum": ""
  2886. },
  2887. "require": {
  2888. "php": ">=5.3.1",
  2889. "symfony/process": ">=2.1,<3.0"
  2890. },
  2891. "require-dev": {
  2892. "cssmin/cssmin": "*",
  2893. "joliclic/javascript-packer": "*",
  2894. "kamicane/packager": "*",
  2895. "leafo/lessphp": "*",
  2896. "leafo/scssphp": "*",
  2897. "leafo/scssphp-compass": "*",
  2898. "mrclay/minify": "*",
  2899. "phpunit/phpunit": ">=3.7,<4.0",
  2900. "ptachoire/cssembed": "*",
  2901. "twig/twig": ">=1.6,<2.0"
  2902. },
  2903. "suggest": {
  2904. "leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
  2905. "leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
  2906. "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin",
  2907. "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
  2908. "twig/twig": "Assetic provides the integration with the Twig templating engine"
  2909. },
  2910. "type": "library",
  2911. "extra": {
  2912. "branch-alias": {
  2913. "dev-master": "1.1-dev"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "psr-0": {
  2918. "Assetic": "src/"
  2919. },
  2920. "files": [
  2921. "src/functions.php"
  2922. ]
  2923. },
  2924. "notification-url": "https://packagist.org/downloads/",
  2925. "license": [
  2926. "MIT"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Kris Wallsmith",
  2931. "email": "kris.wallsmith@gmail.com",
  2932. "homepage": "http://kriswallsmith.net/"
  2933. }
  2934. ],
  2935. "description": "Asset Management for PHP",
  2936. "homepage": "https://github.com/kriswallsmith/assetic",
  2937. "keywords": [
  2938. "assets",
  2939. "compression",
  2940. "minification"
  2941. ],
  2942. "time": "2013-06-01 22:13:43"
  2943. },
  2944. {
  2945. "name": "leafo/lessphp",
  2946. "version": "dev-master",
  2947. "source": {
  2948. "type": "git",
  2949. "url": "https://github.com/leafo/lessphp.git",
  2950. "reference": "ff86f2941c3f3d67d56acad2f8902ca57c73b359"
  2951. },
  2952. "dist": {
  2953. "type": "zip",
  2954. "url": "https://api.github.com/repos/leafo/lessphp/zipball/ff86f2941c3f3d67d56acad2f8902ca57c73b359",
  2955. "reference": "ff86f2941c3f3d67d56acad2f8902ca57c73b359",
  2956. "shasum": ""
  2957. },
  2958. "type": "library",
  2959. "extra": {
  2960. "branch-alias": {
  2961. "dev-master": "0.3-dev"
  2962. }
  2963. },
  2964. "autoload": {
  2965. "classmap": [
  2966. "lessc.inc.php"
  2967. ]
  2968. },
  2969. "notification-url": "https://packagist.org/downloads/",
  2970. "license": [
  2971. "MIT",
  2972. "GPL-3.0"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Leaf Corcoran",
  2977. "email": "leafot@gmail.com",
  2978. "homepage": "http://leafo.net"
  2979. }
  2980. ],
  2981. "description": "lessphp is a compiler for LESS written in PHP.",
  2982. "homepage": "http://leafo.net/lessphp/",
  2983. "time": "2013-05-22 17:52:29"
  2984. },
  2985. {
  2986. "name": "mheap/silex-assetic",
  2987. "version": "dev-master",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/mheap/Silex-Assetic.git",
  2991. "reference": "8e6243f84100987a313ebb903e378b1de6cc8fb8"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/mheap/Silex-Assetic/zipball/8e6243f84100987a313ebb903e378b1de6cc8fb8",
  2996. "reference": "8e6243f84100987a313ebb903e378b1de6cc8fb8",
  2997. "shasum": ""
  2998. },
  2999. "require": {
  3000. "kriswallsmith/assetic": ">=1.0,<2.0",
  3001. "php": ">=5.3.0",
  3002. "symfony/finder": ">=2.1,<2.3-dev"
  3003. },
  3004. "require-dev": {
  3005. "phpunit/phpunit": ">=3.7.10.0,<3.8",
  3006. "silex/silex": ">=1.0,<2.0",
  3007. "twig/twig": ">=1.2,<2.0"
  3008. },
  3009. "suggest": {
  3010. "twig/twig": "~1.2"
  3011. },
  3012. "type": "library",
  3013. "extra": {
  3014. "branch-alias": {
  3015. "dev-master": "1.0.x-dev"
  3016. }
  3017. },
  3018. "autoload": {
  3019. "psr-0": {
  3020. "SilexAssetic": "src"
  3021. }
  3022. },
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "MIT"
  3026. ],
  3027. "authors": [
  3028. {
  3029. "name": "Sven Eisenschmidt",
  3030. "email": "sven.eisenschmidt@gmail.com",
  3031. "homepage": "http://unsicherheitsagent.de/"
  3032. },
  3033. {
  3034. "name": "Michael Heap",
  3035. "email": "m@michaelheap.com",
  3036. "homepage": "http://michaelheap.com/"
  3037. }
  3038. ],
  3039. "description": "Assetic extension for Silex",
  3040. "homepage": "https://github.com/mheap/Silex-Assetic",
  3041. "keywords": [
  3042. "assetic",
  3043. "silex"
  3044. ],
  3045. "time": "2013-05-28 13:04:36"
  3046. },
  3047. {
  3048. "name": "natxet/CssMin",
  3049. "version": "dev-master",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/natxet/CssMin.git",
  3053. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/natxet/CssMin/zipball/9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  3058. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  3059. "shasum": ""
  3060. },
  3061. "require": {
  3062. "php": ">=5.0"
  3063. },
  3064. "type": "library",
  3065. "autoload": {
  3066. "psr-0": {
  3067. "CssMin": "src/"
  3068. }
  3069. },
  3070. "notification-url": "https://packagist.org/downloads/",
  3071. "license": [
  3072. "MIT"
  3073. ],
  3074. "authors": [
  3075. {
  3076. "name": "Joe Scylla",
  3077. "email": "joe.scylla@gmail.com",
  3078. "homepage": "https://profiles.google.com/joe.scylla"
  3079. }
  3080. ],
  3081. "description": "Minifying CSS",
  3082. "homepage": "http://code.google.com/p/cssmin/",
  3083. "keywords": [
  3084. "css",
  3085. "minify"
  3086. ],
  3087. "time": "2013-03-15 18:47:32"
  3088. },
  3089. {
  3090. "name": "sensio/framework-extra-bundle",
  3091. "version": "dev-master",
  3092. "target-dir": "Sensio/Bundle/FrameworkExtraBundle",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  3096. "reference": "v2.3.1"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/v2.3.1",
  3101. "reference": "v2.3.1",
  3102. "shasum": ""
  3103. },
  3104. "require": {
  3105. "doctrine/common": ">=2.2,<3.0",
  3106. "symfony/framework-bundle": ">=2.2,<3.0"
  3107. },
  3108. "type": "symfony-bundle",
  3109. "extra": {
  3110. "branch-alias": {
  3111. "dev-master": "2.3.x-dev"
  3112. }
  3113. },
  3114. "autoload": {
  3115. "psr-0": {
  3116. "Sensio\\Bundle\\FrameworkExtraBundle": ""
  3117. }
  3118. },
  3119. "notification-url": "https://packagist.org/downloads/",
  3120. "license": [
  3121. "MIT"
  3122. ],
  3123. "authors": [
  3124. {
  3125. "name": "Fabien Potencier",
  3126. "email": "fabien@symfony.com"
  3127. }
  3128. ],
  3129. "description": "This bundle provides a way to configure your controllers with annotations",
  3130. "keywords": [
  3131. "annotations",
  3132. "controllers"
  3133. ],
  3134. "time": "2013-06-02 16:13:20"
  3135. },
  3136. {
  3137. "name": "silex/web-profiler",
  3138. "version": "dev-master",
  3139. "target-dir": "Silex/Provider",
  3140. "source": {
  3141. "type": "git",
  3142. "url": "https://github.com/silexphp/Silex-WebProfiler.git",
  3143. "reference": "3d875ac4f583e893a076ec51478e38eeaf0cb562"
  3144. },
  3145. "dist": {
  3146. "type": "zip",
  3147. "url": "https://api.github.com/repos/silexphp/Silex-WebProfiler/zipball/3d875ac4f583e893a076ec51478e38eeaf0cb562",
  3148. "reference": "3d875ac4f583e893a076ec51478e38eeaf0cb562",
  3149. "shasum": ""
  3150. },
  3151. "require": {
  3152. "silex/silex": ">=1.0,<2.0",
  3153. "symfony/stopwatch": ">=2.2,<3.0",
  3154. "symfony/web-profiler-bundle": ">=2.2,<3.0"
  3155. },
  3156. "type": "library",
  3157. "extra": {
  3158. "branch-alias": {
  3159. "dev-master": "1.0.x-dev"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "psr-0": {
  3164. "Silex\\Provider\\": ""
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "Fabien Potencier",
  3174. "email": "fabien@symfony.com"
  3175. }
  3176. ],
  3177. "description": "A WebProfiler for Silex",
  3178. "homepage": "http://silex.sensiolabs.org/",
  3179. "time": "2013-05-03 17:04:41"
  3180. },
  3181. {
  3182. "name": "symfony/browser-kit",
  3183. "version": "2.3.x-dev",
  3184. "target-dir": "Symfony/Component/BrowserKit",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/symfony/BrowserKit.git",
  3188. "reference": "v2.3.1"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/symfony/BrowserKit/zipball/v2.3.1",
  3193. "reference": "v2.3.1",
  3194. "shasum": ""
  3195. },
  3196. "require": {
  3197. "php": ">=5.3.3",
  3198. "symfony/dom-crawler": ">=2.0,<3.0"
  3199. },
  3200. "require-dev": {
  3201. "symfony/css-selector": ">=2.0,<3.0",
  3202. "symfony/process": ">=2.0,<3.0"
  3203. },
  3204. "suggest": {
  3205. "symfony/process": ""
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "branch-alias": {
  3210. "dev-master": "2.3-dev"
  3211. }
  3212. },
  3213. "autoload": {
  3214. "psr-0": {
  3215. "Symfony\\Component\\BrowserKit\\": ""
  3216. }
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "MIT"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "Fabien Potencier",
  3225. "email": "fabien@symfony.com"
  3226. },
  3227. {
  3228. "name": "Symfony Community",
  3229. "homepage": "http://symfony.com/contributors"
  3230. }
  3231. ],
  3232. "description": "Symfony BrowserKit Component",
  3233. "homepage": "http://symfony.com",
  3234. "time": "2013-05-15 15:16:47"
  3235. },
  3236. {
  3237. "name": "symfony/dom-crawler",
  3238. "version": "v2.3.1",
  3239. "target-dir": "Symfony/Component/DomCrawler",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/symfony/DomCrawler.git",
  3243. "reference": "v2.3.1"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/symfony/DomCrawler/zipball/v2.3.1",
  3248. "reference": "v2.3.1",
  3249. "shasum": ""
  3250. },
  3251. "require": {
  3252. "php": ">=5.3.3"
  3253. },
  3254. "require-dev": {
  3255. "symfony/css-selector": ">=2.0,<3.0"
  3256. },
  3257. "suggest": {
  3258. "symfony/css-selector": ""
  3259. },
  3260. "type": "library",
  3261. "extra": {
  3262. "branch-alias": {
  3263. "dev-master": "2.3-dev"
  3264. }
  3265. },
  3266. "autoload": {
  3267. "psr-0": {
  3268. "Symfony\\Component\\DomCrawler\\": ""
  3269. }
  3270. },
  3271. "notification-url": "https://packagist.org/downloads/",
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "Fabien Potencier",
  3278. "email": "fabien@symfony.com"
  3279. },
  3280. {
  3281. "name": "Symfony Community",
  3282. "homepage": "http://symfony.com/contributors"
  3283. }
  3284. ],
  3285. "description": "Symfony DomCrawler Component",
  3286. "homepage": "http://symfony.com",
  3287. "time": "2013-06-11 07:15:14"
  3288. },
  3289. {
  3290. "name": "symfony/finder",
  3291. "version": "v2.2.3",
  3292. "target-dir": "Symfony/Component/Finder",
  3293. "source": {
  3294. "type": "git",
  3295. "url": "https://github.com/symfony/Finder.git",
  3296. "reference": "v2.2.3"
  3297. },
  3298. "dist": {
  3299. "type": "zip",
  3300. "url": "https://api.github.com/repos/symfony/Finder/zipball/v2.2.3",
  3301. "reference": "v2.2.3",
  3302. "shasum": ""
  3303. },
  3304. "require": {
  3305. "php": ">=5.3.3"
  3306. },
  3307. "type": "library",
  3308. "extra": {
  3309. "branch-alias": {
  3310. "dev-master": "2.2-dev"
  3311. }
  3312. },
  3313. "autoload": {
  3314. "psr-0": {
  3315. "Symfony\\Component\\Finder\\": ""
  3316. }
  3317. },
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "MIT"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "Fabien Potencier",
  3325. "email": "fabien@symfony.com"
  3326. },
  3327. {
  3328. "name": "Symfony Community",
  3329. "homepage": "http://symfony.com/contributors"
  3330. }
  3331. ],
  3332. "description": "Symfony Finder Component",
  3333. "homepage": "http://symfony.com",
  3334. "time": "2013-06-10 18:35:46"
  3335. },
  3336. {
  3337. "name": "symfony/framework-bundle",
  3338. "version": "v2.3.1",
  3339. "target-dir": "Symfony/Bundle/FrameworkBundle",
  3340. "source": {
  3341. "type": "git",
  3342. "url": "https://github.com/symfony/FrameworkBundle.git",
  3343. "reference": "v2.3.1"
  3344. },
  3345. "dist": {
  3346. "type": "zip",
  3347. "url": "https://api.github.com/repos/symfony/FrameworkBundle/zipball/v2.3.1",
  3348. "reference": "v2.3.1",
  3349. "shasum": ""
  3350. },
  3351. "require": {
  3352. "doctrine/common": ">=2.2,<3.0",
  3353. "php": ">=5.3.3",
  3354. "symfony/config": ">=2.2,<3.0",
  3355. "symfony/dependency-injection": ">=2.2,<3.0",
  3356. "symfony/event-dispatcher": ">=2.1,<3.0",
  3357. "symfony/filesystem": ">=2.3,<3.0",
  3358. "symfony/http-kernel": ">=2.3,<3.0",
  3359. "symfony/routing": ">=2.2,<3.0",
  3360. "symfony/stopwatch": ">=2.3,<3.0",
  3361. "symfony/templating": ">=2.1,<3.0",
  3362. "symfony/translation": ">=2.3,<3.0"
  3363. },
  3364. "require-dev": {
  3365. "symfony/class-loader": ">=2.1,<3.0",
  3366. "symfony/finder": ">=2.0,<3.0",
  3367. "symfony/form": ">=2.3,<3.0",
  3368. "symfony/security": ">=2.3,<3.0",
  3369. "symfony/validator": ">=2.1,<3.0"
  3370. },
  3371. "suggest": {
  3372. "symfony/console": "",
  3373. "symfony/finder": "",
  3374. "symfony/form": "",
  3375. "symfony/validator": ""
  3376. },
  3377. "type": "symfony-bundle",
  3378. "extra": {
  3379. "branch-alias": {
  3380. "dev-master": "2.3-dev"
  3381. }
  3382. },
  3383. "autoload": {
  3384. "psr-0": {
  3385. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3386. }
  3387. },
  3388. "notification-url": "https://packagist.org/downloads/",
  3389. "license": [
  3390. "MIT"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "Fabien Potencier",
  3395. "email": "fabien@symfony.com"
  3396. },
  3397. {
  3398. "name": "Symfony Community",
  3399. "homepage": "http://symfony.com/contributors"
  3400. }
  3401. ],
  3402. "description": "Symfony FrameworkBundle",
  3403. "homepage": "http://symfony.com",
  3404. "time": "2013-06-07 22:05:01"
  3405. },
  3406. {
  3407. "name": "symfony/process",
  3408. "version": "v2.3.1",
  3409. "target-dir": "Symfony/Component/Process",
  3410. "source": {
  3411. "type": "git",
  3412. "url": "https://github.com/symfony/Process.git",
  3413. "reference": "v2.3.1"
  3414. },
  3415. "dist": {
  3416. "type": "zip",
  3417. "url": "https://api.github.com/repos/symfony/Process/zipball/v2.3.1",
  3418. "reference": "v2.3.1",
  3419. "shasum": ""
  3420. },
  3421. "require": {
  3422. "php": ">=5.3.3"
  3423. },
  3424. "type": "library",
  3425. "extra": {
  3426. "branch-alias": {
  3427. "dev-master": "2.3-dev"
  3428. }
  3429. },
  3430. "autoload": {
  3431. "psr-0": {
  3432. "Symfony\\Component\\Process\\": ""
  3433. }
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Fabien Potencier",
  3442. "email": "fabien@symfony.com"
  3443. },
  3444. {
  3445. "name": "Symfony Community",
  3446. "homepage": "http://symfony.com/contributors"
  3447. }
  3448. ],
  3449. "description": "Symfony Process Component",
  3450. "homepage": "http://symfony.com",
  3451. "time": "2013-05-06 20:03:44"
  3452. },
  3453. {
  3454. "name": "symfony/stopwatch",
  3455. "version": "v2.3.1",
  3456. "target-dir": "Symfony/Component/Stopwatch",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/symfony/Stopwatch.git",
  3460. "reference": "v2.3.1"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/symfony/Stopwatch/zipball/v2.3.1",
  3465. "reference": "v2.3.1",
  3466. "shasum": ""
  3467. },
  3468. "require": {
  3469. "php": ">=5.3.3"
  3470. },
  3471. "type": "library",
  3472. "extra": {
  3473. "branch-alias": {
  3474. "dev-master": "2.3-dev"
  3475. }
  3476. },
  3477. "autoload": {
  3478. "psr-0": {
  3479. "Symfony\\Component\\Stopwatch\\": ""
  3480. }
  3481. },
  3482. "notification-url": "https://packagist.org/downloads/",
  3483. "license": [
  3484. "MIT"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "Fabien Potencier",
  3489. "email": "fabien@symfony.com"
  3490. },
  3491. {
  3492. "name": "Symfony Community",
  3493. "homepage": "http://symfony.com/contributors"
  3494. }
  3495. ],
  3496. "description": "Symfony Stopwatch Component",
  3497. "homepage": "http://symfony.com",
  3498. "time": "2013-04-17 07:17:10"
  3499. },
  3500. {
  3501. "name": "symfony/templating",
  3502. "version": "v2.3.1",
  3503. "target-dir": "Symfony/Component/Templating",
  3504. "source": {
  3505. "type": "git",
  3506. "url": "https://github.com/symfony/Templating.git",
  3507. "reference": "v2.3.1"
  3508. },
  3509. "dist": {
  3510. "type": "zip",
  3511. "url": "https://api.github.com/repos/symfony/Templating/zipball/v2.3.1",
  3512. "reference": "v2.3.1",
  3513. "shasum": ""
  3514. },
  3515. "require": {
  3516. "php": ">=5.3.3"
  3517. },
  3518. "type": "library",
  3519. "extra": {
  3520. "branch-alias": {
  3521. "dev-master": "2.3-dev"
  3522. }
  3523. },
  3524. "autoload": {
  3525. "psr-0": {
  3526. "Symfony\\Component\\Templating\\": ""
  3527. }
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "MIT"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "Fabien Potencier",
  3536. "email": "fabien@symfony.com"
  3537. },
  3538. {
  3539. "name": "Symfony Community",
  3540. "homepage": "http://symfony.com/contributors"
  3541. }
  3542. ],
  3543. "description": "Symfony Templating Component",
  3544. "homepage": "http://symfony.com",
  3545. "time": "2013-04-17 05:31:37"
  3546. },
  3547. {
  3548. "name": "symfony/web-profiler-bundle",
  3549. "version": "v2.3.1",
  3550. "target-dir": "Symfony/Bundle/WebProfilerBundle",
  3551. "source": {
  3552. "type": "git",
  3553. "url": "https://github.com/symfony/WebProfilerBundle.git",
  3554. "reference": "v2.3.1"
  3555. },
  3556. "dist": {
  3557. "type": "zip",
  3558. "url": "https://api.github.com/repos/symfony/WebProfilerBundle/zipball/v2.3.1",
  3559. "reference": "v2.3.1",
  3560. "shasum": ""
  3561. },
  3562. "require": {
  3563. "php": ">=5.3.3",
  3564. "symfony/http-kernel": ">=2.2,<3.0",
  3565. "symfony/routing": ">=2.2,<3.0",
  3566. "symfony/twig-bridge": ">=2.2,<3.0"
  3567. },
  3568. "require-dev": {
  3569. "symfony/config": ">=2.2,<3.0",
  3570. "symfony/dependency-injection": ">=2.0,<3.0",
  3571. "symfony/stopwatch": ">=2.2,<3.0"
  3572. },
  3573. "type": "symfony-bundle",
  3574. "extra": {
  3575. "branch-alias": {
  3576. "dev-master": "2.3-dev"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "psr-0": {
  3581. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  3582. }
  3583. },
  3584. "notification-url": "https://packagist.org/downloads/",
  3585. "license": [
  3586. "MIT"
  3587. ],
  3588. "authors": [
  3589. {
  3590. "name": "Fabien Potencier",
  3591. "email": "fabien@symfony.com"
  3592. },
  3593. {
  3594. "name": "Symfony Community",
  3595. "homepage": "http://symfony.com/contributors"
  3596. }
  3597. ],
  3598. "description": "Symfony WebProfilerBundle",
  3599. "homepage": "http://symfony.com",
  3600. "time": "2013-05-24 14:20:41"
  3601. }
  3602. ],
  3603. "aliases": [
  3604. ],
  3605. "minimum-stability": "stable",
  3606. "stability-flags": {
  3607. "symfony/doctrine-bridge": 20,
  3608. "symfony/property-access": 20,
  3609. "dflydev/doctrine-orm-service-provider": 20,
  3610. "doctrine/migrations": 20,
  3611. "gedmo/doctrine-extensions": 20,
  3612. "chamilo/chash": 20,
  3613. "pagerfanta/pagerfanta": 20,
  3614. "franmomu/silex-pagerfanta-provider": 20,
  3615. "igorw/config-service-provider": 20,
  3616. "realityking/pchart": 20,
  3617. "imagine/imagine": 20,
  3618. "grom/silex-service-provider": 20,
  3619. "knplabs/knp-menu": 20,
  3620. "knplabs/knp-snappy": 20,
  3621. "knplabs/console-service-provider": 20,
  3622. "knplabs/gaufrette": 20,
  3623. "jmontoyaa/phpqrcode": 20,
  3624. "bt51/gaufrette-serviceprovider": 20,
  3625. "neutron/silex-filesystem-provider": 20,
  3626. "jbroadway/urlify": 20,
  3627. "symfony/browser-kit": 20,
  3628. "silex/web-profiler": 20,
  3629. "natxet/cssmin": 20,
  3630. "leafo/lessphp": 20,
  3631. "mheap/silex-assetic": 20,
  3632. "filp/whoops": 20,
  3633. "sensio/framework-extra-bundle": 20
  3634. },
  3635. "platform": {
  3636. "php": ">=5.3.2"
  3637. },
  3638. "platform-dev": [
  3639. ]
  3640. }