composer.lock 190 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424
  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": "754c9f8d1daa9e19b39e07018e464aef",
  8. "content-hash": "23cf95e5c2c0bc833dded981471a86a1",
  9. "packages": [
  10. {
  11. "name": "composer/ca-bundle",
  12. "version": "1.0.2",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/composer/ca-bundle.git",
  16. "reference": "a2995e5fe351055f2c7630166af12ce8fd03edfc"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/a2995e5fe351055f2c7630166af12ce8fd03edfc",
  21. "reference": "a2995e5fe351055f2c7630166af12ce8fd03edfc",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": "^5.3.2 || ^7.0"
  26. },
  27. "require-dev": {
  28. "symfony/process": "^2.5 || ^3.0"
  29. },
  30. "suggest": {
  31. "symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+"
  32. },
  33. "type": "library",
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.x-dev"
  37. }
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Composer\\CaBundle\\": "src"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Jordi Boggiano",
  51. "email": "j.boggiano@seld.be",
  52. "homepage": "http://seld.be"
  53. }
  54. ],
  55. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  56. "keywords": [
  57. "cabundle",
  58. "cacert",
  59. "certificate",
  60. "ssl",
  61. "tls"
  62. ],
  63. "time": "2016-04-13 10:13:24"
  64. },
  65. {
  66. "name": "composer/composer",
  67. "version": "dev-master",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/composer/composer.git",
  71. "reference": "43f9d6389d1ecb326d39376a0e8cdcf5a896cfc6"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/composer/composer/zipball/43f9d6389d1ecb326d39376a0e8cdcf5a896cfc6",
  76. "reference": "43f9d6389d1ecb326d39376a0e8cdcf5a896cfc6",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "composer/ca-bundle": "^1.0",
  81. "composer/semver": "^1.0",
  82. "composer/spdx-licenses": "^1.0",
  83. "justinrainbow/json-schema": "^1.6",
  84. "php": "^5.3.2 || ^7.0",
  85. "psr/log": "^1.0",
  86. "seld/cli-prompt": "^1.0",
  87. "seld/jsonlint": "^1.4",
  88. "seld/phar-utils": "^1.0",
  89. "symfony/console": "^2.5 || ^3.0",
  90. "symfony/filesystem": "^2.5 || ^3.0",
  91. "symfony/finder": "^2.2 || ^3.0",
  92. "symfony/process": "^2.1 || ^3.0"
  93. },
  94. "require-dev": {
  95. "phpunit/phpunit": "^4.5 || ^5.0.5",
  96. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  97. },
  98. "suggest": {
  99. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  100. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  101. "ext-zlib": "Allow gzip compression of HTTP requests"
  102. },
  103. "bin": [
  104. "bin/composer"
  105. ],
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-master": "1.2-dev"
  110. }
  111. },
  112. "autoload": {
  113. "psr-4": {
  114. "Composer\\": "src/Composer"
  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. "description": "Composer helps you declare, manage and install dependencies of PHP projects, ensuring you have the right stack everywhere.",
  134. "homepage": "https://getcomposer.org/",
  135. "keywords": [
  136. "autoload",
  137. "dependency",
  138. "package"
  139. ],
  140. "time": "2016-05-10 14:22:15"
  141. },
  142. {
  143. "name": "composer/semver",
  144. "version": "1.4.0",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/composer/semver.git",
  148. "reference": "84c47f3d8901440403217afc120683c7385aecb8"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/composer/semver/zipball/84c47f3d8901440403217afc120683c7385aecb8",
  153. "reference": "84c47f3d8901440403217afc120683c7385aecb8",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "php": "^5.3.2 || ^7.0"
  158. },
  159. "require-dev": {
  160. "phpunit/phpunit": "^4.5 || ^5.0.5",
  161. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  162. },
  163. "type": "library",
  164. "extra": {
  165. "branch-alias": {
  166. "dev-master": "1.x-dev"
  167. }
  168. },
  169. "autoload": {
  170. "psr-4": {
  171. "Composer\\Semver\\": "src"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Nils Adermann",
  181. "email": "naderman@naderman.de",
  182. "homepage": "http://www.naderman.de"
  183. },
  184. {
  185. "name": "Jordi Boggiano",
  186. "email": "j.boggiano@seld.be",
  187. "homepage": "http://seld.be"
  188. },
  189. {
  190. "name": "Rob Bast",
  191. "email": "rob.bast@gmail.com",
  192. "homepage": "http://robbast.nl"
  193. }
  194. ],
  195. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  196. "keywords": [
  197. "semantic",
  198. "semver",
  199. "validation",
  200. "versioning"
  201. ],
  202. "time": "2016-03-30 13:16:03"
  203. },
  204. {
  205. "name": "composer/spdx-licenses",
  206. "version": "1.1.4",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/composer/spdx-licenses.git",
  210. "reference": "88c26372b1afac36d8db601cdf04ad8716f53d88"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/88c26372b1afac36d8db601cdf04ad8716f53d88",
  215. "reference": "88c26372b1afac36d8db601cdf04ad8716f53d88",
  216. "shasum": ""
  217. },
  218. "require": {
  219. "php": "^5.3.2 || ^7.0"
  220. },
  221. "require-dev": {
  222. "phpunit/phpunit": "^4.5 || ^5.0.5",
  223. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  224. },
  225. "type": "library",
  226. "extra": {
  227. "branch-alias": {
  228. "dev-master": "1.x-dev"
  229. }
  230. },
  231. "autoload": {
  232. "psr-4": {
  233. "Composer\\Spdx\\": "src"
  234. }
  235. },
  236. "notification-url": "https://packagist.org/downloads/",
  237. "license": [
  238. "MIT"
  239. ],
  240. "authors": [
  241. {
  242. "name": "Nils Adermann",
  243. "email": "naderman@naderman.de",
  244. "homepage": "http://www.naderman.de"
  245. },
  246. {
  247. "name": "Jordi Boggiano",
  248. "email": "j.boggiano@seld.be",
  249. "homepage": "http://seld.be"
  250. },
  251. {
  252. "name": "Rob Bast",
  253. "email": "rob.bast@gmail.com",
  254. "homepage": "http://robbast.nl"
  255. }
  256. ],
  257. "description": "SPDX licenses list and validation library.",
  258. "keywords": [
  259. "license",
  260. "spdx",
  261. "validator"
  262. ],
  263. "time": "2016-05-04 12:27:30"
  264. },
  265. {
  266. "name": "container-interop/container-interop",
  267. "version": "1.1.0",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/container-interop/container-interop.git",
  271. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/fc08354828f8fd3245f77a66b9e23a6bca48297e",
  276. "reference": "fc08354828f8fd3245f77a66b9e23a6bca48297e",
  277. "shasum": ""
  278. },
  279. "type": "library",
  280. "autoload": {
  281. "psr-4": {
  282. "Interop\\Container\\": "src/Interop/Container/"
  283. }
  284. },
  285. "notification-url": "https://packagist.org/downloads/",
  286. "license": [
  287. "MIT"
  288. ],
  289. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  290. "time": "2014-12-30 15:22:37"
  291. },
  292. {
  293. "name": "doctrine/annotations",
  294. "version": "v1.2.7",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/doctrine/annotations.git",
  298. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  303. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  304. "shasum": ""
  305. },
  306. "require": {
  307. "doctrine/lexer": "1.*",
  308. "php": ">=5.3.2"
  309. },
  310. "require-dev": {
  311. "doctrine/cache": "1.*",
  312. "phpunit/phpunit": "4.*"
  313. },
  314. "type": "library",
  315. "extra": {
  316. "branch-alias": {
  317. "dev-master": "1.3.x-dev"
  318. }
  319. },
  320. "autoload": {
  321. "psr-0": {
  322. "Doctrine\\Common\\Annotations\\": "lib/"
  323. }
  324. },
  325. "notification-url": "https://packagist.org/downloads/",
  326. "license": [
  327. "MIT"
  328. ],
  329. "authors": [
  330. {
  331. "name": "Roman Borschel",
  332. "email": "roman@code-factory.org"
  333. },
  334. {
  335. "name": "Benjamin Eberlei",
  336. "email": "kontakt@beberlei.de"
  337. },
  338. {
  339. "name": "Guilherme Blanco",
  340. "email": "guilhermeblanco@gmail.com"
  341. },
  342. {
  343. "name": "Jonathan Wage",
  344. "email": "jonwage@gmail.com"
  345. },
  346. {
  347. "name": "Johannes Schmitt",
  348. "email": "schmittjoh@gmail.com"
  349. }
  350. ],
  351. "description": "Docblock Annotations Parser",
  352. "homepage": "http://www.doctrine-project.org",
  353. "keywords": [
  354. "annotations",
  355. "docblock",
  356. "parser"
  357. ],
  358. "time": "2015-08-31 12:32:49"
  359. },
  360. {
  361. "name": "doctrine/cache",
  362. "version": "v1.6.0",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/doctrine/cache.git",
  366. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/doctrine/cache/zipball/f8af318d14bdb0eff0336795b428b547bd39ccb6",
  371. "reference": "f8af318d14bdb0eff0336795b428b547bd39ccb6",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "~5.5|~7.0"
  376. },
  377. "conflict": {
  378. "doctrine/common": ">2.2,<2.4"
  379. },
  380. "require-dev": {
  381. "phpunit/phpunit": "~4.8|~5.0",
  382. "predis/predis": "~1.0",
  383. "satooshi/php-coveralls": "~0.6"
  384. },
  385. "type": "library",
  386. "extra": {
  387. "branch-alias": {
  388. "dev-master": "1.6.x-dev"
  389. }
  390. },
  391. "autoload": {
  392. "psr-4": {
  393. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  394. }
  395. },
  396. "notification-url": "https://packagist.org/downloads/",
  397. "license": [
  398. "MIT"
  399. ],
  400. "authors": [
  401. {
  402. "name": "Roman Borschel",
  403. "email": "roman@code-factory.org"
  404. },
  405. {
  406. "name": "Benjamin Eberlei",
  407. "email": "kontakt@beberlei.de"
  408. },
  409. {
  410. "name": "Guilherme Blanco",
  411. "email": "guilhermeblanco@gmail.com"
  412. },
  413. {
  414. "name": "Jonathan Wage",
  415. "email": "jonwage@gmail.com"
  416. },
  417. {
  418. "name": "Johannes Schmitt",
  419. "email": "schmittjoh@gmail.com"
  420. }
  421. ],
  422. "description": "Caching library offering an object-oriented API for many cache backends",
  423. "homepage": "http://www.doctrine-project.org",
  424. "keywords": [
  425. "cache",
  426. "caching"
  427. ],
  428. "time": "2015-12-31 16:37:02"
  429. },
  430. {
  431. "name": "doctrine/collections",
  432. "version": "v1.3.0",
  433. "source": {
  434. "type": "git",
  435. "url": "https://github.com/doctrine/collections.git",
  436. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
  437. },
  438. "dist": {
  439. "type": "zip",
  440. "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  441. "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
  442. "shasum": ""
  443. },
  444. "require": {
  445. "php": ">=5.3.2"
  446. },
  447. "require-dev": {
  448. "phpunit/phpunit": "~4.0"
  449. },
  450. "type": "library",
  451. "extra": {
  452. "branch-alias": {
  453. "dev-master": "1.2.x-dev"
  454. }
  455. },
  456. "autoload": {
  457. "psr-0": {
  458. "Doctrine\\Common\\Collections\\": "lib/"
  459. }
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "MIT"
  464. ],
  465. "authors": [
  466. {
  467. "name": "Roman Borschel",
  468. "email": "roman@code-factory.org"
  469. },
  470. {
  471. "name": "Benjamin Eberlei",
  472. "email": "kontakt@beberlei.de"
  473. },
  474. {
  475. "name": "Guilherme Blanco",
  476. "email": "guilhermeblanco@gmail.com"
  477. },
  478. {
  479. "name": "Jonathan Wage",
  480. "email": "jonwage@gmail.com"
  481. },
  482. {
  483. "name": "Johannes Schmitt",
  484. "email": "schmittjoh@gmail.com"
  485. }
  486. ],
  487. "description": "Collections Abstraction library",
  488. "homepage": "http://www.doctrine-project.org",
  489. "keywords": [
  490. "array",
  491. "collections",
  492. "iterator"
  493. ],
  494. "time": "2015-04-14 22:21:58"
  495. },
  496. {
  497. "name": "doctrine/common",
  498. "version": "v2.6.1",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/doctrine/common.git",
  502. "reference": "a579557bc689580c19fee4e27487a67fe60defc0"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/doctrine/common/zipball/a579557bc689580c19fee4e27487a67fe60defc0",
  507. "reference": "a579557bc689580c19fee4e27487a67fe60defc0",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "doctrine/annotations": "1.*",
  512. "doctrine/cache": "1.*",
  513. "doctrine/collections": "1.*",
  514. "doctrine/inflector": "1.*",
  515. "doctrine/lexer": "1.*",
  516. "php": "~5.5|~7.0"
  517. },
  518. "require-dev": {
  519. "phpunit/phpunit": "~4.8|~5.0"
  520. },
  521. "type": "library",
  522. "extra": {
  523. "branch-alias": {
  524. "dev-master": "2.7.x-dev"
  525. }
  526. },
  527. "autoload": {
  528. "psr-4": {
  529. "Doctrine\\Common\\": "lib/Doctrine/Common"
  530. }
  531. },
  532. "notification-url": "https://packagist.org/downloads/",
  533. "license": [
  534. "MIT"
  535. ],
  536. "authors": [
  537. {
  538. "name": "Roman Borschel",
  539. "email": "roman@code-factory.org"
  540. },
  541. {
  542. "name": "Benjamin Eberlei",
  543. "email": "kontakt@beberlei.de"
  544. },
  545. {
  546. "name": "Guilherme Blanco",
  547. "email": "guilhermeblanco@gmail.com"
  548. },
  549. {
  550. "name": "Jonathan Wage",
  551. "email": "jonwage@gmail.com"
  552. },
  553. {
  554. "name": "Johannes Schmitt",
  555. "email": "schmittjoh@gmail.com"
  556. }
  557. ],
  558. "description": "Common Library for Doctrine projects",
  559. "homepage": "http://www.doctrine-project.org",
  560. "keywords": [
  561. "annotations",
  562. "collections",
  563. "eventmanager",
  564. "persistence",
  565. "spl"
  566. ],
  567. "time": "2015-12-25 13:18:31"
  568. },
  569. {
  570. "name": "doctrine/dbal",
  571. "version": "v2.5.4",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/doctrine/dbal.git",
  575. "reference": "abbdfd1cff43a7b99d027af3be709bc8fc7d4769"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/doctrine/dbal/zipball/abbdfd1cff43a7b99d027af3be709bc8fc7d4769",
  580. "reference": "abbdfd1cff43a7b99d027af3be709bc8fc7d4769",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "doctrine/common": ">=2.4,<2.7-dev",
  585. "php": ">=5.3.2"
  586. },
  587. "require-dev": {
  588. "phpunit/phpunit": "4.*",
  589. "symfony/console": "2.*"
  590. },
  591. "suggest": {
  592. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  593. },
  594. "bin": [
  595. "bin/doctrine-dbal"
  596. ],
  597. "type": "library",
  598. "extra": {
  599. "branch-alias": {
  600. "dev-master": "2.5.x-dev"
  601. }
  602. },
  603. "autoload": {
  604. "psr-0": {
  605. "Doctrine\\DBAL\\": "lib/"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Roman Borschel",
  615. "email": "roman@code-factory.org"
  616. },
  617. {
  618. "name": "Benjamin Eberlei",
  619. "email": "kontakt@beberlei.de"
  620. },
  621. {
  622. "name": "Guilherme Blanco",
  623. "email": "guilhermeblanco@gmail.com"
  624. },
  625. {
  626. "name": "Jonathan Wage",
  627. "email": "jonwage@gmail.com"
  628. }
  629. ],
  630. "description": "Database Abstraction Layer",
  631. "homepage": "http://www.doctrine-project.org",
  632. "keywords": [
  633. "database",
  634. "dbal",
  635. "persistence",
  636. "queryobject"
  637. ],
  638. "time": "2016-01-05 22:11:12"
  639. },
  640. {
  641. "name": "doctrine/doctrine-bundle",
  642. "version": "1.6.2",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/doctrine/DoctrineBundle.git",
  646. "reference": "e9c2ccf573b59b7cea566390f34254fed3c20ed9"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/e9c2ccf573b59b7cea566390f34254fed3c20ed9",
  651. "reference": "e9c2ccf573b59b7cea566390f34254fed3c20ed9",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "doctrine/dbal": "~2.3",
  656. "doctrine/doctrine-cache-bundle": "~1.0",
  657. "jdorn/sql-formatter": "~1.1",
  658. "php": ">=5.3.2",
  659. "symfony/console": "~2.3|~3.0",
  660. "symfony/doctrine-bridge": "~2.2|~3.0",
  661. "symfony/framework-bundle": "~2.3|~3.0"
  662. },
  663. "require-dev": {
  664. "doctrine/orm": "~2.3",
  665. "phpunit/phpunit": "~4",
  666. "satooshi/php-coveralls": "~0.6.1",
  667. "symfony/phpunit-bridge": "~2.7|~3.0",
  668. "symfony/validator": "~2.2|~3.0",
  669. "symfony/yaml": "~2.2|~3.0",
  670. "twig/twig": "~1.10"
  671. },
  672. "suggest": {
  673. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  674. "symfony/web-profiler-bundle": "to use the data collector"
  675. },
  676. "type": "symfony-bundle",
  677. "extra": {
  678. "branch-alias": {
  679. "dev-master": "1.6.x-dev"
  680. }
  681. },
  682. "autoload": {
  683. "psr-4": {
  684. "Doctrine\\Bundle\\DoctrineBundle\\": ""
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Symfony Community",
  694. "homepage": "http://symfony.com/contributors"
  695. },
  696. {
  697. "name": "Benjamin Eberlei",
  698. "email": "kontakt@beberlei.de"
  699. },
  700. {
  701. "name": "Doctrine Project",
  702. "homepage": "http://www.doctrine-project.org/"
  703. },
  704. {
  705. "name": "Fabien Potencier",
  706. "email": "fabien@symfony.com"
  707. }
  708. ],
  709. "description": "Symfony DoctrineBundle",
  710. "homepage": "http://www.doctrine-project.org",
  711. "keywords": [
  712. "database",
  713. "dbal",
  714. "orm",
  715. "persistence"
  716. ],
  717. "time": "2016-01-10 17:21:44"
  718. },
  719. {
  720. "name": "doctrine/doctrine-cache-bundle",
  721. "version": "1.3.0",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/doctrine/DoctrineCacheBundle.git",
  725. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  730. "reference": "18c600a9b82f6454d2e81ca4957cdd56a1cf3504",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "doctrine/cache": "^1.4.2",
  735. "doctrine/inflector": "~1.0",
  736. "php": ">=5.3.2",
  737. "symfony/doctrine-bridge": "~2.2|~3.0"
  738. },
  739. "require-dev": {
  740. "instaclick/coding-standard": "~1.1",
  741. "instaclick/object-calisthenics-sniffs": "dev-master",
  742. "instaclick/symfony2-coding-standard": "dev-remaster",
  743. "phpunit/phpunit": "~4",
  744. "predis/predis": "~0.8",
  745. "satooshi/php-coveralls": "~0.6.1",
  746. "squizlabs/php_codesniffer": "~1.5",
  747. "symfony/console": "~2.2|~3.0",
  748. "symfony/finder": "~2.2|~3.0",
  749. "symfony/framework-bundle": "~2.2|~3.0",
  750. "symfony/phpunit-bridge": "~2.7|~3.0",
  751. "symfony/security-acl": "~2.3|~3.0",
  752. "symfony/validator": "~2.2|~3.0",
  753. "symfony/yaml": "~2.2|~3.0"
  754. },
  755. "suggest": {
  756. "symfony/security-acl": "For using this bundle to cache ACLs"
  757. },
  758. "type": "symfony-bundle",
  759. "extra": {
  760. "branch-alias": {
  761. "dev-master": "1.2.x-dev"
  762. }
  763. },
  764. "autoload": {
  765. "psr-4": {
  766. "Doctrine\\Bundle\\DoctrineCacheBundle\\": ""
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Symfony Community",
  776. "homepage": "http://symfony.com/contributors"
  777. },
  778. {
  779. "name": "Benjamin Eberlei",
  780. "email": "kontakt@beberlei.de"
  781. },
  782. {
  783. "name": "Fabio B. Silva",
  784. "email": "fabio.bat.silva@gmail.com"
  785. },
  786. {
  787. "name": "Guilherme Blanco",
  788. "email": "guilhermeblanco@hotmail.com"
  789. },
  790. {
  791. "name": "Doctrine Project",
  792. "homepage": "http://www.doctrine-project.org/"
  793. },
  794. {
  795. "name": "Fabien Potencier",
  796. "email": "fabien@symfony.com"
  797. }
  798. ],
  799. "description": "Symfony Bundle for Doctrine Cache",
  800. "homepage": "http://www.doctrine-project.org",
  801. "keywords": [
  802. "cache",
  803. "caching"
  804. ],
  805. "time": "2016-01-26 17:28:51"
  806. },
  807. {
  808. "name": "doctrine/inflector",
  809. "version": "v1.1.0",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/doctrine/inflector.git",
  813. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
  818. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "php": ">=5.3.2"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "4.*"
  826. },
  827. "type": "library",
  828. "extra": {
  829. "branch-alias": {
  830. "dev-master": "1.1.x-dev"
  831. }
  832. },
  833. "autoload": {
  834. "psr-0": {
  835. "Doctrine\\Common\\Inflector\\": "lib/"
  836. }
  837. },
  838. "notification-url": "https://packagist.org/downloads/",
  839. "license": [
  840. "MIT"
  841. ],
  842. "authors": [
  843. {
  844. "name": "Roman Borschel",
  845. "email": "roman@code-factory.org"
  846. },
  847. {
  848. "name": "Benjamin Eberlei",
  849. "email": "kontakt@beberlei.de"
  850. },
  851. {
  852. "name": "Guilherme Blanco",
  853. "email": "guilhermeblanco@gmail.com"
  854. },
  855. {
  856. "name": "Jonathan Wage",
  857. "email": "jonwage@gmail.com"
  858. },
  859. {
  860. "name": "Johannes Schmitt",
  861. "email": "schmittjoh@gmail.com"
  862. }
  863. ],
  864. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  865. "homepage": "http://www.doctrine-project.org",
  866. "keywords": [
  867. "inflection",
  868. "pluralize",
  869. "singularize",
  870. "string"
  871. ],
  872. "time": "2015-11-06 14:35:42"
  873. },
  874. {
  875. "name": "doctrine/instantiator",
  876. "version": "1.0.5",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/doctrine/instantiator.git",
  880. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  885. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  886. "shasum": ""
  887. },
  888. "require": {
  889. "php": ">=5.3,<8.0-DEV"
  890. },
  891. "require-dev": {
  892. "athletic/athletic": "~0.1.8",
  893. "ext-pdo": "*",
  894. "ext-phar": "*",
  895. "phpunit/phpunit": "~4.0",
  896. "squizlabs/php_codesniffer": "~2.0"
  897. },
  898. "type": "library",
  899. "extra": {
  900. "branch-alias": {
  901. "dev-master": "1.0.x-dev"
  902. }
  903. },
  904. "autoload": {
  905. "psr-4": {
  906. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  907. }
  908. },
  909. "notification-url": "https://packagist.org/downloads/",
  910. "license": [
  911. "MIT"
  912. ],
  913. "authors": [
  914. {
  915. "name": "Marco Pivetta",
  916. "email": "ocramius@gmail.com",
  917. "homepage": "http://ocramius.github.com/"
  918. }
  919. ],
  920. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  921. "homepage": "https://github.com/doctrine/instantiator",
  922. "keywords": [
  923. "constructor",
  924. "instantiate"
  925. ],
  926. "time": "2015-06-14 21:17:01"
  927. },
  928. {
  929. "name": "doctrine/lexer",
  930. "version": "v1.0.1",
  931. "source": {
  932. "type": "git",
  933. "url": "https://github.com/doctrine/lexer.git",
  934. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  935. },
  936. "dist": {
  937. "type": "zip",
  938. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  939. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  940. "shasum": ""
  941. },
  942. "require": {
  943. "php": ">=5.3.2"
  944. },
  945. "type": "library",
  946. "extra": {
  947. "branch-alias": {
  948. "dev-master": "1.0.x-dev"
  949. }
  950. },
  951. "autoload": {
  952. "psr-0": {
  953. "Doctrine\\Common\\Lexer\\": "lib/"
  954. }
  955. },
  956. "notification-url": "https://packagist.org/downloads/",
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Roman Borschel",
  963. "email": "roman@code-factory.org"
  964. },
  965. {
  966. "name": "Guilherme Blanco",
  967. "email": "guilhermeblanco@gmail.com"
  968. },
  969. {
  970. "name": "Johannes Schmitt",
  971. "email": "schmittjoh@gmail.com"
  972. }
  973. ],
  974. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  975. "homepage": "http://www.doctrine-project.org",
  976. "keywords": [
  977. "lexer",
  978. "parser"
  979. ],
  980. "time": "2014-09-09 13:34:57"
  981. },
  982. {
  983. "name": "doctrine/orm",
  984. "version": "v2.5.4",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/doctrine/doctrine2.git",
  988. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  993. "reference": "bc4ddbfb0114cb33438cc811c9a740d8aa304aab",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "doctrine/cache": "~1.4",
  998. "doctrine/collections": "~1.2",
  999. "doctrine/common": ">=2.5-dev,<2.7-dev",
  1000. "doctrine/dbal": ">=2.5-dev,<2.6-dev",
  1001. "doctrine/instantiator": "~1.0.1",
  1002. "ext-pdo": "*",
  1003. "php": ">=5.4",
  1004. "symfony/console": "~2.5|~3.0"
  1005. },
  1006. "require-dev": {
  1007. "phpunit/phpunit": "~4.0",
  1008. "symfony/yaml": "~2.3|~3.0"
  1009. },
  1010. "suggest": {
  1011. "symfony/yaml": "If you want to use YAML Metadata Mapping Driver"
  1012. },
  1013. "bin": [
  1014. "bin/doctrine",
  1015. "bin/doctrine.php"
  1016. ],
  1017. "type": "library",
  1018. "extra": {
  1019. "branch-alias": {
  1020. "dev-master": "2.6.x-dev"
  1021. }
  1022. },
  1023. "autoload": {
  1024. "psr-0": {
  1025. "Doctrine\\ORM\\": "lib/"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "authors": [
  1033. {
  1034. "name": "Roman Borschel",
  1035. "email": "roman@code-factory.org"
  1036. },
  1037. {
  1038. "name": "Benjamin Eberlei",
  1039. "email": "kontakt@beberlei.de"
  1040. },
  1041. {
  1042. "name": "Guilherme Blanco",
  1043. "email": "guilhermeblanco@gmail.com"
  1044. },
  1045. {
  1046. "name": "Jonathan Wage",
  1047. "email": "jonwage@gmail.com"
  1048. }
  1049. ],
  1050. "description": "Object-Relational-Mapper for PHP",
  1051. "homepage": "http://www.doctrine-project.org",
  1052. "keywords": [
  1053. "database",
  1054. "orm"
  1055. ],
  1056. "time": "2016-01-05 21:34:58"
  1057. },
  1058. {
  1059. "name": "ezyang/htmlpurifier",
  1060. "version": "v4.7.0",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/ezyang/htmlpurifier.git",
  1064. "reference": "ae1828d955112356f7677c465f94f7deb7d27a40"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/ae1828d955112356f7677c465f94f7deb7d27a40",
  1069. "reference": "ae1828d955112356f7677c465f94f7deb7d27a40",
  1070. "shasum": ""
  1071. },
  1072. "require": {
  1073. "php": ">=5.2"
  1074. },
  1075. "type": "library",
  1076. "autoload": {
  1077. "psr-0": {
  1078. "HTMLPurifier": "library/"
  1079. },
  1080. "files": [
  1081. "library/HTMLPurifier.composer.php"
  1082. ]
  1083. },
  1084. "notification-url": "https://packagist.org/downloads/",
  1085. "license": [
  1086. "LGPL"
  1087. ],
  1088. "authors": [
  1089. {
  1090. "name": "Edward Z. Yang",
  1091. "email": "admin@htmlpurifier.org",
  1092. "homepage": "http://ezyang.com"
  1093. }
  1094. ],
  1095. "description": "Standards compliant HTML filter written in PHP",
  1096. "homepage": "http://htmlpurifier.org/",
  1097. "keywords": [
  1098. "html"
  1099. ],
  1100. "time": "2015-08-05 01:03:42"
  1101. },
  1102. {
  1103. "name": "friendsofsymfony/user-bundle",
  1104. "version": "dev-master",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/FriendsOfSymfony/FOSUserBundle.git",
  1108. "reference": "c85b5d9e48c0f2918ac6161e268d6f981a24c875"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/c85b5d9e48c0f2918ac6161e268d6f981a24c875",
  1113. "reference": "c85b5d9e48c0f2918ac6161e268d6f981a24c875",
  1114. "shasum": ""
  1115. },
  1116. "require": {
  1117. "php": ">=5.3.9",
  1118. "symfony/form": "~2.3|~3.0",
  1119. "symfony/framework-bundle": "~2.3|~3.0",
  1120. "symfony/security-bundle": "~2.3|~3.0",
  1121. "symfony/twig-bundle": "~2.3|~3.0"
  1122. },
  1123. "require-dev": {
  1124. "doctrine/doctrine-bundle": "~1.3",
  1125. "swiftmailer/swiftmailer": "~4.3|~5",
  1126. "symfony/console": "~2.3|~3.0",
  1127. "symfony/phpunit-bridge": "~2.7|~3.0",
  1128. "symfony/validator": "~2.3|~3.0",
  1129. "symfony/yaml": "~2.3|~3.0",
  1130. "willdurand/propel-typehintable-behavior": "~1.0"
  1131. },
  1132. "suggest": {
  1133. "willdurand/propel-typehintable-behavior": "Needed when using the propel implementation"
  1134. },
  1135. "type": "symfony-bundle",
  1136. "extra": {
  1137. "branch-alias": {
  1138. "dev-master": "2.0.x-dev"
  1139. }
  1140. },
  1141. "autoload": {
  1142. "psr-4": {
  1143. "FOS\\UserBundle\\": ""
  1144. }
  1145. },
  1146. "notification-url": "https://packagist.org/downloads/",
  1147. "license": [
  1148. "MIT"
  1149. ],
  1150. "authors": [
  1151. {
  1152. "name": "Christophe Coevoet",
  1153. "email": "stof@notk.org"
  1154. },
  1155. {
  1156. "name": "FriendsOfSymfony Community",
  1157. "homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
  1158. },
  1159. {
  1160. "name": "Thibault Duplessis",
  1161. "email": "thibault.duplessis@gmail.com"
  1162. }
  1163. ],
  1164. "description": "Symfony FOSUserBundle",
  1165. "homepage": "http://friendsofsymfony.github.com",
  1166. "keywords": [
  1167. "User management"
  1168. ],
  1169. "time": "2016-05-10 08:29:38"
  1170. },
  1171. {
  1172. "name": "hwi/oauth-bundle",
  1173. "version": "0.4.1",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hwi/HWIOAuthBundle.git",
  1177. "reference": "ae741802c8e99d8fa52de927fd483d0299911293"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hwi/HWIOAuthBundle/zipball/ae741802c8e99d8fa52de927fd483d0299911293",
  1182. "reference": "ae741802c8e99d8fa52de927fd483d0299911293",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "kriswallsmith/buzz": "~0.13",
  1187. "php": ">=5.3.3",
  1188. "symfony/form": "~2.3",
  1189. "symfony/framework-bundle": "~2.3",
  1190. "symfony/options-resolver": "~2.3",
  1191. "symfony/security-bundle": "~2.3",
  1192. "symfony/yaml": "~2.3"
  1193. },
  1194. "conflict": {
  1195. "twig/twig": "<1.12"
  1196. },
  1197. "require-dev": {
  1198. "doctrine/orm": "~2.3",
  1199. "friendsofsymfony/user-bundle": "~1.3|~2.0",
  1200. "phpunit/phpunit": "~4.8|~5.0",
  1201. "symfony/phpunit-bridge": "~2.7",
  1202. "symfony/property-access": "~2.3",
  1203. "symfony/twig-bundle": "~2.3",
  1204. "symfony/validator": "~2.3"
  1205. },
  1206. "suggest": {
  1207. "doctrine/doctrine-bundle": "to use Doctrine user provider",
  1208. "friendsofsymfony/user-bundle": "to connect FOSUB with this bundle",
  1209. "symfony/property-access": "to use FOSUB integration with this bundle",
  1210. "symfony/twig-bundle": "to use the Twig hwi_oauth_* functions"
  1211. },
  1212. "type": "symfony-bundle",
  1213. "extra": {
  1214. "branch-alias": {
  1215. "dev-master": "0.4-dev"
  1216. }
  1217. },
  1218. "autoload": {
  1219. "psr-4": {
  1220. "HWI\\Bundle\\OAuthBundle\\": ""
  1221. }
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "authors": [
  1228. {
  1229. "name": "Contributors",
  1230. "homepage": "https://github.com/hwi/HWIOAuthBundle/contributors"
  1231. },
  1232. {
  1233. "name": "Joseph Bielawski",
  1234. "email": "stloyd@gmail.com"
  1235. },
  1236. {
  1237. "name": "Alexander",
  1238. "email": "iam.asm89@gmail.com"
  1239. },
  1240. {
  1241. "name": "Geoffrey Bachelet",
  1242. "email": "geoffrey.bachelet@gmail.com"
  1243. }
  1244. ],
  1245. "description": "Support for authenticating users using both OAuth1.0a and OAuth2 in Symfony2.",
  1246. "homepage": "http://github.com/hwi/HWIOAuthBundle",
  1247. "keywords": [
  1248. "37signals",
  1249. "Authentication",
  1250. "Deezer",
  1251. "EVE Online",
  1252. "amazon",
  1253. "auth0",
  1254. "azure",
  1255. "bitbucket",
  1256. "bitly",
  1257. "box",
  1258. "bufferapp",
  1259. "dailymotion",
  1260. "deviantart",
  1261. "discogs",
  1262. "disqus",
  1263. "dropbox",
  1264. "eventbrite",
  1265. "facebook",
  1266. "firewall",
  1267. "fiware",
  1268. "flickr",
  1269. "foursquare",
  1270. "github",
  1271. "google",
  1272. "hubic",
  1273. "instagram",
  1274. "jira",
  1275. "linkedin",
  1276. "mail.ru",
  1277. "oauth",
  1278. "oauth1",
  1279. "oauth2",
  1280. "odnoklassniki",
  1281. "paypal",
  1282. "qq",
  1283. "reddit",
  1284. "runkeeper",
  1285. "salesforce",
  1286. "security",
  1287. "sensio connect",
  1288. "sina weibo",
  1289. "slack",
  1290. "sound cloud",
  1291. "spotify",
  1292. "stack exchange",
  1293. "stereomood",
  1294. "strava",
  1295. "toshl",
  1296. "trakt",
  1297. "trello",
  1298. "twitch",
  1299. "twitter",
  1300. "vkontakte",
  1301. "wechat",
  1302. "windows live",
  1303. "wordpress",
  1304. "xing",
  1305. "yahoo",
  1306. "yandex",
  1307. "youtube"
  1308. ],
  1309. "time": "2016-03-08 08:00:04"
  1310. },
  1311. {
  1312. "name": "ircmaxell/password-compat",
  1313. "version": "v1.0.4",
  1314. "source": {
  1315. "type": "git",
  1316. "url": "https://github.com/ircmaxell/password_compat.git",
  1317. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c"
  1318. },
  1319. "dist": {
  1320. "type": "zip",
  1321. "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1322. "reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c",
  1323. "shasum": ""
  1324. },
  1325. "require-dev": {
  1326. "phpunit/phpunit": "4.*"
  1327. },
  1328. "type": "library",
  1329. "autoload": {
  1330. "files": [
  1331. "lib/password.php"
  1332. ]
  1333. },
  1334. "notification-url": "https://packagist.org/downloads/",
  1335. "license": [
  1336. "MIT"
  1337. ],
  1338. "authors": [
  1339. {
  1340. "name": "Anthony Ferrara",
  1341. "email": "ircmaxell@php.net",
  1342. "homepage": "http://blog.ircmaxell.com"
  1343. }
  1344. ],
  1345. "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
  1346. "homepage": "https://github.com/ircmaxell/password_compat",
  1347. "keywords": [
  1348. "hashing",
  1349. "password"
  1350. ],
  1351. "time": "2014-11-20 16:49:30"
  1352. },
  1353. {
  1354. "name": "jdorn/sql-formatter",
  1355. "version": "v1.2.17",
  1356. "source": {
  1357. "type": "git",
  1358. "url": "https://github.com/jdorn/sql-formatter.git",
  1359. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc"
  1360. },
  1361. "dist": {
  1362. "type": "zip",
  1363. "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc",
  1364. "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc",
  1365. "shasum": ""
  1366. },
  1367. "require": {
  1368. "php": ">=5.2.4"
  1369. },
  1370. "require-dev": {
  1371. "phpunit/phpunit": "3.7.*"
  1372. },
  1373. "type": "library",
  1374. "extra": {
  1375. "branch-alias": {
  1376. "dev-master": "1.3.x-dev"
  1377. }
  1378. },
  1379. "autoload": {
  1380. "classmap": [
  1381. "lib"
  1382. ]
  1383. },
  1384. "notification-url": "https://packagist.org/downloads/",
  1385. "license": [
  1386. "MIT"
  1387. ],
  1388. "authors": [
  1389. {
  1390. "name": "Jeremy Dorn",
  1391. "email": "jeremy@jeremydorn.com",
  1392. "homepage": "http://jeremydorn.com/"
  1393. }
  1394. ],
  1395. "description": "a PHP SQL highlighting library",
  1396. "homepage": "https://github.com/jdorn/sql-formatter/",
  1397. "keywords": [
  1398. "highlight",
  1399. "sql"
  1400. ],
  1401. "time": "2014-01-12 16:20:24"
  1402. },
  1403. {
  1404. "name": "jms/aop-bundle",
  1405. "version": "1.2.0",
  1406. "source": {
  1407. "type": "git",
  1408. "url": "https://github.com/schmittjoh/JMSAopBundle.git",
  1409. "reference": "78000d007e74283cc564a58e184d7f62548ad394"
  1410. },
  1411. "dist": {
  1412. "type": "zip",
  1413. "url": "https://api.github.com/repos/schmittjoh/JMSAopBundle/zipball/78000d007e74283cc564a58e184d7f62548ad394",
  1414. "reference": "78000d007e74283cc564a58e184d7f62548ad394",
  1415. "shasum": ""
  1416. },
  1417. "require": {
  1418. "jms/cg": "^1.1",
  1419. "php": ">=5.3.9",
  1420. "symfony/framework-bundle": "^2.3|^3.0"
  1421. },
  1422. "require-dev": {
  1423. "symfony/phpunit-bridge": "^2.7"
  1424. },
  1425. "type": "symfony-bundle",
  1426. "extra": {
  1427. "branch-alias": {
  1428. "dev-master": "1.1.x-dev"
  1429. }
  1430. },
  1431. "autoload": {
  1432. "psr-4": {
  1433. "JMS\\AopBundle\\": ""
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "Apache-2.0"
  1439. ],
  1440. "authors": [
  1441. {
  1442. "name": "Johannes M. Schmitt",
  1443. "email": "schmittjoh@gmail.com"
  1444. }
  1445. ],
  1446. "description": "Adds AOP capabilities to Symfony2",
  1447. "keywords": [
  1448. "annotations",
  1449. "aop"
  1450. ],
  1451. "time": "2015-12-09 16:30:46"
  1452. },
  1453. {
  1454. "name": "jms/cg",
  1455. "version": "1.1.0",
  1456. "source": {
  1457. "type": "git",
  1458. "url": "https://github.com/schmittjoh/cg-library.git",
  1459. "reference": "0af1113c7409b8636c5244bbae10b2e0ff792e9c"
  1460. },
  1461. "dist": {
  1462. "type": "zip",
  1463. "url": "https://api.github.com/repos/schmittjoh/cg-library/zipball/0af1113c7409b8636c5244bbae10b2e0ff792e9c",
  1464. "reference": "0af1113c7409b8636c5244bbae10b2e0ff792e9c",
  1465. "shasum": ""
  1466. },
  1467. "require": {
  1468. "php": ">=5.3.0"
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "1.1-dev"
  1474. }
  1475. },
  1476. "autoload": {
  1477. "psr-0": {
  1478. "CG\\": "src/"
  1479. }
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "Apache2"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "Johannes M. Schmitt",
  1488. "email": "schmittjoh@gmail.com"
  1489. }
  1490. ],
  1491. "description": "Toolset for generating PHP code",
  1492. "keywords": [
  1493. "code generation"
  1494. ],
  1495. "time": "2015-09-13 08:54:43"
  1496. },
  1497. {
  1498. "name": "jms/di-extra-bundle",
  1499. "version": "1.7.1",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1503. "reference": "27c3fc7150550ccc0731290b2c1ceb57449f909d"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/27c3fc7150550ccc0731290b2c1ceb57449f909d",
  1508. "reference": "27c3fc7150550ccc0731290b2c1ceb57449f909d",
  1509. "shasum": ""
  1510. },
  1511. "require": {
  1512. "jms/aop-bundle": "~1.1",
  1513. "jms/metadata": "~1.0",
  1514. "php": "~5.3|~7.0",
  1515. "symfony/dependency-injection": "~2.3|~3.0",
  1516. "symfony/finder": "~2.3|~3.0",
  1517. "symfony/framework-bundle": "~2.3|~3.0",
  1518. "symfony/http-kernel": "^2.3.24|~3.0",
  1519. "symfony/process": "~2.3|~3.0",
  1520. "symfony/routing": "~2.3|~3.0"
  1521. },
  1522. "require-dev": {
  1523. "doctrine/doctrine-bundle": "~1.5",
  1524. "doctrine/orm": "~2.3",
  1525. "jms/security-extra-bundle": "~1.0",
  1526. "phpcollection/phpcollection": ">=0.2,<0.3-dev",
  1527. "sensio/framework-extra-bundle": "~2.0|~3.0",
  1528. "symfony/browser-kit": "~2.3|~3.0",
  1529. "symfony/class-loader": "~2.3|~3.0",
  1530. "symfony/form": "~2.3|~3.0",
  1531. "symfony/phpunit-bridge": "~2.7",
  1532. "symfony/security-bundle": "~2.3",
  1533. "symfony/twig-bundle": "~2.3|~3.0",
  1534. "symfony/validator": "~2.3|~3.0",
  1535. "symfony/yaml": "~2.3|~3.0"
  1536. },
  1537. "type": "symfony-bundle",
  1538. "extra": {
  1539. "branch-alias": {
  1540. "dev-master": "1.7-dev"
  1541. }
  1542. },
  1543. "autoload": {
  1544. "psr-4": {
  1545. "JMS\\DiExtraBundle\\": ""
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "Apache-2.0"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Johannes M. Schmitt",
  1555. "email": "schmittjoh@gmail.com"
  1556. }
  1557. ],
  1558. "description": "Allows to configure dependency injection using annotations",
  1559. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1560. "keywords": [
  1561. "annotations",
  1562. "dependency injection"
  1563. ],
  1564. "time": "2016-04-18 22:27:09"
  1565. },
  1566. {
  1567. "name": "jms/metadata",
  1568. "version": "1.5.1",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/schmittjoh/metadata.git",
  1572. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/22b72455559a25777cfd28c4ffda81ff7639f353",
  1577. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": ">=5.3.0"
  1582. },
  1583. "require-dev": {
  1584. "doctrine/cache": "~1.0"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "1.5.x-dev"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "psr-0": {
  1594. "Metadata\\": "src/"
  1595. }
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "Apache"
  1600. ],
  1601. "authors": [
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com",
  1605. "homepage": "https://github.com/schmittjoh",
  1606. "role": "Developer of wrapped JMSSerializerBundle"
  1607. }
  1608. ],
  1609. "description": "Class/method/property metadata management in PHP",
  1610. "keywords": [
  1611. "annotations",
  1612. "metadata",
  1613. "xml",
  1614. "yaml"
  1615. ],
  1616. "time": "2014-07-12 07:13:19"
  1617. },
  1618. {
  1619. "name": "jms/parser-lib",
  1620. "version": "1.0.0",
  1621. "source": {
  1622. "type": "git",
  1623. "url": "https://github.com/schmittjoh/parser-lib.git",
  1624. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1625. },
  1626. "dist": {
  1627. "type": "zip",
  1628. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1629. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1630. "shasum": ""
  1631. },
  1632. "require": {
  1633. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1634. },
  1635. "type": "library",
  1636. "extra": {
  1637. "branch-alias": {
  1638. "dev-master": "1.0-dev"
  1639. }
  1640. },
  1641. "autoload": {
  1642. "psr-0": {
  1643. "JMS\\": "src/"
  1644. }
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "Apache2"
  1649. ],
  1650. "description": "A library for easily creating recursive-descent parsers.",
  1651. "time": "2012-11-18 18:08:43"
  1652. },
  1653. {
  1654. "name": "jms/security-extra-bundle",
  1655. "version": "1.6.0",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1659. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1664. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "jms/aop-bundle": "~1.0",
  1669. "jms/di-extra-bundle": "~1.4",
  1670. "jms/metadata": "~1.0",
  1671. "jms/parser-lib": "~1.0",
  1672. "php": "~5.3|~7.0",
  1673. "symfony/dependency-injection": "~2.3|~3.0",
  1674. "symfony/framework-bundle": "~2.3|~3.0",
  1675. "symfony/routing": "~2.3|~3.0",
  1676. "symfony/security-acl": "~2.2|~3.0",
  1677. "symfony/security-bundle": "~2.3|~3.0"
  1678. },
  1679. "require-dev": {
  1680. "doctrine/common": "~2.3",
  1681. "doctrine/doctrine-bundle": "~1.0",
  1682. "doctrine/orm": "~2.3",
  1683. "sensio/framework-extra-bundle": "^2.2.1|~3.0",
  1684. "symfony/browser-kit": "~2.0|~3.0",
  1685. "symfony/class-loader": "~2.1|~3.0",
  1686. "symfony/css-selector": "^2.0.5|~3.0",
  1687. "symfony/finder": "^2.0.5|~3.0",
  1688. "symfony/form": "~2.2|~3.0",
  1689. "symfony/phpunit-bridge": "~2.7|~3.0",
  1690. "symfony/process": "^2.0.5|~3.0",
  1691. "symfony/twig-bridge": "^2.2.6|~3.0",
  1692. "symfony/twig-bundle": "~2.2|~3.0",
  1693. "symfony/validator": "~2.2|~3.0",
  1694. "symfony/yaml": "^2.2.11|~3.0",
  1695. "twig/twig": "^1.23.1"
  1696. },
  1697. "type": "symfony-bundle",
  1698. "extra": {
  1699. "branch-alias": {
  1700. "dev-master": "1.6-dev"
  1701. }
  1702. },
  1703. "autoload": {
  1704. "psr-4": {
  1705. "JMS\\SecurityExtraBundle\\": ""
  1706. }
  1707. },
  1708. "notification-url": "https://packagist.org/downloads/",
  1709. "license": [
  1710. "Apache2"
  1711. ],
  1712. "authors": [
  1713. {
  1714. "name": "Johannes M. Schmitt",
  1715. "email": "schmittjoh@gmail.com"
  1716. }
  1717. ],
  1718. "description": "Enhances the Symfony2 Security Component by adding several new features",
  1719. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1720. "keywords": [
  1721. "annotations",
  1722. "authorization",
  1723. "expression",
  1724. "secure",
  1725. "security"
  1726. ],
  1727. "time": "2016-02-03 15:29:16"
  1728. },
  1729. {
  1730. "name": "justinrainbow/json-schema",
  1731. "version": "1.6.1",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/justinrainbow/json-schema.git",
  1735. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/cc84765fb7317f6b07bd8ac78364747f95b86341",
  1740. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341",
  1741. "shasum": ""
  1742. },
  1743. "require": {
  1744. "php": ">=5.3.29"
  1745. },
  1746. "require-dev": {
  1747. "json-schema/json-schema-test-suite": "1.1.0",
  1748. "phpdocumentor/phpdocumentor": "~2",
  1749. "phpunit/phpunit": "~3.7"
  1750. },
  1751. "bin": [
  1752. "bin/validate-json"
  1753. ],
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "1.6.x-dev"
  1758. }
  1759. },
  1760. "autoload": {
  1761. "psr-4": {
  1762. "JsonSchema\\": "src/JsonSchema/"
  1763. }
  1764. },
  1765. "notification-url": "https://packagist.org/downloads/",
  1766. "license": [
  1767. "BSD-3-Clause"
  1768. ],
  1769. "authors": [
  1770. {
  1771. "name": "Bruno Prieto Reis",
  1772. "email": "bruno.p.reis@gmail.com"
  1773. },
  1774. {
  1775. "name": "Justin Rainbow",
  1776. "email": "justin.rainbow@gmail.com"
  1777. },
  1778. {
  1779. "name": "Igor Wiedler",
  1780. "email": "igor@wiedler.ch"
  1781. },
  1782. {
  1783. "name": "Robert Schönthal",
  1784. "email": "seroscho@googlemail.com"
  1785. }
  1786. ],
  1787. "description": "A library to validate a json schema.",
  1788. "homepage": "https://github.com/justinrainbow/json-schema",
  1789. "keywords": [
  1790. "json",
  1791. "schema"
  1792. ],
  1793. "time": "2016-01-25 15:43:01"
  1794. },
  1795. {
  1796. "name": "knplabs/knp-menu",
  1797. "version": "v2.1.1",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1801. "reference": "9917b999a3c3d3901386d60c4888b07679291031"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/9917b999a3c3d3901386d60c4888b07679291031",
  1806. "reference": "9917b999a3c3d3901386d60c4888b07679291031",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "php": ">=5.3.0"
  1811. },
  1812. "require-dev": {
  1813. "pimple/pimple": "~1.0",
  1814. "silex/silex": "~1.0",
  1815. "symfony/phpunit-bridge": "~2.7|~3.0",
  1816. "symfony/routing": "~2.3|~3.0",
  1817. "twig/twig": "~1.16|~2.0"
  1818. },
  1819. "suggest": {
  1820. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1821. "silex/silex": "for the integration with your silex application",
  1822. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1823. },
  1824. "type": "library",
  1825. "extra": {
  1826. "branch-alias": {
  1827. "dev-master": "2.1-dev"
  1828. }
  1829. },
  1830. "autoload": {
  1831. "psr-4": {
  1832. "Knp\\Menu\\": "src/Knp/Menu"
  1833. }
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT"
  1838. ],
  1839. "authors": [
  1840. {
  1841. "name": "Christophe Coevoet",
  1842. "email": "stof@notk.org"
  1843. },
  1844. {
  1845. "name": "KnpLabs",
  1846. "homepage": "http://knplabs.com"
  1847. },
  1848. {
  1849. "name": "Symfony Community",
  1850. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1851. }
  1852. ],
  1853. "description": "An object oriented menu library",
  1854. "homepage": "http://knplabs.com",
  1855. "keywords": [
  1856. "menu",
  1857. "tree"
  1858. ],
  1859. "time": "2016-01-08 15:42:54"
  1860. },
  1861. {
  1862. "name": "knplabs/knp-menu-bundle",
  1863. "version": "v2.1.1",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1867. "reference": "90aff8e39274d1225dfa3bb7b1dd4e47b7312dca"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/90aff8e39274d1225dfa3bb7b1dd4e47b7312dca",
  1872. "reference": "90aff8e39274d1225dfa3bb7b1dd4e47b7312dca",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "knplabs/knp-menu": "~2.1",
  1877. "symfony/framework-bundle": "~2.3|~3.0"
  1878. },
  1879. "require-dev": {
  1880. "symfony/expression-language": "~2.4|~3.0",
  1881. "symfony/phpunit-bridge": "~2.7|~3.0"
  1882. },
  1883. "type": "symfony-bundle",
  1884. "extra": {
  1885. "branch-alias": {
  1886. "dev-master": "2.1.x-dev"
  1887. }
  1888. },
  1889. "autoload": {
  1890. "psr-4": {
  1891. "Knp\\Bundle\\MenuBundle\\": ""
  1892. }
  1893. },
  1894. "notification-url": "https://packagist.org/downloads/",
  1895. "license": [
  1896. "MIT"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "Christophe Coevoet",
  1901. "email": "stof@notk.org"
  1902. },
  1903. {
  1904. "name": "Knplabs",
  1905. "homepage": "http://knplabs.com"
  1906. },
  1907. {
  1908. "name": "Symfony Community",
  1909. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1910. }
  1911. ],
  1912. "description": "This bundle provides an integration of the KnpMenu library",
  1913. "keywords": [
  1914. "menu"
  1915. ],
  1916. "time": "2015-12-15 12:06:23"
  1917. },
  1918. {
  1919. "name": "kriswallsmith/buzz",
  1920. "version": "v0.15",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/kriswallsmith/Buzz.git",
  1924. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
  1929. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "php": ">=5.3.0"
  1934. },
  1935. "require-dev": {
  1936. "phpunit/phpunit": "3.7.*"
  1937. },
  1938. "suggest": {
  1939. "ext-curl": "*"
  1940. },
  1941. "type": "library",
  1942. "autoload": {
  1943. "psr-0": {
  1944. "Buzz": "lib/"
  1945. }
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "MIT"
  1950. ],
  1951. "authors": [
  1952. {
  1953. "name": "Kris Wallsmith",
  1954. "email": "kris.wallsmith@gmail.com",
  1955. "homepage": "http://kriswallsmith.net/"
  1956. }
  1957. ],
  1958. "description": "Lightweight HTTP client",
  1959. "homepage": "https://github.com/kriswallsmith/Buzz",
  1960. "keywords": [
  1961. "curl",
  1962. "http client"
  1963. ],
  1964. "time": "2015-06-25 17:26:56"
  1965. },
  1966. {
  1967. "name": "monolog/monolog",
  1968. "version": "1.19.0",
  1969. "source": {
  1970. "type": "git",
  1971. "url": "https://github.com/Seldaek/monolog.git",
  1972. "reference": "5f56ed5212dc509c8dc8caeba2715732abb32dbf"
  1973. },
  1974. "dist": {
  1975. "type": "zip",
  1976. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5f56ed5212dc509c8dc8caeba2715732abb32dbf",
  1977. "reference": "5f56ed5212dc509c8dc8caeba2715732abb32dbf",
  1978. "shasum": ""
  1979. },
  1980. "require": {
  1981. "php": ">=5.3.0",
  1982. "psr/log": "~1.0"
  1983. },
  1984. "provide": {
  1985. "psr/log-implementation": "1.0.0"
  1986. },
  1987. "require-dev": {
  1988. "aws/aws-sdk-php": "^2.4.9",
  1989. "doctrine/couchdb": "~1.0@dev",
  1990. "graylog2/gelf-php": "~1.0",
  1991. "jakub-onderka/php-parallel-lint": "0.9",
  1992. "php-amqplib/php-amqplib": "~2.4",
  1993. "php-console/php-console": "^3.1.3",
  1994. "phpunit/phpunit": "~4.5",
  1995. "phpunit/phpunit-mock-objects": "2.3.0",
  1996. "raven/raven": "^0.13",
  1997. "ruflin/elastica": ">=0.90 <3.0",
  1998. "swiftmailer/swiftmailer": "~5.3"
  1999. },
  2000. "suggest": {
  2001. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2002. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2003. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2004. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2005. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2006. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2007. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2008. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2009. "raven/raven": "Allow sending log messages to a Sentry server",
  2010. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2011. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2012. },
  2013. "type": "library",
  2014. "extra": {
  2015. "branch-alias": {
  2016. "dev-master": "2.0.x-dev"
  2017. }
  2018. },
  2019. "autoload": {
  2020. "psr-4": {
  2021. "Monolog\\": "src/Monolog"
  2022. }
  2023. },
  2024. "notification-url": "https://packagist.org/downloads/",
  2025. "license": [
  2026. "MIT"
  2027. ],
  2028. "authors": [
  2029. {
  2030. "name": "Jordi Boggiano",
  2031. "email": "j.boggiano@seld.be",
  2032. "homepage": "http://seld.be"
  2033. }
  2034. ],
  2035. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2036. "homepage": "http://github.com/Seldaek/monolog",
  2037. "keywords": [
  2038. "log",
  2039. "logging",
  2040. "psr-3"
  2041. ],
  2042. "time": "2016-04-12 18:29:35"
  2043. },
  2044. {
  2045. "name": "nelmio/cors-bundle",
  2046. "version": "1.4.1",
  2047. "source": {
  2048. "type": "git",
  2049. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2050. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537"
  2051. },
  2052. "dist": {
  2053. "type": "zip",
  2054. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/fa14a81737c605bf4766054cdcb72a16a433d537",
  2055. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537",
  2056. "shasum": ""
  2057. },
  2058. "require": {
  2059. "symfony/framework-bundle": "^2.2 || ^3.0"
  2060. },
  2061. "require-dev": {
  2062. "matthiasnoback/symfony-dependency-injection-test": "^0.7.6",
  2063. "mockery/mockery": "0.9.*"
  2064. },
  2065. "type": "symfony-bundle",
  2066. "extra": {
  2067. "branch-alias": {
  2068. "dev-master": "1.4.x-dev"
  2069. }
  2070. },
  2071. "autoload": {
  2072. "psr-4": {
  2073. "Nelmio\\CorsBundle\\": ""
  2074. },
  2075. "exclude-from-classmap": [
  2076. "/Tests/"
  2077. ]
  2078. },
  2079. "notification-url": "https://packagist.org/downloads/",
  2080. "license": [
  2081. "MIT"
  2082. ],
  2083. "authors": [
  2084. {
  2085. "name": "Nelmio",
  2086. "homepage": "http://nelm.io"
  2087. },
  2088. {
  2089. "name": "Symfony Community",
  2090. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2091. }
  2092. ],
  2093. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2094. "keywords": [
  2095. "api",
  2096. "cors",
  2097. "crossdomain"
  2098. ],
  2099. "time": "2015-12-09 17:26:34"
  2100. },
  2101. {
  2102. "name": "nelmio/security-bundle",
  2103. "version": "1.10.0",
  2104. "source": {
  2105. "type": "git",
  2106. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2107. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9"
  2108. },
  2109. "dist": {
  2110. "type": "zip",
  2111. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2112. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2113. "shasum": ""
  2114. },
  2115. "require": {
  2116. "symfony/framework-bundle": "~2.3|~3.0",
  2117. "symfony/security": "~2.3|~3.0"
  2118. },
  2119. "require-dev": {
  2120. "phpunit/phpunit": "^5.2"
  2121. },
  2122. "type": "symfony-bundle",
  2123. "extra": {
  2124. "branch-alias": {
  2125. "dev-master": "1.10.x-dev"
  2126. }
  2127. },
  2128. "autoload": {
  2129. "psr-4": {
  2130. "Nelmio\\SecurityBundle\\": ""
  2131. }
  2132. },
  2133. "notification-url": "https://packagist.org/downloads/",
  2134. "license": [
  2135. "MIT"
  2136. ],
  2137. "authors": [
  2138. {
  2139. "name": "Nelmio",
  2140. "homepage": "http://nelm.io"
  2141. },
  2142. {
  2143. "name": "Symfony Community",
  2144. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2145. }
  2146. ],
  2147. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2148. "keywords": [
  2149. "security"
  2150. ],
  2151. "time": "2016-02-23 10:42:13"
  2152. },
  2153. {
  2154. "name": "nelmio/solarium-bundle",
  2155. "version": "v1.1.0",
  2156. "target-dir": "Nelmio/SolariumBundle",
  2157. "source": {
  2158. "type": "git",
  2159. "url": "https://github.com/nelmio/NelmioSolariumBundle.git",
  2160. "reference": "693700c4deeb04997b90aca659dd881409f33eb9"
  2161. },
  2162. "dist": {
  2163. "type": "zip",
  2164. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/693700c4deeb04997b90aca659dd881409f33eb9",
  2165. "reference": "693700c4deeb04997b90aca659dd881409f33eb9",
  2166. "shasum": ""
  2167. },
  2168. "require": {
  2169. "solarium/solarium": "~2.4.0",
  2170. "symfony/framework-bundle": "2.*"
  2171. },
  2172. "require-dev": {
  2173. "symfony/yaml": "2.*"
  2174. },
  2175. "type": "symfony-bundle",
  2176. "extra": {
  2177. "branch-alias": {
  2178. "dev-master": "1.1-dev"
  2179. }
  2180. },
  2181. "autoload": {
  2182. "psr-0": {
  2183. "Nelmio\\SolariumBundle": ""
  2184. }
  2185. },
  2186. "notification-url": "https://packagist.org/downloads/",
  2187. "license": [
  2188. "MIT"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "Nelmio",
  2193. "homepage": "http://nelm.io"
  2194. },
  2195. {
  2196. "name": "Symfony Community",
  2197. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  2198. }
  2199. ],
  2200. "description": "Integration with solarium solr client.",
  2201. "keywords": [
  2202. "search",
  2203. "solarium",
  2204. "solr"
  2205. ],
  2206. "time": "2013-01-07 10:35:43"
  2207. },
  2208. {
  2209. "name": "pagerfanta/pagerfanta",
  2210. "version": "v1.0.3",
  2211. "source": {
  2212. "type": "git",
  2213. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2214. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  2215. },
  2216. "dist": {
  2217. "type": "zip",
  2218. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2219. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2220. "shasum": ""
  2221. },
  2222. "require": {
  2223. "php": ">=5.3.0"
  2224. },
  2225. "require-dev": {
  2226. "doctrine/orm": "~2.3",
  2227. "doctrine/phpcr-odm": "1.*",
  2228. "jackalope/jackalope-doctrine-dbal": "1.*",
  2229. "jmikola/geojson": "~1.0",
  2230. "mandango/mandango": "~1.0@dev",
  2231. "mandango/mondator": "~1.0@dev",
  2232. "phpunit/phpunit": "~4",
  2233. "propel/propel1": "~1.6",
  2234. "ruflin/elastica": "~1.3",
  2235. "solarium/solarium": "~3.1"
  2236. },
  2237. "suggest": {
  2238. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2239. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2240. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2241. "mandango/mandango": "To use the MandangoAdapter.",
  2242. "propel/propel1": "To use the PropelAdapter",
  2243. "solarium/solarium": "To use the SolariumAdapter."
  2244. },
  2245. "type": "library",
  2246. "extra": {
  2247. "branch-alias": {
  2248. "dev-master": "1.0.x-dev"
  2249. }
  2250. },
  2251. "autoload": {
  2252. "psr-0": {
  2253. "Pagerfanta\\": "src/"
  2254. }
  2255. },
  2256. "notification-url": "https://packagist.org/downloads/",
  2257. "license": [
  2258. "MIT"
  2259. ],
  2260. "authors": [
  2261. {
  2262. "name": "Pablo Díez",
  2263. "email": "pablodip@gmail.com"
  2264. }
  2265. ],
  2266. "description": "Pagination for PHP 5.3",
  2267. "keywords": [
  2268. "page",
  2269. "pagination",
  2270. "paginator",
  2271. "paging"
  2272. ],
  2273. "time": "2014-10-06 10:57:25"
  2274. },
  2275. {
  2276. "name": "paragonie/random_compat",
  2277. "version": "v1.4.1",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/paragonie/random_compat.git",
  2281. "reference": "c7e26a21ba357863de030f0b9e701c7d04593774"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/c7e26a21ba357863de030f0b9e701c7d04593774",
  2286. "reference": "c7e26a21ba357863de030f0b9e701c7d04593774",
  2287. "shasum": ""
  2288. },
  2289. "require": {
  2290. "php": ">=5.2.0"
  2291. },
  2292. "require-dev": {
  2293. "phpunit/phpunit": "4.*|5.*"
  2294. },
  2295. "suggest": {
  2296. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2297. },
  2298. "type": "library",
  2299. "autoload": {
  2300. "files": [
  2301. "lib/random.php"
  2302. ]
  2303. },
  2304. "notification-url": "https://packagist.org/downloads/",
  2305. "license": [
  2306. "MIT"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "Paragon Initiative Enterprises",
  2311. "email": "security@paragonie.com",
  2312. "homepage": "https://paragonie.com"
  2313. }
  2314. ],
  2315. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2316. "keywords": [
  2317. "csprng",
  2318. "pseudorandom",
  2319. "random"
  2320. ],
  2321. "time": "2016-03-18 20:34:03"
  2322. },
  2323. {
  2324. "name": "phpoption/phpoption",
  2325. "version": "1.5.0",
  2326. "source": {
  2327. "type": "git",
  2328. "url": "https://github.com/schmittjoh/php-option.git",
  2329. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2330. },
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2334. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2335. "shasum": ""
  2336. },
  2337. "require": {
  2338. "php": ">=5.3.0"
  2339. },
  2340. "require-dev": {
  2341. "phpunit/phpunit": "4.7.*"
  2342. },
  2343. "type": "library",
  2344. "extra": {
  2345. "branch-alias": {
  2346. "dev-master": "1.3-dev"
  2347. }
  2348. },
  2349. "autoload": {
  2350. "psr-0": {
  2351. "PhpOption\\": "src/"
  2352. }
  2353. },
  2354. "notification-url": "https://packagist.org/downloads/",
  2355. "license": [
  2356. "Apache2"
  2357. ],
  2358. "authors": [
  2359. {
  2360. "name": "Johannes M. Schmitt",
  2361. "email": "schmittjoh@gmail.com"
  2362. }
  2363. ],
  2364. "description": "Option Type for PHP",
  2365. "keywords": [
  2366. "language",
  2367. "option",
  2368. "php",
  2369. "type"
  2370. ],
  2371. "time": "2015-07-25 16:39:46"
  2372. },
  2373. {
  2374. "name": "predis/predis",
  2375. "version": "v1.0.3",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/nrk/predis.git",
  2379. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/nrk/predis/zipball/84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2384. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2385. "shasum": ""
  2386. },
  2387. "require": {
  2388. "php": ">=5.3.2"
  2389. },
  2390. "require-dev": {
  2391. "phpunit/phpunit": "~4.0"
  2392. },
  2393. "suggest": {
  2394. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2395. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2396. },
  2397. "type": "library",
  2398. "autoload": {
  2399. "psr-4": {
  2400. "Predis\\": "src/"
  2401. }
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "MIT"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "Daniele Alessandri",
  2410. "email": "suppakilla@gmail.com",
  2411. "homepage": "http://clorophilla.net"
  2412. }
  2413. ],
  2414. "description": "Flexible and feature-complete PHP client library for Redis",
  2415. "homepage": "http://github.com/nrk/predis",
  2416. "keywords": [
  2417. "nosql",
  2418. "predis",
  2419. "redis"
  2420. ],
  2421. "time": "2015-07-30 18:34:15"
  2422. },
  2423. {
  2424. "name": "psr/log",
  2425. "version": "1.0.0",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/php-fig/log.git",
  2429. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2434. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2435. "shasum": ""
  2436. },
  2437. "type": "library",
  2438. "autoload": {
  2439. "psr-0": {
  2440. "Psr\\Log\\": ""
  2441. }
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "PHP-FIG",
  2450. "homepage": "http://www.php-fig.org/"
  2451. }
  2452. ],
  2453. "description": "Common interface for logging libraries",
  2454. "keywords": [
  2455. "log",
  2456. "psr",
  2457. "psr-3"
  2458. ],
  2459. "time": "2012-12-21 11:40:51"
  2460. },
  2461. {
  2462. "name": "seld/cli-prompt",
  2463. "version": "1.0.2",
  2464. "source": {
  2465. "type": "git",
  2466. "url": "https://github.com/Seldaek/cli-prompt.git",
  2467. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4"
  2468. },
  2469. "dist": {
  2470. "type": "zip",
  2471. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  2472. "reference": "8cbe10923cae5bcd7c5a713f6703fc4727c8c1b4",
  2473. "shasum": ""
  2474. },
  2475. "require": {
  2476. "php": ">=5.3"
  2477. },
  2478. "type": "library",
  2479. "extra": {
  2480. "branch-alias": {
  2481. "dev-master": "1.x-dev"
  2482. }
  2483. },
  2484. "autoload": {
  2485. "psr-4": {
  2486. "Seld\\CliPrompt\\": "src/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Jordi Boggiano",
  2496. "email": "j.boggiano@seld.be"
  2497. }
  2498. ],
  2499. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2500. "keywords": [
  2501. "cli",
  2502. "console",
  2503. "hidden",
  2504. "input",
  2505. "prompt"
  2506. ],
  2507. "time": "2016-04-18 09:31:41"
  2508. },
  2509. {
  2510. "name": "seld/jsonlint",
  2511. "version": "1.4.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/Seldaek/jsonlint.git",
  2515. "reference": "66834d3e3566bb5798db7294619388786ae99394"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/66834d3e3566bb5798db7294619388786ae99394",
  2520. "reference": "66834d3e3566bb5798db7294619388786ae99394",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": "^5.3 || ^7.0"
  2525. },
  2526. "bin": [
  2527. "bin/jsonlint"
  2528. ],
  2529. "type": "library",
  2530. "autoload": {
  2531. "psr-4": {
  2532. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2533. }
  2534. },
  2535. "notification-url": "https://packagist.org/downloads/",
  2536. "license": [
  2537. "MIT"
  2538. ],
  2539. "authors": [
  2540. {
  2541. "name": "Jordi Boggiano",
  2542. "email": "j.boggiano@seld.be",
  2543. "homepage": "http://seld.be"
  2544. }
  2545. ],
  2546. "description": "JSON Linter",
  2547. "keywords": [
  2548. "json",
  2549. "linter",
  2550. "parser",
  2551. "validator"
  2552. ],
  2553. "time": "2015-11-21 02:21:41"
  2554. },
  2555. {
  2556. "name": "seld/phar-utils",
  2557. "version": "1.0.1",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/Seldaek/phar-utils.git",
  2561. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2566. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "php": ">=5.3"
  2571. },
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-master": "1.x-dev"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "psr-4": {
  2580. "Seld\\PharUtils\\": "src/"
  2581. }
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Jordi Boggiano",
  2590. "email": "j.boggiano@seld.be"
  2591. }
  2592. ],
  2593. "description": "PHAR file format utilities, for when PHP phars you up",
  2594. "keywords": [
  2595. "phra"
  2596. ],
  2597. "time": "2015-10-13 18:44:15"
  2598. },
  2599. {
  2600. "name": "sensio/distribution-bundle",
  2601. "version": "v5.0.6",
  2602. "source": {
  2603. "type": "git",
  2604. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2605. "reference": "ffe306d09c1f2bad721237f63b2169d1b78253d0"
  2606. },
  2607. "dist": {
  2608. "type": "zip",
  2609. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/ffe306d09c1f2bad721237f63b2169d1b78253d0",
  2610. "reference": "ffe306d09c1f2bad721237f63b2169d1b78253d0",
  2611. "shasum": ""
  2612. },
  2613. "require": {
  2614. "php": ">=5.3.9",
  2615. "sensiolabs/security-checker": "~3.0",
  2616. "symfony/class-loader": "~2.3|~3.0",
  2617. "symfony/config": "~2.3|~3.0",
  2618. "symfony/dependency-injection": "~2.3|~3.0",
  2619. "symfony/filesystem": "~2.3|~3.0",
  2620. "symfony/http-kernel": "~2.3|~3.0",
  2621. "symfony/process": "~2.3|~3.0"
  2622. },
  2623. "type": "symfony-bundle",
  2624. "extra": {
  2625. "branch-alias": {
  2626. "dev-master": "5.0.x-dev"
  2627. }
  2628. },
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Sensio\\Bundle\\DistributionBundle\\": ""
  2632. }
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "MIT"
  2637. ],
  2638. "authors": [
  2639. {
  2640. "name": "Fabien Potencier",
  2641. "email": "fabien@symfony.com"
  2642. }
  2643. ],
  2644. "description": "Base bundle for Symfony Distributions",
  2645. "keywords": [
  2646. "configuration",
  2647. "distribution"
  2648. ],
  2649. "time": "2016-04-25 20:50:31"
  2650. },
  2651. {
  2652. "name": "sensio/framework-extra-bundle",
  2653. "version": "v3.0.16",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2657. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2662. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2663. "shasum": ""
  2664. },
  2665. "require": {
  2666. "doctrine/common": "~2.2",
  2667. "symfony/dependency-injection": "~2.3|~3.0",
  2668. "symfony/framework-bundle": "~2.3|~3.0"
  2669. },
  2670. "require-dev": {
  2671. "symfony/browser-kit": "~2.3|~3.0",
  2672. "symfony/dom-crawler": "~2.3|~3.0",
  2673. "symfony/expression-language": "~2.4|~3.0",
  2674. "symfony/finder": "~2.3|~3.0",
  2675. "symfony/phpunit-bridge": "~2.7|~3.0",
  2676. "symfony/security-bundle": "~2.4|~3.0",
  2677. "symfony/twig-bundle": "~2.3|~3.0",
  2678. "twig/twig": "~1.11|~2.0"
  2679. },
  2680. "suggest": {
  2681. "symfony/expression-language": "",
  2682. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  2683. "symfony/security-bundle": ""
  2684. },
  2685. "type": "symfony-bundle",
  2686. "extra": {
  2687. "branch-alias": {
  2688. "dev-master": "3.0.x-dev"
  2689. }
  2690. },
  2691. "autoload": {
  2692. "psr-4": {
  2693. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  2694. }
  2695. },
  2696. "notification-url": "https://packagist.org/downloads/",
  2697. "license": [
  2698. "MIT"
  2699. ],
  2700. "authors": [
  2701. {
  2702. "name": "Fabien Potencier",
  2703. "email": "fabien@symfony.com"
  2704. }
  2705. ],
  2706. "description": "This bundle provides a way to configure your controllers with annotations",
  2707. "keywords": [
  2708. "annotations",
  2709. "controllers"
  2710. ],
  2711. "time": "2016-03-25 17:08:27"
  2712. },
  2713. {
  2714. "name": "sensio/generator-bundle",
  2715. "version": "v3.0.6",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2719. "reference": "ac91535054d025937d897d78ebb5fc2da5e955a4"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/ac91535054d025937d897d78ebb5fc2da5e955a4",
  2724. "reference": "ac91535054d025937d897d78ebb5fc2da5e955a4",
  2725. "shasum": ""
  2726. },
  2727. "require": {
  2728. "symfony/console": "~2.7|~3.0",
  2729. "symfony/framework-bundle": "~2.7|~3.0",
  2730. "symfony/process": "~2.7|~3.0",
  2731. "symfony/yaml": "~2.7|~3.0"
  2732. },
  2733. "require-dev": {
  2734. "doctrine/orm": "~2.4",
  2735. "symfony/doctrine-bridge": "~2.7|~3.0",
  2736. "twig/twig": "~1.18"
  2737. },
  2738. "type": "symfony-bundle",
  2739. "extra": {
  2740. "branch-alias": {
  2741. "dev-master": "3.0.x-dev"
  2742. }
  2743. },
  2744. "autoload": {
  2745. "psr-4": {
  2746. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2747. },
  2748. "exclude-from-classmap": [
  2749. "/Tests/"
  2750. ]
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "MIT"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Fabien Potencier",
  2759. "email": "fabien@symfony.com"
  2760. }
  2761. ],
  2762. "description": "This bundle generates code for you",
  2763. "time": "2016-02-26 04:36:01"
  2764. },
  2765. {
  2766. "name": "sensiolabs/security-checker",
  2767. "version": "v3.0.2",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://github.com/sensiolabs/security-checker.git",
  2771. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/21696b0daa731064c23cfb694c60a2584a7b6e93",
  2776. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93",
  2777. "shasum": ""
  2778. },
  2779. "require": {
  2780. "symfony/console": "~2.0|~3.0"
  2781. },
  2782. "bin": [
  2783. "security-checker"
  2784. ],
  2785. "type": "library",
  2786. "extra": {
  2787. "branch-alias": {
  2788. "dev-master": "3.0-dev"
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-0": {
  2793. "SensioLabs\\Security": ""
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "Fabien Potencier",
  2803. "email": "fabien.potencier@gmail.com"
  2804. }
  2805. ],
  2806. "description": "A security checker for your composer.lock",
  2807. "time": "2015-11-07 08:07:40"
  2808. },
  2809. {
  2810. "name": "snc/redis-bundle",
  2811. "version": "1.1.10",
  2812. "target-dir": "Snc/RedisBundle",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/snc/SncRedisBundle.git",
  2816. "reference": "3b11bdc877f470fa8a1e728ada48c62c0d33e0ed"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/3b11bdc877f470fa8a1e728ada48c62c0d33e0ed",
  2821. "reference": "3b11bdc877f470fa8a1e728ada48c62c0d33e0ed",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": ">=5.3.3",
  2826. "symfony/framework-bundle": "^2.1",
  2827. "symfony/yaml": "^2.1"
  2828. },
  2829. "require-dev": {
  2830. "doctrine/cache": "^1.0",
  2831. "phpunit/phpunit": "^4.0",
  2832. "predis/predis": "^1.0",
  2833. "symfony/console": "^2.1"
  2834. },
  2835. "suggest": {
  2836. "monolog/monolog": "If you want to use the monolog redis handler.",
  2837. "predis/predis": "If you want to use predis.",
  2838. "symfony/console": "If you want to use commands to interact with the redis database"
  2839. },
  2840. "type": "symfony-bundle",
  2841. "autoload": {
  2842. "psr-0": {
  2843. "Snc\\RedisBundle": ""
  2844. }
  2845. },
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "authors": [
  2851. {
  2852. "name": "Henrik Westphal",
  2853. "email": "henrik.westphal@gmail.com"
  2854. },
  2855. {
  2856. "name": "Community contributors",
  2857. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2858. }
  2859. ],
  2860. "description": "A Redis bundle for Symfony2",
  2861. "homepage": "https://github.com/snc/SncRedisBundle",
  2862. "keywords": [
  2863. "nosql",
  2864. "redis",
  2865. "symfony"
  2866. ],
  2867. "time": "2016-01-21 18:29:37"
  2868. },
  2869. {
  2870. "name": "solarium/solarium",
  2871. "version": "2.4.1",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/solariumphp/solarium.git",
  2875. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2880. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2881. "shasum": ""
  2882. },
  2883. "require": {
  2884. "php": ">=5.2.0"
  2885. },
  2886. "type": "library",
  2887. "autoload": {
  2888. "psr-0": {
  2889. "Solarium": "library/"
  2890. }
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "NewBSD"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "See GitHub contributors",
  2899. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  2900. }
  2901. ],
  2902. "description": "PHP Solr client",
  2903. "homepage": "http://www.solarium-project.org",
  2904. "keywords": [
  2905. "php",
  2906. "search",
  2907. "solr"
  2908. ],
  2909. "time": "2013-02-11 13:12:43"
  2910. },
  2911. {
  2912. "name": "swiftmailer/swiftmailer",
  2913. "version": "v5.4.2",
  2914. "source": {
  2915. "type": "git",
  2916. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2917. "reference": "d8db871a54619458a805229a057ea2af33c753e8"
  2918. },
  2919. "dist": {
  2920. "type": "zip",
  2921. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/d8db871a54619458a805229a057ea2af33c753e8",
  2922. "reference": "d8db871a54619458a805229a057ea2af33c753e8",
  2923. "shasum": ""
  2924. },
  2925. "require": {
  2926. "php": ">=5.3.3"
  2927. },
  2928. "require-dev": {
  2929. "mockery/mockery": "~0.9.1,<0.9.4"
  2930. },
  2931. "type": "library",
  2932. "extra": {
  2933. "branch-alias": {
  2934. "dev-master": "5.4-dev"
  2935. }
  2936. },
  2937. "autoload": {
  2938. "files": [
  2939. "lib/swift_required.php"
  2940. ]
  2941. },
  2942. "notification-url": "https://packagist.org/downloads/",
  2943. "license": [
  2944. "MIT"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "Chris Corbyn"
  2949. },
  2950. {
  2951. "name": "Fabien Potencier",
  2952. "email": "fabien@symfony.com"
  2953. }
  2954. ],
  2955. "description": "Swiftmailer, free feature-rich PHP mailer",
  2956. "homepage": "http://swiftmailer.org",
  2957. "keywords": [
  2958. "email",
  2959. "mail",
  2960. "mailer"
  2961. ],
  2962. "time": "2016-05-01 08:45:47"
  2963. },
  2964. {
  2965. "name": "symfony/monolog-bundle",
  2966. "version": "2.11.1",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/symfony/monolog-bundle.git",
  2970. "reference": "e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00",
  2975. "reference": "e7caf4936c7be82bc6d68df87f1d23a0d5bf6e00",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "monolog/monolog": "~1.18",
  2980. "php": ">=5.3.2",
  2981. "symfony/config": "~2.3|~3.0",
  2982. "symfony/dependency-injection": "~2.3|~3.0",
  2983. "symfony/http-kernel": "~2.3|~3.0",
  2984. "symfony/monolog-bridge": "~2.3|~3.0"
  2985. },
  2986. "require-dev": {
  2987. "phpunit/phpunit": "^4.8",
  2988. "symfony/console": "~2.3|~3.0",
  2989. "symfony/yaml": "~2.3|~3.0"
  2990. },
  2991. "type": "symfony-bundle",
  2992. "extra": {
  2993. "branch-alias": {
  2994. "dev-master": "2.x-dev"
  2995. }
  2996. },
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Symfony\\Bundle\\MonologBundle\\": ""
  3000. }
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "authors": [
  3007. {
  3008. "name": "Symfony Community",
  3009. "homepage": "http://symfony.com/contributors"
  3010. },
  3011. {
  3012. "name": "Fabien Potencier",
  3013. "email": "fabien@symfony.com"
  3014. }
  3015. ],
  3016. "description": "Symfony MonologBundle",
  3017. "homepage": "http://symfony.com",
  3018. "keywords": [
  3019. "log",
  3020. "logging"
  3021. ],
  3022. "time": "2016-04-13 16:21:01"
  3023. },
  3024. {
  3025. "name": "symfony/polyfill-apcu",
  3026. "version": "v1.1.1",
  3027. "source": {
  3028. "type": "git",
  3029. "url": "https://github.com/symfony/polyfill-apcu.git",
  3030. "reference": "0c901e4e65a2f7ece68f0fd249b56d6ad3adc214"
  3031. },
  3032. "dist": {
  3033. "type": "zip",
  3034. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/0c901e4e65a2f7ece68f0fd249b56d6ad3adc214",
  3035. "reference": "0c901e4e65a2f7ece68f0fd249b56d6ad3adc214",
  3036. "shasum": ""
  3037. },
  3038. "require": {
  3039. "php": ">=5.3.3"
  3040. },
  3041. "type": "library",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-master": "1.1-dev"
  3045. }
  3046. },
  3047. "autoload": {
  3048. "files": [
  3049. "bootstrap.php"
  3050. ]
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "MIT"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "Nicolas Grekas",
  3059. "email": "p@tchwork.com"
  3060. },
  3061. {
  3062. "name": "Symfony Community",
  3063. "homepage": "https://symfony.com/contributors"
  3064. }
  3065. ],
  3066. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  3067. "homepage": "https://symfony.com",
  3068. "keywords": [
  3069. "apcu",
  3070. "compatibility",
  3071. "polyfill",
  3072. "portable",
  3073. "shim"
  3074. ],
  3075. "time": "2016-03-03 16:49:40"
  3076. },
  3077. {
  3078. "name": "symfony/polyfill-intl-icu",
  3079. "version": "v1.1.1",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3083. "reference": "8328069d9f5322f0e7b3c3518485acfdc94c3942"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/8328069d9f5322f0e7b3c3518485acfdc94c3942",
  3088. "reference": "8328069d9f5322f0e7b3c3518485acfdc94c3942",
  3089. "shasum": ""
  3090. },
  3091. "require": {
  3092. "php": ">=5.3.3",
  3093. "symfony/intl": "~2.3|~3.0"
  3094. },
  3095. "suggest": {
  3096. "ext-intl": "For best performance"
  3097. },
  3098. "type": "library",
  3099. "extra": {
  3100. "branch-alias": {
  3101. "dev-master": "1.1-dev"
  3102. }
  3103. },
  3104. "autoload": {
  3105. "files": [
  3106. "bootstrap.php"
  3107. ]
  3108. },
  3109. "notification-url": "https://packagist.org/downloads/",
  3110. "license": [
  3111. "MIT"
  3112. ],
  3113. "authors": [
  3114. {
  3115. "name": "Nicolas Grekas",
  3116. "email": "p@tchwork.com"
  3117. },
  3118. {
  3119. "name": "Symfony Community",
  3120. "homepage": "https://symfony.com/contributors"
  3121. }
  3122. ],
  3123. "description": "Symfony polyfill for intl's ICU-related data and classes",
  3124. "homepage": "https://symfony.com",
  3125. "keywords": [
  3126. "compatibility",
  3127. "icu",
  3128. "intl",
  3129. "polyfill",
  3130. "portable",
  3131. "shim"
  3132. ],
  3133. "time": "2016-02-26 16:18:12"
  3134. },
  3135. {
  3136. "name": "symfony/polyfill-mbstring",
  3137. "version": "v1.1.1",
  3138. "source": {
  3139. "type": "git",
  3140. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3141. "reference": "1289d16209491b584839022f29257ad859b8532d"
  3142. },
  3143. "dist": {
  3144. "type": "zip",
  3145. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d",
  3146. "reference": "1289d16209491b584839022f29257ad859b8532d",
  3147. "shasum": ""
  3148. },
  3149. "require": {
  3150. "php": ">=5.3.3"
  3151. },
  3152. "suggest": {
  3153. "ext-mbstring": "For best performance"
  3154. },
  3155. "type": "library",
  3156. "extra": {
  3157. "branch-alias": {
  3158. "dev-master": "1.1-dev"
  3159. }
  3160. },
  3161. "autoload": {
  3162. "psr-4": {
  3163. "Symfony\\Polyfill\\Mbstring\\": ""
  3164. },
  3165. "files": [
  3166. "bootstrap.php"
  3167. ]
  3168. },
  3169. "notification-url": "https://packagist.org/downloads/",
  3170. "license": [
  3171. "MIT"
  3172. ],
  3173. "authors": [
  3174. {
  3175. "name": "Nicolas Grekas",
  3176. "email": "p@tchwork.com"
  3177. },
  3178. {
  3179. "name": "Symfony Community",
  3180. "homepage": "https://symfony.com/contributors"
  3181. }
  3182. ],
  3183. "description": "Symfony polyfill for the Mbstring extension",
  3184. "homepage": "https://symfony.com",
  3185. "keywords": [
  3186. "compatibility",
  3187. "mbstring",
  3188. "polyfill",
  3189. "portable",
  3190. "shim"
  3191. ],
  3192. "time": "2016-01-20 09:13:37"
  3193. },
  3194. {
  3195. "name": "symfony/polyfill-php54",
  3196. "version": "v1.1.1",
  3197. "source": {
  3198. "type": "git",
  3199. "url": "https://github.com/symfony/polyfill-php54.git",
  3200. "reference": "9ba741ca01c77282ecf5796c2c1d667f03454ffb"
  3201. },
  3202. "dist": {
  3203. "type": "zip",
  3204. "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/9ba741ca01c77282ecf5796c2c1d667f03454ffb",
  3205. "reference": "9ba741ca01c77282ecf5796c2c1d667f03454ffb",
  3206. "shasum": ""
  3207. },
  3208. "require": {
  3209. "php": ">=5.3.3"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-master": "1.1-dev"
  3215. }
  3216. },
  3217. "autoload": {
  3218. "psr-4": {
  3219. "Symfony\\Polyfill\\Php54\\": ""
  3220. },
  3221. "files": [
  3222. "bootstrap.php"
  3223. ],
  3224. "classmap": [
  3225. "Resources/stubs"
  3226. ]
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Nicolas Grekas",
  3235. "email": "p@tchwork.com"
  3236. },
  3237. {
  3238. "name": "Symfony Community",
  3239. "homepage": "https://symfony.com/contributors"
  3240. }
  3241. ],
  3242. "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
  3243. "homepage": "https://symfony.com",
  3244. "keywords": [
  3245. "compatibility",
  3246. "polyfill",
  3247. "portable",
  3248. "shim"
  3249. ],
  3250. "time": "2016-01-25 19:13:00"
  3251. },
  3252. {
  3253. "name": "symfony/polyfill-php55",
  3254. "version": "v1.1.1",
  3255. "source": {
  3256. "type": "git",
  3257. "url": "https://github.com/symfony/polyfill-php55.git",
  3258. "reference": "b4f3f07d91702f8f926339fc4fcf81671d8c27e6"
  3259. },
  3260. "dist": {
  3261. "type": "zip",
  3262. "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/b4f3f07d91702f8f926339fc4fcf81671d8c27e6",
  3263. "reference": "b4f3f07d91702f8f926339fc4fcf81671d8c27e6",
  3264. "shasum": ""
  3265. },
  3266. "require": {
  3267. "ircmaxell/password-compat": "~1.0",
  3268. "php": ">=5.3.3"
  3269. },
  3270. "type": "library",
  3271. "extra": {
  3272. "branch-alias": {
  3273. "dev-master": "1.1-dev"
  3274. }
  3275. },
  3276. "autoload": {
  3277. "psr-4": {
  3278. "Symfony\\Polyfill\\Php55\\": ""
  3279. },
  3280. "files": [
  3281. "bootstrap.php"
  3282. ]
  3283. },
  3284. "notification-url": "https://packagist.org/downloads/",
  3285. "license": [
  3286. "MIT"
  3287. ],
  3288. "authors": [
  3289. {
  3290. "name": "Nicolas Grekas",
  3291. "email": "p@tchwork.com"
  3292. },
  3293. {
  3294. "name": "Symfony Community",
  3295. "homepage": "https://symfony.com/contributors"
  3296. }
  3297. ],
  3298. "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
  3299. "homepage": "https://symfony.com",
  3300. "keywords": [
  3301. "compatibility",
  3302. "polyfill",
  3303. "portable",
  3304. "shim"
  3305. ],
  3306. "time": "2016-01-20 09:13:37"
  3307. },
  3308. {
  3309. "name": "symfony/polyfill-php56",
  3310. "version": "v1.1.1",
  3311. "source": {
  3312. "type": "git",
  3313. "url": "https://github.com/symfony/polyfill-php56.git",
  3314. "reference": "4d891fff050101a53a4caabb03277284942d1ad9"
  3315. },
  3316. "dist": {
  3317. "type": "zip",
  3318. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/4d891fff050101a53a4caabb03277284942d1ad9",
  3319. "reference": "4d891fff050101a53a4caabb03277284942d1ad9",
  3320. "shasum": ""
  3321. },
  3322. "require": {
  3323. "php": ">=5.3.3",
  3324. "symfony/polyfill-util": "~1.0"
  3325. },
  3326. "type": "library",
  3327. "extra": {
  3328. "branch-alias": {
  3329. "dev-master": "1.1-dev"
  3330. }
  3331. },
  3332. "autoload": {
  3333. "psr-4": {
  3334. "Symfony\\Polyfill\\Php56\\": ""
  3335. },
  3336. "files": [
  3337. "bootstrap.php"
  3338. ]
  3339. },
  3340. "notification-url": "https://packagist.org/downloads/",
  3341. "license": [
  3342. "MIT"
  3343. ],
  3344. "authors": [
  3345. {
  3346. "name": "Nicolas Grekas",
  3347. "email": "p@tchwork.com"
  3348. },
  3349. {
  3350. "name": "Symfony Community",
  3351. "homepage": "https://symfony.com/contributors"
  3352. }
  3353. ],
  3354. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3355. "homepage": "https://symfony.com",
  3356. "keywords": [
  3357. "compatibility",
  3358. "polyfill",
  3359. "portable",
  3360. "shim"
  3361. ],
  3362. "time": "2016-01-20 09:13:37"
  3363. },
  3364. {
  3365. "name": "symfony/polyfill-php70",
  3366. "version": "v1.1.1",
  3367. "source": {
  3368. "type": "git",
  3369. "url": "https://github.com/symfony/polyfill-php70.git",
  3370. "reference": "386c1be9cad3ab531425211919e78c37971be4ce"
  3371. },
  3372. "dist": {
  3373. "type": "zip",
  3374. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/386c1be9cad3ab531425211919e78c37971be4ce",
  3375. "reference": "386c1be9cad3ab531425211919e78c37971be4ce",
  3376. "shasum": ""
  3377. },
  3378. "require": {
  3379. "paragonie/random_compat": "~1.0",
  3380. "php": ">=5.3.3"
  3381. },
  3382. "type": "library",
  3383. "extra": {
  3384. "branch-alias": {
  3385. "dev-master": "1.1-dev"
  3386. }
  3387. },
  3388. "autoload": {
  3389. "psr-4": {
  3390. "Symfony\\Polyfill\\Php70\\": ""
  3391. },
  3392. "files": [
  3393. "bootstrap.php"
  3394. ],
  3395. "classmap": [
  3396. "Resources/stubs"
  3397. ]
  3398. },
  3399. "notification-url": "https://packagist.org/downloads/",
  3400. "license": [
  3401. "MIT"
  3402. ],
  3403. "authors": [
  3404. {
  3405. "name": "Nicolas Grekas",
  3406. "email": "p@tchwork.com"
  3407. },
  3408. {
  3409. "name": "Symfony Community",
  3410. "homepage": "https://symfony.com/contributors"
  3411. }
  3412. ],
  3413. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3414. "homepage": "https://symfony.com",
  3415. "keywords": [
  3416. "compatibility",
  3417. "polyfill",
  3418. "portable",
  3419. "shim"
  3420. ],
  3421. "time": "2016-01-28 22:42:02"
  3422. },
  3423. {
  3424. "name": "symfony/polyfill-util",
  3425. "version": "v1.1.1",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/symfony/polyfill-util.git",
  3429. "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4",
  3434. "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "php": ">=5.3.3"
  3439. },
  3440. "type": "library",
  3441. "extra": {
  3442. "branch-alias": {
  3443. "dev-master": "1.1-dev"
  3444. }
  3445. },
  3446. "autoload": {
  3447. "psr-4": {
  3448. "Symfony\\Polyfill\\Util\\": ""
  3449. }
  3450. },
  3451. "notification-url": "https://packagist.org/downloads/",
  3452. "license": [
  3453. "MIT"
  3454. ],
  3455. "authors": [
  3456. {
  3457. "name": "Nicolas Grekas",
  3458. "email": "p@tchwork.com"
  3459. },
  3460. {
  3461. "name": "Symfony Community",
  3462. "homepage": "https://symfony.com/contributors"
  3463. }
  3464. ],
  3465. "description": "Symfony utilities for portability of PHP codes",
  3466. "homepage": "https://symfony.com",
  3467. "keywords": [
  3468. "compat",
  3469. "compatibility",
  3470. "polyfill",
  3471. "shim"
  3472. ],
  3473. "time": "2016-01-20 09:13:37"
  3474. },
  3475. {
  3476. "name": "symfony/security-acl",
  3477. "version": "v3.0.0",
  3478. "source": {
  3479. "type": "git",
  3480. "url": "https://github.com/symfony/security-acl.git",
  3481. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1"
  3482. },
  3483. "dist": {
  3484. "type": "zip",
  3485. "url": "https://api.github.com/repos/symfony/security-acl/zipball/053b49bf4aa333a392c83296855989bcf88ddad1",
  3486. "reference": "053b49bf4aa333a392c83296855989bcf88ddad1",
  3487. "shasum": ""
  3488. },
  3489. "require": {
  3490. "php": ">=5.5.9",
  3491. "symfony/security-core": "~2.8|~3.0"
  3492. },
  3493. "require-dev": {
  3494. "doctrine/common": "~2.2",
  3495. "doctrine/dbal": "~2.2",
  3496. "psr/log": "~1.0",
  3497. "symfony/phpunit-bridge": "~2.8|~3.0"
  3498. },
  3499. "suggest": {
  3500. "doctrine/dbal": "For using the built-in ACL implementation",
  3501. "symfony/class-loader": "For using the ACL generateSql script",
  3502. "symfony/finder": "For using the ACL generateSql script"
  3503. },
  3504. "type": "library",
  3505. "extra": {
  3506. "branch-alias": {
  3507. "dev-master": "3.0-dev"
  3508. }
  3509. },
  3510. "autoload": {
  3511. "psr-4": {
  3512. "Symfony\\Component\\Security\\Acl\\": ""
  3513. },
  3514. "exclude-from-classmap": [
  3515. "/Tests/"
  3516. ]
  3517. },
  3518. "notification-url": "https://packagist.org/downloads/",
  3519. "license": [
  3520. "MIT"
  3521. ],
  3522. "authors": [
  3523. {
  3524. "name": "Fabien Potencier",
  3525. "email": "fabien@symfony.com"
  3526. },
  3527. {
  3528. "name": "Symfony Community",
  3529. "homepage": "https://symfony.com/contributors"
  3530. }
  3531. ],
  3532. "description": "Symfony Security Component - ACL (Access Control List)",
  3533. "homepage": "https://symfony.com",
  3534. "time": "2015-12-28 09:39:46"
  3535. },
  3536. {
  3537. "name": "symfony/swiftmailer-bundle",
  3538. "version": "v2.3.11",
  3539. "source": {
  3540. "type": "git",
  3541. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  3542. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690"
  3543. },
  3544. "dist": {
  3545. "type": "zip",
  3546. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3547. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3548. "shasum": ""
  3549. },
  3550. "require": {
  3551. "php": ">=5.3.2",
  3552. "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  3553. "symfony/config": "~2.3|~3.0",
  3554. "symfony/dependency-injection": "~2.3|~3.0",
  3555. "symfony/http-kernel": "~2.3|~3.0",
  3556. "symfony/yaml": "~2.3|~3.0"
  3557. },
  3558. "require-dev": {
  3559. "symfony/phpunit-bridge": "~2.7|~3.0"
  3560. },
  3561. "suggest": {
  3562. "psr/log": "Allows logging"
  3563. },
  3564. "type": "symfony-bundle",
  3565. "extra": {
  3566. "branch-alias": {
  3567. "dev-master": "2.3-dev"
  3568. }
  3569. },
  3570. "autoload": {
  3571. "psr-4": {
  3572. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  3573. }
  3574. },
  3575. "notification-url": "https://packagist.org/downloads/",
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "Symfony Community",
  3582. "homepage": "http://symfony.com/contributors"
  3583. },
  3584. {
  3585. "name": "Fabien Potencier",
  3586. "email": "fabien@symfony.com"
  3587. }
  3588. ],
  3589. "description": "Symfony SwiftmailerBundle",
  3590. "homepage": "http://symfony.com",
  3591. "time": "2016-01-15 16:41:20"
  3592. },
  3593. {
  3594. "name": "symfony/symfony",
  3595. "version": "v2.8.6",
  3596. "source": {
  3597. "type": "git",
  3598. "url": "https://github.com/symfony/symfony.git",
  3599. "reference": "8408816780215fae055599d100b5385d9a247151"
  3600. },
  3601. "dist": {
  3602. "type": "zip",
  3603. "url": "https://api.github.com/repos/symfony/symfony/zipball/8408816780215fae055599d100b5385d9a247151",
  3604. "reference": "8408816780215fae055599d100b5385d9a247151",
  3605. "shasum": ""
  3606. },
  3607. "require": {
  3608. "doctrine/common": "~2.4",
  3609. "php": ">=5.3.9",
  3610. "psr/log": "~1.0",
  3611. "symfony/polyfill-apcu": "~1.1",
  3612. "symfony/polyfill-intl-icu": "~1.0",
  3613. "symfony/polyfill-mbstring": "~1.0",
  3614. "symfony/polyfill-php54": "~1.0",
  3615. "symfony/polyfill-php55": "~1.0",
  3616. "symfony/polyfill-php56": "~1.0",
  3617. "symfony/polyfill-php70": "~1.0",
  3618. "symfony/polyfill-util": "~1.0",
  3619. "symfony/security-acl": "~2.7|~3.0.0",
  3620. "twig/twig": "~1.23|~2.0"
  3621. },
  3622. "conflict": {
  3623. "phpdocumentor/reflection": "<1.0.7"
  3624. },
  3625. "replace": {
  3626. "symfony/asset": "self.version",
  3627. "symfony/browser-kit": "self.version",
  3628. "symfony/class-loader": "self.version",
  3629. "symfony/config": "self.version",
  3630. "symfony/console": "self.version",
  3631. "symfony/css-selector": "self.version",
  3632. "symfony/debug": "self.version",
  3633. "symfony/debug-bundle": "self.version",
  3634. "symfony/dependency-injection": "self.version",
  3635. "symfony/doctrine-bridge": "self.version",
  3636. "symfony/dom-crawler": "self.version",
  3637. "symfony/event-dispatcher": "self.version",
  3638. "symfony/expression-language": "self.version",
  3639. "symfony/filesystem": "self.version",
  3640. "symfony/finder": "self.version",
  3641. "symfony/form": "self.version",
  3642. "symfony/framework-bundle": "self.version",
  3643. "symfony/http-foundation": "self.version",
  3644. "symfony/http-kernel": "self.version",
  3645. "symfony/intl": "self.version",
  3646. "symfony/ldap": "self.version",
  3647. "symfony/locale": "self.version",
  3648. "symfony/monolog-bridge": "self.version",
  3649. "symfony/options-resolver": "self.version",
  3650. "symfony/process": "self.version",
  3651. "symfony/property-access": "self.version",
  3652. "symfony/property-info": "self.version",
  3653. "symfony/proxy-manager-bridge": "self.version",
  3654. "symfony/routing": "self.version",
  3655. "symfony/security": "self.version",
  3656. "symfony/security-bundle": "self.version",
  3657. "symfony/security-core": "self.version",
  3658. "symfony/security-csrf": "self.version",
  3659. "symfony/security-guard": "self.version",
  3660. "symfony/security-http": "self.version",
  3661. "symfony/serializer": "self.version",
  3662. "symfony/stopwatch": "self.version",
  3663. "symfony/swiftmailer-bridge": "self.version",
  3664. "symfony/templating": "self.version",
  3665. "symfony/translation": "self.version",
  3666. "symfony/twig-bridge": "self.version",
  3667. "symfony/twig-bundle": "self.version",
  3668. "symfony/validator": "self.version",
  3669. "symfony/var-dumper": "self.version",
  3670. "symfony/web-profiler-bundle": "self.version",
  3671. "symfony/yaml": "self.version"
  3672. },
  3673. "require-dev": {
  3674. "doctrine/data-fixtures": "1.0.*",
  3675. "doctrine/dbal": "~2.4",
  3676. "doctrine/doctrine-bundle": "~1.2",
  3677. "doctrine/orm": "~2.4,>=2.4.5",
  3678. "egulias/email-validator": "~1.2",
  3679. "monolog/monolog": "~1.11",
  3680. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  3681. "phpdocumentor/reflection": "^1.0.7"
  3682. },
  3683. "type": "library",
  3684. "extra": {
  3685. "branch-alias": {
  3686. "dev-master": "2.8-dev"
  3687. }
  3688. },
  3689. "autoload": {
  3690. "psr-4": {
  3691. "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/",
  3692. "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/",
  3693. "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/",
  3694. "Symfony\\Bridge\\Swiftmailer\\": "src/Symfony/Bridge/Swiftmailer/",
  3695. "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
  3696. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  3697. "Symfony\\Component\\": "src/Symfony/Component/"
  3698. },
  3699. "classmap": [
  3700. "src/Symfony/Component/Intl/Resources/stubs"
  3701. ],
  3702. "exclude-from-classmap": [
  3703. "**/Tests/"
  3704. ]
  3705. },
  3706. "notification-url": "https://packagist.org/downloads/",
  3707. "license": [
  3708. "MIT"
  3709. ],
  3710. "authors": [
  3711. {
  3712. "name": "Fabien Potencier",
  3713. "email": "fabien@symfony.com"
  3714. },
  3715. {
  3716. "name": "Symfony Community",
  3717. "homepage": "https://symfony.com/contributors"
  3718. }
  3719. ],
  3720. "description": "The Symfony PHP framework",
  3721. "homepage": "https://symfony.com",
  3722. "keywords": [
  3723. "framework"
  3724. ],
  3725. "time": "2016-05-09 21:45:54"
  3726. },
  3727. {
  3728. "name": "twig/extensions",
  3729. "version": "v1.3.0",
  3730. "source": {
  3731. "type": "git",
  3732. "url": "https://github.com/twigphp/Twig-extensions.git",
  3733. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499"
  3734. },
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/449e3c8a9ffad7c2479c7864557275a32b037499",
  3738. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499",
  3739. "shasum": ""
  3740. },
  3741. "require": {
  3742. "twig/twig": "~1.20|~2.0"
  3743. },
  3744. "require-dev": {
  3745. "symfony/translation": "~2.3"
  3746. },
  3747. "suggest": {
  3748. "symfony/translation": "Allow the time_diff output to be translated"
  3749. },
  3750. "type": "library",
  3751. "extra": {
  3752. "branch-alias": {
  3753. "dev-master": "1.3-dev"
  3754. }
  3755. },
  3756. "autoload": {
  3757. "psr-0": {
  3758. "Twig_Extensions_": "lib/"
  3759. }
  3760. },
  3761. "notification-url": "https://packagist.org/downloads/",
  3762. "license": [
  3763. "MIT"
  3764. ],
  3765. "authors": [
  3766. {
  3767. "name": "Fabien Potencier",
  3768. "email": "fabien@symfony.com"
  3769. }
  3770. ],
  3771. "description": "Common additional features for Twig that do not directly belong in core",
  3772. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  3773. "keywords": [
  3774. "i18n",
  3775. "text"
  3776. ],
  3777. "time": "2015-08-22 16:38:35"
  3778. },
  3779. {
  3780. "name": "twig/twig",
  3781. "version": "v1.24.0",
  3782. "source": {
  3783. "type": "git",
  3784. "url": "https://github.com/twigphp/Twig.git",
  3785. "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8"
  3786. },
  3787. "dist": {
  3788. "type": "zip",
  3789. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
  3790. "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
  3791. "shasum": ""
  3792. },
  3793. "require": {
  3794. "php": ">=5.2.7"
  3795. },
  3796. "require-dev": {
  3797. "symfony/debug": "~2.7",
  3798. "symfony/phpunit-bridge": "~2.7"
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-master": "1.24-dev"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "psr-0": {
  3808. "Twig_": "lib/"
  3809. }
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "BSD-3-Clause"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "Fabien Potencier",
  3818. "email": "fabien@symfony.com",
  3819. "homepage": "http://fabien.potencier.org",
  3820. "role": "Lead Developer"
  3821. },
  3822. {
  3823. "name": "Armin Ronacher",
  3824. "email": "armin.ronacher@active-4.com",
  3825. "role": "Project Founder"
  3826. },
  3827. {
  3828. "name": "Twig Team",
  3829. "homepage": "http://twig.sensiolabs.org/contributors",
  3830. "role": "Contributors"
  3831. }
  3832. ],
  3833. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3834. "homepage": "http://twig.sensiolabs.org",
  3835. "keywords": [
  3836. "templating"
  3837. ],
  3838. "time": "2016-01-25 21:22:18"
  3839. },
  3840. {
  3841. "name": "white-october/pagerfanta-bundle",
  3842. "version": "v1.0.6",
  3843. "source": {
  3844. "type": "git",
  3845. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  3846. "reference": "ada62843d9ba0d3aa61d0dcc7becdb25a2e2f545"
  3847. },
  3848. "dist": {
  3849. "type": "zip",
  3850. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/ada62843d9ba0d3aa61d0dcc7becdb25a2e2f545",
  3851. "reference": "ada62843d9ba0d3aa61d0dcc7becdb25a2e2f545",
  3852. "shasum": ""
  3853. },
  3854. "require": {
  3855. "pagerfanta/pagerfanta": "1.0.*",
  3856. "symfony/framework-bundle": "~2.3|~3.0",
  3857. "symfony/property-access": "~2.3|~3.0",
  3858. "symfony/twig-bundle": "~2.3|~3.0"
  3859. },
  3860. "require-dev": {
  3861. "phpunit/phpunit": "~3.7",
  3862. "symfony/symfony": "~2.3|~3.0"
  3863. },
  3864. "type": "symfony-bundle",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-master": "1.0.x-dev"
  3868. }
  3869. },
  3870. "autoload": {
  3871. "psr-4": {
  3872. "WhiteOctober\\PagerfantaBundle\\": ""
  3873. }
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Pablo Díez",
  3882. "email": "pablodip@gmail.com"
  3883. }
  3884. ],
  3885. "description": "Bundle to use Pagerfanta with Symfony2",
  3886. "keywords": [
  3887. "page",
  3888. "paging"
  3889. ],
  3890. "time": "2016-03-16 19:24:56"
  3891. },
  3892. {
  3893. "name": "zendframework/zend-escaper",
  3894. "version": "2.5.1",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://github.com/zendframework/zend-escaper.git",
  3898. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73"
  3899. },
  3900. "dist": {
  3901. "type": "zip",
  3902. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3903. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3904. "shasum": ""
  3905. },
  3906. "require": {
  3907. "php": ">=5.3.23"
  3908. },
  3909. "require-dev": {
  3910. "fabpot/php-cs-fixer": "1.7.*",
  3911. "phpunit/phpunit": "~4.0"
  3912. },
  3913. "type": "library",
  3914. "extra": {
  3915. "branch-alias": {
  3916. "dev-master": "2.5-dev",
  3917. "dev-develop": "2.6-dev"
  3918. }
  3919. },
  3920. "autoload": {
  3921. "psr-4": {
  3922. "Zend\\Escaper\\": "src/"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "BSD-3-Clause"
  3928. ],
  3929. "homepage": "https://github.com/zendframework/zend-escaper",
  3930. "keywords": [
  3931. "escaper",
  3932. "zf2"
  3933. ],
  3934. "time": "2015-06-03 14:05:37"
  3935. },
  3936. {
  3937. "name": "zendframework/zend-feed",
  3938. "version": "2.7.0",
  3939. "source": {
  3940. "type": "git",
  3941. "url": "https://github.com/zendframework/zend-feed.git",
  3942. "reference": "12b328d382aa5200f1de53d4147033b885776b67"
  3943. },
  3944. "dist": {
  3945. "type": "zip",
  3946. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/12b328d382aa5200f1de53d4147033b885776b67",
  3947. "reference": "12b328d382aa5200f1de53d4147033b885776b67",
  3948. "shasum": ""
  3949. },
  3950. "require": {
  3951. "php": "^5.5 || ^7.0",
  3952. "zendframework/zend-escaper": "^2.5",
  3953. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  3954. },
  3955. "require-dev": {
  3956. "fabpot/php-cs-fixer": "1.7.*",
  3957. "phpunit/phpunit": "~4.0",
  3958. "psr/http-message": "^1.0",
  3959. "zendframework/zend-cache": "^2.5",
  3960. "zendframework/zend-db": "^2.5",
  3961. "zendframework/zend-http": "^2.5",
  3962. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  3963. "zendframework/zend-validator": "^2.5"
  3964. },
  3965. "suggest": {
  3966. "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  3967. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  3968. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  3969. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  3970. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  3971. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
  3972. },
  3973. "type": "library",
  3974. "extra": {
  3975. "branch-alias": {
  3976. "dev-master": "2.7-dev",
  3977. "dev-develop": "2.8-dev"
  3978. }
  3979. },
  3980. "autoload": {
  3981. "psr-4": {
  3982. "Zend\\Feed\\": "src/"
  3983. }
  3984. },
  3985. "notification-url": "https://packagist.org/downloads/",
  3986. "license": [
  3987. "BSD-3-Clause"
  3988. ],
  3989. "description": "provides functionality for consuming RSS and Atom feeds",
  3990. "homepage": "https://github.com/zendframework/zend-feed",
  3991. "keywords": [
  3992. "feed",
  3993. "zf2"
  3994. ],
  3995. "time": "2016-02-11 18:54:29"
  3996. },
  3997. {
  3998. "name": "zendframework/zend-json",
  3999. "version": "2.6.1",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://github.com/zendframework/zend-json.git",
  4003. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28"
  4004. },
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4008. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4009. "shasum": ""
  4010. },
  4011. "require": {
  4012. "php": "^5.5 || ^7.0"
  4013. },
  4014. "require-dev": {
  4015. "fabpot/php-cs-fixer": "1.7.*",
  4016. "phpunit/phpunit": "~4.0",
  4017. "zendframework/zend-http": "^2.5.4",
  4018. "zendframework/zend-server": "^2.6.1",
  4019. "zendframework/zend-stdlib": "^2.5 || ^3.0",
  4020. "zendframework/zendxml": "^1.0.2"
  4021. },
  4022. "suggest": {
  4023. "zendframework/zend-http": "Zend\\Http component, required to use Zend\\Json\\Server",
  4024. "zendframework/zend-server": "Zend\\Server component, required to use Zend\\Json\\Server",
  4025. "zendframework/zend-stdlib": "Zend\\Stdlib component, for use with caching Zend\\Json\\Server responses",
  4026. "zendframework/zendxml": "To support Zend\\Json\\Json::fromXml() usage"
  4027. },
  4028. "type": "library",
  4029. "extra": {
  4030. "branch-alias": {
  4031. "dev-master": "2.6-dev",
  4032. "dev-develop": "2.7-dev"
  4033. }
  4034. },
  4035. "autoload": {
  4036. "psr-4": {
  4037. "Zend\\Json\\": "src/"
  4038. }
  4039. },
  4040. "notification-url": "https://packagist.org/downloads/",
  4041. "license": [
  4042. "BSD-3-Clause"
  4043. ],
  4044. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  4045. "homepage": "https://github.com/zendframework/zend-json",
  4046. "keywords": [
  4047. "json",
  4048. "zf2"
  4049. ],
  4050. "time": "2016-02-04 21:20:26"
  4051. },
  4052. {
  4053. "name": "zendframework/zend-servicemanager",
  4054. "version": "2.7.6",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/zendframework/zend-servicemanager.git",
  4058. "reference": "a6db4d13b9141fccce5dcb553df0295d6ad7d477"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/a6db4d13b9141fccce5dcb553df0295d6ad7d477",
  4063. "reference": "a6db4d13b9141fccce5dcb553df0295d6ad7d477",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "container-interop/container-interop": "~1.0",
  4068. "php": "^5.5 || ^7.0"
  4069. },
  4070. "require-dev": {
  4071. "athletic/athletic": "dev-master",
  4072. "fabpot/php-cs-fixer": "1.7.*",
  4073. "phpunit/phpunit": "~4.0",
  4074. "zendframework/zend-di": "~2.5",
  4075. "zendframework/zend-mvc": "~2.5"
  4076. },
  4077. "suggest": {
  4078. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  4079. "zendframework/zend-di": "Zend\\Di component"
  4080. },
  4081. "type": "library",
  4082. "extra": {
  4083. "branch-alias": {
  4084. "dev-master": "2.7-dev",
  4085. "dev-develop": "3.0-dev"
  4086. }
  4087. },
  4088. "autoload": {
  4089. "psr-4": {
  4090. "Zend\\ServiceManager\\": "src/"
  4091. }
  4092. },
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "BSD-3-Clause"
  4096. ],
  4097. "homepage": "https://github.com/zendframework/zend-servicemanager",
  4098. "keywords": [
  4099. "servicemanager",
  4100. "zf2"
  4101. ],
  4102. "time": "2016-04-27 19:07:40"
  4103. },
  4104. {
  4105. "name": "zendframework/zend-stdlib",
  4106. "version": "3.0.1",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/zendframework/zend-stdlib.git",
  4110. "reference": "8bafa58574204bdff03c275d1d618aaa601588ae"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/8bafa58574204bdff03c275d1d618aaa601588ae",
  4115. "reference": "8bafa58574204bdff03c275d1d618aaa601588ae",
  4116. "shasum": ""
  4117. },
  4118. "require": {
  4119. "php": "^5.5 || ^7.0"
  4120. },
  4121. "require-dev": {
  4122. "athletic/athletic": "~0.1",
  4123. "fabpot/php-cs-fixer": "1.7.*",
  4124. "phpunit/phpunit": "~4.0"
  4125. },
  4126. "type": "library",
  4127. "extra": {
  4128. "branch-alias": {
  4129. "dev-master": "3.0-dev",
  4130. "dev-develop": "3.1-dev"
  4131. }
  4132. },
  4133. "autoload": {
  4134. "psr-4": {
  4135. "Zend\\Stdlib\\": "src/"
  4136. }
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "BSD-3-Clause"
  4141. ],
  4142. "homepage": "https://github.com/zendframework/zend-stdlib",
  4143. "keywords": [
  4144. "stdlib",
  4145. "zf2"
  4146. ],
  4147. "time": "2016-04-12 21:19:36"
  4148. },
  4149. {
  4150. "name": "zendframework/zend-uri",
  4151. "version": "2.5.2",
  4152. "source": {
  4153. "type": "git",
  4154. "url": "https://github.com/zendframework/zend-uri.git",
  4155. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed"
  4156. },
  4157. "dist": {
  4158. "type": "zip",
  4159. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/0bf717a239432b1a1675ae314f7c4acd742749ed",
  4160. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed",
  4161. "shasum": ""
  4162. },
  4163. "require": {
  4164. "php": "^5.5 || ^7.0",
  4165. "zendframework/zend-escaper": "^2.5",
  4166. "zendframework/zend-validator": "^2.5"
  4167. },
  4168. "require-dev": {
  4169. "fabpot/php-cs-fixer": "1.7.*",
  4170. "phpunit/phpunit": "~4.0"
  4171. },
  4172. "type": "library",
  4173. "extra": {
  4174. "branch-alias": {
  4175. "dev-master": "2.5-dev",
  4176. "dev-develop": "2.6-dev"
  4177. }
  4178. },
  4179. "autoload": {
  4180. "psr-4": {
  4181. "Zend\\Uri\\": "src/"
  4182. }
  4183. },
  4184. "notification-url": "https://packagist.org/downloads/",
  4185. "license": [
  4186. "BSD-3-Clause"
  4187. ],
  4188. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  4189. "homepage": "https://github.com/zendframework/zend-uri",
  4190. "keywords": [
  4191. "uri",
  4192. "zf2"
  4193. ],
  4194. "time": "2016-02-17 22:38:51"
  4195. },
  4196. {
  4197. "name": "zendframework/zend-validator",
  4198. "version": "2.7.2",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://github.com/zendframework/zend-validator.git",
  4202. "reference": "063694d3c781f284ab8f846b8af64c45d94aaf51"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/063694d3c781f284ab8f846b8af64c45d94aaf51",
  4207. "reference": "063694d3c781f284ab8f846b8af64c45d94aaf51",
  4208. "shasum": ""
  4209. },
  4210. "require": {
  4211. "container-interop/container-interop": "^1.1",
  4212. "php": "^5.5 || ^7.0",
  4213. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4214. },
  4215. "require-dev": {
  4216. "fabpot/php-cs-fixer": "1.7.*",
  4217. "phpunit/phpunit": "^4.0",
  4218. "zendframework/zend-cache": "^2.6.1",
  4219. "zendframework/zend-config": "^2.6",
  4220. "zendframework/zend-db": "^2.7",
  4221. "zendframework/zend-filter": "^2.6",
  4222. "zendframework/zend-http": "^2.5.4",
  4223. "zendframework/zend-i18n": "^2.6",
  4224. "zendframework/zend-math": "^2.6",
  4225. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4226. "zendframework/zend-session": "^2.6.2",
  4227. "zendframework/zend-uri": "^2.5"
  4228. },
  4229. "suggest": {
  4230. "zendframework/zend-db": "Zend\\Db component",
  4231. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  4232. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  4233. "zendframework/zend-i18n-resources": "Translations of validator messages",
  4234. "zendframework/zend-math": "Zend\\Math component",
  4235. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  4236. "zendframework/zend-session": "Zend\\Session component",
  4237. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  4238. },
  4239. "type": "library",
  4240. "extra": {
  4241. "branch-alias": {
  4242. "dev-master": "2.7-dev",
  4243. "dev-develop": "2.8-dev"
  4244. },
  4245. "zf": {
  4246. "component": "Zend\\Validator",
  4247. "config-provider": "Zend\\Validator\\ConfigProvider"
  4248. }
  4249. },
  4250. "autoload": {
  4251. "psr-4": {
  4252. "Zend\\Validator\\": "src/"
  4253. }
  4254. },
  4255. "notification-url": "https://packagist.org/downloads/",
  4256. "license": [
  4257. "BSD-3-Clause"
  4258. ],
  4259. "description": "provides a set of commonly needed validators",
  4260. "homepage": "https://github.com/zendframework/zend-validator",
  4261. "keywords": [
  4262. "validator",
  4263. "zf2"
  4264. ],
  4265. "time": "2016-04-18 17:28:37"
  4266. },
  4267. {
  4268. "name": "zendframework/zend-version",
  4269. "version": "2.5.1",
  4270. "source": {
  4271. "type": "git",
  4272. "url": "https://github.com/zendframework/zend-version.git",
  4273. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08"
  4274. },
  4275. "dist": {
  4276. "type": "zip",
  4277. "url": "https://api.github.com/repos/zendframework/zend-version/zipball/e30c55dc394eaf396f0347887af0a7bef471fe08",
  4278. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08",
  4279. "shasum": ""
  4280. },
  4281. "require": {
  4282. "php": ">=5.3.23",
  4283. "zendframework/zend-json": "~2.5"
  4284. },
  4285. "require-dev": {
  4286. "fabpot/php-cs-fixer": "1.7.*",
  4287. "phpunit/phpunit": "~4.0",
  4288. "zendframework/zend-http": "~2.5"
  4289. },
  4290. "suggest": {
  4291. "zendframework/zend-http": "Allows use of Zend\\Http\\Client to check version information",
  4292. "zendframework/zend-json": "To check latest version hosted in GitHub"
  4293. },
  4294. "type": "library",
  4295. "extra": {
  4296. "branch-alias": {
  4297. "dev-master": "2.5-dev",
  4298. "dev-develop": "2.6-dev"
  4299. }
  4300. },
  4301. "autoload": {
  4302. "psr-4": {
  4303. "Zend\\Version\\": "src/"
  4304. }
  4305. },
  4306. "notification-url": "https://packagist.org/downloads/",
  4307. "license": [
  4308. "BSD-3-Clause"
  4309. ],
  4310. "homepage": "https://github.com/zendframework/zend-version",
  4311. "keywords": [
  4312. "version",
  4313. "zf2"
  4314. ],
  4315. "time": "2015-06-04 15:41:05"
  4316. }
  4317. ],
  4318. "packages-dev": [
  4319. {
  4320. "name": "myclabs/deep-copy",
  4321. "version": "1.5.1",
  4322. "source": {
  4323. "type": "git",
  4324. "url": "https://github.com/myclabs/DeepCopy.git",
  4325. "reference": "a8773992b362b58498eed24bf85005f363c34771"
  4326. },
  4327. "dist": {
  4328. "type": "zip",
  4329. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/a8773992b362b58498eed24bf85005f363c34771",
  4330. "reference": "a8773992b362b58498eed24bf85005f363c34771",
  4331. "shasum": ""
  4332. },
  4333. "require": {
  4334. "php": ">=5.4.0"
  4335. },
  4336. "require-dev": {
  4337. "doctrine/collections": "1.*",
  4338. "phpunit/phpunit": "~4.1"
  4339. },
  4340. "type": "library",
  4341. "autoload": {
  4342. "psr-4": {
  4343. "DeepCopy\\": "src/DeepCopy/"
  4344. }
  4345. },
  4346. "notification-url": "https://packagist.org/downloads/",
  4347. "license": [
  4348. "MIT"
  4349. ],
  4350. "description": "Create deep copies (clones) of your objects",
  4351. "homepage": "https://github.com/myclabs/DeepCopy",
  4352. "keywords": [
  4353. "clone",
  4354. "copy",
  4355. "duplicate",
  4356. "object",
  4357. "object graph"
  4358. ],
  4359. "time": "2015-11-20 12:04:31"
  4360. },
  4361. {
  4362. "name": "phpdocumentor/reflection-docblock",
  4363. "version": "2.0.4",
  4364. "source": {
  4365. "type": "git",
  4366. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4367. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
  4368. },
  4369. "dist": {
  4370. "type": "zip",
  4371. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
  4372. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
  4373. "shasum": ""
  4374. },
  4375. "require": {
  4376. "php": ">=5.3.3"
  4377. },
  4378. "require-dev": {
  4379. "phpunit/phpunit": "~4.0"
  4380. },
  4381. "suggest": {
  4382. "dflydev/markdown": "~1.0",
  4383. "erusev/parsedown": "~1.0"
  4384. },
  4385. "type": "library",
  4386. "extra": {
  4387. "branch-alias": {
  4388. "dev-master": "2.0.x-dev"
  4389. }
  4390. },
  4391. "autoload": {
  4392. "psr-0": {
  4393. "phpDocumentor": [
  4394. "src/"
  4395. ]
  4396. }
  4397. },
  4398. "notification-url": "https://packagist.org/downloads/",
  4399. "license": [
  4400. "MIT"
  4401. ],
  4402. "authors": [
  4403. {
  4404. "name": "Mike van Riel",
  4405. "email": "mike.vanriel@naenius.com"
  4406. }
  4407. ],
  4408. "time": "2015-02-03 12:10:50"
  4409. },
  4410. {
  4411. "name": "phpspec/prophecy",
  4412. "version": "v1.6.0",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://github.com/phpspec/prophecy.git",
  4416. "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/3c91bdf81797d725b14cb62906f9a4ce44235972",
  4421. "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972",
  4422. "shasum": ""
  4423. },
  4424. "require": {
  4425. "doctrine/instantiator": "^1.0.2",
  4426. "php": "^5.3|^7.0",
  4427. "phpdocumentor/reflection-docblock": "~2.0",
  4428. "sebastian/comparator": "~1.1",
  4429. "sebastian/recursion-context": "~1.0"
  4430. },
  4431. "require-dev": {
  4432. "phpspec/phpspec": "~2.0"
  4433. },
  4434. "type": "library",
  4435. "extra": {
  4436. "branch-alias": {
  4437. "dev-master": "1.5.x-dev"
  4438. }
  4439. },
  4440. "autoload": {
  4441. "psr-0": {
  4442. "Prophecy\\": "src/"
  4443. }
  4444. },
  4445. "notification-url": "https://packagist.org/downloads/",
  4446. "license": [
  4447. "MIT"
  4448. ],
  4449. "authors": [
  4450. {
  4451. "name": "Konstantin Kudryashov",
  4452. "email": "ever.zet@gmail.com",
  4453. "homepage": "http://everzet.com"
  4454. },
  4455. {
  4456. "name": "Marcello Duarte",
  4457. "email": "marcello.duarte@gmail.com"
  4458. }
  4459. ],
  4460. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4461. "homepage": "https://github.com/phpspec/prophecy",
  4462. "keywords": [
  4463. "Double",
  4464. "Dummy",
  4465. "fake",
  4466. "mock",
  4467. "spy",
  4468. "stub"
  4469. ],
  4470. "time": "2016-02-15 07:46:21"
  4471. },
  4472. {
  4473. "name": "phpunit/php-code-coverage",
  4474. "version": "3.3.1",
  4475. "source": {
  4476. "type": "git",
  4477. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4478. "reference": "2431befdd451fac43fbcde94d1a92fb3b8b68f86"
  4479. },
  4480. "dist": {
  4481. "type": "zip",
  4482. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2431befdd451fac43fbcde94d1a92fb3b8b68f86",
  4483. "reference": "2431befdd451fac43fbcde94d1a92fb3b8b68f86",
  4484. "shasum": ""
  4485. },
  4486. "require": {
  4487. "php": "^5.6 || ^7.0",
  4488. "phpunit/php-file-iterator": "~1.3",
  4489. "phpunit/php-text-template": "~1.2",
  4490. "phpunit/php-token-stream": "^1.4.2",
  4491. "sebastian/code-unit-reverse-lookup": "~1.0",
  4492. "sebastian/environment": "^1.3.2",
  4493. "sebastian/version": "~1.0|~2.0"
  4494. },
  4495. "require-dev": {
  4496. "ext-xdebug": ">=2.1.4",
  4497. "phpunit/phpunit": "~5"
  4498. },
  4499. "suggest": {
  4500. "ext-dom": "*",
  4501. "ext-xdebug": ">=2.4.0",
  4502. "ext-xmlwriter": "*"
  4503. },
  4504. "type": "library",
  4505. "extra": {
  4506. "branch-alias": {
  4507. "dev-master": "3.3.x-dev"
  4508. }
  4509. },
  4510. "autoload": {
  4511. "classmap": [
  4512. "src/"
  4513. ]
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "BSD-3-Clause"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Sebastian Bergmann",
  4522. "email": "sb@sebastian-bergmann.de",
  4523. "role": "lead"
  4524. }
  4525. ],
  4526. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4527. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4528. "keywords": [
  4529. "coverage",
  4530. "testing",
  4531. "xunit"
  4532. ],
  4533. "time": "2016-04-08 08:14:53"
  4534. },
  4535. {
  4536. "name": "phpunit/php-file-iterator",
  4537. "version": "1.4.1",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4541. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4546. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4547. "shasum": ""
  4548. },
  4549. "require": {
  4550. "php": ">=5.3.3"
  4551. },
  4552. "type": "library",
  4553. "extra": {
  4554. "branch-alias": {
  4555. "dev-master": "1.4.x-dev"
  4556. }
  4557. },
  4558. "autoload": {
  4559. "classmap": [
  4560. "src/"
  4561. ]
  4562. },
  4563. "notification-url": "https://packagist.org/downloads/",
  4564. "license": [
  4565. "BSD-3-Clause"
  4566. ],
  4567. "authors": [
  4568. {
  4569. "name": "Sebastian Bergmann",
  4570. "email": "sb@sebastian-bergmann.de",
  4571. "role": "lead"
  4572. }
  4573. ],
  4574. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4575. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4576. "keywords": [
  4577. "filesystem",
  4578. "iterator"
  4579. ],
  4580. "time": "2015-06-21 13:08:43"
  4581. },
  4582. {
  4583. "name": "phpunit/php-text-template",
  4584. "version": "1.2.1",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4588. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4593. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4594. "shasum": ""
  4595. },
  4596. "require": {
  4597. "php": ">=5.3.3"
  4598. },
  4599. "type": "library",
  4600. "autoload": {
  4601. "classmap": [
  4602. "src/"
  4603. ]
  4604. },
  4605. "notification-url": "https://packagist.org/downloads/",
  4606. "license": [
  4607. "BSD-3-Clause"
  4608. ],
  4609. "authors": [
  4610. {
  4611. "name": "Sebastian Bergmann",
  4612. "email": "sebastian@phpunit.de",
  4613. "role": "lead"
  4614. }
  4615. ],
  4616. "description": "Simple template engine.",
  4617. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4618. "keywords": [
  4619. "template"
  4620. ],
  4621. "time": "2015-06-21 13:50:34"
  4622. },
  4623. {
  4624. "name": "phpunit/php-timer",
  4625. "version": "1.0.7",
  4626. "source": {
  4627. "type": "git",
  4628. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4629. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b"
  4630. },
  4631. "dist": {
  4632. "type": "zip",
  4633. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  4634. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  4635. "shasum": ""
  4636. },
  4637. "require": {
  4638. "php": ">=5.3.3"
  4639. },
  4640. "type": "library",
  4641. "autoload": {
  4642. "classmap": [
  4643. "src/"
  4644. ]
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "BSD-3-Clause"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "Sebastian Bergmann",
  4653. "email": "sb@sebastian-bergmann.de",
  4654. "role": "lead"
  4655. }
  4656. ],
  4657. "description": "Utility class for timing",
  4658. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4659. "keywords": [
  4660. "timer"
  4661. ],
  4662. "time": "2015-06-21 08:01:12"
  4663. },
  4664. {
  4665. "name": "phpunit/php-token-stream",
  4666. "version": "1.4.8",
  4667. "source": {
  4668. "type": "git",
  4669. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4670. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  4671. },
  4672. "dist": {
  4673. "type": "zip",
  4674. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4675. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4676. "shasum": ""
  4677. },
  4678. "require": {
  4679. "ext-tokenizer": "*",
  4680. "php": ">=5.3.3"
  4681. },
  4682. "require-dev": {
  4683. "phpunit/phpunit": "~4.2"
  4684. },
  4685. "type": "library",
  4686. "extra": {
  4687. "branch-alias": {
  4688. "dev-master": "1.4-dev"
  4689. }
  4690. },
  4691. "autoload": {
  4692. "classmap": [
  4693. "src/"
  4694. ]
  4695. },
  4696. "notification-url": "https://packagist.org/downloads/",
  4697. "license": [
  4698. "BSD-3-Clause"
  4699. ],
  4700. "authors": [
  4701. {
  4702. "name": "Sebastian Bergmann",
  4703. "email": "sebastian@phpunit.de"
  4704. }
  4705. ],
  4706. "description": "Wrapper around PHP's tokenizer extension.",
  4707. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4708. "keywords": [
  4709. "tokenizer"
  4710. ],
  4711. "time": "2015-09-15 10:49:45"
  4712. },
  4713. {
  4714. "name": "phpunit/phpunit",
  4715. "version": "5.3.2",
  4716. "source": {
  4717. "type": "git",
  4718. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4719. "reference": "2c6da3536035617bae3fe3db37283c9e0eb63ab3"
  4720. },
  4721. "dist": {
  4722. "type": "zip",
  4723. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2c6da3536035617bae3fe3db37283c9e0eb63ab3",
  4724. "reference": "2c6da3536035617bae3fe3db37283c9e0eb63ab3",
  4725. "shasum": ""
  4726. },
  4727. "require": {
  4728. "ext-dom": "*",
  4729. "ext-json": "*",
  4730. "ext-pcre": "*",
  4731. "ext-reflection": "*",
  4732. "ext-spl": "*",
  4733. "myclabs/deep-copy": "~1.3",
  4734. "php": "^5.6 || ^7.0",
  4735. "phpspec/prophecy": "^1.3.1",
  4736. "phpunit/php-code-coverage": "^3.3.0",
  4737. "phpunit/php-file-iterator": "~1.4",
  4738. "phpunit/php-text-template": "~1.2",
  4739. "phpunit/php-timer": "^1.0.6",
  4740. "phpunit/phpunit-mock-objects": "^3.1",
  4741. "sebastian/comparator": "~1.1",
  4742. "sebastian/diff": "~1.2",
  4743. "sebastian/environment": "~1.3",
  4744. "sebastian/exporter": "~1.2",
  4745. "sebastian/global-state": "~1.0",
  4746. "sebastian/object-enumerator": "~1.0",
  4747. "sebastian/resource-operations": "~1.0",
  4748. "sebastian/version": "~1.0|~2.0",
  4749. "symfony/yaml": "~2.1|~3.0"
  4750. },
  4751. "suggest": {
  4752. "phpunit/php-invoker": "~1.1"
  4753. },
  4754. "bin": [
  4755. "phpunit"
  4756. ],
  4757. "type": "library",
  4758. "extra": {
  4759. "branch-alias": {
  4760. "dev-master": "5.3.x-dev"
  4761. }
  4762. },
  4763. "autoload": {
  4764. "classmap": [
  4765. "src/"
  4766. ]
  4767. },
  4768. "notification-url": "https://packagist.org/downloads/",
  4769. "license": [
  4770. "BSD-3-Clause"
  4771. ],
  4772. "authors": [
  4773. {
  4774. "name": "Sebastian Bergmann",
  4775. "email": "sebastian@phpunit.de",
  4776. "role": "lead"
  4777. }
  4778. ],
  4779. "description": "The PHP Unit Testing framework.",
  4780. "homepage": "https://phpunit.de/",
  4781. "keywords": [
  4782. "phpunit",
  4783. "testing",
  4784. "xunit"
  4785. ],
  4786. "time": "2016-04-12 16:20:08"
  4787. },
  4788. {
  4789. "name": "phpunit/phpunit-mock-objects",
  4790. "version": "3.1.3",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  4794. "reference": "151c96874bff6fe61a25039df60e776613a61489"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/151c96874bff6fe61a25039df60e776613a61489",
  4799. "reference": "151c96874bff6fe61a25039df60e776613a61489",
  4800. "shasum": ""
  4801. },
  4802. "require": {
  4803. "doctrine/instantiator": "^1.0.2",
  4804. "php": ">=5.6",
  4805. "phpunit/php-text-template": "~1.2",
  4806. "sebastian/exporter": "~1.2"
  4807. },
  4808. "require-dev": {
  4809. "phpunit/phpunit": "~5"
  4810. },
  4811. "suggest": {
  4812. "ext-soap": "*"
  4813. },
  4814. "type": "library",
  4815. "extra": {
  4816. "branch-alias": {
  4817. "dev-master": "3.1.x-dev"
  4818. }
  4819. },
  4820. "autoload": {
  4821. "classmap": [
  4822. "src/"
  4823. ]
  4824. },
  4825. "notification-url": "https://packagist.org/downloads/",
  4826. "license": [
  4827. "BSD-3-Clause"
  4828. ],
  4829. "authors": [
  4830. {
  4831. "name": "Sebastian Bergmann",
  4832. "email": "sb@sebastian-bergmann.de",
  4833. "role": "lead"
  4834. }
  4835. ],
  4836. "description": "Mock Object library for PHPUnit",
  4837. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  4838. "keywords": [
  4839. "mock",
  4840. "xunit"
  4841. ],
  4842. "time": "2016-04-20 14:39:26"
  4843. },
  4844. {
  4845. "name": "sebastian/code-unit-reverse-lookup",
  4846. "version": "1.0.0",
  4847. "source": {
  4848. "type": "git",
  4849. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4850. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
  4851. },
  4852. "dist": {
  4853. "type": "zip",
  4854. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  4855. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  4856. "shasum": ""
  4857. },
  4858. "require": {
  4859. "php": ">=5.6"
  4860. },
  4861. "require-dev": {
  4862. "phpunit/phpunit": "~5"
  4863. },
  4864. "type": "library",
  4865. "extra": {
  4866. "branch-alias": {
  4867. "dev-master": "1.0.x-dev"
  4868. }
  4869. },
  4870. "autoload": {
  4871. "classmap": [
  4872. "src/"
  4873. ]
  4874. },
  4875. "notification-url": "https://packagist.org/downloads/",
  4876. "license": [
  4877. "BSD-3-Clause"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Sebastian Bergmann",
  4882. "email": "sebastian@phpunit.de"
  4883. }
  4884. ],
  4885. "description": "Looks up which function or method a line of code belongs to",
  4886. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4887. "time": "2016-02-13 06:45:14"
  4888. },
  4889. {
  4890. "name": "sebastian/comparator",
  4891. "version": "1.2.0",
  4892. "source": {
  4893. "type": "git",
  4894. "url": "https://github.com/sebastianbergmann/comparator.git",
  4895. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  4896. },
  4897. "dist": {
  4898. "type": "zip",
  4899. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  4900. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  4901. "shasum": ""
  4902. },
  4903. "require": {
  4904. "php": ">=5.3.3",
  4905. "sebastian/diff": "~1.2",
  4906. "sebastian/exporter": "~1.2"
  4907. },
  4908. "require-dev": {
  4909. "phpunit/phpunit": "~4.4"
  4910. },
  4911. "type": "library",
  4912. "extra": {
  4913. "branch-alias": {
  4914. "dev-master": "1.2.x-dev"
  4915. }
  4916. },
  4917. "autoload": {
  4918. "classmap": [
  4919. "src/"
  4920. ]
  4921. },
  4922. "notification-url": "https://packagist.org/downloads/",
  4923. "license": [
  4924. "BSD-3-Clause"
  4925. ],
  4926. "authors": [
  4927. {
  4928. "name": "Jeff Welch",
  4929. "email": "whatthejeff@gmail.com"
  4930. },
  4931. {
  4932. "name": "Volker Dusch",
  4933. "email": "github@wallbash.com"
  4934. },
  4935. {
  4936. "name": "Bernhard Schussek",
  4937. "email": "bschussek@2bepublished.at"
  4938. },
  4939. {
  4940. "name": "Sebastian Bergmann",
  4941. "email": "sebastian@phpunit.de"
  4942. }
  4943. ],
  4944. "description": "Provides the functionality to compare PHP values for equality",
  4945. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  4946. "keywords": [
  4947. "comparator",
  4948. "compare",
  4949. "equality"
  4950. ],
  4951. "time": "2015-07-26 15:48:44"
  4952. },
  4953. {
  4954. "name": "sebastian/diff",
  4955. "version": "1.4.1",
  4956. "source": {
  4957. "type": "git",
  4958. "url": "https://github.com/sebastianbergmann/diff.git",
  4959. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  4960. },
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  4964. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  4965. "shasum": ""
  4966. },
  4967. "require": {
  4968. "php": ">=5.3.3"
  4969. },
  4970. "require-dev": {
  4971. "phpunit/phpunit": "~4.8"
  4972. },
  4973. "type": "library",
  4974. "extra": {
  4975. "branch-alias": {
  4976. "dev-master": "1.4-dev"
  4977. }
  4978. },
  4979. "autoload": {
  4980. "classmap": [
  4981. "src/"
  4982. ]
  4983. },
  4984. "notification-url": "https://packagist.org/downloads/",
  4985. "license": [
  4986. "BSD-3-Clause"
  4987. ],
  4988. "authors": [
  4989. {
  4990. "name": "Kore Nordmann",
  4991. "email": "mail@kore-nordmann.de"
  4992. },
  4993. {
  4994. "name": "Sebastian Bergmann",
  4995. "email": "sebastian@phpunit.de"
  4996. }
  4997. ],
  4998. "description": "Diff implementation",
  4999. "homepage": "https://github.com/sebastianbergmann/diff",
  5000. "keywords": [
  5001. "diff"
  5002. ],
  5003. "time": "2015-12-08 07:14:41"
  5004. },
  5005. {
  5006. "name": "sebastian/environment",
  5007. "version": "1.3.6",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://github.com/sebastianbergmann/environment.git",
  5011. "reference": "2292b116f43c272ff4328083096114f84ea46a56"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/2292b116f43c272ff4328083096114f84ea46a56",
  5016. "reference": "2292b116f43c272ff4328083096114f84ea46a56",
  5017. "shasum": ""
  5018. },
  5019. "require": {
  5020. "php": ">=5.3.3"
  5021. },
  5022. "require-dev": {
  5023. "phpunit/phpunit": "~4.4"
  5024. },
  5025. "type": "library",
  5026. "extra": {
  5027. "branch-alias": {
  5028. "dev-master": "1.3.x-dev"
  5029. }
  5030. },
  5031. "autoload": {
  5032. "classmap": [
  5033. "src/"
  5034. ]
  5035. },
  5036. "notification-url": "https://packagist.org/downloads/",
  5037. "license": [
  5038. "BSD-3-Clause"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "Sebastian Bergmann",
  5043. "email": "sebastian@phpunit.de"
  5044. }
  5045. ],
  5046. "description": "Provides functionality to handle HHVM/PHP environments",
  5047. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5048. "keywords": [
  5049. "Xdebug",
  5050. "environment",
  5051. "hhvm"
  5052. ],
  5053. "time": "2016-05-04 07:59:13"
  5054. },
  5055. {
  5056. "name": "sebastian/exporter",
  5057. "version": "1.2.1",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/sebastianbergmann/exporter.git",
  5061. "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
  5066. "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
  5067. "shasum": ""
  5068. },
  5069. "require": {
  5070. "php": ">=5.3.3",
  5071. "sebastian/recursion-context": "~1.0"
  5072. },
  5073. "require-dev": {
  5074. "phpunit/phpunit": "~4.4"
  5075. },
  5076. "type": "library",
  5077. "extra": {
  5078. "branch-alias": {
  5079. "dev-master": "1.2.x-dev"
  5080. }
  5081. },
  5082. "autoload": {
  5083. "classmap": [
  5084. "src/"
  5085. ]
  5086. },
  5087. "notification-url": "https://packagist.org/downloads/",
  5088. "license": [
  5089. "BSD-3-Clause"
  5090. ],
  5091. "authors": [
  5092. {
  5093. "name": "Jeff Welch",
  5094. "email": "whatthejeff@gmail.com"
  5095. },
  5096. {
  5097. "name": "Volker Dusch",
  5098. "email": "github@wallbash.com"
  5099. },
  5100. {
  5101. "name": "Bernhard Schussek",
  5102. "email": "bschussek@2bepublished.at"
  5103. },
  5104. {
  5105. "name": "Sebastian Bergmann",
  5106. "email": "sebastian@phpunit.de"
  5107. },
  5108. {
  5109. "name": "Adam Harvey",
  5110. "email": "aharvey@php.net"
  5111. }
  5112. ],
  5113. "description": "Provides the functionality to export PHP variables for visualization",
  5114. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5115. "keywords": [
  5116. "export",
  5117. "exporter"
  5118. ],
  5119. "time": "2015-06-21 07:55:53"
  5120. },
  5121. {
  5122. "name": "sebastian/global-state",
  5123. "version": "1.1.1",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://github.com/sebastianbergmann/global-state.git",
  5127. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5132. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5133. "shasum": ""
  5134. },
  5135. "require": {
  5136. "php": ">=5.3.3"
  5137. },
  5138. "require-dev": {
  5139. "phpunit/phpunit": "~4.2"
  5140. },
  5141. "suggest": {
  5142. "ext-uopz": "*"
  5143. },
  5144. "type": "library",
  5145. "extra": {
  5146. "branch-alias": {
  5147. "dev-master": "1.0-dev"
  5148. }
  5149. },
  5150. "autoload": {
  5151. "classmap": [
  5152. "src/"
  5153. ]
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "BSD-3-Clause"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Sebastian Bergmann",
  5162. "email": "sebastian@phpunit.de"
  5163. }
  5164. ],
  5165. "description": "Snapshotting of global state",
  5166. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5167. "keywords": [
  5168. "global state"
  5169. ],
  5170. "time": "2015-10-12 03:26:01"
  5171. },
  5172. {
  5173. "name": "sebastian/object-enumerator",
  5174. "version": "1.0.0",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5178. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/d4ca2fb70344987502567bc50081c03e6192fb26",
  5183. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "php": ">=5.6",
  5188. "sebastian/recursion-context": "~1.0"
  5189. },
  5190. "require-dev": {
  5191. "phpunit/phpunit": "~5"
  5192. },
  5193. "type": "library",
  5194. "extra": {
  5195. "branch-alias": {
  5196. "dev-master": "1.0.x-dev"
  5197. }
  5198. },
  5199. "autoload": {
  5200. "classmap": [
  5201. "src/"
  5202. ]
  5203. },
  5204. "notification-url": "https://packagist.org/downloads/",
  5205. "license": [
  5206. "BSD-3-Clause"
  5207. ],
  5208. "authors": [
  5209. {
  5210. "name": "Sebastian Bergmann",
  5211. "email": "sebastian@phpunit.de"
  5212. }
  5213. ],
  5214. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5215. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5216. "time": "2016-01-28 13:25:10"
  5217. },
  5218. {
  5219. "name": "sebastian/recursion-context",
  5220. "version": "1.0.2",
  5221. "source": {
  5222. "type": "git",
  5223. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5224. "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
  5225. },
  5226. "dist": {
  5227. "type": "zip",
  5228. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
  5229. "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
  5230. "shasum": ""
  5231. },
  5232. "require": {
  5233. "php": ">=5.3.3"
  5234. },
  5235. "require-dev": {
  5236. "phpunit/phpunit": "~4.4"
  5237. },
  5238. "type": "library",
  5239. "extra": {
  5240. "branch-alias": {
  5241. "dev-master": "1.0.x-dev"
  5242. }
  5243. },
  5244. "autoload": {
  5245. "classmap": [
  5246. "src/"
  5247. ]
  5248. },
  5249. "notification-url": "https://packagist.org/downloads/",
  5250. "license": [
  5251. "BSD-3-Clause"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "Jeff Welch",
  5256. "email": "whatthejeff@gmail.com"
  5257. },
  5258. {
  5259. "name": "Sebastian Bergmann",
  5260. "email": "sebastian@phpunit.de"
  5261. },
  5262. {
  5263. "name": "Adam Harvey",
  5264. "email": "aharvey@php.net"
  5265. }
  5266. ],
  5267. "description": "Provides functionality to recursively process PHP variables",
  5268. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5269. "time": "2015-11-11 19:50:13"
  5270. },
  5271. {
  5272. "name": "sebastian/resource-operations",
  5273. "version": "1.0.0",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5277. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  5278. },
  5279. "dist": {
  5280. "type": "zip",
  5281. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5282. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5283. "shasum": ""
  5284. },
  5285. "require": {
  5286. "php": ">=5.6.0"
  5287. },
  5288. "type": "library",
  5289. "extra": {
  5290. "branch-alias": {
  5291. "dev-master": "1.0.x-dev"
  5292. }
  5293. },
  5294. "autoload": {
  5295. "classmap": [
  5296. "src/"
  5297. ]
  5298. },
  5299. "notification-url": "https://packagist.org/downloads/",
  5300. "license": [
  5301. "BSD-3-Clause"
  5302. ],
  5303. "authors": [
  5304. {
  5305. "name": "Sebastian Bergmann",
  5306. "email": "sebastian@phpunit.de"
  5307. }
  5308. ],
  5309. "description": "Provides a list of PHP built-in functions that operate on resources",
  5310. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5311. "time": "2015-07-28 20:34:47"
  5312. },
  5313. {
  5314. "name": "sebastian/version",
  5315. "version": "2.0.0",
  5316. "source": {
  5317. "type": "git",
  5318. "url": "https://github.com/sebastianbergmann/version.git",
  5319. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5"
  5320. },
  5321. "dist": {
  5322. "type": "zip",
  5323. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5324. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5325. "shasum": ""
  5326. },
  5327. "require": {
  5328. "php": ">=5.6"
  5329. },
  5330. "type": "library",
  5331. "extra": {
  5332. "branch-alias": {
  5333. "dev-master": "2.0.x-dev"
  5334. }
  5335. },
  5336. "autoload": {
  5337. "classmap": [
  5338. "src/"
  5339. ]
  5340. },
  5341. "notification-url": "https://packagist.org/downloads/",
  5342. "license": [
  5343. "BSD-3-Clause"
  5344. ],
  5345. "authors": [
  5346. {
  5347. "name": "Sebastian Bergmann",
  5348. "email": "sebastian@phpunit.de",
  5349. "role": "lead"
  5350. }
  5351. ],
  5352. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5353. "homepage": "https://github.com/sebastianbergmann/version",
  5354. "time": "2016-02-04 12:56:52"
  5355. },
  5356. {
  5357. "name": "symfony/phpunit-bridge",
  5358. "version": "v3.0.6",
  5359. "source": {
  5360. "type": "git",
  5361. "url": "https://github.com/symfony/phpunit-bridge.git",
  5362. "reference": "3231629ff97abccd60f93ff900accfb5b39c8200"
  5363. },
  5364. "dist": {
  5365. "type": "zip",
  5366. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/3231629ff97abccd60f93ff900accfb5b39c8200",
  5367. "reference": "3231629ff97abccd60f93ff900accfb5b39c8200",
  5368. "shasum": ""
  5369. },
  5370. "require": {
  5371. "php": ">=5.3.3"
  5372. },
  5373. "suggest": {
  5374. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  5375. },
  5376. "type": "symfony-bridge",
  5377. "extra": {
  5378. "branch-alias": {
  5379. "dev-master": "3.0-dev"
  5380. }
  5381. },
  5382. "autoload": {
  5383. "files": [
  5384. "bootstrap.php"
  5385. ],
  5386. "psr-4": {
  5387. "Symfony\\Bridge\\PhpUnit\\": ""
  5388. },
  5389. "exclude-from-classmap": [
  5390. "/Tests/"
  5391. ]
  5392. },
  5393. "notification-url": "https://packagist.org/downloads/",
  5394. "license": [
  5395. "MIT"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "Nicolas Grekas",
  5400. "email": "p@tchwork.com"
  5401. },
  5402. {
  5403. "name": "Symfony Community",
  5404. "homepage": "https://symfony.com/contributors"
  5405. }
  5406. ],
  5407. "description": "Symfony PHPUnit Bridge",
  5408. "homepage": "https://symfony.com",
  5409. "time": "2016-04-12 18:09:53"
  5410. }
  5411. ],
  5412. "aliases": [],
  5413. "minimum-stability": "stable",
  5414. "stability-flags": {
  5415. "composer/composer": 20,
  5416. "friendsofsymfony/user-bundle": 20
  5417. },
  5418. "prefer-stable": false,
  5419. "prefer-lowest": false,
  5420. "platform": {
  5421. "php": ">=5.6"
  5422. },
  5423. "platform-dev": []
  5424. }