composer.lock 197 KB

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