composer.lock 121 KB

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