composer.lock 150 KB

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