composer.lock 190 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415
  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": "8581497d1edd0c07c843e7c5f5c3dca5",
  8. "content-hash": "391c40743569e2e8b2c93b92d1a4e218",
  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": "a31d0826f0bd15bac6fbed17c5b5b9c34289d9f3"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/composer/composer/zipball/a31d0826f0bd15bac6fbed17c5b5b9c34289d9f3",
  76. "reference": "a31d0826f0bd15bac6fbed17c5b5b9c34289d9f3",
  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-08 16:22:30"
  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.3",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/composer/spdx-licenses.git",
  210. "reference": "547659c3cacd3ccfe1b4714c2ff88cafc6b6793b"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/547659c3cacd3ccfe1b4714c2ff88cafc6b6793b",
  215. "reference": "547659c3cacd3ccfe1b4714c2ff88cafc6b6793b",
  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-03-25 10:57:10"
  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": "16b04c49af05dd3fb381e4abe04f0e5e231ac76d"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/FriendsOfSymfony/FOSUserBundle/zipball/16b04c49af05dd3fb381e4abe04f0e5e231ac76d",
  1113. "reference": "16b04c49af05dd3fb381e4abe04f0e5e231ac76d",
  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-03-08 11:05:28"
  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.0",
  1500. "source": {
  1501. "type": "git",
  1502. "url": "https://github.com/schmittjoh/JMSDiExtraBundle.git",
  1503. "reference": "85a989bedcf22495c03bf94339ddc5e856bd9b46"
  1504. },
  1505. "dist": {
  1506. "type": "zip",
  1507. "url": "https://api.github.com/repos/schmittjoh/JMSDiExtraBundle/zipball/85a989bedcf22495c03bf94339ddc5e856bd9b46",
  1508. "reference": "85a989bedcf22495c03bf94339ddc5e856bd9b46",
  1509. "shasum": ""
  1510. },
  1511. "require": {
  1512. "jms/aop-bundle": "~1.1",
  1513. "jms/metadata": "~1.0",
  1514. "symfony/dependency-injection": "~2.3|~3.0",
  1515. "symfony/finder": "~2.3|~3.0",
  1516. "symfony/framework-bundle": "~2.3|~3.0",
  1517. "symfony/http-kernel": "^2.3.24|~3.0",
  1518. "symfony/process": "~2.3|~3.0",
  1519. "symfony/routing": "~2.3|~3.0"
  1520. },
  1521. "require-dev": {
  1522. "doctrine/doctrine-bundle": "~1.5",
  1523. "doctrine/orm": "~2.3",
  1524. "jms/security-extra-bundle": "~1.0@dev",
  1525. "phpcollection/phpcollection": ">=0.2,<0.3-dev",
  1526. "sensio/framework-extra-bundle": "~2.0|~3.0",
  1527. "symfony/browser-kit": "~2.3|~3.0",
  1528. "symfony/class-loader": "~2.3|~3.0",
  1529. "symfony/form": "~2.3|~3.0",
  1530. "symfony/phpunit-bridge": "~2.7",
  1531. "symfony/security-bundle": "~2.3",
  1532. "symfony/twig-bundle": "~2.3|~3.0",
  1533. "symfony/validator": "~2.3|~3.0",
  1534. "symfony/yaml": "~2.3|~3.0"
  1535. },
  1536. "type": "symfony-bundle",
  1537. "extra": {
  1538. "branch-alias": {
  1539. "dev-master": "1.7-dev"
  1540. }
  1541. },
  1542. "autoload": {
  1543. "psr-4": {
  1544. "JMS\\DiExtraBundle\\": ""
  1545. }
  1546. },
  1547. "notification-url": "https://packagist.org/downloads/",
  1548. "license": [
  1549. "Apache-2.0"
  1550. ],
  1551. "authors": [
  1552. {
  1553. "name": "Johannes M. Schmitt",
  1554. "email": "schmittjoh@gmail.com"
  1555. }
  1556. ],
  1557. "description": "Allows to configure dependency injection using annotations",
  1558. "homepage": "http://jmsyst.com/bundles/JMSDiExtraBundle",
  1559. "keywords": [
  1560. "annotations",
  1561. "dependency injection"
  1562. ],
  1563. "time": "2016-02-21 22:14:09"
  1564. },
  1565. {
  1566. "name": "jms/metadata",
  1567. "version": "1.5.1",
  1568. "source": {
  1569. "type": "git",
  1570. "url": "https://github.com/schmittjoh/metadata.git",
  1571. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353"
  1572. },
  1573. "dist": {
  1574. "type": "zip",
  1575. "url": "https://api.github.com/repos/schmittjoh/metadata/zipball/22b72455559a25777cfd28c4ffda81ff7639f353",
  1576. "reference": "22b72455559a25777cfd28c4ffda81ff7639f353",
  1577. "shasum": ""
  1578. },
  1579. "require": {
  1580. "php": ">=5.3.0"
  1581. },
  1582. "require-dev": {
  1583. "doctrine/cache": "~1.0"
  1584. },
  1585. "type": "library",
  1586. "extra": {
  1587. "branch-alias": {
  1588. "dev-master": "1.5.x-dev"
  1589. }
  1590. },
  1591. "autoload": {
  1592. "psr-0": {
  1593. "Metadata\\": "src/"
  1594. }
  1595. },
  1596. "notification-url": "https://packagist.org/downloads/",
  1597. "license": [
  1598. "Apache"
  1599. ],
  1600. "authors": [
  1601. {
  1602. "name": "Johannes Schmitt",
  1603. "email": "schmittjoh@gmail.com",
  1604. "homepage": "https://github.com/schmittjoh",
  1605. "role": "Developer of wrapped JMSSerializerBundle"
  1606. }
  1607. ],
  1608. "description": "Class/method/property metadata management in PHP",
  1609. "keywords": [
  1610. "annotations",
  1611. "metadata",
  1612. "xml",
  1613. "yaml"
  1614. ],
  1615. "time": "2014-07-12 07:13:19"
  1616. },
  1617. {
  1618. "name": "jms/parser-lib",
  1619. "version": "1.0.0",
  1620. "source": {
  1621. "type": "git",
  1622. "url": "https://github.com/schmittjoh/parser-lib.git",
  1623. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d"
  1624. },
  1625. "dist": {
  1626. "type": "zip",
  1627. "url": "https://api.github.com/repos/schmittjoh/parser-lib/zipball/c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1628. "reference": "c509473bc1b4866415627af0e1c6cc8ac97fa51d",
  1629. "shasum": ""
  1630. },
  1631. "require": {
  1632. "phpoption/phpoption": ">=0.9,<2.0-dev"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "1.0-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-0": {
  1642. "JMS\\": "src/"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "Apache2"
  1648. ],
  1649. "description": "A library for easily creating recursive-descent parsers.",
  1650. "time": "2012-11-18 18:08:43"
  1651. },
  1652. {
  1653. "name": "jms/security-extra-bundle",
  1654. "version": "1.6.0",
  1655. "source": {
  1656. "type": "git",
  1657. "url": "https://github.com/schmittjoh/JMSSecurityExtraBundle.git",
  1658. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d"
  1659. },
  1660. "dist": {
  1661. "type": "zip",
  1662. "url": "https://api.github.com/repos/schmittjoh/JMSSecurityExtraBundle/zipball/d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1663. "reference": "d70399b25f41afd8277335cedc3c9b3acdc3759d",
  1664. "shasum": ""
  1665. },
  1666. "require": {
  1667. "jms/aop-bundle": "~1.0",
  1668. "jms/di-extra-bundle": "~1.4",
  1669. "jms/metadata": "~1.0",
  1670. "jms/parser-lib": "~1.0",
  1671. "php": "~5.3|~7.0",
  1672. "symfony/dependency-injection": "~2.3|~3.0",
  1673. "symfony/framework-bundle": "~2.3|~3.0",
  1674. "symfony/routing": "~2.3|~3.0",
  1675. "symfony/security-acl": "~2.2|~3.0",
  1676. "symfony/security-bundle": "~2.3|~3.0"
  1677. },
  1678. "require-dev": {
  1679. "doctrine/common": "~2.3",
  1680. "doctrine/doctrine-bundle": "~1.0",
  1681. "doctrine/orm": "~2.3",
  1682. "sensio/framework-extra-bundle": "^2.2.1|~3.0",
  1683. "symfony/browser-kit": "~2.0|~3.0",
  1684. "symfony/class-loader": "~2.1|~3.0",
  1685. "symfony/css-selector": "^2.0.5|~3.0",
  1686. "symfony/finder": "^2.0.5|~3.0",
  1687. "symfony/form": "~2.2|~3.0",
  1688. "symfony/phpunit-bridge": "~2.7|~3.0",
  1689. "symfony/process": "^2.0.5|~3.0",
  1690. "symfony/twig-bridge": "^2.2.6|~3.0",
  1691. "symfony/twig-bundle": "~2.2|~3.0",
  1692. "symfony/validator": "~2.2|~3.0",
  1693. "symfony/yaml": "^2.2.11|~3.0",
  1694. "twig/twig": "^1.23.1"
  1695. },
  1696. "type": "symfony-bundle",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-master": "1.6-dev"
  1700. }
  1701. },
  1702. "autoload": {
  1703. "psr-4": {
  1704. "JMS\\SecurityExtraBundle\\": ""
  1705. }
  1706. },
  1707. "notification-url": "https://packagist.org/downloads/",
  1708. "license": [
  1709. "Apache2"
  1710. ],
  1711. "authors": [
  1712. {
  1713. "name": "Johannes M. Schmitt",
  1714. "email": "schmittjoh@gmail.com"
  1715. }
  1716. ],
  1717. "description": "Enhances the Symfony2 Security Component by adding several new features",
  1718. "homepage": "http://jmsyst.com/bundles/JMSSecurityExtraBundle",
  1719. "keywords": [
  1720. "annotations",
  1721. "authorization",
  1722. "expression",
  1723. "secure",
  1724. "security"
  1725. ],
  1726. "time": "2016-02-03 15:29:16"
  1727. },
  1728. {
  1729. "name": "justinrainbow/json-schema",
  1730. "version": "1.6.1",
  1731. "source": {
  1732. "type": "git",
  1733. "url": "https://github.com/justinrainbow/json-schema.git",
  1734. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341"
  1735. },
  1736. "dist": {
  1737. "type": "zip",
  1738. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/cc84765fb7317f6b07bd8ac78364747f95b86341",
  1739. "reference": "cc84765fb7317f6b07bd8ac78364747f95b86341",
  1740. "shasum": ""
  1741. },
  1742. "require": {
  1743. "php": ">=5.3.29"
  1744. },
  1745. "require-dev": {
  1746. "json-schema/json-schema-test-suite": "1.1.0",
  1747. "phpdocumentor/phpdocumentor": "~2",
  1748. "phpunit/phpunit": "~3.7"
  1749. },
  1750. "bin": [
  1751. "bin/validate-json"
  1752. ],
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "1.6.x-dev"
  1757. }
  1758. },
  1759. "autoload": {
  1760. "psr-4": {
  1761. "JsonSchema\\": "src/JsonSchema/"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "BSD-3-Clause"
  1767. ],
  1768. "authors": [
  1769. {
  1770. "name": "Bruno Prieto Reis",
  1771. "email": "bruno.p.reis@gmail.com"
  1772. },
  1773. {
  1774. "name": "Justin Rainbow",
  1775. "email": "justin.rainbow@gmail.com"
  1776. },
  1777. {
  1778. "name": "Igor Wiedler",
  1779. "email": "igor@wiedler.ch"
  1780. },
  1781. {
  1782. "name": "Robert Schönthal",
  1783. "email": "seroscho@googlemail.com"
  1784. }
  1785. ],
  1786. "description": "A library to validate a json schema.",
  1787. "homepage": "https://github.com/justinrainbow/json-schema",
  1788. "keywords": [
  1789. "json",
  1790. "schema"
  1791. ],
  1792. "time": "2016-01-25 15:43:01"
  1793. },
  1794. {
  1795. "name": "knplabs/knp-menu",
  1796. "version": "v2.1.1",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://github.com/KnpLabs/KnpMenu.git",
  1800. "reference": "9917b999a3c3d3901386d60c4888b07679291031"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://api.github.com/repos/KnpLabs/KnpMenu/zipball/9917b999a3c3d3901386d60c4888b07679291031",
  1805. "reference": "9917b999a3c3d3901386d60c4888b07679291031",
  1806. "shasum": ""
  1807. },
  1808. "require": {
  1809. "php": ">=5.3.0"
  1810. },
  1811. "require-dev": {
  1812. "pimple/pimple": "~1.0",
  1813. "silex/silex": "~1.0",
  1814. "symfony/phpunit-bridge": "~2.7|~3.0",
  1815. "symfony/routing": "~2.3|~3.0",
  1816. "twig/twig": "~1.16|~2.0"
  1817. },
  1818. "suggest": {
  1819. "pimple/pimple": "for the built-in implementations of the menu provider and renderer provider",
  1820. "silex/silex": "for the integration with your silex application",
  1821. "twig/twig": "for the TwigRenderer and the integration with your templates"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "2.1-dev"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Knp\\Menu\\": "src/Knp/Menu"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Christophe Coevoet",
  1841. "email": "stof@notk.org"
  1842. },
  1843. {
  1844. "name": "KnpLabs",
  1845. "homepage": "http://knplabs.com"
  1846. },
  1847. {
  1848. "name": "Symfony Community",
  1849. "homepage": "https://github.com/KnpLabs/KnpMenu/contributors"
  1850. }
  1851. ],
  1852. "description": "An object oriented menu library",
  1853. "homepage": "http://knplabs.com",
  1854. "keywords": [
  1855. "menu",
  1856. "tree"
  1857. ],
  1858. "time": "2016-01-08 15:42:54"
  1859. },
  1860. {
  1861. "name": "knplabs/knp-menu-bundle",
  1862. "version": "v2.1.1",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/KnpLabs/KnpMenuBundle.git",
  1866. "reference": "90aff8e39274d1225dfa3bb7b1dd4e47b7312dca"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/KnpLabs/KnpMenuBundle/zipball/90aff8e39274d1225dfa3bb7b1dd4e47b7312dca",
  1871. "reference": "90aff8e39274d1225dfa3bb7b1dd4e47b7312dca",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "knplabs/knp-menu": "~2.1",
  1876. "symfony/framework-bundle": "~2.3|~3.0"
  1877. },
  1878. "require-dev": {
  1879. "symfony/expression-language": "~2.4|~3.0",
  1880. "symfony/phpunit-bridge": "~2.7|~3.0"
  1881. },
  1882. "type": "symfony-bundle",
  1883. "extra": {
  1884. "branch-alias": {
  1885. "dev-master": "2.1.x-dev"
  1886. }
  1887. },
  1888. "autoload": {
  1889. "psr-4": {
  1890. "Knp\\Bundle\\MenuBundle\\": ""
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Christophe Coevoet",
  1900. "email": "stof@notk.org"
  1901. },
  1902. {
  1903. "name": "Knplabs",
  1904. "homepage": "http://knplabs.com"
  1905. },
  1906. {
  1907. "name": "Symfony Community",
  1908. "homepage": "https://github.com/KnpLabs/KnpMenuBundle/contributors"
  1909. }
  1910. ],
  1911. "description": "This bundle provides an integration of the KnpMenu library",
  1912. "keywords": [
  1913. "menu"
  1914. ],
  1915. "time": "2015-12-15 12:06:23"
  1916. },
  1917. {
  1918. "name": "kriswallsmith/buzz",
  1919. "version": "v0.15",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/kriswallsmith/Buzz.git",
  1923. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/kriswallsmith/Buzz/zipball/d4041666c3ffb379af02a92dabe81c904b35fab8",
  1928. "reference": "d4041666c3ffb379af02a92dabe81c904b35fab8",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": ">=5.3.0"
  1933. },
  1934. "require-dev": {
  1935. "phpunit/phpunit": "3.7.*"
  1936. },
  1937. "suggest": {
  1938. "ext-curl": "*"
  1939. },
  1940. "type": "library",
  1941. "autoload": {
  1942. "psr-0": {
  1943. "Buzz": "lib/"
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Kris Wallsmith",
  1953. "email": "kris.wallsmith@gmail.com",
  1954. "homepage": "http://kriswallsmith.net/"
  1955. }
  1956. ],
  1957. "description": "Lightweight HTTP client",
  1958. "homepage": "https://github.com/kriswallsmith/Buzz",
  1959. "keywords": [
  1960. "curl",
  1961. "http client"
  1962. ],
  1963. "time": "2015-06-25 17:26:56"
  1964. },
  1965. {
  1966. "name": "monolog/monolog",
  1967. "version": "1.18.2",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/Seldaek/monolog.git",
  1971. "reference": "064b38c16790249488e7a8b987acf1c9d7383c09"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/064b38c16790249488e7a8b987acf1c9d7383c09",
  1976. "reference": "064b38c16790249488e7a8b987acf1c9d7383c09",
  1977. "shasum": ""
  1978. },
  1979. "require": {
  1980. "php": ">=5.3.0",
  1981. "psr/log": "~1.0"
  1982. },
  1983. "provide": {
  1984. "psr/log-implementation": "1.0.0"
  1985. },
  1986. "require-dev": {
  1987. "aws/aws-sdk-php": "^2.4.9",
  1988. "doctrine/couchdb": "~1.0@dev",
  1989. "graylog2/gelf-php": "~1.0",
  1990. "jakub-onderka/php-parallel-lint": "0.9",
  1991. "php-amqplib/php-amqplib": "~2.4",
  1992. "php-console/php-console": "^3.1.3",
  1993. "phpunit/phpunit": "~4.5",
  1994. "phpunit/phpunit-mock-objects": "2.3.0",
  1995. "raven/raven": "^0.13",
  1996. "ruflin/elastica": ">=0.90 <3.0",
  1997. "swiftmailer/swiftmailer": "~5.3"
  1998. },
  1999. "suggest": {
  2000. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2001. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2002. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2003. "ext-mongo": "Allow sending log messages to a MongoDB server",
  2004. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2005. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  2006. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2007. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2008. "raven/raven": "Allow sending log messages to a Sentry server",
  2009. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2010. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2011. },
  2012. "type": "library",
  2013. "extra": {
  2014. "branch-alias": {
  2015. "dev-master": "2.0.x-dev"
  2016. }
  2017. },
  2018. "autoload": {
  2019. "psr-4": {
  2020. "Monolog\\": "src/Monolog"
  2021. }
  2022. },
  2023. "notification-url": "https://packagist.org/downloads/",
  2024. "license": [
  2025. "MIT"
  2026. ],
  2027. "authors": [
  2028. {
  2029. "name": "Jordi Boggiano",
  2030. "email": "j.boggiano@seld.be",
  2031. "homepage": "http://seld.be"
  2032. }
  2033. ],
  2034. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2035. "homepage": "http://github.com/Seldaek/monolog",
  2036. "keywords": [
  2037. "log",
  2038. "logging",
  2039. "psr-3"
  2040. ],
  2041. "time": "2016-04-02 13:12:58"
  2042. },
  2043. {
  2044. "name": "nelmio/cors-bundle",
  2045. "version": "1.4.1",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/nelmio/NelmioCorsBundle.git",
  2049. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/fa14a81737c605bf4766054cdcb72a16a433d537",
  2054. "reference": "fa14a81737c605bf4766054cdcb72a16a433d537",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "symfony/framework-bundle": "^2.2 || ^3.0"
  2059. },
  2060. "require-dev": {
  2061. "matthiasnoback/symfony-dependency-injection-test": "^0.7.6",
  2062. "mockery/mockery": "0.9.*"
  2063. },
  2064. "type": "symfony-bundle",
  2065. "extra": {
  2066. "branch-alias": {
  2067. "dev-master": "1.4.x-dev"
  2068. }
  2069. },
  2070. "autoload": {
  2071. "psr-4": {
  2072. "Nelmio\\CorsBundle\\": ""
  2073. },
  2074. "exclude-from-classmap": [
  2075. "/Tests/"
  2076. ]
  2077. },
  2078. "notification-url": "https://packagist.org/downloads/",
  2079. "license": [
  2080. "MIT"
  2081. ],
  2082. "authors": [
  2083. {
  2084. "name": "Nelmio",
  2085. "homepage": "http://nelm.io"
  2086. },
  2087. {
  2088. "name": "Symfony Community",
  2089. "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
  2090. }
  2091. ],
  2092. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony2 application",
  2093. "keywords": [
  2094. "api",
  2095. "cors",
  2096. "crossdomain"
  2097. ],
  2098. "time": "2015-12-09 17:26:34"
  2099. },
  2100. {
  2101. "name": "nelmio/security-bundle",
  2102. "version": "1.10.0",
  2103. "source": {
  2104. "type": "git",
  2105. "url": "https://github.com/nelmio/NelmioSecurityBundle.git",
  2106. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9"
  2107. },
  2108. "dist": {
  2109. "type": "zip",
  2110. "url": "https://api.github.com/repos/nelmio/NelmioSecurityBundle/zipball/4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2111. "reference": "4be243f1fc85ff85f10aadcf88c8c11ba2096cd9",
  2112. "shasum": ""
  2113. },
  2114. "require": {
  2115. "symfony/framework-bundle": "~2.3|~3.0",
  2116. "symfony/security": "~2.3|~3.0"
  2117. },
  2118. "require-dev": {
  2119. "phpunit/phpunit": "^5.2"
  2120. },
  2121. "type": "symfony-bundle",
  2122. "extra": {
  2123. "branch-alias": {
  2124. "dev-master": "1.10.x-dev"
  2125. }
  2126. },
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Nelmio\\SecurityBundle\\": ""
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "Nelmio",
  2139. "homepage": "http://nelm.io"
  2140. },
  2141. {
  2142. "name": "Symfony Community",
  2143. "homepage": "https://github.com/nelmio/NelmioSecurityBundle/contributors"
  2144. }
  2145. ],
  2146. "description": "Extra security-related features for Symfony: signed/encrypted cookies, HTTPS/SSL/HSTS handling, cookie session storage, ...",
  2147. "keywords": [
  2148. "security"
  2149. ],
  2150. "time": "2016-02-23 10:42:13"
  2151. },
  2152. {
  2153. "name": "nelmio/solarium-bundle",
  2154. "version": "v1.1.0",
  2155. "target-dir": "Nelmio/SolariumBundle",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/nelmio/NelmioSolariumBundle.git",
  2159. "reference": "693700c4deeb04997b90aca659dd881409f33eb9"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/nelmio/NelmioSolariumBundle/zipball/693700c4deeb04997b90aca659dd881409f33eb9",
  2164. "reference": "693700c4deeb04997b90aca659dd881409f33eb9",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "solarium/solarium": "~2.4.0",
  2169. "symfony/framework-bundle": "2.*"
  2170. },
  2171. "require-dev": {
  2172. "symfony/yaml": "2.*"
  2173. },
  2174. "type": "symfony-bundle",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-master": "1.1-dev"
  2178. }
  2179. },
  2180. "autoload": {
  2181. "psr-0": {
  2182. "Nelmio\\SolariumBundle": ""
  2183. }
  2184. },
  2185. "notification-url": "https://packagist.org/downloads/",
  2186. "license": [
  2187. "MIT"
  2188. ],
  2189. "authors": [
  2190. {
  2191. "name": "Nelmio",
  2192. "homepage": "http://nelm.io"
  2193. },
  2194. {
  2195. "name": "Symfony Community",
  2196. "homepage": "https://github.com/nelmio/NelmioSolariumBundle/contributors"
  2197. }
  2198. ],
  2199. "description": "Integration with solarium solr client.",
  2200. "keywords": [
  2201. "search",
  2202. "solarium",
  2203. "solr"
  2204. ],
  2205. "time": "2013-01-07 10:35:43"
  2206. },
  2207. {
  2208. "name": "pagerfanta/pagerfanta",
  2209. "version": "v1.0.3",
  2210. "source": {
  2211. "type": "git",
  2212. "url": "https://github.com/whiteoctober/Pagerfanta.git",
  2213. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb"
  2214. },
  2215. "dist": {
  2216. "type": "zip",
  2217. "url": "https://api.github.com/repos/whiteoctober/Pagerfanta/zipball/a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2218. "reference": "a874d3612d954dcbbb49e5ffe178890918fb76fb",
  2219. "shasum": ""
  2220. },
  2221. "require": {
  2222. "php": ">=5.3.0"
  2223. },
  2224. "require-dev": {
  2225. "doctrine/orm": "~2.3",
  2226. "doctrine/phpcr-odm": "1.*",
  2227. "jackalope/jackalope-doctrine-dbal": "1.*",
  2228. "jmikola/geojson": "~1.0",
  2229. "mandango/mandango": "~1.0@dev",
  2230. "mandango/mondator": "~1.0@dev",
  2231. "phpunit/phpunit": "~4",
  2232. "propel/propel1": "~1.6",
  2233. "ruflin/elastica": "~1.3",
  2234. "solarium/solarium": "~3.1"
  2235. },
  2236. "suggest": {
  2237. "doctrine/mongodb-odm": "To use the DoctrineODMMongoDBAdapter.",
  2238. "doctrine/orm": "To use the DoctrineORMAdapter.",
  2239. "doctrine/phpcr-odm": "To use the DoctrineODMPhpcrAdapter. >= 1.1.0",
  2240. "mandango/mandango": "To use the MandangoAdapter.",
  2241. "propel/propel1": "To use the PropelAdapter",
  2242. "solarium/solarium": "To use the SolariumAdapter."
  2243. },
  2244. "type": "library",
  2245. "extra": {
  2246. "branch-alias": {
  2247. "dev-master": "1.0.x-dev"
  2248. }
  2249. },
  2250. "autoload": {
  2251. "psr-0": {
  2252. "Pagerfanta\\": "src/"
  2253. }
  2254. },
  2255. "notification-url": "https://packagist.org/downloads/",
  2256. "license": [
  2257. "MIT"
  2258. ],
  2259. "authors": [
  2260. {
  2261. "name": "Pablo Díez",
  2262. "email": "pablodip@gmail.com"
  2263. }
  2264. ],
  2265. "description": "Pagination for PHP 5.3",
  2266. "keywords": [
  2267. "page",
  2268. "pagination",
  2269. "paginator",
  2270. "paging"
  2271. ],
  2272. "time": "2014-10-06 10:57:25"
  2273. },
  2274. {
  2275. "name": "paragonie/random_compat",
  2276. "version": "v1.4.1",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://github.com/paragonie/random_compat.git",
  2280. "reference": "c7e26a21ba357863de030f0b9e701c7d04593774"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/c7e26a21ba357863de030f0b9e701c7d04593774",
  2285. "reference": "c7e26a21ba357863de030f0b9e701c7d04593774",
  2286. "shasum": ""
  2287. },
  2288. "require": {
  2289. "php": ">=5.2.0"
  2290. },
  2291. "require-dev": {
  2292. "phpunit/phpunit": "4.*|5.*"
  2293. },
  2294. "suggest": {
  2295. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2296. },
  2297. "type": "library",
  2298. "autoload": {
  2299. "files": [
  2300. "lib/random.php"
  2301. ]
  2302. },
  2303. "notification-url": "https://packagist.org/downloads/",
  2304. "license": [
  2305. "MIT"
  2306. ],
  2307. "authors": [
  2308. {
  2309. "name": "Paragon Initiative Enterprises",
  2310. "email": "security@paragonie.com",
  2311. "homepage": "https://paragonie.com"
  2312. }
  2313. ],
  2314. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2315. "keywords": [
  2316. "csprng",
  2317. "pseudorandom",
  2318. "random"
  2319. ],
  2320. "time": "2016-03-18 20:34:03"
  2321. },
  2322. {
  2323. "name": "phpoption/phpoption",
  2324. "version": "1.5.0",
  2325. "source": {
  2326. "type": "git",
  2327. "url": "https://github.com/schmittjoh/php-option.git",
  2328. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2329. },
  2330. "dist": {
  2331. "type": "zip",
  2332. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2333. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2334. "shasum": ""
  2335. },
  2336. "require": {
  2337. "php": ">=5.3.0"
  2338. },
  2339. "require-dev": {
  2340. "phpunit/phpunit": "4.7.*"
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-master": "1.3-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "psr-0": {
  2350. "PhpOption\\": "src/"
  2351. }
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "Apache2"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Johannes M. Schmitt",
  2360. "email": "schmittjoh@gmail.com"
  2361. }
  2362. ],
  2363. "description": "Option Type for PHP",
  2364. "keywords": [
  2365. "language",
  2366. "option",
  2367. "php",
  2368. "type"
  2369. ],
  2370. "time": "2015-07-25 16:39:46"
  2371. },
  2372. {
  2373. "name": "predis/predis",
  2374. "version": "v1.0.3",
  2375. "source": {
  2376. "type": "git",
  2377. "url": "https://github.com/nrk/predis.git",
  2378. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04"
  2379. },
  2380. "dist": {
  2381. "type": "zip",
  2382. "url": "https://api.github.com/repos/nrk/predis/zipball/84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2383. "reference": "84060b9034d756b4d79641667d7f9efe1aeb8e04",
  2384. "shasum": ""
  2385. },
  2386. "require": {
  2387. "php": ">=5.3.2"
  2388. },
  2389. "require-dev": {
  2390. "phpunit/phpunit": "~4.0"
  2391. },
  2392. "suggest": {
  2393. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2394. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2395. },
  2396. "type": "library",
  2397. "autoload": {
  2398. "psr-4": {
  2399. "Predis\\": "src/"
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Daniele Alessandri",
  2409. "email": "suppakilla@gmail.com",
  2410. "homepage": "http://clorophilla.net"
  2411. }
  2412. ],
  2413. "description": "Flexible and feature-complete PHP client library for Redis",
  2414. "homepage": "http://github.com/nrk/predis",
  2415. "keywords": [
  2416. "nosql",
  2417. "predis",
  2418. "redis"
  2419. ],
  2420. "time": "2015-07-30 18:34:15"
  2421. },
  2422. {
  2423. "name": "psr/log",
  2424. "version": "1.0.0",
  2425. "source": {
  2426. "type": "git",
  2427. "url": "https://github.com/php-fig/log.git",
  2428. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
  2429. },
  2430. "dist": {
  2431. "type": "zip",
  2432. "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
  2433. "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
  2434. "shasum": ""
  2435. },
  2436. "type": "library",
  2437. "autoload": {
  2438. "psr-0": {
  2439. "Psr\\Log\\": ""
  2440. }
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "MIT"
  2445. ],
  2446. "authors": [
  2447. {
  2448. "name": "PHP-FIG",
  2449. "homepage": "http://www.php-fig.org/"
  2450. }
  2451. ],
  2452. "description": "Common interface for logging libraries",
  2453. "keywords": [
  2454. "log",
  2455. "psr",
  2456. "psr-3"
  2457. ],
  2458. "time": "2012-12-21 11:40:51"
  2459. },
  2460. {
  2461. "name": "seld/cli-prompt",
  2462. "version": "1.0.1",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/Seldaek/cli-prompt.git",
  2466. "reference": "b27db1514f7d7bb7a366ad95d4eb2b17140a0691"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/b27db1514f7d7bb7a366ad95d4eb2b17140a0691",
  2471. "reference": "b27db1514f7d7bb7a366ad95d4eb2b17140a0691",
  2472. "shasum": ""
  2473. },
  2474. "require": {
  2475. "php": ">=5.3"
  2476. },
  2477. "type": "library",
  2478. "extra": {
  2479. "branch-alias": {
  2480. "dev-master": "1.x-dev"
  2481. }
  2482. },
  2483. "autoload": {
  2484. "psr-4": {
  2485. "Seld\\CliPrompt\\": "src/"
  2486. }
  2487. },
  2488. "notification-url": "https://packagist.org/downloads/",
  2489. "license": [
  2490. "MIT"
  2491. ],
  2492. "authors": [
  2493. {
  2494. "name": "Jordi Boggiano",
  2495. "email": "j.boggiano@seld.be"
  2496. }
  2497. ],
  2498. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  2499. "keywords": [
  2500. "cli",
  2501. "console",
  2502. "hidden",
  2503. "input",
  2504. "prompt"
  2505. ],
  2506. "time": "2016-01-09 17:55:27"
  2507. },
  2508. {
  2509. "name": "seld/jsonlint",
  2510. "version": "1.4.0",
  2511. "source": {
  2512. "type": "git",
  2513. "url": "https://github.com/Seldaek/jsonlint.git",
  2514. "reference": "66834d3e3566bb5798db7294619388786ae99394"
  2515. },
  2516. "dist": {
  2517. "type": "zip",
  2518. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/66834d3e3566bb5798db7294619388786ae99394",
  2519. "reference": "66834d3e3566bb5798db7294619388786ae99394",
  2520. "shasum": ""
  2521. },
  2522. "require": {
  2523. "php": "^5.3 || ^7.0"
  2524. },
  2525. "bin": [
  2526. "bin/jsonlint"
  2527. ],
  2528. "type": "library",
  2529. "autoload": {
  2530. "psr-4": {
  2531. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  2532. }
  2533. },
  2534. "notification-url": "https://packagist.org/downloads/",
  2535. "license": [
  2536. "MIT"
  2537. ],
  2538. "authors": [
  2539. {
  2540. "name": "Jordi Boggiano",
  2541. "email": "j.boggiano@seld.be",
  2542. "homepage": "http://seld.be"
  2543. }
  2544. ],
  2545. "description": "JSON Linter",
  2546. "keywords": [
  2547. "json",
  2548. "linter",
  2549. "parser",
  2550. "validator"
  2551. ],
  2552. "time": "2015-11-21 02:21:41"
  2553. },
  2554. {
  2555. "name": "seld/phar-utils",
  2556. "version": "1.0.1",
  2557. "source": {
  2558. "type": "git",
  2559. "url": "https://github.com/Seldaek/phar-utils.git",
  2560. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  2561. },
  2562. "dist": {
  2563. "type": "zip",
  2564. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  2565. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  2566. "shasum": ""
  2567. },
  2568. "require": {
  2569. "php": ">=5.3"
  2570. },
  2571. "type": "library",
  2572. "extra": {
  2573. "branch-alias": {
  2574. "dev-master": "1.x-dev"
  2575. }
  2576. },
  2577. "autoload": {
  2578. "psr-4": {
  2579. "Seld\\PharUtils\\": "src/"
  2580. }
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "authors": [
  2587. {
  2588. "name": "Jordi Boggiano",
  2589. "email": "j.boggiano@seld.be"
  2590. }
  2591. ],
  2592. "description": "PHAR file format utilities, for when PHP phars you up",
  2593. "keywords": [
  2594. "phra"
  2595. ],
  2596. "time": "2015-10-13 18:44:15"
  2597. },
  2598. {
  2599. "name": "sensio/distribution-bundle",
  2600. "version": "v5.0.5",
  2601. "source": {
  2602. "type": "git",
  2603. "url": "https://github.com/sensiolabs/SensioDistributionBundle.git",
  2604. "reference": "3a160355bb1364da55ed9e415c1aa1fa8d457b6f"
  2605. },
  2606. "dist": {
  2607. "type": "zip",
  2608. "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/3a160355bb1364da55ed9e415c1aa1fa8d457b6f",
  2609. "reference": "3a160355bb1364da55ed9e415c1aa1fa8d457b6f",
  2610. "shasum": ""
  2611. },
  2612. "require": {
  2613. "php": ">=5.3.9",
  2614. "sensiolabs/security-checker": "~3.0",
  2615. "symfony/class-loader": "~2.3|~3.0",
  2616. "symfony/config": "~2.3|~3.0",
  2617. "symfony/dependency-injection": "~2.3|~3.0",
  2618. "symfony/filesystem": "~2.3|~3.0",
  2619. "symfony/http-kernel": "~2.3|~3.0",
  2620. "symfony/process": "~2.3|~3.0"
  2621. },
  2622. "type": "symfony-bundle",
  2623. "extra": {
  2624. "branch-alias": {
  2625. "dev-master": "5.0.x-dev"
  2626. }
  2627. },
  2628. "autoload": {
  2629. "psr-4": {
  2630. "Sensio\\Bundle\\DistributionBundle\\": ""
  2631. }
  2632. },
  2633. "notification-url": "https://packagist.org/downloads/",
  2634. "license": [
  2635. "MIT"
  2636. ],
  2637. "authors": [
  2638. {
  2639. "name": "Fabien Potencier",
  2640. "email": "fabien@symfony.com"
  2641. }
  2642. ],
  2643. "description": "Base bundle for Symfony Distributions",
  2644. "keywords": [
  2645. "configuration",
  2646. "distribution"
  2647. ],
  2648. "time": "2016-03-15 16:21:41"
  2649. },
  2650. {
  2651. "name": "sensio/framework-extra-bundle",
  2652. "version": "v3.0.16",
  2653. "source": {
  2654. "type": "git",
  2655. "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git",
  2656. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546"
  2657. },
  2658. "dist": {
  2659. "type": "zip",
  2660. "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2661. "reference": "507a15f56fa7699f6cc8c2c7de4080b19ce22546",
  2662. "shasum": ""
  2663. },
  2664. "require": {
  2665. "doctrine/common": "~2.2",
  2666. "symfony/dependency-injection": "~2.3|~3.0",
  2667. "symfony/framework-bundle": "~2.3|~3.0"
  2668. },
  2669. "require-dev": {
  2670. "symfony/browser-kit": "~2.3|~3.0",
  2671. "symfony/dom-crawler": "~2.3|~3.0",
  2672. "symfony/expression-language": "~2.4|~3.0",
  2673. "symfony/finder": "~2.3|~3.0",
  2674. "symfony/phpunit-bridge": "~2.7|~3.0",
  2675. "symfony/security-bundle": "~2.4|~3.0",
  2676. "symfony/twig-bundle": "~2.3|~3.0",
  2677. "twig/twig": "~1.11|~2.0"
  2678. },
  2679. "suggest": {
  2680. "symfony/expression-language": "",
  2681. "symfony/psr-http-message-bridge": "To use the PSR-7 converters",
  2682. "symfony/security-bundle": ""
  2683. },
  2684. "type": "symfony-bundle",
  2685. "extra": {
  2686. "branch-alias": {
  2687. "dev-master": "3.0.x-dev"
  2688. }
  2689. },
  2690. "autoload": {
  2691. "psr-4": {
  2692. "Sensio\\Bundle\\FrameworkExtraBundle\\": ""
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Fabien Potencier",
  2702. "email": "fabien@symfony.com"
  2703. }
  2704. ],
  2705. "description": "This bundle provides a way to configure your controllers with annotations",
  2706. "keywords": [
  2707. "annotations",
  2708. "controllers"
  2709. ],
  2710. "time": "2016-03-25 17:08:27"
  2711. },
  2712. {
  2713. "name": "sensio/generator-bundle",
  2714. "version": "v3.0.6",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git",
  2718. "reference": "ac91535054d025937d897d78ebb5fc2da5e955a4"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/ac91535054d025937d897d78ebb5fc2da5e955a4",
  2723. "reference": "ac91535054d025937d897d78ebb5fc2da5e955a4",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "symfony/console": "~2.7|~3.0",
  2728. "symfony/framework-bundle": "~2.7|~3.0",
  2729. "symfony/process": "~2.7|~3.0",
  2730. "symfony/yaml": "~2.7|~3.0"
  2731. },
  2732. "require-dev": {
  2733. "doctrine/orm": "~2.4",
  2734. "symfony/doctrine-bridge": "~2.7|~3.0",
  2735. "twig/twig": "~1.18"
  2736. },
  2737. "type": "symfony-bundle",
  2738. "extra": {
  2739. "branch-alias": {
  2740. "dev-master": "3.0.x-dev"
  2741. }
  2742. },
  2743. "autoload": {
  2744. "psr-4": {
  2745. "Sensio\\Bundle\\GeneratorBundle\\": ""
  2746. },
  2747. "exclude-from-classmap": [
  2748. "/Tests/"
  2749. ]
  2750. },
  2751. "notification-url": "https://packagist.org/downloads/",
  2752. "license": [
  2753. "MIT"
  2754. ],
  2755. "authors": [
  2756. {
  2757. "name": "Fabien Potencier",
  2758. "email": "fabien@symfony.com"
  2759. }
  2760. ],
  2761. "description": "This bundle generates code for you",
  2762. "time": "2016-02-26 04:36:01"
  2763. },
  2764. {
  2765. "name": "sensiolabs/security-checker",
  2766. "version": "v3.0.2",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/sensiolabs/security-checker.git",
  2770. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/21696b0daa731064c23cfb694c60a2584a7b6e93",
  2775. "reference": "21696b0daa731064c23cfb694c60a2584a7b6e93",
  2776. "shasum": ""
  2777. },
  2778. "require": {
  2779. "symfony/console": "~2.0|~3.0"
  2780. },
  2781. "bin": [
  2782. "security-checker"
  2783. ],
  2784. "type": "library",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-master": "3.0-dev"
  2788. }
  2789. },
  2790. "autoload": {
  2791. "psr-0": {
  2792. "SensioLabs\\Security": ""
  2793. }
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Fabien Potencier",
  2802. "email": "fabien.potencier@gmail.com"
  2803. }
  2804. ],
  2805. "description": "A security checker for your composer.lock",
  2806. "time": "2015-11-07 08:07:40"
  2807. },
  2808. {
  2809. "name": "snc/redis-bundle",
  2810. "version": "1.1.10",
  2811. "target-dir": "Snc/RedisBundle",
  2812. "source": {
  2813. "type": "git",
  2814. "url": "https://github.com/snc/SncRedisBundle.git",
  2815. "reference": "3b11bdc877f470fa8a1e728ada48c62c0d33e0ed"
  2816. },
  2817. "dist": {
  2818. "type": "zip",
  2819. "url": "https://api.github.com/repos/snc/SncRedisBundle/zipball/3b11bdc877f470fa8a1e728ada48c62c0d33e0ed",
  2820. "reference": "3b11bdc877f470fa8a1e728ada48c62c0d33e0ed",
  2821. "shasum": ""
  2822. },
  2823. "require": {
  2824. "php": ">=5.3.3",
  2825. "symfony/framework-bundle": "^2.1",
  2826. "symfony/yaml": "^2.1"
  2827. },
  2828. "require-dev": {
  2829. "doctrine/cache": "^1.0",
  2830. "phpunit/phpunit": "^4.0",
  2831. "predis/predis": "^1.0",
  2832. "symfony/console": "^2.1"
  2833. },
  2834. "suggest": {
  2835. "monolog/monolog": "If you want to use the monolog redis handler.",
  2836. "predis/predis": "If you want to use predis.",
  2837. "symfony/console": "If you want to use commands to interact with the redis database"
  2838. },
  2839. "type": "symfony-bundle",
  2840. "autoload": {
  2841. "psr-0": {
  2842. "Snc\\RedisBundle": ""
  2843. }
  2844. },
  2845. "notification-url": "https://packagist.org/downloads/",
  2846. "license": [
  2847. "MIT"
  2848. ],
  2849. "authors": [
  2850. {
  2851. "name": "Henrik Westphal",
  2852. "email": "henrik.westphal@gmail.com"
  2853. },
  2854. {
  2855. "name": "Community contributors",
  2856. "homepage": "https://github.com/snc/SncRedisBundle/contributors"
  2857. }
  2858. ],
  2859. "description": "A Redis bundle for Symfony2",
  2860. "homepage": "https://github.com/snc/SncRedisBundle",
  2861. "keywords": [
  2862. "nosql",
  2863. "redis",
  2864. "symfony"
  2865. ],
  2866. "time": "2016-01-21 18:29:37"
  2867. },
  2868. {
  2869. "name": "solarium/solarium",
  2870. "version": "2.4.1",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/solariumphp/solarium.git",
  2874. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2879. "reference": "f7c55cf42d14bb70f534128da3e343bb98fcb504",
  2880. "shasum": ""
  2881. },
  2882. "require": {
  2883. "php": ">=5.2.0"
  2884. },
  2885. "type": "library",
  2886. "autoload": {
  2887. "psr-0": {
  2888. "Solarium": "library/"
  2889. }
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "NewBSD"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "See GitHub contributors",
  2898. "homepage": "https://github.com/basdenooijer/solarium/contributors"
  2899. }
  2900. ],
  2901. "description": "PHP Solr client",
  2902. "homepage": "http://www.solarium-project.org",
  2903. "keywords": [
  2904. "php",
  2905. "search",
  2906. "solr"
  2907. ],
  2908. "time": "2013-02-11 13:12:43"
  2909. },
  2910. {
  2911. "name": "swiftmailer/swiftmailer",
  2912. "version": "v5.4.1",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2916. "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421",
  2921. "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421",
  2922. "shasum": ""
  2923. },
  2924. "require": {
  2925. "php": ">=5.3.3"
  2926. },
  2927. "require-dev": {
  2928. "mockery/mockery": "~0.9.1,<0.9.4"
  2929. },
  2930. "type": "library",
  2931. "extra": {
  2932. "branch-alias": {
  2933. "dev-master": "5.4-dev"
  2934. }
  2935. },
  2936. "autoload": {
  2937. "files": [
  2938. "lib/swift_required.php"
  2939. ]
  2940. },
  2941. "notification-url": "https://packagist.org/downloads/",
  2942. "license": [
  2943. "MIT"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Chris Corbyn"
  2948. },
  2949. {
  2950. "name": "Fabien Potencier",
  2951. "email": "fabien@symfony.com"
  2952. }
  2953. ],
  2954. "description": "Swiftmailer, free feature-rich PHP mailer",
  2955. "homepage": "http://swiftmailer.org",
  2956. "keywords": [
  2957. "email",
  2958. "mail",
  2959. "mailer"
  2960. ],
  2961. "time": "2015-06-06 14:19:39"
  2962. },
  2963. {
  2964. "name": "symfony/monolog-bundle",
  2965. "version": "v2.10.0",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/symfony/monolog-bundle.git",
  2969. "reference": "82fd8f36e2cccbe94faf237403c48052d4d4b77e"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/82fd8f36e2cccbe94faf237403c48052d4d4b77e",
  2974. "reference": "82fd8f36e2cccbe94faf237403c48052d4d4b77e",
  2975. "shasum": ""
  2976. },
  2977. "require": {
  2978. "monolog/monolog": "~1.12",
  2979. "php": ">=5.3.2",
  2980. "symfony/config": "~2.3|~3.0",
  2981. "symfony/dependency-injection": "~2.3|~3.0",
  2982. "symfony/http-kernel": "~2.3|~3.0",
  2983. "symfony/monolog-bridge": "~2.3|~3.0"
  2984. },
  2985. "require-dev": {
  2986. "phpunit/phpunit": "^4.8",
  2987. "symfony/console": "~2.3|~3.0",
  2988. "symfony/yaml": "~2.3|~3.0"
  2989. },
  2990. "type": "symfony-bundle",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "2.9.x-dev"
  2994. }
  2995. },
  2996. "autoload": {
  2997. "psr-4": {
  2998. "Symfony\\Bundle\\MonologBundle\\": ""
  2999. }
  3000. },
  3001. "notification-url": "https://packagist.org/downloads/",
  3002. "license": [
  3003. "MIT"
  3004. ],
  3005. "authors": [
  3006. {
  3007. "name": "Symfony Community",
  3008. "homepage": "http://symfony.com/contributors"
  3009. },
  3010. {
  3011. "name": "Fabien Potencier",
  3012. "email": "fabien@symfony.com"
  3013. }
  3014. ],
  3015. "description": "Symfony MonologBundle",
  3016. "homepage": "http://symfony.com",
  3017. "keywords": [
  3018. "log",
  3019. "logging"
  3020. ],
  3021. "time": "2016-03-13 15:55:56"
  3022. },
  3023. {
  3024. "name": "symfony/polyfill-apcu",
  3025. "version": "v1.1.1",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/symfony/polyfill-apcu.git",
  3029. "reference": "0c901e4e65a2f7ece68f0fd249b56d6ad3adc214"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/0c901e4e65a2f7ece68f0fd249b56d6ad3adc214",
  3034. "reference": "0c901e4e65a2f7ece68f0fd249b56d6ad3adc214",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "php": ">=5.3.3"
  3039. },
  3040. "type": "library",
  3041. "extra": {
  3042. "branch-alias": {
  3043. "dev-master": "1.1-dev"
  3044. }
  3045. },
  3046. "autoload": {
  3047. "files": [
  3048. "bootstrap.php"
  3049. ]
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "MIT"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Nicolas Grekas",
  3058. "email": "p@tchwork.com"
  3059. },
  3060. {
  3061. "name": "Symfony Community",
  3062. "homepage": "https://symfony.com/contributors"
  3063. }
  3064. ],
  3065. "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
  3066. "homepage": "https://symfony.com",
  3067. "keywords": [
  3068. "apcu",
  3069. "compatibility",
  3070. "polyfill",
  3071. "portable",
  3072. "shim"
  3073. ],
  3074. "time": "2016-03-03 16:49:40"
  3075. },
  3076. {
  3077. "name": "symfony/polyfill-intl-icu",
  3078. "version": "v1.1.1",
  3079. "source": {
  3080. "type": "git",
  3081. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  3082. "reference": "8328069d9f5322f0e7b3c3518485acfdc94c3942"
  3083. },
  3084. "dist": {
  3085. "type": "zip",
  3086. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/8328069d9f5322f0e7b3c3518485acfdc94c3942",
  3087. "reference": "8328069d9f5322f0e7b3c3518485acfdc94c3942",
  3088. "shasum": ""
  3089. },
  3090. "require": {
  3091. "php": ">=5.3.3",
  3092. "symfony/intl": "~2.3|~3.0"
  3093. },
  3094. "suggest": {
  3095. "ext-intl": "For best performance"
  3096. },
  3097. "type": "library",
  3098. "extra": {
  3099. "branch-alias": {
  3100. "dev-master": "1.1-dev"
  3101. }
  3102. },
  3103. "autoload": {
  3104. "files": [
  3105. "bootstrap.php"
  3106. ]
  3107. },
  3108. "notification-url": "https://packagist.org/downloads/",
  3109. "license": [
  3110. "MIT"
  3111. ],
  3112. "authors": [
  3113. {
  3114. "name": "Nicolas Grekas",
  3115. "email": "p@tchwork.com"
  3116. },
  3117. {
  3118. "name": "Symfony Community",
  3119. "homepage": "https://symfony.com/contributors"
  3120. }
  3121. ],
  3122. "description": "Symfony polyfill for intl's ICU-related data and classes",
  3123. "homepage": "https://symfony.com",
  3124. "keywords": [
  3125. "compatibility",
  3126. "icu",
  3127. "intl",
  3128. "polyfill",
  3129. "portable",
  3130. "shim"
  3131. ],
  3132. "time": "2016-02-26 16:18:12"
  3133. },
  3134. {
  3135. "name": "symfony/polyfill-mbstring",
  3136. "version": "v1.1.1",
  3137. "source": {
  3138. "type": "git",
  3139. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3140. "reference": "1289d16209491b584839022f29257ad859b8532d"
  3141. },
  3142. "dist": {
  3143. "type": "zip",
  3144. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d",
  3145. "reference": "1289d16209491b584839022f29257ad859b8532d",
  3146. "shasum": ""
  3147. },
  3148. "require": {
  3149. "php": ">=5.3.3"
  3150. },
  3151. "suggest": {
  3152. "ext-mbstring": "For best performance"
  3153. },
  3154. "type": "library",
  3155. "extra": {
  3156. "branch-alias": {
  3157. "dev-master": "1.1-dev"
  3158. }
  3159. },
  3160. "autoload": {
  3161. "psr-4": {
  3162. "Symfony\\Polyfill\\Mbstring\\": ""
  3163. },
  3164. "files": [
  3165. "bootstrap.php"
  3166. ]
  3167. },
  3168. "notification-url": "https://packagist.org/downloads/",
  3169. "license": [
  3170. "MIT"
  3171. ],
  3172. "authors": [
  3173. {
  3174. "name": "Nicolas Grekas",
  3175. "email": "p@tchwork.com"
  3176. },
  3177. {
  3178. "name": "Symfony Community",
  3179. "homepage": "https://symfony.com/contributors"
  3180. }
  3181. ],
  3182. "description": "Symfony polyfill for the Mbstring extension",
  3183. "homepage": "https://symfony.com",
  3184. "keywords": [
  3185. "compatibility",
  3186. "mbstring",
  3187. "polyfill",
  3188. "portable",
  3189. "shim"
  3190. ],
  3191. "time": "2016-01-20 09:13:37"
  3192. },
  3193. {
  3194. "name": "symfony/polyfill-php54",
  3195. "version": "v1.1.1",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/symfony/polyfill-php54.git",
  3199. "reference": "9ba741ca01c77282ecf5796c2c1d667f03454ffb"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/symfony/polyfill-php54/zipball/9ba741ca01c77282ecf5796c2c1d667f03454ffb",
  3204. "reference": "9ba741ca01c77282ecf5796c2c1d667f03454ffb",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "php": ">=5.3.3"
  3209. },
  3210. "type": "library",
  3211. "extra": {
  3212. "branch-alias": {
  3213. "dev-master": "1.1-dev"
  3214. }
  3215. },
  3216. "autoload": {
  3217. "psr-4": {
  3218. "Symfony\\Polyfill\\Php54\\": ""
  3219. },
  3220. "files": [
  3221. "bootstrap.php"
  3222. ],
  3223. "classmap": [
  3224. "Resources/stubs"
  3225. ]
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "MIT"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Nicolas Grekas",
  3234. "email": "p@tchwork.com"
  3235. },
  3236. {
  3237. "name": "Symfony Community",
  3238. "homepage": "https://symfony.com/contributors"
  3239. }
  3240. ],
  3241. "description": "Symfony polyfill backporting some PHP 5.4+ features to lower PHP versions",
  3242. "homepage": "https://symfony.com",
  3243. "keywords": [
  3244. "compatibility",
  3245. "polyfill",
  3246. "portable",
  3247. "shim"
  3248. ],
  3249. "time": "2016-01-25 19:13:00"
  3250. },
  3251. {
  3252. "name": "symfony/polyfill-php55",
  3253. "version": "v1.1.1",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/symfony/polyfill-php55.git",
  3257. "reference": "b4f3f07d91702f8f926339fc4fcf81671d8c27e6"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/symfony/polyfill-php55/zipball/b4f3f07d91702f8f926339fc4fcf81671d8c27e6",
  3262. "reference": "b4f3f07d91702f8f926339fc4fcf81671d8c27e6",
  3263. "shasum": ""
  3264. },
  3265. "require": {
  3266. "ircmaxell/password-compat": "~1.0",
  3267. "php": ">=5.3.3"
  3268. },
  3269. "type": "library",
  3270. "extra": {
  3271. "branch-alias": {
  3272. "dev-master": "1.1-dev"
  3273. }
  3274. },
  3275. "autoload": {
  3276. "psr-4": {
  3277. "Symfony\\Polyfill\\Php55\\": ""
  3278. },
  3279. "files": [
  3280. "bootstrap.php"
  3281. ]
  3282. },
  3283. "notification-url": "https://packagist.org/downloads/",
  3284. "license": [
  3285. "MIT"
  3286. ],
  3287. "authors": [
  3288. {
  3289. "name": "Nicolas Grekas",
  3290. "email": "p@tchwork.com"
  3291. },
  3292. {
  3293. "name": "Symfony Community",
  3294. "homepage": "https://symfony.com/contributors"
  3295. }
  3296. ],
  3297. "description": "Symfony polyfill backporting some PHP 5.5+ features to lower PHP versions",
  3298. "homepage": "https://symfony.com",
  3299. "keywords": [
  3300. "compatibility",
  3301. "polyfill",
  3302. "portable",
  3303. "shim"
  3304. ],
  3305. "time": "2016-01-20 09:13:37"
  3306. },
  3307. {
  3308. "name": "symfony/polyfill-php56",
  3309. "version": "v1.1.1",
  3310. "source": {
  3311. "type": "git",
  3312. "url": "https://github.com/symfony/polyfill-php56.git",
  3313. "reference": "4d891fff050101a53a4caabb03277284942d1ad9"
  3314. },
  3315. "dist": {
  3316. "type": "zip",
  3317. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/4d891fff050101a53a4caabb03277284942d1ad9",
  3318. "reference": "4d891fff050101a53a4caabb03277284942d1ad9",
  3319. "shasum": ""
  3320. },
  3321. "require": {
  3322. "php": ">=5.3.3",
  3323. "symfony/polyfill-util": "~1.0"
  3324. },
  3325. "type": "library",
  3326. "extra": {
  3327. "branch-alias": {
  3328. "dev-master": "1.1-dev"
  3329. }
  3330. },
  3331. "autoload": {
  3332. "psr-4": {
  3333. "Symfony\\Polyfill\\Php56\\": ""
  3334. },
  3335. "files": [
  3336. "bootstrap.php"
  3337. ]
  3338. },
  3339. "notification-url": "https://packagist.org/downloads/",
  3340. "license": [
  3341. "MIT"
  3342. ],
  3343. "authors": [
  3344. {
  3345. "name": "Nicolas Grekas",
  3346. "email": "p@tchwork.com"
  3347. },
  3348. {
  3349. "name": "Symfony Community",
  3350. "homepage": "https://symfony.com/contributors"
  3351. }
  3352. ],
  3353. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3354. "homepage": "https://symfony.com",
  3355. "keywords": [
  3356. "compatibility",
  3357. "polyfill",
  3358. "portable",
  3359. "shim"
  3360. ],
  3361. "time": "2016-01-20 09:13:37"
  3362. },
  3363. {
  3364. "name": "symfony/polyfill-php70",
  3365. "version": "v1.1.1",
  3366. "source": {
  3367. "type": "git",
  3368. "url": "https://github.com/symfony/polyfill-php70.git",
  3369. "reference": "386c1be9cad3ab531425211919e78c37971be4ce"
  3370. },
  3371. "dist": {
  3372. "type": "zip",
  3373. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/386c1be9cad3ab531425211919e78c37971be4ce",
  3374. "reference": "386c1be9cad3ab531425211919e78c37971be4ce",
  3375. "shasum": ""
  3376. },
  3377. "require": {
  3378. "paragonie/random_compat": "~1.0",
  3379. "php": ">=5.3.3"
  3380. },
  3381. "type": "library",
  3382. "extra": {
  3383. "branch-alias": {
  3384. "dev-master": "1.1-dev"
  3385. }
  3386. },
  3387. "autoload": {
  3388. "psr-4": {
  3389. "Symfony\\Polyfill\\Php70\\": ""
  3390. },
  3391. "files": [
  3392. "bootstrap.php"
  3393. ],
  3394. "classmap": [
  3395. "Resources/stubs"
  3396. ]
  3397. },
  3398. "notification-url": "https://packagist.org/downloads/",
  3399. "license": [
  3400. "MIT"
  3401. ],
  3402. "authors": [
  3403. {
  3404. "name": "Nicolas Grekas",
  3405. "email": "p@tchwork.com"
  3406. },
  3407. {
  3408. "name": "Symfony Community",
  3409. "homepage": "https://symfony.com/contributors"
  3410. }
  3411. ],
  3412. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3413. "homepage": "https://symfony.com",
  3414. "keywords": [
  3415. "compatibility",
  3416. "polyfill",
  3417. "portable",
  3418. "shim"
  3419. ],
  3420. "time": "2016-01-28 22:42:02"
  3421. },
  3422. {
  3423. "name": "symfony/polyfill-util",
  3424. "version": "v1.1.1",
  3425. "source": {
  3426. "type": "git",
  3427. "url": "https://github.com/symfony/polyfill-util.git",
  3428. "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4"
  3429. },
  3430. "dist": {
  3431. "type": "zip",
  3432. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4",
  3433. "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4",
  3434. "shasum": ""
  3435. },
  3436. "require": {
  3437. "php": ">=5.3.3"
  3438. },
  3439. "type": "library",
  3440. "extra": {
  3441. "branch-alias": {
  3442. "dev-master": "1.1-dev"
  3443. }
  3444. },
  3445. "autoload": {
  3446. "psr-4": {
  3447. "Symfony\\Polyfill\\Util\\": ""
  3448. }
  3449. },
  3450. "notification-url": "https://packagist.org/downloads/",
  3451. "license": [
  3452. "MIT"
  3453. ],
  3454. "authors": [
  3455. {
  3456. "name": "Nicolas Grekas",
  3457. "email": "p@tchwork.com"
  3458. },
  3459. {
  3460. "name": "Symfony Community",
  3461. "homepage": "https://symfony.com/contributors"
  3462. }
  3463. ],
  3464. "description": "Symfony utilities for portability of PHP codes",
  3465. "homepage": "https://symfony.com",
  3466. "keywords": [
  3467. "compat",
  3468. "compatibility",
  3469. "polyfill",
  3470. "shim"
  3471. ],
  3472. "time": "2016-01-20 09:13:37"
  3473. },
  3474. {
  3475. "name": "symfony/security-acl",
  3476. "version": "v2.8.0",
  3477. "source": {
  3478. "type": "git",
  3479. "url": "https://github.com/symfony/security-acl.git",
  3480. "reference": "4a3f7327ad215242c78f6564ad4ea6d2db1b8347"
  3481. },
  3482. "dist": {
  3483. "type": "zip",
  3484. "url": "https://api.github.com/repos/symfony/security-acl/zipball/4a3f7327ad215242c78f6564ad4ea6d2db1b8347",
  3485. "reference": "4a3f7327ad215242c78f6564ad4ea6d2db1b8347",
  3486. "shasum": ""
  3487. },
  3488. "require": {
  3489. "php": ">=5.3.9",
  3490. "symfony/security-core": "~2.4|~3.0.0"
  3491. },
  3492. "require-dev": {
  3493. "doctrine/common": "~2.2",
  3494. "doctrine/dbal": "~2.2",
  3495. "psr/log": "~1.0",
  3496. "symfony/phpunit-bridge": "~2.7|~3.0.0"
  3497. },
  3498. "suggest": {
  3499. "doctrine/dbal": "For using the built-in ACL implementation",
  3500. "symfony/class-loader": "For using the ACL generateSql script",
  3501. "symfony/finder": "For using the ACL generateSql script"
  3502. },
  3503. "type": "library",
  3504. "extra": {
  3505. "branch-alias": {
  3506. "dev-master": "2.8-dev"
  3507. }
  3508. },
  3509. "autoload": {
  3510. "psr-4": {
  3511. "Symfony\\Component\\Security\\Acl\\": ""
  3512. },
  3513. "exclude-from-classmap": [
  3514. "/Tests/"
  3515. ]
  3516. },
  3517. "notification-url": "https://packagist.org/downloads/",
  3518. "license": [
  3519. "MIT"
  3520. ],
  3521. "authors": [
  3522. {
  3523. "name": "Fabien Potencier",
  3524. "email": "fabien@symfony.com"
  3525. },
  3526. {
  3527. "name": "Symfony Community",
  3528. "homepage": "https://symfony.com/contributors"
  3529. }
  3530. ],
  3531. "description": "Symfony Security Component - ACL (Access Control List)",
  3532. "homepage": "https://symfony.com",
  3533. "time": "2015-12-28 09:39:09"
  3534. },
  3535. {
  3536. "name": "symfony/swiftmailer-bundle",
  3537. "version": "v2.3.11",
  3538. "source": {
  3539. "type": "git",
  3540. "url": "https://github.com/symfony/swiftmailer-bundle.git",
  3541. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690"
  3542. },
  3543. "dist": {
  3544. "type": "zip",
  3545. "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3546. "reference": "5e1a90f28213231ceee19c953bbebc5b5b95c690",
  3547. "shasum": ""
  3548. },
  3549. "require": {
  3550. "php": ">=5.3.2",
  3551. "swiftmailer/swiftmailer": ">=4.2.0,~5.0",
  3552. "symfony/config": "~2.3|~3.0",
  3553. "symfony/dependency-injection": "~2.3|~3.0",
  3554. "symfony/http-kernel": "~2.3|~3.0",
  3555. "symfony/yaml": "~2.3|~3.0"
  3556. },
  3557. "require-dev": {
  3558. "symfony/phpunit-bridge": "~2.7|~3.0"
  3559. },
  3560. "suggest": {
  3561. "psr/log": "Allows logging"
  3562. },
  3563. "type": "symfony-bundle",
  3564. "extra": {
  3565. "branch-alias": {
  3566. "dev-master": "2.3-dev"
  3567. }
  3568. },
  3569. "autoload": {
  3570. "psr-4": {
  3571. "Symfony\\Bundle\\SwiftmailerBundle\\": ""
  3572. }
  3573. },
  3574. "notification-url": "https://packagist.org/downloads/",
  3575. "license": [
  3576. "MIT"
  3577. ],
  3578. "authors": [
  3579. {
  3580. "name": "Symfony Community",
  3581. "homepage": "http://symfony.com/contributors"
  3582. },
  3583. {
  3584. "name": "Fabien Potencier",
  3585. "email": "fabien@symfony.com"
  3586. }
  3587. ],
  3588. "description": "Symfony SwiftmailerBundle",
  3589. "homepage": "http://symfony.com",
  3590. "time": "2016-01-15 16:41:20"
  3591. },
  3592. {
  3593. "name": "symfony/symfony",
  3594. "version": "v2.8.4",
  3595. "source": {
  3596. "type": "git",
  3597. "url": "https://github.com/symfony/symfony.git",
  3598. "reference": "9e14f9f4869c19188a376eab61d9a1c1f1fee347"
  3599. },
  3600. "dist": {
  3601. "type": "zip",
  3602. "url": "https://api.github.com/repos/symfony/symfony/zipball/9e14f9f4869c19188a376eab61d9a1c1f1fee347",
  3603. "reference": "9e14f9f4869c19188a376eab61d9a1c1f1fee347",
  3604. "shasum": ""
  3605. },
  3606. "require": {
  3607. "doctrine/common": "~2.4",
  3608. "php": ">=5.3.9",
  3609. "psr/log": "~1.0",
  3610. "symfony/polyfill-apcu": "~1.1",
  3611. "symfony/polyfill-intl-icu": "~1.0",
  3612. "symfony/polyfill-mbstring": "~1.0",
  3613. "symfony/polyfill-php54": "~1.0",
  3614. "symfony/polyfill-php55": "~1.0",
  3615. "symfony/polyfill-php56": "~1.0",
  3616. "symfony/polyfill-php70": "~1.0",
  3617. "symfony/polyfill-util": "~1.0",
  3618. "symfony/security-acl": "~2.7",
  3619. "twig/twig": "~1.23|~2.0"
  3620. },
  3621. "conflict": {
  3622. "phpdocumentor/reflection": "<1.0.7"
  3623. },
  3624. "replace": {
  3625. "symfony/asset": "self.version",
  3626. "symfony/browser-kit": "self.version",
  3627. "symfony/class-loader": "self.version",
  3628. "symfony/config": "self.version",
  3629. "symfony/console": "self.version",
  3630. "symfony/css-selector": "self.version",
  3631. "symfony/debug": "self.version",
  3632. "symfony/debug-bundle": "self.version",
  3633. "symfony/dependency-injection": "self.version",
  3634. "symfony/doctrine-bridge": "self.version",
  3635. "symfony/dom-crawler": "self.version",
  3636. "symfony/event-dispatcher": "self.version",
  3637. "symfony/expression-language": "self.version",
  3638. "symfony/filesystem": "self.version",
  3639. "symfony/finder": "self.version",
  3640. "symfony/form": "self.version",
  3641. "symfony/framework-bundle": "self.version",
  3642. "symfony/http-foundation": "self.version",
  3643. "symfony/http-kernel": "self.version",
  3644. "symfony/intl": "self.version",
  3645. "symfony/ldap": "self.version",
  3646. "symfony/locale": "self.version",
  3647. "symfony/monolog-bridge": "self.version",
  3648. "symfony/options-resolver": "self.version",
  3649. "symfony/process": "self.version",
  3650. "symfony/property-access": "self.version",
  3651. "symfony/property-info": "self.version",
  3652. "symfony/proxy-manager-bridge": "self.version",
  3653. "symfony/routing": "self.version",
  3654. "symfony/security": "self.version",
  3655. "symfony/security-bundle": "self.version",
  3656. "symfony/security-core": "self.version",
  3657. "symfony/security-csrf": "self.version",
  3658. "symfony/security-guard": "self.version",
  3659. "symfony/security-http": "self.version",
  3660. "symfony/serializer": "self.version",
  3661. "symfony/stopwatch": "self.version",
  3662. "symfony/swiftmailer-bridge": "self.version",
  3663. "symfony/templating": "self.version",
  3664. "symfony/translation": "self.version",
  3665. "symfony/twig-bridge": "self.version",
  3666. "symfony/twig-bundle": "self.version",
  3667. "symfony/validator": "self.version",
  3668. "symfony/var-dumper": "self.version",
  3669. "symfony/web-profiler-bundle": "self.version",
  3670. "symfony/yaml": "self.version"
  3671. },
  3672. "require-dev": {
  3673. "doctrine/data-fixtures": "1.0.*",
  3674. "doctrine/dbal": "~2.4",
  3675. "doctrine/doctrine-bundle": "~1.2",
  3676. "doctrine/orm": "~2.4,>=2.4.5",
  3677. "egulias/email-validator": "~1.2",
  3678. "monolog/monolog": "~1.11",
  3679. "ocramius/proxy-manager": "~0.4|~1.0|~2.0",
  3680. "phpdocumentor/reflection": "^1.0.7"
  3681. },
  3682. "type": "library",
  3683. "extra": {
  3684. "branch-alias": {
  3685. "dev-master": "2.8-dev"
  3686. }
  3687. },
  3688. "autoload": {
  3689. "psr-4": {
  3690. "Symfony\\Bridge\\": "src/Symfony/Bridge/",
  3691. "Symfony\\Bundle\\": "src/Symfony/Bundle/",
  3692. "Symfony\\Component\\": "src/Symfony/Component/"
  3693. },
  3694. "classmap": [
  3695. "src/Symfony/Component/Intl/Resources/stubs"
  3696. ],
  3697. "exclude-from-classmap": [
  3698. "**/Tests/"
  3699. ]
  3700. },
  3701. "notification-url": "https://packagist.org/downloads/",
  3702. "license": [
  3703. "MIT"
  3704. ],
  3705. "authors": [
  3706. {
  3707. "name": "Fabien Potencier",
  3708. "email": "fabien@symfony.com"
  3709. },
  3710. {
  3711. "name": "Symfony Community",
  3712. "homepage": "https://symfony.com/contributors"
  3713. }
  3714. ],
  3715. "description": "The Symfony PHP framework",
  3716. "homepage": "https://symfony.com",
  3717. "keywords": [
  3718. "framework"
  3719. ],
  3720. "time": "2016-03-27 12:57:53"
  3721. },
  3722. {
  3723. "name": "twig/extensions",
  3724. "version": "v1.3.0",
  3725. "source": {
  3726. "type": "git",
  3727. "url": "https://github.com/twigphp/Twig-extensions.git",
  3728. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499"
  3729. },
  3730. "dist": {
  3731. "type": "zip",
  3732. "url": "https://api.github.com/repos/twigphp/Twig-extensions/zipball/449e3c8a9ffad7c2479c7864557275a32b037499",
  3733. "reference": "449e3c8a9ffad7c2479c7864557275a32b037499",
  3734. "shasum": ""
  3735. },
  3736. "require": {
  3737. "twig/twig": "~1.20|~2.0"
  3738. },
  3739. "require-dev": {
  3740. "symfony/translation": "~2.3"
  3741. },
  3742. "suggest": {
  3743. "symfony/translation": "Allow the time_diff output to be translated"
  3744. },
  3745. "type": "library",
  3746. "extra": {
  3747. "branch-alias": {
  3748. "dev-master": "1.3-dev"
  3749. }
  3750. },
  3751. "autoload": {
  3752. "psr-0": {
  3753. "Twig_Extensions_": "lib/"
  3754. }
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "MIT"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Fabien Potencier",
  3763. "email": "fabien@symfony.com"
  3764. }
  3765. ],
  3766. "description": "Common additional features for Twig that do not directly belong in core",
  3767. "homepage": "http://twig.sensiolabs.org/doc/extensions/index.html",
  3768. "keywords": [
  3769. "i18n",
  3770. "text"
  3771. ],
  3772. "time": "2015-08-22 16:38:35"
  3773. },
  3774. {
  3775. "name": "twig/twig",
  3776. "version": "v1.24.0",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://github.com/twigphp/Twig.git",
  3780. "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
  3785. "reference": "3e5aa30ebfbafd5951fb1b01e338e1800ce7e0e8",
  3786. "shasum": ""
  3787. },
  3788. "require": {
  3789. "php": ">=5.2.7"
  3790. },
  3791. "require-dev": {
  3792. "symfony/debug": "~2.7",
  3793. "symfony/phpunit-bridge": "~2.7"
  3794. },
  3795. "type": "library",
  3796. "extra": {
  3797. "branch-alias": {
  3798. "dev-master": "1.24-dev"
  3799. }
  3800. },
  3801. "autoload": {
  3802. "psr-0": {
  3803. "Twig_": "lib/"
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "BSD-3-Clause"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "Fabien Potencier",
  3813. "email": "fabien@symfony.com",
  3814. "homepage": "http://fabien.potencier.org",
  3815. "role": "Lead Developer"
  3816. },
  3817. {
  3818. "name": "Armin Ronacher",
  3819. "email": "armin.ronacher@active-4.com",
  3820. "role": "Project Founder"
  3821. },
  3822. {
  3823. "name": "Twig Team",
  3824. "homepage": "http://twig.sensiolabs.org/contributors",
  3825. "role": "Contributors"
  3826. }
  3827. ],
  3828. "description": "Twig, the flexible, fast, and secure template language for PHP",
  3829. "homepage": "http://twig.sensiolabs.org",
  3830. "keywords": [
  3831. "templating"
  3832. ],
  3833. "time": "2016-01-25 21:22:18"
  3834. },
  3835. {
  3836. "name": "white-october/pagerfanta-bundle",
  3837. "version": "v1.0.6",
  3838. "source": {
  3839. "type": "git",
  3840. "url": "https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle.git",
  3841. "reference": "ada62843d9ba0d3aa61d0dcc7becdb25a2e2f545"
  3842. },
  3843. "dist": {
  3844. "type": "zip",
  3845. "url": "https://api.github.com/repos/whiteoctober/WhiteOctoberPagerfantaBundle/zipball/ada62843d9ba0d3aa61d0dcc7becdb25a2e2f545",
  3846. "reference": "ada62843d9ba0d3aa61d0dcc7becdb25a2e2f545",
  3847. "shasum": ""
  3848. },
  3849. "require": {
  3850. "pagerfanta/pagerfanta": "1.0.*",
  3851. "symfony/framework-bundle": "~2.3|~3.0",
  3852. "symfony/property-access": "~2.3|~3.0",
  3853. "symfony/twig-bundle": "~2.3|~3.0"
  3854. },
  3855. "require-dev": {
  3856. "phpunit/phpunit": "~3.7",
  3857. "symfony/symfony": "~2.3|~3.0"
  3858. },
  3859. "type": "symfony-bundle",
  3860. "extra": {
  3861. "branch-alias": {
  3862. "dev-master": "1.0.x-dev"
  3863. }
  3864. },
  3865. "autoload": {
  3866. "psr-4": {
  3867. "WhiteOctober\\PagerfantaBundle\\": ""
  3868. }
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "MIT"
  3873. ],
  3874. "authors": [
  3875. {
  3876. "name": "Pablo Díez",
  3877. "email": "pablodip@gmail.com"
  3878. }
  3879. ],
  3880. "description": "Bundle to use Pagerfanta with Symfony2",
  3881. "keywords": [
  3882. "page",
  3883. "paging"
  3884. ],
  3885. "time": "2016-03-16 19:24:56"
  3886. },
  3887. {
  3888. "name": "zendframework/zend-escaper",
  3889. "version": "2.5.1",
  3890. "source": {
  3891. "type": "git",
  3892. "url": "https://github.com/zendframework/zend-escaper.git",
  3893. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73"
  3894. },
  3895. "dist": {
  3896. "type": "zip",
  3897. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3898. "reference": "a4b227d8a477f4e7e9073f8e0a7ae7dbd3104a73",
  3899. "shasum": ""
  3900. },
  3901. "require": {
  3902. "php": ">=5.3.23"
  3903. },
  3904. "require-dev": {
  3905. "fabpot/php-cs-fixer": "1.7.*",
  3906. "phpunit/phpunit": "~4.0"
  3907. },
  3908. "type": "library",
  3909. "extra": {
  3910. "branch-alias": {
  3911. "dev-master": "2.5-dev",
  3912. "dev-develop": "2.6-dev"
  3913. }
  3914. },
  3915. "autoload": {
  3916. "psr-4": {
  3917. "Zend\\Escaper\\": "src/"
  3918. }
  3919. },
  3920. "notification-url": "https://packagist.org/downloads/",
  3921. "license": [
  3922. "BSD-3-Clause"
  3923. ],
  3924. "homepage": "https://github.com/zendframework/zend-escaper",
  3925. "keywords": [
  3926. "escaper",
  3927. "zf2"
  3928. ],
  3929. "time": "2015-06-03 14:05:37"
  3930. },
  3931. {
  3932. "name": "zendframework/zend-feed",
  3933. "version": "2.7.0",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/zendframework/zend-feed.git",
  3937. "reference": "12b328d382aa5200f1de53d4147033b885776b67"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/12b328d382aa5200f1de53d4147033b885776b67",
  3942. "reference": "12b328d382aa5200f1de53d4147033b885776b67",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "php": "^5.5 || ^7.0",
  3947. "zendframework/zend-escaper": "^2.5",
  3948. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  3949. },
  3950. "require-dev": {
  3951. "fabpot/php-cs-fixer": "1.7.*",
  3952. "phpunit/phpunit": "~4.0",
  3953. "psr/http-message": "^1.0",
  3954. "zendframework/zend-cache": "^2.5",
  3955. "zendframework/zend-db": "^2.5",
  3956. "zendframework/zend-http": "^2.5",
  3957. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  3958. "zendframework/zend-validator": "^2.5"
  3959. },
  3960. "suggest": {
  3961. "psr/http-message": "PSR-7 ^1.0, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  3962. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  3963. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  3964. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  3965. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  3966. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries ehen using the Writer subcomponent"
  3967. },
  3968. "type": "library",
  3969. "extra": {
  3970. "branch-alias": {
  3971. "dev-master": "2.7-dev",
  3972. "dev-develop": "2.8-dev"
  3973. }
  3974. },
  3975. "autoload": {
  3976. "psr-4": {
  3977. "Zend\\Feed\\": "src/"
  3978. }
  3979. },
  3980. "notification-url": "https://packagist.org/downloads/",
  3981. "license": [
  3982. "BSD-3-Clause"
  3983. ],
  3984. "description": "provides functionality for consuming RSS and Atom feeds",
  3985. "homepage": "https://github.com/zendframework/zend-feed",
  3986. "keywords": [
  3987. "feed",
  3988. "zf2"
  3989. ],
  3990. "time": "2016-02-11 18:54:29"
  3991. },
  3992. {
  3993. "name": "zendframework/zend-json",
  3994. "version": "2.6.1",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/zendframework/zend-json.git",
  3998. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/zendframework/zend-json/zipball/4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4003. "reference": "4c8705dbe4ad7d7e51b2876c5b9eea0ef916ba28",
  4004. "shasum": ""
  4005. },
  4006. "require": {
  4007. "php": "^5.5 || ^7.0"
  4008. },
  4009. "require-dev": {
  4010. "fabpot/php-cs-fixer": "1.7.*",
  4011. "phpunit/phpunit": "~4.0",
  4012. "zendframework/zend-http": "^2.5.4",
  4013. "zendframework/zend-server": "^2.6.1",
  4014. "zendframework/zend-stdlib": "^2.5 || ^3.0",
  4015. "zendframework/zendxml": "^1.0.2"
  4016. },
  4017. "suggest": {
  4018. "zendframework/zend-http": "Zend\\Http component, required to use Zend\\Json\\Server",
  4019. "zendframework/zend-server": "Zend\\Server component, required to use Zend\\Json\\Server",
  4020. "zendframework/zend-stdlib": "Zend\\Stdlib component, for use with caching Zend\\Json\\Server responses",
  4021. "zendframework/zendxml": "To support Zend\\Json\\Json::fromXml() usage"
  4022. },
  4023. "type": "library",
  4024. "extra": {
  4025. "branch-alias": {
  4026. "dev-master": "2.6-dev",
  4027. "dev-develop": "2.7-dev"
  4028. }
  4029. },
  4030. "autoload": {
  4031. "psr-4": {
  4032. "Zend\\Json\\": "src/"
  4033. }
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "BSD-3-Clause"
  4038. ],
  4039. "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
  4040. "homepage": "https://github.com/zendframework/zend-json",
  4041. "keywords": [
  4042. "json",
  4043. "zf2"
  4044. ],
  4045. "time": "2016-02-04 21:20:26"
  4046. },
  4047. {
  4048. "name": "zendframework/zend-servicemanager",
  4049. "version": "2.7.5",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://github.com/zendframework/zend-servicemanager.git",
  4053. "reference": "fb5b54db5ead533b38e311f14e9c01a79218bf2b"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://api.github.com/repos/zendframework/zend-servicemanager/zipball/fb5b54db5ead533b38e311f14e9c01a79218bf2b",
  4058. "reference": "fb5b54db5ead533b38e311f14e9c01a79218bf2b",
  4059. "shasum": ""
  4060. },
  4061. "require": {
  4062. "container-interop/container-interop": "~1.0",
  4063. "php": "^5.5 || ^7.0"
  4064. },
  4065. "require-dev": {
  4066. "athletic/athletic": "dev-master",
  4067. "fabpot/php-cs-fixer": "1.7.*",
  4068. "phpunit/phpunit": "~4.0",
  4069. "zendframework/zend-di": "~2.5",
  4070. "zendframework/zend-mvc": "~2.5"
  4071. },
  4072. "suggest": {
  4073. "ocramius/proxy-manager": "ProxyManager 0.5.* to handle lazy initialization of services",
  4074. "zendframework/zend-di": "Zend\\Di component"
  4075. },
  4076. "type": "library",
  4077. "extra": {
  4078. "branch-alias": {
  4079. "dev-master": "2.7-dev",
  4080. "dev-develop": "3.0-dev"
  4081. }
  4082. },
  4083. "autoload": {
  4084. "psr-4": {
  4085. "Zend\\ServiceManager\\": "src/"
  4086. }
  4087. },
  4088. "notification-url": "https://packagist.org/downloads/",
  4089. "license": [
  4090. "BSD-3-Clause"
  4091. ],
  4092. "homepage": "https://github.com/zendframework/zend-servicemanager",
  4093. "keywords": [
  4094. "servicemanager",
  4095. "zf2"
  4096. ],
  4097. "time": "2016-02-02 14:11:46"
  4098. },
  4099. {
  4100. "name": "zendframework/zend-stdlib",
  4101. "version": "3.0.0",
  4102. "source": {
  4103. "type": "git",
  4104. "url": "https://github.com/zendframework/zend-stdlib.git",
  4105. "reference": "22eb098958980fbbe6b9a06f209f5a4b496cc0c1"
  4106. },
  4107. "dist": {
  4108. "type": "zip",
  4109. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/22eb098958980fbbe6b9a06f209f5a4b496cc0c1",
  4110. "reference": "22eb098958980fbbe6b9a06f209f5a4b496cc0c1",
  4111. "shasum": ""
  4112. },
  4113. "require": {
  4114. "php": "^5.5 || ^7.0"
  4115. },
  4116. "require-dev": {
  4117. "athletic/athletic": "~0.1",
  4118. "fabpot/php-cs-fixer": "1.7.*",
  4119. "phpunit/phpunit": "~4.0"
  4120. },
  4121. "type": "library",
  4122. "extra": {
  4123. "branch-alias": {
  4124. "dev-master": "3.0-dev",
  4125. "dev-develop": "3.1-dev"
  4126. }
  4127. },
  4128. "autoload": {
  4129. "psr-4": {
  4130. "Zend\\Stdlib\\": "src/"
  4131. }
  4132. },
  4133. "notification-url": "https://packagist.org/downloads/",
  4134. "license": [
  4135. "BSD-3-Clause"
  4136. ],
  4137. "homepage": "https://github.com/zendframework/zend-stdlib",
  4138. "keywords": [
  4139. "stdlib",
  4140. "zf2"
  4141. ],
  4142. "time": "2016-02-03 16:53:37"
  4143. },
  4144. {
  4145. "name": "zendframework/zend-uri",
  4146. "version": "2.5.2",
  4147. "source": {
  4148. "type": "git",
  4149. "url": "https://github.com/zendframework/zend-uri.git",
  4150. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed"
  4151. },
  4152. "dist": {
  4153. "type": "zip",
  4154. "url": "https://api.github.com/repos/zendframework/zend-uri/zipball/0bf717a239432b1a1675ae314f7c4acd742749ed",
  4155. "reference": "0bf717a239432b1a1675ae314f7c4acd742749ed",
  4156. "shasum": ""
  4157. },
  4158. "require": {
  4159. "php": "^5.5 || ^7.0",
  4160. "zendframework/zend-escaper": "^2.5",
  4161. "zendframework/zend-validator": "^2.5"
  4162. },
  4163. "require-dev": {
  4164. "fabpot/php-cs-fixer": "1.7.*",
  4165. "phpunit/phpunit": "~4.0"
  4166. },
  4167. "type": "library",
  4168. "extra": {
  4169. "branch-alias": {
  4170. "dev-master": "2.5-dev",
  4171. "dev-develop": "2.6-dev"
  4172. }
  4173. },
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Zend\\Uri\\": "src/"
  4177. }
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "BSD-3-Clause"
  4182. ],
  4183. "description": "a component that aids in manipulating and validating » Uniform Resource Identifiers (URIs)",
  4184. "homepage": "https://github.com/zendframework/zend-uri",
  4185. "keywords": [
  4186. "uri",
  4187. "zf2"
  4188. ],
  4189. "time": "2016-02-17 22:38:51"
  4190. },
  4191. {
  4192. "name": "zendframework/zend-validator",
  4193. "version": "2.6.0",
  4194. "source": {
  4195. "type": "git",
  4196. "url": "https://github.com/zendframework/zend-validator.git",
  4197. "reference": "1315fead53358054e3f5fcf440c1a4cd5f0724db"
  4198. },
  4199. "dist": {
  4200. "type": "zip",
  4201. "url": "https://api.github.com/repos/zendframework/zend-validator/zipball/1315fead53358054e3f5fcf440c1a4cd5f0724db",
  4202. "reference": "1315fead53358054e3f5fcf440c1a4cd5f0724db",
  4203. "shasum": ""
  4204. },
  4205. "require": {
  4206. "container-interop/container-interop": "^1.1",
  4207. "php": "^5.5 || ^7.0",
  4208. "zendframework/zend-stdlib": "^2.7 || ^3.0"
  4209. },
  4210. "require-dev": {
  4211. "fabpot/php-cs-fixer": "1.7.*",
  4212. "phpunit/phpunit": "^4.0",
  4213. "zendframework/zend-cache": "^2.6.1",
  4214. "zendframework/zend-config": "^2.6",
  4215. "zendframework/zend-db": "^2.5",
  4216. "zendframework/zend-filter": "^2.6",
  4217. "zendframework/zend-http": "^2.5.4",
  4218. "zendframework/zend-i18n": "^2.6",
  4219. "zendframework/zend-math": "^2.6",
  4220. "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
  4221. "zendframework/zend-session": "^2.5",
  4222. "zendframework/zend-uri": "^2.5"
  4223. },
  4224. "suggest": {
  4225. "zendframework/zend-db": "Zend\\Db component",
  4226. "zendframework/zend-filter": "Zend\\Filter component, required by the Digits validator",
  4227. "zendframework/zend-i18n": "Zend\\I18n component to allow translation of validation error messages as well as to use the various Date validators",
  4228. "zendframework/zend-i18n-resources": "Translations of validator messages",
  4229. "zendframework/zend-math": "Zend\\Math component",
  4230. "zendframework/zend-servicemanager": "Zend\\ServiceManager component to allow using the ValidatorPluginManager and validator chains",
  4231. "zendframework/zend-session": "Zend\\Session component",
  4232. "zendframework/zend-uri": "Zend\\Uri component, required by the Uri and Sitemap\\Loc validators"
  4233. },
  4234. "type": "library",
  4235. "extra": {
  4236. "branch-alias": {
  4237. "dev-master": "2.6-dev",
  4238. "dev-develop": "2.7-dev"
  4239. }
  4240. },
  4241. "autoload": {
  4242. "psr-4": {
  4243. "Zend\\Validator\\": "src/"
  4244. }
  4245. },
  4246. "notification-url": "https://packagist.org/downloads/",
  4247. "license": [
  4248. "BSD-3-Clause"
  4249. ],
  4250. "description": "provides a set of commonly needed validators",
  4251. "homepage": "https://github.com/zendframework/zend-validator",
  4252. "keywords": [
  4253. "validator",
  4254. "zf2"
  4255. ],
  4256. "time": "2016-02-17 17:59:34"
  4257. },
  4258. {
  4259. "name": "zendframework/zend-version",
  4260. "version": "2.5.1",
  4261. "source": {
  4262. "type": "git",
  4263. "url": "https://github.com/zendframework/zend-version.git",
  4264. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08"
  4265. },
  4266. "dist": {
  4267. "type": "zip",
  4268. "url": "https://api.github.com/repos/zendframework/zend-version/zipball/e30c55dc394eaf396f0347887af0a7bef471fe08",
  4269. "reference": "e30c55dc394eaf396f0347887af0a7bef471fe08",
  4270. "shasum": ""
  4271. },
  4272. "require": {
  4273. "php": ">=5.3.23",
  4274. "zendframework/zend-json": "~2.5"
  4275. },
  4276. "require-dev": {
  4277. "fabpot/php-cs-fixer": "1.7.*",
  4278. "phpunit/phpunit": "~4.0",
  4279. "zendframework/zend-http": "~2.5"
  4280. },
  4281. "suggest": {
  4282. "zendframework/zend-http": "Allows use of Zend\\Http\\Client to check version information",
  4283. "zendframework/zend-json": "To check latest version hosted in GitHub"
  4284. },
  4285. "type": "library",
  4286. "extra": {
  4287. "branch-alias": {
  4288. "dev-master": "2.5-dev",
  4289. "dev-develop": "2.6-dev"
  4290. }
  4291. },
  4292. "autoload": {
  4293. "psr-4": {
  4294. "Zend\\Version\\": "src/"
  4295. }
  4296. },
  4297. "notification-url": "https://packagist.org/downloads/",
  4298. "license": [
  4299. "BSD-3-Clause"
  4300. ],
  4301. "homepage": "https://github.com/zendframework/zend-version",
  4302. "keywords": [
  4303. "version",
  4304. "zf2"
  4305. ],
  4306. "time": "2015-06-04 15:41:05"
  4307. }
  4308. ],
  4309. "packages-dev": [
  4310. {
  4311. "name": "myclabs/deep-copy",
  4312. "version": "1.5.0",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://github.com/myclabs/DeepCopy.git",
  4316. "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
  4321. "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
  4322. "shasum": ""
  4323. },
  4324. "require": {
  4325. "php": ">=5.4.0"
  4326. },
  4327. "require-dev": {
  4328. "doctrine/collections": "1.*",
  4329. "phpunit/phpunit": "~4.1"
  4330. },
  4331. "type": "library",
  4332. "autoload": {
  4333. "psr-4": {
  4334. "DeepCopy\\": "src/DeepCopy/"
  4335. }
  4336. },
  4337. "notification-url": "https://packagist.org/downloads/",
  4338. "license": [
  4339. "MIT"
  4340. ],
  4341. "description": "Create deep copies (clones) of your objects",
  4342. "homepage": "https://github.com/myclabs/DeepCopy",
  4343. "keywords": [
  4344. "clone",
  4345. "copy",
  4346. "duplicate",
  4347. "object",
  4348. "object graph"
  4349. ],
  4350. "time": "2015-11-07 22:20:37"
  4351. },
  4352. {
  4353. "name": "phpdocumentor/reflection-docblock",
  4354. "version": "2.0.4",
  4355. "source": {
  4356. "type": "git",
  4357. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4358. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
  4359. },
  4360. "dist": {
  4361. "type": "zip",
  4362. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
  4363. "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
  4364. "shasum": ""
  4365. },
  4366. "require": {
  4367. "php": ">=5.3.3"
  4368. },
  4369. "require-dev": {
  4370. "phpunit/phpunit": "~4.0"
  4371. },
  4372. "suggest": {
  4373. "dflydev/markdown": "~1.0",
  4374. "erusev/parsedown": "~1.0"
  4375. },
  4376. "type": "library",
  4377. "extra": {
  4378. "branch-alias": {
  4379. "dev-master": "2.0.x-dev"
  4380. }
  4381. },
  4382. "autoload": {
  4383. "psr-0": {
  4384. "phpDocumentor": [
  4385. "src/"
  4386. ]
  4387. }
  4388. },
  4389. "notification-url": "https://packagist.org/downloads/",
  4390. "license": [
  4391. "MIT"
  4392. ],
  4393. "authors": [
  4394. {
  4395. "name": "Mike van Riel",
  4396. "email": "mike.vanriel@naenius.com"
  4397. }
  4398. ],
  4399. "time": "2015-02-03 12:10:50"
  4400. },
  4401. {
  4402. "name": "phpspec/prophecy",
  4403. "version": "v1.6.0",
  4404. "source": {
  4405. "type": "git",
  4406. "url": "https://github.com/phpspec/prophecy.git",
  4407. "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972"
  4408. },
  4409. "dist": {
  4410. "type": "zip",
  4411. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/3c91bdf81797d725b14cb62906f9a4ce44235972",
  4412. "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972",
  4413. "shasum": ""
  4414. },
  4415. "require": {
  4416. "doctrine/instantiator": "^1.0.2",
  4417. "php": "^5.3|^7.0",
  4418. "phpdocumentor/reflection-docblock": "~2.0",
  4419. "sebastian/comparator": "~1.1",
  4420. "sebastian/recursion-context": "~1.0"
  4421. },
  4422. "require-dev": {
  4423. "phpspec/phpspec": "~2.0"
  4424. },
  4425. "type": "library",
  4426. "extra": {
  4427. "branch-alias": {
  4428. "dev-master": "1.5.x-dev"
  4429. }
  4430. },
  4431. "autoload": {
  4432. "psr-0": {
  4433. "Prophecy\\": "src/"
  4434. }
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "Konstantin Kudryashov",
  4443. "email": "ever.zet@gmail.com",
  4444. "homepage": "http://everzet.com"
  4445. },
  4446. {
  4447. "name": "Marcello Duarte",
  4448. "email": "marcello.duarte@gmail.com"
  4449. }
  4450. ],
  4451. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4452. "homepage": "https://github.com/phpspec/prophecy",
  4453. "keywords": [
  4454. "Double",
  4455. "Dummy",
  4456. "fake",
  4457. "mock",
  4458. "spy",
  4459. "stub"
  4460. ],
  4461. "time": "2016-02-15 07:46:21"
  4462. },
  4463. {
  4464. "name": "phpunit/php-code-coverage",
  4465. "version": "3.3.0",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4469. "reference": "fe33716763b604ade4cb442c0794f5bd5ad73004"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/fe33716763b604ade4cb442c0794f5bd5ad73004",
  4474. "reference": "fe33716763b604ade4cb442c0794f5bd5ad73004",
  4475. "shasum": ""
  4476. },
  4477. "require": {
  4478. "php": "^5.6 || ^7.0",
  4479. "phpunit/php-file-iterator": "~1.3",
  4480. "phpunit/php-text-template": "~1.2",
  4481. "phpunit/php-token-stream": "^1.4.2",
  4482. "sebastian/code-unit-reverse-lookup": "~1.0",
  4483. "sebastian/environment": "^1.3.2",
  4484. "sebastian/version": "~1.0|~2.0"
  4485. },
  4486. "require-dev": {
  4487. "ext-xdebug": ">=2.1.4",
  4488. "phpunit/phpunit": "~5"
  4489. },
  4490. "suggest": {
  4491. "ext-dom": "*",
  4492. "ext-xdebug": ">=2.2.1",
  4493. "ext-xmlwriter": "*"
  4494. },
  4495. "type": "library",
  4496. "extra": {
  4497. "branch-alias": {
  4498. "dev-master": "3.3.x-dev"
  4499. }
  4500. },
  4501. "autoload": {
  4502. "classmap": [
  4503. "src/"
  4504. ]
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "BSD-3-Clause"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "Sebastian Bergmann",
  4513. "email": "sb@sebastian-bergmann.de",
  4514. "role": "lead"
  4515. }
  4516. ],
  4517. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4518. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4519. "keywords": [
  4520. "coverage",
  4521. "testing",
  4522. "xunit"
  4523. ],
  4524. "time": "2016-03-03 08:49:08"
  4525. },
  4526. {
  4527. "name": "phpunit/php-file-iterator",
  4528. "version": "1.4.1",
  4529. "source": {
  4530. "type": "git",
  4531. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4532. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  4533. },
  4534. "dist": {
  4535. "type": "zip",
  4536. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4537. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  4538. "shasum": ""
  4539. },
  4540. "require": {
  4541. "php": ">=5.3.3"
  4542. },
  4543. "type": "library",
  4544. "extra": {
  4545. "branch-alias": {
  4546. "dev-master": "1.4.x-dev"
  4547. }
  4548. },
  4549. "autoload": {
  4550. "classmap": [
  4551. "src/"
  4552. ]
  4553. },
  4554. "notification-url": "https://packagist.org/downloads/",
  4555. "license": [
  4556. "BSD-3-Clause"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "Sebastian Bergmann",
  4561. "email": "sb@sebastian-bergmann.de",
  4562. "role": "lead"
  4563. }
  4564. ],
  4565. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4566. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4567. "keywords": [
  4568. "filesystem",
  4569. "iterator"
  4570. ],
  4571. "time": "2015-06-21 13:08:43"
  4572. },
  4573. {
  4574. "name": "phpunit/php-text-template",
  4575. "version": "1.2.1",
  4576. "source": {
  4577. "type": "git",
  4578. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4579. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4580. },
  4581. "dist": {
  4582. "type": "zip",
  4583. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4584. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4585. "shasum": ""
  4586. },
  4587. "require": {
  4588. "php": ">=5.3.3"
  4589. },
  4590. "type": "library",
  4591. "autoload": {
  4592. "classmap": [
  4593. "src/"
  4594. ]
  4595. },
  4596. "notification-url": "https://packagist.org/downloads/",
  4597. "license": [
  4598. "BSD-3-Clause"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "Sebastian Bergmann",
  4603. "email": "sebastian@phpunit.de",
  4604. "role": "lead"
  4605. }
  4606. ],
  4607. "description": "Simple template engine.",
  4608. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4609. "keywords": [
  4610. "template"
  4611. ],
  4612. "time": "2015-06-21 13:50:34"
  4613. },
  4614. {
  4615. "name": "phpunit/php-timer",
  4616. "version": "1.0.7",
  4617. "source": {
  4618. "type": "git",
  4619. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4620. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b"
  4621. },
  4622. "dist": {
  4623. "type": "zip",
  4624. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  4625. "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
  4626. "shasum": ""
  4627. },
  4628. "require": {
  4629. "php": ">=5.3.3"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "classmap": [
  4634. "src/"
  4635. ]
  4636. },
  4637. "notification-url": "https://packagist.org/downloads/",
  4638. "license": [
  4639. "BSD-3-Clause"
  4640. ],
  4641. "authors": [
  4642. {
  4643. "name": "Sebastian Bergmann",
  4644. "email": "sb@sebastian-bergmann.de",
  4645. "role": "lead"
  4646. }
  4647. ],
  4648. "description": "Utility class for timing",
  4649. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4650. "keywords": [
  4651. "timer"
  4652. ],
  4653. "time": "2015-06-21 08:01:12"
  4654. },
  4655. {
  4656. "name": "phpunit/php-token-stream",
  4657. "version": "1.4.8",
  4658. "source": {
  4659. "type": "git",
  4660. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4661. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  4662. },
  4663. "dist": {
  4664. "type": "zip",
  4665. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4666. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  4667. "shasum": ""
  4668. },
  4669. "require": {
  4670. "ext-tokenizer": "*",
  4671. "php": ">=5.3.3"
  4672. },
  4673. "require-dev": {
  4674. "phpunit/phpunit": "~4.2"
  4675. },
  4676. "type": "library",
  4677. "extra": {
  4678. "branch-alias": {
  4679. "dev-master": "1.4-dev"
  4680. }
  4681. },
  4682. "autoload": {
  4683. "classmap": [
  4684. "src/"
  4685. ]
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "BSD-3-Clause"
  4690. ],
  4691. "authors": [
  4692. {
  4693. "name": "Sebastian Bergmann",
  4694. "email": "sebastian@phpunit.de"
  4695. }
  4696. ],
  4697. "description": "Wrapper around PHP's tokenizer extension.",
  4698. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4699. "keywords": [
  4700. "tokenizer"
  4701. ],
  4702. "time": "2015-09-15 10:49:45"
  4703. },
  4704. {
  4705. "name": "phpunit/phpunit",
  4706. "version": "5.3.0",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4710. "reference": "dd3001822b2df8f5add266020e3d2fd3c5db3ae9"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/dd3001822b2df8f5add266020e3d2fd3c5db3ae9",
  4715. "reference": "dd3001822b2df8f5add266020e3d2fd3c5db3ae9",
  4716. "shasum": ""
  4717. },
  4718. "require": {
  4719. "ext-dom": "*",
  4720. "ext-json": "*",
  4721. "ext-pcre": "*",
  4722. "ext-reflection": "*",
  4723. "ext-spl": "*",
  4724. "myclabs/deep-copy": "~1.3",
  4725. "php": "^5.6 || ^7.0",
  4726. "phpspec/prophecy": "^1.3.1",
  4727. "phpunit/php-code-coverage": "^3.3.0",
  4728. "phpunit/php-file-iterator": "~1.4",
  4729. "phpunit/php-text-template": "~1.2",
  4730. "phpunit/php-timer": ">=1.0.6",
  4731. "phpunit/phpunit-mock-objects": "^3.1",
  4732. "sebastian/comparator": "~1.1",
  4733. "sebastian/diff": "~1.2",
  4734. "sebastian/environment": "~1.3",
  4735. "sebastian/exporter": "~1.2",
  4736. "sebastian/global-state": "~1.0",
  4737. "sebastian/object-enumerator": "~1.0",
  4738. "sebastian/resource-operations": "~1.0",
  4739. "sebastian/version": "~1.0|~2.0",
  4740. "symfony/yaml": "~2.1|~3.0"
  4741. },
  4742. "suggest": {
  4743. "phpunit/php-invoker": "~1.1"
  4744. },
  4745. "bin": [
  4746. "phpunit"
  4747. ],
  4748. "type": "library",
  4749. "extra": {
  4750. "branch-alias": {
  4751. "dev-master": "5.3.x-dev"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "classmap": [
  4756. "src/"
  4757. ]
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "BSD-3-Clause"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "Sebastian Bergmann",
  4766. "email": "sebastian@phpunit.de",
  4767. "role": "lead"
  4768. }
  4769. ],
  4770. "description": "The PHP Unit Testing framework.",
  4771. "homepage": "https://phpunit.de/",
  4772. "keywords": [
  4773. "phpunit",
  4774. "testing",
  4775. "xunit"
  4776. ],
  4777. "time": "2016-03-31 21:35:50"
  4778. },
  4779. {
  4780. "name": "phpunit/phpunit-mock-objects",
  4781. "version": "3.1.2",
  4782. "source": {
  4783. "type": "git",
  4784. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  4785. "reference": "7c34c9bdde4131b824086457a3145e27dba10ca1"
  4786. },
  4787. "dist": {
  4788. "type": "zip",
  4789. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/7c34c9bdde4131b824086457a3145e27dba10ca1",
  4790. "reference": "7c34c9bdde4131b824086457a3145e27dba10ca1",
  4791. "shasum": ""
  4792. },
  4793. "require": {
  4794. "doctrine/instantiator": "^1.0.2",
  4795. "php": ">=5.6",
  4796. "phpunit/php-text-template": "~1.2",
  4797. "sebastian/exporter": "~1.2"
  4798. },
  4799. "require-dev": {
  4800. "phpunit/phpunit": "~5"
  4801. },
  4802. "suggest": {
  4803. "ext-soap": "*"
  4804. },
  4805. "type": "library",
  4806. "extra": {
  4807. "branch-alias": {
  4808. "dev-master": "3.1.x-dev"
  4809. }
  4810. },
  4811. "autoload": {
  4812. "classmap": [
  4813. "src/"
  4814. ]
  4815. },
  4816. "notification-url": "https://packagist.org/downloads/",
  4817. "license": [
  4818. "BSD-3-Clause"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "Sebastian Bergmann",
  4823. "email": "sb@sebastian-bergmann.de",
  4824. "role": "lead"
  4825. }
  4826. ],
  4827. "description": "Mock Object library for PHPUnit",
  4828. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  4829. "keywords": [
  4830. "mock",
  4831. "xunit"
  4832. ],
  4833. "time": "2016-03-24 05:58:25"
  4834. },
  4835. {
  4836. "name": "sebastian/code-unit-reverse-lookup",
  4837. "version": "1.0.0",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4841. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  4846. "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
  4847. "shasum": ""
  4848. },
  4849. "require": {
  4850. "php": ">=5.6"
  4851. },
  4852. "require-dev": {
  4853. "phpunit/phpunit": "~5"
  4854. },
  4855. "type": "library",
  4856. "extra": {
  4857. "branch-alias": {
  4858. "dev-master": "1.0.x-dev"
  4859. }
  4860. },
  4861. "autoload": {
  4862. "classmap": [
  4863. "src/"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "BSD-3-Clause"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Sebastian Bergmann",
  4873. "email": "sebastian@phpunit.de"
  4874. }
  4875. ],
  4876. "description": "Looks up which function or method a line of code belongs to",
  4877. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4878. "time": "2016-02-13 06:45:14"
  4879. },
  4880. {
  4881. "name": "sebastian/comparator",
  4882. "version": "1.2.0",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/sebastianbergmann/comparator.git",
  4886. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
  4891. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  4892. "shasum": ""
  4893. },
  4894. "require": {
  4895. "php": ">=5.3.3",
  4896. "sebastian/diff": "~1.2",
  4897. "sebastian/exporter": "~1.2"
  4898. },
  4899. "require-dev": {
  4900. "phpunit/phpunit": "~4.4"
  4901. },
  4902. "type": "library",
  4903. "extra": {
  4904. "branch-alias": {
  4905. "dev-master": "1.2.x-dev"
  4906. }
  4907. },
  4908. "autoload": {
  4909. "classmap": [
  4910. "src/"
  4911. ]
  4912. },
  4913. "notification-url": "https://packagist.org/downloads/",
  4914. "license": [
  4915. "BSD-3-Clause"
  4916. ],
  4917. "authors": [
  4918. {
  4919. "name": "Jeff Welch",
  4920. "email": "whatthejeff@gmail.com"
  4921. },
  4922. {
  4923. "name": "Volker Dusch",
  4924. "email": "github@wallbash.com"
  4925. },
  4926. {
  4927. "name": "Bernhard Schussek",
  4928. "email": "bschussek@2bepublished.at"
  4929. },
  4930. {
  4931. "name": "Sebastian Bergmann",
  4932. "email": "sebastian@phpunit.de"
  4933. }
  4934. ],
  4935. "description": "Provides the functionality to compare PHP values for equality",
  4936. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  4937. "keywords": [
  4938. "comparator",
  4939. "compare",
  4940. "equality"
  4941. ],
  4942. "time": "2015-07-26 15:48:44"
  4943. },
  4944. {
  4945. "name": "sebastian/diff",
  4946. "version": "1.4.1",
  4947. "source": {
  4948. "type": "git",
  4949. "url": "https://github.com/sebastianbergmann/diff.git",
  4950. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  4951. },
  4952. "dist": {
  4953. "type": "zip",
  4954. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
  4955. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  4956. "shasum": ""
  4957. },
  4958. "require": {
  4959. "php": ">=5.3.3"
  4960. },
  4961. "require-dev": {
  4962. "phpunit/phpunit": "~4.8"
  4963. },
  4964. "type": "library",
  4965. "extra": {
  4966. "branch-alias": {
  4967. "dev-master": "1.4-dev"
  4968. }
  4969. },
  4970. "autoload": {
  4971. "classmap": [
  4972. "src/"
  4973. ]
  4974. },
  4975. "notification-url": "https://packagist.org/downloads/",
  4976. "license": [
  4977. "BSD-3-Clause"
  4978. ],
  4979. "authors": [
  4980. {
  4981. "name": "Kore Nordmann",
  4982. "email": "mail@kore-nordmann.de"
  4983. },
  4984. {
  4985. "name": "Sebastian Bergmann",
  4986. "email": "sebastian@phpunit.de"
  4987. }
  4988. ],
  4989. "description": "Diff implementation",
  4990. "homepage": "https://github.com/sebastianbergmann/diff",
  4991. "keywords": [
  4992. "diff"
  4993. ],
  4994. "time": "2015-12-08 07:14:41"
  4995. },
  4996. {
  4997. "name": "sebastian/environment",
  4998. "version": "1.3.5",
  4999. "source": {
  5000. "type": "git",
  5001. "url": "https://github.com/sebastianbergmann/environment.git",
  5002. "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf"
  5003. },
  5004. "dist": {
  5005. "type": "zip",
  5006. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf",
  5007. "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf",
  5008. "shasum": ""
  5009. },
  5010. "require": {
  5011. "php": ">=5.3.3"
  5012. },
  5013. "require-dev": {
  5014. "phpunit/phpunit": "~4.4"
  5015. },
  5016. "type": "library",
  5017. "extra": {
  5018. "branch-alias": {
  5019. "dev-master": "1.3.x-dev"
  5020. }
  5021. },
  5022. "autoload": {
  5023. "classmap": [
  5024. "src/"
  5025. ]
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "BSD-3-Clause"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Sebastian Bergmann",
  5034. "email": "sebastian@phpunit.de"
  5035. }
  5036. ],
  5037. "description": "Provides functionality to handle HHVM/PHP environments",
  5038. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5039. "keywords": [
  5040. "Xdebug",
  5041. "environment",
  5042. "hhvm"
  5043. ],
  5044. "time": "2016-02-26 18:40:46"
  5045. },
  5046. {
  5047. "name": "sebastian/exporter",
  5048. "version": "1.2.1",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/sebastianbergmann/exporter.git",
  5052. "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
  5057. "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
  5058. "shasum": ""
  5059. },
  5060. "require": {
  5061. "php": ">=5.3.3",
  5062. "sebastian/recursion-context": "~1.0"
  5063. },
  5064. "require-dev": {
  5065. "phpunit/phpunit": "~4.4"
  5066. },
  5067. "type": "library",
  5068. "extra": {
  5069. "branch-alias": {
  5070. "dev-master": "1.2.x-dev"
  5071. }
  5072. },
  5073. "autoload": {
  5074. "classmap": [
  5075. "src/"
  5076. ]
  5077. },
  5078. "notification-url": "https://packagist.org/downloads/",
  5079. "license": [
  5080. "BSD-3-Clause"
  5081. ],
  5082. "authors": [
  5083. {
  5084. "name": "Jeff Welch",
  5085. "email": "whatthejeff@gmail.com"
  5086. },
  5087. {
  5088. "name": "Volker Dusch",
  5089. "email": "github@wallbash.com"
  5090. },
  5091. {
  5092. "name": "Bernhard Schussek",
  5093. "email": "bschussek@2bepublished.at"
  5094. },
  5095. {
  5096. "name": "Sebastian Bergmann",
  5097. "email": "sebastian@phpunit.de"
  5098. },
  5099. {
  5100. "name": "Adam Harvey",
  5101. "email": "aharvey@php.net"
  5102. }
  5103. ],
  5104. "description": "Provides the functionality to export PHP variables for visualization",
  5105. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5106. "keywords": [
  5107. "export",
  5108. "exporter"
  5109. ],
  5110. "time": "2015-06-21 07:55:53"
  5111. },
  5112. {
  5113. "name": "sebastian/global-state",
  5114. "version": "1.1.1",
  5115. "source": {
  5116. "type": "git",
  5117. "url": "https://github.com/sebastianbergmann/global-state.git",
  5118. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  5119. },
  5120. "dist": {
  5121. "type": "zip",
  5122. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5123. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  5124. "shasum": ""
  5125. },
  5126. "require": {
  5127. "php": ">=5.3.3"
  5128. },
  5129. "require-dev": {
  5130. "phpunit/phpunit": "~4.2"
  5131. },
  5132. "suggest": {
  5133. "ext-uopz": "*"
  5134. },
  5135. "type": "library",
  5136. "extra": {
  5137. "branch-alias": {
  5138. "dev-master": "1.0-dev"
  5139. }
  5140. },
  5141. "autoload": {
  5142. "classmap": [
  5143. "src/"
  5144. ]
  5145. },
  5146. "notification-url": "https://packagist.org/downloads/",
  5147. "license": [
  5148. "BSD-3-Clause"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "Sebastian Bergmann",
  5153. "email": "sebastian@phpunit.de"
  5154. }
  5155. ],
  5156. "description": "Snapshotting of global state",
  5157. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5158. "keywords": [
  5159. "global state"
  5160. ],
  5161. "time": "2015-10-12 03:26:01"
  5162. },
  5163. {
  5164. "name": "sebastian/object-enumerator",
  5165. "version": "1.0.0",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5169. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/d4ca2fb70344987502567bc50081c03e6192fb26",
  5174. "reference": "d4ca2fb70344987502567bc50081c03e6192fb26",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "php": ">=5.6",
  5179. "sebastian/recursion-context": "~1.0"
  5180. },
  5181. "require-dev": {
  5182. "phpunit/phpunit": "~5"
  5183. },
  5184. "type": "library",
  5185. "extra": {
  5186. "branch-alias": {
  5187. "dev-master": "1.0.x-dev"
  5188. }
  5189. },
  5190. "autoload": {
  5191. "classmap": [
  5192. "src/"
  5193. ]
  5194. },
  5195. "notification-url": "https://packagist.org/downloads/",
  5196. "license": [
  5197. "BSD-3-Clause"
  5198. ],
  5199. "authors": [
  5200. {
  5201. "name": "Sebastian Bergmann",
  5202. "email": "sebastian@phpunit.de"
  5203. }
  5204. ],
  5205. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5206. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5207. "time": "2016-01-28 13:25:10"
  5208. },
  5209. {
  5210. "name": "sebastian/recursion-context",
  5211. "version": "1.0.2",
  5212. "source": {
  5213. "type": "git",
  5214. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5215. "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
  5216. },
  5217. "dist": {
  5218. "type": "zip",
  5219. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
  5220. "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
  5221. "shasum": ""
  5222. },
  5223. "require": {
  5224. "php": ">=5.3.3"
  5225. },
  5226. "require-dev": {
  5227. "phpunit/phpunit": "~4.4"
  5228. },
  5229. "type": "library",
  5230. "extra": {
  5231. "branch-alias": {
  5232. "dev-master": "1.0.x-dev"
  5233. }
  5234. },
  5235. "autoload": {
  5236. "classmap": [
  5237. "src/"
  5238. ]
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "BSD-3-Clause"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Jeff Welch",
  5247. "email": "whatthejeff@gmail.com"
  5248. },
  5249. {
  5250. "name": "Sebastian Bergmann",
  5251. "email": "sebastian@phpunit.de"
  5252. },
  5253. {
  5254. "name": "Adam Harvey",
  5255. "email": "aharvey@php.net"
  5256. }
  5257. ],
  5258. "description": "Provides functionality to recursively process PHP variables",
  5259. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5260. "time": "2015-11-11 19:50:13"
  5261. },
  5262. {
  5263. "name": "sebastian/resource-operations",
  5264. "version": "1.0.0",
  5265. "source": {
  5266. "type": "git",
  5267. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5268. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  5269. },
  5270. "dist": {
  5271. "type": "zip",
  5272. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5273. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  5274. "shasum": ""
  5275. },
  5276. "require": {
  5277. "php": ">=5.6.0"
  5278. },
  5279. "type": "library",
  5280. "extra": {
  5281. "branch-alias": {
  5282. "dev-master": "1.0.x-dev"
  5283. }
  5284. },
  5285. "autoload": {
  5286. "classmap": [
  5287. "src/"
  5288. ]
  5289. },
  5290. "notification-url": "https://packagist.org/downloads/",
  5291. "license": [
  5292. "BSD-3-Clause"
  5293. ],
  5294. "authors": [
  5295. {
  5296. "name": "Sebastian Bergmann",
  5297. "email": "sebastian@phpunit.de"
  5298. }
  5299. ],
  5300. "description": "Provides a list of PHP built-in functions that operate on resources",
  5301. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5302. "time": "2015-07-28 20:34:47"
  5303. },
  5304. {
  5305. "name": "sebastian/version",
  5306. "version": "2.0.0",
  5307. "source": {
  5308. "type": "git",
  5309. "url": "https://github.com/sebastianbergmann/version.git",
  5310. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5"
  5311. },
  5312. "dist": {
  5313. "type": "zip",
  5314. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5315. "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
  5316. "shasum": ""
  5317. },
  5318. "require": {
  5319. "php": ">=5.6"
  5320. },
  5321. "type": "library",
  5322. "extra": {
  5323. "branch-alias": {
  5324. "dev-master": "2.0.x-dev"
  5325. }
  5326. },
  5327. "autoload": {
  5328. "classmap": [
  5329. "src/"
  5330. ]
  5331. },
  5332. "notification-url": "https://packagist.org/downloads/",
  5333. "license": [
  5334. "BSD-3-Clause"
  5335. ],
  5336. "authors": [
  5337. {
  5338. "name": "Sebastian Bergmann",
  5339. "email": "sebastian@phpunit.de",
  5340. "role": "lead"
  5341. }
  5342. ],
  5343. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5344. "homepage": "https://github.com/sebastianbergmann/version",
  5345. "time": "2016-02-04 12:56:52"
  5346. },
  5347. {
  5348. "name": "symfony/phpunit-bridge",
  5349. "version": "v3.0.4",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/symfony/phpunit-bridge.git",
  5353. "reference": "b097218e4ab7724e7ec0c420e96dfd70518c2354"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/b097218e4ab7724e7ec0c420e96dfd70518c2354",
  5358. "reference": "b097218e4ab7724e7ec0c420e96dfd70518c2354",
  5359. "shasum": ""
  5360. },
  5361. "require": {
  5362. "php": ">=5.3.3"
  5363. },
  5364. "suggest": {
  5365. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  5366. },
  5367. "type": "symfony-bridge",
  5368. "extra": {
  5369. "branch-alias": {
  5370. "dev-master": "3.0-dev"
  5371. }
  5372. },
  5373. "autoload": {
  5374. "files": [
  5375. "bootstrap.php"
  5376. ],
  5377. "psr-4": {
  5378. "Symfony\\Bridge\\PhpUnit\\": ""
  5379. },
  5380. "exclude-from-classmap": [
  5381. "/Tests/"
  5382. ]
  5383. },
  5384. "notification-url": "https://packagist.org/downloads/",
  5385. "license": [
  5386. "MIT"
  5387. ],
  5388. "authors": [
  5389. {
  5390. "name": "Nicolas Grekas",
  5391. "email": "p@tchwork.com"
  5392. },
  5393. {
  5394. "name": "Symfony Community",
  5395. "homepage": "https://symfony.com/contributors"
  5396. }
  5397. ],
  5398. "description": "Symfony PHPUnit Bridge",
  5399. "homepage": "https://symfony.com",
  5400. "time": "2016-03-23 13:46:08"
  5401. }
  5402. ],
  5403. "aliases": [],
  5404. "minimum-stability": "stable",
  5405. "stability-flags": {
  5406. "composer/composer": 20,
  5407. "friendsofsymfony/user-bundle": 20
  5408. },
  5409. "prefer-stable": false,
  5410. "prefer-lowest": false,
  5411. "platform": {
  5412. "php": ">=5.6"
  5413. },
  5414. "platform-dev": []
  5415. }