composer.lock 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426
  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": "af868d382e8f6bc6798594cbaa058c24",
  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 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": "e1f6efcd94993b493de5c6a413cbc327ea9c0caa"
  289. },
  290. "dist": {
  291. "type": "zip",
  292. "url": "https://api.github.com/repos/doctrine/migrations/zipball/e1f6efcd94993b493de5c6a413cbc327ea9c0caa",
  293. "reference": "e1f6efcd94993b493de5c6a413cbc327ea9c0caa",
  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 H. 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": "2012-12-27 16:39:29"
  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": "e977a758ca848029c1ec577c63e532cc5c4f4392"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/l3pp4rd/DoctrineExtensions/zipball/e977a758ca848029c1ec577c63e532cc5c4f4392",
  513. "reference": "e977a758ca848029c1ec577c63e532cc5c4f4392",
  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-BETA2",
  522. "doctrine/dbal": ">=2.4.0-BETA2",
  523. "doctrine/mongodb": ">=1.0.2",
  524. "doctrine/mongodb-odm": ">=1.0.0-BETA8",
  525. "doctrine/orm": ">=2.4.0-BETA2",
  526. "symfony/yaml": "2.*"
  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-10 14:45:47"
  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": "4bfc8e16086276134768159093e2f5d2ad752991"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://api.github.com/repos/KnpLabs/Gaufrette/zipball/4bfc8e16086276134768159093e2f5d2ad752991",
  882. "reference": "4bfc8e16086276134768159093e2f5d2ad752991",
  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. "phpspec/phpspec2": "dev-master",
  894. "phpunit/phpunit": "3.7.*",
  895. "rackspace/php-cloudfiles": "*",
  896. "rackspace/php-opencloud": "dev-master"
  897. },
  898. "suggest": {
  899. "amazonwebservices/aws-sdk-for-php": "to use the Amazon S3 adapter",
  900. "doctrine/dbal": "to use the Doctrine DBAL adapter",
  901. "dropbox-php/dropbox-php": "to use the Dropbox adapter",
  902. "ext-apc": "to use the APC adapter",
  903. "ext-curl": "*",
  904. "ext-fileinfo": "*",
  905. "ext-mbstring": "*",
  906. "ext-mongo": "*",
  907. "ext-zip": "to use the Zip adapter",
  908. "knplabs/knp-gaufrette-bundle": "*",
  909. "rackspace/php-opencloud": "to use Opencloud adapter"
  910. },
  911. "type": "library",
  912. "extra": {
  913. "branch-alias": {
  914. "dev-master": "0.2.x-dev"
  915. }
  916. },
  917. "autoload": {
  918. "psr-0": {
  919. "Gaufrette": "src/"
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "MIT"
  925. ],
  926. "authors": [
  927. {
  928. "name": "The contributors",
  929. "homepage": "http://github.com/knplabs/Gaufrette/contributors"
  930. },
  931. {
  932. "name": "KnpLabs Team",
  933. "homepage": "http://knplabs.com"
  934. }
  935. ],
  936. "description": "PHP5 library that provides a filesystem abstraction layer",
  937. "homepage": "http://knplabs.com",
  938. "keywords": [
  939. "abstraction",
  940. "file",
  941. "filesystem",
  942. "media"
  943. ],
  944. "time": "2013-04-28 21:52:32"
  945. },
  946. {
  947. "name": "knplabs/knp-menu",
  948. "version": "dev-master",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/KnpLabs/KnpMenu.git",
  952. "reference": "6e3d276aef1d621249c23e0321f9737b45dc5084"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/6e3d276aef1d621249c23e0321f9737b45dc5084",
  957. "reference": "6e3d276aef1d621249c23e0321f9737b45dc5084",
  958. "shasum": ""
  959. },
  960. "require": {
  961. "php": ">=5.3.0"
  962. },
  963. "require-dev": {
  964. "pimple/pimple": "1.0.*",
  965. "silex/silex": "1.0.*",
  966. "twig/twig": ">=1.2,<2.0-dev"
  967. },
  968. "suggest": {
  969. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  970. "silex/silex": "for the integration with your silex application",
  971. "twig/twig": "for the TwigRenderer and the integration with your templates"
  972. },
  973. "type": "library",
  974. "extra": {
  975. "branch-alias": {
  976. "dev-master": "2.0.x-dev"
  977. }
  978. },
  979. "autoload": {
  980. "psr-0": {
  981. "Knp\\Menu\\": "src/"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "MIT"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Christophe Coevoet",
  991. "email": "stof@notk.org"
  992. },
  993. {
  994. "name": "KnpLabs",
  995. "homepage": "http://knplabs.com"
  996. },
  997. {
  998. "name": "Symfony Community",
  999. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1000. }
  1001. ],
  1002. "description": "An object oriented menu library",
  1003. "homepage": "http://knplabs.com",
  1004. "keywords": [
  1005. "menu",
  1006. "tree"
  1007. ],
  1008. "time": "2013-05-20 16:52:41"
  1009. },
  1010. {
  1011. "name": "knplabs/knp-snappy",
  1012. "version": "dev-master",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/KnpLabs/snappy.git",
  1016. "reference": "524bbd3b1883204ea3a7f11f31fc38b81f6426fe"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/524bbd3b1883204ea3a7f11f31fc38b81f6426fe",
  1021. "reference": "524bbd3b1883204ea3a7f11f31fc38b81f6426fe",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "php": ">=5.3.0"
  1026. },
  1027. "suggest": {
  1028. "google/wkhtmltopdf-amd64": "Provide wkhtmltopdf-amd64 binary, use version `0.11.0-RC1` as dependency",
  1029. "google/wkhtmltopdf-i386": "Provide wkhtmltopdf-i386 binary, use version `0.11.0-RC1` as dependency",
  1030. "symfony/process": "Process Component of Symfony2."
  1031. },
  1032. "type": "library",
  1033. "autoload": {
  1034. "psr-0": {
  1035. "Knp\\Snappy": "src/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "KnpLabs Team",
  1045. "homepage": "http://knplabs.com"
  1046. },
  1047. {
  1048. "name": "Symfony Community",
  1049. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  1050. }
  1051. ],
  1052. "description": "PHP5 library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  1053. "homepage": "http://github.com/KnpLabs/snappy",
  1054. "keywords": [
  1055. "knp",
  1056. "knplabs",
  1057. "pdf",
  1058. "snapshot",
  1059. "thumbnail",
  1060. "wkhtmltopdf"
  1061. ],
  1062. "time": "2013-04-10 07:21:56"
  1063. },
  1064. {
  1065. "name": "monolog/monolog",
  1066. "version": "1.5.0",
  1067. "source": {
  1068. "type": "git",
  1069. "url": "https://github.com/Seldaek/monolog.git",
  1070. "reference": "1.5.0"
  1071. },
  1072. "dist": {
  1073. "type": "zip",
  1074. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1.5.0",
  1075. "reference": "1.5.0",
  1076. "shasum": ""
  1077. },
  1078. "require": {
  1079. "php": ">=5.3.0",
  1080. "psr/log": ">=1.0,<2.0"
  1081. },
  1082. "require-dev": {
  1083. "doctrine/couchdb": "dev-master",
  1084. "mlehner/gelf-php": "1.0.*",
  1085. "raven/raven": "0.3.*"
  1086. },
  1087. "suggest": {
  1088. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1089. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1090. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1091. "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1092. "raven/raven": "Allow sending log messages to a Sentry server"
  1093. },
  1094. "type": "library",
  1095. "extra": {
  1096. "branch-alias": {
  1097. "dev-master": "1.4.x-dev"
  1098. }
  1099. },
  1100. "autoload": {
  1101. "psr-0": {
  1102. "Monolog": "src/"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Jordi Boggiano",
  1112. "email": "j.boggiano@seld.be",
  1113. "homepage": "http://seld.be",
  1114. "role": "Developer"
  1115. }
  1116. ],
  1117. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1118. "homepage": "http://github.com/Seldaek/monolog",
  1119. "keywords": [
  1120. "log",
  1121. "logging",
  1122. "psr-3"
  1123. ],
  1124. "time": "2013-04-23 10:09:48"
  1125. },
  1126. {
  1127. "name": "mpdf/mpdf",
  1128. "version": "v5.6.1",
  1129. "source": {
  1130. "type": "git",
  1131. "url": "https://github.com/finwe/mpdf.git",
  1132. "reference": "v5.6.1"
  1133. },
  1134. "dist": {
  1135. "type": "zip",
  1136. "url": "https://api.github.com/repos/finwe/mpdf/zipball/v5.6.1",
  1137. "reference": "v5.6.1",
  1138. "shasum": ""
  1139. },
  1140. "require": {
  1141. "php": ">=4.3.10"
  1142. },
  1143. "type": "library",
  1144. "autoload": {
  1145. "classmap": [
  1146. "mpdf.php",
  1147. "classes"
  1148. ]
  1149. },
  1150. "notification-url": "https://packagist.org/downloads/",
  1151. "license": [
  1152. "GPL-1.0+"
  1153. ],
  1154. "authors": [
  1155. {
  1156. "name": "Ian Back"
  1157. }
  1158. ],
  1159. "description": "A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support",
  1160. "homepage": "http://www.mpdf1.com/mpdf/index.php",
  1161. "keywords": [
  1162. "pdf",
  1163. "php",
  1164. "utf-8"
  1165. ],
  1166. "time": "2013-01-26 08:22:27"
  1167. },
  1168. {
  1169. "name": "neutron/silex-filesystem-provider",
  1170. "version": "dev-master",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "https://github.com/romainneutron/Silex-Filesystem-Service-Provider.git",
  1174. "reference": "98771524bba1ffa58373c4c06d438f5fb5442ff4"
  1175. },
  1176. "dist": {
  1177. "type": "zip",
  1178. "url": "https://api.github.com/repos/romainneutron/Silex-Filesystem-Service-Provider/zipball/98771524bba1ffa58373c4c06d438f5fb5442ff4",
  1179. "reference": "98771524bba1ffa58373c4c06d438f5fb5442ff4",
  1180. "shasum": ""
  1181. },
  1182. "require": {
  1183. "php": ">=5.3.3",
  1184. "silex/silex": ">=1.0",
  1185. "symfony/filesystem": ">=2.0"
  1186. },
  1187. "type": "library",
  1188. "autoload": {
  1189. "psr-0": {
  1190. "Neutron": "src"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Romain Neutron",
  1200. "email": "imprec@gmail.com",
  1201. "homepage": "http://www.lickmychip.com/"
  1202. }
  1203. ],
  1204. "description": "A Silex Provider for Symfony Filesystem component",
  1205. "keywords": [
  1206. "filesystem",
  1207. "silex",
  1208. "temporary-filesystem"
  1209. ],
  1210. "time": "2012-11-08 21:07:08"
  1211. },
  1212. {
  1213. "name": "pagerfanta/pagerfanta",
  1214. "version": "dev-master",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  1218. "reference": "1a3cb8addb92df6396e59a2c44c3b7f216b4218a"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/1a3cb8addb92df6396e59a2c44c3b7f216b4218a",
  1223. "reference": "1a3cb8addb92df6396e59a2c44c3b7f216b4218a",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "php": ">=5.3.0"
  1228. },
  1229. "require-dev": {
  1230. "doctrine/mongodb-odm": "*",
  1231. "doctrine/orm": "2.*",
  1232. "mandango/mandango": "*",
  1233. "propel/propel1": ">=1.6,<2.0",
  1234. "solarium/solarium": "dev-develop"
  1235. },
  1236. "suggest": {
  1237. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  1238. "doctrine/orm": "To use the DoctrineORMAdapter.",
  1239. "mandango/mandango": "To use the MandangoAdapter.",
  1240. "propel/propel1": "To use the PropelAdapter",
  1241. "solarium/solarium": "To use the SolariumAdapter."
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "branch-alias": {
  1246. "dev-master": "1.0.x-dev"
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-0": {
  1251. "Pagerfanta\\": "src/"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Pablo Díez",
  1261. "email": "pablodip@gmail.com",
  1262. "homepage": "http://github.com/pablodip"
  1263. }
  1264. ],
  1265. "description": "Pagination for PHP 5.3",
  1266. "keywords": [
  1267. "page",
  1268. "pagination",
  1269. "paginator",
  1270. "paging"
  1271. ],
  1272. "time": "2013-06-13 22:25:28"
  1273. },
  1274. {
  1275. "name": "pimple/pimple",
  1276. "version": "v1.0.2",
  1277. "source": {
  1278. "type": "git",
  1279. "url": "https://github.com/fabpot/Pimple.git",
  1280. "reference": "v1.0.2"
  1281. },
  1282. "dist": {
  1283. "type": "zip",
  1284. "url": "https://api.github.com/repos/fabpot/Pimple/zipball/v1.0.2",
  1285. "reference": "v1.0.2",
  1286. "shasum": ""
  1287. },
  1288. "require": {
  1289. "php": ">=5.3.0"
  1290. },
  1291. "type": "library",
  1292. "extra": {
  1293. "branch-alias": {
  1294. "dev-master": "1.0.x-dev"
  1295. }
  1296. },
  1297. "autoload": {
  1298. "psr-0": {
  1299. "Pimple": "lib/"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "Fabien Potencier",
  1309. "email": "fabien@symfony.com"
  1310. }
  1311. ],
  1312. "description": "Pimple is a simple Dependency Injection Container for PHP 5.3",
  1313. "homepage": "http://pimple.sensiolabs.org",
  1314. "keywords": [
  1315. "container",
  1316. "dependency injection"
  1317. ],
  1318. "time": "2013-03-08 08:21:40"
  1319. },
  1320. {
  1321. "name": "psr/log",
  1322. "version": "1.0.0",
  1323. "source": {
  1324. "type": "git",
  1325. "url": "https://github.com/php-fig/log",
  1326. "reference": "1.0.0"
  1327. },
  1328. "dist": {
  1329. "type": "zip",
  1330. "url": "https://github.com/php-fig/log/archive/1.0.0.zip",
  1331. "reference": "1.0.0",
  1332. "shasum": ""
  1333. },
  1334. "type": "library",
  1335. "autoload": {
  1336. "psr-0": {
  1337. "Psr\\Log\\": ""
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "PHP-FIG",
  1347. "homepage": "http://www.php-fig.org/"
  1348. }
  1349. ],
  1350. "description": "Common interface for logging libraries",
  1351. "keywords": [
  1352. "log",
  1353. "psr",
  1354. "psr-3"
  1355. ],
  1356. "time": "2012-12-21 11:40:51"
  1357. },
  1358. {
  1359. "name": "realityking/pchart",
  1360. "version": "dev-master",
  1361. "source": {
  1362. "type": "git",
  1363. "url": "https://github.com/realityking/pChart.git",
  1364. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6"
  1365. },
  1366. "dist": {
  1367. "type": "zip",
  1368. "url": "https://api.github.com/repos/realityking/pChart/zipball/46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1369. "reference": "46fd01cad5a4d761b599df1ab09361fad55c83b6",
  1370. "shasum": ""
  1371. },
  1372. "type": "library",
  1373. "autoload": {
  1374. "classmap": [
  1375. "src/"
  1376. ]
  1377. },
  1378. "notification-url": "https://packagist.org/downloads/",
  1379. "license": [
  1380. "GPL-1.0+"
  1381. ],
  1382. "authors": [
  1383. {
  1384. "name": "Rouven Weßling",
  1385. "email": "me@rouvenwessling.de",
  1386. "homepage": "http://www.rouvenwessling.de"
  1387. }
  1388. ],
  1389. "description": "A fork of the popular pChart library.",
  1390. "time": "2013-03-18 08:23:38"
  1391. },
  1392. {
  1393. "name": "silex/silex",
  1394. "version": "v1.0.0",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/fabpot/Silex.git",
  1398. "reference": "v1.0.0"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/fabpot/Silex/zipball/v1.0.0",
  1403. "reference": "v1.0.0",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "php": ">=5.3.3",
  1408. "pimple/pimple": "1.*",
  1409. "symfony/event-dispatcher": ">=2.1,<2.4-dev",
  1410. "symfony/http-foundation": ">=2.1,<2.4-dev",
  1411. "symfony/http-kernel": ">=2.1,<2.4-dev",
  1412. "symfony/routing": ">=2.1,<2.4-dev"
  1413. },
  1414. "require-dev": {
  1415. "doctrine/dbal": ">=2.2.0,<2.4.0-dev",
  1416. "monolog/monolog": ">=1.4,<2.0,>=1.4.1",
  1417. "swiftmailer/swiftmailer": "5.*",
  1418. "symfony/browser-kit": ">=2.1,<2.4-dev",
  1419. "symfony/config": ">=2.1,<2.4-dev",
  1420. "symfony/css-selector": ">=2.1,<2.4-dev",
  1421. "symfony/dom-crawler": ">=2.1,<2.4-dev",
  1422. "symfony/finder": ">=2.1,<2.4-dev",
  1423. "symfony/form": ">=2.1.4,<2.4-dev",
  1424. "symfony/locale": ">=2.1,<2.4-dev",
  1425. "symfony/monolog-bridge": ">=2.1,<2.4-dev",
  1426. "symfony/options-resolver": ">=2.1,<2.4-dev",
  1427. "symfony/process": ">=2.1,<2.4-dev",
  1428. "symfony/security": ">=2.1,<2.4-dev",
  1429. "symfony/serializer": ">=2.1,<2.4-dev",
  1430. "symfony/translation": ">=2.1,<2.4-dev",
  1431. "symfony/twig-bridge": ">=2.1,<2.4-dev",
  1432. "symfony/validator": ">=2.1,<2.4-dev",
  1433. "twig/twig": ">=1.8.0,<2.0-dev"
  1434. },
  1435. "suggest": {
  1436. "symfony/browser-kit": ">=2.1,<2.4-dev",
  1437. "symfony/css-selector": ">=2.1,<2.4-dev",
  1438. "symfony/dom-crawler": ">=2.1,<2.4-dev",
  1439. "symfony/form": ">= 2.1.4,<2.4-dev"
  1440. },
  1441. "type": "library",
  1442. "extra": {
  1443. "branch-alias": {
  1444. "dev-master": "1.0.x-dev"
  1445. }
  1446. },
  1447. "autoload": {
  1448. "psr-0": {
  1449. "Silex": "src/"
  1450. }
  1451. },
  1452. "notification-url": "https://packagist.org/downloads/",
  1453. "license": [
  1454. "MIT"
  1455. ],
  1456. "authors": [
  1457. {
  1458. "name": "Fabien Potencier",
  1459. "email": "fabien@symfony.com"
  1460. },
  1461. {
  1462. "name": "Igor Wiedler",
  1463. "email": "igor@wiedler.ch",
  1464. "homepage": "http://wiedler.ch/igor/"
  1465. }
  1466. ],
  1467. "description": "The PHP micro-framework based on the Symfony2 Components",
  1468. "homepage": "http://silex.sensiolabs.org",
  1469. "keywords": [
  1470. "microframework"
  1471. ],
  1472. "time": "2013-05-03 16:49:57"
  1473. },
  1474. {
  1475. "name": "swiftmailer/swiftmailer",
  1476. "version": "v4.1.8",
  1477. "source": {
  1478. "type": "git",
  1479. "url": "git://github.com/swiftmailer/swiftmailer.git",
  1480. "reference": "v4.1.8"
  1481. },
  1482. "dist": {
  1483. "type": "zip",
  1484. "url": "https://github.com/swiftmailer/swiftmailer/zipball/v4.1.8",
  1485. "reference": "v4.1.8",
  1486. "shasum": ""
  1487. },
  1488. "require": {
  1489. "php": ">=5.2.4"
  1490. },
  1491. "type": "library",
  1492. "extra": {
  1493. "branch-alias": {
  1494. "dev-master": "4.1-dev"
  1495. }
  1496. },
  1497. "autoload": {
  1498. "files": [
  1499. "lib/swift_required.php"
  1500. ]
  1501. },
  1502. "notification-url": "https://packagist.org/downloads/",
  1503. "license": [
  1504. "LGPL"
  1505. ],
  1506. "authors": [
  1507. {
  1508. "name": "Fabien Potencier",
  1509. "email": "fabien@symfony.com"
  1510. },
  1511. {
  1512. "name": "Chris Corbyn"
  1513. }
  1514. ],
  1515. "description": "Swiftmailer, free feature-rich PHP mailer",
  1516. "homepage": "http://swiftmailer.org",
  1517. "keywords": [
  1518. "mail",
  1519. "mailer"
  1520. ],
  1521. "time": "2012-06-17 13:55:34"
  1522. },
  1523. {
  1524. "name": "symfony/config",
  1525. "version": "v2.3.1",
  1526. "target-dir": "Symfony/Component/Config",
  1527. "source": {
  1528. "type": "git",
  1529. "url": "https://github.com/symfony/Config.git",
  1530. "reference": "v2.3.1"
  1531. },
  1532. "dist": {
  1533. "type": "zip",
  1534. "url": "https://api.github.com/repos/symfony/Config/zipball/v2.3.1",
  1535. "reference": "v2.3.1",
  1536. "shasum": ""
  1537. },
  1538. "require": {
  1539. "php": ">=5.3.3",
  1540. "symfony/filesystem": ">=2.3,<3.0"
  1541. },
  1542. "type": "library",
  1543. "extra": {
  1544. "branch-alias": {
  1545. "dev-master": "2.3-dev"
  1546. }
  1547. },
  1548. "autoload": {
  1549. "psr-0": {
  1550. "Symfony\\Component\\Config\\": ""
  1551. }
  1552. },
  1553. "notification-url": "https://packagist.org/downloads/",
  1554. "license": [
  1555. "MIT"
  1556. ],
  1557. "authors": [
  1558. {
  1559. "name": "Fabien Potencier",
  1560. "email": "fabien@symfony.com"
  1561. },
  1562. {
  1563. "name": "Symfony Community",
  1564. "homepage": "http://symfony.com/contributors"
  1565. }
  1566. ],
  1567. "description": "Symfony Config Component",
  1568. "homepage": "http://symfony.com",
  1569. "time": "2013-06-03 00:18:25"
  1570. },
  1571. {
  1572. "name": "symfony/console",
  1573. "version": "v2.3.1",
  1574. "target-dir": "Symfony/Component/Console",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/symfony/Console.git",
  1578. "reference": "v2.3.1"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/symfony/Console/zipball/v2.3.1",
  1583. "reference": "v2.3.1",
  1584. "shasum": ""
  1585. },
  1586. "require": {
  1587. "php": ">=5.3.3"
  1588. },
  1589. "require-dev": {
  1590. "symfony/event-dispatcher": ">=2.1,<3.0"
  1591. },
  1592. "suggest": {
  1593. "symfony/event-dispatcher": ""
  1594. },
  1595. "type": "library",
  1596. "extra": {
  1597. "branch-alias": {
  1598. "dev-master": "2.3-dev"
  1599. }
  1600. },
  1601. "autoload": {
  1602. "psr-0": {
  1603. "Symfony\\Component\\Console\\": ""
  1604. }
  1605. },
  1606. "notification-url": "https://packagist.org/downloads/",
  1607. "license": [
  1608. "MIT"
  1609. ],
  1610. "authors": [
  1611. {
  1612. "name": "Fabien Potencier",
  1613. "email": "fabien@symfony.com"
  1614. },
  1615. {
  1616. "name": "Symfony Community",
  1617. "homepage": "http://symfony.com/contributors"
  1618. }
  1619. ],
  1620. "description": "Symfony Console Component",
  1621. "homepage": "http://symfony.com",
  1622. "time": "2013-06-11 07:15:14"
  1623. },
  1624. {
  1625. "name": "symfony/debug",
  1626. "version": "v2.3.1",
  1627. "target-dir": "Symfony/Component/Debug",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://github.com/symfony/Debug.git",
  1631. "reference": "v2.3.1"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://api.github.com/repos/symfony/Debug/zipball/v2.3.1",
  1636. "reference": "v2.3.1",
  1637. "shasum": ""
  1638. },
  1639. "require": {
  1640. "php": ">=5.3.3"
  1641. },
  1642. "require-dev": {
  1643. "symfony/http-foundation": ">=2.1,<3.0",
  1644. "symfony/http-kernel": ">=2.1,<3.0"
  1645. },
  1646. "suggest": {
  1647. "symfony/class-loader": "",
  1648. "symfony/http-foundation": "",
  1649. "symfony/http-kernel": ""
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "2.3-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-0": {
  1659. "Symfony\\Component\\Debug\\": ""
  1660. }
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "MIT"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "Fabien Potencier",
  1669. "email": "fabien@symfony.com"
  1670. },
  1671. {
  1672. "name": "Symfony Community",
  1673. "homepage": "http://symfony.com/contributors"
  1674. }
  1675. ],
  1676. "description": "Symfony Debug Component",
  1677. "homepage": "http://symfony.com",
  1678. "time": "2013-06-02 11:58:44"
  1679. },
  1680. {
  1681. "name": "symfony/dependency-injection",
  1682. "version": "v2.3.1",
  1683. "target-dir": "Symfony/Component/DependencyInjection",
  1684. "source": {
  1685. "type": "git",
  1686. "url": "https://github.com/symfony/DependencyInjection.git",
  1687. "reference": "v2.3.1"
  1688. },
  1689. "dist": {
  1690. "type": "zip",
  1691. "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/v2.3.1",
  1692. "reference": "v2.3.1",
  1693. "shasum": ""
  1694. },
  1695. "require": {
  1696. "php": ">=5.3.3"
  1697. },
  1698. "require-dev": {
  1699. "symfony/config": ">=2.2,<3.0",
  1700. "symfony/yaml": ">=2.0,<3.0"
  1701. },
  1702. "suggest": {
  1703. "symfony/config": "",
  1704. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  1705. "symfony/yaml": ""
  1706. },
  1707. "type": "library",
  1708. "extra": {
  1709. "branch-alias": {
  1710. "dev-master": "2.3-dev"
  1711. }
  1712. },
  1713. "autoload": {
  1714. "psr-0": {
  1715. "Symfony\\Component\\DependencyInjection\\": ""
  1716. }
  1717. },
  1718. "notification-url": "https://packagist.org/downloads/",
  1719. "license": [
  1720. "MIT"
  1721. ],
  1722. "authors": [
  1723. {
  1724. "name": "Fabien Potencier",
  1725. "email": "fabien@symfony.com"
  1726. },
  1727. {
  1728. "name": "Symfony Community",
  1729. "homepage": "http://symfony.com/contributors"
  1730. }
  1731. ],
  1732. "description": "Symfony DependencyInjection Component",
  1733. "homepage": "http://symfony.com",
  1734. "time": "2013-06-05 09:51:05"
  1735. },
  1736. {
  1737. "name": "symfony/doctrine-bridge",
  1738. "version": "2.3.x-dev",
  1739. "target-dir": "Symfony/Bridge/Doctrine",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/symfony/DoctrineBridge.git",
  1743. "reference": "v2.3.0-RC1"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/symfony/DoctrineBridge/zipball/v2.3.0-RC1",
  1748. "reference": "v2.3.0-RC1",
  1749. "shasum": ""
  1750. },
  1751. "require": {
  1752. "doctrine/common": ">=2.2,<3.0",
  1753. "php": ">=5.3.3"
  1754. },
  1755. "require-dev": {
  1756. "doctrine/data-fixtures": "1.0.*",
  1757. "doctrine/dbal": ">=2.2,<3.0",
  1758. "doctrine/orm": ">=2.2,<3.0,>=2.2.3",
  1759. "symfony/dependency-injection": ">=2.0,<3.0",
  1760. "symfony/form": ">=2.2,<3.0",
  1761. "symfony/http-kernel": ">=2.2,<3.0",
  1762. "symfony/security": ">=2.2,<3.0",
  1763. "symfony/stopwatch": ">=2.2,<3.0",
  1764. "symfony/validator": ">=2.2,<3.0"
  1765. },
  1766. "suggest": {
  1767. "doctrine/data-fixtures": "",
  1768. "doctrine/dbal": "",
  1769. "doctrine/orm": "",
  1770. "symfony/form": "",
  1771. "symfony/validator": ""
  1772. },
  1773. "type": "symfony-bridge",
  1774. "extra": {
  1775. "branch-alias": {
  1776. "dev-master": "2.3-dev"
  1777. }
  1778. },
  1779. "autoload": {
  1780. "psr-0": {
  1781. "Symfony\\Bridge\\Doctrine\\": ""
  1782. }
  1783. },
  1784. "notification-url": "https://packagist.org/downloads/",
  1785. "license": [
  1786. "MIT"
  1787. ],
  1788. "authors": [
  1789. {
  1790. "name": "Fabien Potencier",
  1791. "email": "fabien@symfony.com"
  1792. },
  1793. {
  1794. "name": "Symfony Community",
  1795. "homepage": "http://symfony.com/contributors"
  1796. }
  1797. ],
  1798. "description": "Symfony Doctrine Bridge",
  1799. "homepage": "http://symfony.com",
  1800. "time": "2013-05-16 08:06:37"
  1801. },
  1802. {
  1803. "name": "symfony/event-dispatcher",
  1804. "version": "v2.3.0",
  1805. "target-dir": "Symfony/Component/EventDispatcher",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/symfony/EventDispatcher.git",
  1809. "reference": "v2.3.0-RC1"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/v2.3.0-RC1",
  1814. "reference": "v2.3.0-RC1",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "php": ">=5.3.3"
  1819. },
  1820. "require-dev": {
  1821. "symfony/dependency-injection": ">=2.0,<3.0"
  1822. },
  1823. "suggest": {
  1824. "symfony/dependency-injection": "",
  1825. "symfony/http-kernel": ""
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "2.3-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-0": {
  1835. "Symfony\\Component\\EventDispatcher\\": ""
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Fabien Potencier",
  1845. "email": "fabien@symfony.com"
  1846. },
  1847. {
  1848. "name": "Symfony Community",
  1849. "homepage": "http://symfony.com/contributors"
  1850. }
  1851. ],
  1852. "description": "Symfony EventDispatcher Component",
  1853. "homepage": "http://symfony.com",
  1854. "time": "2013-05-13 14:36:40"
  1855. },
  1856. {
  1857. "name": "symfony/filesystem",
  1858. "version": "v2.3.1",
  1859. "target-dir": "Symfony/Component/Filesystem",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/symfony/Filesystem.git",
  1863. "reference": "v2.3.1"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://api.github.com/repos/symfony/Filesystem/zipball/v2.3.1",
  1868. "reference": "v2.3.1",
  1869. "shasum": ""
  1870. },
  1871. "require": {
  1872. "php": ">=5.3.3"
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "2.3-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "psr-0": {
  1882. "Symfony\\Component\\Filesystem\\": ""
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "MIT"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "Fabien Potencier",
  1892. "email": "fabien@symfony.com"
  1893. },
  1894. {
  1895. "name": "Symfony Community",
  1896. "homepage": "http://symfony.com/contributors"
  1897. }
  1898. ],
  1899. "description": "Symfony Filesystem Component",
  1900. "homepage": "http://symfony.com",
  1901. "time": "2013-06-04 15:02:05"
  1902. },
  1903. {
  1904. "name": "symfony/form",
  1905. "version": "v2.3.1",
  1906. "target-dir": "Symfony/Component/Form",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/symfony/Form.git",
  1910. "reference": "v2.3.1"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/symfony/Form/zipball/v2.3.1",
  1915. "reference": "v2.3.1",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "php": ">=5.3.3",
  1920. "symfony/event-dispatcher": ">=2.1,<3.0",
  1921. "symfony/intl": ">=2.3,<3.0",
  1922. "symfony/options-resolver": ">=2.1,<3.0",
  1923. "symfony/property-access": ">=2.2,<3.0"
  1924. },
  1925. "require-dev": {
  1926. "symfony/http-foundation": ">=2.2,<3.0",
  1927. "symfony/validator": ">=2.2,<3.0"
  1928. },
  1929. "suggest": {
  1930. "symfony/http-foundation": "",
  1931. "symfony/validator": ""
  1932. },
  1933. "type": "library",
  1934. "extra": {
  1935. "branch-alias": {
  1936. "dev-master": "2.3-dev"
  1937. }
  1938. },
  1939. "autoload": {
  1940. "psr-0": {
  1941. "Symfony\\Component\\Form\\": ""
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "Fabien Potencier",
  1951. "email": "fabien@symfony.com"
  1952. },
  1953. {
  1954. "name": "Symfony Community",
  1955. "homepage": "http://symfony.com/contributors"
  1956. }
  1957. ],
  1958. "description": "Symfony Form Component",
  1959. "homepage": "http://symfony.com",
  1960. "time": "2013-06-02 12:05:51"
  1961. },
  1962. {
  1963. "name": "symfony/http-foundation",
  1964. "version": "v2.3.1",
  1965. "target-dir": "Symfony/Component/HttpFoundation",
  1966. "source": {
  1967. "type": "git",
  1968. "url": "https://github.com/symfony/HttpFoundation.git",
  1969. "reference": "v2.3.1"
  1970. },
  1971. "dist": {
  1972. "type": "zip",
  1973. "url": "https://api.github.com/repos/symfony/HttpFoundation/zipball/v2.3.1",
  1974. "reference": "v2.3.1",
  1975. "shasum": ""
  1976. },
  1977. "require": {
  1978. "php": ">=5.3.3"
  1979. },
  1980. "type": "library",
  1981. "extra": {
  1982. "branch-alias": {
  1983. "dev-master": "2.3-dev"
  1984. }
  1985. },
  1986. "autoload": {
  1987. "psr-0": {
  1988. "Symfony\\Component\\HttpFoundation\\": ""
  1989. },
  1990. "classmap": [
  1991. "Symfony/Component/HttpFoundation/Resources/stubs"
  1992. ]
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Fabien Potencier",
  2001. "email": "fabien@symfony.com"
  2002. },
  2003. {
  2004. "name": "Symfony Community",
  2005. "homepage": "http://symfony.com/contributors"
  2006. }
  2007. ],
  2008. "description": "Symfony HttpFoundation Component",
  2009. "homepage": "http://symfony.com",
  2010. "time": "2013-05-10 06:00:03"
  2011. },
  2012. {
  2013. "name": "symfony/http-kernel",
  2014. "version": "v2.3.0",
  2015. "target-dir": "Symfony/Component/HttpKernel",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/symfony/HttpKernel.git",
  2019. "reference": "v2.3.0"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/symfony/HttpKernel/zipball/v2.3.0",
  2024. "reference": "v2.3.0",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "php": ">=5.3.3",
  2029. "psr/log": ">=1.0,<2.0",
  2030. "symfony/debug": ">=2.3,<3.0",
  2031. "symfony/event-dispatcher": ">=2.1,<3.0",
  2032. "symfony/http-foundation": ">=2.2,<3.0"
  2033. },
  2034. "require-dev": {
  2035. "symfony/browser-kit": "2.2.*",
  2036. "symfony/class-loader": ">=2.1,<3.0",
  2037. "symfony/config": ">=2.0,<3.0",
  2038. "symfony/console": "2.2.*",
  2039. "symfony/dependency-injection": ">=2.0,<3.0",
  2040. "symfony/finder": ">=2.0,<3.0",
  2041. "symfony/process": ">=2.0,<3.0",
  2042. "symfony/routing": ">=2.2,<3.0",
  2043. "symfony/stopwatch": ">=2.2,<3.0"
  2044. },
  2045. "suggest": {
  2046. "symfony/browser-kit": "",
  2047. "symfony/class-loader": "",
  2048. "symfony/config": "",
  2049. "symfony/console": "",
  2050. "symfony/dependency-injection": "",
  2051. "symfony/finder": ""
  2052. },
  2053. "type": "library",
  2054. "extra": {
  2055. "branch-alias": {
  2056. "dev-master": "2.3-dev"
  2057. }
  2058. },
  2059. "autoload": {
  2060. "psr-0": {
  2061. "Symfony\\Component\\HttpKernel\\": ""
  2062. }
  2063. },
  2064. "notification-url": "https://packagist.org/downloads/",
  2065. "license": [
  2066. "MIT"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "Fabien Potencier",
  2071. "email": "fabien@symfony.com"
  2072. },
  2073. {
  2074. "name": "Symfony Community",
  2075. "homepage": "http://symfony.com/contributors"
  2076. }
  2077. ],
  2078. "description": "Symfony HttpKernel Component",
  2079. "homepage": "http://symfony.com",
  2080. "time": "2013-06-03 14:13:35"
  2081. },
  2082. {
  2083. "name": "symfony/icu",
  2084. "version": "v1.2.0",
  2085. "target-dir": "Symfony/Component/Icu",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://github.com/symfony/Icu.git",
  2089. "reference": "v1.2.0"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://api.github.com/repos/symfony/Icu/zipball/v1.2.0",
  2094. "reference": "v1.2.0",
  2095. "shasum": ""
  2096. },
  2097. "require": {
  2098. "lib-icu": ">=4.4",
  2099. "php": ">=5.3.3",
  2100. "symfony/intl": ">=2.3,<3.0"
  2101. },
  2102. "type": "library",
  2103. "autoload": {
  2104. "psr-0": {
  2105. "Symfony\\Component\\Icu\\": ""
  2106. }
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "MIT"
  2111. ],
  2112. "authors": [
  2113. {
  2114. "name": "Symfony Community",
  2115. "homepage": "http://symfony.com/contributors"
  2116. },
  2117. {
  2118. "name": "Bernhard Schussek",
  2119. "email": "bschussek@gmail.com"
  2120. }
  2121. ],
  2122. "description": "Contains an excerpt of the ICU data and classes to load it.",
  2123. "homepage": "http://symfony.com",
  2124. "keywords": [
  2125. "icu",
  2126. "intl"
  2127. ],
  2128. "time": "2013-06-03 18:32:58"
  2129. },
  2130. {
  2131. "name": "symfony/intl",
  2132. "version": "v2.3.1",
  2133. "target-dir": "Symfony/Component/Intl",
  2134. "source": {
  2135. "type": "git",
  2136. "url": "https://github.com/symfony/Intl.git",
  2137. "reference": "v2.3.1"
  2138. },
  2139. "dist": {
  2140. "type": "zip",
  2141. "url": "https://api.github.com/repos/symfony/Intl/zipball/v2.3.1",
  2142. "reference": "v2.3.1",
  2143. "shasum": ""
  2144. },
  2145. "require": {
  2146. "php": ">=5.3.3",
  2147. "symfony/icu": ">=1.0-RC,<2.0"
  2148. },
  2149. "require-dev": {
  2150. "symfony/filesystem": ">=2.1"
  2151. },
  2152. "suggest": {
  2153. "ext-intl": "to use the component with locales other than \"en\""
  2154. },
  2155. "type": "library",
  2156. "extra": {
  2157. "branch-alias": {
  2158. "dev-master": "2.3-dev"
  2159. }
  2160. },
  2161. "autoload": {
  2162. "psr-0": {
  2163. "Symfony\\Component\\Intl\\": ""
  2164. },
  2165. "classmap": [
  2166. "Symfony/Component/Intl/Resources/stubs"
  2167. ],
  2168. "files": [
  2169. "Symfony/Component/Intl/Resources/stubs/functions.php"
  2170. ]
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "MIT"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Symfony Community",
  2179. "homepage": "http://symfony.com/contributors"
  2180. },
  2181. {
  2182. "name": "Igor Wiedler",
  2183. "email": "igor@wiedler.ch",
  2184. "homepage": "http://wiedler.ch/igor/"
  2185. },
  2186. {
  2187. "name": "Bernhard Schussek",
  2188. "email": "bschussek@gmail.com"
  2189. },
  2190. {
  2191. "name": "Eriksen Costa",
  2192. "email": "eriksen.costa@infranology.com.br"
  2193. }
  2194. ],
  2195. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  2196. "homepage": "http://symfony.com",
  2197. "keywords": [
  2198. "i18n",
  2199. "icu",
  2200. "internationalization",
  2201. "intl",
  2202. "l10n",
  2203. "localization"
  2204. ],
  2205. "time": "2013-05-18 11:21:22"
  2206. },
  2207. {
  2208. "name": "symfony/locale",
  2209. "version": "v2.3.1",
  2210. "target-dir": "Symfony/Component/Locale",
  2211. "source": {
  2212. "type": "git",
  2213. "url": "https://github.com/symfony/Locale.git",
  2214. "reference": "v2.3.1"
  2215. },
  2216. "dist": {
  2217. "type": "zip",
  2218. "url": "https://api.github.com/repos/symfony/Locale/zipball/v2.3.1",
  2219. "reference": "v2.3.1",
  2220. "shasum": ""
  2221. },
  2222. "require": {
  2223. "php": ">=5.3.3",
  2224. "symfony/intl": ">=2.3"
  2225. },
  2226. "type": "library",
  2227. "extra": {
  2228. "branch-alias": {
  2229. "dev-master": "2.3-dev"
  2230. }
  2231. },
  2232. "autoload": {
  2233. "psr-0": {
  2234. "Symfony\\Component\\Locale\\": ""
  2235. }
  2236. },
  2237. "notification-url": "https://packagist.org/downloads/",
  2238. "license": [
  2239. "MIT"
  2240. ],
  2241. "authors": [
  2242. {
  2243. "name": "Fabien Potencier",
  2244. "email": "fabien@symfony.com"
  2245. },
  2246. {
  2247. "name": "Symfony Community",
  2248. "homepage": "http://symfony.com/contributors"
  2249. }
  2250. ],
  2251. "description": "Symfony Locale Component",
  2252. "homepage": "http://symfony.com",
  2253. "time": "2013-04-11 09:29:25"
  2254. },
  2255. {
  2256. "name": "symfony/options-resolver",
  2257. "version": "v2.3.1",
  2258. "target-dir": "Symfony/Component/OptionsResolver",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/symfony/OptionsResolver.git",
  2262. "reference": "v2.3.1"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/symfony/OptionsResolver/zipball/v2.3.1",
  2267. "reference": "v2.3.1",
  2268. "shasum": ""
  2269. },
  2270. "require": {
  2271. "php": ">=5.3.3"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-master": "2.3-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "psr-0": {
  2281. "Symfony\\Component\\OptionsResolver\\": ""
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "MIT"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Fabien Potencier",
  2291. "email": "fabien@symfony.com"
  2292. },
  2293. {
  2294. "name": "Symfony Community",
  2295. "homepage": "http://symfony.com/contributors"
  2296. }
  2297. ],
  2298. "description": "Symfony OptionsResolver Component",
  2299. "homepage": "http://symfony.com",
  2300. "keywords": [
  2301. "config",
  2302. "configuration",
  2303. "options"
  2304. ],
  2305. "time": "2013-04-11 06:50:46"
  2306. },
  2307. {
  2308. "name": "symfony/property-access",
  2309. "version": "2.3.x-dev",
  2310. "target-dir": "Symfony/Component/PropertyAccess",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/symfony/PropertyAccess.git",
  2314. "reference": "v2.3.1"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/symfony/PropertyAccess/zipball/v2.3.1",
  2319. "reference": "v2.3.1",
  2320. "shasum": ""
  2321. },
  2322. "require": {
  2323. "php": ">=5.3.3"
  2324. },
  2325. "type": "library",
  2326. "extra": {
  2327. "branch-alias": {
  2328. "dev-master": "2.3-dev"
  2329. }
  2330. },
  2331. "autoload": {
  2332. "psr-0": {
  2333. "Symfony\\Component\\PropertyAccess\\": ""
  2334. }
  2335. },
  2336. "notification-url": "https://packagist.org/downloads/",
  2337. "license": [
  2338. "MIT"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "Fabien Potencier",
  2343. "email": "fabien@symfony.com"
  2344. },
  2345. {
  2346. "name": "Symfony Community",
  2347. "homepage": "http://symfony.com/contributors"
  2348. }
  2349. ],
  2350. "description": "Symfony PropertyAccess Component",
  2351. "homepage": "http://symfony.com",
  2352. "keywords": [
  2353. "access",
  2354. "array",
  2355. "extraction",
  2356. "index",
  2357. "injection",
  2358. "object",
  2359. "property",
  2360. "property path",
  2361. "reflection"
  2362. ],
  2363. "time": "2013-04-30 16:43:32"
  2364. },
  2365. {
  2366. "name": "symfony/routing",
  2367. "version": "v2.3.0",
  2368. "target-dir": "Symfony/Component/Routing",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/symfony/Routing.git",
  2372. "reference": "v2.3.0"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/symfony/Routing/zipball/v2.3.0",
  2377. "reference": "v2.3.0",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "php": ">=5.3.3"
  2382. },
  2383. "require-dev": {
  2384. "doctrine/common": ">=2.2,<3.0",
  2385. "psr/log": ">=1.0,<2.0",
  2386. "symfony/config": ">=2.2,<3.0",
  2387. "symfony/yaml": ">=2.0,<3.0"
  2388. },
  2389. "suggest": {
  2390. "doctrine/common": "",
  2391. "symfony/config": "",
  2392. "symfony/yaml": ""
  2393. },
  2394. "type": "library",
  2395. "extra": {
  2396. "branch-alias": {
  2397. "dev-master": "2.3-dev"
  2398. }
  2399. },
  2400. "autoload": {
  2401. "psr-0": {
  2402. "Symfony\\Component\\Routing\\": ""
  2403. }
  2404. },
  2405. "notification-url": "https://packagist.org/downloads/",
  2406. "license": [
  2407. "MIT"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "Fabien Potencier",
  2412. "email": "fabien@symfony.com"
  2413. },
  2414. {
  2415. "name": "Symfony Community",
  2416. "homepage": "http://symfony.com/contributors"
  2417. }
  2418. ],
  2419. "description": "Symfony Routing Component",
  2420. "homepage": "http://symfony.com",
  2421. "time": "2013-05-20 08:57:26"
  2422. },
  2423. {
  2424. "name": "symfony/security",
  2425. "version": "v2.3.1",
  2426. "target-dir": "Symfony/Component/Security",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/symfony/Security.git",
  2430. "reference": "v2.3.1"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/symfony/Security/zipball/v2.3.1",
  2435. "reference": "v2.3.1",
  2436. "shasum": ""
  2437. },
  2438. "require": {
  2439. "php": ">=5.3.3",
  2440. "symfony/event-dispatcher": ">=2.1,<3.0",
  2441. "symfony/http-foundation": ">=2.1,<3.0",
  2442. "symfony/http-kernel": ">=2.1,<3.0"
  2443. },
  2444. "require-dev": {
  2445. "doctrine/common": ">=2.2,<3.0",
  2446. "doctrine/dbal": ">=2.2,<3.0",
  2447. "ircmaxell/password-compat": "1.0.*",
  2448. "psr/log": ">=1.0,<2.0",
  2449. "symfony/form": ">=2.0,<3.0",
  2450. "symfony/routing": ">=2.2,<3.0",
  2451. "symfony/validator": ">=2.2,<3.0"
  2452. },
  2453. "suggest": {
  2454. "doctrine/dbal": "to use the built-in ACL implementation",
  2455. "ircmaxell/password-compat": "",
  2456. "symfony/class-loader": "",
  2457. "symfony/finder": "",
  2458. "symfony/form": "",
  2459. "symfony/routing": "",
  2460. "symfony/validator": ""
  2461. },
  2462. "type": "library",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-master": "2.3-dev"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-0": {
  2470. "Symfony\\Component\\Security\\": ""
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Fabien Potencier",
  2480. "email": "fabien@symfony.com"
  2481. },
  2482. {
  2483. "name": "Symfony Community",
  2484. "homepage": "http://symfony.com/contributors"
  2485. }
  2486. ],
  2487. "description": "Symfony Security Component",
  2488. "homepage": "http://symfony.com",
  2489. "time": "2013-06-02 22:50:02"
  2490. },
  2491. {
  2492. "name": "symfony/translation",
  2493. "version": "v2.3.0",
  2494. "target-dir": "Symfony/Component/Translation",
  2495. "source": {
  2496. "type": "git",
  2497. "url": "https://github.com/symfony/Translation.git",
  2498. "reference": "v2.3.0-RC1"
  2499. },
  2500. "dist": {
  2501. "type": "zip",
  2502. "url": "https://api.github.com/repos/symfony/Translation/zipball/v2.3.0-RC1",
  2503. "reference": "v2.3.0-RC1",
  2504. "shasum": ""
  2505. },
  2506. "require": {
  2507. "php": ">=5.3.3"
  2508. },
  2509. "require-dev": {
  2510. "symfony/config": ">=2.0,<3.0",
  2511. "symfony/yaml": ">=2.2,<3.0"
  2512. },
  2513. "suggest": {
  2514. "symfony/config": "",
  2515. "symfony/yaml": ""
  2516. },
  2517. "type": "library",
  2518. "extra": {
  2519. "branch-alias": {
  2520. "dev-master": "2.3-dev"
  2521. }
  2522. },
  2523. "autoload": {
  2524. "psr-0": {
  2525. "Symfony\\Component\\Translation\\": ""
  2526. }
  2527. },
  2528. "notification-url": "https://packagist.org/downloads/",
  2529. "license": [
  2530. "MIT"
  2531. ],
  2532. "authors": [
  2533. {
  2534. "name": "Fabien Potencier",
  2535. "email": "fabien@symfony.com"
  2536. },
  2537. {
  2538. "name": "Symfony Community",
  2539. "homepage": "http://symfony.com/contributors"
  2540. }
  2541. ],
  2542. "description": "Symfony Translation Component",
  2543. "homepage": "http://symfony.com",
  2544. "time": "2013-05-13 14:36:40"
  2545. },
  2546. {
  2547. "name": "symfony/twig-bridge",
  2548. "version": "v2.3.1",
  2549. "target-dir": "Symfony/Bridge/Twig",
  2550. "source": {
  2551. "type": "git",
  2552. "url": "https://github.com/symfony/TwigBridge.git",
  2553. "reference": "v2.3.1"
  2554. },
  2555. "dist": {
  2556. "type": "zip",
  2557. "url": "https://api.github.com/repos/symfony/TwigBridge/zipball/v2.3.1",
  2558. "reference": "v2.3.1",
  2559. "shasum": ""
  2560. },
  2561. "require": {
  2562. "php": ">=5.3.3",
  2563. "twig/twig": ">=1.11.0,<2.0"
  2564. },
  2565. "require-dev": {
  2566. "symfony/form": "2.2.*",
  2567. "symfony/http-kernel": ">=2.2,<3.0",
  2568. "symfony/routing": ">=2.2,<3.0",
  2569. "symfony/security": ">=2.0,<3.0",
  2570. "symfony/templating": ">=2.1,<3.0",
  2571. "symfony/translation": ">=2.2,<3.0",
  2572. "symfony/yaml": ">=2.0,<3.0"
  2573. },
  2574. "suggest": {
  2575. "symfony/form": "",
  2576. "symfony/http-kernel": "",
  2577. "symfony/routing": "",
  2578. "symfony/security": "",
  2579. "symfony/templating": "",
  2580. "symfony/translation": "",
  2581. "symfony/yaml": ""
  2582. },
  2583. "type": "symfony-bridge",
  2584. "extra": {
  2585. "branch-alias": {
  2586. "dev-master": "2.3-dev"
  2587. }
  2588. },
  2589. "autoload": {
  2590. "psr-0": {
  2591. "Symfony\\Bridge\\Twig\\": ""
  2592. }
  2593. },
  2594. "notification-url": "https://packagist.org/downloads/",
  2595. "license": [
  2596. "MIT"
  2597. ],
  2598. "authors": [
  2599. {
  2600. "name": "Fabien Potencier",
  2601. "email": "fabien@symfony.com"
  2602. },
  2603. {
  2604. "name": "Symfony Community",
  2605. "homepage": "http://symfony.com/contributors"
  2606. }
  2607. ],
  2608. "description": "Symfony Twig Bridge",
  2609. "homepage": "http://symfony.com",
  2610. "time": "2013-05-16 10:19:58"
  2611. },
  2612. {
  2613. "name": "symfony/validator",
  2614. "version": "v2.3.1",
  2615. "target-dir": "Symfony/Component/Validator",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/symfony/Validator.git",
  2619. "reference": "v2.3.1"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/symfony/Validator/zipball/v2.3.1",
  2624. "reference": "v2.3.1",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": ">=5.3.3",
  2629. "symfony/translation": ">=2.0,<3.0"
  2630. },
  2631. "require-dev": {
  2632. "symfony/config": ">=2.2,<3.0",
  2633. "symfony/http-foundation": ">=2.1,<3.0",
  2634. "symfony/intl": ">=2.3,<3.0",
  2635. "symfony/yaml": ">=2.0,<3.0"
  2636. },
  2637. "suggest": {
  2638. "doctrine/common": "",
  2639. "symfony/config": "",
  2640. "symfony/http-foundation": "",
  2641. "symfony/intl": "",
  2642. "symfony/yaml": ""
  2643. },
  2644. "type": "library",
  2645. "extra": {
  2646. "branch-alias": {
  2647. "dev-master": "2.3-dev"
  2648. }
  2649. },
  2650. "autoload": {
  2651. "psr-0": {
  2652. "Symfony\\Component\\Validator\\": ""
  2653. }
  2654. },
  2655. "notification-url": "https://packagist.org/downloads/",
  2656. "license": [
  2657. "MIT"
  2658. ],
  2659. "authors": [
  2660. {
  2661. "name": "Fabien Potencier",
  2662. "email": "fabien@symfony.com"
  2663. },
  2664. {
  2665. "name": "Symfony Community",
  2666. "homepage": "http://symfony.com/contributors"
  2667. }
  2668. ],
  2669. "description": "Symfony Validator Component",
  2670. "homepage": "http://symfony.com",
  2671. "time": "2013-06-10 16:23:25"
  2672. },
  2673. {
  2674. "name": "symfony/yaml",
  2675. "version": "v2.3.1",
  2676. "target-dir": "Symfony/Component/Yaml",
  2677. "source": {
  2678. "type": "git",
  2679. "url": "https://github.com/symfony/Yaml.git",
  2680. "reference": "v2.3.1"
  2681. },
  2682. "dist": {
  2683. "type": "zip",
  2684. "url": "https://api.github.com/repos/symfony/Yaml/zipball/v2.3.1",
  2685. "reference": "v2.3.1",
  2686. "shasum": ""
  2687. },
  2688. "require": {
  2689. "php": ">=5.3.3"
  2690. },
  2691. "type": "library",
  2692. "extra": {
  2693. "branch-alias": {
  2694. "dev-master": "2.3-dev"
  2695. }
  2696. },
  2697. "autoload": {
  2698. "psr-0": {
  2699. "Symfony\\Component\\Yaml\\": ""
  2700. }
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Fabien Potencier",
  2709. "email": "fabien@symfony.com"
  2710. },
  2711. {
  2712. "name": "Symfony Community",
  2713. "homepage": "http://symfony.com/contributors"
  2714. }
  2715. ],
  2716. "description": "Symfony Yaml Component",
  2717. "homepage": "http://symfony.com",
  2718. "time": "2013-05-10 18:12:13"
  2719. },
  2720. {
  2721. "name": "twig/twig",
  2722. "version": "v1.13.1",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/fabpot/Twig.git",
  2726. "reference": "v1.13.1"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/fabpot/Twig/zipball/v1.13.1",
  2731. "reference": "v1.13.1",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "php": ">=5.2.4"
  2736. },
  2737. "type": "library",
  2738. "extra": {
  2739. "branch-alias": {
  2740. "dev-master": "1.13-dev"
  2741. }
  2742. },
  2743. "autoload": {
  2744. "psr-0": {
  2745. "Twig_": "lib/"
  2746. }
  2747. },
  2748. "notification-url": "https://packagist.org/downloads/",
  2749. "license": [
  2750. "BSD-3"
  2751. ],
  2752. "authors": [
  2753. {
  2754. "name": "Fabien Potencier",
  2755. "email": "fabien@symfony.com"
  2756. },
  2757. {
  2758. "name": "Armin Ronacher",
  2759. "email": "armin.ronacher@active-4.com"
  2760. }
  2761. ],
  2762. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2763. "homepage": "http://twig.sensiolabs.org",
  2764. "keywords": [
  2765. "templating"
  2766. ],
  2767. "time": "2013-06-06 06:06:01"
  2768. }
  2769. ],
  2770. "packages-dev": [
  2771. {
  2772. "name": "filp/whoops",
  2773. "version": "dev-master",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/filp/whoops.git",
  2777. "reference": "1.0.7"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/filp/whoops/zipball/1.0.7",
  2782. "reference": "1.0.7",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "php": ">=5.3.0"
  2787. },
  2788. "require-dev": {
  2789. "mockery/mockery": "dev-master",
  2790. "silex/silex": "1.0.*@dev"
  2791. },
  2792. "type": "library",
  2793. "autoload": {
  2794. "psr-0": {
  2795. "Whoops": "src/"
  2796. }
  2797. },
  2798. "notification-url": "https://packagist.org/downloads/",
  2799. "license": [
  2800. "MIT"
  2801. ],
  2802. "authors": [
  2803. {
  2804. "name": "Filipe Dobreira",
  2805. "homepage": "https://github.com/filp",
  2806. "role": "Developer"
  2807. }
  2808. ],
  2809. "description": "php error handling for cool kids",
  2810. "homepage": "https://github.com/filp/whoops",
  2811. "keywords": [
  2812. "error",
  2813. "exception",
  2814. "handling",
  2815. "library",
  2816. "silex-provider",
  2817. "whoops",
  2818. "zf2"
  2819. ],
  2820. "time": "2013-06-10 12:22:13"
  2821. },
  2822. {
  2823. "name": "kriswallsmith/assetic",
  2824. "version": "v1.1.1",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/kriswallsmith/assetic.git",
  2828. "reference": "v1.1.1"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/kriswallsmith/assetic/zipball/v1.1.1",
  2833. "reference": "v1.1.1",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "php": ">=5.3.1",
  2838. "symfony/process": ">=2.1,<3.0"
  2839. },
  2840. "require-dev": {
  2841. "cssmin/cssmin": "*",
  2842. "joliclic/javascript-packer": "*",
  2843. "kamicane/packager": "*",
  2844. "leafo/lessphp": "*",
  2845. "leafo/scssphp": "*",
  2846. "leafo/scssphp-compass": "*",
  2847. "mrclay/minify": "*",
  2848. "phpunit/phpunit": ">=3.7,<4.0",
  2849. "ptachoire/cssembed": "*",
  2850. "twig/twig": ">=1.6,<2.0"
  2851. },
  2852. "suggest": {
  2853. "leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
  2854. "leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
  2855. "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin",
  2856. "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
  2857. "twig/twig": "Assetic provides the integration with the Twig templating engine"
  2858. },
  2859. "type": "library",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-master": "1.1-dev"
  2863. }
  2864. },
  2865. "autoload": {
  2866. "psr-0": {
  2867. "Assetic": "src/"
  2868. },
  2869. "files": [
  2870. "src/functions.php"
  2871. ]
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "authors": [
  2878. {
  2879. "name": "Kris Wallsmith",
  2880. "email": "kris.wallsmith@gmail.com",
  2881. "homepage": "http://kriswallsmith.net/"
  2882. }
  2883. ],
  2884. "description": "Asset Management for PHP",
  2885. "homepage": "https://github.com/kriswallsmith/assetic",
  2886. "keywords": [
  2887. "assets",
  2888. "compression",
  2889. "minification"
  2890. ],
  2891. "time": "2013-06-01 22:13:43"
  2892. },
  2893. {
  2894. "name": "leafo/lessphp",
  2895. "version": "dev-master",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/leafo/lessphp.git",
  2899. "reference": "ff86f2941c3f3d67d56acad2f8902ca57c73b359"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/leafo/lessphp/zipball/ff86f2941c3f3d67d56acad2f8902ca57c73b359",
  2904. "reference": "ff86f2941c3f3d67d56acad2f8902ca57c73b359",
  2905. "shasum": ""
  2906. },
  2907. "type": "library",
  2908. "extra": {
  2909. "branch-alias": {
  2910. "dev-master": "0.3-dev"
  2911. }
  2912. },
  2913. "autoload": {
  2914. "classmap": [
  2915. "lessc.inc.php"
  2916. ]
  2917. },
  2918. "notification-url": "https://packagist.org/downloads/",
  2919. "license": [
  2920. "MIT",
  2921. "GPL-3.0"
  2922. ],
  2923. "authors": [
  2924. {
  2925. "name": "Leaf Corcoran",
  2926. "email": "leafot@gmail.com",
  2927. "homepage": "http://leafo.net"
  2928. }
  2929. ],
  2930. "description": "lessphp is a compiler for LESS written in PHP.",
  2931. "homepage": "http://leafo.net/lessphp/",
  2932. "time": "2013-05-22 17:52:29"
  2933. },
  2934. {
  2935. "name": "mheap/silex-assetic",
  2936. "version": "dev-master",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/mheap/Silex-Assetic.git",
  2940. "reference": "8e6243f84100987a313ebb903e378b1de6cc8fb8"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/mheap/Silex-Assetic/zipball/8e6243f84100987a313ebb903e378b1de6cc8fb8",
  2945. "reference": "8e6243f84100987a313ebb903e378b1de6cc8fb8",
  2946. "shasum": ""
  2947. },
  2948. "require": {
  2949. "kriswallsmith/assetic": ">=1.0,<2.0",
  2950. "php": ">=5.3.0",
  2951. "symfony/finder": ">=2.1,<2.3-dev"
  2952. },
  2953. "require-dev": {
  2954. "phpunit/phpunit": ">=3.7.10.0,<3.8",
  2955. "silex/silex": ">=1.0,<2.0",
  2956. "twig/twig": ">=1.2,<2.0"
  2957. },
  2958. "suggest": {
  2959. "twig/twig": "~1.2"
  2960. },
  2961. "type": "library",
  2962. "extra": {
  2963. "branch-alias": {
  2964. "dev-master": "1.0.x-dev"
  2965. }
  2966. },
  2967. "autoload": {
  2968. "psr-0": {
  2969. "SilexAssetic": "src"
  2970. }
  2971. },
  2972. "notification-url": "https://packagist.org/downloads/",
  2973. "license": [
  2974. "MIT"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "Sven Eisenschmidt",
  2979. "email": "sven.eisenschmidt@gmail.com",
  2980. "homepage": "http://unsicherheitsagent.de/"
  2981. },
  2982. {
  2983. "name": "Michael Heap",
  2984. "email": "m@michaelheap.com",
  2985. "homepage": "http://michaelheap.com/"
  2986. }
  2987. ],
  2988. "description": "Assetic extension for Silex",
  2989. "homepage": "https://github.com/mheap/Silex-Assetic",
  2990. "keywords": [
  2991. "assetic",
  2992. "silex"
  2993. ],
  2994. "time": "2013-05-28 13:04:36"
  2995. },
  2996. {
  2997. "name": "natxet/CssMin",
  2998. "version": "dev-master",
  2999. "source": {
  3000. "type": "git",
  3001. "url": "https://github.com/natxet/CssMin.git",
  3002. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4"
  3003. },
  3004. "dist": {
  3005. "type": "zip",
  3006. "url": "https://api.github.com/repos/natxet/CssMin/zipball/9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  3007. "reference": "9801e2a0de7ae252ca4f2b85542d75a82047a8b4",
  3008. "shasum": ""
  3009. },
  3010. "require": {
  3011. "php": ">=5.0"
  3012. },
  3013. "type": "library",
  3014. "autoload": {
  3015. "psr-0": {
  3016. "CssMin": "src/"
  3017. }
  3018. },
  3019. "notification-url": "https://packagist.org/downloads/",
  3020. "license": [
  3021. "MIT"
  3022. ],
  3023. "authors": [
  3024. {
  3025. "name": "Joe Scylla",
  3026. "email": "joe.scylla@gmail.com",
  3027. "homepage": "https://profiles.google.com/joe.scylla"
  3028. }
  3029. ],
  3030. "description": "Minifying CSS",
  3031. "homepage": "http://code.google.com/p/cssmin/",
  3032. "keywords": [
  3033. "css",
  3034. "minify"
  3035. ],
  3036. "time": "2013-03-15 18:47:32"
  3037. },
  3038. {
  3039. "name": "silex/web-profiler",
  3040. "version": "dev-master",
  3041. "target-dir": "Silex/Provider",
  3042. "source": {
  3043. "type": "git",
  3044. "url": "https://github.com/silexphp/Silex-WebProfiler.git",
  3045. "reference": "3d875ac4f583e893a076ec51478e38eeaf0cb562"
  3046. },
  3047. "dist": {
  3048. "type": "zip",
  3049. "url": "https://api.github.com/repos/silexphp/Silex-WebProfiler/zipball/3d875ac4f583e893a076ec51478e38eeaf0cb562",
  3050. "reference": "3d875ac4f583e893a076ec51478e38eeaf0cb562",
  3051. "shasum": ""
  3052. },
  3053. "require": {
  3054. "silex/silex": ">=1.0,<2.0",
  3055. "symfony/stopwatch": ">=2.2,<3.0",
  3056. "symfony/web-profiler-bundle": ">=2.2,<3.0"
  3057. },
  3058. "type": "library",
  3059. "extra": {
  3060. "branch-alias": {
  3061. "dev-master": "1.0.x-dev"
  3062. }
  3063. },
  3064. "autoload": {
  3065. "psr-0": {
  3066. "Silex\\Provider\\": ""
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Fabien Potencier",
  3076. "email": "fabien@symfony.com"
  3077. }
  3078. ],
  3079. "description": "A WebProfiler for Silex",
  3080. "homepage": "http://silex.sensiolabs.org/",
  3081. "time": "2013-05-03 17:04:41"
  3082. },
  3083. {
  3084. "name": "symfony/browser-kit",
  3085. "version": "2.3.x-dev",
  3086. "target-dir": "Symfony/Component/BrowserKit",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://github.com/symfony/BrowserKit.git",
  3090. "reference": "v2.3.1"
  3091. },
  3092. "dist": {
  3093. "type": "zip",
  3094. "url": "https://api.github.com/repos/symfony/BrowserKit/zipball/v2.3.1",
  3095. "reference": "v2.3.1",
  3096. "shasum": ""
  3097. },
  3098. "require": {
  3099. "php": ">=5.3.3",
  3100. "symfony/dom-crawler": ">=2.0,<3.0"
  3101. },
  3102. "require-dev": {
  3103. "symfony/css-selector": ">=2.0,<3.0",
  3104. "symfony/process": ">=2.0,<3.0"
  3105. },
  3106. "suggest": {
  3107. "symfony/process": ""
  3108. },
  3109. "type": "library",
  3110. "extra": {
  3111. "branch-alias": {
  3112. "dev-master": "2.3-dev"
  3113. }
  3114. },
  3115. "autoload": {
  3116. "psr-0": {
  3117. "Symfony\\Component\\BrowserKit\\": ""
  3118. }
  3119. },
  3120. "notification-url": "https://packagist.org/downloads/",
  3121. "license": [
  3122. "MIT"
  3123. ],
  3124. "authors": [
  3125. {
  3126. "name": "Fabien Potencier",
  3127. "email": "fabien@symfony.com"
  3128. },
  3129. {
  3130. "name": "Symfony Community",
  3131. "homepage": "http://symfony.com/contributors"
  3132. }
  3133. ],
  3134. "description": "Symfony BrowserKit Component",
  3135. "homepage": "http://symfony.com",
  3136. "time": "2013-05-15 15:16:47"
  3137. },
  3138. {
  3139. "name": "symfony/dom-crawler",
  3140. "version": "v2.3.1",
  3141. "target-dir": "Symfony/Component/DomCrawler",
  3142. "source": {
  3143. "type": "git",
  3144. "url": "https://github.com/symfony/DomCrawler.git",
  3145. "reference": "v2.3.1"
  3146. },
  3147. "dist": {
  3148. "type": "zip",
  3149. "url": "https://api.github.com/repos/symfony/DomCrawler/zipball/v2.3.1",
  3150. "reference": "v2.3.1",
  3151. "shasum": ""
  3152. },
  3153. "require": {
  3154. "php": ">=5.3.3"
  3155. },
  3156. "require-dev": {
  3157. "symfony/css-selector": ">=2.0,<3.0"
  3158. },
  3159. "suggest": {
  3160. "symfony/css-selector": ""
  3161. },
  3162. "type": "library",
  3163. "extra": {
  3164. "branch-alias": {
  3165. "dev-master": "2.3-dev"
  3166. }
  3167. },
  3168. "autoload": {
  3169. "psr-0": {
  3170. "Symfony\\Component\\DomCrawler\\": ""
  3171. }
  3172. },
  3173. "notification-url": "https://packagist.org/downloads/",
  3174. "license": [
  3175. "MIT"
  3176. ],
  3177. "authors": [
  3178. {
  3179. "name": "Fabien Potencier",
  3180. "email": "fabien@symfony.com"
  3181. },
  3182. {
  3183. "name": "Symfony Community",
  3184. "homepage": "http://symfony.com/contributors"
  3185. }
  3186. ],
  3187. "description": "Symfony DomCrawler Component",
  3188. "homepage": "http://symfony.com",
  3189. "time": "2013-06-11 07:15:14"
  3190. },
  3191. {
  3192. "name": "symfony/finder",
  3193. "version": "v2.2.2",
  3194. "target-dir": "Symfony/Component/Finder",
  3195. "source": {
  3196. "type": "git",
  3197. "url": "https://github.com/symfony/Finder.git",
  3198. "reference": "v2.2.2"
  3199. },
  3200. "dist": {
  3201. "type": "zip",
  3202. "url": "https://api.github.com/repos/symfony/Finder/zipball/v2.2.2",
  3203. "reference": "v2.2.2",
  3204. "shasum": ""
  3205. },
  3206. "require": {
  3207. "php": ">=5.3.3"
  3208. },
  3209. "type": "library",
  3210. "extra": {
  3211. "branch-alias": {
  3212. "dev-master": "2.2-dev"
  3213. }
  3214. },
  3215. "autoload": {
  3216. "psr-0": {
  3217. "Symfony\\Component\\Finder\\": ""
  3218. }
  3219. },
  3220. "notification-url": "https://packagist.org/downloads/",
  3221. "license": [
  3222. "MIT"
  3223. ],
  3224. "authors": [
  3225. {
  3226. "name": "Fabien Potencier",
  3227. "email": "fabien@symfony.com"
  3228. },
  3229. {
  3230. "name": "Symfony Community",
  3231. "homepage": "http://symfony.com/contributors"
  3232. }
  3233. ],
  3234. "description": "Symfony Finder Component",
  3235. "homepage": "http://symfony.com",
  3236. "time": "2013-05-27 20:26:32"
  3237. },
  3238. {
  3239. "name": "symfony/process",
  3240. "version": "v2.3.1",
  3241. "target-dir": "Symfony/Component/Process",
  3242. "source": {
  3243. "type": "git",
  3244. "url": "https://github.com/symfony/Process.git",
  3245. "reference": "v2.3.1"
  3246. },
  3247. "dist": {
  3248. "type": "zip",
  3249. "url": "https://api.github.com/repos/symfony/Process/zipball/v2.3.1",
  3250. "reference": "v2.3.1",
  3251. "shasum": ""
  3252. },
  3253. "require": {
  3254. "php": ">=5.3.3"
  3255. },
  3256. "type": "library",
  3257. "extra": {
  3258. "branch-alias": {
  3259. "dev-master": "2.3-dev"
  3260. }
  3261. },
  3262. "autoload": {
  3263. "psr-0": {
  3264. "Symfony\\Component\\Process\\": ""
  3265. }
  3266. },
  3267. "notification-url": "https://packagist.org/downloads/",
  3268. "license": [
  3269. "MIT"
  3270. ],
  3271. "authors": [
  3272. {
  3273. "name": "Fabien Potencier",
  3274. "email": "fabien@symfony.com"
  3275. },
  3276. {
  3277. "name": "Symfony Community",
  3278. "homepage": "http://symfony.com/contributors"
  3279. }
  3280. ],
  3281. "description": "Symfony Process Component",
  3282. "homepage": "http://symfony.com",
  3283. "time": "2013-05-06 20:03:44"
  3284. },
  3285. {
  3286. "name": "symfony/stopwatch",
  3287. "version": "v2.3.1",
  3288. "target-dir": "Symfony/Component/Stopwatch",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/symfony/Stopwatch.git",
  3292. "reference": "v2.3.1"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://api.github.com/repos/symfony/Stopwatch/zipball/v2.3.1",
  3297. "reference": "v2.3.1",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "php": ">=5.3.3"
  3302. },
  3303. "type": "library",
  3304. "extra": {
  3305. "branch-alias": {
  3306. "dev-master": "2.3-dev"
  3307. }
  3308. },
  3309. "autoload": {
  3310. "psr-0": {
  3311. "Symfony\\Component\\Stopwatch\\": ""
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "Fabien Potencier",
  3321. "email": "fabien@symfony.com"
  3322. },
  3323. {
  3324. "name": "Symfony Community",
  3325. "homepage": "http://symfony.com/contributors"
  3326. }
  3327. ],
  3328. "description": "Symfony Stopwatch Component",
  3329. "homepage": "http://symfony.com",
  3330. "time": "2013-04-17 07:17:10"
  3331. },
  3332. {
  3333. "name": "symfony/web-profiler-bundle",
  3334. "version": "v2.3.1",
  3335. "target-dir": "Symfony/Bundle/WebProfilerBundle",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/symfony/WebProfilerBundle.git",
  3339. "reference": "v2.3.1"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/symfony/WebProfilerBundle/zipball/v2.3.1",
  3344. "reference": "v2.3.1",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "php": ">=5.3.3",
  3349. "symfony/http-kernel": ">=2.2,<3.0",
  3350. "symfony/routing": ">=2.2,<3.0",
  3351. "symfony/twig-bridge": ">=2.2,<3.0"
  3352. },
  3353. "require-dev": {
  3354. "symfony/config": ">=2.2,<3.0",
  3355. "symfony/dependency-injection": ">=2.0,<3.0",
  3356. "symfony/stopwatch": ">=2.2,<3.0"
  3357. },
  3358. "type": "symfony-bundle",
  3359. "extra": {
  3360. "branch-alias": {
  3361. "dev-master": "2.3-dev"
  3362. }
  3363. },
  3364. "autoload": {
  3365. "psr-0": {
  3366. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  3367. }
  3368. },
  3369. "notification-url": "https://packagist.org/downloads/",
  3370. "license": [
  3371. "MIT"
  3372. ],
  3373. "authors": [
  3374. {
  3375. "name": "Fabien Potencier",
  3376. "email": "fabien@symfony.com"
  3377. },
  3378. {
  3379. "name": "Symfony Community",
  3380. "homepage": "http://symfony.com/contributors"
  3381. }
  3382. ],
  3383. "description": "Symfony WebProfilerBundle",
  3384. "homepage": "http://symfony.com",
  3385. "time": "2013-05-24 14:20:41"
  3386. }
  3387. ],
  3388. "aliases": [
  3389. ],
  3390. "minimum-stability": "stable",
  3391. "stability-flags": {
  3392. "symfony/doctrine-bridge": 20,
  3393. "symfony/property-access": 20,
  3394. "dflydev/doctrine-orm-service-provider": 20,
  3395. "doctrine/migrations": 20,
  3396. "gedmo/doctrine-extensions": 20,
  3397. "chamilo/chash": 20,
  3398. "pagerfanta/pagerfanta": 20,
  3399. "franmomu/silex-pagerfanta-provider": 20,
  3400. "igorw/config-service-provider": 20,
  3401. "realityking/pchart": 20,
  3402. "imagine/imagine": 20,
  3403. "grom/silex-service-provider": 20,
  3404. "knplabs/knp-menu": 20,
  3405. "knplabs/knp-snappy": 20,
  3406. "knplabs/console-service-provider": 20,
  3407. "knplabs/gaufrette": 20,
  3408. "jmontoyaa/phpqrcode": 20,
  3409. "bt51/gaufrette-serviceprovider": 20,
  3410. "neutron/silex-filesystem-provider": 20,
  3411. "jbroadway/urlify": 20,
  3412. "symfony/browser-kit": 20,
  3413. "silex/web-profiler": 20,
  3414. "natxet/cssmin": 20,
  3415. "leafo/lessphp": 20,
  3416. "mheap/silex-assetic": 20,
  3417. "filp/whoops": 20
  3418. },
  3419. "platform": {
  3420. "php": ">=5.3.2"
  3421. },
  3422. "platform-dev": [
  3423. ]
  3424. }