composer.lock 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "47988c7314bc06c86c76d79238a15304",
  8. "content-hash": "fbf1ad5fab4262bae0d5fe1b960e9a78",
  9. "packages": [
  10. {
  11. "name": "composer/composer",
  12. "version": "dev-master",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/composer/composer.git",
  16. "reference": "649dc78f086e9f9cb7f4eb681ae17b95f896c823"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/composer/composer/zipball/649dc78f086e9f9cb7f4eb681ae17b95f896c823",
  21. "reference": "649dc78f086e9f9cb7f4eb681ae17b95f896c823",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "composer/semver": "^1.0",
  26. "composer/spdx-licenses": "^1.0",
  27. "justinrainbow/json-schema": "^1.4.4",
  28. "php": "^5.3.2 || ^7.0",
  29. "seld/cli-prompt": "^1.0",
  30. "seld/jsonlint": "^1.0",
  31. "seld/phar-utils": "^1.0",
  32. "symfony/console": "^2.5 || ^3.0",
  33. "symfony/filesystem": "^2.5 || ^3.0",
  34. "symfony/finder": "^2.2 || ^3.0",
  35. "symfony/process": "^2.1 || ^3.0"
  36. },
  37. "require-dev": {
  38. "phpunit/phpunit": "^4.5 || ^5.0.5",
  39. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  40. },
  41. "suggest": {
  42. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  43. "ext-zip": "Enabling the zip extension allows you to unzip archives, and allows gzip compression of all internet traffic"
  44. },
  45. "bin": [
  46. "bin/composer"
  47. ],
  48. "type": "library",
  49. "extra": {
  50. "branch-alias": {
  51. "dev-master": "1.0-dev"
  52. }
  53. },
  54. "autoload": {
  55. "psr-4": {
  56. "Composer\\": "src/Composer"
  57. }
  58. },
  59. "notification-url": "https://packagist.org/downloads/",
  60. "license": [
  61. "MIT"
  62. ],
  63. "authors": [
  64. {
  65. "name": "Nils Adermann",
  66. "email": "naderman@naderman.de",
  67. "homepage": "http://www.naderman.de"
  68. },
  69. {
  70. "name": "Jordi Boggiano",
  71. "email": "j.boggiano@seld.be",
  72. "homepage": "http://seld.be"
  73. }
  74. ],
  75. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  76. "homepage": "https://getcomposer.org/",
  77. "keywords": [
  78. "autoload",
  79. "dependency",
  80. "package"
  81. ],
  82. "time": "2015-11-06 22:33:38"
  83. },
  84. {
  85. "name": "composer/semver",
  86. "version": "1.2.0",
  87. "source": {
  88. "type": "git",
  89. "url": "https://github.com/composer/semver.git",
  90. "reference": "0faeb6e433f6b352f0dc55ec1faf5c6b605a35d3"
  91. },
  92. "dist": {
  93. "type": "zip",
  94. "url": "https://api.github.com/repos/composer/semver/zipball/0faeb6e433f6b352f0dc55ec1faf5c6b605a35d3",
  95. "reference": "0faeb6e433f6b352f0dc55ec1faf5c6b605a35d3",
  96. "shasum": ""
  97. },
  98. "require": {
  99. "php": "^5.3.2 || ^7.0"
  100. },
  101. "require-dev": {
  102. "phpunit/phpunit": "^4.5 || ^5.0.5",
  103. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  104. },
  105. "type": "library",
  106. "extra": {
  107. "branch-alias": {
  108. "dev-master": "1.x-dev"
  109. }
  110. },
  111. "autoload": {
  112. "psr-4": {
  113. "Composer\\Semver\\": "src"
  114. }
  115. },
  116. "notification-url": "https://packagist.org/downloads/",
  117. "license": [
  118. "MIT"
  119. ],
  120. "authors": [
  121. {
  122. "name": "Nils Adermann",
  123. "email": "naderman@naderman.de",
  124. "homepage": "http://www.naderman.de"
  125. },
  126. {
  127. "name": "Jordi Boggiano",
  128. "email": "j.boggiano@seld.be",
  129. "homepage": "http://seld.be"
  130. },
  131. {
  132. "name": "Rob Bast",
  133. "email": "rob.bast@gmail.com",
  134. "homepage": "http://robbast.nl"
  135. }
  136. ],
  137. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  138. "keywords": [
  139. "semantic",
  140. "semver",
  141. "validation",
  142. "versioning"
  143. ],
  144. "time": "2015-11-10 11:17:42"
  145. },
  146. {
  147. "name": "composer/spdx-licenses",
  148. "version": "1.1.2",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/composer/spdx-licenses.git",
  152. "reference": "9e1c3926bb0842812967213d7c92827bc5883671"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/9e1c3926bb0842812967213d7c92827bc5883671",
  157. "reference": "9e1c3926bb0842812967213d7c92827bc5883671",
  158. "shasum": ""
  159. },
  160. "require": {
  161. "php": ">=5.3.2"
  162. },
  163. "require-dev": {
  164. "phpunit/phpunit": "~4.5",
  165. "phpunit/phpunit-mock-objects": "~2.3"
  166. },
  167. "type": "library",
  168. "extra": {
  169. "branch-alias": {
  170. "dev-master": "1.x-dev"
  171. }
  172. },
  173. "autoload": {
  174. "psr-4": {
  175. "Composer\\Spdx\\": "src"
  176. }
  177. },
  178. "notification-url": "https://packagist.org/downloads/",
  179. "license": [
  180. "MIT"
  181. ],
  182. "authors": [
  183. {
  184. "name": "Nils Adermann",
  185. "email": "naderman@naderman.de",
  186. "homepage": "http://www.naderman.de"
  187. },
  188. {
  189. "name": "Jordi Boggiano",
  190. "email": "j.boggiano@seld.be",
  191. "homepage": "http://seld.be"
  192. },
  193. {
  194. "name": "Rob Bast",
  195. "email": "rob.bast@gmail.com",
  196. "homepage": "http://robbast.nl"
  197. }
  198. ],
  199. "description": "SPDX licenses list and validation library.",
  200. "keywords": [
  201. "license",
  202. "spdx",
  203. "validator"
  204. ],
  205. "time": "2015-10-05 11:27:42"
  206. },
  207. {
  208. "name": "container-interop/container-interop",
  209. "version": "1.1.0",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/container-interop/container-interop.git",
  213. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/fc08354828f8fd3245f77a66b9e23a6bca48297e",
  218. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e",
  219. "shasum": ""
  220. },
  221. "type": "library",
  222. "autoload": {
  223. "psr-4": {
  224. "Interop\\Container\\": "src/Interop/Container/"
  225. }
  226. },
  227. "notification-url": "https://packagist.org/downloads/",
  228. "license": [
  229. "MIT"
  230. ],
  231. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  232. "time": "2014-12-30 15:22:37"
  233. },
  234. {
  235. "name": "doctrine/annotations",
  236. "version": "v1.2.7",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/annotations.git",
  240. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  245. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  246. "shasum": ""
  247. },
  248. "require": {
  249. "doctrine/lexer": "1.*",
  250. "php": ">=5.3.2"
  251. },
  252. "require-dev": {
  253. "doctrine/cache": "1.*",
  254. "phpunit/phpunit": "4.*"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "branch-alias": {
  259. "dev-master": "1.3.x-dev"
  260. }
  261. },
  262. "autoload": {
  263. "psr-0": {
  264. "Doctrine\\Common\\Annotations\\": "lib/"
  265. }
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Roman Borschel",
  274. "email": "roman@code-factory.org"
  275. },
  276. {
  277. "name": "Benjamin Eberlei",
  278. "email": "kontakt@beberlei.de"
  279. },
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Jonathan Wage",
  286. "email": "jonwage@gmail.com"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "Docblock Annotations Parser",
  294. "homepage": "http://www.doctrine-project.org",
  295. "keywords": [
  296. "annotations",
  297. "docblock",
  298. "parser"
  299. ],
  300. "time": "2015-08-31 12:32:49"
  301. },
  302. {
  303. "name": "doctrine/cache",
  304. "version": "v1.5.1",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/doctrine/cache.git",
  308. "reference": "2b9cec5a5e722010cbebc91713d4c11eaa064d5e"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/doctrine/cache/zipball/2b9cec5a5e722010cbebc91713d4c11eaa064d5e",
  313. "reference": "2b9cec5a5e722010cbebc91713d4c11eaa064d5e",
  314. "shasum": ""
  315. },
  316. "require": {
  317. "php": ">=5.3.2"
  318. },
  319. "conflict": {
  320. "doctrine/common": ">2.2,<2.4"
  321. },
  322. "require-dev": {
  323. "phpunit/phpunit": ">=3.7",
  324. "predis/predis": "~1.0",
  325. "satooshi/php-coveralls": "~0.6"
  326. },
  327. "type": "library",
  328. "extra": {
  329. "branch-alias": {
  330. "dev-master": "1.5.x-dev"
  331. }
  332. },
  333. "autoload": {
  334. "psr-4": {
  335. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  336. }
  337. },
  338. "notification-url": "https://packagist.org/downloads/",
  339. "license": [
  340. "MIT"
  341. ],
  342. "authors": [
  343. {
  344. "name": "Roman Borschel",
  345. "email": "roman@code-factory.org"
  346. },
  347. {
  348. "name": "Benjamin Eberlei",
  349. "email": "kontakt@beberlei.de"
  350. },
  351. {
  352. "name": "Guilherme Blanco",
  353. "email": "guilhermeblanco@gmail.com"
  354. },
  355. {
  356. "name": "Jonathan Wage",
  357. "email": "jonwage@gmail.com"
  358. },
  359. {
  360. "name": "Johannes Schmitt",
  361. "email": "schmittjoh@gmail.com"
  362. }
  363. ],
  364. "description": "Caching library offering an object-oriented API for many cache backends",
  365. "homepage": "http://www.doctrine-project.org",
  366. "keywords": [
  367. "cache",
  368. "caching"
  369. ],
  370. "time": "2015-11-02 18:35:48"
  371. },
  372. {
  373. "name": "doctrine/collections",
  374. "version": "v1.3.0",
  375. "source": {
  376. "type": "git",
  377. "url": "https://github.com/doctrine/collections.git",
  378. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  379. },
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  383. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  384. "shasum": ""
  385. },
  386. "require": {
  387. "php": ">=5.3.2"
  388. },
  389. "require-dev": {
  390. "phpunit/phpunit": "~4.0"
  391. },
  392. "type": "library",
  393. "extra": {
  394. "branch-alias": {
  395. "dev-master": "1.2.x-dev"
  396. }
  397. },
  398. "autoload": {
  399. "psr-0": {
  400. "Doctrine\\Common\\Collections\\": "lib/"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "MIT"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Roman Borschel",
  410. "email": "roman@code-factory.org"
  411. },
  412. {
  413. "name": "Benjamin Eberlei",
  414. "email": "kontakt@beberlei.de"
  415. },
  416. {
  417. "name": "Guilherme Blanco",
  418. "email": "guilhermeblanco@gmail.com"
  419. },
  420. {
  421. "name": "Jonathan Wage",
  422. "email": "jonwage@gmail.com"
  423. },
  424. {
  425. "name": "Johannes Schmitt",
  426. "email": "schmittjoh@gmail.com"
  427. }
  428. ],
  429. "description": "Collections Abstraction library",
  430. "homepage": "http://www.doctrine-project.org",
  431. "keywords": [
  432. "array",
  433. "collections",
  434. "iterator"
  435. ],
  436. "time": "2015-04-14 22:21:58"
  437. },
  438. {
  439. "name": "doctrine/common",
  440. "version": "v2.5.1",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/doctrine/common.git",
  444. "reference": "0009b8f0d4a917aabc971fb089eba80e872f83f9"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/doctrine/common/zipball/0009b8f0d4a917aabc971fb089eba80e872f83f9",
  449. "reference": "0009b8f0d4a917aabc971fb089eba80e872f83f9",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "doctrine/annotations": "1.*",
  454. "doctrine/cache": "1.*",
  455. "doctrine/collections": "1.*",
  456. "doctrine/inflector": "1.*",
  457. "doctrine/lexer": "1.*",
  458. "php": ">=5.3.2"
  459. },
  460. "require-dev": {
  461. "phpunit/phpunit": "~3.7"
  462. },
  463. "type": "library",
  464. "extra": {
  465. "branch-alias": {
  466. "dev-master": "2.6.x-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-0": {
  471. "Doctrine\\Common\\": "lib/"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Roman Borschel",
  481. "email": "roman@code-factory.org"
  482. },
  483. {
  484. "name": "Benjamin Eberlei",
  485. "email": "kontakt@beberlei.de"
  486. },
  487. {
  488. "name": "Guilherme Blanco",
  489. "email": "guilhermeblanco@gmail.com"
  490. },
  491. {
  492. "name": "Jonathan Wage",
  493. "email": "jonwage@gmail.com"
  494. },
  495. {
  496. "name": "Johannes Schmitt",
  497. "email": "schmittjoh@gmail.com"
  498. }
  499. ],
  500. "description": "Common Library for Doctrine projects",
  501. "homepage": "http://www.doctrine-project.org",
  502. "keywords": [
  503. "annotations",
  504. "collections",
  505. "eventmanager",
  506. "persistence",
  507. "spl"
  508. ],
  509. "time": "2015-08-31 13:00:22"
  510. },
  511. {
  512. "name": "doctrine/dbal",
  513. "version": "v2.5.2",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/doctrine/dbal.git",
  517. "reference": "01dbcbc5cd0a913d751418e635434a18a2f2a75c"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/doctrine/dbal/zipball/01dbcbc5cd0a913d751418e635434a18a2f2a75c",
  522. "reference": "01dbcbc5cd0a913d751418e635434a18a2f2a75c",
  523. "shasum": ""
  524. },
  525. "require": {
  526. "doctrine/common": ">=2.4,<2.6-dev",
  527. "php": ">=5.3.2"
  528. },
  529. "require-dev": {
  530. "phpunit/phpunit": "4.*",
  531. "symfony/console": "2.*"
  532. },
  533. "suggest": {
  534. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  535. },
  536. "bin": [
  537. "bin/doctrine-dbal"
  538. ],
  539. "type": "library",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-master": "2.5.x-dev"
  543. }
  544. },
  545. "autoload": {
  546. "psr-0": {
  547. "Doctrine\\DBAL\\": "lib/"
  548. }
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Roman Borschel",
  557. "email": "roman@code-factory.org"
  558. },
  559. {
  560. "name": "Benjamin Eberlei",
  561. "email": "kontakt@beberlei.de"
  562. },
  563. {
  564. "name": "Guilherme Blanco",
  565. "email": "guilhermeblanco@gmail.com"
  566. },
  567. {
  568. "name": "Jonathan Wage",
  569. "email": "jonwage@gmail.com"
  570. }
  571. ],
  572. "description": "Database Abstraction Layer",
  573. "homepage": "http://www.doctrine-project.org",
  574. "keywords": [
  575. "database",
  576. "dbal",
  577. "persistence",
  578. "queryobject"
  579. ],
  580. "time": "2015-09-16 16:29:33"
  581. },
  582. {
  583. "name": "doctrine/doctrine-bundle",
  584. "version": "1.6.0",
  585. "source": {
  586. "type": "git",
  587. "url": "https://github.com/doctrine/DoctrineBundle.git",
  588. "reference": "a5b3ba908ba68f3e14e42762a7b940fde65ed7da"
  589. },
  590. "dist": {
  591. "type": "zip",
  592. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/a5b3ba908ba68f3e14e42762a7b940fde65ed7da",
  593. "reference": "a5b3ba908ba68f3e14e42762a7b940fde65ed7da",
  594. "shasum": ""
  595. },
  596. "require": {
  597. "doctrine/dbal": "~2.3",
  598. "doctrine/doctrine-cache-bundle": "~1.0",
  599. "jdorn/sql-formatter": "~1.1",
  600. "php": ">=5.3.2",
  601. "symfony/console": "~2.3|~3.0",
  602. "symfony/doctrine-bridge": "~2.2|~3.0",
  603. "symfony/framework-bundle": "~2.3|~3.0"
  604. },
  605. "require-dev": {
  606. "doctrine/orm": "~2.3",
  607. "phpunit/phpunit": "~4",
  608. "satooshi/php-coveralls": "~0.6.1",
  609. "symfony/validator": "~2.2|~3.0",
  610. "symfony/yaml": "~2.2|~3.0",
  611. "twig/twig": "~1.10"
  612. },
  613. "suggest": {
  614. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  615. "symfony/web-profiler-bundle": "to use the data collector"
  616. },
  617. "type": "symfony-bundle",
  618. "extra": {
  619. "branch-alias": {
  620. "dev-master": "1.6.x-dev"
  621. }
  622. },
  623. "autoload": {
  624. "psr-4": {
  625. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "MIT"
  631. ],
  632. "authors": [
  633. {
  634. "name": "Symfony Community",
  635. "homepage": "http://symfony.com/contributors"
  636. },
  637. {
  638. "name": "Benjamin Eberlei",
  639. "email": "kontakt@beberlei.de"
  640. },
  641. {
  642. "name": "Doctrine Project",
  643. "homepage": "http://www.doctrine-project.org/"
  644. },
  645. {
  646. "name": "Fabien Potencier",
  647. "email": "fabien@symfony.com"
  648. }
  649. ],
  650. "description": "Symfony DoctrineBundle",
  651. "homepage": "http://www.doctrine-project.org",
  652. "keywords": [
  653. "database",
  654. "dbal",
  655. "orm",
  656. "persistence"
  657. ],
  658. "time": "2015-11-04 21:33:02"
  659. },
  660. {
  661. "name": "doctrine/doctrine-cache-bundle",
  662. "version": "1.2.1",
  663. "source": {
  664. "type": "git",
  665. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  666. "reference": "3233bc78e222d528ca89a6a47d48d6f37888e95e"
  667. },
  668. "dist": {
  669. "type": "zip",
  670. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/3233bc78e222d528ca89a6a47d48d6f37888e95e",
  671. "reference": "3233bc78e222d528ca89a6a47d48d6f37888e95e",
  672. "shasum": ""
  673. },
  674. "require": {
  675. "doctrine/cache": "^1.4.2",
  676. "doctrine/inflector": "~1.0",
  677. "php": ">=5.3.2",
  678. "symfony/doctrine-bridge": "~2.2|~3.0",
  679. "symfony/security-acl": "~2.3|~3.0"
  680. },
  681. "require-dev": {
  682. "instaclick/coding-standard": "~1.1",
  683. "instaclick/object-calisthenics-sniffs": "dev-master",
  684. "instaclick/symfony2-coding-standard": "dev-remaster",
  685. "phpunit/phpunit": "~4",
  686. "satooshi/php-coveralls": "~0.6.1",
  687. "squizlabs/php_codesniffer": "~1.5",
  688. "symfony/console": "~2.2|~3.0",
  689. "symfony/finder": "~2.2|~3.0",
  690. "symfony/framework-bundle": "~2.2|~3.0",
  691. "symfony/phpunit-bridge": "~2.7|~3.0",
  692. "symfony/validator": "~2.2|~3.0",
  693. "symfony/yaml": "~2.2|~3.0"
  694. },
  695. "type": "symfony-bundle",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "1.0.x-dev"
  699. }
  700. },
  701. "autoload": {
  702. "psr-4": {
  703. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  704. }
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Symfony Community",
  713. "homepage": "http://symfony.com/contributors"
  714. },
  715. {
  716. "name": "Benjamin Eberlei",
  717. "email": "kontakt@beberlei.de"
  718. },
  719. {
  720. "name": "Fabio B. Silva",
  721. "email": "fabio.bat.silva@gmail.com"
  722. },
  723. {
  724. "name": "Guilherme Blanco",
  725. "email": "guilhermeblanco@hotmail.com"
  726. },
  727. {
  728. "name": "Doctrine Project",
  729. "homepage": "http://www.doctrine-project.org/"
  730. },
  731. {
  732. "name": "Fabien Potencier",
  733. "email": "fabien@symfony.com"
  734. }
  735. ],
  736. "description": "Symfony Bundle for Doctrine Cache",
  737. "homepage": "http://www.doctrine-project.org",
  738. "keywords": [
  739. "cache",
  740. "caching"
  741. ],
  742. "time": "2015-11-05 13:48:27"
  743. },
  744. {
  745. "name": "doctrine/inflector",
  746. "version": "v1.1.0",
  747. "source": {
  748. "type": "git",
  749. "url": "https://github.com/doctrine/inflector.git",
  750. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  751. },
  752. "dist": {
  753. "type": "zip",
  754. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  755. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  756. "shasum": ""
  757. },
  758. "require": {
  759. "php": ">=5.3.2"
  760. },
  761. "require-dev": {
  762. "phpunit/phpunit": "4.*"
  763. },
  764. "type": "library",
  765. "extra": {
  766. "branch-alias": {
  767. "dev-master": "1.1.x-dev"
  768. }
  769. },
  770. "autoload": {
  771. "psr-0": {
  772. "Doctrine\\Common\\Inflector\\": "lib/"
  773. }
  774. },
  775. "notification-url": "https://packagist.org/downloads/",
  776. "license": [
  777. "MIT"
  778. ],
  779. "authors": [
  780. {
  781. "name": "Roman Borschel",
  782. "email": "roman@code-factory.org"
  783. },
  784. {
  785. "name": "Benjamin Eberlei",
  786. "email": "kontakt@beberlei.de"
  787. },
  788. {
  789. "name": "Guilherme Blanco",
  790. "email": "guilhermeblanco@gmail.com"
  791. },
  792. {
  793. "name": "Jonathan Wage",
  794. "email": "jonwage@gmail.com"
  795. },
  796. {
  797. "name": "Johannes Schmitt",
  798. "email": "schmittjoh@gmail.com"
  799. }
  800. ],
  801. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  802. "homepage": "http://www.doctrine-project.org",
  803. "keywords": [
  804. "inflection",
  805. "pluralize",
  806. "singularize",
  807. "string"
  808. ],
  809. "time": "2015-11-06 14:35:42"
  810. },
  811. {
  812. "name": "doctrine/instantiator",
  813. "version": "1.0.5",
  814. "source": {
  815. "type": "git",
  816. "url": "https://github.com/doctrine/instantiator.git",
  817. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  818. },
  819. "dist": {
  820. "type": "zip",
  821. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  822. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  823. "shasum": ""
  824. },
  825. "require": {
  826. "php": ">=5.3,<8.0-DEV"
  827. },
  828. "require-dev": {
  829. "athletic/athletic": "~0.1.8",
  830. "ext-pdo": "*",
  831. "ext-phar": "*",
  832. "phpunit/phpunit": "~4.0",
  833. "squizlabs/php_codesniffer": "~2.0"
  834. },
  835. "type": "library",
  836. "extra": {
  837. "branch-alias": {
  838. "dev-master": "1.0.x-dev"
  839. }
  840. },
  841. "autoload": {
  842. "psr-4": {
  843. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  844. }
  845. },
  846. "notification-url": "https://packagist.org/downloads/",
  847. "license": [
  848. "MIT"
  849. ],
  850. "authors": [
  851. {
  852. "name": "Marco Pivetta",
  853. "email": "ocramius@gmail.com",
  854. "homepage": "http://ocramius.github.com/"
  855. }
  856. ],
  857. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  858. "homepage": "https://github.com/doctrine/instantiator",
  859. "keywords": [
  860. "constructor",
  861. "instantiate"
  862. ],
  863. "time": "2015-06-14 21:17:01"
  864. },
  865. {
  866. "name": "doctrine/lexer",
  867. "version": "v1.0.1",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/doctrine/lexer.git",
  871. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  876. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.3.2"
  881. },
  882. "type": "library",
  883. "extra": {
  884. "branch-alias": {
  885. "dev-master": "1.0.x-dev"
  886. }
  887. },
  888. "autoload": {
  889. "psr-0": {
  890. "Doctrine\\Common\\Lexer\\": "lib/"
  891. }
  892. },
  893. "notification-url": "https://packagist.org/downloads/",
  894. "license": [
  895. "MIT"
  896. ],
  897. "authors": [
  898. {
  899. "name": "Roman Borschel",
  900. "email": "roman@code-factory.org"
  901. },
  902. {
  903. "name": "Guilherme Blanco",
  904. "email": "guilhermeblanco@gmail.com"
  905. },
  906. {
  907. "name": "Johannes Schmitt",
  908. "email": "schmittjoh@gmail.com"
  909. }
  910. ],
  911. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  912. "homepage": "http://www.doctrine-project.org",
  913. "keywords": [
  914. "lexer",
  915. "parser"
  916. ],
  917. "time": "2014-09-09 13:34:57"
  918. },
  919. {
  920. "name": "doctrine/orm",
  921. "version": "v2.5.1",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/doctrine/doctrine2.git",
  925. "reference": "e6a83bedbe67579cb0bfb688e982e617943a2945"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/e6a83bedbe67579cb0bfb688e982e617943a2945",
  930. "reference": "e6a83bedbe67579cb0bfb688e982e617943a2945",
  931. "shasum": ""
  932. },
  933. "require": {
  934. "doctrine/cache": "~1.4",
  935. "doctrine/collections": "~1.2",
  936. "doctrine/common": ">=2.5-dev,<2.6-dev",
  937. "doctrine/dbal": ">=2.5-dev,<2.6-dev",
  938. "doctrine/instantiator": "~1.0.1",
  939. "ext-pdo": "*",
  940. "php": ">=5.4",
  941. "symfony/console": "~2.5"
  942. },
  943. "require-dev": {
  944. "phpunit/phpunit": "~4.0",
  945. "satooshi/php-coveralls": "dev-master",
  946. "symfony/yaml": "~2.1"
  947. },
  948. "suggest": {
  949. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  950. },
  951. "bin": [
  952. "bin/doctrine",
  953. "bin/doctrine.php"
  954. ],
  955. "type": "library",
  956. "extra": {
  957. "branch-alias": {
  958. "dev-master": "2.6.x-dev"
  959. }
  960. },
  961. "autoload": {
  962. "psr-0": {
  963. "Doctrine\\ORM\\": "lib/"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Roman Borschel",
  973. "email": "roman@code-factory.org"
  974. },
  975. {
  976. "name": "Benjamin Eberlei",
  977. "email": "kontakt@beberlei.de"
  978. },
  979. {
  980. "name": "Guilherme Blanco",
  981. "email": "guilhermeblanco@gmail.com"
  982. },
  983. {
  984. "name": "Jonathan Wage",
  985. "email": "jonwage@gmail.com"
  986. }
  987. ],
  988. "description": "Object-Relational-Mapper for PHP",
  989. "homepage": "http://www.doctrine-project.org",
  990. "keywords": [
  991. "database",
  992. "orm"
  993. ],
  994. "time": "2015-08-31 12:59:39"
  995. },
  996. {
  997. "name": "ezyang/htmlpurifier",
  998. "version": "v4.7.0",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/ezyang/htmlpurifier.git",
  1002. "reference": "ae1828d955112356f7677c465f94f7deb7d27a40"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/ae1828d955112356f7677c465f94f7deb7d27a40",
  1007. "reference": "ae1828d955112356f7677c465f94f7deb7d27a40",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "php": ">=5.2"
  1012. },
  1013. "type": "library",
  1014. "autoload": {
  1015. "psr-0": {
  1016. "HTMLPurifier": "library/"
  1017. },
  1018. "files": [
  1019. "library/HTMLPurifier.composer.php"
  1020. ]
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "LGPL"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "Edward Z. Yang",
  1029. "email": "admin@htmlpurifier.org",
  1030. "homepage": "http://ezyang.com"
  1031. }
  1032. ],
  1033. "description": "Standards compliant HTML filter written in PHP",
  1034. "homepage": "http://htmlpurifier.org/",
  1035. "keywords": [
  1036. "html"
  1037. ],
  1038. "time": "2015-08-05 01:03:42"
  1039. },
  1040. {
  1041. "name": "friendsofsymfony/user-bundle",
  1042. "version": "v1.3.6",
  1043. "target-dir": "FOS/UserBundle",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1047. "reference": "2022ac8463a8c50dd631f93a17064bd41795fff2"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/2022ac8463a8c50dd631f93a17064bd41795fff2",
  1052. "reference": "2022ac8463a8c50dd631f93a17064bd41795fff2",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": ">=5.3.2",
  1057. "symfony/framework-bundle": "~2.1",
  1058. "symfony/security-bundle": "~2.1"
  1059. },
  1060. "require-dev": {
  1061. "doctrine/doctrine-bundle": "~1.3",
  1062. "swiftmailer/swiftmailer": "~4.3|~5",
  1063. "symfony/validator": "~2.1",
  1064. "symfony/yaml": "~2.1",
  1065. "twig/twig": "~1.5",
  1066. "willdurand/propel-typehintable-behavior": "~1.0"
  1067. },
  1068. "suggest": {
  1069. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1070. },
  1071. "type": "symfony-bundle",
  1072. "extra": {
  1073. "branch-alias": {
  1074. "dev-master": "2.0.x-dev"
  1075. }
  1076. },
  1077. "autoload": {
  1078. "psr-0": {
  1079. "FOS\\UserBundle": ""
  1080. }
  1081. },
  1082. "notification-url": "https://packagist.org/downloads/",
  1083. "license": [
  1084. "MIT"
  1085. ],
  1086. "authors": [
  1087. {
  1088. "name": "Christophe Coevoet",
  1089. "email": "stof@notk.org"
  1090. },
  1091. {
  1092. "name": "FriendsOfSymfony Community",
  1093. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1094. },
  1095. {
  1096. "name": "Thibault Duplessis",
  1097. "email": "thibault.duplessis@gmail.com"
  1098. }
  1099. ],
  1100. "description": "Symfony FOSUserBundle",
  1101. "homepage": "http://friendsofsymfony.github.com",
  1102. "keywords": [
  1103. "User management"
  1104. ],
  1105. "time": "2015-06-01 00:57:03"
  1106. },
  1107. {
  1108. "name": "hwi/oauth-bundle",
  1109. "version": "dev-master",
  1110. "target-dir": "HWI/Bundle/OAuthBundle",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  1114. "reference": "7b26e8b87945f825bb5df29691ee72e12cf97894"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/7b26e8b87945f825bb5df29691ee72e12cf97894",
  1119. "reference": "7b26e8b87945f825bb5df29691ee72e12cf97894",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "kriswallsmith/buzz": "~0.13",
  1124. "php": ">=5.3.3",
  1125. "symfony/form": "~2.3",
  1126. "symfony/framework-bundle": "~2.3",
  1127. "symfony/options-resolver": "~2.3",
  1128. "symfony/security-bundle": "~2.3",
  1129. "symfony/yaml": "~2.3"
  1130. },
  1131. "conflict": {
  1132. "twig/twig": "<1.12"
  1133. },
  1134. "require-dev": {
  1135. "doctrine/orm": "~2.3",
  1136. "friendsofsymfony/user-bundle": "~1.3|~2.0",
  1137. "symfony/phpunit-bridge": "~2.7",
  1138. "symfony/property-access": "~2.3",
  1139. "symfony/twig-bundle": "~2.3",
  1140. "symfony/validator": "~2.3"
  1141. },
  1142. "suggest": {
  1143. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  1144. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  1145. "symfony/property-access": "to use FOSUB integration with this bundle",
  1146. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  1147. },
  1148. "type": "symfony-bundle",
  1149. "extra": {
  1150. "branch-alias": {
  1151. "dev-master": "0.4-dev"
  1152. }
  1153. },
  1154. "autoload": {
  1155. "psr-0": {
  1156. "HWI\\Bundle\\OAuthBundle\\": ""
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "MIT"
  1162. ],
  1163. "authors": [
  1164. {
  1165. "name": "Contributors",
  1166. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  1167. },
  1168. {
  1169. "name": "Joseph Bielawski",
  1170. "email": "stloyd@gmail.com"
  1171. },
  1172. {
  1173. "name": "Alexander",
  1174. "email": "iam.asm89@gmail.com"
  1175. },
  1176. {
  1177. "name": "Geoffrey Bachelet",
  1178. "email": "geoffrey.bachelet@gmail.com"
  1179. }
  1180. ],
  1181. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  1182. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  1183. "keywords": [
  1184. "37signals",
  1185. "Authentication",
  1186. "amazon",
  1187. "bitbucket",
  1188. "bitly",
  1189. "box",
  1190. "bufferapp",
  1191. "dailymotion",
  1192. "deviantart",
  1193. "disqus",
  1194. "dropbox",
  1195. "eventbrite",
  1196. "facebook",
  1197. "firewall",
  1198. "fiware",
  1199. "flickr",
  1200. "foursquare",
  1201. "github",
  1202. "google",
  1203. "hubic",
  1204. "instagram",
  1205. "jira",
  1206. "linkedin",
  1207. "mail.ru",
  1208. "oauth",
  1209. "oauth1",
  1210. "oauth2",
  1211. "odnoklassniki",
  1212. "qq",
  1213. "salesforce",
  1214. "security",
  1215. "sensio connect",
  1216. "sina weibo",
  1217. "spotify",
  1218. "stack exchange",
  1219. "stereomood",
  1220. "trello",
  1221. "twitch",
  1222. "twitter",
  1223. "vkontakte",
  1224. "wechat",
  1225. "windows live",
  1226. "wordpress",
  1227. "yahoo",
  1228. "yandex"
  1229. ],
  1230. "time": "2015-10-09 06:46:40"
  1231. },
  1232. {
  1233. "name": "jdorn/sql-formatter",
  1234. "version": "v1.2.17",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/jdorn/sql-formatter.git",
  1238. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1243. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "php": ">=5.2.4"
  1248. },
  1249. "require-dev": {
  1250. "phpunit/phpunit": "3.7.*"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-master": "1.3.x-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "classmap": [
  1260. "lib"
  1261. ]
  1262. },
  1263. "notification-url": "https://packagist.org/downloads/",
  1264. "license": [
  1265. "MIT"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "Jeremy Dorn",
  1270. "email": "jeremy@jeremydorn.com",
  1271. "homepage": "http://jeremydorn.com/"
  1272. }
  1273. ],
  1274. "description": "a PHP SQL highlighting library",
  1275. "homepage": "https://github.com/jdorn/sql-formatter/",
  1276. "keywords": [
  1277. "highlight",
  1278. "sql"
  1279. ],
  1280. "time": "2014-01-12 16:20:24"
  1281. },
  1282. {
  1283. "name": "jms/aop-bundle",
  1284. "version": "1.1.0",
  1285. "target-dir": "JMS/AopBundle",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/schmittjoh/JMSAopBundle.git",
  1289. "reference": "66287749c020b4c667c0ff4937b07e66c04bbe71"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/66287749c020b4c667c0ff4937b07e66c04bbe71",
  1294. "reference": "66287749c020b4c667c0ff4937b07e66c04bbe71",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "jms/cg": "^1.1",
  1299. "symfony/framework-bundle": "2.*"
  1300. },
  1301. "type": "symfony-bundle",
  1302. "extra": {
  1303. "branch-alias": {
  1304. "dev-master": "1.1.x-dev"
  1305. }
  1306. },
  1307. "autoload": {
  1308. "psr-0": {
  1309. "JMS\\AopBundle": ""
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "Apache-2.0"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Johannes M. Schmitt",
  1319. "email": "schmittjoh@gmail.com"
  1320. }
  1321. ],
  1322. "description": "Adds AOP capabilities to Symfony2",
  1323. "keywords": [
  1324. "annotations",
  1325. "aop"
  1326. ],
  1327. "time": "2015-09-13 09:02:33"
  1328. },
  1329. {
  1330. "name": "jms/cg",
  1331. "version": "1.1.0",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/schmittjoh/cg-library.git",
  1335. "reference": "0af1113c7409b8636c5244bbae10b2e0ff792e9c"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/0af1113c7409b8636c5244bbae10b2e0ff792e9c",
  1340. "reference": "0af1113c7409b8636c5244bbae10b2e0ff792e9c",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "php": ">=5.3.0"
  1345. },
  1346. "type": "library",
  1347. "extra": {
  1348. "branch-alias": {
  1349. "dev-master": "1.1-dev"
  1350. }
  1351. },
  1352. "autoload": {
  1353. "psr-0": {
  1354. "CG\\": "src/"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "Apache2"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Johannes M. Schmitt",
  1364. "email": "schmittjoh@gmail.com"
  1365. }
  1366. ],
  1367. "description": "Toolset for generating PHP code",
  1368. "keywords": [
  1369. "code generation"
  1370. ],
  1371. "time": "2015-09-13 08:54:43"
  1372. },
  1373. {
  1374. "name": "jms/di-extra-bundle",
  1375. "version": "1.6.0",
  1376. "target-dir": "JMS/DiExtraBundle",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1380. "reference": "c9e36dce4014db1f6abf02e94eac225344a5147d"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/c9e36dce4014db1f6abf02e94eac225344a5147d",
  1385. "reference": "c9e36dce4014db1f6abf02e94eac225344a5147d",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "jms/aop-bundle": "^1.1.0",
  1390. "jms/metadata": "1.*",
  1391. "symfony/finder": "~2.1",
  1392. "symfony/framework-bundle": "~2.1",
  1393. "symfony/process": "~2.1"
  1394. },
  1395. "require-dev": {
  1396. "doctrine/doctrine-bundle": "*",
  1397. "doctrine/orm": "*",
  1398. "jms/security-extra-bundle": "1.*",
  1399. "phpcollection/phpcollection": ">=0.1,<0.3-dev",
  1400. "sensio/framework-extra-bundle": "*",
  1401. "symfony/browser-kit": "*",
  1402. "symfony/class-loader": "*",
  1403. "symfony/form": "*",
  1404. "symfony/security-bundle": "*",
  1405. "symfony/twig-bundle": "*",
  1406. "symfony/validator": "*",
  1407. "symfony/yaml": "*"
  1408. },
  1409. "type": "symfony-bundle",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-master": "1.5-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "psr-0": {
  1417. "JMS\\DiExtraBundle": ""
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "Apache"
  1423. ],
  1424. "authors": [
  1425. {
  1426. "name": "Johannes M. Schmitt",
  1427. "email": "schmittjoh@gmail.com"
  1428. }
  1429. ],
  1430. "description": "Allows to configure dependency injection using annotations",
  1431. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1432. "keywords": [
  1433. "annotations",
  1434. "dependency injection"
  1435. ],
  1436. "time": "2015-09-13 09:03:50"
  1437. },
  1438. {
  1439. "name": "jms/metadata",
  1440. "version": "1.5.1",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/schmittjoh/metadata.git",
  1444. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/22b72455559a25777cfd28c4ffda81ff7639f353",
  1449. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353",
  1450. "shasum": ""
  1451. },
  1452. "require": {
  1453. "php": ">=5.3.0"
  1454. },
  1455. "require-dev": {
  1456. "doctrine/cache": "~1.0"
  1457. },
  1458. "type": "library",
  1459. "extra": {
  1460. "branch-alias": {
  1461. "dev-master": "1.5.x-dev"
  1462. }
  1463. },
  1464. "autoload": {
  1465. "psr-0": {
  1466. "Metadata\\": "src/"
  1467. }
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "Apache"
  1472. ],
  1473. "authors": [
  1474. {
  1475. "name": "Johannes Schmitt",
  1476. "email": "schmittjoh@gmail.com",
  1477. "homepage": "https://github.com/schmittjoh",
  1478. "role": "Developer of wrapped JMSSerializerBundle"
  1479. }
  1480. ],
  1481. "description": "Class/method/property metadata management in PHP",
  1482. "keywords": [
  1483. "annotations",
  1484. "metadata",
  1485. "xml",
  1486. "yaml"
  1487. ],
  1488. "time": "2014-07-12 07:13:19"
  1489. },
  1490. {
  1491. "name": "jms/parser-lib",
  1492. "version": "1.0.0",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/schmittjoh/parser-lib.git",
  1496. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1501. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1506. },
  1507. "type": "library",
  1508. "extra": {
  1509. "branch-alias": {
  1510. "dev-master": "1.0-dev"
  1511. }
  1512. },
  1513. "autoload": {
  1514. "psr-0": {
  1515. "JMS\\": "src/"
  1516. }
  1517. },
  1518. "notification-url": "https://packagist.org/downloads/",
  1519. "license": [
  1520. "Apache2"
  1521. ],
  1522. "description": "A library for easily creating recursive-descent parsers.",
  1523. "time": "2012-11-18 18:08:43"
  1524. },
  1525. {
  1526. "name": "jms/security-extra-bundle",
  1527. "version": "1.5.1",
  1528. "target-dir": "JMS/SecurityExtraBundle",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1532. "reference": "f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc",
  1537. "reference": "f5f6c6df69ceae8b709e57b49fcc2a42d9280bcc",
  1538. "shasum": ""
  1539. },
  1540. "require": {
  1541. "jms/aop-bundle": "~1.0",
  1542. "jms/di-extra-bundle": "~1.3",
  1543. "jms/metadata": "~1.0",
  1544. "jms/parser-lib": "~1.0",
  1545. "symfony/framework-bundle": "~2.1",
  1546. "symfony/security-bundle": "*"
  1547. },
  1548. "require-dev": {
  1549. "doctrine/doctrine-bundle": "*",
  1550. "doctrine/orm": "*",
  1551. "sensio/framework-extra-bundle": "*",
  1552. "symfony/browser-kit": "*",
  1553. "symfony/class-loader": "*",
  1554. "symfony/css-selector": "*",
  1555. "symfony/finder": "*",
  1556. "symfony/form": "*",
  1557. "symfony/process": "*",
  1558. "symfony/twig-bundle": "*",
  1559. "symfony/validator": "*",
  1560. "symfony/yaml": "*"
  1561. },
  1562. "type": "symfony-bundle",
  1563. "extra": {
  1564. "branch-alias": {
  1565. "dev-master": "1.4-dev"
  1566. }
  1567. },
  1568. "autoload": {
  1569. "psr-0": {
  1570. "JMS\\SecurityExtraBundle": ""
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "Apache2"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Johannes M. Schmitt",
  1580. "email": "schmittjoh@gmail.com",
  1581. "homepage": "http://jmsyst.com",
  1582. "role": "Developer of wrapped JMSSerializerBundle"
  1583. }
  1584. ],
  1585. "description": "Enhances the Symfony2 Security Component by adding several new features",
  1586. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1587. "keywords": [
  1588. "annotations",
  1589. "authorization",
  1590. "expression",
  1591. "secure",
  1592. "security"
  1593. ],
  1594. "time": "2013-06-09 10:29:54"
  1595. },
  1596. {
  1597. "name": "justinrainbow/json-schema",
  1598. "version": "1.5.0",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/justinrainbow/json-schema.git",
  1602. "reference": "a4bee9f4b344b66e0a0d96c7afae1e92edf385fe"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/a4bee9f4b344b66e0a0d96c7afae1e92edf385fe",
  1607. "reference": "a4bee9f4b344b66e0a0d96c7afae1e92edf385fe",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "php": ">=5.3.2"
  1612. },
  1613. "require-dev": {
  1614. "json-schema/json-schema-test-suite": "1.1.0",
  1615. "phpdocumentor/phpdocumentor": "~2",
  1616. "phpunit/phpunit": "~3.7"
  1617. },
  1618. "bin": [
  1619. "bin/validate-json"
  1620. ],
  1621. "type": "library",
  1622. "extra": {
  1623. "branch-alias": {
  1624. "dev-master": "1.4.x-dev"
  1625. }
  1626. },
  1627. "autoload": {
  1628. "psr-4": {
  1629. "JsonSchema\\": "src/JsonSchema/"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "BSD-3-Clause"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "Bruno Prieto Reis",
  1639. "email": "bruno.p.reis@gmail.com"
  1640. },
  1641. {
  1642. "name": "Justin Rainbow",
  1643. "email": "justin.rainbow@gmail.com"
  1644. },
  1645. {
  1646. "name": "Igor Wiedler",
  1647. "email": "igor@wiedler.ch"
  1648. },
  1649. {
  1650. "name": "Robert Schönthal",
  1651. "email": "seroscho@googlemail.com"
  1652. }
  1653. ],
  1654. "description": "A library to validate a json schema.",
  1655. "homepage": "https://github.com/justinrainbow/json-schema",
  1656. "keywords": [
  1657. "json",
  1658. "schema"
  1659. ],
  1660. "time": "2015-09-08 22:28:04"
  1661. },
  1662. {
  1663. "name": "knplabs/knp-menu",
  1664. "version": "v2.1.0",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1668. "reference": "c6ad49933babd06a27b2f962a3469601ec9038b8"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/c6ad49933babd06a27b2f962a3469601ec9038b8",
  1673. "reference": "c6ad49933babd06a27b2f962a3469601ec9038b8",
  1674. "shasum": ""
  1675. },
  1676. "require": {
  1677. "php": ">=5.3.0"
  1678. },
  1679. "require-dev": {
  1680. "pimple/pimple": "~1.0",
  1681. "silex/silex": "~1.0",
  1682. "symfony/phpunit-bridge": "~2.7",
  1683. "twig/twig": "~1.16|~2.0"
  1684. },
  1685. "suggest": {
  1686. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1687. "silex/silex": "for the integration with your silex application",
  1688. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1689. },
  1690. "type": "library",
  1691. "extra": {
  1692. "branch-alias": {
  1693. "dev-master": "2.1-dev"
  1694. }
  1695. },
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Knp\\Menu\\": "src/Knp/Menu"
  1699. }
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "MIT"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "Christophe Coevoet",
  1708. "email": "stof@notk.org"
  1709. },
  1710. {
  1711. "name": "Knplabs",
  1712. "homepage": "http://knplabs.com"
  1713. },
  1714. {
  1715. "name": "Symfony Community",
  1716. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1717. }
  1718. ],
  1719. "description": "An object oriented menu library",
  1720. "homepage": "http://knplabs.com",
  1721. "keywords": [
  1722. "menu",
  1723. "tree"
  1724. ],
  1725. "time": "2015-09-20 08:23:47"
  1726. },
  1727. {
  1728. "name": "knplabs/knp-menu-bundle",
  1729. "version": "v2.1.0",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1733. "reference": "2246a70109bdd313a105d2a7ef464a763aacf0cd"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/2246a70109bdd313a105d2a7ef464a763aacf0cd",
  1738. "reference": "2246a70109bdd313a105d2a7ef464a763aacf0cd",
  1739. "shasum": ""
  1740. },
  1741. "require": {
  1742. "knplabs/knp-menu": "~2.1",
  1743. "symfony/framework-bundle": "~2.3"
  1744. },
  1745. "require-dev": {
  1746. "symfony/expression-language": "~2.4",
  1747. "symfony/phpunit-bridge": "~2.7"
  1748. },
  1749. "type": "symfony-bundle",
  1750. "extra": {
  1751. "branch-alias": {
  1752. "dev-master": "2.1.x-dev"
  1753. }
  1754. },
  1755. "autoload": {
  1756. "psr-4": {
  1757. "Knp\\Bundle\\MenuBundle\\": ""
  1758. }
  1759. },
  1760. "notification-url": "https://packagist.org/downloads/",
  1761. "license": [
  1762. "MIT"
  1763. ],
  1764. "authors": [
  1765. {
  1766. "name": "Christophe Coevoet",
  1767. "email": "stof@notk.org"
  1768. },
  1769. {
  1770. "name": "Knplabs",
  1771. "homepage": "http://knplabs.com"
  1772. },
  1773. {
  1774. "name": "Symfony Community",
  1775. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1776. }
  1777. ],
  1778. "description": "This bundle provides an integration of the KnpMenu library",
  1779. "keywords": [
  1780. "menu"
  1781. ],
  1782. "time": "2015-09-28 15:23:54"
  1783. },
  1784. {
  1785. "name": "kriswallsmith/buzz",
  1786. "version": "v0.15",
  1787. "source": {
  1788. "type": "git",
  1789. "url": "https://github.com/kriswallsmith/Buzz.git",
  1790. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
  1791. },
  1792. "dist": {
  1793. "type": "zip",
  1794. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
  1795. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
  1796. "shasum": ""
  1797. },
  1798. "require": {
  1799. "php": ">=5.3.0"
  1800. },
  1801. "require-dev": {
  1802. "phpunit/phpunit": "3.7.*"
  1803. },
  1804. "suggest": {
  1805. "ext-curl": "*"
  1806. },
  1807. "type": "library",
  1808. "autoload": {
  1809. "psr-0": {
  1810. "Buzz": "lib/"
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "MIT"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Kris Wallsmith",
  1820. "email": "kris.wallsmith@gmail.com",
  1821. "homepage": "http://kriswallsmith.net/"
  1822. }
  1823. ],
  1824. "description": "Lightweight HTTP client",
  1825. "homepage": "https://github.com/kriswallsmith/Buzz",
  1826. "keywords": [
  1827. "curl",
  1828. "http client"
  1829. ],
  1830. "time": "2015-06-25 17:26:56"
  1831. },
  1832. {
  1833. "name": "monolog/monolog",
  1834. "version": "1.17.2",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/Seldaek/monolog.git",
  1838. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1843. "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "php": ">=5.3.0",
  1848. "psr/log": "~1.0"
  1849. },
  1850. "provide": {
  1851. "psr/log-implementation": "1.0.0"
  1852. },
  1853. "require-dev": {
  1854. "aws/aws-sdk-php": "^2.4.9",
  1855. "doctrine/couchdb": "~1.0@dev",
  1856. "graylog2/gelf-php": "~1.0",
  1857. "jakub-onderka/php-parallel-lint": "0.9",
  1858. "php-console/php-console": "^3.1.3",
  1859. "phpunit/phpunit": "~4.5",
  1860. "phpunit/phpunit-mock-objects": "2.3.0",
  1861. "raven/raven": "^0.13",
  1862. "ruflin/elastica": ">=0.90 <3.0",
  1863. "swiftmailer/swiftmailer": "~5.3",
  1864. "videlalvaro/php-amqplib": "~2.4"
  1865. },
  1866. "suggest": {
  1867. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1868. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1869. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1870. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1871. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1872. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1873. "raven/raven": "Allow sending log messages to a Sentry server",
  1874. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1875. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1876. "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
  1877. },
  1878. "type": "library",
  1879. "extra": {
  1880. "branch-alias": {
  1881. "dev-master": "1.16.x-dev"
  1882. }
  1883. },
  1884. "autoload": {
  1885. "psr-4": {
  1886. "Monolog\\": "src/Monolog"
  1887. }
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Jordi Boggiano",
  1896. "email": "j.boggiano@seld.be",
  1897. "homepage": "http://seld.be"
  1898. }
  1899. ],
  1900. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1901. "homepage": "http://github.com/Seldaek/monolog",
  1902. "keywords": [
  1903. "log",
  1904. "logging",
  1905. "psr-3"
  1906. ],
  1907. "time": "2015-10-14 12:51:02"
  1908. },
  1909. {
  1910. "name": "nelmio/security-bundle",
  1911. "version": "1.8.0",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  1915. "reference": "b45f81f90d95b7c994db675930e9b1623b66ed03"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/b45f81f90d95b7c994db675930e9b1623b66ed03",
  1920. "reference": "b45f81f90d95b7c994db675930e9b1623b66ed03",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "symfony/framework-bundle": "~2.3",
  1925. "symfony/security": "~2.3"
  1926. },
  1927. "type": "symfony-bundle",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "1.8.x-dev"
  1931. }
  1932. },
  1933. "autoload": {
  1934. "psr-4": {
  1935. "Nelmio\\SecurityBundle\\": ""
  1936. }
  1937. },
  1938. "notification-url": "https://packagist.org/downloads/",
  1939. "license": [
  1940. "MIT"
  1941. ],
  1942. "authors": [
  1943. {
  1944. "name": "Nelmio",
  1945. "homepage": "http://nelm.io"
  1946. },
  1947. {
  1948. "name": "Symfony Community",
  1949. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  1950. }
  1951. ],
  1952. "description": "Extra security-related features for Symfony2: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  1953. "keywords": [
  1954. "security"
  1955. ],
  1956. "time": "2015-09-12 20:40:16"
  1957. },
  1958. {
  1959. "name": "nelmio/solarium-bundle",
  1960. "version": "v1.1.0",
  1961. "target-dir": "Nelmio/SolariumBundle",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/nelmio/NelmioSolariumBundle.git",
  1965. "reference": "693700c4deeb04997b90aca659dd881409f33eb9"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/693700c4deeb04997b90aca659dd881409f33eb9",
  1970. "reference": "693700c4deeb04997b90aca659dd881409f33eb9",
  1971. "shasum": ""
  1972. },
  1973. "require": {
  1974. "solarium/solarium": "~2.4.0",
  1975. "symfony/framework-bundle": "2.*"
  1976. },
  1977. "require-dev": {
  1978. "symfony/yaml": "2.*"
  1979. },
  1980. "type": "symfony-bundle",
  1981. "extra": {
  1982. "branch-alias": {
  1983. "dev-master": "1.1-dev"
  1984. }
  1985. },
  1986. "autoload": {
  1987. "psr-0": {
  1988. "Nelmio\\SolariumBundle": ""
  1989. }
  1990. },
  1991. "notification-url": "https://packagist.org/downloads/",
  1992. "license": [
  1993. "MIT"
  1994. ],
  1995. "authors": [
  1996. {
  1997. "name": "Nelmio",
  1998. "homepage": "http://nelm.io"
  1999. },
  2000. {
  2001. "name": "Symfony Community",
  2002. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  2003. }
  2004. ],
  2005. "description": "Integration with solarium solr client.",
  2006. "keywords": [
  2007. "search",
  2008. "solarium",
  2009. "solr"
  2010. ],
  2011. "time": "2013-01-07 10:35:43"
  2012. },
  2013. {
  2014. "name": "pagerfanta/pagerfanta",
  2015. "version": "v1.0.3",
  2016. "source": {
  2017. "type": "git",
  2018. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2019. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  2020. },
  2021. "dist": {
  2022. "type": "zip",
  2023. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2024. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2025. "shasum": ""
  2026. },
  2027. "require": {
  2028. "php": ">=5.3.0"
  2029. },
  2030. "require-dev": {
  2031. "doctrine/orm": "~2.3",
  2032. "doctrine/phpcr-odm": "1.*",
  2033. "jackalope/jackalope-doctrine-dbal": "1.*",
  2034. "jmikola/geojson": "~1.0",
  2035. "mandango/mandango": "~1.0@dev",
  2036. "mandango/mondator": "~1.0@dev",
  2037. "phpunit/phpunit": "~4",
  2038. "propel/propel1": "~1.6",
  2039. "ruflin/elastica": "~1.3",
  2040. "solarium/solarium": "~3.1"
  2041. },
  2042. "suggest": {
  2043. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2044. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2045. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2046. "mandango/mandango": "To use the MandangoAdapter.",
  2047. "propel/propel1": "To use the PropelAdapter",
  2048. "solarium/solarium": "To use the SolariumAdapter."
  2049. },
  2050. "type": "library",
  2051. "extra": {
  2052. "branch-alias": {
  2053. "dev-master": "1.0.x-dev"
  2054. }
  2055. },
  2056. "autoload": {
  2057. "psr-0": {
  2058. "Pagerfanta\\": "src/"
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Pablo Díez",
  2068. "email": "pablodip@gmail.com"
  2069. }
  2070. ],
  2071. "description": "Pagination for PHP 5.3",
  2072. "keywords": [
  2073. "page",
  2074. "pagination",
  2075. "paginator",
  2076. "paging"
  2077. ],
  2078. "time": "2014-10-06 10:57:25"
  2079. },
  2080. {
  2081. "name": "phpoption/phpoption",
  2082. "version": "1.5.0",
  2083. "source": {
  2084. "type": "git",
  2085. "url": "https://github.com/schmittjoh/php-option.git",
  2086. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2087. },
  2088. "dist": {
  2089. "type": "zip",
  2090. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2091. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2092. "shasum": ""
  2093. },
  2094. "require": {
  2095. "php": ">=5.3.0"
  2096. },
  2097. "require-dev": {
  2098. "phpunit/phpunit": "4.7.*"
  2099. },
  2100. "type": "library",
  2101. "extra": {
  2102. "branch-alias": {
  2103. "dev-master": "1.3-dev"
  2104. }
  2105. },
  2106. "autoload": {
  2107. "psr-0": {
  2108. "PhpOption\\": "src/"
  2109. }
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "Apache2"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Johannes M. Schmitt",
  2118. "email": "schmittjoh@gmail.com"
  2119. }
  2120. ],
  2121. "description": "Option Type for PHP",
  2122. "keywords": [
  2123. "language",
  2124. "option",
  2125. "php",
  2126. "type"
  2127. ],
  2128. "time": "2015-07-25 16:39:46"
  2129. },
  2130. {
  2131. "name": "predis/predis",
  2132. "version": "v1.0.3",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/nrk/predis.git",
  2136. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://api.github.com/repos/nrk/predis/zipball/84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2141. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2142. "shasum": ""
  2143. },
  2144. "require": {
  2145. "php": ">=5.3.2"
  2146. },
  2147. "require-dev": {
  2148. "phpunit/phpunit": "~4.0"
  2149. },
  2150. "suggest": {
  2151. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2152. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2153. },
  2154. "type": "library",
  2155. "autoload": {
  2156. "psr-4": {
  2157. "Predis\\": "src/"
  2158. }
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "authors": [
  2165. {
  2166. "name": "Daniele Alessandri",
  2167. "email": "suppakilla@gmail.com",
  2168. "homepage": "http://clorophilla.net"
  2169. }
  2170. ],
  2171. "description": "Flexible and feature-complete PHP client library for Redis",
  2172. "homepage": "http://github.com/nrk/predis",
  2173. "keywords": [
  2174. "nosql",
  2175. "predis",
  2176. "redis"
  2177. ],
  2178. "time": "2015-07-30 18:34:15"
  2179. },
  2180. {
  2181. "name": "psr/log",
  2182. "version": "1.0.0",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/php-fig/log.git",
  2186. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2191. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2192. "shasum": ""
  2193. },
  2194. "type": "library",
  2195. "autoload": {
  2196. "psr-0": {
  2197. "Psr\\Log\\": ""
  2198. }
  2199. },
  2200. "notification-url": "https://packagist.org/downloads/",
  2201. "license": [
  2202. "MIT"
  2203. ],
  2204. "authors": [
  2205. {
  2206. "name": "PHP-FIG",
  2207. "homepage": "http://www.php-fig.org/"
  2208. }
  2209. ],
  2210. "description": "Common interface for logging libraries",
  2211. "keywords": [
  2212. "log",
  2213. "psr",
  2214. "psr-3"
  2215. ],
  2216. "time": "2012-12-21 11:40:51"
  2217. },
  2218. {
  2219. "name": "seld/cli-prompt",
  2220. "version": "1.0.0",
  2221. "source": {
  2222. "type": "git",
  2223. "url": "https://github.com/Seldaek/cli-prompt.git",
  2224. "reference": "fe114c7a6ac5cb0ce76932ae4017024d9842a49c"
  2225. },
  2226. "dist": {
  2227. "type": "zip",
  2228. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/fe114c7a6ac5cb0ce76932ae4017024d9842a49c",
  2229. "reference": "fe114c7a6ac5cb0ce76932ae4017024d9842a49c",
  2230. "shasum": ""
  2231. },
  2232. "require": {
  2233. "php": ">=5.3"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "branch-alias": {
  2238. "dev-master": "1.x-dev"
  2239. }
  2240. },
  2241. "autoload": {
  2242. "psr-4": {
  2243. "Seld\\CliPrompt\\": "src/"
  2244. }
  2245. },
  2246. "notification-url": "https://packagist.org/downloads/",
  2247. "license": [
  2248. "MIT"
  2249. ],
  2250. "authors": [
  2251. {
  2252. "name": "Jordi Boggiano",
  2253. "email": "j.boggiano@seld.be"
  2254. }
  2255. ],
  2256. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2257. "keywords": [
  2258. "cli",
  2259. "console",
  2260. "hidden",
  2261. "input",
  2262. "prompt"
  2263. ],
  2264. "time": "2015-04-30 20:24:49"
  2265. },
  2266. {
  2267. "name": "seld/jsonlint",
  2268. "version": "1.3.1",
  2269. "source": {
  2270. "type": "git",
  2271. "url": "https://github.com/Seldaek/jsonlint.git",
  2272. "reference": "863ae85c6d3ef60ca49cb12bd051c4a0648c40c4"
  2273. },
  2274. "dist": {
  2275. "type": "zip",
  2276. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/863ae85c6d3ef60ca49cb12bd051c4a0648c40c4",
  2277. "reference": "863ae85c6d3ef60ca49cb12bd051c4a0648c40c4",
  2278. "shasum": ""
  2279. },
  2280. "require": {
  2281. "php": ">=5.3.0"
  2282. },
  2283. "bin": [
  2284. "bin/jsonlint"
  2285. ],
  2286. "type": "library",
  2287. "autoload": {
  2288. "psr-4": {
  2289. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "MIT"
  2295. ],
  2296. "authors": [
  2297. {
  2298. "name": "Jordi Boggiano",
  2299. "email": "j.boggiano@seld.be",
  2300. "homepage": "http://seld.be"
  2301. }
  2302. ],
  2303. "description": "JSON Linter",
  2304. "keywords": [
  2305. "json",
  2306. "linter",
  2307. "parser",
  2308. "validator"
  2309. ],
  2310. "time": "2015-01-04 21:18:15"
  2311. },
  2312. {
  2313. "name": "seld/phar-utils",
  2314. "version": "1.0.1",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/Seldaek/phar-utils.git",
  2318. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2323. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "php": ">=5.3"
  2328. },
  2329. "type": "library",
  2330. "extra": {
  2331. "branch-alias": {
  2332. "dev-master": "1.x-dev"
  2333. }
  2334. },
  2335. "autoload": {
  2336. "psr-4": {
  2337. "Seld\\PharUtils\\": "src/"
  2338. }
  2339. },
  2340. "notification-url": "https://packagist.org/downloads/",
  2341. "license": [
  2342. "MIT"
  2343. ],
  2344. "authors": [
  2345. {
  2346. "name": "Jordi Boggiano",
  2347. "email": "j.boggiano@seld.be"
  2348. }
  2349. ],
  2350. "description": "PHAR file format utilities, for when PHP phars you up",
  2351. "keywords": [
  2352. "phra"
  2353. ],
  2354. "time": "2015-10-13 18:44:15"
  2355. },
  2356. {
  2357. "name": "sensio/distribution-bundle",
  2358. "version": "v2.3.22",
  2359. "target-dir": "Sensio/Bundle/DistributionBundle",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2363. "reference": "98bdda791e7c2dfb5fd55781e69a4b00e4f751a6"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/98bdda791e7c2dfb5fd55781e69a4b00e4f751a6",
  2368. "reference": "98bdda791e7c2dfb5fd55781e69a4b00e4f751a6",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "symfony/framework-bundle": "~2.2"
  2373. },
  2374. "type": "symfony-bundle",
  2375. "extra": {
  2376. "branch-alias": {
  2377. "dev-master": "2.3.x-dev"
  2378. }
  2379. },
  2380. "autoload": {
  2381. "psr-0": {
  2382. "Sensio\\Bundle\\DistributionBundle": ""
  2383. }
  2384. },
  2385. "notification-url": "https://packagist.org/downloads/",
  2386. "license": [
  2387. "MIT"
  2388. ],
  2389. "authors": [
  2390. {
  2391. "name": "Fabien Potencier",
  2392. "email": "fabien@symfony.com"
  2393. }
  2394. ],
  2395. "description": "The base bundle for the Symfony Distributions",
  2396. "keywords": [
  2397. "configuration",
  2398. "distribution"
  2399. ],
  2400. "time": "2015-06-05 22:32:08"
  2401. },
  2402. {
  2403. "name": "sensio/framework-extra-bundle",
  2404. "version": "v2.3.4",
  2405. "target-dir": "Sensio/Bundle/FrameworkExtraBundle",
  2406. "source": {
  2407. "type": "git",
  2408. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2409. "reference": "cce05719041d952bbec856789ca18646a1891d03"
  2410. },
  2411. "dist": {
  2412. "type": "zip",
  2413. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/cce05719041d952bbec856789ca18646a1891d03",
  2414. "reference": "cce05719041d952bbec856789ca18646a1891d03",
  2415. "shasum": ""
  2416. },
  2417. "require": {
  2418. "doctrine/common": "~2.2",
  2419. "symfony/framework-bundle": "~2.2"
  2420. },
  2421. "type": "symfony-bundle",
  2422. "extra": {
  2423. "branch-alias": {
  2424. "dev-master": "2.3.x-dev"
  2425. }
  2426. },
  2427. "autoload": {
  2428. "psr-0": {
  2429. "Sensio\\Bundle\\FrameworkExtraBundle": ""
  2430. }
  2431. },
  2432. "notification-url": "https://packagist.org/downloads/",
  2433. "license": [
  2434. "MIT"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Fabien Potencier",
  2439. "email": "fabien@symfony.com",
  2440. "homepage": "http://fabien.potencier.org",
  2441. "role": "Lead Developer"
  2442. }
  2443. ],
  2444. "description": "This bundle provides a way to configure your controllers with annotations",
  2445. "keywords": [
  2446. "annotations",
  2447. "controllers"
  2448. ],
  2449. "time": "2013-07-24 08:49:53"
  2450. },
  2451. {
  2452. "name": "sensio/generator-bundle",
  2453. "version": "v2.5.3",
  2454. "target-dir": "Sensio/Bundle/GeneratorBundle",
  2455. "source": {
  2456. "type": "git",
  2457. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2458. "reference": "e50108c2133ee5c9c484555faed50c17a61221d3"
  2459. },
  2460. "dist": {
  2461. "type": "zip",
  2462. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/e50108c2133ee5c9c484555faed50c17a61221d3",
  2463. "reference": "e50108c2133ee5c9c484555faed50c17a61221d3",
  2464. "shasum": ""
  2465. },
  2466. "require": {
  2467. "symfony/console": "~2.5",
  2468. "symfony/framework-bundle": "~2.2"
  2469. },
  2470. "require-dev": {
  2471. "doctrine/orm": "~2.2,>=2.2.3",
  2472. "symfony/doctrine-bridge": "~2.2",
  2473. "twig/twig": "~1.11"
  2474. },
  2475. "type": "symfony-bundle",
  2476. "extra": {
  2477. "branch-alias": {
  2478. "dev-master": "2.5.x-dev"
  2479. }
  2480. },
  2481. "autoload": {
  2482. "psr-0": {
  2483. "Sensio\\Bundle\\GeneratorBundle": ""
  2484. }
  2485. },
  2486. "notification-url": "https://packagist.org/downloads/",
  2487. "license": [
  2488. "MIT"
  2489. ],
  2490. "authors": [
  2491. {
  2492. "name": "Fabien Potencier",
  2493. "email": "fabien@symfony.com"
  2494. }
  2495. ],
  2496. "description": "This bundle generates code for you",
  2497. "time": "2015-03-17 06:36:52"
  2498. },
  2499. {
  2500. "name": "snc/redis-bundle",
  2501. "version": "1.1.9",
  2502. "target-dir": "Snc/RedisBundle",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/snc/SncRedisBundle.git",
  2506. "reference": "77f65e3d86a5e21b9bf3710d7e021595df2b6417"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/77f65e3d86a5e21b9bf3710d7e021595df2b6417",
  2511. "reference": "77f65e3d86a5e21b9bf3710d7e021595df2b6417",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "php": ">=5.3.3",
  2516. "symfony/framework-bundle": ">=2.1,<3.0",
  2517. "symfony/yaml": ">=2.1,<3.0"
  2518. },
  2519. "require-dev": {
  2520. "doctrine/cache": "1.*",
  2521. "phpunit/phpunit": "4.*",
  2522. "predis/predis": "~1.0",
  2523. "symfony/console": ">=2.1,<3.0"
  2524. },
  2525. "suggest": {
  2526. "monolog/monolog": "If you want to use the monolog redis handler.",
  2527. "predis/predis": "If you want to use predis.",
  2528. "symfony/console": "If you want to use commands to interact with the redis database"
  2529. },
  2530. "type": "symfony-bundle",
  2531. "autoload": {
  2532. "psr-0": {
  2533. "Snc\\RedisBundle": ""
  2534. }
  2535. },
  2536. "notification-url": "https://packagist.org/downloads/",
  2537. "license": [
  2538. "MIT"
  2539. ],
  2540. "authors": [
  2541. {
  2542. "name": "Henrik Westphal",
  2543. "email": "henrik.westphal@gmail.com"
  2544. },
  2545. {
  2546. "name": "Community contributors",
  2547. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2548. }
  2549. ],
  2550. "description": "A Redis bundle for Symfony2",
  2551. "homepage": "https://github.com/snc/SncRedisBundle",
  2552. "keywords": [
  2553. "nosql",
  2554. "redis",
  2555. "symfony"
  2556. ],
  2557. "time": "2015-06-30 09:08:50"
  2558. },
  2559. {
  2560. "name": "solarium/solarium",
  2561. "version": "2.4.1",
  2562. "source": {
  2563. "type": "git",
  2564. "url": "https://github.com/solariumphp/solarium.git",
  2565. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504"
  2566. },
  2567. "dist": {
  2568. "type": "zip",
  2569. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2570. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2571. "shasum": ""
  2572. },
  2573. "require": {
  2574. "php": ">=5.2.0"
  2575. },
  2576. "type": "library",
  2577. "autoload": {
  2578. "psr-0": {
  2579. "Solarium": "library/"
  2580. }
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "NewBSD"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "See GitHub contributors",
  2589. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  2590. }
  2591. ],
  2592. "description": "PHP Solr client",
  2593. "homepage": "http://www.solarium-project.org",
  2594. "keywords": [
  2595. "php",
  2596. "search",
  2597. "solr"
  2598. ],
  2599. "time": "2013-02-11 13:12:43"
  2600. },
  2601. {
  2602. "name": "swiftmailer/swiftmailer",
  2603. "version": "v5.4.1",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2607. "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421",
  2612. "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "php": ">=5.3.3"
  2617. },
  2618. "require-dev": {
  2619. "mockery/mockery": "~0.9.1,<0.9.4"
  2620. },
  2621. "type": "library",
  2622. "extra": {
  2623. "branch-alias": {
  2624. "dev-master": "5.4-dev"
  2625. }
  2626. },
  2627. "autoload": {
  2628. "files": [
  2629. "lib/swift_required.php"
  2630. ]
  2631. },
  2632. "notification-url": "https://packagist.org/downloads/",
  2633. "license": [
  2634. "MIT"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "Chris Corbyn"
  2639. },
  2640. {
  2641. "name": "Fabien Potencier",
  2642. "email": "fabien@symfony.com"
  2643. }
  2644. ],
  2645. "description": "Swiftmailer, free feature-rich PHP mailer",
  2646. "homepage": "http://swiftmailer.org",
  2647. "keywords": [
  2648. "email",
  2649. "mail",
  2650. "mailer"
  2651. ],
  2652. "time": "2015-06-06 14:19:39"
  2653. },
  2654. {
  2655. "name": "symfony/monolog-bundle",
  2656. "version": "2.8.1",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/symfony/monolog-bundle.git",
  2660. "reference": "7117b9a145722e3c5768db4585f6ad0643ed5c4a"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/7117b9a145722e3c5768db4585f6ad0643ed5c4a",
  2665. "reference": "7117b9a145722e3c5768db4585f6ad0643ed5c4a",
  2666. "shasum": ""
  2667. },
  2668. "require": {
  2669. "monolog/monolog": "~1.8",
  2670. "php": ">=5.3.2",
  2671. "symfony/config": "~2.3|3.*",
  2672. "symfony/dependency-injection": "~2.3|3.*",
  2673. "symfony/http-kernel": "~2.3|3.*",
  2674. "symfony/monolog-bridge": "~2.3|3.*"
  2675. },
  2676. "require-dev": {
  2677. "symfony/console": "~2.3|3.*",
  2678. "symfony/yaml": "~2.3"
  2679. },
  2680. "type": "symfony-bundle",
  2681. "extra": {
  2682. "branch-alias": {
  2683. "dev-master": "2.8.x-dev"
  2684. }
  2685. },
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Symfony\\Bundle\\MonologBundle\\": ""
  2689. }
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "MIT"
  2694. ],
  2695. "authors": [
  2696. {
  2697. "name": "Symfony Community",
  2698. "homepage": "http://symfony.com/contributors"
  2699. },
  2700. {
  2701. "name": "Fabien Potencier",
  2702. "email": "fabien@symfony.com"
  2703. }
  2704. ],
  2705. "description": "Symfony MonologBundle",
  2706. "homepage": "http://symfony.com",
  2707. "keywords": [
  2708. "log",
  2709. "logging"
  2710. ],
  2711. "time": "2015-10-02 11:51:59"
  2712. },
  2713. {
  2714. "name": "symfony/swiftmailer-bundle",
  2715. "version": "v2.3.8",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  2719. "reference": "970b13d01871207e81d17b17ddda025e7e21e797"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/970b13d01871207e81d17b17ddda025e7e21e797",
  2724. "reference": "970b13d01871207e81d17b17ddda025e7e21e797",
  2725. "shasum": ""
  2726. },
  2727. "require": {
  2728. "php": ">=5.3.2",
  2729. "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  2730. "symfony/swiftmailer-bridge": "~2.1"
  2731. },
  2732. "require-dev": {
  2733. "symfony/config": "~2.1",
  2734. "symfony/dependency-injection": "~2.1",
  2735. "symfony/http-kernel": "~2.1",
  2736. "symfony/yaml": "~2.1"
  2737. },
  2738. "suggest": {
  2739. "psr/log": "Allows logging"
  2740. },
  2741. "type": "symfony-bundle",
  2742. "extra": {
  2743. "branch-alias": {
  2744. "dev-master": "2.3-dev"
  2745. }
  2746. },
  2747. "autoload": {
  2748. "psr-4": {
  2749. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  2750. }
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "MIT"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Symfony Community",
  2759. "homepage": "http://symfony.com/contributors"
  2760. },
  2761. {
  2762. "name": "Fabien Potencier",
  2763. "email": "fabien@symfony.com"
  2764. }
  2765. ],
  2766. "description": "Symfony SwiftmailerBundle",
  2767. "homepage": "http://symfony.com",
  2768. "time": "2014-12-01 17:44:50"
  2769. },
  2770. {
  2771. "name": "symfony/symfony",
  2772. "version": "v2.7.6",
  2773. "source": {
  2774. "type": "git",
  2775. "url": "https://github.com/symfony/symfony.git",
  2776. "reference": "66b2e9662c44d478b69e48278aa54079a006eb42"
  2777. },
  2778. "dist": {
  2779. "type": "zip",
  2780. "url": "https://api.github.com/repos/symfony/symfony/zipball/66b2e9662c44d478b69e48278aa54079a006eb42",
  2781. "reference": "66b2e9662c44d478b69e48278aa54079a006eb42",
  2782. "shasum": ""
  2783. },
  2784. "require": {
  2785. "doctrine/common": "~2.4",
  2786. "php": ">=5.3.9",
  2787. "psr/log": "~1.0",
  2788. "twig/twig": "~1.20|~2.0"
  2789. },
  2790. "replace": {
  2791. "symfony/asset": "self.version",
  2792. "symfony/browser-kit": "self.version",
  2793. "symfony/class-loader": "self.version",
  2794. "symfony/config": "self.version",
  2795. "symfony/console": "self.version",
  2796. "symfony/css-selector": "self.version",
  2797. "symfony/debug": "self.version",
  2798. "symfony/debug-bundle": "self.version",
  2799. "symfony/dependency-injection": "self.version",
  2800. "symfony/doctrine-bridge": "self.version",
  2801. "symfony/dom-crawler": "self.version",
  2802. "symfony/event-dispatcher": "self.version",
  2803. "symfony/expression-language": "self.version",
  2804. "symfony/filesystem": "self.version",
  2805. "symfony/finder": "self.version",
  2806. "symfony/form": "self.version",
  2807. "symfony/framework-bundle": "self.version",
  2808. "symfony/http-foundation": "self.version",
  2809. "symfony/http-kernel": "self.version",
  2810. "symfony/intl": "self.version",
  2811. "symfony/locale": "self.version",
  2812. "symfony/monolog-bridge": "self.version",
  2813. "symfony/options-resolver": "self.version",
  2814. "symfony/process": "self.version",
  2815. "symfony/property-access": "self.version",
  2816. "symfony/proxy-manager-bridge": "self.version",
  2817. "symfony/routing": "self.version",
  2818. "symfony/security": "self.version",
  2819. "symfony/security-acl": "self.version",
  2820. "symfony/security-bundle": "self.version",
  2821. "symfony/security-core": "self.version",
  2822. "symfony/security-csrf": "self.version",
  2823. "symfony/security-http": "self.version",
  2824. "symfony/serializer": "self.version",
  2825. "symfony/stopwatch": "self.version",
  2826. "symfony/swiftmailer-bridge": "self.version",
  2827. "symfony/templating": "self.version",
  2828. "symfony/translation": "self.version",
  2829. "symfony/twig-bridge": "self.version",
  2830. "symfony/twig-bundle": "self.version",
  2831. "symfony/validator": "self.version",
  2832. "symfony/var-dumper": "self.version",
  2833. "symfony/web-profiler-bundle": "self.version",
  2834. "symfony/yaml": "self.version"
  2835. },
  2836. "require-dev": {
  2837. "doctrine/data-fixtures": "1.0.*",
  2838. "doctrine/dbal": "~2.4",
  2839. "doctrine/doctrine-bundle": "~1.2",
  2840. "doctrine/orm": "~2.4,>=2.4.5",
  2841. "egulias/email-validator": "~1.2",
  2842. "ircmaxell/password-compat": "~1.0",
  2843. "monolog/monolog": "~1.11",
  2844. "ocramius/proxy-manager": "~0.4|~1.0"
  2845. },
  2846. "type": "library",
  2847. "extra": {
  2848. "branch-alias": {
  2849. "dev-master": "2.7-dev"
  2850. }
  2851. },
  2852. "autoload": {
  2853. "psr-4": {
  2854. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  2855. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  2856. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  2857. "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/",
  2858. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  2859. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  2860. "Symfony\\Component\\": "src/Symfony/Component/"
  2861. },
  2862. "classmap": [
  2863. "src/Symfony/Component/HttpFoundation/Resources/stubs",
  2864. "src/Symfony/Component/Intl/Resources/stubs"
  2865. ],
  2866. "files": [
  2867. "src/Symfony/Component/Intl/Resources/stubs/functions.php"
  2868. ]
  2869. },
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "MIT"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Fabien Potencier",
  2877. "email": "fabien@symfony.com"
  2878. },
  2879. {
  2880. "name": "Symfony Community",
  2881. "homepage": "https://symfony.com/contributors"
  2882. }
  2883. ],
  2884. "description": "The Symfony PHP framework",
  2885. "homepage": "https://symfony.com",
  2886. "keywords": [
  2887. "framework"
  2888. ],
  2889. "time": "2015-10-27 19:07:24"
  2890. },
  2891. {
  2892. "name": "twig/extensions",
  2893. "version": "v1.3.0",
  2894. "source": {
  2895. "type": "git",
  2896. "url": "https://github.com/twigphp/Twig-extensions.git",
  2897. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499"
  2898. },
  2899. "dist": {
  2900. "type": "zip",
  2901. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/449e3c8a9ffad7c2479c7864557275a32b037499",
  2902. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499",
  2903. "shasum": ""
  2904. },
  2905. "require": {
  2906. "twig/twig": "~1.20|~2.0"
  2907. },
  2908. "require-dev": {
  2909. "symfony/translation": "~2.3"
  2910. },
  2911. "suggest": {
  2912. "symfony/translation": "Allow the time_diff output to be translated"
  2913. },
  2914. "type": "library",
  2915. "extra": {
  2916. "branch-alias": {
  2917. "dev-master": "1.3-dev"
  2918. }
  2919. },
  2920. "autoload": {
  2921. "psr-0": {
  2922. "Twig_Extensions_": "lib/"
  2923. }
  2924. },
  2925. "notification-url": "https://packagist.org/downloads/",
  2926. "license": [
  2927. "MIT"
  2928. ],
  2929. "authors": [
  2930. {
  2931. "name": "Fabien Potencier",
  2932. "email": "fabien@symfony.com"
  2933. }
  2934. ],
  2935. "description": "Common additional features for Twig that do not directly belong in core",
  2936. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  2937. "keywords": [
  2938. "i18n",
  2939. "text"
  2940. ],
  2941. "time": "2015-08-22 16:38:35"
  2942. },
  2943. {
  2944. "name": "twig/twig",
  2945. "version": "v1.23.1",
  2946. "source": {
  2947. "type": "git",
  2948. "url": "https://github.com/twigphp/Twig.git",
  2949. "reference": "d9b6333ae8dd2c8e3fd256e127548def0bc614c6"
  2950. },
  2951. "dist": {
  2952. "type": "zip",
  2953. "url": "https://api.github.com/repos/twigphp/Twig/zipball/d9b6333ae8dd2c8e3fd256e127548def0bc614c6",
  2954. "reference": "d9b6333ae8dd2c8e3fd256e127548def0bc614c6",
  2955. "shasum": ""
  2956. },
  2957. "require": {
  2958. "php": ">=5.2.7"
  2959. },
  2960. "require-dev": {
  2961. "symfony/debug": "~2.7",
  2962. "symfony/phpunit-bridge": "~2.7"
  2963. },
  2964. "type": "library",
  2965. "extra": {
  2966. "branch-alias": {
  2967. "dev-master": "1.23-dev"
  2968. }
  2969. },
  2970. "autoload": {
  2971. "psr-0": {
  2972. "Twig_": "lib/"
  2973. }
  2974. },
  2975. "notification-url": "https://packagist.org/downloads/",
  2976. "license": [
  2977. "BSD-3-Clause"
  2978. ],
  2979. "authors": [
  2980. {
  2981. "name": "Fabien Potencier",
  2982. "email": "fabien@symfony.com",
  2983. "homepage": "http://fabien.potencier.org",
  2984. "role": "Lead Developer"
  2985. },
  2986. {
  2987. "name": "Armin Ronacher",
  2988. "email": "armin.ronacher@active-4.com",
  2989. "role": "Project Founder"
  2990. },
  2991. {
  2992. "name": "Twig Team",
  2993. "homepage": "http://twig.sensiolabs.org/contributors",
  2994. "role": "Contributors"
  2995. }
  2996. ],
  2997. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2998. "homepage": "http://twig.sensiolabs.org",
  2999. "keywords": [
  3000. "templating"
  3001. ],
  3002. "time": "2015-11-05 12:49:06"
  3003. },
  3004. {
  3005. "name": "white-october/pagerfanta-bundle",
  3006. "version": "v1.0.4",
  3007. "source": {
  3008. "type": "git",
  3009. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  3010. "reference": "f329d7bbd9cb97edaac418ef94807d9e376f8880"
  3011. },
  3012. "dist": {
  3013. "type": "zip",
  3014. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/f329d7bbd9cb97edaac418ef94807d9e376f8880",
  3015. "reference": "f329d7bbd9cb97edaac418ef94807d9e376f8880",
  3016. "shasum": ""
  3017. },
  3018. "require": {
  3019. "pagerfanta/pagerfanta": "1.0.*",
  3020. "symfony/framework-bundle": "~2.3",
  3021. "symfony/property-access": "~2.3",
  3022. "symfony/twig-bundle": "~2.3"
  3023. },
  3024. "require-dev": {
  3025. "phpunit/phpunit": "~3.7",
  3026. "symfony/symfony": "~2.3"
  3027. },
  3028. "type": "symfony-bundle",
  3029. "extra": {
  3030. "branch-alias": {
  3031. "dev-master": "1.0.x-dev"
  3032. }
  3033. },
  3034. "autoload": {
  3035. "psr-4": {
  3036. "WhiteOctober\\PagerfantaBundle\\": ""
  3037. }
  3038. },
  3039. "notification-url": "https://packagist.org/downloads/",
  3040. "license": [
  3041. "MIT"
  3042. ],
  3043. "authors": [
  3044. {
  3045. "name": "Pablo Díez",
  3046. "email": "pablodip@gmail.com"
  3047. }
  3048. ],
  3049. "description": "Bundle to use Pagerfanta with Symfony2",
  3050. "keywords": [
  3051. "page",
  3052. "paging"
  3053. ],
  3054. "time": "2015-09-01 16:19:36"
  3055. },
  3056. {
  3057. "name": "zendframework/zend-escaper",
  3058. "version": "2.5.1",
  3059. "source": {
  3060. "type": "git",
  3061. "url": "https://github.com/zendframework/zend-escaper.git",
  3062. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73"
  3063. },
  3064. "dist": {
  3065. "type": "zip",
  3066. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3067. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3068. "shasum": ""
  3069. },
  3070. "require": {
  3071. "php": ">=5.3.23"
  3072. },
  3073. "require-dev": {
  3074. "fabpot/php-cs-fixer": "1.7.*",
  3075. "phpunit/phpunit": "~4.0"
  3076. },
  3077. "type": "library",
  3078. "extra": {
  3079. "branch-alias": {
  3080. "dev-master": "2.5-dev",
  3081. "dev-develop": "2.6-dev"
  3082. }
  3083. },
  3084. "autoload": {
  3085. "psr-4": {
  3086. "Zend\\Escaper\\": "src/"
  3087. }
  3088. },
  3089. "notification-url": "https://packagist.org/downloads/",
  3090. "license": [
  3091. "BSD-3-Clause"
  3092. ],
  3093. "homepage": "https://github.com/zendframework/zend-escaper",
  3094. "keywords": [
  3095. "escaper",
  3096. "zf2"
  3097. ],
  3098. "time": "2015-06-03 14:05:37"
  3099. },
  3100. {
  3101. "name": "zendframework/zend-feed",
  3102. "version": "2.5.2",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/zendframework/zend-feed.git",
  3106. "reference": "0661345b82b51428619e05d3aadd3de65b57fa54"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/0661345b82b51428619e05d3aadd3de65b57fa54",
  3111. "reference": "0661345b82b51428619e05d3aadd3de65b57fa54",
  3112. "shasum": ""
  3113. },
  3114. "require": {
  3115. "php": ">=5.5",
  3116. "zendframework/zend-escaper": "~2.5",
  3117. "zendframework/zend-stdlib": "~2.5"
  3118. },
  3119. "require-dev": {
  3120. "fabpot/php-cs-fixer": "1.7.*",
  3121. "phpunit/phpunit": "~4.0",
  3122. "zendframework/zend-cache": "~2.5",
  3123. "zendframework/zend-db": "~2.5",
  3124. "zendframework/zend-http": "~2.5",
  3125. "zendframework/zend-servicemanager": "~2.5",
  3126. "zendframework/zend-validator": "~2.5"
  3127. },
  3128. "suggest": {
  3129. "zendframework/zend-cache": "Zend\\Cache component",
  3130. "zendframework/zend-db": "Zend\\Db component",
  3131. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  3132. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for default/recommended ExtensionManager implementations",
  3133. "zendframework/zend-validator": "Zend\\Validator component"
  3134. },
  3135. "type": "library",
  3136. "extra": {
  3137. "branch-alias": {
  3138. "dev-master": "2.5-dev",
  3139. "dev-develop": "2.6-dev"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Zend\\Feed\\": "src/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "BSD-3-Clause"
  3150. ],
  3151. "description": "provides functionality for consuming RSS and Atom feeds",
  3152. "homepage": "https://github.com/zendframework/zend-feed",
  3153. "keywords": [
  3154. "feed",
  3155. "zf2"
  3156. ],
  3157. "time": "2015-08-04 21:39:18"
  3158. },
  3159. {
  3160. "name": "zendframework/zend-hydrator",
  3161. "version": "1.0.0",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/zendframework/zend-hydrator.git",
  3165. "reference": "f3ed8b833355140350bbed98d8a7b8b66875903f"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/zendframework/zend-hydrator/zipball/f3ed8b833355140350bbed98d8a7b8b66875903f",
  3170. "reference": "f3ed8b833355140350bbed98d8a7b8b66875903f",
  3171. "shasum": ""
  3172. },
  3173. "require": {
  3174. "php": ">=5.5",
  3175. "zendframework/zend-stdlib": "^2.5.1"
  3176. },
  3177. "require-dev": {
  3178. "phpunit/phpunit": "~4.0",
  3179. "squizlabs/php_codesniffer": "^2.0@dev",
  3180. "zendframework/zend-eventmanager": "^2.5.1",
  3181. "zendframework/zend-filter": "^2.5.1",
  3182. "zendframework/zend-inputfilter": "^2.5.1",
  3183. "zendframework/zend-serializer": "^2.5.1",
  3184. "zendframework/zend-servicemanager": "^2.5.1"
  3185. },
  3186. "suggest": {
  3187. "zendframework/zend-eventmanager": "^2.5.1, to support aggregate hydrator usage",
  3188. "zendframework/zend-filter": "^2.5.1, to support naming strategy hydrator usage",
  3189. "zendframework/zend-serializer": "^2.5.1, to use the SerializableStrategy",
  3190. "zendframework/zend-servicemanager": "^2.5.1, to support hydrator plugin manager usage"
  3191. },
  3192. "type": "library",
  3193. "extra": {
  3194. "branch-alias": {
  3195. "dev-master": "1.0-dev",
  3196. "dev-develop": "1.1-dev"
  3197. }
  3198. },
  3199. "autoload": {
  3200. "psr-4": {
  3201. "Zend\\Hydrator\\": "src/"
  3202. }
  3203. },
  3204. "notification-url": "https://packagist.org/downloads/",
  3205. "license": [
  3206. "BSD-3-Clause"
  3207. ],
  3208. "homepage": "https://github.com/zendframework/zend-hydrator",
  3209. "keywords": [
  3210. "hydrator",
  3211. "zf2"
  3212. ],
  3213. "time": "2015-09-17 14:06:43"
  3214. },
  3215. {
  3216. "name": "zendframework/zend-json",
  3217. "version": "2.5.2",
  3218. "source": {
  3219. "type": "git",
  3220. "url": "https://github.com/zendframework/zend-json.git",
  3221. "reference": "4a3add6505fd8618728239d8ce35f182dfbdac02"
  3222. },
  3223. "dist": {
  3224. "type": "zip",
  3225. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/4a3add6505fd8618728239d8ce35f182dfbdac02",
  3226. "reference": "4a3add6505fd8618728239d8ce35f182dfbdac02",
  3227. "shasum": ""
  3228. },
  3229. "require": {
  3230. "php": ">=5.5",
  3231. "zendframework/zend-stdlib": "~2.5"
  3232. },
  3233. "require-dev": {
  3234. "fabpot/php-cs-fixer": "1.7.*",
  3235. "phpunit/phpunit": "~4.0",
  3236. "zendframework/zend-http": "~2.5",
  3237. "zendframework/zend-server": "~2.5",
  3238. "zendframework/zendxml": "~1.0"
  3239. },
  3240. "suggest": {
  3241. "zendframework/zend-http": "Zend\\Http component",
  3242. "zendframework/zend-server": "Zend\\Server component",
  3243. "zendframework/zendxml": "To support Zend\\Json\\Json::fromXml() usage"
  3244. },
  3245. "type": "library",
  3246. "extra": {
  3247. "branch-alias": {
  3248. "dev-master": "2.5-dev",
  3249. "dev-develop": "2.6-dev"
  3250. }
  3251. },
  3252. "autoload": {
  3253. "psr-4": {
  3254. "Zend\\Json\\": "src/"
  3255. }
  3256. },
  3257. "notification-url": "https://packagist.org/downloads/",
  3258. "license": [
  3259. "BSD-3-Clause"
  3260. ],
  3261. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  3262. "homepage": "https://github.com/zendframework/zend-json",
  3263. "keywords": [
  3264. "json",
  3265. "zf2"
  3266. ],
  3267. "time": "2015-08-05 14:45:17"
  3268. },
  3269. {
  3270. "name": "zendframework/zend-servicemanager",
  3271. "version": "2.6.0",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://github.com/zendframework/zend-servicemanager.git",
  3275. "reference": "1dc33f23bd0a7f4d8ba743b915fae523d356027a"
  3276. },
  3277. "dist": {
  3278. "type": "zip",
  3279. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/1dc33f23bd0a7f4d8ba743b915fae523d356027a",
  3280. "reference": "1dc33f23bd0a7f4d8ba743b915fae523d356027a",
  3281. "shasum": ""
  3282. },
  3283. "require": {
  3284. "container-interop/container-interop": "~1.0",
  3285. "php": ">=5.5"
  3286. },
  3287. "require-dev": {
  3288. "fabpot/php-cs-fixer": "1.7.*",
  3289. "phpunit/phpunit": "~4.0",
  3290. "zendframework/zend-di": "~2.5",
  3291. "zendframework/zend-mvc": "~2.5"
  3292. },
  3293. "suggest": {
  3294. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  3295. "zendframework/zend-di": "Zend\\Di component"
  3296. },
  3297. "type": "library",
  3298. "extra": {
  3299. "branch-alias": {
  3300. "dev-master": "2.6-dev",
  3301. "dev-develop": "2.7-dev"
  3302. }
  3303. },
  3304. "autoload": {
  3305. "psr-4": {
  3306. "Zend\\ServiceManager\\": "src/"
  3307. }
  3308. },
  3309. "notification-url": "https://packagist.org/downloads/",
  3310. "license": [
  3311. "BSD-3-Clause"
  3312. ],
  3313. "homepage": "https://github.com/zendframework/zend-servicemanager",
  3314. "keywords": [
  3315. "servicemanager",
  3316. "zf2"
  3317. ],
  3318. "time": "2015-07-23 21:49:08"
  3319. },
  3320. {
  3321. "name": "zendframework/zend-stdlib",
  3322. "version": "2.7.4",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/zendframework/zend-stdlib.git",
  3326. "reference": "cae029346a33663b998507f94962eb27de060683"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/cae029346a33663b998507f94962eb27de060683",
  3331. "reference": "cae029346a33663b998507f94962eb27de060683",
  3332. "shasum": ""
  3333. },
  3334. "require": {
  3335. "php": ">=5.5",
  3336. "zendframework/zend-hydrator": "~1.0"
  3337. },
  3338. "require-dev": {
  3339. "athletic/athletic": "~0.1",
  3340. "fabpot/php-cs-fixer": "1.7.*",
  3341. "phpunit/phpunit": "~4.0",
  3342. "zendframework/zend-config": "~2.5",
  3343. "zendframework/zend-eventmanager": "~2.5",
  3344. "zendframework/zend-filter": "~2.5",
  3345. "zendframework/zend-inputfilter": "~2.5",
  3346. "zendframework/zend-serializer": "~2.5",
  3347. "zendframework/zend-servicemanager": "~2.5"
  3348. },
  3349. "suggest": {
  3350. "zendframework/zend-eventmanager": "To support aggregate hydrator usage",
  3351. "zendframework/zend-filter": "To support naming strategy hydrator usage",
  3352. "zendframework/zend-serializer": "Zend\\Serializer component",
  3353. "zendframework/zend-servicemanager": "To support hydrator plugin manager usage"
  3354. },
  3355. "type": "library",
  3356. "extra": {
  3357. "branch-alias": {
  3358. "dev-master": "2.7-dev",
  3359. "dev-develop": "2.8-dev"
  3360. }
  3361. },
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Zend\\Stdlib\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "BSD-3-Clause"
  3370. ],
  3371. "homepage": "https://github.com/zendframework/zend-stdlib",
  3372. "keywords": [
  3373. "stdlib",
  3374. "zf2"
  3375. ],
  3376. "time": "2015-10-15 15:57:32"
  3377. },
  3378. {
  3379. "name": "zendframework/zend-uri",
  3380. "version": "2.5.1",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://github.com/zendframework/zend-uri.git",
  3384. "reference": "fe6c7f4c8d9037fe551898a538a2b6d39483f572"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/fe6c7f4c8d9037fe551898a538a2b6d39483f572",
  3389. "reference": "fe6c7f4c8d9037fe551898a538a2b6d39483f572",
  3390. "shasum": ""
  3391. },
  3392. "require": {
  3393. "php": ">=5.3.23",
  3394. "zendframework/zend-escaper": "~2.5",
  3395. "zendframework/zend-validator": "~2.5"
  3396. },
  3397. "require-dev": {
  3398. "fabpot/php-cs-fixer": "1.7.*",
  3399. "phpunit/phpunit": "~4.0"
  3400. },
  3401. "type": "library",
  3402. "extra": {
  3403. "branch-alias": {
  3404. "dev-master": "2.5-dev",
  3405. "dev-develop": "2.6-dev"
  3406. }
  3407. },
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Zend\\Uri\\": "src/"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "BSD-3-Clause"
  3416. ],
  3417. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  3418. "homepage": "https://github.com/zendframework/zend-uri",
  3419. "keywords": [
  3420. "uri",
  3421. "zf2"
  3422. ],
  3423. "time": "2015-06-03 15:32:03"
  3424. },
  3425. {
  3426. "name": "zendframework/zend-validator",
  3427. "version": "2.5.3",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/zendframework/zend-validator.git",
  3431. "reference": "53e567a58c8952a03da0b8edf0f075303a5ac5d1"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/53e567a58c8952a03da0b8edf0f075303a5ac5d1",
  3436. "reference": "53e567a58c8952a03da0b8edf0f075303a5ac5d1",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "php": ">=5.5",
  3441. "zendframework/zend-stdlib": "~2.5"
  3442. },
  3443. "require-dev": {
  3444. "fabpot/php-cs-fixer": "1.7.*",
  3445. "phpunit/phpunit": "~4.0",
  3446. "zendframework/zend-cache": "~2.5",
  3447. "zendframework/zend-config": "~2.5",
  3448. "zendframework/zend-db": "~2.5",
  3449. "zendframework/zend-filter": "~2.5",
  3450. "zendframework/zend-http": "~2.5",
  3451. "zendframework/zend-i18n": "~2.5",
  3452. "zendframework/zend-math": "~2.5",
  3453. "zendframework/zend-servicemanager": "~2.5",
  3454. "zendframework/zend-session": "~2.5",
  3455. "zendframework/zend-uri": "~2.5"
  3456. },
  3457. "suggest": {
  3458. "zendframework/zend-db": "Zend\\Db component",
  3459. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  3460. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  3461. "zendframework/zend-i18n-resources": "Translations of validator messages",
  3462. "zendframework/zend-math": "Zend\\Math component",
  3463. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  3464. "zendframework/zend-session": "Zend\\Session component",
  3465. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  3466. },
  3467. "type": "library",
  3468. "extra": {
  3469. "branch-alias": {
  3470. "dev-master": "2.5-dev",
  3471. "dev-develop": "2.6-dev"
  3472. }
  3473. },
  3474. "autoload": {
  3475. "psr-4": {
  3476. "Zend\\Validator\\": "src/"
  3477. }
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "BSD-3-Clause"
  3482. ],
  3483. "description": "provides a set of commonly needed validators",
  3484. "homepage": "https://github.com/zendframework/zend-validator",
  3485. "keywords": [
  3486. "validator",
  3487. "zf2"
  3488. ],
  3489. "time": "2015-09-03 19:06:11"
  3490. },
  3491. {
  3492. "name": "zendframework/zend-version",
  3493. "version": "2.5.1",
  3494. "source": {
  3495. "type": "git",
  3496. "url": "https://github.com/zendframework/zend-version.git",
  3497. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08"
  3498. },
  3499. "dist": {
  3500. "type": "zip",
  3501. "url": "https://api.github.com/repos/zendframework/zend-version/zipball/e30c55dc394eaf396f0347887af0a7bef471fe08",
  3502. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08",
  3503. "shasum": ""
  3504. },
  3505. "require": {
  3506. "php": ">=5.3.23",
  3507. "zendframework/zend-json": "~2.5"
  3508. },
  3509. "require-dev": {
  3510. "fabpot/php-cs-fixer": "1.7.*",
  3511. "phpunit/phpunit": "~4.0",
  3512. "zendframework/zend-http": "~2.5"
  3513. },
  3514. "suggest": {
  3515. "zendframework/zend-http": "Allows use of Zend\\Http\\Client to check version information",
  3516. "zendframework/zend-json": "To check latest version hosted in GitHub"
  3517. },
  3518. "type": "library",
  3519. "extra": {
  3520. "branch-alias": {
  3521. "dev-master": "2.5-dev",
  3522. "dev-develop": "2.6-dev"
  3523. }
  3524. },
  3525. "autoload": {
  3526. "psr-4": {
  3527. "Zend\\Version\\": "src/"
  3528. }
  3529. },
  3530. "notification-url": "https://packagist.org/downloads/",
  3531. "license": [
  3532. "BSD-3-Clause"
  3533. ],
  3534. "homepage": "https://github.com/zendframework/zend-version",
  3535. "keywords": [
  3536. "version",
  3537. "zf2"
  3538. ],
  3539. "time": "2015-06-04 15:41:05"
  3540. }
  3541. ],
  3542. "packages-dev": [],
  3543. "aliases": [],
  3544. "minimum-stability": "stable",
  3545. "stability-flags": {
  3546. "composer/composer": 20,
  3547. "hwi/oauth-bundle": 20
  3548. },
  3549. "prefer-stable": false,
  3550. "prefer-lowest": false,
  3551. "platform": {
  3552. "php": ">=5.5"
  3553. },
  3554. "platform-dev": []
  3555. }