composer.lock 137 KB

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