composer.lock 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320
  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": "23937ff93c496c2bf613b6a14b6c4d1c",
  8. "content-hash": "cc73d914372ea327a545470ab6886a43",
  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/7c62e2b5346a6a656dd9587203719e35bb768056",
  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/16b04c49af05dd3fb381e4abe04f0e5e231ac76d",
  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/cors-bundle",
  1987. "version": "1.4.1",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  1991. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/fa14a81737c605bf4766054cdcb72a16a433d537",
  1996. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537",
  1997. "shasum": ""
  1998. },
  1999. "require": {
  2000. "symfony/framework-bundle": "^2.2 || ^3.0"
  2001. },
  2002. "require-dev": {
  2003. "matthiasnoback/symfony-dependency-injection-test": "^0.7.6",
  2004. "mockery/mockery": "0.9.*"
  2005. },
  2006. "type": "symfony-bundle",
  2007. "extra": {
  2008. "branch-alias": {
  2009. "dev-master": "1.4.x-dev"
  2010. }
  2011. },
  2012. "autoload": {
  2013. "psr-4": {
  2014. "Nelmio\\CorsBundle\\": ""
  2015. },
  2016. "exclude-from-classmap": [
  2017. "/Tests/"
  2018. ]
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Nelmio",
  2027. "homepage": "http://nelm.io"
  2028. },
  2029. {
  2030. "name": "Symfony Community",
  2031. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2032. }
  2033. ],
  2034. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2035. "keywords": [
  2036. "api",
  2037. "cors",
  2038. "crossdomain"
  2039. ],
  2040. "time": "2015-12-09 17:26:34"
  2041. },
  2042. {
  2043. "name": "nelmio/security-bundle",
  2044. "version": "1.10.0",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2048. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2053. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2054. "shasum": ""
  2055. },
  2056. "require": {
  2057. "symfony/framework-bundle": "~2.3|~3.0",
  2058. "symfony/security": "~2.3|~3.0"
  2059. },
  2060. "require-dev": {
  2061. "phpunit/phpunit": "^5.2"
  2062. },
  2063. "type": "symfony-bundle",
  2064. "extra": {
  2065. "branch-alias": {
  2066. "dev-master": "1.10.x-dev"
  2067. }
  2068. },
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Nelmio\\SecurityBundle\\": ""
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "authors": [
  2079. {
  2080. "name": "Nelmio",
  2081. "homepage": "http://nelm.io"
  2082. },
  2083. {
  2084. "name": "Symfony Community",
  2085. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2086. }
  2087. ],
  2088. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2089. "keywords": [
  2090. "security"
  2091. ],
  2092. "time": "2016-02-23 10:42:13"
  2093. },
  2094. {
  2095. "name": "nelmio/solarium-bundle",
  2096. "version": "v1.1.0",
  2097. "target-dir": "Nelmio/SolariumBundle",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/nelmio/NelmioSolariumBundle.git",
  2101. "reference": "693700c4deeb04997b90aca659dd881409f33eb9"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/693700c4deeb04997b90aca659dd881409f33eb9",
  2106. "reference": "693700c4deeb04997b90aca659dd881409f33eb9",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "solarium/solarium": "~2.4.0",
  2111. "symfony/framework-bundle": "2.*"
  2112. },
  2113. "require-dev": {
  2114. "symfony/yaml": "2.*"
  2115. },
  2116. "type": "symfony-bundle",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-master": "1.1-dev"
  2120. }
  2121. },
  2122. "autoload": {
  2123. "psr-0": {
  2124. "Nelmio\\SolariumBundle": ""
  2125. }
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "MIT"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Nelmio",
  2134. "homepage": "http://nelm.io"
  2135. },
  2136. {
  2137. "name": "Symfony Community",
  2138. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  2139. }
  2140. ],
  2141. "description": "Integration with solarium solr client.",
  2142. "keywords": [
  2143. "search",
  2144. "solarium",
  2145. "solr"
  2146. ],
  2147. "time": "2013-01-07 10:35:43"
  2148. },
  2149. {
  2150. "name": "pagerfanta/pagerfanta",
  2151. "version": "v1.0.3",
  2152. "source": {
  2153. "type": "git",
  2154. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2155. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  2156. },
  2157. "dist": {
  2158. "type": "zip",
  2159. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2160. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2161. "shasum": ""
  2162. },
  2163. "require": {
  2164. "php": ">=5.3.0"
  2165. },
  2166. "require-dev": {
  2167. "doctrine/orm": "~2.3",
  2168. "doctrine/phpcr-odm": "1.*",
  2169. "jackalope/jackalope-doctrine-dbal": "1.*",
  2170. "jmikola/geojson": "~1.0",
  2171. "mandango/mandango": "~1.0@dev",
  2172. "mandango/mondator": "~1.0@dev",
  2173. "phpunit/phpunit": "~4",
  2174. "propel/propel1": "~1.6",
  2175. "ruflin/elastica": "~1.3",
  2176. "solarium/solarium": "~3.1"
  2177. },
  2178. "suggest": {
  2179. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2180. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2181. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2182. "mandango/mandango": "To use the MandangoAdapter.",
  2183. "propel/propel1": "To use the PropelAdapter",
  2184. "solarium/solarium": "To use the SolariumAdapter."
  2185. },
  2186. "type": "library",
  2187. "extra": {
  2188. "branch-alias": {
  2189. "dev-master": "1.0.x-dev"
  2190. }
  2191. },
  2192. "autoload": {
  2193. "psr-0": {
  2194. "Pagerfanta\\": "src/"
  2195. }
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "MIT"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Pablo Díez",
  2204. "email": "pablodip@gmail.com"
  2205. }
  2206. ],
  2207. "description": "Pagination for PHP 5.3",
  2208. "keywords": [
  2209. "page",
  2210. "pagination",
  2211. "paginator",
  2212. "paging"
  2213. ],
  2214. "time": "2014-10-06 10:57:25"
  2215. },
  2216. {
  2217. "name": "paragonie/random_compat",
  2218. "version": "v1.2.1",
  2219. "source": {
  2220. "type": "git",
  2221. "url": "https://github.com/paragonie/random_compat.git",
  2222. "reference": "f078eba3bcf140fd69b5fcc3ea5ac809abf729dc"
  2223. },
  2224. "dist": {
  2225. "type": "zip",
  2226. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/f078eba3bcf140fd69b5fcc3ea5ac809abf729dc",
  2227. "reference": "f078eba3bcf140fd69b5fcc3ea5ac809abf729dc",
  2228. "shasum": ""
  2229. },
  2230. "require": {
  2231. "php": ">=5.2.0"
  2232. },
  2233. "require-dev": {
  2234. "phpunit/phpunit": "4.*|5.*"
  2235. },
  2236. "suggest": {
  2237. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2238. },
  2239. "type": "library",
  2240. "autoload": {
  2241. "files": [
  2242. "lib/random.php"
  2243. ]
  2244. },
  2245. "notification-url": "https://packagist.org/downloads/",
  2246. "license": [
  2247. "MIT"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "Paragon Initiative Enterprises",
  2252. "email": "security@paragonie.com",
  2253. "homepage": "https://paragonie.com"
  2254. }
  2255. ],
  2256. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2257. "keywords": [
  2258. "csprng",
  2259. "pseudorandom",
  2260. "random"
  2261. ],
  2262. "time": "2016-02-29 17:25:04"
  2263. },
  2264. {
  2265. "name": "phpoption/phpoption",
  2266. "version": "1.5.0",
  2267. "source": {
  2268. "type": "git",
  2269. "url": "https://github.com/schmittjoh/php-option.git",
  2270. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2271. },
  2272. "dist": {
  2273. "type": "zip",
  2274. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2275. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2276. "shasum": ""
  2277. },
  2278. "require": {
  2279. "php": ">=5.3.0"
  2280. },
  2281. "require-dev": {
  2282. "phpunit/phpunit": "4.7.*"
  2283. },
  2284. "type": "library",
  2285. "extra": {
  2286. "branch-alias": {
  2287. "dev-master": "1.3-dev"
  2288. }
  2289. },
  2290. "autoload": {
  2291. "psr-0": {
  2292. "PhpOption\\": "src/"
  2293. }
  2294. },
  2295. "notification-url": "https://packagist.org/downloads/",
  2296. "license": [
  2297. "Apache2"
  2298. ],
  2299. "authors": [
  2300. {
  2301. "name": "Johannes M. Schmitt",
  2302. "email": "schmittjoh@gmail.com"
  2303. }
  2304. ],
  2305. "description": "Option Type for PHP",
  2306. "keywords": [
  2307. "language",
  2308. "option",
  2309. "php",
  2310. "type"
  2311. ],
  2312. "time": "2015-07-25 16:39:46"
  2313. },
  2314. {
  2315. "name": "predis/predis",
  2316. "version": "v1.0.3",
  2317. "source": {
  2318. "type": "git",
  2319. "url": "https://github.com/nrk/predis.git",
  2320. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04"
  2321. },
  2322. "dist": {
  2323. "type": "zip",
  2324. "url": "https://api.github.com/repos/nrk/predis/zipball/84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2325. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2326. "shasum": ""
  2327. },
  2328. "require": {
  2329. "php": ">=5.3.2"
  2330. },
  2331. "require-dev": {
  2332. "phpunit/phpunit": "~4.0"
  2333. },
  2334. "suggest": {
  2335. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2336. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2337. },
  2338. "type": "library",
  2339. "autoload": {
  2340. "psr-4": {
  2341. "Predis\\": "src/"
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Daniele Alessandri",
  2351. "email": "suppakilla@gmail.com",
  2352. "homepage": "http://clorophilla.net"
  2353. }
  2354. ],
  2355. "description": "Flexible and feature-complete PHP client library for Redis",
  2356. "homepage": "http://github.com/nrk/predis",
  2357. "keywords": [
  2358. "nosql",
  2359. "predis",
  2360. "redis"
  2361. ],
  2362. "time": "2015-07-30 18:34:15"
  2363. },
  2364. {
  2365. "name": "psr/log",
  2366. "version": "1.0.0",
  2367. "source": {
  2368. "type": "git",
  2369. "url": "https://github.com/php-fig/log.git",
  2370. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2371. },
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2375. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2376. "shasum": ""
  2377. },
  2378. "type": "library",
  2379. "autoload": {
  2380. "psr-0": {
  2381. "Psr\\Log\\": ""
  2382. }
  2383. },
  2384. "notification-url": "https://packagist.org/downloads/",
  2385. "license": [
  2386. "MIT"
  2387. ],
  2388. "authors": [
  2389. {
  2390. "name": "PHP-FIG",
  2391. "homepage": "http://www.php-fig.org/"
  2392. }
  2393. ],
  2394. "description": "Common interface for logging libraries",
  2395. "keywords": [
  2396. "log",
  2397. "psr",
  2398. "psr-3"
  2399. ],
  2400. "time": "2012-12-21 11:40:51"
  2401. },
  2402. {
  2403. "name": "seld/cli-prompt",
  2404. "version": "1.0.1",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/Seldaek/cli-prompt.git",
  2408. "reference": "b27db1514f7d7bb7a366ad95d4eb2b17140a0691"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/b27db1514f7d7bb7a366ad95d4eb2b17140a0691",
  2413. "reference": "b27db1514f7d7bb7a366ad95d4eb2b17140a0691",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "php": ">=5.3"
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-master": "1.x-dev"
  2423. }
  2424. },
  2425. "autoload": {
  2426. "psr-4": {
  2427. "Seld\\CliPrompt\\": "src/"
  2428. }
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "MIT"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "Jordi Boggiano",
  2437. "email": "j.boggiano@seld.be"
  2438. }
  2439. ],
  2440. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2441. "keywords": [
  2442. "cli",
  2443. "console",
  2444. "hidden",
  2445. "input",
  2446. "prompt"
  2447. ],
  2448. "time": "2016-01-09 17:55:27"
  2449. },
  2450. {
  2451. "name": "seld/jsonlint",
  2452. "version": "1.4.0",
  2453. "source": {
  2454. "type": "git",
  2455. "url": "https://github.com/Seldaek/jsonlint.git",
  2456. "reference": "66834d3e3566bb5798db7294619388786ae99394"
  2457. },
  2458. "dist": {
  2459. "type": "zip",
  2460. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/66834d3e3566bb5798db7294619388786ae99394",
  2461. "reference": "66834d3e3566bb5798db7294619388786ae99394",
  2462. "shasum": ""
  2463. },
  2464. "require": {
  2465. "php": "^5.3 || ^7.0"
  2466. },
  2467. "bin": [
  2468. "bin/jsonlint"
  2469. ],
  2470. "type": "library",
  2471. "autoload": {
  2472. "psr-4": {
  2473. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2474. }
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Jordi Boggiano",
  2483. "email": "j.boggiano@seld.be",
  2484. "homepage": "http://seld.be"
  2485. }
  2486. ],
  2487. "description": "JSON Linter",
  2488. "keywords": [
  2489. "json",
  2490. "linter",
  2491. "parser",
  2492. "validator"
  2493. ],
  2494. "time": "2015-11-21 02:21:41"
  2495. },
  2496. {
  2497. "name": "seld/phar-utils",
  2498. "version": "1.0.1",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://github.com/Seldaek/phar-utils.git",
  2502. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2507. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2508. "shasum": ""
  2509. },
  2510. "require": {
  2511. "php": ">=5.3"
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "branch-alias": {
  2516. "dev-master": "1.x-dev"
  2517. }
  2518. },
  2519. "autoload": {
  2520. "psr-4": {
  2521. "Seld\\PharUtils\\": "src/"
  2522. }
  2523. },
  2524. "notification-url": "https://packagist.org/downloads/",
  2525. "license": [
  2526. "MIT"
  2527. ],
  2528. "authors": [
  2529. {
  2530. "name": "Jordi Boggiano",
  2531. "email": "j.boggiano@seld.be"
  2532. }
  2533. ],
  2534. "description": "PHAR file format utilities, for when PHP phars you up",
  2535. "keywords": [
  2536. "phra"
  2537. ],
  2538. "time": "2015-10-13 18:44:15"
  2539. },
  2540. {
  2541. "name": "sensio/distribution-bundle",
  2542. "version": "v5.0.4",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2546. "reference": "2c167426fc24f9de116345195bc1697a748ee847"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/2c167426fc24f9de116345195bc1697a748ee847",
  2551. "reference": "2c167426fc24f9de116345195bc1697a748ee847",
  2552. "shasum": ""
  2553. },
  2554. "require": {
  2555. "php": ">=5.3.9",
  2556. "sensiolabs/security-checker": "~3.0",
  2557. "symfony/class-loader": "~2.3|~3.0",
  2558. "symfony/config": "~2.3|~3.0",
  2559. "symfony/dependency-injection": "~2.3|~3.0",
  2560. "symfony/filesystem": "~2.3|~3.0",
  2561. "symfony/http-kernel": "~2.3|~3.0",
  2562. "symfony/process": "~2.3|~3.0"
  2563. },
  2564. "type": "symfony-bundle",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "5.0.x-dev"
  2568. }
  2569. },
  2570. "autoload": {
  2571. "psr-4": {
  2572. "Sensio\\Bundle\\DistributionBundle\\": ""
  2573. }
  2574. },
  2575. "notification-url": "https://packagist.org/downloads/",
  2576. "license": [
  2577. "MIT"
  2578. ],
  2579. "authors": [
  2580. {
  2581. "name": "Fabien Potencier",
  2582. "email": "fabien@symfony.com"
  2583. }
  2584. ],
  2585. "description": "Base bundle for Symfony Distributions",
  2586. "keywords": [
  2587. "configuration",
  2588. "distribution"
  2589. ],
  2590. "time": "2016-02-12 16:21:30"
  2591. },
  2592. {
  2593. "name": "sensio/framework-extra-bundle",
  2594. "version": "v3.0.14",
  2595. "source": {
  2596. "type": "git",
  2597. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2598. "reference": "cccf975c565ccd835bddc30a8fea5cdfe3357bf1"
  2599. },
  2600. "dist": {
  2601. "type": "zip",
  2602. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/cccf975c565ccd835bddc30a8fea5cdfe3357bf1",
  2603. "reference": "cccf975c565ccd835bddc30a8fea5cdfe3357bf1",
  2604. "shasum": ""
  2605. },
  2606. "require": {
  2607. "doctrine/common": "~2.2",
  2608. "symfony/dependency-injection": "~2.3|~3.0",
  2609. "symfony/framework-bundle": "~2.3|~3.0"
  2610. },
  2611. "require-dev": {
  2612. "symfony/browser-kit": "~2.3|~3.0",
  2613. "symfony/dom-crawler": "~2.3|~3.0",
  2614. "symfony/expression-language": "~2.4|~3.0",
  2615. "symfony/finder": "~2.3|~3.0",
  2616. "symfony/phpunit-bridge": "~2.7|~3.0",
  2617. "symfony/security-bundle": "~2.4|~3.0",
  2618. "symfony/twig-bundle": "~2.3|~3.0",
  2619. "twig/twig": "~1.11|~2.0"
  2620. },
  2621. "suggest": {
  2622. "symfony/expression-language": "",
  2623. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  2624. "symfony/security-bundle": ""
  2625. },
  2626. "type": "symfony-bundle",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "3.0.x-dev"
  2630. }
  2631. },
  2632. "autoload": {
  2633. "psr-4": {
  2634. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  2635. }
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Fabien Potencier",
  2644. "email": "fabien@symfony.com"
  2645. }
  2646. ],
  2647. "description": "This bundle provides a way to configure your controllers with annotations",
  2648. "keywords": [
  2649. "annotations",
  2650. "controllers"
  2651. ],
  2652. "time": "2016-03-01 10:50:07"
  2653. },
  2654. {
  2655. "name": "sensio/generator-bundle",
  2656. "version": "v3.0.6",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2660. "reference": "ac91535054d025937d897d78ebb5fc2da5e955a4"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/ac91535054d025937d897d78ebb5fc2da5e955a4",
  2665. "reference": "ac91535054d025937d897d78ebb5fc2da5e955a4",
  2666. "shasum": ""
  2667. },
  2668. "require": {
  2669. "symfony/console": "~2.7|~3.0",
  2670. "symfony/framework-bundle": "~2.7|~3.0",
  2671. "symfony/process": "~2.7|~3.0",
  2672. "symfony/yaml": "~2.7|~3.0"
  2673. },
  2674. "require-dev": {
  2675. "doctrine/orm": "~2.4",
  2676. "symfony/doctrine-bridge": "~2.7|~3.0",
  2677. "twig/twig": "~1.18"
  2678. },
  2679. "type": "symfony-bundle",
  2680. "extra": {
  2681. "branch-alias": {
  2682. "dev-master": "3.0.x-dev"
  2683. }
  2684. },
  2685. "autoload": {
  2686. "psr-4": {
  2687. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2688. },
  2689. "exclude-from-classmap": [
  2690. "/Tests/"
  2691. ]
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "Fabien Potencier",
  2700. "email": "fabien@symfony.com"
  2701. }
  2702. ],
  2703. "description": "This bundle generates code for you",
  2704. "time": "2016-02-26 04:36:01"
  2705. },
  2706. {
  2707. "name": "sensiolabs/security-checker",
  2708. "version": "v3.0.2",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/sensiolabs/security-checker.git",
  2712. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/21696b0daa731064c23cfb694c60a2584a7b6e93",
  2717. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "symfony/console": "~2.0|~3.0"
  2722. },
  2723. "bin": [
  2724. "security-checker"
  2725. ],
  2726. "type": "library",
  2727. "extra": {
  2728. "branch-alias": {
  2729. "dev-master": "3.0-dev"
  2730. }
  2731. },
  2732. "autoload": {
  2733. "psr-0": {
  2734. "SensioLabs\\Security": ""
  2735. }
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "authors": [
  2742. {
  2743. "name": "Fabien Potencier",
  2744. "email": "fabien.potencier@gmail.com"
  2745. }
  2746. ],
  2747. "description": "A security checker for your composer.lock",
  2748. "time": "2015-11-07 08:07:40"
  2749. },
  2750. {
  2751. "name": "snc/redis-bundle",
  2752. "version": "1.1.10",
  2753. "target-dir": "Snc/RedisBundle",
  2754. "source": {
  2755. "type": "git",
  2756. "url": "https://github.com/snc/SncRedisBundle.git",
  2757. "reference": "3b11bdc877f470fa8a1e728ada48c62c0d33e0ed"
  2758. },
  2759. "dist": {
  2760. "type": "zip",
  2761. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/3b11bdc877f470fa8a1e728ada48c62c0d33e0ed",
  2762. "reference": "3b11bdc877f470fa8a1e728ada48c62c0d33e0ed",
  2763. "shasum": ""
  2764. },
  2765. "require": {
  2766. "php": ">=5.3.3",
  2767. "symfony/framework-bundle": "^2.1",
  2768. "symfony/yaml": "^2.1"
  2769. },
  2770. "require-dev": {
  2771. "doctrine/cache": "^1.0",
  2772. "phpunit/phpunit": "^4.0",
  2773. "predis/predis": "^1.0",
  2774. "symfony/console": "^2.1"
  2775. },
  2776. "suggest": {
  2777. "monolog/monolog": "If you want to use the monolog redis handler.",
  2778. "predis/predis": "If you want to use predis.",
  2779. "symfony/console": "If you want to use commands to interact with the redis database"
  2780. },
  2781. "type": "symfony-bundle",
  2782. "autoload": {
  2783. "psr-0": {
  2784. "Snc\\RedisBundle": ""
  2785. }
  2786. },
  2787. "notification-url": "https://packagist.org/downloads/",
  2788. "license": [
  2789. "MIT"
  2790. ],
  2791. "authors": [
  2792. {
  2793. "name": "Henrik Westphal",
  2794. "email": "henrik.westphal@gmail.com"
  2795. },
  2796. {
  2797. "name": "Community contributors",
  2798. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2799. }
  2800. ],
  2801. "description": "A Redis bundle for Symfony2",
  2802. "homepage": "https://github.com/snc/SncRedisBundle",
  2803. "keywords": [
  2804. "nosql",
  2805. "redis",
  2806. "symfony"
  2807. ],
  2808. "time": "2016-01-21 18:29:37"
  2809. },
  2810. {
  2811. "name": "solarium/solarium",
  2812. "version": "2.4.1",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/solariumphp/solarium.git",
  2816. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2821. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": ">=5.2.0"
  2826. },
  2827. "type": "library",
  2828. "autoload": {
  2829. "psr-0": {
  2830. "Solarium": "library/"
  2831. }
  2832. },
  2833. "notification-url": "https://packagist.org/downloads/",
  2834. "license": [
  2835. "NewBSD"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "See GitHub contributors",
  2840. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  2841. }
  2842. ],
  2843. "description": "PHP Solr client",
  2844. "homepage": "http://www.solarium-project.org",
  2845. "keywords": [
  2846. "php",
  2847. "search",
  2848. "solr"
  2849. ],
  2850. "time": "2013-02-11 13:12:43"
  2851. },
  2852. {
  2853. "name": "swiftmailer/swiftmailer",
  2854. "version": "v5.4.1",
  2855. "source": {
  2856. "type": "git",
  2857. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2858. "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421"
  2859. },
  2860. "dist": {
  2861. "type": "zip",
  2862. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421",
  2863. "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421",
  2864. "shasum": ""
  2865. },
  2866. "require": {
  2867. "php": ">=5.3.3"
  2868. },
  2869. "require-dev": {
  2870. "mockery/mockery": "~0.9.1,<0.9.4"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "branch-alias": {
  2875. "dev-master": "5.4-dev"
  2876. }
  2877. },
  2878. "autoload": {
  2879. "files": [
  2880. "lib/swift_required.php"
  2881. ]
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "MIT"
  2886. ],
  2887. "authors": [
  2888. {
  2889. "name": "Chris Corbyn"
  2890. },
  2891. {
  2892. "name": "Fabien Potencier",
  2893. "email": "fabien@symfony.com"
  2894. }
  2895. ],
  2896. "description": "Swiftmailer, free feature-rich PHP mailer",
  2897. "homepage": "http://swiftmailer.org",
  2898. "keywords": [
  2899. "email",
  2900. "mail",
  2901. "mailer"
  2902. ],
  2903. "time": "2015-06-06 14:19:39"
  2904. },
  2905. {
  2906. "name": "symfony/monolog-bundle",
  2907. "version": "v2.8.2",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/symfony/monolog-bundle.git",
  2911. "reference": "84785c4d44801c4dd82829fa2e1820cacfe2c46f"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/84785c4d44801c4dd82829fa2e1820cacfe2c46f",
  2916. "reference": "84785c4d44801c4dd82829fa2e1820cacfe2c46f",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "monolog/monolog": "~1.8",
  2921. "php": ">=5.3.2",
  2922. "symfony/config": "~2.3|~3.0",
  2923. "symfony/dependency-injection": "~2.3|~3.0",
  2924. "symfony/http-kernel": "~2.3|~3.0",
  2925. "symfony/monolog-bridge": "~2.3|~3.0"
  2926. },
  2927. "require-dev": {
  2928. "symfony/console": "~2.3|~3.0",
  2929. "symfony/yaml": "~2.3|~3.0"
  2930. },
  2931. "type": "symfony-bundle",
  2932. "extra": {
  2933. "branch-alias": {
  2934. "dev-master": "2.8.x-dev"
  2935. }
  2936. },
  2937. "autoload": {
  2938. "psr-4": {
  2939. "Symfony\\Bundle\\MonologBundle\\": ""
  2940. }
  2941. },
  2942. "notification-url": "https://packagist.org/downloads/",
  2943. "license": [
  2944. "MIT"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "Symfony Community",
  2949. "homepage": "http://symfony.com/contributors"
  2950. },
  2951. {
  2952. "name": "Fabien Potencier",
  2953. "email": "fabien@symfony.com"
  2954. }
  2955. ],
  2956. "description": "Symfony MonologBundle",
  2957. "homepage": "http://symfony.com",
  2958. "keywords": [
  2959. "log",
  2960. "logging"
  2961. ],
  2962. "time": "2015-11-17 10:02:29"
  2963. },
  2964. {
  2965. "name": "symfony/polyfill-apcu",
  2966. "version": "v1.1.1",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/symfony/polyfill-apcu.git",
  2970. "reference": "0c901e4e65a2f7ece68f0fd249b56d6ad3adc214"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/0c901e4e65a2f7ece68f0fd249b56d6ad3adc214",
  2975. "reference": "0c901e4e65a2f7ece68f0fd249b56d6ad3adc214",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "php": ">=5.3.3"
  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 backporting apcu_* functions to lower PHP versions",
  3007. "homepage": "https://symfony.com",
  3008. "keywords": [
  3009. "apcu",
  3010. "compatibility",
  3011. "polyfill",
  3012. "portable",
  3013. "shim"
  3014. ],
  3015. "time": "2016-03-03 16:49:40"
  3016. },
  3017. {
  3018. "name": "symfony/polyfill-intl-icu",
  3019. "version": "v1.1.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3023. "reference": "66b0bb4abda229bc073eff6bbc8f2685bdaac165"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/66b0bb4abda229bc073eff6bbc8f2685bdaac165",
  3028. "reference": "66b0bb4abda229bc073eff6bbc8f2685bdaac165",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "php": ">=5.3.3",
  3033. "symfony/intl": "~2.3|~3.0"
  3034. },
  3035. "type": "library",
  3036. "extra": {
  3037. "branch-alias": {
  3038. "dev-master": "1.1-dev"
  3039. }
  3040. },
  3041. "autoload": {
  3042. "files": [
  3043. "bootstrap.php"
  3044. ]
  3045. },
  3046. "notification-url": "https://packagist.org/downloads/",
  3047. "license": [
  3048. "MIT"
  3049. ],
  3050. "authors": [
  3051. {
  3052. "name": "Nicolas Grekas",
  3053. "email": "p@tchwork.com"
  3054. },
  3055. {
  3056. "name": "Symfony Community",
  3057. "homepage": "https://symfony.com/contributors"
  3058. }
  3059. ],
  3060. "description": "Symfony polyfill for intl's ICU-related data and classes",
  3061. "homepage": "https://symfony.com",
  3062. "keywords": [
  3063. "compatibility",
  3064. "icu",
  3065. "intl",
  3066. "polyfill",
  3067. "portable",
  3068. "shim"
  3069. ],
  3070. "time": "2016-01-20 09:13:37"
  3071. },
  3072. {
  3073. "name": "symfony/polyfill-mbstring",
  3074. "version": "v1.1.0",
  3075. "source": {
  3076. "type": "git",
  3077. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3078. "reference": "1289d16209491b584839022f29257ad859b8532d"
  3079. },
  3080. "dist": {
  3081. "type": "zip",
  3082. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d",
  3083. "reference": "1289d16209491b584839022f29257ad859b8532d",
  3084. "shasum": ""
  3085. },
  3086. "require": {
  3087. "php": ">=5.3.3"
  3088. },
  3089. "suggest": {
  3090. "ext-mbstring": "For best performance"
  3091. },
  3092. "type": "library",
  3093. "extra": {
  3094. "branch-alias": {
  3095. "dev-master": "1.1-dev"
  3096. }
  3097. },
  3098. "autoload": {
  3099. "psr-4": {
  3100. "Symfony\\Polyfill\\Mbstring\\": ""
  3101. },
  3102. "files": [
  3103. "bootstrap.php"
  3104. ]
  3105. },
  3106. "notification-url": "https://packagist.org/downloads/",
  3107. "license": [
  3108. "MIT"
  3109. ],
  3110. "authors": [
  3111. {
  3112. "name": "Nicolas Grekas",
  3113. "email": "p@tchwork.com"
  3114. },
  3115. {
  3116. "name": "Symfony Community",
  3117. "homepage": "https://symfony.com/contributors"
  3118. }
  3119. ],
  3120. "description": "Symfony polyfill for the Mbstring extension",
  3121. "homepage": "https://symfony.com",
  3122. "keywords": [
  3123. "compatibility",
  3124. "mbstring",
  3125. "polyfill",
  3126. "portable",
  3127. "shim"
  3128. ],
  3129. "time": "2016-01-20 09:13:37"
  3130. },
  3131. {
  3132. "name": "symfony/polyfill-php54",
  3133. "version": "v1.1.0",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://github.com/symfony/polyfill-php54.git",
  3137. "reference": "74663d5a2ff3c530c1bc0571500e0feec9094054"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/74663d5a2ff3c530c1bc0571500e0feec9094054",
  3142. "reference": "74663d5a2ff3c530c1bc0571500e0feec9094054",
  3143. "shasum": ""
  3144. },
  3145. "require": {
  3146. "php": ">=5.3.3"
  3147. },
  3148. "type": "library",
  3149. "extra": {
  3150. "branch-alias": {
  3151. "dev-master": "1.1-dev"
  3152. }
  3153. },
  3154. "autoload": {
  3155. "psr-4": {
  3156. "Symfony\\Polyfill\\Php54\\": ""
  3157. },
  3158. "files": [
  3159. "bootstrap.php"
  3160. ],
  3161. "classmap": [
  3162. "Resources/stubs"
  3163. ]
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "MIT"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "Nicolas Grekas",
  3172. "email": "p@tchwork.com"
  3173. },
  3174. {
  3175. "name": "Symfony Community",
  3176. "homepage": "https://symfony.com/contributors"
  3177. }
  3178. ],
  3179. "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
  3180. "homepage": "https://symfony.com",
  3181. "keywords": [
  3182. "compatibility",
  3183. "polyfill",
  3184. "portable",
  3185. "shim"
  3186. ],
  3187. "time": "2016-01-20 09:13:37"
  3188. },
  3189. {
  3190. "name": "symfony/polyfill-php55",
  3191. "version": "v1.1.0",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/symfony/polyfill-php55.git",
  3195. "reference": "b4f3f07d91702f8f926339fc4fcf81671d8c27e6"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/b4f3f07d91702f8f926339fc4fcf81671d8c27e6",
  3200. "reference": "b4f3f07d91702f8f926339fc4fcf81671d8c27e6",
  3201. "shasum": ""
  3202. },
  3203. "require": {
  3204. "ircmaxell/password-compat": "~1.0",
  3205. "php": ">=5.3.3"
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "branch-alias": {
  3210. "dev-master": "1.1-dev"
  3211. }
  3212. },
  3213. "autoload": {
  3214. "psr-4": {
  3215. "Symfony\\Polyfill\\Php55\\": ""
  3216. },
  3217. "files": [
  3218. "bootstrap.php"
  3219. ]
  3220. },
  3221. "notification-url": "https://packagist.org/downloads/",
  3222. "license": [
  3223. "MIT"
  3224. ],
  3225. "authors": [
  3226. {
  3227. "name": "Nicolas Grekas",
  3228. "email": "p@tchwork.com"
  3229. },
  3230. {
  3231. "name": "Symfony Community",
  3232. "homepage": "https://symfony.com/contributors"
  3233. }
  3234. ],
  3235. "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
  3236. "homepage": "https://symfony.com",
  3237. "keywords": [
  3238. "compatibility",
  3239. "polyfill",
  3240. "portable",
  3241. "shim"
  3242. ],
  3243. "time": "2016-01-20 09:13:37"
  3244. },
  3245. {
  3246. "name": "symfony/polyfill-php56",
  3247. "version": "v1.1.0",
  3248. "source": {
  3249. "type": "git",
  3250. "url": "https://github.com/symfony/polyfill-php56.git",
  3251. "reference": "4d891fff050101a53a4caabb03277284942d1ad9"
  3252. },
  3253. "dist": {
  3254. "type": "zip",
  3255. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/4d891fff050101a53a4caabb03277284942d1ad9",
  3256. "reference": "4d891fff050101a53a4caabb03277284942d1ad9",
  3257. "shasum": ""
  3258. },
  3259. "require": {
  3260. "php": ">=5.3.3",
  3261. "symfony/polyfill-util": "~1.0"
  3262. },
  3263. "type": "library",
  3264. "extra": {
  3265. "branch-alias": {
  3266. "dev-master": "1.1-dev"
  3267. }
  3268. },
  3269. "autoload": {
  3270. "psr-4": {
  3271. "Symfony\\Polyfill\\Php56\\": ""
  3272. },
  3273. "files": [
  3274. "bootstrap.php"
  3275. ]
  3276. },
  3277. "notification-url": "https://packagist.org/downloads/",
  3278. "license": [
  3279. "MIT"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "Nicolas Grekas",
  3284. "email": "p@tchwork.com"
  3285. },
  3286. {
  3287. "name": "Symfony Community",
  3288. "homepage": "https://symfony.com/contributors"
  3289. }
  3290. ],
  3291. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3292. "homepage": "https://symfony.com",
  3293. "keywords": [
  3294. "compatibility",
  3295. "polyfill",
  3296. "portable",
  3297. "shim"
  3298. ],
  3299. "time": "2016-01-20 09:13:37"
  3300. },
  3301. {
  3302. "name": "symfony/polyfill-php70",
  3303. "version": "v1.1.0",
  3304. "source": {
  3305. "type": "git",
  3306. "url": "https://github.com/symfony/polyfill-php70.git",
  3307. "reference": "8428ceddbbaf102f2906769a8ef2438220c5cb95"
  3308. },
  3309. "dist": {
  3310. "type": "zip",
  3311. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/8428ceddbbaf102f2906769a8ef2438220c5cb95",
  3312. "reference": "8428ceddbbaf102f2906769a8ef2438220c5cb95",
  3313. "shasum": ""
  3314. },
  3315. "require": {
  3316. "paragonie/random_compat": "~1.0",
  3317. "php": ">=5.3.3"
  3318. },
  3319. "type": "library",
  3320. "extra": {
  3321. "branch-alias": {
  3322. "dev-master": "1.1-dev"
  3323. }
  3324. },
  3325. "autoload": {
  3326. "psr-4": {
  3327. "Symfony\\Polyfill\\Php70\\": ""
  3328. },
  3329. "files": [
  3330. "bootstrap.php"
  3331. ],
  3332. "classmap": [
  3333. "Resources/stubs"
  3334. ]
  3335. },
  3336. "notification-url": "https://packagist.org/downloads/",
  3337. "license": [
  3338. "MIT"
  3339. ],
  3340. "authors": [
  3341. {
  3342. "name": "Nicolas Grekas",
  3343. "email": "p@tchwork.com"
  3344. },
  3345. {
  3346. "name": "Symfony Community",
  3347. "homepage": "https://symfony.com/contributors"
  3348. }
  3349. ],
  3350. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3351. "homepage": "https://symfony.com",
  3352. "keywords": [
  3353. "compatibility",
  3354. "polyfill",
  3355. "portable",
  3356. "shim"
  3357. ],
  3358. "time": "2016-01-25 08:44:42"
  3359. },
  3360. {
  3361. "name": "symfony/polyfill-util",
  3362. "version": "v1.1.0",
  3363. "source": {
  3364. "type": "git",
  3365. "url": "https://github.com/symfony/polyfill-util.git",
  3366. "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4"
  3367. },
  3368. "dist": {
  3369. "type": "zip",
  3370. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4",
  3371. "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4",
  3372. "shasum": ""
  3373. },
  3374. "require": {
  3375. "php": ">=5.3.3"
  3376. },
  3377. "type": "library",
  3378. "extra": {
  3379. "branch-alias": {
  3380. "dev-master": "1.1-dev"
  3381. }
  3382. },
  3383. "autoload": {
  3384. "psr-4": {
  3385. "Symfony\\Polyfill\\Util\\": ""
  3386. }
  3387. },
  3388. "notification-url": "https://packagist.org/downloads/",
  3389. "license": [
  3390. "MIT"
  3391. ],
  3392. "authors": [
  3393. {
  3394. "name": "Nicolas Grekas",
  3395. "email": "p@tchwork.com"
  3396. },
  3397. {
  3398. "name": "Symfony Community",
  3399. "homepage": "https://symfony.com/contributors"
  3400. }
  3401. ],
  3402. "description": "Symfony utilities for portability of PHP codes",
  3403. "homepage": "https://symfony.com",
  3404. "keywords": [
  3405. "compat",
  3406. "compatibility",
  3407. "polyfill",
  3408. "shim"
  3409. ],
  3410. "time": "2016-01-20 09:13:37"
  3411. },
  3412. {
  3413. "name": "symfony/security-acl",
  3414. "version": "v2.8.0",
  3415. "source": {
  3416. "type": "git",
  3417. "url": "https://github.com/symfony/security-acl.git",
  3418. "reference": "4a3f7327ad215242c78f6564ad4ea6d2db1b8347"
  3419. },
  3420. "dist": {
  3421. "type": "zip",
  3422. "url": "https://api.github.com/repos/symfony/security-acl/zipball/4a3f7327ad215242c78f6564ad4ea6d2db1b8347",
  3423. "reference": "4a3f7327ad215242c78f6564ad4ea6d2db1b8347",
  3424. "shasum": ""
  3425. },
  3426. "require": {
  3427. "php": ">=5.3.9",
  3428. "symfony/security-core": "~2.4|~3.0.0"
  3429. },
  3430. "require-dev": {
  3431. "doctrine/common": "~2.2",
  3432. "doctrine/dbal": "~2.2",
  3433. "psr/log": "~1.0",
  3434. "symfony/phpunit-bridge": "~2.7|~3.0.0"
  3435. },
  3436. "suggest": {
  3437. "doctrine/dbal": "For using the built-in ACL implementation",
  3438. "symfony/class-loader": "For using the ACL generateSql script",
  3439. "symfony/finder": "For using the ACL generateSql script"
  3440. },
  3441. "type": "library",
  3442. "extra": {
  3443. "branch-alias": {
  3444. "dev-master": "2.8-dev"
  3445. }
  3446. },
  3447. "autoload": {
  3448. "psr-4": {
  3449. "Symfony\\Component\\Security\\Acl\\": ""
  3450. },
  3451. "exclude-from-classmap": [
  3452. "/Tests/"
  3453. ]
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Fabien Potencier",
  3462. "email": "fabien@symfony.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Symfony Security Component - ACL (Access Control List)",
  3470. "homepage": "https://symfony.com",
  3471. "time": "2015-12-28 09:39:09"
  3472. },
  3473. {
  3474. "name": "symfony/swiftmailer-bundle",
  3475. "version": "v2.3.11",
  3476. "source": {
  3477. "type": "git",
  3478. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  3479. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690"
  3480. },
  3481. "dist": {
  3482. "type": "zip",
  3483. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3484. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3485. "shasum": ""
  3486. },
  3487. "require": {
  3488. "php": ">=5.3.2",
  3489. "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  3490. "symfony/config": "~2.3|~3.0",
  3491. "symfony/dependency-injection": "~2.3|~3.0",
  3492. "symfony/http-kernel": "~2.3|~3.0",
  3493. "symfony/yaml": "~2.3|~3.0"
  3494. },
  3495. "require-dev": {
  3496. "symfony/phpunit-bridge": "~2.7|~3.0"
  3497. },
  3498. "suggest": {
  3499. "psr/log": "Allows logging"
  3500. },
  3501. "type": "symfony-bundle",
  3502. "extra": {
  3503. "branch-alias": {
  3504. "dev-master": "2.3-dev"
  3505. }
  3506. },
  3507. "autoload": {
  3508. "psr-4": {
  3509. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  3510. }
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "MIT"
  3515. ],
  3516. "authors": [
  3517. {
  3518. "name": "Symfony Community",
  3519. "homepage": "http://symfony.com/contributors"
  3520. },
  3521. {
  3522. "name": "Fabien Potencier",
  3523. "email": "fabien@symfony.com"
  3524. }
  3525. ],
  3526. "description": "Symfony SwiftmailerBundle",
  3527. "homepage": "http://symfony.com",
  3528. "time": "2016-01-15 16:41:20"
  3529. },
  3530. {
  3531. "name": "symfony/symfony",
  3532. "version": "v2.8.3",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/symfony/symfony.git",
  3536. "reference": "7a9a5fce7ce6e448e527f635463dda00761e12c2"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/symfony/symfony/zipball/7a9a5fce7ce6e448e527f635463dda00761e12c2",
  3541. "reference": "7a9a5fce7ce6e448e527f635463dda00761e12c2",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "doctrine/common": "~2.4",
  3546. "php": ">=5.3.9",
  3547. "psr/log": "~1.0",
  3548. "symfony/polyfill-apcu": "~1.1",
  3549. "symfony/polyfill-intl-icu": "~1.0",
  3550. "symfony/polyfill-mbstring": "~1.0",
  3551. "symfony/polyfill-php54": "~1.0",
  3552. "symfony/polyfill-php55": "~1.0",
  3553. "symfony/polyfill-php56": "~1.0",
  3554. "symfony/polyfill-php70": "~1.0",
  3555. "symfony/polyfill-util": "~1.0",
  3556. "symfony/security-acl": "~2.7",
  3557. "twig/twig": "~1.23|~2.0"
  3558. },
  3559. "conflict": {
  3560. "phpdocumentor/reflection": "<1.0.7"
  3561. },
  3562. "replace": {
  3563. "symfony/asset": "self.version",
  3564. "symfony/browser-kit": "self.version",
  3565. "symfony/class-loader": "self.version",
  3566. "symfony/config": "self.version",
  3567. "symfony/console": "self.version",
  3568. "symfony/css-selector": "self.version",
  3569. "symfony/debug": "self.version",
  3570. "symfony/debug-bundle": "self.version",
  3571. "symfony/dependency-injection": "self.version",
  3572. "symfony/doctrine-bridge": "self.version",
  3573. "symfony/dom-crawler": "self.version",
  3574. "symfony/event-dispatcher": "self.version",
  3575. "symfony/expression-language": "self.version",
  3576. "symfony/filesystem": "self.version",
  3577. "symfony/finder": "self.version",
  3578. "symfony/form": "self.version",
  3579. "symfony/framework-bundle": "self.version",
  3580. "symfony/http-foundation": "self.version",
  3581. "symfony/http-kernel": "self.version",
  3582. "symfony/intl": "self.version",
  3583. "symfony/ldap": "self.version",
  3584. "symfony/locale": "self.version",
  3585. "symfony/monolog-bridge": "self.version",
  3586. "symfony/options-resolver": "self.version",
  3587. "symfony/process": "self.version",
  3588. "symfony/property-access": "self.version",
  3589. "symfony/property-info": "self.version",
  3590. "symfony/proxy-manager-bridge": "self.version",
  3591. "symfony/routing": "self.version",
  3592. "symfony/security": "self.version",
  3593. "symfony/security-bundle": "self.version",
  3594. "symfony/security-core": "self.version",
  3595. "symfony/security-csrf": "self.version",
  3596. "symfony/security-guard": "self.version",
  3597. "symfony/security-http": "self.version",
  3598. "symfony/serializer": "self.version",
  3599. "symfony/stopwatch": "self.version",
  3600. "symfony/swiftmailer-bridge": "self.version",
  3601. "symfony/templating": "self.version",
  3602. "symfony/translation": "self.version",
  3603. "symfony/twig-bridge": "self.version",
  3604. "symfony/twig-bundle": "self.version",
  3605. "symfony/validator": "self.version",
  3606. "symfony/var-dumper": "self.version",
  3607. "symfony/web-profiler-bundle": "self.version",
  3608. "symfony/yaml": "self.version"
  3609. },
  3610. "require-dev": {
  3611. "doctrine/data-fixtures": "1.0.*",
  3612. "doctrine/dbal": "~2.4",
  3613. "doctrine/doctrine-bundle": "~1.2",
  3614. "doctrine/orm": "~2.4,>=2.4.5",
  3615. "egulias/email-validator": "~1.2",
  3616. "monolog/monolog": "~1.11",
  3617. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  3618. "phpdocumentor/reflection": "^1.0.7"
  3619. },
  3620. "type": "library",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-master": "2.8-dev"
  3624. }
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  3629. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  3630. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  3631. "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/",
  3632. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  3633. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  3634. "Symfony\\Component\\": "src/Symfony/Component/"
  3635. },
  3636. "classmap": [
  3637. "src/Symfony/Component/Intl/Resources/stubs"
  3638. ],
  3639. "exclude-from-classmap": [
  3640. "**/Tests/"
  3641. ]
  3642. },
  3643. "notification-url": "https://packagist.org/downloads/",
  3644. "license": [
  3645. "MIT"
  3646. ],
  3647. "authors": [
  3648. {
  3649. "name": "Fabien Potencier",
  3650. "email": "fabien@symfony.com"
  3651. },
  3652. {
  3653. "name": "Symfony Community",
  3654. "homepage": "https://symfony.com/contributors"
  3655. }
  3656. ],
  3657. "description": "The Symfony PHP framework",
  3658. "homepage": "https://symfony.com",
  3659. "keywords": [
  3660. "framework"
  3661. ],
  3662. "time": "2016-02-28 21:06:29"
  3663. },
  3664. {
  3665. "name": "twig/extensions",
  3666. "version": "v1.3.0",
  3667. "source": {
  3668. "type": "git",
  3669. "url": "https://github.com/twigphp/Twig-extensions.git",
  3670. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499"
  3671. },
  3672. "dist": {
  3673. "type": "zip",
  3674. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/449e3c8a9ffad7c2479c7864557275a32b037499",
  3675. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499",
  3676. "shasum": ""
  3677. },
  3678. "require": {
  3679. "twig/twig": "~1.20|~2.0"
  3680. },
  3681. "require-dev": {
  3682. "symfony/translation": "~2.3"
  3683. },
  3684. "suggest": {
  3685. "symfony/translation": "Allow the time_diff output to be translated"
  3686. },
  3687. "type": "library",
  3688. "extra": {
  3689. "branch-alias": {
  3690. "dev-master": "1.3-dev"
  3691. }
  3692. },
  3693. "autoload": {
  3694. "psr-0": {
  3695. "Twig_Extensions_": "lib/"
  3696. }
  3697. },
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "MIT"
  3701. ],
  3702. "authors": [
  3703. {
  3704. "name": "Fabien Potencier",
  3705. "email": "fabien@symfony.com"
  3706. }
  3707. ],
  3708. "description": "Common additional features for Twig that do not directly belong in core",
  3709. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  3710. "keywords": [
  3711. "i18n",
  3712. "text"
  3713. ],
  3714. "time": "2015-08-22 16:38:35"
  3715. },
  3716. {
  3717. "name": "twig/twig",
  3718. "version": "v1.24.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://github.com/twigphp/Twig.git",
  3722. "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
  3727. "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
  3728. "shasum": ""
  3729. },
  3730. "require": {
  3731. "php": ">=5.2.7"
  3732. },
  3733. "require-dev": {
  3734. "symfony/debug": "~2.7",
  3735. "symfony/phpunit-bridge": "~2.7"
  3736. },
  3737. "type": "library",
  3738. "extra": {
  3739. "branch-alias": {
  3740. "dev-master": "1.24-dev"
  3741. }
  3742. },
  3743. "autoload": {
  3744. "psr-0": {
  3745. "Twig_": "lib/"
  3746. }
  3747. },
  3748. "notification-url": "https://packagist.org/downloads/",
  3749. "license": [
  3750. "BSD-3-Clause"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "Fabien Potencier",
  3755. "email": "fabien@symfony.com",
  3756. "homepage": "http://fabien.potencier.org",
  3757. "role": "Lead Developer"
  3758. },
  3759. {
  3760. "name": "Armin Ronacher",
  3761. "email": "armin.ronacher@active-4.com",
  3762. "role": "Project Founder"
  3763. },
  3764. {
  3765. "name": "Twig Team",
  3766. "homepage": "http://twig.sensiolabs.org/contributors",
  3767. "role": "Contributors"
  3768. }
  3769. ],
  3770. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3771. "homepage": "http://twig.sensiolabs.org",
  3772. "keywords": [
  3773. "templating"
  3774. ],
  3775. "time": "2016-01-25 21:22:18"
  3776. },
  3777. {
  3778. "name": "white-october/pagerfanta-bundle",
  3779. "version": "v1.0.5",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  3783. "reference": "e6b020f9c2af6fa5a46d780039c57fdb89003f6c"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/e6b020f9c2af6fa5a46d780039c57fdb89003f6c",
  3788. "reference": "e6b020f9c2af6fa5a46d780039c57fdb89003f6c",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "pagerfanta/pagerfanta": "1.0.*",
  3793. "symfony/framework-bundle": "~2.3|~3.0",
  3794. "symfony/property-access": "~2.3|~3.0",
  3795. "symfony/twig-bundle": "~2.3|~3.0"
  3796. },
  3797. "require-dev": {
  3798. "phpunit/phpunit": "~3.7",
  3799. "symfony/symfony": "~2.3|~3.0"
  3800. },
  3801. "type": "symfony-bundle",
  3802. "extra": {
  3803. "branch-alias": {
  3804. "dev-master": "1.0.x-dev"
  3805. }
  3806. },
  3807. "autoload": {
  3808. "psr-4": {
  3809. "WhiteOctober\\PagerfantaBundle\\": ""
  3810. }
  3811. },
  3812. "notification-url": "https://packagist.org/downloads/",
  3813. "license": [
  3814. "MIT"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "Pablo Díez",
  3819. "email": "pablodip@gmail.com"
  3820. }
  3821. ],
  3822. "description": "Bundle to use Pagerfanta with Symfony2",
  3823. "keywords": [
  3824. "page",
  3825. "paging"
  3826. ],
  3827. "time": "2015-12-06 17:16:06"
  3828. },
  3829. {
  3830. "name": "zendframework/zend-escaper",
  3831. "version": "2.5.1",
  3832. "source": {
  3833. "type": "git",
  3834. "url": "https://github.com/zendframework/zend-escaper.git",
  3835. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73"
  3836. },
  3837. "dist": {
  3838. "type": "zip",
  3839. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3840. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3841. "shasum": ""
  3842. },
  3843. "require": {
  3844. "php": ">=5.3.23"
  3845. },
  3846. "require-dev": {
  3847. "fabpot/php-cs-fixer": "1.7.*",
  3848. "phpunit/phpunit": "~4.0"
  3849. },
  3850. "type": "library",
  3851. "extra": {
  3852. "branch-alias": {
  3853. "dev-master": "2.5-dev",
  3854. "dev-develop": "2.6-dev"
  3855. }
  3856. },
  3857. "autoload": {
  3858. "psr-4": {
  3859. "Zend\\Escaper\\": "src/"
  3860. }
  3861. },
  3862. "notification-url": "https://packagist.org/downloads/",
  3863. "license": [
  3864. "BSD-3-Clause"
  3865. ],
  3866. "homepage": "https://github.com/zendframework/zend-escaper",
  3867. "keywords": [
  3868. "escaper",
  3869. "zf2"
  3870. ],
  3871. "time": "2015-06-03 14:05:37"
  3872. },
  3873. {
  3874. "name": "zendframework/zend-feed",
  3875. "version": "2.7.0",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://github.com/zendframework/zend-feed.git",
  3879. "reference": "12b328d382aa5200f1de53d4147033b885776b67"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/12b328d382aa5200f1de53d4147033b885776b67",
  3884. "reference": "12b328d382aa5200f1de53d4147033b885776b67",
  3885. "shasum": ""
  3886. },
  3887. "require": {
  3888. "php": "^5.5 || ^7.0",
  3889. "zendframework/zend-escaper": "^2.5",
  3890. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  3891. },
  3892. "require-dev": {
  3893. "fabpot/php-cs-fixer": "1.7.*",
  3894. "phpunit/phpunit": "~4.0",
  3895. "psr/http-message": "^1.0",
  3896. "zendframework/zend-cache": "^2.5",
  3897. "zendframework/zend-db": "^2.5",
  3898. "zendframework/zend-http": "^2.5",
  3899. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  3900. "zendframework/zend-validator": "^2.5"
  3901. },
  3902. "suggest": {
  3903. "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  3904. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  3905. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  3906. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  3907. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  3908. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
  3909. },
  3910. "type": "library",
  3911. "extra": {
  3912. "branch-alias": {
  3913. "dev-master": "2.7-dev",
  3914. "dev-develop": "2.8-dev"
  3915. }
  3916. },
  3917. "autoload": {
  3918. "psr-4": {
  3919. "Zend\\Feed\\": "src/"
  3920. }
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "BSD-3-Clause"
  3925. ],
  3926. "description": "provides functionality for consuming RSS and Atom feeds",
  3927. "homepage": "https://github.com/zendframework/zend-feed",
  3928. "keywords": [
  3929. "feed",
  3930. "zf2"
  3931. ],
  3932. "time": "2016-02-11 18:54:29"
  3933. },
  3934. {
  3935. "name": "zendframework/zend-json",
  3936. "version": "2.6.1",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://github.com/zendframework/zend-json.git",
  3940. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  3945. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  3946. "shasum": ""
  3947. },
  3948. "require": {
  3949. "php": "^5.5 || ^7.0"
  3950. },
  3951. "require-dev": {
  3952. "fabpot/php-cs-fixer": "1.7.*",
  3953. "phpunit/phpunit": "~4.0",
  3954. "zendframework/zend-http": "^2.5.4",
  3955. "zendframework/zend-server": "^2.6.1",
  3956. "zendframework/zend-stdlib": "^2.5 || ^3.0",
  3957. "zendframework/zendxml": "^1.0.2"
  3958. },
  3959. "suggest": {
  3960. "zendframework/zend-http": "Zend\\Http component, required to use Zend\\Json\\Server",
  3961. "zendframework/zend-server": "Zend\\Server component, required to use Zend\\Json\\Server",
  3962. "zendframework/zend-stdlib": "Zend\\Stdlib component, for use with caching Zend\\Json\\Server responses",
  3963. "zendframework/zendxml": "To support Zend\\Json\\Json::fromXml() usage"
  3964. },
  3965. "type": "library",
  3966. "extra": {
  3967. "branch-alias": {
  3968. "dev-master": "2.6-dev",
  3969. "dev-develop": "2.7-dev"
  3970. }
  3971. },
  3972. "autoload": {
  3973. "psr-4": {
  3974. "Zend\\Json\\": "src/"
  3975. }
  3976. },
  3977. "notification-url": "https://packagist.org/downloads/",
  3978. "license": [
  3979. "BSD-3-Clause"
  3980. ],
  3981. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  3982. "homepage": "https://github.com/zendframework/zend-json",
  3983. "keywords": [
  3984. "json",
  3985. "zf2"
  3986. ],
  3987. "time": "2016-02-04 21:20:26"
  3988. },
  3989. {
  3990. "name": "zendframework/zend-servicemanager",
  3991. "version": "2.7.5",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/zendframework/zend-servicemanager.git",
  3995. "reference": "fb5b54db5ead533b38e311f14e9c01a79218bf2b"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/fb5b54db5ead533b38e311f14e9c01a79218bf2b",
  4000. "reference": "fb5b54db5ead533b38e311f14e9c01a79218bf2b",
  4001. "shasum": ""
  4002. },
  4003. "require": {
  4004. "container-interop/container-interop": "~1.0",
  4005. "php": "^5.5 || ^7.0"
  4006. },
  4007. "require-dev": {
  4008. "athletic/athletic": "dev-master",
  4009. "fabpot/php-cs-fixer": "1.7.*",
  4010. "phpunit/phpunit": "~4.0",
  4011. "zendframework/zend-di": "~2.5",
  4012. "zendframework/zend-mvc": "~2.5"
  4013. },
  4014. "suggest": {
  4015. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  4016. "zendframework/zend-di": "Zend\\Di component"
  4017. },
  4018. "type": "library",
  4019. "extra": {
  4020. "branch-alias": {
  4021. "dev-master": "2.7-dev",
  4022. "dev-develop": "3.0-dev"
  4023. }
  4024. },
  4025. "autoload": {
  4026. "psr-4": {
  4027. "Zend\\ServiceManager\\": "src/"
  4028. }
  4029. },
  4030. "notification-url": "https://packagist.org/downloads/",
  4031. "license": [
  4032. "BSD-3-Clause"
  4033. ],
  4034. "homepage": "https://github.com/zendframework/zend-servicemanager",
  4035. "keywords": [
  4036. "servicemanager",
  4037. "zf2"
  4038. ],
  4039. "time": "2016-02-02 14:11:46"
  4040. },
  4041. {
  4042. "name": "zendframework/zend-stdlib",
  4043. "version": "3.0.0",
  4044. "source": {
  4045. "type": "git",
  4046. "url": "https://github.com/zendframework/zend-stdlib.git",
  4047. "reference": "22eb098958980fbbe6b9a06f209f5a4b496cc0c1"
  4048. },
  4049. "dist": {
  4050. "type": "zip",
  4051. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/22eb098958980fbbe6b9a06f209f5a4b496cc0c1",
  4052. "reference": "22eb098958980fbbe6b9a06f209f5a4b496cc0c1",
  4053. "shasum": ""
  4054. },
  4055. "require": {
  4056. "php": "^5.5 || ^7.0"
  4057. },
  4058. "require-dev": {
  4059. "athletic/athletic": "~0.1",
  4060. "fabpot/php-cs-fixer": "1.7.*",
  4061. "phpunit/phpunit": "~4.0"
  4062. },
  4063. "type": "library",
  4064. "extra": {
  4065. "branch-alias": {
  4066. "dev-master": "3.0-dev",
  4067. "dev-develop": "3.1-dev"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "psr-4": {
  4072. "Zend\\Stdlib\\": "src/"
  4073. }
  4074. },
  4075. "notification-url": "https://packagist.org/downloads/",
  4076. "license": [
  4077. "BSD-3-Clause"
  4078. ],
  4079. "homepage": "https://github.com/zendframework/zend-stdlib",
  4080. "keywords": [
  4081. "stdlib",
  4082. "zf2"
  4083. ],
  4084. "time": "2016-02-03 16:53:37"
  4085. },
  4086. {
  4087. "name": "zendframework/zend-uri",
  4088. "version": "2.5.2",
  4089. "source": {
  4090. "type": "git",
  4091. "url": "https://github.com/zendframework/zend-uri.git",
  4092. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed"
  4093. },
  4094. "dist": {
  4095. "type": "zip",
  4096. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/0bf717a239432b1a1675ae314f7c4acd742749ed",
  4097. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed",
  4098. "shasum": ""
  4099. },
  4100. "require": {
  4101. "php": "^5.5 || ^7.0",
  4102. "zendframework/zend-escaper": "^2.5",
  4103. "zendframework/zend-validator": "^2.5"
  4104. },
  4105. "require-dev": {
  4106. "fabpot/php-cs-fixer": "1.7.*",
  4107. "phpunit/phpunit": "~4.0"
  4108. },
  4109. "type": "library",
  4110. "extra": {
  4111. "branch-alias": {
  4112. "dev-master": "2.5-dev",
  4113. "dev-develop": "2.6-dev"
  4114. }
  4115. },
  4116. "autoload": {
  4117. "psr-4": {
  4118. "Zend\\Uri\\": "src/"
  4119. }
  4120. },
  4121. "notification-url": "https://packagist.org/downloads/",
  4122. "license": [
  4123. "BSD-3-Clause"
  4124. ],
  4125. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  4126. "homepage": "https://github.com/zendframework/zend-uri",
  4127. "keywords": [
  4128. "uri",
  4129. "zf2"
  4130. ],
  4131. "time": "2016-02-17 22:38:51"
  4132. },
  4133. {
  4134. "name": "zendframework/zend-validator",
  4135. "version": "2.6.0",
  4136. "source": {
  4137. "type": "git",
  4138. "url": "https://github.com/zendframework/zend-validator.git",
  4139. "reference": "1315fead53358054e3f5fcf440c1a4cd5f0724db"
  4140. },
  4141. "dist": {
  4142. "type": "zip",
  4143. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/1315fead53358054e3f5fcf440c1a4cd5f0724db",
  4144. "reference": "1315fead53358054e3f5fcf440c1a4cd5f0724db",
  4145. "shasum": ""
  4146. },
  4147. "require": {
  4148. "container-interop/container-interop": "^1.1",
  4149. "php": "^5.5 || ^7.0",
  4150. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4151. },
  4152. "require-dev": {
  4153. "fabpot/php-cs-fixer": "1.7.*",
  4154. "phpunit/phpunit": "^4.0",
  4155. "zendframework/zend-cache": "^2.6.1",
  4156. "zendframework/zend-config": "^2.6",
  4157. "zendframework/zend-db": "^2.5",
  4158. "zendframework/zend-filter": "^2.6",
  4159. "zendframework/zend-http": "^2.5.4",
  4160. "zendframework/zend-i18n": "^2.6",
  4161. "zendframework/zend-math": "^2.6",
  4162. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4163. "zendframework/zend-session": "^2.5",
  4164. "zendframework/zend-uri": "^2.5"
  4165. },
  4166. "suggest": {
  4167. "zendframework/zend-db": "Zend\\Db component",
  4168. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  4169. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  4170. "zendframework/zend-i18n-resources": "Translations of validator messages",
  4171. "zendframework/zend-math": "Zend\\Math component",
  4172. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  4173. "zendframework/zend-session": "Zend\\Session component",
  4174. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  4175. },
  4176. "type": "library",
  4177. "extra": {
  4178. "branch-alias": {
  4179. "dev-master": "2.6-dev",
  4180. "dev-develop": "2.7-dev"
  4181. }
  4182. },
  4183. "autoload": {
  4184. "psr-4": {
  4185. "Zend\\Validator\\": "src/"
  4186. }
  4187. },
  4188. "notification-url": "https://packagist.org/downloads/",
  4189. "license": [
  4190. "BSD-3-Clause"
  4191. ],
  4192. "description": "provides a set of commonly needed validators",
  4193. "homepage": "https://github.com/zendframework/zend-validator",
  4194. "keywords": [
  4195. "validator",
  4196. "zf2"
  4197. ],
  4198. "time": "2016-02-17 17:59:34"
  4199. },
  4200. {
  4201. "name": "zendframework/zend-version",
  4202. "version": "2.5.1",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/zendframework/zend-version.git",
  4206. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/zendframework/zend-version/zipball/e30c55dc394eaf396f0347887af0a7bef471fe08",
  4211. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "php": ">=5.3.23",
  4216. "zendframework/zend-json": "~2.5"
  4217. },
  4218. "require-dev": {
  4219. "fabpot/php-cs-fixer": "1.7.*",
  4220. "phpunit/phpunit": "~4.0",
  4221. "zendframework/zend-http": "~2.5"
  4222. },
  4223. "suggest": {
  4224. "zendframework/zend-http": "Allows use of Zend\\Http\\Client to check version information",
  4225. "zendframework/zend-json": "To check latest version hosted in GitHub"
  4226. },
  4227. "type": "library",
  4228. "extra": {
  4229. "branch-alias": {
  4230. "dev-master": "2.5-dev",
  4231. "dev-develop": "2.6-dev"
  4232. }
  4233. },
  4234. "autoload": {
  4235. "psr-4": {
  4236. "Zend\\Version\\": "src/"
  4237. }
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "BSD-3-Clause"
  4242. ],
  4243. "homepage": "https://github.com/zendframework/zend-version",
  4244. "keywords": [
  4245. "version",
  4246. "zf2"
  4247. ],
  4248. "time": "2015-06-04 15:41:05"
  4249. }
  4250. ],
  4251. "packages-dev": [
  4252. {
  4253. "name": "symfony/phpunit-bridge",
  4254. "version": "v3.0.3",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/symfony/phpunit-bridge.git",
  4258. "reference": "4580ae86cde5497d38fc971192cd2c37e546eb4f"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/4580ae86cde5497d38fc971192cd2c37e546eb4f",
  4263. "reference": "4580ae86cde5497d38fc971192cd2c37e546eb4f",
  4264. "shasum": ""
  4265. },
  4266. "require": {
  4267. "php": ">=5.5.9"
  4268. },
  4269. "suggest": {
  4270. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  4271. },
  4272. "type": "symfony-bridge",
  4273. "extra": {
  4274. "branch-alias": {
  4275. "dev-master": "3.0-dev"
  4276. }
  4277. },
  4278. "autoload": {
  4279. "files": [
  4280. "bootstrap.php"
  4281. ],
  4282. "psr-4": {
  4283. "Symfony\\Bridge\\PhpUnit\\": ""
  4284. },
  4285. "exclude-from-classmap": [
  4286. "/Tests/"
  4287. ]
  4288. },
  4289. "notification-url": "https://packagist.org/downloads/",
  4290. "license": [
  4291. "MIT"
  4292. ],
  4293. "authors": [
  4294. {
  4295. "name": "Nicolas Grekas",
  4296. "email": "p@tchwork.com"
  4297. },
  4298. {
  4299. "name": "Symfony Community",
  4300. "homepage": "https://symfony.com/contributors"
  4301. }
  4302. ],
  4303. "description": "Symfony PHPUnit Bridge",
  4304. "homepage": "https://symfony.com",
  4305. "time": "2016-01-21 09:38:31"
  4306. }
  4307. ],
  4308. "aliases": [],
  4309. "minimum-stability": "stable",
  4310. "stability-flags": {
  4311. "composer/composer": 20,
  4312. "friendsofsymfony/user-bundle": 20
  4313. },
  4314. "prefer-stable": false,
  4315. "prefer-lowest": false,
  4316. "platform": {
  4317. "php": ">=5.6"
  4318. },
  4319. "platform-dev": []
  4320. }